/* -*- 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 "cfgitem.hxx" #include #include #include #include #include #include #include #define ShellClass_SmModule #include OUString SmResId(const char* pId) { return Translate::get(pId, SM_MOD()->GetResLocale()); } OUString SmLocalizedSymbolData::GetUiSymbolName( const OUString &rExportName ) { OUString aRes; for (size_t i = 0; i < SAL_N_ELEMENTS(RID_UI_SYMBOL_NAMES); ++i) { if (rExportName.equalsAscii(strchr(RID_UI_SYMBOL_NAMES[i], '\004') + 1)) { aRes = SmResId(RID_UI_SYMBOL_NAMES[i]); break; } } return aRes; } OUString SmLocalizedSymbolData::GetExportSymbolName( const OUString &rUiName ) { OUString aRes; for (size_t i = 0; i < SAL_N_ELEMENTS(RID_UI_SYMBOL_NAMES); ++i) { if (rUiName == SmResId(RID_UI_SYMBOL_NAMES[i])) { const char *pKey = strchr(RID_UI_SYMBOL_NAMES[i], '\004') + 1; aRes = OUString(pKey, strlen(pKey), RTL_TEXTENCODING_UTF8); break; } } return aRes; } OUString SmLocalizedSymbolData::GetUiSymbolSetName( const OUString &rExportName ) { OUString aRes; for (size_t i = 0; i < SAL_N_ELEMENTS(RID_UI_SYMBOLSET_NAMES); ++i) { if (rExportName.equalsAscii(strchr(RID_UI_SYMBOLSET_NAMES[i], '\004') + 1)) { aRes = SmResId(RID_UI_SYMBOLSET_NAMES[i]); break; } } return aRes; } OUString SmLocalizedSymbolData::GetExportSymbolSetName( const OUString &rUiName ) { OUString aRes; for (size_t i = 0; i < SAL_N_ELEMENTS(RID_UI_SYMBOLSET_NAMES); ++i) { if (rUiName == SmResId(RID_UI_SYMBOLSET_NAMES[i])) { const char *pKey = strchr(RID_UI_SYMBOLSET_NAMES[i], '\004') + 1; aRes = OUString(pKey, strlen(pKey), RTL_TEXTENCODING_UTF8); break; } } return aRes; } SFX_IMPL_INTERFACE(SmModule, SfxModule) void SmModule::InitInterface_Impl() { GetStaticInterface()->RegisterStatusBar(StatusBarId::MathStatusBar); } SmModule::SmModule(SfxObjectFactory* pObjFact) : SfxModule("sm", {pObjFact}) { SetName("StarMath"); SvxModifyControl::RegisterControl(SID_DOC_MODIFIED, this); } SmModule::~SmModule() { if (mpColorConfig) mpColorConfig->RemoveListener(this); mpVirtualDev.disposeAndClear(); } svtools::ColorConfig & SmModule::GetColorConfig() { if(!mpColorConfig) { mpColorConfig.reset(new svtools::ColorConfig); mpColorConfig->AddListener(this); } return *mpColorConfig; } void SmModule::ConfigurationChanged(utl::ConfigurationBroadcaster* pBrdCst, ConfigurationHints) { if (pBrdCst == mpColorConfig.get()) { SfxViewShell* pViewShell = SfxViewShell::GetFirst(); while (pViewShell) { if (dynamic_cast(pViewShell) != nullptr) pViewShell->GetWindow()->Invalidate(); pViewShell = SfxViewShell::GetNext(*pViewShell); } } } SmMathConfig * SmModule::GetConfig() { if(!mpConfig) mpConfig.reset(new SmMathConfig); return mpConfig.get(); } SmSymbolManager & SmModule::GetSymbolManager() { return GetConfig()->GetSymbolManager(); } const SvtSysLocale& SmModule::GetSysLocale() { if( !mpSysLocale ) mpSysLocale.reset(new SvtSysLocale); return *mpSysLocale; } VirtualDevice &SmModule::GetDefaultVirtualDev() { if (!mpVirtualDev) { mpVirtualDev.reset( VclPtr::Create() ); mpVirtualDev->SetReferenceDevice( VirtualDevice::RefDevMode::MSO1 ); } return *mpVirtualDev; } void SmModule::GetState(SfxItemSet &rSet) { SfxWhichIter aIter(rSet); for (sal_uInt16 nWh = aIter.FirstWhich(); 0 != nWh; nWh = aIter.NextWhich()) switch (nWh) { case SID_CONFIGEVENT : rSet.DisableItem(SID_CONFIGEVENT); break; } } std::unique_ptr SmModule::CreateItemSet( sal_uInt16 nId ) { std::unique_ptr pRet; if(nId == SID_SM_EDITOPTIONS) { pRet = std::make_unique( GetPool(), svl::Items< //TP_SMPRINT SID_PRINTTITLE, SID_PRINTZOOM, SID_NO_RIGHT_SPACES, SID_SAVE_ONLY_USED_SYMBOLS, SID_AUTO_CLOSE_BRACKETS, SID_AUTO_CLOSE_BRACKETS>{}); GetConfig()->ConfigToItemSet(*pRet); } return pRet; } void SmModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ) { if(nId == SID_SM_EDITOPTIONS) { GetConfig()->ItemSetToConfig(rSet); } } std::unique_ptr SmModule::CreateTabPage( sal_uInt16 nId, weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet ) { std::unique_ptr xRet; if (nId == SID_SM_TP_PRINTOPTIONS) xRet = SmPrintOptionsTabPage::Create(pPage, pController, rSet); return xRet; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ reoffice-3-4-6 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/vi
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-06-03 20:51:16 +0200
committerAndras Timar <atimar@suse.com>2013-06-05 10:16:45 +0200
commit47af5d9707cf34a8f7f9507a62c2dd03e56dbfa9 (patch)
tree098208ba8efa0d691342fc7056da2060e8d3f464 /source/vi
parent499065e9cda8911ef6193d32ab39aa9249325ca6 (diff)
update translations for LibreOffice 4.1 beta2
Change-Id: I5dafc5dcce605da8d6831a775ff1d416180b22d0
Diffstat (limited to 'source/vi')
-rw-r--r--source/vi/android/sdremote/res/values.po10
-rw-r--r--source/vi/cui/source/options.po6
-rw-r--r--source/vi/cui/uiconfig/ui.po43
-rw-r--r--source/vi/dbaccess/uiconfig/ui.po29
-rw-r--r--source/vi/dictionaries/is.po23
-rw-r--r--source/vi/dictionaries/no.po8
-rw-r--r--source/vi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/vi/helpcontent2/source/auxiliary.po788
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/guide.po176
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po45757
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/01.po394
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/02.po1260
-rw-r--r--source/vi/helpcontent2/source/text/scalc.po1652
-rw-r--r--source/vi/helpcontent2/source/text/scalc/00.po1774
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po65112
-rw-r--r--source/vi/helpcontent2/source/text/scalc/02.po1070
-rw-r--r--source/vi/helpcontent2/source/text/scalc/04.po22
-rw-r--r--source/vi/helpcontent2/source/text/scalc/05.po11
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po14810
-rw-r--r--source/vi/helpcontent2/source/text/schart.po464
-rw-r--r--source/vi/helpcontent2/source/text/schart/00.po17
-rw-r--r--source/vi/helpcontent2/source/text/schart/01.po8634
-rw-r--r--source/vi/helpcontent2/source/text/schart/02.po104
-rw-r--r--source/vi/helpcontent2/source/text/schart/04.po2
-rw-r--r--source/vi/helpcontent2/source/text/sdraw.po1047
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/00.po2
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/01.po2
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/04.po3
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/guide.po2191
-rw-r--r--source/vi/helpcontent2/source/text/shared.po1544
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po14736
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po58477
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po22299
-rw-r--r--source/vi/helpcontent2/source/text/shared/04.po31
-rw-r--r--source/vi/helpcontent2/source/text/shared/05.po1276
-rw-r--r--source/vi/helpcontent2/source/text/shared/07.po2
-rw-r--r--source/vi/helpcontent2/source/text/shared/autokorr.po312
-rw-r--r--source/vi/helpcontent2/source/text/shared/autopi.po11682
-rw-r--r--source/vi/helpcontent2/source/text/shared/explorer/database.po19205
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po21300
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po20009
-rw-r--r--source/vi/helpcontent2/source/text/simpress.po1593
-rw-r--r--source/vi/helpcontent2/source/text/simpress/00.po997
-rw-r--r--source/vi/helpcontent2/source/text/simpress/01.po10929
-rw-r--r--source/vi/helpcontent2/source/text/simpress/02.po6198
-rw-r--r--source/vi/helpcontent2/source/text/simpress/04.po142
-rw-r--r--source/vi/helpcontent2/source/text/simpress/guide.po6480
-rw-r--r--source/vi/helpcontent2/source/text/smath.po656
-rw-r--r--source/vi/helpcontent2/source/text/smath/00.po22
-rw-r--r--source/vi/helpcontent2/source/text/smath/01.po15277
-rw-r--r--source/vi/helpcontent2/source/text/smath/02.po3
-rw-r--r--source/vi/helpcontent2/source/text/smath/04.po3
-rw-r--r--source/vi/helpcontent2/source/text/smath/guide.po542
-rw-r--r--source/vi/helpcontent2/source/text/swriter.po2393
-rw-r--r--source/vi/helpcontent2/source/text/swriter/00.po2525
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po36612
-rw-r--r--source/vi/helpcontent2/source/text/swriter/02.po3262
-rw-r--r--source/vi/helpcontent2/source/text/swriter/04.po89
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po22948
-rw-r--r--source/vi/helpcontent2/source/text/swriter/librelogo.po87
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office.po128
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po11
-rw-r--r--source/vi/reportdesign/source/core/resource.po6
-rw-r--r--source/vi/reportdesign/source/ui/dlg.po6
-rw-r--r--source/vi/sc/source/ui/src.po6
-rw-r--r--source/vi/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/vi/sd/source/ui/view.po6
-rw-r--r--source/vi/sd/uiconfig/simpress/ui.po4
-rw-r--r--source/vi/svl/source/misc.po6
-rw-r--r--source/vi/svtools/uiconfig/ui.po11
-rw-r--r--source/vi/svx/source/dialog.po4
-rw-r--r--source/vi/svx/source/tbxctrls.po10
-rw-r--r--source/vi/svx/uiconfig/ui.po13
-rw-r--r--source/vi/sw/source/ui/utlui.po6
-rw-r--r--source/vi/sw/uiconfig/swriter/ui.po11
-rw-r--r--source/vi/xmlsecurity/uiconfig/ui.po11
76 files changed, 212243 insertions, 215046 deletions
diff --git a/source/vi/android/sdremote/res/values.po b/source/vi/android/sdremote/res/values.po
index 06f65cdee27..60c44c45be2 100644
--- a/source/vi/android/sdremote/res/values.po
+++ b/source/vi/android/sdremote/res/values.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-05-28 18:08+0200\n"
"PO-Revision-Date: 2013-02-17 21:30+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -151,8 +151,8 @@ msgctxt ""
"string.text"
msgid ""
"#1 Verify Impress is running \n"
-"#2 For Bluetooth user, enable \"Preference\"-\"LibreOffice Impress\"-\"General\"-\"Enable remote control\"\n"
-"#3 For WiFi user, tick \"Preferece\"-\"LibreOffice\"-\"Advanced\"-\"Enable Experimental Features\" \n"
+"#2 For Bluetooth user, enable \"Preferences\"-\"LibreOffice Impress\"-\"General\"-\"Enable remote control\"\n"
+"#3 For WiFi user, tick \"Preferences\"-\"LibreOffice\"-\"Advanced\"-\"Enable Experimental Features\" \n"
" "
msgstr ""
@@ -449,8 +449,8 @@ msgctxt ""
"wifiAlertMsg\n"
"string.text"
msgid ""
-"This is still an experimental feature. You need to \"enable experimental features\" in \"Preference\"-\"LibreOffice\"-\"Advanced\" on your computer. \n"
-"The use over Bluetooth is recommanded."
+"This is still an experimental feature. You need to \"enable experimental features\" in \"Preferences\"-\"LibreOffice\"-\"Advanced\" on your computer. \n"
+"The use over Bluetooth is recommended."
msgstr ""
#: strings.xml
diff --git a/source/vi/cui/source/options.po b/source/vi/cui/source/options.po
index 7d6f2cddd94..b5028e573b8 100644
--- a/source/vi/cui/source/options.po
+++ b/source/vi/cui/source/options.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-05-28 18:08+0200\n"
"PO-Revision-Date: 2013-02-17 21:30+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1353,8 +1353,8 @@ msgctxt ""
"RID_SVXDLG_JAVA_PARAMETER\n"
"FT_EXAMPLE\n"
"fixedtext.text"
-msgid "For example: -Dmyprop=c:program filesjava"
-msgstr ""
+msgid "For example: -Dmyprop=c:\\program files\\java"
+msgstr "Ví dụ: -Dmyprop=c:\\program files\\java"
#: optjava.src
msgctxt ""
diff --git a/source/vi/cui/uiconfig/ui.po b/source/vi/cui/uiconfig/ui.po
index e95f204a551..6c81061eda9 100644
--- a/source/vi/cui/uiconfig/ui.po
+++ b/source/vi/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-06-02 13:55+0200\n"
"PO-Revision-Date: 2013-01-19 17:03+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -442,6 +442,15 @@ msgstr "Màu nền"
#: backgroundpage.ui
msgctxt ""
"backgroundpage.ui\n"
+"fileft\n"
+"label\n"
+"string.text"
+msgid "<FILENAME>"
+msgstr ""
+
+#: backgroundpage.ui
+msgctxt ""
+"backgroundpage.ui\n"
"unlinkedft\n"
"label\n"
"string.text"
@@ -1741,7 +1750,7 @@ msgctxt ""
"modellb\n"
"1\n"
"stringlist.text"
-msgid "CYMK"
+msgid "CMYK"
msgstr ""
#: colorpage.ui
@@ -2011,7 +2020,7 @@ msgctxt ""
"label4\n"
"label\n"
"string.text"
-msgid "LiberOffice Writer Menus"
+msgid "%PRODUCTNAME Writer Menus"
msgstr ""
#: customize.ui
@@ -2218,7 +2227,7 @@ msgctxt ""
"label29\n"
"label\n"
"string.text"
-msgid "_Toolbare"
+msgid "_Toolbars"
msgstr ""
#: customize.ui
@@ -2290,7 +2299,7 @@ msgctxt ""
"label26\n"
"label\n"
"string.text"
-msgid "LiberOffice Writer Toolbars"
+msgid "%PRODUCTNAME Writer Toolbars"
msgstr ""
#: customize.ui
@@ -4789,6 +4798,15 @@ msgstr "Đã cài đặt xong môi trường chạy Java (JRE)."
#: optadvancedpage.ui
msgctxt ""
"optadvancedpage.ui\n"
+"add\n"
+"label\n"
+"string.text"
+msgid "_Add..."
+msgstr ""
+
+#: optadvancedpage.ui
+msgctxt ""
+"optadvancedpage.ui\n"
"parameters\n"
"label\n"
"string.text"
@@ -4891,8 +4909,8 @@ msgctxt ""
"macrorecording\n"
"label\n"
"string.text"
-msgid "Enable macro recording"
-msgstr "Bật ghi vĩ lệnh"
+msgid "Enable macro recording (limited)"
+msgstr ""
#: optadvancedpage.ui
msgctxt ""
@@ -5659,6 +5677,15 @@ msgctxt ""
msgid "_Default"
msgstr "_Mặc định"
+#: optpathspage.ui
+msgctxt ""
+"optpathspage.ui\n"
+"edit\n"
+"label\n"
+"string.text"
+msgid "_Edit..."
+msgstr ""
+
#: optproxypage.ui
msgctxt ""
"optproxypage.ui\n"
@@ -6079,7 +6106,7 @@ msgctxt ""
"usemasterpassword\n"
"label\n"
"string.text"
-msgid "Protected _by a master passwords (recommended)"
+msgid "Protected _by a master password (recommended)"
msgstr ""
#: optsecuritypage.ui
diff --git a/source/vi/dbaccess/uiconfig/ui.po b/source/vi/dbaccess/uiconfig/ui.po
index 6c31610560a..dfff3062ce9 100644
--- a/source/vi/dbaccess/uiconfig/ui.po
+++ b/source/vi/dbaccess/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-05-28 18:08+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -101,6 +101,15 @@ msgstr ""
#: generalpagewizard.ui
msgctxt ""
"generalpagewizard.ui\n"
+"openDatabase\n"
+"label\n"
+"string.text"
+msgid "Open"
+msgstr ""
+
+#: generalpagewizard.ui
+msgctxt ""
+"generalpagewizard.ui\n"
"connectDatabase\n"
"label\n"
"string.text"
@@ -128,6 +137,24 @@ msgstr ""
#: querypropertiesdialog.ui
msgctxt ""
"querypropertiesdialog.ui\n"
+"distinct\n"
+"label\n"
+"string.text"
+msgid "Yes"
+msgstr ""
+
+#: querypropertiesdialog.ui
+msgctxt ""
+"querypropertiesdialog.ui\n"
+"nondistinct\n"
+"label\n"
+"string.text"
+msgid "No"
+msgstr ""
+
+#: querypropertiesdialog.ui
+msgctxt ""
+"querypropertiesdialog.ui\n"
"limit-label\n"
"label\n"
"string.text"
diff --git a/source/vi/dictionaries/is.po b/source/vi/dictionaries/is.po
new file mode 100644
index 00000000000..bd1c75d7dfa
--- /dev/null
+++ b/source/vi/dictionaries/is.po
@@ -0,0 +1,23 @@
+#. extracted from dictionaries/is
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2013-06-03 08:43+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Icelandic spelling dictionary and thesaurus"
+msgstr ""
diff --git a/source/vi/dictionaries/no.po b/source/vi/dictionaries/no.po
index ab865737f90..7af6fdbbb31 100644
--- a/source/vi/dictionaries/no.po
+++ b/source/vi/dictionaries/no.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-05-28 18:07+0200\n"
"PO-Revision-Date: 2012-07-11 08:35+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: none\n"
@@ -20,7 +20,5 @@ msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
-msgid ""
-"\n"
-"Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus\n"
-msgstr ""
+msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Từ điển chính tả, luật ngạch ngang, từ điển đồng nghĩa tiếng Na Uy (Nynorsk và Bokmal)"
diff --git a/source/vi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/vi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index cfe3dd337a1..04272f495f1 100644
--- a/source/vi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
+++ b/source/vi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-06-03 08:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,5 +29,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.pt_BR\n"
"Label\n"
"value.text"
-msgid "Grammar checking (Portuguese)"
+msgid "Portuguese sentence checking"
msgstr ""
diff --git a/source/vi/helpcontent2/source/auxiliary.po b/source/vi/helpcontent2/source/auxiliary.po
index 8db49a587bf..521abfcce89 100644
--- a/source/vi/helpcontent2/source/auxiliary.po
+++ b/source/vi/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:43+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -62,141 +62,149 @@ msgctxt ""
msgid "Guides"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04\n"
+"scalc.tree\n"
+"08\n"
"help_section.text"
-msgid "Presentations and Drawings"
-msgstr ""
+msgid "Spreadsheets"
+msgstr "Bảng tính"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0401\n"
+"scalc.tree\n"
+"0801\n"
"node.text"
msgid "General Information and User Interface Usage"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0402\n"
+"scalc.tree\n"
+"0802\n"
"node.text"
msgid "Command and Menu Reference"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"040201\n"
+"scalc.tree\n"
+"080201\n"
"node.text"
-msgid "Presentations (%PRODUCTNAME Impress)"
-msgstr ""
+msgid "Menus"
+msgstr "Trình đơn"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020101\n"
+"scalc.tree\n"
+"080202\n"
"node.text"
-msgid "Menus"
-msgstr ""
+msgid "Toolbars"
+msgstr "Thanh công cụ"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020102\n"
+"scalc.tree\n"
+"0803\n"
"node.text"
-msgid "Toolbars"
+msgid "Functions Types and Operators"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"040202\n"
+"scalc.tree\n"
+"0804\n"
"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
+msgid "Loading, Saving, Importing, and Exporting"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020201\n"
+"scalc.tree\n"
+"0805\n"
"node.text"
-msgid "Menus"
-msgstr ""
+msgid "Formatting"
+msgstr "Định dạng"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020202\n"
+"scalc.tree\n"
+"0806\n"
"node.text"
-msgid "Toolbars"
+msgid "Filtering and Sorting"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0403\n"
+"scalc.tree\n"
+"0807\n"
"node.text"
-msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
+msgid "Printing"
+msgstr "In ấn"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0404\n"
+"scalc.tree\n"
+"0808\n"
"node.text"
-msgid "Formatting"
+msgid "Data Ranges"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0405\n"
+"scalc.tree\n"
+"0809\n"
"node.text"
-msgid "Printing"
+msgid "Pivot Table"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0406\n"
+"scalc.tree\n"
+"0810\n"
"node.text"
-msgid "Effects"
-msgstr ""
+msgid "Scenarios"
+msgstr "Kịch bản"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0407\n"
+"scalc.tree\n"
+"0811\n"
"node.text"
-msgid "Objects, Graphics, and Bitmaps"
+msgid "References"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0408\n"
+"scalc.tree\n"
+"0812\n"
"node.text"
-msgid "Groups and Layers"
+msgid "Viewing, Selecting, Copying"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0409\n"
+"scalc.tree\n"
+"0813\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Formulas and Calculations"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0410\n"
+"scalc.tree\n"
+"0814\n"
"node.text"
-msgid "Viewing"
-msgstr ""
+msgid "Protection"
+msgstr "Bảo vệ"
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Miscellaneous"
+msgstr "Lặt vặt"
#: schart.tree
msgctxt ""
@@ -214,254 +222,6 @@ msgctxt ""
msgid "General Information"
msgstr ""
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"02\n"
-"help_section.text"
-msgid "Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0201\n"
-"node.text"
-msgid "General Information and User Interface Usage"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0202\n"
-"node.text"
-msgid "Command and Menu Reference"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"020201\n"
-"node.text"
-msgid "Menus"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0203\n"
-"node.text"
-msgid "Creating Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0204\n"
-"node.text"
-msgid "Graphics in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0205\n"
-"node.text"
-msgid "Tables in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0206\n"
-"node.text"
-msgid "Objects in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0207\n"
-"node.text"
-msgid "Sections and Frames in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0208\n"
-"node.text"
-msgid "Tables of Contents and Indexes"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0209\n"
-"node.text"
-msgid "Fields in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0210\n"
-"node.text"
-msgid "Navigating Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0211\n"
-"node.text"
-msgid "Calculating in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0212\n"
-"node.text"
-msgid "Formatting Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"021201\n"
-"node.text"
-msgid "Templates and Styles"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0213\n"
-"node.text"
-msgid "Special Text Elements"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0214\n"
-"node.text"
-msgid "Automatic Functions"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0215\n"
-"node.text"
-msgid "Numbering and Lists"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0216\n"
-"node.text"
-msgid "Spellchecking, Thesaurus, and Languages"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0218\n"
-"node.text"
-msgid "Troubleshooting Tips"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0219\n"
-"node.text"
-msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0220\n"
-"node.text"
-msgid "Master Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0221\n"
-"node.text"
-msgid "Links and References"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0222\n"
-"node.text"
-msgid "Printing"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0223\n"
-"node.text"
-msgid "Searching and Replacing"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"06\n"
-"help_section.text"
-msgid "HTML Documents"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"03\n"
-"help_section.text"
-msgid "Formulas"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0301\n"
-"node.text"
-msgid "General Information and User Interface Usage"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0302\n"
-"node.text"
-msgid "Command and Menu Reference"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0303\n"
-"node.text"
-msgid "Working with Formulas"
-msgstr ""
-
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -516,7 +276,7 @@ msgctxt ""
"100501\n"
"node.text"
msgid "Letter Wizard"
-msgstr ""
+msgstr "Trợ lý Thư"
#: shared.tree
msgctxt ""
@@ -524,7 +284,7 @@ msgctxt ""
"100502\n"
"node.text"
msgid "Fax Wizard"
-msgstr ""
+msgstr "Trợ lý Điện thư"
#: shared.tree
msgctxt ""
@@ -532,7 +292,7 @@ msgctxt ""
"100504\n"
"node.text"
msgid "Agenda Wizard"
-msgstr ""
+msgstr "Trợ lý Nghị sự"
#: shared.tree
msgctxt ""
@@ -540,7 +300,7 @@ msgctxt ""
"100505\n"
"node.text"
msgid "Presentation Wizard"
-msgstr ""
+msgstr "Trợ lý Trình diễn"
#: shared.tree
msgctxt ""
@@ -686,146 +446,386 @@ msgctxt ""
msgid "General Information"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"08\n"
+"simpress.tree\n"
+"04\n"
"help_section.text"
-msgid "Spreadsheets"
+msgid "Presentations and Drawings"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0801\n"
+"simpress.tree\n"
+"0401\n"
"node.text"
msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0802\n"
+"simpress.tree\n"
+"0402\n"
"node.text"
msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"080201\n"
+"simpress.tree\n"
+"040201\n"
"node.text"
-msgid "Menus"
+msgid "Presentations (%PRODUCTNAME Impress)"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"080202\n"
+"simpress.tree\n"
+"04020101\n"
+"node.text"
+msgid "Menus"
+msgstr "Trình đơn"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020102\n"
"node.text"
msgid "Toolbars"
-msgstr ""
+msgstr "Thanh công cụ"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0803\n"
+"simpress.tree\n"
+"040202\n"
"node.text"
-msgid "Functions Types and Operators"
+msgid "Drawings (%PRODUCTNAME Draw)"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0804\n"
+"simpress.tree\n"
+"04020201\n"
+"node.text"
+msgid "Menus"
+msgstr "Trình đơn"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0805\n"
+"simpress.tree\n"
+"0404\n"
"node.text"
msgid "Formatting"
+msgstr "Định dạng"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0405\n"
+"node.text"
+msgid "Printing"
+msgstr "In ấn"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0406\n"
+"node.text"
+msgid "Effects"
+msgstr "Hiệu ứng"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0407\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0806\n"
+"simpress.tree\n"
+"0408\n"
"node.text"
-msgid "Filtering and Sorting"
+msgid "Groups and Layers"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0807\n"
+"simpress.tree\n"
+"0409\n"
"node.text"
-msgid "Printing"
+msgid "Text in Presentations and Drawings"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0808\n"
+"simpress.tree\n"
+"0410\n"
"node.text"
-msgid "Data Ranges"
+msgid "Viewing"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0809\n"
+"smath.tree\n"
+"03\n"
+"help_section.text"
+msgid "Formulas"
+msgstr "Công thức"
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0301\n"
"node.text"
-msgid "Pivot Table"
+msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0810\n"
+"smath.tree\n"
+"0302\n"
"node.text"
-msgid "Scenarios"
+msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0811\n"
+"smath.tree\n"
+"0303\n"
"node.text"
-msgid "References"
+msgid "Working with Formulas"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0812\n"
+"swriter.tree\n"
+"02\n"
+"help_section.text"
+msgid "Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0201\n"
"node.text"
-msgid "Viewing, Selecting, Copying"
+msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0813\n"
+"swriter.tree\n"
+"0202\n"
"node.text"
-msgid "Formulas and Calculations"
+msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0814\n"
+"swriter.tree\n"
+"020201\n"
"node.text"
-msgid "Protection"
+msgid "Menus"
+msgstr "Trình đơn"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0203\n"
+"node.text"
+msgid "Creating Text Documents"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0815\n"
+"swriter.tree\n"
+"0204\n"
"node.text"
-msgid "Miscellaneous"
+msgid "Graphics in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0205\n"
+"node.text"
+msgid "Tables in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0206\n"
+"node.text"
+msgid "Objects in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0207\n"
+"node.text"
+msgid "Sections and Frames in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0208\n"
+"node.text"
+msgid "Tables of Contents and Indexes"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0209\n"
+"node.text"
+msgid "Fields in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0210\n"
+"node.text"
+msgid "Navigating Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0211\n"
+"node.text"
+msgid "Calculating in Text Documents"
+msgstr "Tính trong tài liệu văn bản"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0212\n"
+"node.text"
+msgid "Formatting Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"021201\n"
+"node.text"
+msgid "Templates and Styles"
+msgstr "Mẫu và Kiểu dáng"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0213\n"
+"node.text"
+msgid "Special Text Elements"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0214\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0215\n"
+"node.text"
+msgid "Numbering and Lists"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0216\n"
+"node.text"
+msgid "Spellchecking, Thesaurus, and Languages"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0218\n"
+"node.text"
+msgid "Troubleshooting Tips"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0219\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0220\n"
+"node.text"
+msgid "Master Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0221\n"
+"node.text"
+msgid "Links and References"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0222\n"
+"node.text"
+msgid "Printing"
+msgstr "In ấn"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0223\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"06\n"
+"help_section.text"
+msgid "HTML Documents"
msgstr ""
diff --git a/source/vi/helpcontent2/source/text/sbasic/guide.po b/source/vi/helpcontent2/source/text/sbasic/guide.po
index 28efbd98360..c0913dd9bf4 100644
--- a/source/vi/helpcontent2/source/text/sbasic/guide.po
+++ b/source/vi/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-04-05 23:26+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,6 +15,49 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"tit\n"
+"help.text"
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr "Thay đổi các Các thuộc tính của Điều khiển trong bộ Sửa Hộp thoại"
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"bm_id3145786\n"
+"help.text"
+msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
+msgstr "<bookmark_value>thuộc tính;điều khiển trong bộ sửa hộp thoại</bookmark_value><bookmark_value>thay đổi;thuộc tính điều khiển</bookmark_value><bookmark_value>điều khiển;thay đổi thuộc tính</bookmark_value><bookmark_value>bộ sửa hộp thoại;thay đổi thuộc tính điều khiển</bookmark_value>"
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"hd_id3145786\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Thay đổi các Các thuộc tính của Điều khiển trong bộ Sửa Hộp thoại\">Thay đổi các Các thuộc tính của Điều khiển trong bộ Sửa Hộp thoại</link></variable>"
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3147317\n"
+"2\n"
+"help.text"
+msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
+msgstr "Bạn có thể đặt các thuộc tính của điều khiển bạn thêm vào hộp thoại. Chẳng hạn, bạn có thể thay đổi màu, tên và kích cỡ của nút bạn đã thêm. Cũng có thể thay đổi phần lớn thuộc tính điều khiển khi tạo hay sửa hộp thoại. Tuy nhiên, một số thuộc tính chỉ có thể được thay đổi vào lúc chạy."
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3145749\n"
+"3\n"
+"help.text"
+msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
+msgstr "Để thay đổi thuộc tính của một điều khiển trong chế độ thiết kế, nhấn-phải vào điều khiển rồi chọn <emph>Thuộc tính</emph>."
+
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -207,7 +250,6 @@ msgid "Displaying a Dialog"
msgstr "Hiển thị hộp thoại"
#: sample_code.xhp
-#, fuzzy
msgctxt ""
"sample_code.xhp\n"
"par_id3145801\n"
@@ -297,7 +339,6 @@ msgid "REM execute dialog"
msgstr "REM thực hiện hộp thoại"
#: sample_code.xhp
-#, fuzzy
msgctxt ""
"sample_code.xhp\n"
"par_id3146115\n"
@@ -347,48 +388,66 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr "REM gỡ bỏ mục nhập thứ nhất khỏi Hộp Liệt kê"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
+"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Changing the Properties of Controls in the Dialog Editor"
-msgstr "Thay đổi các Các thuộc tính của Điều khiển trong bộ Sửa Hộp thoại"
+msgid "Opening a Dialog With Program Code"
+msgstr "Mở Hộp thoại bằng Mã Chương trình"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"bm_id3145786\n"
+"show_dialog.xhp\n"
+"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
-msgstr "<bookmark_value>thuộc tính;điều khiển trong bộ sửa hộp thoại</bookmark_value><bookmark_value>thay đổi;thuộc tính điều khiển</bookmark_value><bookmark_value>điều khiển;thay đổi thuộc tính</bookmark_value><bookmark_value>bộ sửa hộp thoại;thay đổi thuộc tính điều khiển</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgstr "<bookmark_value>bật/tắt mô-đun và hộp thoại</bookmark_value><bookmark_value>hộp thoại;dùng mã chương trình để hiển thị (thí dụ)</bookmark_value><bookmark_value>thí dụ;hiển thị hộp thoại bằng mã chương trình</bookmark_value>"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"hd_id3145786\n"
+"show_dialog.xhp\n"
+"hd_id3154140\n"
"1\n"
"help.text"
-msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Thay đổi các Các thuộc tính của Điều khiển trong bộ Sửa Hộp thoại\">Thay đổi các Các thuộc tính của Điều khiển trong bộ Sửa Hộp thoại</link></variable>"
+msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
+msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Mở Hộp thoại bằng Mã Chương trình\">Mở Hộp thoại bằng Mã Chương trình</link></variable>"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"par_id3147317\n"
+"show_dialog.xhp\n"
+"par_id3145171\n"
"2\n"
"help.text"
-msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
-msgstr "Bạn có thể đặt các thuộc tính của điều khiển bạn thêm vào hộp thoại. Chẳng hạn, bạn có thể thay đổi màu, tên và kích cỡ của nút bạn đã thêm. Cũng có thể thay đổi phần lớn thuộc tính điều khiển khi tạo hay sửa hộp thoại. Tuy nhiên, một số thuộc tính chỉ có thể được thay đổi vào lúc chạy."
+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 "Trong cửa sổ <item type=\"productname\">%PRODUCTNAME</item> BASIC cho hộp thoại bạn đã tạo, rời bộ sửa hộp thoại bằng cách nhấn vào thẻ tên của Mô-đun cho đó hộp thoại được gán. Thẻ tên ở dưới cửa sổ."
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"par_id3145749\n"
-"3\n"
+"show_dialog.xhp\n"
+"par_id3153968\n"
+"6\n"
"help.text"
-msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
-msgstr "Để thay đổi thuộc tính của một điều khiển trong chế độ thiết kế, nhấn-phải vào điều khiển rồi chọn <emph>Thuộc tính</emph>."
+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 "Hãy gõ mã theo đây cho hàm phụ tên <emph>Dialog1Show</emph>. Trong mẫu này, bạn tạo một hộp thoại tên \"Dialog1\":"
+
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3152596\n"
+"18\n"
+"help.text"
+msgid "Without using \"LoadDialog\" you can call the code as follows:"
+msgstr "Không dùng \"LoadDialog\", bạn vẫn còn có thể gọi mã như theo :"
+
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3153157\n"
+"16\n"
+"help.text"
+msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
+msgstr "Khi bạn thực hiện mã này, hộp thoại \"Dialog1\" sẽ mở. Để đóng nó, nhấn vào nút đóng (x) trên thanh tựa."
#: translation.xhp
msgctxt ""
@@ -661,64 +720,3 @@ msgctxt ""
"help.text"
msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings."
msgstr "Nếu người dùng có phiên bản %PRODUCTNAME cũ không hỗ trợ tài nguyên chuỗi có thể địa hoá trong hộp thoại Basic thì người dùng sẽ thấy các chuỗi theo ngôn ngữ mặc định."
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"tit\n"
-"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Mở Hộp thoại bằng Mã Chương trình"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"bm_id3154140\n"
-"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>bật/tắt mô-đun và hộp thoại</bookmark_value><bookmark_value>hộp thoại;dùng mã chương trình để hiển thị (thí dụ)</bookmark_value><bookmark_value>thí dụ;hiển thị hộp thoại bằng mã chương trình</bookmark_value>"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"hd_id3154140\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
-msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Mở Hộp thoại bằng Mã Chương trình\">Mở Hộp thoại bằng Mã Chương trình</link></variable>"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3145171\n"
-"2\n"
-"help.text"
-msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
-msgstr "Trong cửa sổ <item type=\"productname\">%PRODUCTNAME</item> BASIC cho hộp thoại bạn đã tạo, rời bộ sửa hộp thoại bằng cách nhấn vào thẻ tên của Mô-đun cho đó hộp thoại được gán. Thẻ tên ở dưới cửa sổ."
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3153968\n"
-"6\n"
-"help.text"
-msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
-msgstr "Hãy gõ mã theo đây cho hàm phụ tên <emph>Dialog1Show</emph>. Trong mẫu này, bạn tạo một hộp thoại tên \"Dialog1\":"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "Without using \"LoadDialog\" you can call the code as follows:"
-msgstr "Không dùng \"LoadDialog\", bạn vẫn còn có thể gọi mã như theo :"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3153157\n"
-"16\n"
-"help.text"
-msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
-msgstr "Khi bạn thực hiện mã này, hộp thoại \"Dialog1\" sẽ mở. Để đóng nó, nhấn vào nút đóng (x) trên thanh tựa."
diff --git a/source/vi/helpcontent2/source/text/sbasic/shared.po b/source/vi/helpcontent2/source/text/sbasic/shared.po
index 13ab591db26..801c77c17eb 100644
--- a/source/vi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/vi/helpcontent2/source/text/sbasic/shared.po
@@ -1,19 +1,5053 @@
-#
+#. extracted from helpcontent2/source/text/sbasic/shared
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-05-03 12:01+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic Glossary"
+msgstr "Từ điển Thuật ngữ $[officename] Basic"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145068\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"Từ điển Thuật ngữ $[officename] Basic\">Từ điển Thuật ngữ $[officename] Basic</link>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150792\n"
+"2\n"
+"help.text"
+msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
+msgstr "Từ điển thuật ngữ này giải thích một số thuật ngữ mà bạn có thể thấy trong khi làm việc với $[officename] Basic."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155133\n"
+"7\n"
+"help.text"
+msgid "Decimal Point"
+msgstr "Dấu thập phân"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156443\n"
+"8\n"
+"help.text"
+msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
+msgstr "Khi chuyển đổi con số, $[officename] Basic dùng thiết lập miền địa phương của hệ thống để xác định kiểu dấu tách thập phân và dấu tách hàng nghìn. (Có miền địa phương Việt Nam để cung cấp thiết lập tiếng Việt và các đơn vị, thứ tự đối chiếu và ngày/giờ thích hợp.)"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153092\n"
+"9\n"
+"help.text"
+msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+msgstr "Ứng xử có tác động cả hai việc chuyển đổi ẩn ( 1 + \"2.3\" = 3.3 ) và hàm lúc chạy <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link> (thuộc số)."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155854\n"
+"29\n"
+"help.text"
+msgid "Colors"
+msgstr "Màu sắc"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3145366\n"
+"30\n"
+"help.text"
+msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
+msgstr "Trong mã $[officename] Basic, màu sắc lúc nào cũng được xử lý dưới dạng giá trị số nguyên dài. Giá trị trả về của màu sắc cũng lúc nào là giá trị số nguyên dài. Khi bạn xác định các thuộc tính, cũng có thể ghi rõ màu sắc theo mã RGB (Đỏ, Lục, Xanh) được chuyển đổi sang giá trị số nguyên dài, dùng <link href=\"text/sbasic/shared/03010305.xhp\" name=\"hàm RGB\">hàm RGB</link>."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146119\n"
+"32\n"
+"help.text"
+msgid "Measurement Units"
+msgstr "Đơn vị đo"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154013\n"
+"33\n"
+"help.text"
+msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145801\n"
+"help.text"
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr "<bookmark_value>twips; định nghĩa</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145801\n"
+"5\n"
+"help.text"
+msgid "Twips"
+msgstr "Twips"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154731\n"
+"6\n"
+"help.text"
+msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
+msgstr "Một twip là một đơn vị không phụ thuộc vào màn hình mà được dùng để xác định thống nhất vị trí và kích cỡ của phần tử màn hình trên mọi hệ thống hiển thị. Một twip là 1/1440 insơ hay 1/20 điểm in. Có 1440 twip trong mỗi insơ, và khoảng 567 twip trong mỗi xenti-mét."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153159\n"
+"106\n"
+"help.text"
+msgid "URL Notation"
+msgstr "Kiểu ghi URL"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153415\n"
+"108\n"
+"help.text"
+msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
+msgstr "URL (bộ định vị tài nguyên thống nhất) được dùng để xác định địa điểm của một tài nguyên nào đó (v.d. một tập tin trong hệ thống tập tin), bình thường bên trong môi trường mạng. Một địa chỉ URL chứa ba phần ghi rõ (1) giao thức, (2) tên máy và (3) đường dẫn:"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3149121\n"
+"107\n"
+"help.text"
+msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgstr "<emph>giao thức</emph>://<emph>tên_của_máy</emph>/<emph>đường/dẫn/đến/tập_tin.html</emph>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3168612\n"
+"109\n"
+"help.text"
+msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
+msgstr "Địa chỉ URL thường dùng trên Internet để định vị trang Web. Một số giao thức thường dùng là <emph>http</emph> (trang Web), <emph>ftp</emph> (truyền tập tin) và <emph>file</emph>. Giao thức <emph>file</emph> được dùng khi tham chiếu đến một tập tin nằm trên hệ thống tập tin cục bộ."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150324\n"
+"110\n"
+"help.text"
+msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
+msgstr "Kiểu ghi địa chỉ URL không cho phép dùng một số ký tự đặc biệt nào đó. Chúng hoặc được thay thế bằng ký tự khác, hoặc được mã hoá. Một sổ chéo (<emph>/</emph>) được dùng làm dấu tách phần đường dẫn. Ví dụ, một tập tin được gọi <emph>C:\\My File.sxw</emph> trên máy cục bộ dưới Windows trở thành <emph>file:///C|/My%20File.sxw</emph> theo kiểu ghi URL."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"tit\n"
+"help.text"
+msgid "Information"
+msgstr "Thông tin"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3148550\n"
+"1\n"
+"help.text"
+msgid "Information"
+msgstr "Thông tin"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153381\n"
+"102\n"
+"help.text"
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150870\n"
+"103\n"
+"help.text"
+msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
+msgstr "Cũng vậy với thiết lập miền địa phương đối với định dạng của ngày tháng, thời gian và tiền tệ. Mã định dạng Basic sẽ được giải thích và hiển thị tùy theo thiết lập miền địa phương của bạn."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156424\n"
+"2\n"
+"help.text"
+msgid "The color values of the 16 basic colors are as follows:"
+msgstr "16 màu sắc cơ bản có những giá trị màu này:"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153091\n"
+"3\n"
+"help.text"
+msgid "<emph>Color Value</emph>"
+msgstr "<emph>Giá trị màu</emph>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154319\n"
+"4\n"
+"help.text"
+msgid "<emph>Color Name</emph>"
+msgstr "<emph>Tên màu</emph>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151112\n"
+"5\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155854\n"
+"6\n"
+"help.text"
+msgid "Black"
+msgstr "Đen"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154942\n"
+"7\n"
+"help.text"
+msgid "128"
+msgstr "128"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154731\n"
+"8\n"
+"help.text"
+msgid "Blue"
+msgstr "Xanh"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145645\n"
+"9\n"
+"help.text"
+msgid "32768"
+msgstr "32768"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149400\n"
+"10\n"
+"help.text"
+msgid "Green"
+msgstr "Lục"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150753\n"
+"11\n"
+"help.text"
+msgid "32896"
+msgstr "32896"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153765\n"
+"12\n"
+"help.text"
+msgid "Cyan"
+msgstr "Lục lam"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154756\n"
+"13\n"
+"help.text"
+msgid "8388608"
+msgstr "8388608"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159266\n"
+"14\n"
+"help.text"
+msgid "Red"
+msgstr "Đỏ"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3163807\n"
+"15\n"
+"help.text"
+msgid "8388736"
+msgstr "8388736"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145150\n"
+"16\n"
+"help.text"
+msgid "Magenta"
+msgstr "Đỏ tươi"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147002\n"
+"17\n"
+"help.text"
+msgid "8421376"
+msgstr "8421376"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152778\n"
+"18\n"
+"help.text"
+msgid "Yellow"
+msgstr "Vàng"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150088\n"
+"19\n"
+"help.text"
+msgid "8421504"
+msgstr "8421504"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159239\n"
+"20\n"
+"help.text"
+msgid "White"
+msgstr "Trắng"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150206\n"
+"21\n"
+"help.text"
+msgid "12632256"
+msgstr "12632256"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149817\n"
+"22\n"
+"help.text"
+msgid "Gray"
+msgstr "Xám"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150363\n"
+"23\n"
+"help.text"
+msgid "255"
+msgstr "255"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154576\n"
+"24\n"
+"help.text"
+msgid "Light blue"
+msgstr "Xanh nhạt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150367\n"
+"25\n"
+"help.text"
+msgid "65280"
+msgstr "65280"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150202\n"
+"26\n"
+"help.text"
+msgid "Light green"
+msgstr "Lục nhạt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154487\n"
+"27\n"
+"help.text"
+msgid "65535"
+msgstr "65535"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151332\n"
+"28\n"
+"help.text"
+msgid "Light cyan"
+msgstr "Xanh lá mạ nhạt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148702\n"
+"29\n"
+"help.text"
+msgid "16711680"
+msgstr "16711680"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153067\n"
+"30\n"
+"help.text"
+msgid "Light red"
+msgstr "Đỏ nhạt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153912\n"
+"31\n"
+"help.text"
+msgid "16711935"
+msgstr "16711935"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159097\n"
+"32\n"
+"help.text"
+msgid "Light magenta"
+msgstr "Đỏ tươi nhạt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155266\n"
+"33\n"
+"help.text"
+msgid "16776960"
+msgstr "16776960"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3157978\n"
+"34\n"
+"help.text"
+msgid "Light yellow"
+msgstr "Vàng nhạt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153286\n"
+"35\n"
+"help.text"
+msgid "16777215"
+msgstr "16777215"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151302\n"
+"36\n"
+"help.text"
+msgid "Transparent white"
+msgstr "Màu trắng trong suốt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3152869\n"
+"37\n"
+"help.text"
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr "<variable id=\"errorcode\">Mã lỗi</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id315509599\n"
+"help.text"
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr "<variable id=\"err18\">18 Người dùng đã gián đoạn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155095\n"
+"38\n"
+"help.text"
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr "<variable id=\"err2\">2 Lỗi cú pháp không được xác định </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149126\n"
+"39\n"
+"help.text"
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr "<variable id=\"err3\">3 Trà về mà không có Gosub </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153976\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr "<variable id=\"err14\">14 Tham số không hợp lệ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150891\n"
+"41\n"
+"help.text"
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr "<variable id=\"err5\">5 Sai gọi thủ tục</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159227\n"
+"42\n"
+"help.text"
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr "<variable id=\"err6\">6 Tràn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154649\n"
+"43\n"
+"help.text"
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr "<variable id=\"err7\">7 Cạn bộ nhớ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150050\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148900\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr "<variable id=\"err9\">9 Chỉ số dưới ở ngoài phạm vi </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153806\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146963\n"
+"47\n"
+"help.text"
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr "<variable id=\"err11\">11 Chia cho không </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153013\n"
+"48\n"
+"help.text"
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155593\n"
+"49\n"
+"help.text"
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr "<variable id=\"err13\">13 Kiểu không khớp</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151197\n"
+"50\n"
+"help.text"
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr "<variable id=\"err14\">14 Tham số không hợp lệ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154710\n"
+"51\n"
+"help.text"
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr "<variable id=\"err18\">18 Người dùng đã gián đoạn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147504\n"
+"52\n"
+"help.text"
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr "<variable id=\"err20\">20 Tiếp tục mà không có lỗi </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145319\n"
+"53\n"
+"help.text"
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr "<variable id=\"err28\">28 Ngăn xếp hết dung lượng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146110\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr "<variable id=\"err35\">35 Chưa xác định Thủ tục hoặc Hàm </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147246\n"
+"55\n"
+"help.text"
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr "<variable id=\"err48\">48 Gặp lỗi khi nạp DLL </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146101\n"
+"56\n"
+"help.text"
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr "<variable id=\"err49\">49 Quy ước gọi DLL sai </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153957\n"
+"57\n"
+"help.text"
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154404\n"
+"58\n"
+"help.text"
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr "<variable id=\"err52\">52 Tên/số tập tin sai </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151338\n"
+"59\n"
+"help.text"
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147298\n"
+"60\n"
+"help.text"
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr "<variable id=\"err54\">54 Sai chế độ tập tin</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148747\n"
+"61\n"
+"help.text"
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145233\n"
+"62\n"
+"help.text"
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr "<variable id=\"err57\">57 Lỗi V/R thiết bị </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156399\n"
+"63\n"
+"help.text"
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr "<variable id=\"err58\">58 Tập tin đã có </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149324\n"
+"64\n"
+"help.text"
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr "<variable id=\"err59\">59 Sai chiều dài bản ghi </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147409\n"
+"65\n"
+"help.text"
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr "<variable id=\"err61\">61 Đĩa đầy</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149146\n"
+"66\n"
+"help.text"
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr "<variable id=\"err67\">67 Quá nhiều tập tin</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150456\n"
+"67\n"
+"help.text"
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr "<variable id=\"err63\">63 Sai số thứ tự bản ghi </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146883\n"
+"68\n"
+"help.text"
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr "<variable id=\"err67\">67 Quá nhiều tập tin</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146818\n"
+"69\n"
+"help.text"
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr "<variable id=\"err68\">68 Thiết bị không sẵn sàng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145225\n"
+"70\n"
+"help.text"
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr "<variable id=\"err70\">70 Từ chối cấp phép </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150372\n"
+"71\n"
+"help.text"
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr "<variable id=\"err71\">71 Đĩa không sẵn sàng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148894\n"
+"72\n"
+"help.text"
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr "<variable id=\"err73\">73 Tính năng chưa được thực hiện </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152981\n"
+"73\n"
+"help.text"
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr "<variable id=\"err74\">74 Không thay đổi tên với ổ đĩa khác</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149355\n"
+"74\n"
+"help.text"
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr "<variable id=\"err75\">75 Lỗi truy cập đến đường dẫn/tập tin</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150477\n"
+"75\n"
+"help.text"
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154678\n"
+"76\n"
+"help.text"
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr "<variable id=\"err91\">91 Chưa đặt biến đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149890\n"
+"77\n"
+"help.text"
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr "<variable id=\"err93\">93 Chuỗi mẫu sai</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146942\n"
+"78\n"
+"help.text"
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr "<variable id=\"err4\">4 Làm lại từ đầu </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469429\n"
+"help.text"
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr "<variable id=\"err57\">57 Lỗi V/R thiết bị </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469428\n"
+"help.text"
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr "<variable id=\"err20\">20 Tiếp tục mà không có lỗi </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469427\n"
+"help.text"
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr "<variable id=\"err68\">68 Thiết bị không sẵn sàng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469426\n"
+"help.text"
+msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469425\n"
+"help.text"
+msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"err425\">425 Sai dùng đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469424\n"
+"help.text"
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr "<variable id=\"err28\">28 Ngăn xếp hết dung lượng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469423\n"
+"help.text"
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr "<variable id=\"err451\">451 Đối tượng không phải là một bộ sưu tập</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469422\n"
+"help.text"
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr "<variable id=\"err28\">28 Ngăn xếp hết dung lượng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469421\n"
+"help.text"
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469420\n"
+"help.text"
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469419\n"
+"help.text"
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr "<variable id=\"err3\">3 Trà về mà không có Gosub </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469418\n"
+"help.text"
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469417\n"
+"help.text"
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr "<variable id=\"err93\">93 Chuỗi mẫu sai</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469416\n"
+"help.text"
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr "<variable id=\"err18\">18 Người dùng đã gián đoạn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469415\n"
+"help.text"
+msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgstr "<variable id=\"err423\">423 Không tìm thấy thuộc tính hay phương pháp </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469414\n"
+"help.text"
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr "<variable id=\"err460\">460 Định dạng bảng nháp không hợp lệ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469413\n"
+"help.text"
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469412\n"
+"help.text"
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469411\n"
+"help.text"
+msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgstr "<variable id=\"err71\">71 Đĩa không sẵn sàng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469410\n"
+"help.text"
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr "<variable id=\"err424\">424 Cần thiết đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150028\n"
+"79\n"
+"help.text"
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr "<variable id=\"err323\">323 Không thể nạp mô-đun </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148434\n"
+"80\n"
+"help.text"
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr "<variable id=\"err341\">341 Sai chỉ mục đối tượng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3143219\n"
+"81\n"
+"help.text"
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr "<variable id=\"err68\">68 Thiết bị không sẵn sàng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3144744\n"
+"82\n"
+"help.text"
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr "<variable id=\"err380\">380 Giá trị thuộc tính sai </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147420\n"
+"83\n"
+"help.text"
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr "<variable id=\"err382\">382 Thuộc tính là chỉ-đọc </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147472\n"
+"84\n"
+"help.text"
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr "<variable id=\"err394\">394 Thuộc tính là chỉ-ghi</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148583\n"
+"85\n"
+"help.text"
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr "<variable id=\"err420\">420 Sai tham chiếu đến đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153329\n"
+"86\n"
+"help.text"
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr "<variable id=\"err423\">423 Không tìm thấy thuộc tính hay phương pháp </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148738\n"
+"87\n"
+"help.text"
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr "<variable id=\"err424\">424 Cần thiết đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159084\n"
+"88\n"
+"help.text"
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr "<variable id=\"err425\">425 Sai dùng đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146806\n"
+"89\n"
+"help.text"
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr "<variable id=\"err440\">440 Lỗi tự động hoá OLE </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146130\n"
+"90\n"
+"help.text"
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr "<variable id=\"err423\">423 Không tìm thấy thuộc tính hay phương pháp </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154374\n"
+"91\n"
+"help.text"
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr "<variable id=\"err440\">440 Lỗi tự động hoá OLE </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149685\n"
+"92\n"
+"help.text"
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr "<variable id=\"err445\">445 Đối tượng không hỗ trợ hành động này </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150282\n"
+"93\n"
+"help.text"
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr "<variable id=\"err448\">448 Không tìm thấy đối số đặt tên </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150142\n"
+"94\n"
+"help.text"
+msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgstr "<variable id=\"err445\">445 Đối tượng không hỗ trợ hành động này </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152771\n"
+"95\n"
+"help.text"
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr "<variable id=\"err448\">448 Không tìm thấy đối số đặt tên </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145145\n"
+"96\n"
+"help.text"
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr "<variable id=\"err449\">449 Đối số không phải tùy ý </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154399\n"
+"97\n"
+"help.text"
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err450\">450 Số đối số không đúng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146137\n"
+"98\n"
+"help.text"
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr "<variable id=\"err451\">451 Đối tượng không phải là một bộ sưu tập</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149507\n"
+"99\n"
+"help.text"
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr "<variable id=\"err452\">452 Cái thứ tự sai</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154566\n"
+"100\n"
+"help.text"
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr "<variable id=\"err453\">453 Không tìm thấy hàm DLL đã ghi rõ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145595\n"
+"101\n"
+"help.text"
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr "<variable id=\"err460\">460 Định dạng bảng nháp không hợp lệ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455951\n"
+"help.text"
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455952\n"
+"help.text"
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr "<variable id=\"err424\">424 Cần thiết đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455953\n"
+"help.text"
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455954\n"
+"help.text"
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455955\n"
+"help.text"
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455956\n"
+"help.text"
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455957\n"
+"help.text"
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455958\n"
+"help.text"
+msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgstr "<variable id=\"err35\">35 Chưa xác định Thủ tục hoặc Hàm </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455959\n"
+"help.text"
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455960\n"
+"help.text"
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455961\n"
+"help.text"
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455962\n"
+"help.text"
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455963\n"
+"help.text"
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455964\n"
+"help.text"
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr "<variable id=\"err6\">6 Tràn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455965\n"
+"help.text"
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455966\n"
+"help.text"
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr "<variable id=\"err62\">62 Nhập liệu qua kết thúc tập tin </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455967\n"
+"help.text"
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455968\n"
+"help.text"
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455969\n"
+"help.text"
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455970\n"
+"help.text"
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr "<variable id=\"err93\">93 Chuỗi mẫu sai</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455971\n"
+"help.text"
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455972\n"
+"help.text"
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr "<variable id=\"err20\">20 Tiếp tục mà không có lỗi </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455973\n"
+"help.text"
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr "<variable id=\"err5\">5 Sai gọi thủ tục</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455974\n"
+"help.text"
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr "<variable id=\"err94\">94 Sai dùng Null (vô giá trị) </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455975\n"
+"help.text"
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455976\n"
+"help.text"
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455977\n"
+"help.text"
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr "<variable id=\"err67\">67 Quá nhiều tập tin</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455978\n"
+"help.text"
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455979\n"
+"help.text"
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr "<variable id=\"err71\">71 Đĩa không sẵn sàng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455980\n"
+"help.text"
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr "<variable id=\"err91\">91 Chưa đặt biến đối tượng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455981\n"
+"help.text"
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr "<variable id=\"err438\">438 Đối tượng không hỗ trợ phương pháp </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455982\n"
+"help.text"
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455983\n"
+"help.text"
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err450\">450 Số đối số không đúng </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455984\n"
+"help.text"
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr "<variable id=\"err48\">48 Gặp lỗi khi nạp DLL </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455985\n"
+"help.text"
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455986\n"
+"help.text"
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming with $[officename] Basic"
+msgstr "Lập trình bằng $[officename] Basic"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3156027\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Lập trình bằng $[officename] Basic\">Lập trình bằng $[officename] Basic</link></variable>"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3153708\n"
+"2\n"
+"help.text"
+msgid "This is where you find general information about working with macros and $[officename] Basic."
+msgstr "Đây là nơi bạn tìm thông tin chung về cách thao tác vĩ lệnh và ngôn ngữ $[officename] Basic."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basics"
+msgstr "Thông tin Cơ bản"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"bm_id4488967\n"
+"help.text"
+msgid "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
+msgstr "<bookmark_value>quy tắc cơ bản</bookmark_value><bookmark_value>trình con</bookmark_value><bookmark_value>biến;toàn cục và lôgic</bookmark_value><bookmark_value>mô-đun;trình con và hàm</bookmark_value>"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3154927\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Thông tin Cơ bản\">Thông tin Cơ bản</link>"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156023\n"
+"14\n"
+"help.text"
+msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgstr "Phần này diễn tả các thông tin cơ bản để làm việc với $[officename] Basic."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3147560\n"
+"2\n"
+"help.text"
+msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
+msgstr "Mã $[officename] Basic dựa vào các trình con và hàm mà được ghi rõ giữa các phần kiểu <emph>sub...end sub</emph> và <emph>function...end function</emph> (riêng từng cái). Mỗi Sub (trình con) hay Function (hàm) có khả năng gọi các trình con và hàm khác. Nếu bạn viết mã giống loài cho một trình con hay hàm, rất có thể sẽ dùng lại nó trong các chương trình khác. Xem thêm <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Thủ tục và Hàm\">Thủ tục và Hàm</link>."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id314756320\n"
+"help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150398\n"
+"3\n"
+"help.text"
+msgid "What is a Sub?"
+msgstr "Sub là gì?"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3148797\n"
+"4\n"
+"help.text"
+msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
+msgstr "<emph>Sub</emph> là lời viết tắt của từ <emph>subroutine</emph> (trình con) mà được dùng để làm một công việc nào đó bên trong chương trình. Trình con được dùng để chia một công việc ra các thủ tục riêng. Chia một chương trình ra các thủ tục và thủ tục con thì cải tiến khả năng đọc mã nguồn và giảm lỗi. Một trình con có thể chấp nhận đối số làm tham số, nhưng không trả giá trị về trình con hay hàm đang gọi, chẳng hạn:"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3150868\n"
+"15\n"
+"help.text"
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr "Hành_động(Giá_trị_1,Giá_trị_2)"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3156282\n"
+"5\n"
+"help.text"
+msgid "What is a Function?"
+msgstr "Hàm là gì?"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156424\n"
+"6\n"
+"help.text"
+msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
+msgstr "Về cơ bản thì một <emph>hàm</emph> là một trình con mà trả về một giá trị. Bạn có thể sử dụng một hàm ở bên phải của lời khai báo biến, hoặc ở các nơi khác thích hợp với biến, thí dụ :"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3146985\n"
+"7\n"
+"help.text"
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr "MySecondValue = myFunction(MyFirstValue)"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3153364\n"
+"8\n"
+"help.text"
+msgid "Global and local variables"
+msgstr "Biến toàn cục và cục bộ"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3151112\n"
+"9\n"
+"help.text"
+msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
+msgstr "Biến toàn cục thì hợp lệ cho tất cả các trình con và hàm đều nằm bên trong cùng một mô-đun. Chúng được khai báo ở đầu của mô-đun, trước khi bắt đầu trình con hay hàm đầu tiên."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3154012\n"
+"10\n"
+"help.text"
+msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
+msgstr "Các biến được khai báo bên trong một trình con hay hàm thì hợp lệ chỉ bên trong trình con hay hàm đó. Biến kiểu này ghi đè lên biến toàn cục cùng tên và biến cục bộ cùng tên mà thuộc về trình con hay hàm cấp trên."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150010\n"
+"11\n"
+"help.text"
+msgid "Structuring"
+msgstr "Cấu trúc"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3153727\n"
+"12\n"
+"help.text"
+msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
+msgstr "Sau khi phân cách chương trình ra các trình con và các hàm, bạn có thể lưu những trình con và hàm này dưới dạng tập tin để dùng lại trong dự án khác. Mã $[officename] Basic hỗ trợ <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Mô-đun và Thư viện\">Mô-đun và Thư viện</link>. Trình con và hàm lúc nào cũng được chứa trong một mô-đun. Bạn có thể xác định mô-đun là toàn cục hoặc phần của tài liệu. Nhiều mô-đun cũng có thể được kết hợp để làm cùng một thư viện."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3152578\n"
+"13\n"
+"help.text"
+msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
+msgstr "Bạn có thể sao chép hay di chuyển các trình con, hàm, mô-đun và/hoặc thư viện từ tập tin này sang tập tin khác, dùng hộp thoại <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link>."
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148946\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Cú pháp\">Cú pháp</link>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150793\n"
+"2\n"
+"help.text"
+msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
+msgstr "Phần này diễn tả các phần tử cú pháp cơ bản của mã Basic của $[officename]. Để đọc mô tả chi tiết, xem Sổ Tay $[officename] Basic mà công bố riêng."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Variables"
+msgstr "Sử dụng Biến"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>names of variables</bookmark_value><bookmark_value>variables; using</bookmark_value><bookmark_value>types of variables</bookmark_value><bookmark_value>declaring variables</bookmark_value><bookmark_value>values;of variables</bookmark_value><bookmark_value>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
+msgstr "<bookmark_value>tên của biến</bookmark_value><bookmark_value>biến; sử dụng</bookmark_value><bookmark_value>kiểu của biến</bookmark_value><bookmark_value>khai báo biến</bookmark_value><bookmark_value>giá trị;của biến</bookmark_value><bookmark_value>hằng số</bookmark_value><bookmark_value>mảng;tuyên bố</bookmark_value><bookmark_value>xác định;hằng số</bookmark_value>"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149346\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Sử dụng biến\">Sử dụng biến</link>"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154346\n"
+"3\n"
+"help.text"
+msgid "The following describes the basic use of variables in $[officename] Basic."
+msgstr "Phần theo đây diễn tả cách sử dụng cơ bản các biến trong mã Basic của $[officename]."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153361\n"
+"4\n"
+"help.text"
+msgid "Naming Conventions for Variable Identifiers"
+msgstr "Quy ước đặt tên cho bộ nhận diện biến"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148797\n"
+"5\n"
+"help.text"
+msgid "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
+msgstr "Một tên biến có chiều dài tối đa là 255 ký tự. Ký tự đầu của tên biến phải là chữ cái (A-Z, a-z). Tên biến cũng có thể chứa chữ số, nhưng không cho phép chứa dấu chấm câu hoặc ký tự đặc biệt, trừ dấu gạch dưới (_). Trong mã Basic của $[officename], các bộ nhận diện biến không phân biệt chữ hoa/thường. Tên biến có thể chứa dấu cách, nhưng chỉ được chứa trong dấu ngoặc vuông."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156422\n"
+"6\n"
+"help.text"
+msgid "Examples for variable identifiers:"
+msgstr "Mẫu thí dụ về các bộ nhận diện khác nhau :"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156441\n"
+"126\n"
+"help.text"
+msgid "Correct"
+msgstr "Đúng"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149664\n"
+"127\n"
+"help.text"
+msgid "Correct"
+msgstr "Đúng"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146119\n"
+"128\n"
+"help.text"
+msgid "Correct"
+msgstr "Đúng"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153876\n"
+"11\n"
+"help.text"
+msgid "Not valid, variable with space must be enclosed in square brackets"
+msgstr "Không hợp lệ, biến chứa dấu cách phải nằm giữa dấu ngoặc vuông"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154510\n"
+"15\n"
+"help.text"
+msgid "Correct"
+msgstr "Đúng"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150330\n"
+"129\n"
+"help.text"
+msgid "Not valid, special characters are not allowed"
+msgstr "Không hợp lệ, không cho phép ký tự đặc biệt"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154254\n"
+"130\n"
+"help.text"
+msgid "Not valid, variable may not begin with a number"
+msgstr "Không hợp lệ, biến không thể bắt đầu với con số"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149256\n"
+"131\n"
+"help.text"
+msgid "Not valid, punctuation marks are not allowed"
+msgstr "Không hợp lệ, không cho phép dấu chấm câu"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3146317\n"
+"17\n"
+"help.text"
+msgid "Declaring Variables"
+msgstr "Khai báo biến"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150299\n"
+"18\n"
+"help.text"
+msgid "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word."
+msgstr "Trong mã Basic của $[officename], bạn không cần phải khai báo biến một cách dứt khoát. Có thể khai báo một biến bằng câu lệnh <emph>Dim</emph>. Cũng có thể khai báo nhiều biến đồng thời, bằng định giới các biến bằng dấu phẩy. Để xác định kiểu biến, dùng hoặc một dấu khai báo kiểu phía sau tên, hoặc từ khoá thích hợp."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154118\n"
+"140\n"
+"help.text"
+msgid "Examples for variable declarations:"
+msgstr "Mẫu thí dụ cho lời khai báo biến:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150982\n"
+"132\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Khai báo biến « a » làm Chuỗi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150343\n"
+"133\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Khai báo biến « a » làm Chuỗi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155507\n"
+"22\n"
+"help.text"
+msgid "Declares one variable as a String and one as an Integer"
+msgstr "Khai báo một biến dạng Chuỗi, và một biến khác dạng Số nguyên"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idN10859\n"
+"help.text"
+msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
+msgstr "Khai báo c là một biến lôgic có thể là Đúng hoặc Sai"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150519\n"
+"23\n"
+"help.text"
+msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
+msgstr "Rất quan trọng khi khai báo biến là mỗi lần bạn dùng ký tự khai báo kiểu, thậm chí nếu nó đã được dùng trong lời khai báo thay cho từ khoá. Vì vậy các câu lệnh sau không phải hợp lệ:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154527\n"
+"134\n"
+"help.text"
+msgid "Declares \"a\" as a String"
+msgstr "Khai báo « a » làm Chuỗi."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153064\n"
+"135\n"
+"help.text"
+msgid "Type-declaration missing: \"a$=\""
+msgstr "Lời khai báo kiểu còn thiếu: \"a$=\""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3144770\n"
+"26\n"
+"help.text"
+msgid "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
+msgstr "Một khi bạn khai báo một biến có kiểu cụ thể, không thể khai báo cùng biến dưới cùng tên với kiểu khác."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149331\n"
+"27\n"
+"help.text"
+msgid "Forcing Variable Declarations"
+msgstr "Ép buộc khai báo biến"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149443\n"
+"28\n"
+"help.text"
+msgid "To force declaration of variables, use the following command:"
+msgstr "Để ép buộc khai báo biến, dùng câu lệnh này:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155072\n"
+"30\n"
+"help.text"
+msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
+msgstr "Câu lệnh <emph>Tùy chọn dứt khoát</emph> phải là dòng đầu của mô-đun, phía trước trình con đầu tiên. Nói chung, chỉ mảng cần được khai báo dứt khoát. Các biến khác được khai báo tùy theo ký tự khai báo kiểu, không có thì có kiểu mặc định <emph>Đơn</emph>."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154614\n"
+"34\n"
+"help.text"
+msgid "Variable Types"
+msgstr "Kiểu biến"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155383\n"
+"35\n"
+"help.text"
+msgid "$[officename] Basic supports four variable classes:"
+msgstr "Mã Basic của $[officename] hỗ trợ bốn hạng biến:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153972\n"
+"36\n"
+"help.text"
+msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers."
+msgstr "Biến kiểu <emph>Số</emph> có thể chứa giá trị thuộc số. Một số biến nào đó được dùng để cất giữ số lớn hoặc số nhỏ, còn biến khác dùng cho số kiểu điểm động hoặc số kiểu phân số."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159226\n"
+"37\n"
+"help.text"
+msgid "<emph>String</emph> variables contain character strings."
+msgstr "Biến kiểu <emph>Chuỗi</emph> thì chứa chuỗi các ký tự."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145217\n"
+"38\n"
+"help.text"
+msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgstr "Biến <emph>Lôgic</emph> thì chứa giá trị hoặc ĐÚNG hoặc SAI."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154762\n"
+"39\n"
+"help.text"
+msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
+msgstr "Các biến kiểu <emph>Đối tượng</emph> có thể chứa các đối tượng có kiểu khác nhau, v.d. các bảng và tài liệu bên trong tài liệu khác."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153805\n"
+"40\n"
+"help.text"
+msgid "Integer Variables"
+msgstr "Biến số nguyên"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146966\n"
+"41\n"
+"help.text"
+msgid "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
+msgstr "Biến số nguyên nằm trong phạm vi (-32768 ... 32767). Nếu bạn gán một giá trị chấm động cho một biến số nguyên, các chữ số thập phân được làm tròn thành số nguyên gần nhất. Biến số nguyên được tính nhanh trong các thủ tục thì thích hợp với biến đếm trong vòng lặp. Một biến số nguyên chỉ chiếm 2 byte bộ nhớ. Ký tự khai báo kiểu là « % »."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147546\n"
+"45\n"
+"help.text"
+msgid "Long Integer Variables"
+msgstr "Biến số nguyên dài"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151193\n"
+"46\n"
+"help.text"
+msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
+msgstr "Biến số nguyên dài nằm trong phạm vi (-2147483648 ... 2147483647). Nếu bạn gán một giá trị điểm động cho một biến số nguyên dài, các chữ số thập phân được làm tròn thành số nguyên gần nhất. Biến số nguyên dài được tính nhanh trong thủ tục thì thích hợp với biến đếm trong vòng lặp với giá trị lớn. Một biến số nguyên dài chiếm 4 byte bộ nhớ. Ký tự khai báo kiểu là « & »."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id7596972\n"
+"help.text"
+msgid "Decimal Variables"
+msgstr "Biến thập phân"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id2649311\n"
+"help.text"
+msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+msgstr "BIến thập phân chấp nhận cả con số dương, con số âm và số không (độ chính xác đến 29 chữ số)."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id7617114\n"
+"help.text"
+msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+msgstr "Bạn có thể sử dụng dấu cộng (+) hoặc dấu trừ (-) làm tiền tố cho số thập phân (có dấu cách hay không, cũng được)."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id1593676\n"
+"help.text"
+msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
+msgstr "Gán một số thập phân cho một biến số nguyên thì %PRODUCTNAME Basic làm tròn giá trị."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147500\n"
+"50\n"
+"help.text"
+msgid "Single Variables"
+msgstr "Biến đơn"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153070\n"
+"51\n"
+"help.text"
+msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
+msgstr "Biến đơn có thể chứa giá trị dương hoặc giá trị âm trong phậm vi (3.402823 x 10E38 ... 1.401298 x 10E-45). Biến đơn là biến điểm động, trong đó độ chính xác thập phân giảm tỷ lệ với kích cỡ tăng của phần không thập phân của số. Biến đơn thích hợp với phép tính có độ chính xác vừa. Phép tính như vậy mất nhiều thời gian hơn phép tính với biến số nguyên, còn ít thời gian hơn phép tính với biến đôi. Một biến đơn chiếm 4 byte bộ nhớ. Ký tự khai báo kiểu là « ! »."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155753\n"
+"54\n"
+"help.text"
+msgid "Double Variables"
+msgstr "Biến đôi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150953\n"
+"55\n"
+"help.text"
+msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
+msgstr "Biến đôi có thể chứa giá trị hoặc dương hoặc âm, trong phạm vi (1.79769313486232 x 10E308 ... 4.94065645841247 x 10E-324). Biến đôi là biến điểm động, trong đó độ chính xác thập phân giảm tỷ lệ với kích cỡ tăng của phần không thập phân của số. Biến đôi thích hợp với phép tính chính xác. Phép tính như vậy mất nhiều thời gian hơn phép tính với biến đơn. Một biến đôi chiếm 8 byte bộ nhớ. Ký tự khai báo kiểu là « # »."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155747\n"
+"95\n"
+"help.text"
+msgid "Currency Variables"
+msgstr "Biến tiền tệ"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153337\n"
+"96\n"
+"help.text"
+msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
+msgstr "Biến kiểu tiền tệ được cất giữ nội bộ dưới dạng con số 64-bit (8 Byte) và được hiển thị dưới dạng con số thập phân cố định với 15 lần số nguyên và 4 chữ số thập phân. Các giá trị nằm trong phạm vi (-922337203685477.5808 ... +922337203685477.5807). Biến tiền tệ được dùng để tính giá trị tiền tệ với độ chính xác cao. Ký tự khai báo kiểu là « @ »."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148742\n"
+"58\n"
+"help.text"
+msgid "String Variables"
+msgstr "Biến chuỗi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151393\n"
+"59\n"
+"help.text"
+msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr "Biến chuỗi có thể chứa chuỗi ký tự chứa đến 65 535 ký tứ. Mỗi ký tự được cất giữ dưới dạng giá trị Unicode tương ứng. Biến chuỗi thích hợp với chức năng xử lý từ bên trong chương trình, và để cất giữ tạm thời bất cứ ký tự không thể in nào có chiều dài đến 64 KB. Bộ nhớ cần thiết để cất giữ biến chuỗi sẽ phụ thuộc vào số ký tự nó chứa. Ký tự khai báo kiểu là « $ »."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3150534\n"
+"62\n"
+"help.text"
+msgid "Boolean Variables"
+msgstr "Biến lôgic"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145632\n"
+"63\n"
+"help.text"
+msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
+msgstr "Biến lôgic chứa chỉ một của hai giá trị: ĐÚNG hoặc SAI. Số không được tính là SAI, mà các giá trị khác được tính là ĐÚNG."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149722\n"
+"65\n"
+"help.text"
+msgid "Date Variables"
+msgstr "Biến ngày"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159116\n"
+"66\n"
+"help.text"
+msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
+msgstr "Biến kiểu ngày tháng thì chỉ chứa được các giá trị ngày tháng và thời gian được cất giữ theo một định dạng nội bộ. Giá trị được gán cho biến Ngày <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> hoặc <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> được tự động chuyển đổi sang định dạng nội bộ. Các biến ngày tháng được chuyển đổi sang số bình thường dùng hàm <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Ngày\"><emph>Ngày</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Tháng\"><emph>Tháng</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Năm\"><emph>Năm</emph></link> hoặc <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Giờ\"><emph>Giờ</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Phút\"><emph>Phút</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Giây\"><emph>Giây</emph></link>. Định dạng nội bộ hiệu lực chức năng so sánh các giá trị ngày/giờ bằng cách tính hiệu của hai con số. Những biến này chỉ có thể được khai báo bằng từ khoá <emph>Date</emph> (Ngày)."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148732\n"
+"68\n"
+"help.text"
+msgid "Initial Variable Values"
+msgstr "Giá trị biến đầu tiên"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154549\n"
+"69\n"
+"help.text"
+msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
+msgstr "Một khi biến được khai báo thì nó được tự động đặt thành giá trị « Null » (vô giá trị). Ghi chú về những quy ước này:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3143222\n"
+"70\n"
+"help.text"
+msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
+msgstr "Biến <emph>Thuộc Số</emph> được khai báo thì tự động nhận giá trị « 0 » ."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150693\n"
+"71\n"
+"help.text"
+msgid "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
+msgstr "Các <emph>biến ngày tháng</emph> được gán nội bộ giá trị 0; tương đương với chuyển đổi giá trị sang 0 dùng hàm <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Ngày\"><emph>Ngày</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Tháng\"><emph>Tháng</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Năm\"><emph>Năm</emph></link> hoặc <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Giờ\"><emph>Giờ</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Phút\"><emph>Phút</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Giây\"><emph>Giây</emph></link>."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154807\n"
+"72\n"
+"help.text"
+msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgstr "Một <emph>Biến kiểu chuỗi</emph> được khai báo thì cũng được gán một chuỗi rỗng ( )."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153936\n"
+"83\n"
+"help.text"
+msgid "Arrays"
+msgstr "Mảng"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148736\n"
+"84\n"
+"help.text"
+msgid "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
+msgstr "$[officename] Basic nhận ra các mảng kiểu một chiều hoặc đa chiều, được xác định theo một kiểu biến đã ghi rõ. Mảng là thích hợp với công việc chỉnh sửa danh sách và bảng trong chương trình. Cũng có thể đặt địa chỉ của mỗi thành phần riêng của một mảng, dùng một chỉ mục thuộc số."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149546\n"
+"85\n"
+"help.text"
+msgid "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
+msgstr "Mảng <emph>phải</emph> được khai báo dùng câu lệnh <emph>Dim</emph>. Có vài cách khác nhau để khai báo phạm vi chỉ mục của một mảng:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154567\n"
+"136\n"
+"help.text"
+msgid "21 elements numbered from 0 to 20"
+msgstr "21 phần tử được đánh số từ 0 đến 20"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154397\n"
+"137\n"
+"help.text"
+msgid "30 elements (a matrix of 6 x 5 elements)"
+msgstr "30 phần tử (một ma trận có 6×5 phần tử)"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149690\n"
+"138\n"
+"help.text"
+msgid "21 elements numbered from 5 to 25"
+msgstr "21 phần tử đánh số từ 5 đến 25"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153113\n"
+"89\n"
+"help.text"
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr "21 phần tử (gồm có 0), đánh số từ -15 đến 5"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153005\n"
+"90\n"
+"help.text"
+msgid "The index range can include positive as well as negative numbers."
+msgstr "Phạm vi chỉ mục có thể chứa con số dương, cũng như số âm."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154507\n"
+"91\n"
+"help.text"
+msgid "Constants"
+msgstr "Hằng số"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156357\n"
+"92\n"
+"help.text"
+msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+msgstr "Hằng số có giá trị cố định. Chỉ xác định mỗi hằng số một lần trong chưng trình, không thể xác định lại sau :"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Objects"
+msgstr "Sử dụng Đối tượng"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"hd_id3145645\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Sử dụng Phân loại Đối tượng</link></variable>"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3153707\n"
+"76\n"
+"help.text"
+msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
+msgstr "Phân loại đối tượng cung cấp một toàn cảnh của tất cả các mô-đun và hộp thoại bạn đã tạo trong $[officename]."
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3147346\n"
+"78\n"
+"help.text"
+msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
+msgstr "Nhấn vào biểu tượng <emph>Phân loại Đối tượng</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Biểu tượng</alt></image> trên thanh công cụ <emph>Vĩ lệnh</emph> để hiển thị phân loại đối tượng."
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3155114\n"
+"79\n"
+"help.text"
+msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
+msgstr "Hộp thoại hiển thị danh sách các đối tượng tồn tại theo phân cấp. Nhấn đôi vào một mục nhập nào đó trong danh sách, để giãn ra nó và hiển thị các đối tượng cấp con."
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3150786\n"
+"83\n"
+"help.text"
+msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, double click on the corresponding entry."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Procedures and Functions"
+msgstr "Sử dụng Trình con và Hàm"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"bm_id3149456\n"
+"help.text"
+msgid "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</bookmark_value><bookmark_value>parameters;passing by reference or value</bookmark_value><bookmark_value>variables;scope</bookmark_value><bookmark_value>scope of variables</bookmark_value><bookmark_value>GLOBAL variables</bookmark_value><bookmark_value>PUBLIC variables</bookmark_value><bookmark_value>PRIVATE variables</bookmark_value><bookmark_value>functions;return value type</bookmark_value><bookmark_value>return value type of functions</bookmark_value>"
+msgstr "<bookmark_value>thủ tục</bookmark_value><bookmark_value>hàm;sử dụng</bookmark_value><bookmark_value>biến;gửi cho thủ tục và hàm</bookmark_value><bookmark_value>tham số;cho thủ tục và hàm</bookmark_value><bookmark_value>tham số;gửi theo tham chiếu hoặc giá trị</bookmark_value><bookmark_value>biến;phạm vi</bookmark_value><bookmark_value>phạm vi của biến</bookmark_value><bookmark_value>biến toàn cục (GLOBAL)</bookmark_value><bookmark_value>biến công (PUBLIC)</bookmark_value><bookmark_value>biến riêng (PRIVATE)</bookmark_value><bookmark_value>hàm;trả về kiểu giá trị</bookmark_value><bookmark_value>trả về kiểu giá trị của hàm</bookmark_value>"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3149456\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/01020300.xhp\">Sử dụng Thủ tục và Hàm</link>"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150767\n"
+"2\n"
+"help.text"
+msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
+msgstr "Theo đây có mô tả về cách sử dụng cơ bản các trình con và hàm trong mã Basic của $[officename]."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151215\n"
+"56\n"
+"help.text"
+msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
+msgstr "Khi bạn tạo một mô-đun mới, $[officename] Basic tự động chèn một trình con tên « Main ». Tên mặc định này không có tác động thứ tự hoặc điểm bắt đầu của dự án $[officename] Basic. Bạn cũng có thể thay đổi tên này thành « SUB » một cách an toàn."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id314756320\n"
+"help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154124\n"
+"3\n"
+"help.text"
+msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
+msgstr "Các trình con (SUB) và hàm (FUNCTION) giúp bạn bảo tồn một toàn cảnh có cấu trúc, bằng cách chia một chương trình ra các phần hợp lý."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153193\n"
+"4\n"
+"help.text"
+msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
+msgstr "Một lợi ích của trình con và hàm là, một khi bạn phát triển mã chương trình chứa các thành phần công việc, bạn có thể dùng lại mã đó trong dự án khác."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3153770\n"
+"26\n"
+"help.text"
+msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+msgstr "Gửi biến cho thủ tục (SUB) và hàm (FUNCTION)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155414\n"
+"27\n"
+"help.text"
+msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
+msgstr "Có thể gửi biến cho cả hai trình con và hàm. Tuy nhiên, phải khai báo hàm hoặc trình con sẽ chấp nhận tham số."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151114\n"
+"29\n"
+"help.text"
+msgid "Program code"
+msgstr "Mã chương trình"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152577\n"
+"31\n"
+"help.text"
+msgid "The SUB is called using the following syntax:"
+msgstr "SUB (trình con) được gọi dùng cú pháp này:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147124\n"
+"33\n"
+"help.text"
+msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+msgstr "Các tham số được gửi cho một trình con (SUB) phải tương ứng với các tham số được ghi rõ trong lời khai báo trình con (SUB)."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147397\n"
+"34\n"
+"help.text"
+msgid "The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
+msgstr "Cũng vậy với hàm (FUNCTION). Hơn nữa, hàm lúc nào cũng trả về kết quả kiểu hàm. Kết quả của hàm được xác định bằng cách gán giá trị trả về cho tên hàm:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156284\n"
+"36\n"
+"help.text"
+msgid "Program code"
+msgstr "Mã chương trình"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145799\n"
+"37\n"
+"help.text"
+msgid "FunctionName=Result"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153839\n"
+"39\n"
+"help.text"
+msgid "The FUNCTION is called using the following syntax:"
+msgstr "Hàm (FUNCTION) được gọi bằng cú pháp này:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3146914\n"
+"40\n"
+"help.text"
+msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgstr "Biến=Tên_hàm(Tham_số1, Tham_số2,...)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_idN107B3\n"
+"help.text"
+msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+msgstr "Bạn cũng có thể sử dụng tên có khả năng đầy đủ để gọi một hàm hoặc trình con:<br/><item type=\"literal\">Thư_viện.Mô-đun.Vĩ_lệnh()</item><br/> Chẳng hạn, để gọi vĩ lệnh Autotext từ thư viện Gimmicks, dùng lệnh này:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3156276\n"
+"45\n"
+"help.text"
+msgid "Passing Variables by Value or Reference"
+msgstr "Gửi biến theo giá trị hoặc tham chiếu"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155765\n"
+"47\n"
+"help.text"
+msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
+msgstr "Có thể gửi tham số cho một trình con hoặc một hàm, hoặc theo tham chiếu hoặc theo giá trị. Nếu không phải được ghi rõ khác, một tham số lúc nào cũng được gửi theo tham chiếu. Có nghĩa là một hàm hoặc trình con sẽ nhận được tham số và có khả năng đọc và sửa đổi giá trị của nó."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145640\n"
+"53\n"
+"help.text"
+msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
+msgstr "Muốn gửi một tham số theo giá trị thì chèn từ khoá « ByVal » vào phía trước tham số khi bạn gọi một trình con (SUB) hoặc hàm (FUNCTION), v.d.:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150042\n"
+"54\n"
+"help.text"
+msgid "Result = Function(ByVal Parameter)"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149258\n"
+"55\n"
+"help.text"
+msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
+msgstr "Trong trường hợp này, nội dung gốc của tham số sẽ không bị hàm sửa đổi, vì nó chỉ nhận được giá trị, không phải tham số chính nó."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3150982\n"
+"57\n"
+"help.text"
+msgid "Scope of Variables"
+msgstr "Phạm vi của Biến"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149814\n"
+"58\n"
+"help.text"
+msgid "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited."
+msgstr "Một biến được xác định bên trong một trình con hoặc hàm thì chỉ còn lại hợp lệ đến khi thủ tục thoát. Biến kiểu này được gọi là một biến « cục bộ ». Trong rất nhiều trường hợp đều, bạn cần một biến là hợp lệ trong mọi thủ tục, trong mọi mô-đun của mọi thư viện, hoặc sau khi một trình con hoặc hàm đã thoát."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154186\n"
+"59\n"
+"help.text"
+msgid "Declaring Variables Outside a SUB or FUNCTION"
+msgstr "Khai báo biến bên ngoài một trình con (SUB) hoặc hàm (FUNCTION)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150208\n"
+"111\n"
+"help.text"
+msgid "Global VarName As TYPENAME"
+msgstr "GLOBAL VarName As TYPENAME"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145258\n"
+"112\n"
+"help.text"
+msgid "The variable is valid as long as the $[officename] session lasts."
+msgstr "Biến là hợp lệ trong suốt phiên chạy $[officename] đó."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153198\n"
+"60\n"
+"help.text"
+msgid "Public VarName As TYPENAME"
+msgstr "PUBLIC VarName As TYPENAME"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150088\n"
+"61\n"
+"help.text"
+msgid "The variable is valid in all modules."
+msgstr "Biến là hợp lệ trong tất cả các mô-đun."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3158212\n"
+"62\n"
+"help.text"
+msgid "Private VarName As TYPENAME"
+msgstr "PUBLIC VarName As TYPENAME"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152994\n"
+"63\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr "Biến chỉ là hợp lệ trong mô-đun này."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150886\n"
+"64\n"
+"help.text"
+msgid "Dim VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150368\n"
+"65\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr "Biến chỉ là hợp lệ trong mô-đun này."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id5097506\n"
+"help.text"
+msgid "Example for private variables"
+msgstr "Mẫu thí dụ về biến riêng"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8738975\n"
+"help.text"
+msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgstr "Ép buộc các biến riêng là riêng qua các mô-đun, bằng cách đặt « CompatibilityMode(true) »."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id9475997\n"
+"help.text"
+msgid "myText = \"Hello\""
+msgstr "myText = \"Hello\""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id6933500\n"
+"help.text"
+msgid "Print \"In module1 : \", myText"
+msgstr "print \"in module1 : \", myText"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id4104129\n"
+"help.text"
+msgid "' Now returns empty string"
+msgstr "' Giờ thì trả về chuỗi rỗng"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id7906125\n"
+"help.text"
+msgid "' (or rises error for Option Explicit)"
+msgstr "' (hoặc tạo lỗi cho Tùy chọn Dứt khoát)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8055970\n"
+"help.text"
+msgid "Print \"Now in module2 : \", myText"
+msgstr "print \"Now in module2 : \", myText"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154368\n"
+"66\n"
+"help.text"
+msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
+msgstr "Lưu nội dung biến đổi sau khi thoát khỏi một trình con (SUB) hoặc hàm (FUNCTION)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156288\n"
+"67\n"
+"help.text"
+msgid "Static VarName As TYPENAME"
+msgstr "STATIC VarName As TYPENAME"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154486\n"
+"68\n"
+"help.text"
+msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
+msgstr "Biến giữ lại giá trị đến khi hàm hoặc trình con được nhập lần kế tiếp. Lời khai báo phải nằm bên trong một hàm hoặc trình con."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3155809\n"
+"41\n"
+"help.text"
+msgid "Specifying the Return Value Type of a FUNCTION"
+msgstr "Ghi rõ kiểu giá trị trả về của một hàm (FUNCTION)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149404\n"
+"42\n"
+"help.text"
+msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
+msgstr "Giống như đối với biến, hãy kèm thêm một ký tự khai báo kiểu phía sau tên hàm, hoặc kiểu được ngụ ý bởi « As » và từ khoá tương ứng ở kết thúc của danh sách tham số, để xác định kiểu của giá trị trả về của hàm, v.d."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Libraries, Modules and Dialogs"
+msgstr "Thư viện, Mô-đun và Hộp thoại"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3147317\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
+msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Thư viện, Mô-đun và Hộp thoại\">Thư viện, Mô-đun và Hộp thoại</link>"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3147427\n"
+"2\n"
+"help.text"
+msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
+msgstr "Theo đây có mô tả về cách sử dụng cơ bản các thư viện, mô-đun và hộp thoại trong $[officename] Basic."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3146120\n"
+"3\n"
+"help.text"
+msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
+msgstr "$[officename] Basic cung cấp các công cụ để giúp bạn tạo cấu trúc của dự án. Nó hỗ trợ một số « đơn vị » khác nhau mà cho bạn có khả năng nhóm lại các hàm và trình con riêng trong cùng dự án."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3148575\n"
+"5\n"
+"help.text"
+msgid "Libraries"
+msgstr "Thư viện"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3150011\n"
+"6\n"
+"help.text"
+msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
+msgstr "Thư viện là một công cụ để tổ chức các mô-đun, và có thể được đính kèm hoặc một tài liệu hoặc một mẫu. Khi tài liệu hoặc mẫu được lưu, tất cả các mô-đun nằm trong thư viện đó cũng được tự động lưu."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3151112\n"
+"7\n"
+"help.text"
+msgid "A library can contain up to 16,000 modules."
+msgstr "Một thư viện có thể chứa đến 16 000 mô-đun."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3149262\n"
+"8\n"
+"help.text"
+msgid "Modules"
+msgstr "Mô-đun"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3156441\n"
+"9\n"
+"help.text"
+msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
+msgstr "Một mô-đun chứa các trình con và hàm, cũng như các lời khai báo biến. Chiều dài của chương trình có thể được lưu vào mô-đun không thể vượt quá 64 KB. Cần thiết nhiều sức chứa hơn thì cũng có thể chia một dự án $[officename] Basic ra vài mô-đun khác nhau, sau đó lưu chúng vào cùng một thư viện."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3152577\n"
+"11\n"
+"help.text"
+msgid "Dialog Modules"
+msgstr "Mô-đun Hộp thoại"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3149377\n"
+"12\n"
+"help.text"
+msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
+msgstr "Mô-đun hộp thoại chứa các lời xác định hộp thoại, gồm có các thuộc tính về hộp là hộp thoại, các thuộc tính về mỗi phần tử của hộp thoại, và các sự kiện được gán. Vì một mô-đun chỉ có khả năng tạo một hộp thoại riêng lẻ, nó thường đơn giản được gọi là \"hộp thoại\"."
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Integrated Development Environment (IDE)"
+msgstr "IDE (Môi trường Phát triển Hợp nhất)"
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"bm_id3145090\n"
+"help.text"
+msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
+msgstr "<bookmark_value>Basic IDE;môi trường phát triển hợp nhất</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"hd_id3145090\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Môi trường phát triển hợp nhất (IDE)\">Môi trường phát triển hợp nhất (IDE)</link>"
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"par_id3146795\n"
+"2\n"
+"help.text"
+msgid "This section describes the Integrated Development Environment for $[officename] Basic."
+msgstr "Phần này diễn tả Môi trường Phát triễn Hợp nhất cho $[officename] Basic."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "IDE Overview"
+msgstr "Toàn cảnh IDE"
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"hd_id3147291\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"Toàn cảnh IDE\">Toàn cảnh IDE</link>"
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3156344\n"
+"3\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Thanh công cụ Vĩ lệnh\"><emph>Thanh công cụ Vĩ lệnh</emph></link> trong IDE thì cung cấp các biểu tượng khác nhau để chỉnh sửa và thử chương trình."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3151210\n"
+"4\n"
+"help.text"
+msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
+msgstr "Trong <link href=\"text/sbasic/shared/01030200.xhp\" name=\"cửa sổ Sửa\"><emph>cửa sổ Sửa</emph></link>, đúng bên dưới thanh công cụ <emph>Vĩ lệnh</emph>, bạn có thể chỉnh sửa mã chương trình Basic. Cột bên trái được dùng để đặt các điểm ngắt trong mã chương trình."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3154686\n"
+"5\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
+msgstr "<link href=\"text/sbasic/shared/01050100.xhp\" name=\"Theo dõi\"><emph>Cửa sổ Theo dõi</emph></link> nằm bên dưới cửa sổ <emph>Sửa</emph> bên trái, và hiển thị nội dung của các biến hoặc mảng trong một tiến trình bước đơn."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3145787\n"
+"8\n"
+"help.text"
+msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+msgstr "Cửa sổ <emph>Đống gọi</emph> bên phải cung cấp thông tin về đống gọi (call stack) chứa các trình con và hàm khi chạy một chương trình."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3147434\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "The Basic Editor"
+msgstr "Trình Sửa Basic"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"bm_id3148647\n"
+"help.text"
+msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
+msgstr "<bookmark_value>lưu;mã Basic</bookmark_value><bookmark_value>nạp;mã Basic</bookmark_value><bookmark_value>trình sửa Basic</bookmark_value><bookmark_value>di chuyển;qua dự án Basic</bookmark_value><bookmark_value>dòng dài;trong trình sửa Basic</bookmark_value><bookmark_value>dòng văn bản;trong trình sửa Basic</bookmark_value><bookmark_value>tiếp tục;dòng dài trong trình sửa</bookmark_value>"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3147264\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Trình Sửa Basic\">Trình Sửa Basic</link>"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145069\n"
+"3\n"
+"help.text"
+msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
+msgstr "Trình Soạn thảo Basic cung cấp các chức năng chỉnh sửa bình thường khi hiệu chỉnh một tài liệu văn bản. Nó hỗ trợ các chức năng của trình đơn <emph>Sửa</emph> (Cắt, Xoá, Dán), khả năng lựa chọn chuỗi dùng phím <item type=\"keycode\">Shift</item>, cũng như các chức năng định vị con trỏ (v.d. dời từ từ này sang từ đó dùng phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Ctrl</defaultinline></switchinline> và các phím mũi tên)."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154686\n"
+"31\n"
+"help.text"
+msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+msgstr "Dòng dài có thể được chia ra vài phần riêng, bằn cách chèn một dấu cách ( ) và một dấu gạch dưới (_) như là hai ký tự cuối cùng của dòng đó. Do đó kết nối dòng trước và dòng sau với nhau làm một dòng hợp lý riêng lẻ. (Cũng dùng « Tùy chọn tương thích » trong mô-đun Basic đó thì tính năng tiếp tục dòng cũng hợp lệ đối với các dòng chú thích.)"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3151042\n"
+"32\n"
+"help.text"
+msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
+msgstr "Nếu bạn nhấn vào biểu tượng <emph>Chạy BASIC</emph> trên thanh công cụ <emph>Vĩ lệnh</emph>, tiến trình thực hiện chương trình bắt đầu ở dòng đầu của trình sửa Basic. Chương trình thực hiện trình con hoặc hàm thứ nhất, sau đó dừng thực hiện. « Sub Main » không có quyền cao hơn khi thực hiện chương trình."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id59816\n"
+"help.text"
+msgid "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
+msgstr "Chèn mã Basic vào giữa dòng Sub Main và dòng End Sub mà bạn thấy khi mở IDE lần đầu tiên. Hoặc xoá tất cả các dòng, sau đó nhập mã nguồn của bạn."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3125863\n"
+"4\n"
+"help.text"
+msgid "Navigating in a Project"
+msgstr "Điều hướng trong một dự án"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3145785\n"
+"6\n"
+"help.text"
+msgid "The Library List"
+msgstr "Danh sách Thư viện"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3146120\n"
+"7\n"
+"help.text"
+msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
+msgstr "Chọn một thư viện trong danh sách <emph>Thư viện</emph> bên trái thanh công cụ, để nạp thư viện đó trong trình sửa. Mô-đun thứ nhất của thư viện đã chọn sẽ được hiển thị."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3153190\n"
+"8\n"
+"help.text"
+msgid "The Object Catalog"
+msgstr "Phân loại Đối tượng"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3148647\n"
+"15\n"
+"help.text"
+msgid "Saving and Loading Basic Source Code"
+msgstr "Lưu và Nạp Mã Nguồn Basic"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154320\n"
+"16\n"
+"help.text"
+msgid "You can save Basic code in a text file for saving and importing in other programming systems."
+msgstr "Bạn có khả năng lưu mã nguồn Basic vào một tập tin văn bản, để lưu và nhập vào hệ thống ngôn ngữ khác."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149959\n"
+"25\n"
+"help.text"
+msgid "You cannot save Basic dialogs to a text file."
+msgstr "Không thể lưu hộp thoại Basic vào một tập tin văn bản."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3149403\n"
+"17\n"
+"help.text"
+msgid "Saving Source Code to a Text File"
+msgstr "Lưu Mã Nguồn vào một Tập tin Văn bản"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150327\n"
+"18\n"
+"help.text"
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr "Chọn mô-đun bạn muốn xuất dạng văn bản từ phân loại đối tượng."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150752\n"
+"19\n"
+"help.text"
+msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+msgstr "Nhấn vào biểu tượng <emph>Lưu mã nguồn dạng</emph> trên thanh công cụ <emph>Vĩ lệnh</emph>."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154754\n"
+"20\n"
+"help.text"
+msgid "Select a file name and click <emph>OK</emph> to save the file."
+msgstr "Chọn một tên tập tin, sau đó bấm nút <emph>OK</emph> để lưu tập tin."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3159264\n"
+"21\n"
+"help.text"
+msgid "Loading Source Code From a Text File"
+msgstr "Nạp Mã Nguồn từ một Tập tin Văn bản"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3147343\n"
+"22\n"
+"help.text"
+msgid "Select the module where you want to import the source code from the object catalog."
+msgstr "Chọn mô-đun trong đó bạn muốn cải tiến mã nguồn từ phân loại đối tượng."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145230\n"
+"23\n"
+"help.text"
+msgid "Position the cursor where you want to insert the program code."
+msgstr "Đặt con trỏ vào vị trí bạn muốn chèn mã chương trình."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149565\n"
+"24\n"
+"help.text"
+msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+msgstr "Nhấn vào biểu tượng <emph>Chèn văn bản nguồn</emph> trên thanh công cụ <emph>Vĩ lệnh</emph>."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154020\n"
+"33\n"
+"help.text"
+msgid "Select the text file containing the source code and click <emph>OK</emph>."
+msgstr "Chọn tập tin văn bản chứa mã nguồn, sau đó bấm nút <emph>OK</emph>."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3153198\n"
+"29\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Debugging a Basic Program"
+msgstr "Gỡ lỗi một Chương trình Basic"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"bm_id3153344\n"
+"help.text"
+msgid "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
+msgstr "<bookmark_value>gỡ lỗi chương trình Basic</bookmark_value><bookmark_value>biến; theo dõi giá trị</bookmark_value><bookmark_value>theo dõi biến</bookmark_value><bookmark_value>lỗi tức thời Basic</bookmark_value><bookmark_value>mã lỗi trong Basic</bookmark_value><bookmark_value>điểm ngắt</bookmark_value><bookmark_value>cửa sổ Đống Gọi</bookmark_value>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153344\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">Gỡ lỗi một Chương trình Basic</link>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3159224\n"
+"4\n"
+"help.text"
+msgid "Breakpoints and Single Step Execution"
+msgstr "Điểm ngắt và Thực hiện Bước Đơn"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3150682\n"
+"5\n"
+"help.text"
+msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
+msgstr "Trong chương trình Basic, bạn có thể kiểm tra mỗi dòng có lỗi không bằng chức năng thực hiện bước đơn. Chức năng này dễ truy tìm lỗi, vì bạn có thể thấy ngay kết quả của mỗi bước. Một con trỏ trong cột điểm ngắt của trình sửa cũng ngụ ý dòng hiện tại. Bạn cũng có thể đặt một điểm ngắt để ép chương trình bị dừng ở một vị trí nào đó."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147303\n"
+"7\n"
+"help.text"
+msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
+msgstr "Nhấn đôi vào cột <emph>điểm ngắt</emph> ở bên trái của cửa sổ trình sửa để hiển thị hoặc ẩn một điểm ngắt trên dòng tương ứng. Khi chương trình tới một điểm ngắt, tiến trình thực hiện chương trình bị gián đoạn."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3155805\n"
+"8\n"
+"help.text"
+msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
+msgstr "Tiến trình thực hiện <emph>Bước đơn</emph> dùng biểu tượng <emph>Bước đơn</emph> thì gây ra chương trình tách nhánh vào các trình con và hàm."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3151110\n"
+"25\n"
+"help.text"
+msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
+msgstr "Tiến trình thực hiện bước thủ tục, dùng biểu tượng <emph>Bước thủ tục</emph>, gây ra chương trình bỏ qua các thủ tục và hàm như là một bước riêng lẻ."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153825\n"
+"9\n"
+"help.text"
+msgid "Properties of a Breakpoint"
+msgstr "Thuộc tính về một Điểm ngắt"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147574\n"
+"26\n"
+"help.text"
+msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
+msgstr "Các thuộc tính về một điểm ngắt nào đó cũng sẵn sàng thông qua trình đơn ngữ cảnh của nó : nhấn-phải vào điểm ngắt đó trong cột điểm ngắt."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3148473\n"
+"10\n"
+"help.text"
+msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution."
+msgstr "Bạn có khả năng <emph>Bật</emph> và <emph>Tắt</emph> một điểm ngắt nào đó, bằng cách chọn mục <emph>Hoạt động</emph> trong trình đơn ngữ cảnh của nó. Khi một điểm ngắt nào đó bị tắt, nó không còn gián đoạn lại tiến trình thực hiện chương trình."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3159413\n"
+"27\n"
+"help.text"
+msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
+msgstr "Chọn mục <emph>Thuộc tính</emph> trong trình đơn ngữ cảnh của một điểm ngắt, hoặc chọn mục <emph>Điểm ngắt</emph> trong trình đơn ngữ cảnh của cột điểm ngắt, để mở hộp thoại <emph>Điểm ngắt</emph> trong đó bạn có thể ghi rõ các tùy chọn điểm ngắt khác."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3156280\n"
+"11\n"
+"help.text"
+msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
+msgstr "Danh sách này hiển thị tất cả các <emph>điểm ngắt</emph> với số thứ tự dòng tương ứng trong mã nguồn. Bạn có thể kích hoạt hoặc hủy kích hoạt một điểm ngắt đã chọn bằng cách đánh dấu/bỏ dấu trong hộp <emph>Hoạt động</emph>."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3158407\n"
+"12\n"
+"help.text"
+msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
+msgstr "Số <emph>Đếm lần qua</emph> thì ghi rõ số lần có thể đi qua một điểm ngắt nào đó trước khi chương trình bị gián đoạn. Nếu bạn nhập 0 (giá trị mặc định), chương trình lúc nào cũng bị gián đoạn một khi gặp điểm ngắt đó."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153968\n"
+"13\n"
+"help.text"
+msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgstr "Nhấn vào nút <emph>Xoá</emph> để gỡ bỏ điểm ngắt đó khỏi chương trình."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150439\n"
+"14\n"
+"help.text"
+msgid "Observing the Value of Variables"
+msgstr "Theo dõi Giá trị của Biến"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153368\n"
+"15\n"
+"help.text"
+msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
+msgstr "Bạn có thể theo dõi các giá trị của một biến nào đó, bằng cách thêm nó vào cửa sổ <emph>Theo dõi</emph>. Để thêm một biến vào danh sách các biến đang theo dõi, gõ tên biến trong hộp văn bản <emph>Theo dõi</emph>, sau đó bấm phím <item type=\"keycode\">Enter</item>."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3146986\n"
+"16\n"
+"help.text"
+msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
+msgstr "Giá trị của biến chỉ được hiển thị nếu nó nằm trong phạm vi. Biến không phải được xác định ở vị trí mã nguồn hiện tại sẽ hiển thị « Ngoại phạm vi » thay cho một giá trị."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145272\n"
+"17\n"
+"help.text"
+msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
+msgstr "Bạn cũng có thể kèm thêm mảng trong cửa sổ <emph>Theo dõi</emph>. Nếu bạn nhập vào cửa sổ <emph>Theo dõi</emph> tên của một biến mảng không có giá trị chỉ mục, nội dung của toàn bộ mảng được hiển thị."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145749\n"
+"19\n"
+"help.text"
+msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
+msgstr "Nếu bạn để lại con trỏ ở trên một biến đã định sẵn trong trình sửa vào lúc chạy, nội dung của biến đó được hiển thị trong một hộp tự mở."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3148618\n"
+"20\n"
+"help.text"
+msgid "The Call Stack Window"
+msgstr "Cửa sổ Đống Gọi"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3154491\n"
+"21\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Cung cấp một toàn cảnh về phân cấp gọi của các trình con và hàm.</ahelp> Bạn có thể xác định những trình con hoặc hàm nào đã gọi các trình con hoặc hàm khác ở điểm hiện tại trong mã nguồn."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150594\n"
+"24\n"
+"help.text"
+msgid "List of Run-Time Errors"
+msgstr "Danh sách các lỗi tức thời"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Organizing Libraries and Modules"
+msgstr "Tổ chức các Thư viện và Mô-đun"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"bm_id3148797\n"
+"help.text"
+msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
+msgstr "<bookmark_value>thư viện;tổ chức</bookmark_value><bookmark_value>mô-đun;tổ chức</bookmark_value><bookmark_value>sao chép;mô-đun</bookmark_value><bookmark_value>thêm thư viện</bookmark_value><bookmark_value>xoá;thư viện/mô-đun/hộp thoại</bookmark_value><bookmark_value>hộp thoại;tổ chức</bookmark_value><bookmark_value>di chuyển;mô-đun</bookmark_value><bookmark_value>tổ chức;mô-đun/thư viện/hộp thoại</bookmark_value><bookmark_value>thay tên mô-đun và hộp thoại</bookmark_value>"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3148797\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
+msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Tổ chức các Mô-đun và Thư viện</link></variable>"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3150868\n"
+"4\n"
+"help.text"
+msgid "Organizing Libraries"
+msgstr "Tổ chức các Thư viện"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3125864\n"
+"5\n"
+"help.text"
+msgid "Creating a New Library"
+msgstr "Tạo một Thư viện Mới"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152576\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153726\n"
+"8\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149664\n"
+"9\n"
+"help.text"
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgstr "Chọn tới vị trí ở đó bạn muốn đính thư viện trong danh sách các <emph>Vị trí</emph>. Chọn <emph>Vĩ lệnh và Hộp thoại %PRODUCTNAME</emph> thì thư viện sẽ thuộc về ứng dụng $[officename] và sẵn sàng cho mọi tài liệu. Chọn một tài liệu thì thư viện sẽ được đính kèm tài liệu đó và chỉ sẵn sàng từ đó."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153365\n"
+"10\n"
+"help.text"
+msgid "Click <emph>New</emph> and insert a name to create a new library."
+msgstr "Nhấn vào nút <emph>Mới</emph>, sau đó chèn một tên để tạo một thư viện mới."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147394\n"
+"48\n"
+"help.text"
+msgid "Import a Library"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153157\n"
+"49\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146972\n"
+"50\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145640\n"
+"51\n"
+"help.text"
+msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
+msgstr "Chọn tới vị trí bạn muốn phụ thêm thư viện trong danh sách các <emph>Vị trí</emph>. Chọn mục <emph>Vĩ lệnh và Hộp thoại %PRODUCTNAME</emph> thì thư viện này sẽ thuộc về ứng dụng $[officename] và sẵn sàng cho mọi tài liệu. Chọn một tài liệu thì thư viện sẽ được phụ thêm vào tài liệu đó, và chỉ sẵn sàng từ đó."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154253\n"
+"52\n"
+"help.text"
+msgid "Click <emph>Import...</emph> and select an external library to import."
+msgstr "Nhấn vào nút <emph>Phụ thêm</emph> và chọn một thư viện bên ngoài để phụ thêm."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154705\n"
+"53\n"
+"help.text"
+msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
+msgstr "Chọn tất cả những thư viện cần phụ thêm trong hộp thoại <emph>Phụ thêm Thư viện</emph>. Hộp thoại này hiển thị tất cả các thư viện nằm trong tập tin đã chọn."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3163807\n"
+"54\n"
+"help.text"
+msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
+msgstr "Muốn chèn thư viện chỉ dưới dạng tham chiếu thì bật tùy chọn <emph>Chèn dạng tham chiếu (chỉ-đọc)</emph>. Thư viện chỉ-đọc cũng có các chức năng đầy đủ, còn không thể được sửa đổi trong IDE Basic."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145228\n"
+"55\n"
+"help.text"
+msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
+msgstr "Bật tùy chọn <emph>Thay thế các thư viện đã có</emph> nếu bạn muốn các thư viện cùng tên đã tồn tại bị ghi đè."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147004\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to import the library."
+msgstr "Nhấn vào nút <emph>OK</emph> để phụ thêm thư viện."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159099\n"
+"17\n"
+"help.text"
+msgid "Export a Library"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147005\n"
+"70\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147006\n"
+"71\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147007\n"
+"72\n"
+"help.text"
+msgid "In the <emph>Location</emph> list you specify where your library is stored. Select the library that you want to export. Note that you cannot export the <emph>Standard</emph> library."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147008\n"
+"73\n"
+"help.text"
+msgid "Click <emph>Export...</emph>"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147009\n"
+"74\n"
+"help.text"
+msgid "Choose whether you want to export the library as an extension or as a basic library."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147010\n"
+"75\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>Bỏ</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147011\n"
+"76\n"
+"help.text"
+msgid "Select where you want your library exported."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147012\n"
+"77\n"
+"help.text"
+msgid "Click <emph>Save</emph> to export the library."
+msgstr "Nhấn vào nút <emph>OK</emph> để phụ thêm thư viện."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159100\n"
+"17\n"
+"help.text"
+msgid "Deleting a Library"
+msgstr "Xoá một Thư viện"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150086\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146808\n"
+"57\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3158212\n"
+"58\n"
+"help.text"
+msgid "Select the library to be deleted from the list."
+msgstr "Chọn thư viện cần xoá khỏi danh sách."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150361\n"
+"20\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Nhắp vào nút <emph>Xoá</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152986\n"
+"19\n"
+"help.text"
+msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+msgstr "Xoá một thư viện thì xoá hẳn tất cả các mô-đun đã tồn tại và các trình con và hàm tương ứng."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3148868\n"
+"59\n"
+"help.text"
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr "Không thể xoá thư viện mặc định « Chuẩn » (Standard)."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146869\n"
+"60\n"
+"help.text"
+msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
+msgstr "Nếu bạn xoá một thư viện đã được chèn dạng tham chiếu, chỉ tham chiếu bị xoá, không phải thư viện chính nó."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147070\n"
+"21\n"
+"help.text"
+msgid "Organizing Modules and Dialogs"
+msgstr "Tổ chức các Mô-đun và Hộp thoại"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3155265\n"
+"61\n"
+"help.text"
+msgid "Creating a New Module or Dialog"
+msgstr "Tạo một Mô-đun hoặc Hộp thoại Mới"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154537\n"
+"62\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146781\n"
+"63\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Nhấn vào thẻ <emph>Mô-đun</emph> hoặc <emph>Hộp thoại</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159206\n"
+"64\n"
+"help.text"
+msgid "Select the library where the module will be inserted and click <emph>New</emph>."
+msgstr "Chọn thư viện vào đó cần chèn mô-đun, sau đó nhấn vào nút <emph>Mới</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152389\n"
+"65\n"
+"help.text"
+msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
+msgstr "Nhập tên cho mô-đun hoặc hộp thoại, sau đó nhấn vào nút <emph>OK</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3152872\n"
+"25\n"
+"help.text"
+msgid "Renaming a Module or Dialog"
+msgstr "Thay tên của một Mô-đun hoặc Hộp thoại"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159230\n"
+"66\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150046\n"
+"67\n"
+"help.text"
+msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+msgstr "Nhấn hai lần vào mô-đun có tên cần thay đổi, cũng tạm dừng giữa hai cú nhấn. Nhập tên mới."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153801\n"
+"27\n"
+"help.text"
+msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
+msgstr "Trong IDE Basic, nhấn-phải vào tên của mô-đun hoặc hộp thoại trong các thẻ ở dưới màn hình, chọn lệnh <emph>Thay tên</emph>, sau đó gõ tên mới."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3155526\n"
+"28\n"
+"help.text"
+msgid "Press Enter to confirm your changes."
+msgstr "Bấm phím <item type=\"keycode\">Enter</item> để xác nhận các thay đổi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3146963\n"
+"29\n"
+"help.text"
+msgid "Deleting a Module or Dialog"
+msgstr "Xoá một Mô-đun hoặc Hộp thoại"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147547\n"
+"68\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150958\n"
+"69\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Nhấn vào thẻ <emph>Mô-đun</emph> hoặc <emph>Hộp thoại</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149870\n"
+"30\n"
+"help.text"
+msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
+msgstr "Chọn mô-đun hoặc hộp thoại cần xoá khỏi danh sách. Nhấn đôi vào một mục nhập để hiển thị các mục phụ, nếu cần."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147248\n"
+"32\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Nhắp vào nút <emph>Xoá</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3151339\n"
+"31\n"
+"help.text"
+msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
+msgstr "Xoá hẳn một mô-đun thì cũng xoá tất cả các trình con và hàm đã tồn tại trong mô-đun đó."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3151392\n"
+"33\n"
+"help.text"
+msgid "Organizing Projects among Documents or Templates"
+msgstr "Tổ chức Dự án trong các Tài liệu hoặc Mẫu"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3156400\n"
+"36\n"
+"help.text"
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr "Di chuyển hoặc sao chép mô-đun giữa các tài liệu, các mẫu và ứng dụng."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146819\n"
+"37\n"
+"help.text"
+msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
+msgstr "Mở tất cả các tài liệu hoặc mẫu trong chúng bạn muốn di chuyển hoặc sao chép những mô-đun hoặc hộp thoại."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149319\n"
+"38\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145637\n"
+"39\n"
+"help.text"
+msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
+msgstr "Để di chuyển một mô-đun hoặc hộp thoại sang một tài liệu khác, nhấn vào đối tượng tương ứng trong danh sách, sau đó kéo nó vào vị trí đã muốn. Một đường theo chiều ngang thì ngụ ý vị trí đích của đối tượng hiện thời trong khi kéo. Ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo, để sao chép đối tượng thay vì di chuyển nó."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Event-Driven Macros"
+msgstr "Vĩ lệnh điều khiển bởi sự kiện"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"bm_id3154581\n"
+"help.text"
+msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
+msgstr "<bookmark_value>xoá;gán vĩ lệnh cho sự kiện</bookmark_value><bookmark_value>vĩ lệnh;gán cho sự kiện</bookmark_value><bookmark_value>gán vĩ lệnh cho sự kiện</bookmark_value><bookmark_value>sự kiện;gán vĩ lệnh</bookmark_value>"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3147348\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Vĩ lệnh điều khiển bởi sự kiện\">Vĩ lệnh điều khiển bởi sự kiện </link>"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146120\n"
+"2\n"
+"help.text"
+msgid "This section describes how to assign Basic programs to program events."
+msgstr "Phần này mô tả cách gán chương trình Basic cho sự kiện chương trình."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149263\n"
+"4\n"
+"help.text"
+msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+msgstr "Bạn có thể thực hiện một vĩ lệnh tự động khi xảy ra một sự kiện phần mềm đã cho bằng cách gán vĩ lệnh mong muốn cho sự kiện đó. Bảng dưới đây cung cấp toàn cảnh các swj kiện chương trình và điểm thực hiện vĩ lệnh đã được gán."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148455\n"
+"5\n"
+"help.text"
+msgid "Event"
+msgstr "Sự kiện"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145799\n"
+"6\n"
+"help.text"
+msgid "An assigned macro is executed..."
+msgstr "Một vĩ lệnh đã gán được thực hiện..."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149379\n"
+"7\n"
+"help.text"
+msgid "Program Start"
+msgstr "Khởi chạy Chương trình"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150715\n"
+"8\n"
+"help.text"
+msgid "... after a $[officename] application is started."
+msgstr "...sau khi khởi chạy một ứng dụng $[officename]."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146914\n"
+"9\n"
+"help.text"
+msgid "Program End"
+msgstr "Kết thúc Chương trình"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153765\n"
+"10\n"
+"help.text"
+msgid "...before a $[officename] application is terminated."
+msgstr "...trước khi kết thúc một ứng dụng $[officename]."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145150\n"
+"11\n"
+"help.text"
+msgid "Create Document"
+msgstr "Tạo tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3163808\n"
+"12\n"
+"help.text"
+msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
+msgstr "...sau khi một tài liệu mới được tạo bằng lệnh <emph>Tập tin > Mới</emph> hoặc bằng biểu tượng <emph>Mới</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145790\n"
+"13\n"
+"help.text"
+msgid "Open Document"
+msgstr "Mở tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154572\n"
+"14\n"
+"help.text"
+msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr "...sau khi một tài liệu được mở bằng lệnh <emph>Tập tin > Mở</emph> hoặc bằng biểu tượng <emph>Mở</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153266\n"
+"15\n"
+"help.text"
+msgid "Save Document As"
+msgstr "Lưu mới tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150208\n"
+"16\n"
+"help.text"
+msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "...trước khi một tài liệu được lưu dưới một tên cụ thể (dùng lệnh <emph>Tập tin > Lưu mới</emph>, hoặc dùng lệnh <emph>Tập tin > Lưu</emph> hoặc biểu tượng <emph>Lưu</emph> nếu chưa ghi rõ tên tài liệu)."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3158215\n"
+"43\n"
+"help.text"
+msgid "Document has been saved as"
+msgstr "Tài liệu đã được lưu dưới dạng"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150980\n"
+"44\n"
+"help.text"
+msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "...sau khi một tài liệu được lưu với một tên cụ thể (dùng lệnh <emph>Tập tin > Lưu mới</emph>, hoặc dùng lệnh <emph>Tập tin > Lưu</emph> hoặc biểu tượng <emph>Lưu</emph> nếu chưa ghi rõ tên tài liệu)."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150519\n"
+"17\n"
+"help.text"
+msgid "Save Document"
+msgstr "Lưu tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155529\n"
+"18\n"
+"help.text"
+msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "...trước khi một tài liệu được lưu bằng lệnh <emph>Tập tin > Lưu</emph> hoặc bằng biểu tượng <emph>Lưu</emph>, miễn là đã xác định một tên cho tài liệu."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149404\n"
+"45\n"
+"help.text"
+msgid "Document has been saved"
+msgstr "Tài liệu đã được lưu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3151332\n"
+"46\n"
+"help.text"
+msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "...sau khi một tài liệu được lưu bằng lệnh <emph>Tập tin > Lưu</emph> hoặc biểu tượng <emph>Lưu</emph>, miễn là đã xác định một tên cho tài liệu."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159171\n"
+"19\n"
+"help.text"
+msgid "Document is closing"
+msgstr "Tài liệu đang đóng"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146868\n"
+"20\n"
+"help.text"
+msgid "...before a document is closed."
+msgstr "...trước khi đóng tài liệu."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159097\n"
+"47\n"
+"help.text"
+msgid "Document closed"
+msgstr "Đóng tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148606\n"
+"48\n"
+"help.text"
+msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgstr "...sau khi đóng tài liệu. Lưu ý rằng sự kiện \"Lưu tài liệu\" cũng có thể xảy ra khi tài liệu được lưu trước khi đóng."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3144772\n"
+"21\n"
+"help.text"
+msgid "Activate Document"
+msgstr "Kích hoạt tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149442\n"
+"22\n"
+"help.text"
+msgid "...after a document is brought to the foreground."
+msgstr "...sau khi một tài liệu được nâng lên trên."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150888\n"
+"23\n"
+"help.text"
+msgid "Deactivate Document"
+msgstr "Khử hoạt tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154060\n"
+"24\n"
+"help.text"
+msgid "...after another document is brought to the foreground."
+msgstr "...sau khi tài liệu khác được nâng lên trên."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3152384\n"
+"25\n"
+"help.text"
+msgid "Print Document"
+msgstr "In tài liệu"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3152873\n"
+"26\n"
+"help.text"
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgstr "...sau khi đóng hộp thoại <emph>In</emph>, nhưng trước khi khởi chạy tiến trình in thật sự."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159227\n"
+"49\n"
+"help.text"
+msgid "JavaScript run-time error"
+msgstr "Lỗi thực hiện JavaScript"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145362\n"
+"50\n"
+"help.text"
+msgid "...when a JavaScript run-time error occurs."
+msgstr "...khi gặp một lỗi JavaScript tức thời."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154767\n"
+"27\n"
+"help.text"
+msgid "Print Mail Merge"
+msgstr "In thư đã trộn"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153555\n"
+"28\n"
+"help.text"
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr "...sau khi đóng hộp thoại <emph>In</emph>, còn trước khi khởi chạy tiến trình in thật. Sự kiện này xảy ra cho mỗi bản được in ra."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3156366\n"
+"51\n"
+"help.text"
+msgid "Change of the page count"
+msgstr "Hiệu đếm trang"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154627\n"
+"52\n"
+"help.text"
+msgid "...when the page count changes."
+msgstr "...khi tổng số trang thay đổi."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154737\n"
+"53\n"
+"help.text"
+msgid "Message received"
+msgstr "Nhận được thông điệp"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150952\n"
+"54\n"
+"help.text"
+msgid "...if a message was received."
+msgstr "...nếu nhận được một thông điệp."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3153299\n"
+"30\n"
+"help.text"
+msgid "Assigning a Macro to an Event"
+msgstr "Gán một vĩ lệnh cho một sự kiện"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147244\n"
+"31\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Chọn mục trình đơn <emph>Công cụ > Tùy biến</emph>, sau đó nhấn vào phiếu <emph>Sự kiện</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146098\n"
+"55\n"
+"help.text"
+msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
+msgstr "Trong hộp liệt kê <emph>Lưu vào</emph>, chọn nếu bạn muốn sự gán này là hợp lệ toàn cục hoặc chỉ hợp lệ trong tài liệu hiện tại."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150431\n"
+"32\n"
+"help.text"
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr "Chọn sự kiện trong danh sách các <emph>Sự kiện</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148742\n"
+"33\n"
+"help.text"
+msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgstr "Nhấn vào nút <emph>Vĩ lệnh</emph>, sau đó chọn vĩ lệnh cần gán cho sự kiện đã chọn."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146321\n"
+"35\n"
+"help.text"
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr "Nhấn vào nút <emph>OK</emph> để gán vĩ lệnh."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147414\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Nhấn vào nút <emph>OK</emph> để đóng hộp thoại."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3154581\n"
+"36\n"
+"help.text"
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr "Gỡ bỏ phép gán vĩ lệnh cho một sự kiện"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146883\n"
+"57\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Chọn mục trình đơn <emph>Công cụ > Tùy biến</emph>, sau đó nhấn vào phiếu <emph>Sự kiện</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155909\n"
+"58\n"
+"help.text"
+msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
+msgstr "Chọn nếu bạn muốn gỡ bỏ một sự gán toàn cục hoặc một sự gán chỉ hợp lệ trong tài liệu hiện tại, bằng cách bật tùy chọn đó trong hộp liệt kê <emph>Lưu vào</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159129\n"
+"59\n"
+"help.text"
+msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
+msgstr "Chọn sự kiện có phép gán cần gỡ bỏ trong danh sách các <emph>sự kiện</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149143\n"
+"37\n"
+"help.text"
+msgid "Click <emph>Remove</emph>."
+msgstr "Nhấn vào nút <emph>Bỏ</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149351\n"
+"60\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Nhấn vào nút <emph>OK</emph> để đóng hộp thoại."
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic IDE"
+msgstr "$[officename] Basic IDE"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154422\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153142\n"
+"2\n"
+"help.text"
+msgid "This section describes the structure of the Basic IDE."
+msgstr "Phần này diễn tả cấu trúc của môi trường IDE Basic."
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_idN105C9\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở môi trường IDE Basic, trong đó bạn có thể ghi và chỉnh sửa vĩ lệnh.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3153188\n"
+"5\n"
+"help.text"
+msgid "Commands From the Context menu of the Module Tabs"
+msgstr "Lệnh từ Trình đơn ngữ cảnh của các Thẻ Mô-đun"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154731\n"
+"6\n"
+"help.text"
+msgid "Insert"
+msgstr "Chèn"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3151074\n"
+"8\n"
+"help.text"
+msgid "Module"
+msgstr "Mô-đun"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3149581\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewModule\">Chèn một mô-đun mới vào thư viện hiện thời.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3147397\n"
+"10\n"
+"help.text"
+msgid "Dialog"
+msgstr "Hộp thoại"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3144335\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewDialog\">Chèn một hộp thoại mới vào hộp thoại hiện tại.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3155602\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3155064\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteCurrent\">Xoá mô-đun đã chọn.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3149018\n"
+"14\n"
+"help.text"
+msgid "Rename"
+msgstr "Thay tên"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3154754\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+msgstr "<ahelp hid=\".uno:RenameCurrent\">Thay đổi tên của mô-đun hiện thời, tại chỗ.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3150043\n"
+"16\n"
+"help.text"
+msgid "Hide"
+msgstr "Ẩn"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3145147\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:HideCurPage\">Ẩn mô-đun hiện thời.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3163805\n"
+"18\n"
+"help.text"
+msgid "Modules"
+msgstr "Mô-đun"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153965\n"
+"19\n"
+"help.text"
+msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
+msgstr "Mở hộp thoại <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Tổ chức Vĩ lệnh\"><emph>Tổ chức Vĩ lệnh</emph></link>."
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Watch Window"
+msgstr "Cửa sổ Quan sát"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3149457\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">Quan sát Cửa sổ</link>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154908\n"
+"9\n"
+"help.text"
+msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
+msgstr "Cửa sổ <emph>Quan sát</emph> thì cho phép bạn quan sát giá trị của mỗi biến trong khi thực hiện một chương trình. Xác định biến trong hộp văn bản <emph>Quan sát</emph>. Nhấn vào <link href=\"text/sbasic/shared/02/11080000.xhp\">Bật quan sát</link> để thêm biến vào hộp liệt kê và hiển thị giá trị của nó."
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3145173\n"
+"4\n"
+"help.text"
+msgid "Watch"
+msgstr "Quan sát"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3155132\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Nhập tên của biến có giá trị cần quan sát.</ahelp>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3148645\n"
+"6\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Bỏ quan sát"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3148576\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Gỡ bỏ biến đã chọn khỏi danh sách các biến đã quan sát.</ahelp>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Biểu tượng</alt></image>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154012\n"
+"8\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Bỏ quan sát"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3154491\n"
+"10\n"
+"help.text"
+msgid "Editing the Value of a Watched Variable"
+msgstr "Chỉnh sửa Giá trị của một Biến đã Quan sát"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3156283\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Hiển thị danh sách các biến đang quan sát. Nhấn chuột hai lần (tạm dừng một ít ở giữa) vào một mục nhập nào đó để chỉnh sửa giá trị của nó.</ahelp> Giá trị mới sẽ được lấy như là giá trị của biến đó cho chương trình."
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Call Stack Window (Calls)"
+msgstr "Cửa sổ Đống Gọi (Lời gọi)"
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"hd_id3146794\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Cửa sổ Đống Gọi (Lời gọi)\">Cửa sổ Đống Gọi (Lời gọi)</link>"
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"par_id3150400\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp> The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Hiển thị dãy các trình con và hàm trong khi thực hiện một chương trình.</ahelp><emph>Đống Gọi</emph> cho phép bạn theo dõi dãy các trình con và hàm trong khi thực hiện một chương trình. Các trình con và hàm đều được hiển thị từ trên xuống dưới, với cái mới nhất ở đầu của danh sách."
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr "Quản lý Điểm ngắt"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3154927\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Quản lý Điểm ngắt\">Quản lý Điểm ngắt</link>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148550\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Ghi rõ các tùy chọn về điểm ngắt.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3149670\n"
+"3\n"
+"help.text"
+msgid "Breakpoints"
+msgstr "Điểm ngắt"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3150398\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Nhập số thứ tự dòng cho một điểm ngắt mới, sau đó nhấn vào nút <emph>Mới</emph>.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3156280\n"
+"6\n"
+"help.text"
+msgid "Active"
+msgstr "Hoạt động"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3154910\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_ACTIV\">Bật/tắt điểm ngắt hiện thời.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3144500\n"
+"8\n"
+"help.text"
+msgid "Pass Count"
+msgstr "Đếm lần qua"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3161831\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Ghi rõ số vòng lặp cần chạy trước khi điểm ngắt có tác động.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3152579\n"
+"10\n"
+"help.text"
+msgid "New"
+msgstr "Mới"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148575\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Tạo một điềm ngắt trên dòng có số thứ tự đã ghi rõ.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3147319\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3153363\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Xoá điểm ngắt đã chọn.</ahelp>"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Control and Dialog Properties"
+msgstr "Thuộc tính Điều khiển và Hộp thoại"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"bm_id3153379\n"
+"help.text"
+msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
+msgstr "<bookmark_value>điều khiển; thuộc tính</bookmark_value><bookmark_value>thuộc tính; điều khiển và hộp thoại</bookmark_value><bookmark_value>hộp thoại; thuộc tính</bookmark_value>"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3153379\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
+msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Thuộc tính Điều khiển và Hộp thoại\">Thuộc tính Điều khiển và Hộp thoại</link>"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3156280\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
+msgstr "<ahelp hid=\".\">Ghi rõ các thuộc tính về hộp thoại hoặc điều khiển đã chọn.</ahelp> Bạn phải ở chế độ thiết kế để có khả năng sử dụng lệnh này."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3151043\n"
+"20\n"
+"help.text"
+msgid "Entering Data in the Properties Dialog"
+msgstr "Nhập Dữ liệu vào Hộp thoại Thuộc tính"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153771\n"
+"3\n"
+"help.text"
+msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
+msgstr "Các tổ hợp phím sau có áp dụng khi nhập dữ liệu vào trường đa dòng hoặc hộp tổ hợp của hộp thoại <emph>Thuộc tính</emph>:"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3150010\n"
+"18\n"
+"help.text"
+msgid "Keys"
+msgstr "Phím"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147317\n"
+"19\n"
+"help.text"
+msgid "Effects"
+msgstr "Hiệu ứng"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146121\n"
+"4\n"
+"help.text"
+msgid "Alt+Down Arrow"
+msgstr "Alt+mũi tên chỉ xuống"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149581\n"
+"5\n"
+"help.text"
+msgid "Opens a combo box"
+msgstr "Mở một hộp tổ hợp"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147394\n"
+"6\n"
+"help.text"
+msgid "Alt+Up Arrow"
+msgstr "Alt+mũi tên lên"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3148455\n"
+"7\n"
+"help.text"
+msgid "Closes a combo box"
+msgstr "Đóng một hộp tổ hợp"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3154511\n"
+"8\n"
+"help.text"
+msgid "Shift+Enter"
+msgstr "Shift+Enter"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146971\n"
+"9\n"
+"help.text"
+msgid "Inserts a line break in multiline fields."
+msgstr "Chèn một chỗ ngắt dòng trong trường đa dòng."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146914\n"
+"10\n"
+"help.text"
+msgid "(UpArrow)"
+msgstr "(Mũi tên lên)"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153714\n"
+"11\n"
+"help.text"
+msgid "Goes to the previous line."
+msgstr "Về dòng trước."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3159266\n"
+"12\n"
+"help.text"
+msgid "(DownArrow)"
+msgstr "(Mũi tên xuống)"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146314\n"
+"13\n"
+"help.text"
+msgid "Goes to the next line."
+msgstr "Tới dòng kế tiếp."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149255\n"
+"14\n"
+"help.text"
+msgid "Enter"
+msgstr "Enter"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149566\n"
+"15\n"
+"help.text"
+msgid "Applies the changes made to a field and places the cursor into the next field."
+msgstr "Áp dụng các thay đổi được làm trong một trường nào đó, sau đó đặt con trỏ vào trường kế tiếp."
#: 01170101.xhp
msgctxt ""
@@ -395,7 +5429,7 @@ msgctxt ""
"95\n"
"help.text"
msgid "L"
-msgstr "L"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -413,7 +5447,7 @@ msgctxt ""
"97\n"
"help.text"
msgid "a"
-msgstr "a"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -431,7 +5465,7 @@ msgctxt ""
"99\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -449,7 +5483,7 @@ msgctxt ""
"101\n"
"help.text"
msgid "c"
-msgstr "c"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -467,7 +5501,7 @@ msgctxt ""
"103\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -485,7 +5519,7 @@ msgctxt ""
"105\n"
"help.text"
msgid "N"
-msgstr "N"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -503,7 +5537,7 @@ msgctxt ""
"107\n"
"help.text"
msgid "x"
-msgstr "x"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -521,7 +5555,7 @@ msgctxt ""
"109\n"
"help.text"
msgid "X"
-msgstr "X"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -687,7 +5721,6 @@ msgid "The default value is FALSE."
msgstr "Giá trị mặc định là SAI."
#: 01170101.xhp
-#, fuzzy
msgctxt ""
"01170101.xhp\n"
"hd_id3150536\n"
@@ -1738,3178 +6771,2925 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Ghi rõ chiều rộng của điều khiển hoặc hộp thoại hiện thời.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
+"01170103.xhp\n"
"tit\n"
"help.text"
-msgid "Blue Function [Runtime]"
-msgstr "Hàm Blue [Runtime]"
-
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"bm_id3149180\n"
-"help.text"
-msgid "<bookmark_value>Blue function</bookmark_value>"
-msgstr "<bookmark_value>Hàm Blue</bookmark_value>"
+msgid "Events"
+msgstr "Sự kiện"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3149180\n"
+"01170103.xhp\n"
+"hd_id3155506\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Hàm Blue [Runtime]\">Hàm Blue [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Sự kiện\">Sự kiện</link>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3156343\n"
+"01170103.xhp\n"
+"par_id3146114\n"
"2\n"
"help.text"
-msgid "Returns the blue component of the specified color code."
-msgstr "Trả về thành phần màu xanh của mã màu đã ghi rõ."
-
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3149670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
+msgstr "Xác định các phép gán sự kiện cho điều khiển hoặc hộp thoại đã chọn. Các sự kiện có thể dùng phụ thuộc vào kiểu điều khiển đã chọn."
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3149457\n"
-"4\n"
+"01170103.xhp\n"
+"hd_id3145387\n"
+"16\n"
"help.text"
-msgid "Blue (Color As Long)"
-msgstr "Blue (Color As Long)"
+msgid "When receiving focus"
+msgstr "Tiêu điểm đã nhận"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3149656\n"
-"5\n"
+"01170103.xhp\n"
+"par_id3155090\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "GIá trị trả về:"
+msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Sự kiện này xảy ra nếu điều khiển nhận tiêu điểm.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3154365\n"
-"6\n"
+"01170103.xhp\n"
+"hd_id3152892\n"
+"18\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "When losing focus"
+msgstr "Tiêu điểm bị mất"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3156423\n"
-"7\n"
+"01170103.xhp\n"
+"par_id3153305\n"
+"19\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
+msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Sự kiện này xảy ra nếu điều khiển mất tiêu điểm.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3150448\n"
-"8\n"
+"01170103.xhp\n"
+"hd_id3152896\n"
+"20\n"
"help.text"
-msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
-msgstr "<emph>Color value</emph>: biểu thức số nguyên dài mà ghi rõ bất cứ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"mã màu\">mã màu</link> cho đó cần trả về thành phần màu xanh."
+msgid "Key pressed"
+msgstr "Phím đã bấm"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3153091\n"
-"9\n"
+"01170103.xhp\n"
+"par_id3148837\n"
+"21\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+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\">Sự kiện này xảy ra khi người dùng bấm bất cứ phím nào trong khi điều khiển này có tiêu điểm.</ahelp>"
-#: 03010301.xhp
-#, fuzzy
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3154012\n"
-"13\n"
+"01170103.xhp\n"
+"hd_id3146869\n"
+"43\n"
"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgid "Key released"
+msgstr "Phím đã nhả"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3148645\n"
-"14\n"
+"01170103.xhp\n"
+"par_id3155267\n"
+"44\n"
"help.text"
-msgid "\"red= \" & Red(lVar) & Chr(13)&_"
-msgstr "\"red= \" & Red(lVar) & Chr(13)&_"
+msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYUP\">Sự kiện này xảy ra khi người dùng nhả nút chuột khi điều khiển có tiêu điểm.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3159155\n"
-"15\n"
+"01170103.xhp\n"
+"hd_id3159096\n"
+"41\n"
"help.text"
-msgid "\"green= \" & Green(lVar) & Chr(13)&_"
-msgstr "\"green= \" & Green(lVar) & Chr(13)&_"
+msgid "Modified"
+msgstr "Bị sửa đổi"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3147319\n"
-"16\n"
+"01170103.xhp\n"
+"par_id3156019\n"
+"42\n"
"help.text"
-msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_CHANGED\">Sự kiện này xảy ra khi điều khiển mất tiêu điểm và nội dung của điều khiển đã thay đổi kể từ khi mất tiêu điểm.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"tit\n"
+"01170103.xhp\n"
+"hd_id3144508\n"
+"10\n"
"help.text"
-msgid "Comparison Operators [Runtime]"
-msgstr "Toán tử So sánh [Runtime]"
+msgid "Text modified"
+msgstr "Văn bản bị sửa đổi"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"bm_id3150682\n"
+"01170103.xhp\n"
+"par_id3148608\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
-msgstr "<bookmark_value>toán tử so sánh;%PRODUCTNAME Basic</bookmark_value><bookmark_value>toán tử;so sánh</bookmark_value>"
+msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Sự kiện này xảy ra nếu bạn nhập hoặc sửa đổi văn bản trong một trường nhập liệu.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3150682\n"
-"1\n"
+"01170103.xhp\n"
+"hd_id3159207\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Toán tử So sánh [Runtime]\">Toán tử So sánh [Runtime]</link>"
+msgid "Item status changed"
+msgstr "Trạng thái mục đã thay đổi"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3156042\n"
-"2\n"
+"01170103.xhp\n"
+"par_id3155097\n"
+"9\n"
"help.text"
-msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
-msgstr "Toán tử so sánh thì so sánh một cặp biểu thức. Kết quả được trả về dạng một biểu thức lôgic mà quyết định nếu phép so sánh là Đúng (-1) hay Sai (0)."
+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\">Sự kiện này xảy ra nếu trạng thái của trường điều khiển bị thay đổi, chẳng hạn, (không) có dấu kiểm.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3147291\n"
-"3\n"
+"01170103.xhp\n"
+"hd_id3151304\n"
+"26\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Mouse inside"
+msgstr "Chuột bên trong"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3149177\n"
-"4\n"
+"01170103.xhp\n"
+"par_id3152871\n"
+"27\n"
"help.text"
-msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
-msgstr "Kết quả = Biểu_thức1 { = | < | > | <= | >= } Biểu_thức2"
+msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Sự kiện này xảy ra khi con chuột vào điều khiển này.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3145316\n"
-"5\n"
+"01170103.xhp\n"
+"hd_id3146778\n"
+"30\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Mouse moved while key pressed"
+msgstr "Chuột di chuyển trong khi nhấn phím"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3147573\n"
-"6\n"
+"01170103.xhp\n"
+"par_id3150403\n"
+"31\n"
"help.text"
-msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
-msgstr "<emph>Kết quả:</emph> biểu thức lôgic mà ghi rõ kết quả của phép so sánh (Đúng hay Sai)."
+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\">Sự kiện này xảy ra khi người dùng ấn giữ phím trong khi kéo con chuột.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3148686\n"
-"7\n"
+"01170103.xhp\n"
+"hd_id3150210\n"
+"32\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp giá trị thuốc số hay chuỗi nào bạn muốn so sánh."
+msgid "Mouse moved"
+msgstr "Chuột di chuyển"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3147531\n"
-"8\n"
+"01170103.xhp\n"
+"par_id3149697\n"
+"33\n"
"help.text"
-msgid "Comparison operators"
-msgstr "Toán tử so sánh"
+msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Sự kiện này xảy ra khi con chuột đi qua ở trên điều khiển này.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3147265\n"
-"9\n"
+"01170103.xhp\n"
+"hd_id3145216\n"
+"22\n"
"help.text"
-msgid "= : Equal to"
-msgstr "= : Bằng"
+msgid "Mouse button pressed"
+msgstr "Nút chuột đã bấm"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3154924\n"
-"10\n"
+"01170103.xhp\n"
+"par_id3155914\n"
+"23\n"
"help.text"
-msgid "< : Less than"
-msgstr "< : Nhỏ hơn"
+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\">Sự kiện này xảy ra khi người dùng bấm nút chuột trong khi con trỏ nằm trên điều khiển này.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3146795\n"
-"11\n"
+"01170103.xhp\n"
+"hd_id3148899\n"
+"24\n"
"help.text"
-msgid "> : Greater than"
-msgstr "> : Lớn hơn"
+msgid "Mouse button released"
+msgstr "Nút chuột đã nhả"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3150541\n"
-"12\n"
+"01170103.xhp\n"
+"par_id3153812\n"
+"25\n"
"help.text"
-msgid "<= : Less than or equal to"
-msgstr "<= : Nhỏ hơn hay bằng"
+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\">Sự kiện này xảy ra khi người dùng nhả nút chuột khi con trỏ ở trên điều khiển này.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3150400\n"
-"13\n"
+"01170103.xhp\n"
+"hd_id3153556\n"
+"28\n"
"help.text"
-msgid ">= : Greater than or equal to"
-msgstr ">= : Lớn hơn hay bằng"
+msgid "Mouse outside"
+msgstr "Chuột bên ngoài"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3148797\n"
-"14\n"
+"01170103.xhp\n"
+"par_id3153013\n"
+"29\n"
"help.text"
-msgid "<> : Not equal to"
-msgstr "<> : Không bằng"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Sự kiện này xảy ra khi con chuột dời khỏi điều khiển này.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3154686\n"
-"15\n"
+"01170103.xhp\n"
+"hd_id3155759\n"
+"45\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "While adjusting"
+msgstr "Đang điều chỉnh"
-#: 03110100.xhp
-#, fuzzy
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3154909\n"
-"18\n"
+"01170103.xhp\n"
+"par_id3156364\n"
+"46\n"
"help.text"
-msgid "Dim sRoot As String ' Root directory for file in and output"
-msgstr "DIM sRoot As String REM ' Root directory for file in and output"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Sự kiện này xảy ra khi người dùng kéo thanh cuộn.</ahelp>"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
+"03000000.xhp\n"
"tit\n"
"help.text"
-msgid "Timer Function [Runtime]"
-msgstr "Hàm Timer [Runtime]"
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>Timer function</bookmark_value>"
-msgstr "<bookmark_value>hàm Timer</bookmark_value>"
+msgid "Run-Time Functions"
+msgstr "Hàm Lúc Chạy"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3149346\n"
+"03000000.xhp\n"
+"hd_id3152895\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Hàm Timer [Runtime]\">Hàm Timer [Runtime]</link>"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Hàm Lúc Chạy\">Hàm Lúc Chạy</link></variable>"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3156023\n"
+"03000000.xhp\n"
+"par_id3148983\n"
"2\n"
"help.text"
-msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
-msgstr "Trả về một giá trị mà ghi rõ số giây đã qua kể từ nửa đêm."
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"par_id3156212\n"
-"3\n"
-"help.text"
-msgid "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
-msgstr "Trước tiên bạn cần phải khai báo một biến để gọi hàm <emph>Timer</emph> và gán cho nó kiểu dữ liệu « Long » (dài), không thì trả về một giá trị Ngày."
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"hd_id3153768\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgstr "Phần này diễn tả các Hàm Lúc Chạy của <item type=\"productname\">%PRODUCTNAME</item> Basic."
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3161831\n"
-"5\n"
+"03010000.xhp\n"
+"tit\n"
"help.text"
-msgid "Timer"
-msgstr "Đếm thời gian"
+msgid "Screen I/O Functions"
+msgstr "Hàm V/R Màn hình"
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3146975\n"
-"6\n"
+"03010000.xhp\n"
+"hd_id3156280\n"
+"1\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+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=\"Hàm V/R Màn hình\">Hàm V/R Màn hình</link>"
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3146984\n"
-"7\n"
+"03010000.xhp\n"
+"par_id3153770\n"
+"2\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
+msgstr "Phần này diễn tả các Hàm Lúc Chạy được dùng để gọi hộp thoại để nhập/xuất dữ liệu của người dùng."
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3156442\n"
-"8\n"
+"03010100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Display Functions"
+msgstr "Hàm Hiển Thị"
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3145748\n"
-"12\n"
+"03010100.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "MsgBox lSec,0,\"Seconds since midnight\""
-msgstr "MsgBox lSec,0,\"Giây kể từ nửa đêm\""
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Hàm Hiển Thị\">Hàm Hiển Thị</link>"
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3156283\n"
-"17\n"
+"03010100.xhp\n"
+"par_id3149346\n"
+"2\n"
"help.text"
-msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
-msgstr "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"Bây giờ có\""
+msgid "This section describes Runtime functions used to output information to the screen display."
+msgstr "Phần này diễn tả các Hàm Lúc Chạy được dùng để xuất thông tin ra màn hình."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
+"03010101.xhp\n"
"tit\n"
"help.text"
-msgid "Dir Function [Runtime]"
-msgstr "Hàm Dir [Runtime]"
+msgid "MsgBox Statement [Runtime]"
+msgstr "Câu lệnh MsgBox [Runtime]"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"bm_id3154347\n"
+"03010101.xhp\n"
+"bm_id1807916\n"
"help.text"
-msgid "<bookmark_value>Dir function</bookmark_value>"
-msgstr "<bookmark_value>hàm Dir</bookmark_value>"
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh MsgBox</bookmark_value>"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154347\n"
+"03010101.xhp\n"
+"hd_id3154927\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Hàm Dir [Runtime]\">Hàm Dir [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">Câu lệnh MsgBox [Runtime]</link>"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153381\n"
+"03010101.xhp\n"
+"par_id3148947\n"
"2\n"
"help.text"
-msgid "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
-msgstr "Trả về tên của một tập tin, một thư mục, hoặc tất cả các tập tin và thư mục đều nằm trên một đĩa hoặc trong một thư mục mà tương ứng với đường dẫn tìm kiếm đã ghi rõ."
+msgid "Displays a dialog box containing a message."
+msgstr "Hiển thị hộp thoại chứa một thông điệp."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154365\n"
+"03010101.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Cú pháp"
+msgstr "Cú pháp:"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3156282\n"
+"03010101.xhp\n"
+"par_id3148664\n"
"4\n"
"help.text"
-msgid "Dir [(Text As String) [, Attrib As Integer]]"
-msgstr "Dir [(Text As String) [, Attrib As Integer]]"
+msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
+msgstr "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3156424\n"
+"03010101.xhp\n"
+"hd_id3153361\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153193\n"
+"03010101.xhp\n"
+"par_id3148798\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Text</emph>: biểu thức chuỗi được hiển thị dưới dạng một thông điệp trong hộp thoại. Có thể chèn chỗ ngắt dòng dùng Chr$(13)."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3153770\n"
+"03010101.xhp\n"
+"par_id3150769\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
+msgstr "<emph>DialogTitle</emph>: biểu thức chuỗi được hiển thị trên thanh tựa đề của hộp thoại. Bỏ sót thì thanh tựa đề hiển thị tên của ứng dụng tương ứng."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3161831\n"
+"03010101.xhp\n"
+"par_id3147228\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ đường dẫn, thư mục hoặc tập tin để tìm kiếm. Đối số này chỉ có thể được ghi rõ lần đầu tiên bạn gọi hàm « Dir ». Bạn cũng có thể nhập đường dẫn theo <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
+msgstr "<emph>Kiểu</emph>: một biểu thức số nguyên mà xác định kiểu hộp thoại, cũng như số và kiểu các nút cần hiển thị, và kiểu biểu tượng. <emph>Kiểu</emph> đại diện một tổ hợp các mẫu bit, tức là một tổ hợp các phần tử mà có thể được xác định bằng cách thêm các giá trị tương ứng:"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3146974\n"
+"03010101.xhp\n"
+"par_id3161832\n"
"9\n"
"help.text"
-msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
-msgstr "<emph>Attrib:</emph> bất cứ biểu thức số nguyên nào mà ghi rõ các thuộc tính tập tin theo vị trí bit. Hàm <emph>Dir</emph> chỉ trả về các tập tin hoặc thư mục mà tương ứng với các thuộc tính đã ghi rõ. Bạn cũng có thể kết hợp vài thuộc tính khác nhau, bằng cách thêm những giá trị thuộc tính:"
-
-#: 03020404.xhp
-#, fuzzy
-msgctxt ""
-"03020404.xhp\n"
-"par_id3149666\n"
-"11\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "0 : Các tập tin bình thường."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3147427\n"
-"15\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "16 : Chỉ trả về tên của thư mục."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3153952\n"
-"16\n"
-"help.text"
-msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
-msgstr "Hãy dùng thuộc tính này để kiểm tra nếu một tập tin hoặc thư mục có tồn tại không, hoặc để xác định tất cả các tập tin và thư mục trong một thư mục cụ thể."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3159156\n"
-"17\n"
-"help.text"
-msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
-msgstr "Để kiểm tra nếu một tập tin nào đó có phải tồn tại không, nhập tên và đường dẫn đầy đủ của tập tin đó. Không tồn tại thì hàm « Dir » sẽ trả về một chuỗi rỗng « »."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3154012\n"
-"18\n"
-"help.text"
-msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
-msgstr "Để tạo ra một danh sách các tập tin đã có trong một thư mục cụ thể, tiếp tục như sau : lần đầu tiên bạn gọi hàm « Dir », ghi rõ đường dẫn tìm kiếm hoàn toàn cho các tập tin đó (v.d. « D:\\Files\\*.sxw »). Nếu đường dẫn là đúng và chức năng tìm kiếm có phải tìm tập tin, hàm « Dir » trả về tên của tập tin thứ nhất mà tương ứng với đường dẫn tìm kiếm. Để trả về thêm tập tin mà tương ứng với đường dẫn, gọi hàm « Dir » lần nữa, nhưng không có đối số."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3147348\n"
-"19\n"
-"help.text"
-msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
-msgstr "Để trả về chỉ thư mục, dùng tham số thuộc tính. Cũng vậy nếu bạn muốn xác định tên của một khối tin (v.d. một phân vùng trên đĩa cứng)."
+msgid "0 : Display OK button only."
+msgstr "0 : Hiển thị chỉ một nút <emph>OK</emph>."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154942\n"
-"20\n"
+"03010101.xhp\n"
+"par_id3153726\n"
+"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Hiển thị các nút <emph>OK</emph> và <emph>Thôi</emph>."
-#: 03020404.xhp
-#, fuzzy
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3148455\n"
-"22\n"
+"03010101.xhp\n"
+"par_id3149665\n"
+"11\n"
"help.text"
-msgid "' Displays all files and directories"
-msgstr "REM Hiển thị tất cả các tập tin và thư mục"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Hiển thị các nút <emph>Hủy bỏ</emph>, <emph>Thử lại</emph> và <emph>Bỏ qua</emph>."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153416\n"
-"27\n"
+"03010101.xhp\n"
+"par_id3147318\n"
+"12\n"
"help.text"
-msgid "sDir=\"Directories:\""
-msgstr "sDir=\"Directories:\""
+msgid "3 : Display Yes, No and Cancel buttons."
+msgstr "3 : Hiển thị các nút <emph>Có</emph>, <emph>Không</emph> và <emph>Thôi</emph>."
-#: 03020404.xhp
-#, fuzzy
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3154253\n"
-"34\n"
+"03010101.xhp\n"
+"par_id3155412\n"
+"13\n"
"help.text"
-msgid "' Get the directories"
-msgstr "REM get the directories"
+msgid "4 : Display Yes and No buttons."
+msgstr "4 : Hiển thị các nút <emph>Có</emph> và <emph>Không</emph>."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"tit\n"
+"03010101.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "\"^\" Operator [Runtime]"
-msgstr "Toán tử « ^ » [Runtime]"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Hiển thị các nút<emph>Thử lại</emph> và <emph>Thôi</emph>."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"bm_id3145315\n"
+"03010101.xhp\n"
+"par_id3159155\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử « ^ » (toán học)</bookmark_value>"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Thêm biểu tượng <emph>Dừng</emph> vào hộp thoại."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3145315\n"
-"1\n"
+"03010101.xhp\n"
+"par_id3145366\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">Toán tử « ^ » [Runtime]</link>"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Thêm biểu tượng <emph>Hỏi</emph> vào hộp thoại."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3149670\n"
-"2\n"
+"03010101.xhp\n"
+"par_id3147350\n"
+"17\n"
"help.text"
-msgid "Raises a number to a power."
-msgstr "Tăng một số bằng một lũy thừa."
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr "48 : Thêm biểu tượng <emph>Dấu than</emph> vào hộp thoại."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3147264\n"
-"3\n"
+"03010101.xhp\n"
+"par_id3149960\n"
+"18\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Thêm biểu tượng <emph>Thông tin</emph> vào hộp thoại."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3149656\n"
-"4\n"
+"03010101.xhp\n"
+"par_id3154944\n"
+"19\n"
"help.text"
-msgid "Result = Expression ^ Exponent"
-msgstr "Kết quả = Biểu_thức ^ Số_mũ"
+msgid "128 : First button in the dialog as default button."
+msgstr "128 : Nút thứ nhất trong tài liệu là nút mặc định."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3151211\n"
-"5\n"
+"03010101.xhp\n"
+"par_id3155417\n"
+"20\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : Nút thứ hai trong hộp thoại là nút mặc định."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3153192\n"
-"6\n"
+"03010101.xhp\n"
+"par_id3153878\n"
+"21\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
-msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của số tăng bằng lũy thừa."
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : Nút thứ ba trong hộp thoại là nút mặc định."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3150448\n"
-"7\n"
+"03010101.xhp\n"
+"hd_id3150715\n"
+"22\n"
"help.text"
-msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
-msgstr "<emph>Biểu thức:</emph> giá trị thuộc số cần tăng bằng lũy thừa."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3156422\n"
-"8\n"
+"03010101.xhp\n"
+"par_id3150327\n"
+"24\n"
"help.text"
-msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
-msgstr "<emph>Số mũ :</emph> giá trị của lũy thừa bằng đó bạn muốn tăng biểu thức."
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr "Const sText1 = \"Gặp lỗi bất thường.\""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3147287\n"
-"9\n"
+"03010101.xhp\n"
+"par_id3146912\n"
+"25\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr "Const sText2 = \"Tuy nhiên, chương trình sẽ tiếp tục lại chạy.\""
-#: 03070500.xhp
-#, fuzzy
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3146984\n"
-"12\n"
+"03010101.xhp\n"
+"par_id3154757\n"
+"26\n"
"help.text"
-msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
-msgstr "Print Exp ( 23 * Log( 12.345 ) ) REM Tăng bằng cách tạo lôga"
+msgid "Const sText3 = \"Error\""
+msgstr "Const sText3 = \"Lỗi\""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
+"03010102.xhp\n"
"tit\n"
"help.text"
-msgid "Sgn Function [Runtime]"
-msgstr "Hàm Sgn [Runtime]"
+msgid "MsgBox Function [Runtime]"
+msgstr "Hàm MsgBox [Runtime]"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"bm_id3148474\n"
+"03010102.xhp\n"
+"bm_id3153379\n"
"help.text"
-msgid "<bookmark_value>Sgn function</bookmark_value>"
-msgstr "<bookmark_value>hàm Sgn</bookmark_value>"
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
+msgstr "<bookmark_value>hàm MsgBox</bookmark_value>"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3148474\n"
+"03010102.xhp\n"
+"hd_id3153379\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Hàm Sgn [Runtime]\">Hàm Sgn [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"Hàm MsgBox [Runtime]\">Hàm MsgBox [Runtime]</link>"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3148686\n"
+"03010102.xhp\n"
+"par_id3145171\n"
"2\n"
"help.text"
-msgid "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
-msgstr "Trả về một số nguyên giữa -1 và +1 mà ngụ ý nếu số được gửi cho hàm là dương, âm hay số không."
+msgid "Displays a dialog box containing a message and returns a value."
+msgstr "Hiển thị một hộp thoại chứa một thông điệp và trả về một giá trị."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3156023\n"
+"03010102.xhp\n"
+"hd_id3156281\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3153897\n"
+"03010102.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "Sgn (Number)"
-msgstr "Sgn (Số)"
+msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgstr "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3145069\n"
+"03010102.xhp\n"
+"hd_id3153771\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150359\n"
+"03010102.xhp\n"
+"par_id3146985\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Số nguyên"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3150543\n"
+"03010102.xhp\n"
+"hd_id3153363\n"
"7\n"
"help.text"
-msgid "Parameters:"
+msgid "Parameter:"
msgstr "Tham số :"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3154365\n"
+"03010102.xhp\n"
+"par_id3153727\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
-msgstr "<emph>Số</emph> : biểu thức thuộc số mà quyết định giá trị được hàm trả về."
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Text</emph>: biểu thức chuỗi được hiển thị dưới dạng một thông điệp trong hộp thoại. Có thể chèn chỗ ngắt dòng dùng Chr$(13)."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150767\n"
+"03010102.xhp\n"
+"par_id3147317\n"
"9\n"
"help.text"
-msgid "NumExpression"
-msgstr "NumExpression"
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
+msgstr "<emph>DialogTitle</emph>: biểu thức chuỗi được hiển thị trên thanh tựa đề của hộp thoại. Bỏ sót thì hiển thị tên của ứng dụng tương ứng."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150441\n"
+"03010102.xhp\n"
+"par_id3153954\n"
"10\n"
"help.text"
-msgid "Return value"
-msgstr "Giá trị trả về"
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
+msgstr "<emph>Type</emph>: bất cứ biểu thức số nguyên nào mà ghi rõ kiểu hộp thoại và xác định số và kiểu của các nút hoặc cáu biểu tượng được hiển thị. <emph>Type</emph> đại diện một tổ hợp các mẫu bit (các phần tử hộp thoại được xác định bằng cách cộng các giá trị với nhau)."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3161833\n"
+"03010102.xhp\n"
+"par_id3154319\n"
"11\n"
"help.text"
-msgid "negative"
-msgstr "âm"
+msgid "<emph>Values</emph>"
+msgstr "<emph>Giá trị</emph>"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3155306\n"
+"03010102.xhp\n"
+"par_id3147397\n"
"12\n"
"help.text"
-msgid "Sgn returns -1."
-msgstr "Sgn trả về -1."
+msgid "0 : Display OK button only."
+msgstr "0 : Hiển thị chỉ một nút <emph>OK</emph>."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3145271\n"
+"03010102.xhp\n"
+"par_id3145646\n"
"13\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Hiển thị các nút <emph>OK</emph> và <emph>Thôi</emph>."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3146119\n"
+"03010102.xhp\n"
+"par_id3149410\n"
"14\n"
"help.text"
-msgid "Sgn returns 0."
-msgstr "Sgn trả về 0."
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Hiển thị các nút <emph>Hủy bỏ</emph>, <emph>Thử lại</emph> và <emph>Bỏ qua</emph>."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3153139\n"
+"03010102.xhp\n"
+"par_id3151075\n"
"15\n"
"help.text"
-msgid "positive"
-msgstr "dương"
+msgid "3 : Display Yes, No, and Cancel buttons."
+msgstr "3 : Hiển thị các nút <emph>Có</emph>, <emph>Không</emph> và <emph>Thôi</emph>."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3154319\n"
+"03010102.xhp\n"
+"par_id3153878\n"
"16\n"
"help.text"
-msgid "Sgn returns 1."
-msgstr "Sgn trả về 1."
+msgid "4 : Display Yes and No buttons."
+msgstr "4 : Hiển thị các nút <emph>Có</emph> và <emph>Không</emph>."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3152576\n"
+"03010102.xhp\n"
+"par_id3155601\n"
"17\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03080701.xhp
-#, fuzzy
-msgctxt ""
-"03080701.xhp\n"
-"par_id3155416\n"
-"19\n"
-"help.text"
-msgid "Print sgn(-10) ' returns -1"
-msgstr "Print sgn(-10) REM trả về -1"
-
-#: 03080701.xhp
-#, fuzzy
-msgctxt ""
-"03080701.xhp\n"
-"par_id3154096\n"
-"20\n"
-"help.text"
-msgid "Print sgn(0) ' returns 0"
-msgstr "Print sgn(0) REM trả về 0"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Hiển thị các nút<emph>Thử lại</emph> và <emph>Thôi</emph>."
-#: 03080701.xhp
-#, fuzzy
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3148457\n"
-"21\n"
+"03010102.xhp\n"
+"par_id3150716\n"
+"18\n"
"help.text"
-msgid "Print sgn(10) ' returns 1"
-msgstr "Print sgn(10) REM trả về 1"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Thêm biểu tượng <emph>Dừng</emph> vào hộp thoại."
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"tit\n"
+"03010102.xhp\n"
+"par_id3153837\n"
+"19\n"
"help.text"
-msgid "Further Statements"
-msgstr "Câu lệnh bổ sung"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Thêm biểu tượng <emph>Hỏi</emph> vào hộp thoại."
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"hd_id3145316\n"
-"1\n"
+"03010102.xhp\n"
+"par_id3150751\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
-msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Câu lệnh bổ sung\">Câu lệnh bổ sung</link>"
+msgid "48 : Add the Exclamation Point icon to the dialog."
+msgstr "48 : Thêm biểu tượng <emph>Dấu than</emph> vào hộp thoại."
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"par_id3154923\n"
-"2\n"
+"03010102.xhp\n"
+"par_id3146915\n"
+"21\n"
"help.text"
-msgid "Statements that do not belong to any of the other runtime categories are described here."
-msgstr "Các câu lệnh không thuộc về bất cứ phân loại lúc chạy nào thì được diễn tả ở đây."
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Thêm biểu tượng <emph>Thông tin</emph> vào hộp thoại."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"tit\n"
+"03010102.xhp\n"
+"par_id3145640\n"
+"22\n"
"help.text"
-msgid "LBound Function [Runtime]"
-msgstr "Hàm LBound [Runtime]"
+msgid "128 : First button in the dialog as default button."
+msgstr "128 : Nút thứ nhất trong tài liệu là nút mặc định."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"bm_id3156027\n"
+"03010102.xhp\n"
+"par_id3153765\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>LBound function</bookmark_value>"
-msgstr "<bookmark_value>hàm LBound</bookmark_value>"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : Nút thứ hai trong hộp thoại là nút mặc định."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03010102.xhp\n"
+"par_id3153715\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"Hàm LBound [Runtime]\">Hàm LBound [Runtime]</link>"
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : Nút thứ ba trong hộp thoại là nút mặc định."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3147226\n"
-"2\n"
+"03010102.xhp\n"
+"par_id3159267\n"
+"25\n"
"help.text"
-msgid "Returns the lower boundary of an array."
-msgstr "Trả về giới hạn dưới của một mảng."
+msgid "<emph>Return value:</emph>"
+msgstr "<emph>Giá trị trả về:</emph>"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3148538\n"
-"3\n"
+"03010102.xhp\n"
+"par_id3145230\n"
+"26\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "1 : OK"
+msgstr "1 : OK"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3150503\n"
-"4\n"
+"03010102.xhp\n"
+"par_id3149567\n"
+"27\n"
"help.text"
-msgid "LBound (ArrayName [, Dimension])"
-msgstr "LBound (Tên_mảng [, Chiều])"
+msgid "2 : Cancel"
+msgstr "2 : Thôi"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3150984\n"
-"5\n"
+"03010102.xhp\n"
+"par_id4056825\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "3 : Abort"
+msgstr "3 : Hủy bỏ"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3153126\n"
-"6\n"
+"03010102.xhp\n"
+"par_id3155335\n"
+"28\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "4 : Retry"
+msgstr "4 : Thử lại"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3144500\n"
-"7\n"
+"03010102.xhp\n"
+"par_id3146918\n"
+"29\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "5 : Ignore"
+msgstr "5 : Bỏ qua"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3145069\n"
-"8\n"
+"03010102.xhp\n"
+"par_id3155961\n"
+"30\n"
"help.text"
-msgid "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
-msgstr "<emph>Tên_mảng:</emph> tên của mảng cho đó bạn muốn trả về giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>) của chiều mảng."
+msgid "6 : Yes"
+msgstr "6 : Có"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3149457\n"
-"9\n"
+"03010102.xhp\n"
+"par_id3148488\n"
+"31\n"
"help.text"
-msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
-msgstr "<emph>[Chiều]:</emph> số nguyên mà ghi rõ chiều nào cho đó cần trả về giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>) của chiều mảng. Không ghi rõ giá trị thì giả sử chiều đầu tiên."
+msgid "7 : No"
+msgstr "7 : Không"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"03010102.xhp\n"
+"hd_id3150090\n"
+"40\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03102900.xhp
-#, fuzzy
-msgctxt ""
-"03102900.xhp\n"
-"par_id3145365\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Print LBound(sVar()) REM Trả về 10"
-
-#: 03102900.xhp
-#, fuzzy
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3150486\n"
-"19\n"
+"03010102.xhp\n"
+"par_id3151278\n"
+"43\n"
"help.text"
-msgid "Print UBound(sVar()) ' Returns 20"
-msgstr "Print UBound(sVar()) REM Trả về 20"
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr "sVar = MsgBox(\"Las Vegas\")"
-#: 03102900.xhp
-#, fuzzy
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3149665\n"
-"20\n"
+"03010102.xhp\n"
+"par_id3149034\n"
+"44\n"
"help.text"
-msgid "Print LBound(sVar(),2) ' Returns 5"
-msgstr "Print LBound(sVar(),2) REM Trả về 5"
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr "sVar = MsgBox(\"Las Vegas\",1)"
-#: 03102900.xhp
-#, fuzzy
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3159154\n"
-"21\n"
+"03010102.xhp\n"
+"par_id3166424\n"
+"45\n"
"help.text"
-msgid "Print UBound(sVar(),2) ' Returns 70"
-msgstr "Print UBound(sVar(),2) REM Trả về 70"
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
+"03010103.xhp\n"
"tit\n"
"help.text"
-msgid "UBound Function [Runtime]"
-msgstr "Hàm UBound [Runtime]"
+msgid "Print Statement [Runtime]"
+msgstr "Câu lệnh Print [Runtime]"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"bm_id3148538\n"
+"03010103.xhp\n"
+"bm_id3147230\n"
"help.text"
-msgid "<bookmark_value>UBound function</bookmark_value>"
-msgstr "<bookmark_value>hàm UBound</bookmark_value>"
+msgid "<bookmark_value>Print statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Print</bookmark_value>"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3148538\n"
+"03010103.xhp\n"
+"hd_id3147230\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"Hàm UBound [Runtime]\">Hàm UBound [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Câu lệnh Print [Runtime]\">Câu lệnh Print [Runtime]</link>"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3147573\n"
+"03010103.xhp\n"
+"par_id3156281\n"
"2\n"
"help.text"
-msgid "Returns the upper boundary of an array."
-msgstr "Trả về giới hạn trên của một mảng."
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr "Xuất các chuỗi hoặc biểu thức số đã ghi rõ vào một hộp thoại hoặc tập tin."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3150984\n"
+"03010103.xhp\n"
+"hd_id3145785\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149415\n"
+"03010103.xhp\n"
+"par_id3153188\n"
"4\n"
"help.text"
-msgid "UBound (ArrayName [, Dimension])"
-msgstr "UBound (Tên_mảng [, Chiều])"
+msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
+msgstr "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3153897\n"
+"03010103.xhp\n"
+"hd_id3147348\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149670\n"
+"03010103.xhp\n"
+"par_id2508621\n"
+"help.text"
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin mà được đặt bởi câu lệnh Mở (Open) cho tập tin tương ứng."
+
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3163712\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "<emph>Expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
+msgstr "<emph>Expression</emph>: bất kỳ biểu thức kiểu số hoặc chuỗi mà nên in ra. Có thể định giới nhiều biểu thức bằng dấu chấm phẩy. Định giới bằng dấu phẩy thì các biểu thức được thụt vào vị trí tab kế tiếp. Không thể điều chỉnh vị trí tab."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3154347\n"
+"03010103.xhp\n"
+"par_id3153092\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr "<emph>Number</emph>: Số dấu cách nên được hàm <emph>Spc</emph> chèn."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3153381\n"
+"03010103.xhp\n"
+"par_id3145364\n"
"8\n"
"help.text"
-msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
-msgstr "<emph>Tên_mảng:</emph> tên của mảng cho đó bạn muốn quyết định giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>)."
+msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
+msgstr "<emph>Pos</emph>: chèn các dấu cách đến khi tới vị trí đã ghi rõ."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3148797\n"
+"03010103.xhp\n"
+"par_id3154319\n"
"9\n"
"help.text"
-msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
-msgstr "<emph>[Dimension]:</emph> số nguyên mà ghi rõ chiều cho đó cần trả về giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>). Không ghi rõ giá trị thì trả về giới hạn của chiều đầu tiên."
+msgid "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
+msgstr "Nếu một dấu chấm phẩy hoặc dấu phẩy xuất hiện phía sau biểu thức cuối cùng cần in thì $[officename] Basic cất giữ văn bản trong một bộ đệm nội bộ và tiếp tục lại thực hiện chương trình mà không in ấn. Khi một câu lệnh « Print » (In) khác không có dấu chấm phẩy hoặc dấu phẩy ở cuối được gặp, toàn bộ văn bản cần in ra được in đồng thời."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3153192\n"
+"03010103.xhp\n"
+"par_id3145272\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03103000.xhp
-#, fuzzy
-msgctxt ""
-"03103000.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Print LBound(sVar()) REM Trả về 10"
+msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
+msgstr "Các biểu thức số dương thì được in ra với một dấu cách đứng đầu. Biểu thức âm được in ra với một dấu trừ đứng đầu. Vượt quá một phạm vi nào đó cho giá trị chấm động thì biểu thức số tương ứng được in ra theo kiểu ghi số mũ."
-#: 03103000.xhp
-#, fuzzy
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3153138\n"
-"19\n"
+"03010103.xhp\n"
+"par_id3154011\n"
+"11\n"
"help.text"
-msgid "Print UBound(sVar()) ' Returns 20"
-msgstr "Print UBound(sVar()) REM Trả về 20"
+msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgstr "Biểu thức cần in cũng vượt quá chiều dài đã ghi rõ thì ô hiển thị sẽ tự động cuộn đến dòng kế tiếp."
-#: 03103000.xhp
-#, fuzzy
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149665\n"
-"20\n"
+"03010103.xhp\n"
+"par_id3146969\n"
+"12\n"
"help.text"
-msgid "Print LBound(sVar(),2) ' Returns 5"
-msgstr "Print LBound(sVar(),2) REM Trả về 5"
+msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+msgstr "Bạn có thể chèn hàm <emph>Tab</emph>, bao bọc trong hai dấu chấm phẩy, nằm giữa các đối số để thụt dữ liệu nhập vào một vị trí cụ thể, hoặc bạn có thể sử dụng hàm <emph>Spc</emph> để chèn một số dấu cách đã ghi rõ."
-#: 03103000.xhp
-#, fuzzy
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3147214\n"
-"21\n"
+"03010103.xhp\n"
+"hd_id3146912\n"
+"13\n"
"help.text"
-msgid "Print UBound(sVar(),2) ' Returns 70"
-msgstr "Print UBound(sVar(),2) REM Trả về 70"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
+"03010200.xhp\n"
"tit\n"
"help.text"
-msgid "Public Statement [Runtime]"
-msgstr "Câu lệnh Public [Runtime]"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Public statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Public</bookmark_value>"
+msgid "Functions for Screen Input"
+msgstr "Hàm để nhập vào màn hình"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
-"hd_id3153311\n"
+"03010200.xhp\n"
+"hd_id3149456\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Câu lệnh Public [Runtime]\">Câu lệnh Public [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
+msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Hàm để nhập vào màn hình\">Hàm để nhập vào màn hình</link>"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
-"par_id3150669\n"
+"03010200.xhp\n"
+"par_id3150398\n"
"2\n"
"help.text"
-msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
-msgstr "Đặt các chiều của một biến hay mảng ở bậc mô-đun (tức là không phải bên trong một chương trình con hay hàm), để biến hay mảng đó còn hợp lệ trong tất cả các thư viện và mô-đun."
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"hd_id3150772\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-msgstr "Public Tên_biến[(đầu To cuối)] [As Kiểu_biến][, Tên_biến2[(đầu To cuối)] [As Kiểu_biến][,...]]"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "This section describes Runtime functions used to control screen input."
+msgstr "Phần này diễn tả các hàm lúc chạy được dùng để điều khiển cách nhập vào màn hình."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
+"03010201.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoValue Function [Runtime]"
-msgstr "Hàm CreateUnoValue [Runtime]"
+msgid "InputBox Function [Runtime]"
+msgstr "Hàm InputBox [Runtime]"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"bm_id3150682\n"
+"03010201.xhp\n"
+"bm_id3148932\n"
"help.text"
-msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
-msgstr "<bookmark_value>hàm CreateUnoValue</bookmark_value>"
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr "<bookmark_value>hàm InputBox</bookmark_value>"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"hd_id3150682\n"
+"03010201.xhp\n"
+"hd_id3148932\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"Hàm CreateUnoValue [Runtime]\">Hàm CreateUnoValue [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"Hàm InputBox [Runtime]\">Hàm InputBox [Runtime]</link>"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3147291\n"
+"03010201.xhp\n"
+"par_id3151262\n"
"2\n"
"help.text"
-msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
-msgstr "Trả về một đối tượng mà đại diện một giá trị kiểu chặt chẽ tham chiếu đến hệ thống kiểu Uno."
+msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
+msgstr "Mở một hộp thoại cứa một dấu nhắc ở đó người dùng có thể nhập văn bản. Dữ liệu nhập được gán cho một biến."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3143267\n"
+"03010201.xhp\n"
+"par_id3151100\n"
"3\n"
"help.text"
-msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
-msgstr "Đối tượng này được tự động chuyển đổi sang bất cứ kiểu tương ứng nào khi được gửi cho Uno. Kiểu phải được ghi rõ theo tên kiểu Uno có khả năng đầy đủ."
+msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
+msgstr "Câu lệnh <emph>InputBox</emph> là một phương pháp tiện lợi để nhập văn bản thông qua một hộp thoại. Hãy xác nhận dữ liệu nhập bằng cách nhấn vào nút <emph>OK</emph> hoặc bấm phím <item type=\"keycode\">Return</item>. Dữ liệu nhập được trả về dưới dạng giá trị trả về của hàm. Nếu bạn đóng hộp thoại bằng nút <emph>Thôi</emph>, <emph>InputBox</emph> sẽ trả về một chuỗi rỗng « »."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3153626\n"
+"03010201.xhp\n"
+"hd_id3152347\n"
"4\n"
"help.text"
-msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
-msgstr "Giao diện API của $[officename] thường dùng kiểu Any (bất kỳ). Nó là bộ phận tương ứng với kiểu Variant (biến thế) được biết từ các môi trường khác. Kiểu Any giữ một kiểu Uno tùy ý, và được dùng trong các giao diện Uno chung."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"hd_id3147560\n"
+"03010201.xhp\n"
+"par_id3159201\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
+msgstr "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3154760\n"
+"03010201.xhp\n"
+"hd_id3150713\n"
"6\n"
"help.text"
-msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
-msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) để được một dãy byte"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3150541\n"
+"03010201.xhp\n"
+"par_id3145090\n"
"7\n"
"help.text"
-msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
-msgstr "Nếu CreateUnoValue không thể được chuyển đổi sang kiểu Uno đã ghi rõ, thì gặp lỗi. Để chuyển đổi, dùng dịch vụ TypeConverter."
+msgid "String"
+msgstr "Chuỗi"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3153524\n"
+"03010201.xhp\n"
+"hd_id3149346\n"
"8\n"
"help.text"
-msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
-msgstr "Hàm này dự định để sử dụng trong trường hợp mà cơ chế chuyển đổi kiểu Basic sang Uno mặc định không còn đủ. Đây có thể xảy ra khi bạn thử truy cập đến giao diện chung dựa vào kiểu Any (bất kỳ), v.d. « XPropertySet::setPropertyValue( Name, Value ) » hay « X???Container::insertBy???( ???, Value ) », từ $[officename] Basic. Lúc chạy, Basic không nhận ra các kiểu này vì chúng chỉ được định nghĩa trong dịch vụ tương ứng."
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3154366\n"
+"03010201.xhp\n"
+"par_id3153311\n"
"9\n"
"help.text"
-msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
-msgstr "Trong trường hợp kiểu này, $[officename] Basic chọn kiểu tương ứng tốt nhất với kiểu Basic cần chuyển đổi. Tuy nhiên, nếu kiểu không đúng được chọn, một lỗi sẽ xảy ra. Bạn nên sử dụng hàm CreateUnoValue() để tạo một giá trị cho kiểu Uno không rõ."
+msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
+msgstr "<emph>Msg</emph>: biểu thức chuỗi được hiển thị dưới dạng thông điệp trong hộp thoại."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3150769\n"
+"03010201.xhp\n"
+"par_id3145315\n"
"10\n"
"help.text"
-msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
-msgstr "Bạn cũng có thể sử dụng hàm này để gửi giá trị khác Any, nhưng ứng xử này không phải khuyến khích. Nếu Basic đã biết kiểu đích, dùng hàm CreateUnoValue() sẽ chỉ dẫn tới thao tác chuyển đổi thêm nữa mà làm cho mã Basic thực hiện chậm."
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
+msgstr "<emph>Title</emph>: biểu thức chuỗi được hiển thị trên thanh tựa đề của hộp thoại."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"tit\n"
+"03010201.xhp\n"
+"par_id3154307\n"
+"11\n"
"help.text"
-msgid "Left Function [Runtime]"
-msgstr "Hàm Left [Runtime]"
+msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
+msgstr "<emph>Default</emph>: biểu thức chuỗi được hiển thị trong hộp văn bản theo mặc định nếu không có dữ liệu khác nhập vào."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"bm_id3149346\n"
+"03010201.xhp\n"
+"par_id3147573\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>Left function</bookmark_value>"
-msgstr "<bookmark_value>hàm Left</bookmark_value>"
+msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr "<emph>x_pos</emph>: biểu thức số nguyên mà ghi rõ vị trí theo chiều ngang của hộp thoại. Vị trí này là một toạ độ tuyệt đối và không tham chiếu đến cửa sổ của ứng dụng văn phòng."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3149346\n"
-"1\n"
+"03010201.xhp\n"
+"par_id3156024\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Hàm Left [Runtime]\">Hàm Left [Runtime]</link>"
+msgid "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr "<emph>y_pos</emph>: biểu thức số nguyên mà ghi rõ vị trí của hộp thoại theo chiều dọc. Vị trí này là một toạ độ tuyệt đối và không tham chiếu đến cửa sổ của ứng dụng văn phòng."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3147242\n"
-"2\n"
+"03010201.xhp\n"
+"par_id3153897\n"
+"14\n"
"help.text"
-msgid "Returns the number of leftmost characters that you specify of a string expression."
-msgstr "Trả về số các ký tự bên trái cùng mà bạn ghi rõ của một biểu thức chuỗi."
+msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+msgstr "Bỏ sót hai toạ độ <emph>x_pos</emph> và <emph>y_pos</emph> thì hộp thoại nằm ở giữa trên màn hình. Vị trí được ghi rõ theo đơn vị <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3156153\n"
-"3\n"
+"03010201.xhp\n"
+"hd_id3149456\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150771\n"
-"4\n"
+"03010201.xhp\n"
+"par_id3154367\n"
+"18\n"
"help.text"
-msgid "Left (Text As String, n As Long)"
-msgstr "Left (Text As String, n As Long)"
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3153824\n"
-"5\n"
+"03010201.xhp\n"
+"par_id3151042\n"
+"19\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgstr "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3147530\n"
-"6\n"
+"03010300.xhp\n"
+"tit\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Color Functions"
+msgstr "Hàm Màu"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3148946\n"
-"7\n"
+"03010300.xhp\n"
+"hd_id3157896\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Hàm Màu\">Hàm Màu</link>"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3148552\n"
-"8\n"
+"03010300.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào từ đó bạn muốn trả về các ký tự bên trái cùng."
+msgid "This section describes Runtime functions used to define colors."
+msgstr "Phần này diễn tả các hàm lúc chạy được dùng để xác định màu sắc."
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3149456\n"
-"9\n"
+"03010301.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
-msgstr "<emph>n:</emph> biểu thức thuộc số mà ghi rõ số các ký tự cần trả về. Nếu <emph>n</emph> = 0, thì trả về một chuỗi có chiều dài số không. Giá trị tối đa được phép là 65535."
+msgid "Blue Function [Runtime]"
+msgstr "Hàm Blue [Runtime]"
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150791\n"
-"10\n"
+"03010301.xhp\n"
+"bm_id3149180\n"
"help.text"
-msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
-msgstr "Mẫu thí dụ theo đây chuyển đổi một ngày tháng theo định dạng NNăm.Th.Ng sang định dạng Th/Ng/NNăm."
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr "<bookmark_value>Hàm Blue</bookmark_value>"
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3125863\n"
-"11\n"
+"03010301.xhp\n"
+"hd_id3149180\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Hàm Blue [Runtime]\">Hàm Blue [Runtime]</link>"
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150448\n"
-"15\n"
+"03010301.xhp\n"
+"par_id3156343\n"
+"2\n"
"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Hãy nhập một ngày tháng theo định dạng quốc tế « NNăm-Th-Ng »)"
+msgid "Returns the blue component of the specified color code."
+msgstr "Trả về thành phần màu xanh của mã màu đã ghi rõ."
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"tit\n"
+"03010301.xhp\n"
+"hd_id3149670\n"
+"3\n"
"help.text"
-msgid "Name Statement [Runtime]"
-msgstr "Câu lệnh Name [Runtime]"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"bm_id3143268\n"
+"03010301.xhp\n"
+"par_id3149457\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Name statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Name</bookmark_value>"
+msgid "Blue (Color As Long)"
+msgstr "Blue (Color As Long)"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3143268\n"
-"1\n"
+"03010301.xhp\n"
+"hd_id3149656\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Câu lệnh Name [Runtime]\">Câu lệnh Name [Runtime]</link>"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3154346\n"
-"2\n"
+"03010301.xhp\n"
+"par_id3154365\n"
+"6\n"
"help.text"
-msgid "Renames an existing file or directory."
-msgstr "Thay đổi tên của một tập tin hoặc thư mục đã có."
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3156344\n"
-"3\n"
+"03010301.xhp\n"
+"hd_id3156423\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3153381\n"
-"4\n"
+"03010301.xhp\n"
+"par_id3150448\n"
+"8\n"
"help.text"
-msgid "Name OldName As String As NewName As String"
-msgstr "Name OldName As String As NewName As String"
+msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
+msgstr "<emph>Color value</emph>: biểu thức số nguyên dài mà ghi rõ bất cứ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"mã màu\">mã màu</link> cho đó cần trả về thành phần màu xanh."
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3153362\n"
-"5\n"
+"03010301.xhp\n"
+"hd_id3153091\n"
+"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3151210\n"
-"6\n"
+"03010301.xhp\n"
+"par_id3154012\n"
+"13\n"
"help.text"
-msgid "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>OldName, NewName:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ tên tập tin (chứa đường dẫn). Bạn cũng có thể dùng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3125863\n"
-"8\n"
+"03010301.xhp\n"
+"par_id3148645\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & Red(lVar) & Chr(13)&_"
-#: 03020412.xhp
-#, fuzzy
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3152462\n"
+"03010301.xhp\n"
+"par_id3159155\n"
+"15\n"
+"help.text"
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & Green(lVar) & Chr(13)&_"
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3147319\n"
"16\n"
"help.text"
-msgid "MsgBox \"File already exists\""
-msgstr "msgbox \"Tập tin đã có\""
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
+"03010302.xhp\n"
"tit\n"
"help.text"
-msgid "EqualUnoObjects Function [Runtime]"
-msgstr "Hàm EqualUnoObjects [Runtime]"
+msgid "Green Function [Runtime]"
+msgstr "Hàm Green [Runtime]"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"bm_id3149205\n"
+"03010302.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
-msgstr "<bookmark_value>hàm EqualUnoObjects</bookmark_value>"
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr "<bookmark_value>hàm Green</bookmark_value>"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3149205\n"
+"03010302.xhp\n"
+"hd_id3148947\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"Hàm EqualUnoObjects [Runtime]\">Hàm EqualUnoObjects [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Hàm Green [Runtime]\"> Hàm Green [Runtime]</link>"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3145090\n"
+"03010302.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
-msgstr "Trả về Đúng nếu hai đối tượng Uno Basic đã ghi rõ có đại diện cùng một thể hiện đối tượng Uno."
+msgid "Returns the Green component of the given color code."
+msgstr "Trả về thành phần màu Lục của mã màu đã cho."
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3148538\n"
+"03010302.xhp\n"
+"hd_id3154140\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3150669\n"
+"03010302.xhp\n"
+"par_id3153969\n"
"4\n"
"help.text"
-msgid "EqualUnoObjects( oObj1, oObj2 )"
-msgstr "EqualUnoObjects( oObj1, oObj2 )"
+msgid "Green (Color As Long)"
+msgstr "Green (Color As Long)"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3150984\n"
+"03010302.xhp\n"
+"hd_id3154124\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154285\n"
+"03010302.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3145315\n"
+"03010302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3156024\n"
+"03010302.xhp\n"
+"par_id3153770\n"
"8\n"
"help.text"
-msgid "// Copy of objects -> same instance"
-msgstr "// Copy of objects -> same instance"
+msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
+msgstr "<emph>Color</emph>: biểu thức số nguyên dài mà ghi rõ một <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"mã màu\">mã màu</link> cho đó cần trả về thành phần màu Lục."
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154923\n"
+"03010302.xhp\n"
+"hd_id3149664\n"
"9\n"
"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3147559\n"
-"10\n"
-"help.text"
-msgid "oIntro2 = oIntrospection"
-msgstr "oIntro2 = oIntrospection"
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
-msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3153525\n"
-"12\n"
-"help.text"
-msgid "// Copy of structs as value -> new instance"
-msgstr "// Copy of structs as value -> new instance"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154366\n"
+"03010302.xhp\n"
+"par_id3151117\n"
"13\n"
"help.text"
-msgid "Dim Struct1 as new com.sun.star.beans.Property"
-msgstr "Dim Struct1 as new com.sun.star.beans.Property"
+msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
+msgstr "msgbox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154348\n"
+"03010302.xhp\n"
+"par_id3153951\n"
"14\n"
"help.text"
-msgid "Struct2 = Struct1"
-msgstr "Struct2 = Struct1"
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
+msgstr "\"red = \" & red(lVar) & Chr(13)&_"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154125\n"
+"03010302.xhp\n"
+"par_id3152462\n"
"15\n"
"help.text"
-msgid "print EqualUnoObjects( Struct1, Struct2 )"
-msgstr "print EqualUnoObjects( Struct1, Struct2 )"
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
+msgstr "\"green = \" & green(lVar) & Chr(13)&_"
-#: 03020405.xhp
+#: 03010302.xhp
msgctxt ""
-"03020405.xhp\n"
+"03010302.xhp\n"
+"par_id3154730\n"
+"16\n"
+"help.text"
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
"tit\n"
"help.text"
-msgid "FileAttr-Function [Runtime]"
-msgstr "H àm FileAttr [Runtime]"
+msgid "Red Function [Runtime]"
+msgstr "Hàm Red [Runtime]"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"bm_id3153380\n"
+"03010303.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "<bookmark_value>FileAttr function</bookmark_value>"
-msgstr "<bookmark_value>hàm FileAttr</bookmark_value>"
+msgid "<bookmark_value>Red function</bookmark_value>"
+msgstr "<bookmark_value>hàm Red</bookmark_value>"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3153380\n"
+"03010303.xhp\n"
+"hd_id3148947\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"Hàm FileAttr [Runtime]\">Hàm FileAttr [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Hàm Red [Runtime]\">Hàm Red [Runtime]</link>"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154366\n"
+"03010303.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
-msgstr "Trả về chế độ truy cập hoặc số truy cập tập tin của một tập tin đã được mở bằng câu lệnh Open. Số truy cập tập tin cũng phụ thuộc vào hệ điều hành (OSH: bộ quản lý hệ điều hành)."
+msgid "Returns the Red component of the specified color code."
+msgstr "Trả về thành phần màu Đỏ của mã màu đã ghi rõ."
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3153364\n"
+"03010303.xhp\n"
+"hd_id3148799\n"
"3\n"
"help.text"
-msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
-msgstr "Hệ điều hành của bạn có kiểu 32-bit thì không thể sử dụng hàm FileAttr để xác định số truy cập tập tin."
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3163713\n"
-"4\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"5\n"
-"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154012\n"
-"6\n"
+"03010303.xhp\n"
+"par_id3150448\n"
+"4\n"
"help.text"
-msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
-msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgid "Red (ColorNumber As Long)"
+msgstr "Red (ColorNumber As Long)"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"7\n"
+"03010303.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3146974\n"
-"8\n"
+"03010303.xhp\n"
+"par_id3145173\n"
+"6\n"
"help.text"
msgid "Integer"
msgstr "Số nguyên"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"9\n"
+"03010303.xhp\n"
+"hd_id3154685\n"
+"7\n"
"help.text"
-msgid "Parameters:"
+msgid "Parameter:"
msgstr "Tham số :"
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3151074\n"
-"10\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
-msgstr "<emph>FileNumber:</emph> số hiệu của tập tin được câu lệnh Open mở."
-
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3144766\n"
-"11\n"
+"03010303.xhp\n"
+"par_id3150440\n"
+"8\n"
"help.text"
-msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
-msgstr "<emph>Thuộc tính:</emph> biểu thức số nguyên mà ngụ ý kiểu thông tin tập tin bạn muốn đặt hàm trả về. Có thể dùng những giá trị này:"
+msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
+msgstr "<emph>ColorNumber</emph>: biểu thức số nguyên dài mà ghi rõ bất cứ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"mã màu\">mã màu</link> cho đó cần trả về thành phần màu Đỏ."
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3147396\n"
-"12\n"
+"03010303.xhp\n"
+"hd_id3148575\n"
+"9\n"
"help.text"
-msgid "1: The FileAttr-Function indicates the access mode of the file."
-msgstr "1: Hàm FileAttr ngụ ý chế độ truy cập của tập tin."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149959\n"
+"03010303.xhp\n"
+"par_id3147435\n"
"13\n"
"help.text"
-msgid "2: The FileAttr-Function returns the file access number of the operating system."
-msgstr "2: Hàm FileAttr trả về số truy cập tập tin của hệ điều hành."
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154018\n"
+"03010303.xhp\n"
+"par_id3155306\n"
"14\n"
"help.text"
-msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
-msgstr "Ghi rõ một thuộc tính tham số có giá trị 1 thì trả về các giá trị này:"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & red(lVar) & Chr(13)&_"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149124\n"
+"03010303.xhp\n"
+"par_id3149262\n"
"15\n"
"help.text"
-msgid "1 - INPUT (file open for input)"
-msgstr "1 - NHẬP (tập tin mở để nhập vào)"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & green(lVar) & Chr(13)&_"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3156275\n"
+"03010303.xhp\n"
+"par_id3147397\n"
"16\n"
"help.text"
-msgid "2 - OUTPUT (file open for output)"
-msgstr "2 - XUẤT (tập tin mở để xuất ra)"
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3155066\n"
-"17\n"
-"help.text"
-msgid "4 - RANDOM (file open for random access)"
-msgstr "4 - NGẪU NHIÊN (tập tin mở để truy cập ngẫu nhiên)"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3148406\n"
-"18\n"
+"03010304.xhp\n"
+"tit\n"
"help.text"
-msgid "8 - APPEND (file open for appending)"
-msgstr "8 - PHỤ THÊM (tập tin mở để phụ thêm)"
+msgid "QBColor Function [Runtime]"
+msgstr "Hàm QBColor [Runtime]"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154757\n"
-"19\n"
+"03010304.xhp\n"
+"hd_id3149670\n"
+"1\n"
"help.text"
-msgid "32 - BINARY (file open in binary mode)."
-msgstr "32 - NHỊ PHÂN (tập tin mở ở chế độ nhị phân)."
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"Hàm QBColor [Runtime]\">Hàm QBColor [Runtime]</link>"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"20\n"
+"03010304.xhp\n"
+"par_id3150359\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgstr "Trả về mã màu <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> của màu, được gửi qua dạng giá trị màu thông qua một hệ thống lập trình cũ dựa vào MS-DOS."
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3155607\n"
-"29\n"
+"03010304.xhp\n"
+"hd_id3154140\n"
+"3\n"
"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"This is a line of text\""
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3150361\n"
-"30\n"
+"03010304.xhp\n"
+"par_id3151042\n"
+"4\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "QBColor (ColorNumber As Integer)"
+msgstr "QBColor (ColorNumber As Integer)"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149817\n"
-"31\n"
+"03010304.xhp\n"
+"hd_id3145172\n"
+"5\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"tit\n"
+"03010304.xhp\n"
+"par_id3154685\n"
+"6\n"
"help.text"
-msgid "Randomize Statement [Runtime]"
-msgstr "Câu lệnh Randomize [Runtime]"
+msgid "Long"
+msgstr "Dài"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"bm_id3150616\n"
+"03010304.xhp\n"
+"hd_id3156560\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>Randomize statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Randomize</bookmark_value>"
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03010304.xhp\n"
+"par_id3161832\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Câu lệnh Randomize [Runtime]\">Câu lệnh Randomize [Runtime]</link>"
+msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
+msgstr "<emph>ColorNumber</emph>: bất cứ biểu thức số nguyên nào mà ghi rõ giá trị màu của màu được gửi qua từ một hệ thống lập trình cũ dựa vào MS-DOS."
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3145090\n"
-"2\n"
+"03010304.xhp\n"
+"par_id3147318\n"
+"9\n"
"help.text"
-msgid "Initializes the random-number generator."
-msgstr "Khởi tạo bộ sinh số ngẫu nhiên."
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr "<emph>ColorNumber</emph> (số hiệu màu) có thể được gán những con số này:"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3147573\n"
-"3\n"
+"03010304.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "0 : Black"
+msgstr "0 : Màu đen"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3145315\n"
-"4\n"
+"03010304.xhp\n"
+"par_id3146975\n"
+"11\n"
"help.text"
-msgid "Randomize [Number]"
-msgstr "Randomize [Số]"
+msgid "1 : Blue"
+msgstr "1 : Màu xanh"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3152456\n"
-"5\n"
+"03010304.xhp\n"
+"par_id3151116\n"
+"12\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "2 : Green"
+msgstr "2 : Màu lục"
-#: 03080301.xhp
-#, fuzzy
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3149670\n"
-"6\n"
+"03010304.xhp\n"
+"par_id3155412\n"
+"13\n"
"help.text"
-msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
-msgstr "<emph>Số:</emph> số nguyên chứa số ngày tháng kiểu dãy."
+msgid "3 : Cyan"
+msgstr "3 : Màu xanh lá mạ"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3149655\n"
-"7\n"
+"03010304.xhp\n"
+"par_id3155306\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "4 : Red"
+msgstr "4 : Màu đỏ"
-#: 03080301.xhp
-#, fuzzy
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3147288\n"
-"14\n"
+"03010304.xhp\n"
+"par_id3153364\n"
+"15\n"
"help.text"
-msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
-msgstr "iVar = Int((10 * Rnd) ) REM Phạm vi từ 0 đến 9"
+msgid "5 : Magenta"
+msgstr "5 : Màu đỏ tươi"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3148617\n"
-"22\n"
+"03010304.xhp\n"
+"par_id3146119\n"
+"16\n"
"help.text"
-msgid "MsgBox sText,0,\"Spectral Distribution\""
-msgstr "MsgBox sText,0,\"Phân phối phổ\""
+msgid "6 : Yellow"
+msgstr "6 : Màu vàng"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"tit\n"
+"03010304.xhp\n"
+"par_id3154730\n"
+"17\n"
"help.text"
-msgid "DimArray Function [Runtime]"
-msgstr "Hàm DimArray [Runtime]"
+msgid "7 : White"
+msgstr "7 : Màu trắng"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"bm_id3150616\n"
+"03010304.xhp\n"
+"par_id3153877\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>DimArray function</bookmark_value>"
-msgstr "<bookmark_value>hàm DimArray</bookmark_value>"
+msgid "8 : Gray"
+msgstr "8 : Màu xám"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03010304.xhp\n"
+"par_id3147124\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"Hàm DimArray [Runtime]\">Hàm DimArray [Runtime]</link>"
+msgid "9 : Light Blue"
+msgstr "9 : Màu xanh nhạt"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3153527\n"
-"2\n"
+"03010304.xhp\n"
+"par_id3145646\n"
+"20\n"
"help.text"
-msgid "Returns a Variant array."
-msgstr "Trả về một mảng kiểu biến thế."
+msgid "10 : Light Green"
+msgstr "10 : Màu lục nhạt"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3149762\n"
-"3\n"
+"03010304.xhp\n"
+"par_id3149958\n"
+"21\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "11 : Light Cyan"
+msgstr "11 : Màu xanh lá mạ nhạt"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3148473\n"
-"4\n"
+"03010304.xhp\n"
+"par_id3154943\n"
+"22\n"
"help.text"
-msgid "DimArray ( Argument list)"
-msgstr "DimArray ( Danh_sách_đối_số)"
+msgid "12 : Light Red"
+msgstr "12 : Màu đỏ nhạt"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3154142\n"
-"5\n"
+"03010304.xhp\n"
+"par_id3150715\n"
+"23\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
-msgstr "Xem thêm <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Mảng\">Mảng</link>"
+msgid "13 : Light Magenta"
+msgstr "13 : Màu đỏ tươi nhạt"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3156023\n"
-"6\n"
+"03010304.xhp\n"
+"par_id3146970\n"
+"24\n"
"help.text"
-msgid "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
-msgstr "Không đưa ra tham số, thì tạo một mảng rỗng (giống như Dim A() mà tương đương với một dãy có chiều dài 0 trong Uno). Có phải đưa ra tham số thì tạo một chiều cho mỗi tham số."
+msgid "14 : Light Yellow"
+msgstr "14 : Màu vàng nhạt"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03010304.xhp\n"
+"par_id3150750\n"
+"25\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "15 : Bright White"
+msgstr "15 : Màu trắng sáng"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3159414\n"
-"8\n"
+"03010304.xhp\n"
+"par_id3146914\n"
+"26\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr "<emph>Danh_sách_đối_số :</emph> một danh sách chứa bất cứ số đối số nào định giới bằng dấu phẩy."
+msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
+msgstr "Hàm này được dùng chỉ để chuyển đổi sang các ứng dụng BASIC cũ dựa vào MS-DOS mà dùng các mã màu trên. Hàm này trả về một giá trị số nguyên dài ngụ ý màu cần dùng trong IDE $[officename]."
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3150358\n"
-"9\n"
+"03010304.xhp\n"
+"hd_id3148406\n"
+"27\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3154939\n"
-"10\n"
+"03010304.xhp\n"
+"par_id3149566\n"
+"33\n"
"help.text"
-msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
-msgstr "« DimArray( 2, 2, 4 ) » tương đương với « DIM a( 2, 2, 4 ) »"
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr "MsgBox stext,0,\"Color \" & iColor"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
+"03010305.xhp\n"
"tit\n"
"help.text"
-msgid "TypeName Function; VarType Function[Runtime]"
-msgstr "Hàm TypeName; Hàm VarType [Runtime]"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
-msgstr "<bookmark_value>hàm TypeName</bookmark_value><bookmark_value>hàm VarType</bookmark_value>"
+msgid "RGB Function [Runtime]"
+msgstr "Hàm RGB [Runtime]"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3143267\n"
+"03010305.xhp\n"
+"hd_id3150792\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"Hàm TypeName; Hàm VarType [Runtime]\">Hàm TypeName; Hàm VarType [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"Hàm RGB [Runtime]\">Hàm RGB [Runtime]</link>"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3159157\n"
+"03010305.xhp\n"
+"par_id3150447\n"
"2\n"
"help.text"
-msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
-msgstr "Trả về một chuỗi (TypeName) hay một giá trị thuộc số (VarType) mà chứa thông tin về một biến."
+msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
+msgstr "Trả về một <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"giá trị màu số nguyên dài\">giá trị màu số nguyên dài</link> chứa ba thành phần màu đỏ, màu lục và màu xanh."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3153825\n"
+"03010305.xhp\n"
+"hd_id3147229\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155341\n"
+"03010305.xhp\n"
+"par_id3155132\n"
"4\n"
"help.text"
-msgid "TypeName (Variable)VarType (Variable)"
-msgstr "TypeName (Biến)VarType (Biến)"
+msgid "RGB (Red, Green, Blue)"
+msgstr "RGB (Đỏ, Lục, Xanh)"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3145610\n"
+"03010305.xhp\n"
+"hd_id3156442\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148947\n"
+"03010305.xhp\n"
+"par_id3159153\n"
"6\n"
"help.text"
-msgid "String; Integer"
-msgstr "Chuỗi; Số nguyên"
+msgid "Long"
+msgstr "Dài"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3146795\n"
+"03010305.xhp\n"
+"hd_id3154013\n"
"7\n"
"help.text"
-msgid "Parameters:"
+msgid "Parameter:"
msgstr "Tham số :"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148664\n"
+"03010305.xhp\n"
+"par_id3152597\n"
"8\n"
"help.text"
-msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
-msgstr "<emph>Biến:</emph> biến của đó bạn muốn quyết định kiểu. Có thể sử dụng những giá trị theo đây:"
+msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
+msgstr "<emph>Red</emph>: bất cứ biểu thức số nguyên nào mà tương ứng với thành phần màu đỏ (0-255) của màu ghép."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145171\n"
+"03010305.xhp\n"
+"par_id3146974\n"
"9\n"
"help.text"
-msgid "key word"
-msgstr "từ khoá"
+msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgstr "<emph>Green</emph>: bất cứ biểu thức số nguyên nào mà tương ứng với thành phần màu lục (0-255) của màu ghép."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3156212\n"
+"03010305.xhp\n"
+"par_id3151113\n"
"10\n"
"help.text"
-msgid "VarType"
-msgstr "VarType"
+msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
+msgstr "<emph>Blue</emph>: bất cứ biểu thức số nguyên nào mà tương ứng với thành phần màu xanh (0-255) của màu ghép."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154684\n"
+"03010305.xhp\n"
+"hd_id3147435\n"
"11\n"
"help.text"
-msgid "Variable type"
-msgstr "Kiểu biến"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3151041\n"
-"12\n"
-"help.text"
-msgid "Boolean"
-msgstr "Boolean"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3153367\n"
-"13\n"
-"help.text"
-msgid "11"
-msgstr "11"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148645\n"
-"14\n"
-"help.text"
-msgid "Boolean variable"
-msgstr "Biến lôgic"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3153138\n"
+"03010305.xhp\n"
+"par_id3145647\n"
"15\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3153363\n"
+"03010305.xhp\n"
+"par_id3154491\n"
"16\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & red(lVar) & Chr(13)&_"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155411\n"
+"03010305.xhp\n"
+"par_id3149401\n"
"17\n"
"help.text"
-msgid "Date variable"
-msgstr "Biến ngày"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & green(lVar) & Chr(13)&_"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146975\n"
+"03010305.xhp\n"
+"par_id3150716\n"
"18\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3150486\n"
-"19\n"
+"03020000.xhp\n"
+"tit\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "File I/O Functions"
+msgstr "Hàm V/R Tập Tin"
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148616\n"
-"20\n"
+"03020000.xhp\n"
+"hd_id3156344\n"
+"1\n"
"help.text"
-msgid "Double floating point variable"
-msgstr "Biến chấm động đôi"
+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=\"Hàm V/R Tập tin\">Hàm V/R Tập tin</link>"
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148457\n"
-"21\n"
+"03020000.xhp\n"
+"par_id3153360\n"
+"2\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Use File I/O functions to create and manage user-defined (data) files."
+msgstr "Hãy dùng các hàm V/R tập tin để tạo và quản lý các tập tin (dữ liệu) tự xác định."
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145647\n"
-"22\n"
+"03020000.xhp\n"
+"par_id3150398\n"
+"3\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
+msgstr "Bạn có thể sử dụng các hàm này để hỗ trợ chức năng tạo các tập tin « tương đối », do đó bạn có thể lưu và nạp lại một số bản ghi nào đó bằng cách ghi rõ số thứ tự bản ghi. Các hàm V/R tập tin cũng giúp bạn quản lý các tập tin, bằng cách cung cấp thông tin như kích cỡ tập tin, thiết lập đường dẫn hiện thời và ngày tháng đã tạo một tập tin hoặc thư mục."
-#: 03103600.xhp
+#: 03020100.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154490\n"
-"23\n"
+"03020100.xhp\n"
+"tit\n"
"help.text"
-msgid "Integer variable"
-msgstr "Biến số nguyên"
+msgid "Opening and Closing Files"
+msgstr "Mở và Đóng Tập Tin"
-#: 03103600.xhp
+#: 03020100.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3149960\n"
-"24\n"
+"03020100.xhp\n"
+"hd_id3152924\n"
+"1\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+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=\"Mở và Đóng Tập tin\">Mở và Đóng Tập tin</link>"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154513\n"
-"25\n"
+"03020101.xhp\n"
+"tit\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "Close Statement [Runtime]"
+msgstr "Câu lệnh đóng [Runtime]"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3151318\n"
-"26\n"
+"03020101.xhp\n"
+"bm_id3157896\n"
"help.text"
-msgid "Long integer variable"
-msgstr "Biến số nguyên dài"
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr "<bookmark_value>Câu lệnh đóng</bookmark_value>"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146972\n"
-"27\n"
+"03020101.xhp\n"
+"hd_id3157896\n"
+"1\n"
"help.text"
-msgid "Object"
-msgstr "Đối tượng"
+msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Câu lệnh đóng [Runtime]\">Câu lệnh đóng [Runtime]</link>"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154482\n"
-"28\n"
+"03020101.xhp\n"
+"par_id3147573\n"
+"2\n"
"help.text"
-msgid "9"
-msgstr "9"
+msgid "Closes a specified file that was opened with the Open statement."
+msgstr "Đóng một tập tin cụ thể mà được mở bằng câu lệnh Open (Mở)."
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3150323\n"
-"29\n"
+"03020101.xhp\n"
+"hd_id3156344\n"
+"3\n"
"help.text"
-msgid "Object variable"
-msgstr "Biến đối tượng"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148405\n"
-"30\n"
+"03020101.xhp\n"
+"par_id3147265\n"
+"4\n"
"help.text"
-msgid "Single"
-msgstr "Đơn"
+msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
+msgstr "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3149020\n"
-"31\n"
+"03020101.xhp\n"
+"hd_id3153379\n"
+"5\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3147341\n"
-"32\n"
+"03020101.xhp\n"
+"par_id3150791\n"
+"6\n"
"help.text"
-msgid "Single floating-point variable"
-msgstr "Biến chấm động đơn"
+msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgstr "<emph>FileNumber:</emph> bất cứ biểu thức số nguyên nào mà ghi rõ số hiệu của kênh dữ liệu đã được mở bằng câu lệnh <emph>Open</emph> (Mở)."
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155901\n"
-"33\n"
+"03020101.xhp\n"
+"hd_id3153192\n"
+"7\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155960\n"
-"34\n"
+"03020101.xhp\n"
+"par_id3153727\n"
+"16\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146313\n"
-"35\n"
+"03020101.xhp\n"
+"par_id3147350\n"
+"17\n"
"help.text"
-msgid "String variable"
-msgstr "Biến chuỗi"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145149\n"
-"36\n"
+"03020102.xhp\n"
+"tit\n"
"help.text"
-msgid "Variant"
-msgstr "Biến thế"
+msgid "FreeFile Function[Runtime]"
+msgstr "Hàm FreeFile [Runtime]"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154021\n"
-"37\n"
+"03020102.xhp\n"
+"bm_id3150400\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "<bookmark_value>FreeFile function</bookmark_value>"
+msgstr "<bookmark_value>hàm FreeFile</bookmark_value>"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145789\n"
-"38\n"
+"03020102.xhp\n"
+"hd_id3150400\n"
+"1\n"
"help.text"
-msgid "Variant variable (can contain all types specified by the definition)"
-msgstr "Biến kiểu hay thay đổi (có thể chứa tất cả các kiểu được ghi rõ bởi lời xác định)"
+msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Hàm FreeFile [Runtime]\">Hàm FreeFile [Runtime]</link>"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148630\n"
-"39\n"
+"03020102.xhp\n"
+"par_id3154366\n"
+"2\n"
"help.text"
-msgid "Empty"
-msgstr "Rỗng"
+msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
+msgstr "Trả về số thứ tự tập tin sẵn sàng kế tiếp để mở một tập tin. Dùng hàm này để mở một tập tin dùng một số thứ tự tập tin chưa được dùng bởi một tập tin đang mở."
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3152584\n"
-"40\n"
+"03020102.xhp\n"
+"hd_id3150769\n"
+"3\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3151278\n"
-"41\n"
+"03020102.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
-msgid "Variable is not initialized"
-msgstr "Biến không được khởi tạo"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154576\n"
-"42\n"
+"03020102.xhp\n"
+"par_id3150440\n"
+"6\n"
"help.text"
-msgid "Null"
-msgstr "Rỗng"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3166424\n"
-"43\n"
+"03020102.xhp\n"
+"hd_id3148576\n"
+"7\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145131\n"
-"44\n"
+"03020102.xhp\n"
+"par_id3155854\n"
+"8\n"
"help.text"
-msgid "No valid data"
-msgstr "Không có dữ liệu hợp lệ"
+msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
+msgstr "Hàm này chỉ có thể được dùng ngay lập tức phía trước một câu lệnh « Open » (Mở). FreeFile trả về số thứ tự tập tin sẵn sàng kế tiếp, nhưng không phải dành riêng nó."
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3149338\n"
-"45\n"
+"03020102.xhp\n"
+"hd_id3159153\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03103600.xhp
-#, fuzzy
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148817\n"
-"58\n"
+"03020102.xhp\n"
+"par_id3155416\n"
+"18\n"
"help.text"
-msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
-msgstr "TypeName(lVar) & \" \" & VarType(lVar),0,\"Một số kiểu trong $[officename] Basic\""
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
+"03020102.xhp\n"
+"par_id3153416\n"
+"19\n"
+"help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
+
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
"tit\n"
"help.text"
-msgid "Hour Function [Runtime]"
-msgstr "Hàm Hour [Runtime]"
+msgid "Open Statement[Runtime]"
+msgstr "Câu lệnh Open [Runtime]"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"bm_id3156042\n"
+"03020103.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>Hour function</bookmark_value>"
-msgstr "<bookmark_value>Hàm Hour</bookmark_value>"
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Open (Mở)</bookmark_value>"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3156042\n"
+"03020103.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hàm Hour [Runtime]\">Hàm Hour [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Câu lệnh Open [Runtime]\">Câu lệnh Open [Runtime]</link>"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3149346\n"
+"03020103.xhp\n"
+"par_id3150769\n"
"2\n"
"help.text"
-msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
-msgstr "Trả về giờ (tiếng) từ một giá trị thời gian được tạo bởi hàm TimeSerial hay TimeValue."
+msgid "Opens a data channel."
+msgstr "Mở một kênh dữ liệu."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3147574\n"
+"03020103.xhp\n"
+"hd_id3147230\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3147264\n"
+"03020103.xhp\n"
+"par_id3154124\n"
"4\n"
"help.text"
-msgid "Hour (Number)"
-msgstr "Hour (Số)"
+msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+msgstr "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3145069\n"
+"03020103.xhp\n"
+"hd_id3156280\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3149670\n"
+"03020103.xhp\n"
+"par_id3155132\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
+msgstr "<emph>FileName:</emph> tên và đường dẫn của tập tin bạn muốn mở. Nếu bạn thử đọc một tập tin không tồn tại (Access=Read), một thông điệp lỗi sẽ xuất hiện. Nếu bạn thử ghi vào một tập tin không tồn tại (Access=Write), một tập tin mới được tạo."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3150359\n"
+"03020103.xhp\n"
+"par_id3149262\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
+msgstr "<emph>Mode:</emph> từ khoá mà ghi rõ chế độ tập tin. Giá trị hợp lệ: Append (phụ thêm vào tập tin dãy), Binary (nhị phân: dữ liệu có thể được truy cập theo byte dùng Get và Put), Input (nhập vào : mở một kênh để đọc), Output (xuất ra: mở một kênh dữ liệu để ghi) và Random (ngẫu nhiên: chỉnh sửa các tập tin tương đối)."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3154366\n"
+"03020103.xhp\n"
+"par_id3154014\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
-msgstr "<emph>Số:</emph> biểu thức số chứa giá trị thời gian kiểu dãy được dùng để trả về giá trị giờ."
+msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
+msgstr "<emph>IOMode:</emph> từ khoá mà xác định kiểu truy cập. Giá trị hợp lệ: Read (chỉ đọc), Write (chỉ ghi) và Read Write (cả hai)."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3154909\n"
+"03020103.xhp\n"
+"par_id3150011\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
-msgstr "Hàm này là mặt đối lập của hàm <emph>TimeSerial</emph>. Nó trả về một giá trị số nguyên mà đại diện giờ từ một giá trị thời gian được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue </emph>. Ví dụ, biểu thức"
+msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
+msgstr "<emph>Protected:</emph> từ khoá mà xác định trạng thái bảo mật của một tập tin đã mở. Giá trị hợp lệ: Shared (dùng chung: tập tin có thể được mở bằng ứng dụng khác), Lock Read (khoá đọc: tập tin được bảo vê chống đọc), Lock Write (khoá ghi: tập tin được bảo vệ chống ghi), và Lock Read Write (khoá đọc ghi: từ chối truy cập đến tập tin)."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3163798\n"
+"03020103.xhp\n"
+"par_id3153190\n"
"10\n"
"help.text"
-msgid "Print Hour(TimeSerial(12,30,41))"
-msgstr "In ra Hour(TimeSerial(12:30:41))"
+msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
+msgstr "<emph>FileNumber:</emph> bất cứ biễu thức số nguyên nào từ 0 đấn 511 để ngụ ý số hiệu của một kênh dữ liệu còn rảnh. Vì vậy bạn có thể gửi lệnh qua kênh dữ liệu đó để truy cập đến tập tin. Số thứ tự tập tin phải được xác định bởi hàm FreeFile đúng trước câu lệnh Open (Mở)."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3155132\n"
+"03020103.xhp\n"
+"par_id3151115\n"
"11\n"
"help.text"
-msgid "returns the value 12."
-msgstr "trả về giá trị 12."
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
+msgstr "<emph>DatasetLength:</emph> đối với các tập tin truy cập ngẫu nhiên, đặt chiều dài của các bản ghi."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3147348\n"
+"03020103.xhp\n"
+"par_id3153418\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
+msgstr "Bạn chỉ có khả năng sửa đổi nội dung của một tập tin được mở bằng câu lệnh Open (Mở). Nếu bạn thử mở một tập tin đã mở, một thông điệp lỗi sẽ xuất hiện."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3146985\n"
+"03020103.xhp\n"
+"hd_id3149123\n"
"13\n"
"help.text"
-msgid "Sub ExampleHour"
-msgstr "Sub ExampleHour"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3156441\n"
-"14\n"
+"03020103.xhp\n"
+"par_id3154705\n"
+"22\n"
"help.text"
-msgid "Print \"The current hour is \" & Hour( Now )"
-msgstr "In ra \"Giờ hiện thời là \" & Hour( Now )"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3153145\n"
-"15\n"
+"03020103.xhp\n"
+"par_id3146916\n"
+"23\n"
"help.text"
-msgid "End Sub"
-msgstr "End Sub"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumber, \"This is another line of text\""
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
+"03020104.xhp\n"
"tit\n"
"help.text"
-msgid "End Statement [Runtime]"
-msgstr "Câu lệnh End [Runtime]"
+msgid "Reset Statement [Runtime]"
+msgstr "Câu lệnh Reset [Runtime]"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"bm_id3150771\n"
+"03020104.xhp\n"
+"bm_id3154141\n"
"help.text"
-msgid "<bookmark_value>End statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh End</bookmark_value>"
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr "<bookmark_value>Câu lệnh Reset (đặt lại)</bookmark_value>"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3150771\n"
+"03020104.xhp\n"
+"hd_id3154141\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"Câu lệnh End [Runtime]\">Câu lệnh End [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Câu lệnh Reset [Runtime]</link>"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3153126\n"
+"03020104.xhp\n"
+"par_id3156423\n"
"2\n"
"help.text"
-msgid "Ends a procedure or block."
-msgstr "Kết thúc một thủ tục hay khối."
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr "Đóng tất cả các tập tin còn mở và ghi nội dung của tất cả các bộ đệm tập tin vào đĩa."
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
+"03020104.xhp\n"
+"hd_id3154124\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "End, End Function, End If, End Select, End Sub"
-msgstr "End, End Function, End If, End Select, End Sub"
-
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3149456\n"
+"03020104.xhp\n"
+"hd_id3161831\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Use the End statement as follows:"
-msgstr "Hãy sử dụng câu lệnh <emph>End</emph> như theo đây:"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3154366\n"
-"7\n"
+"03020104.xhp\n"
+"par_id3148455\n"
+"47\n"
"help.text"
-msgid "Statement"
-msgstr "Câu lệnh"
+msgid "Print #iNumber, \"This is a new line of text\""
+msgstr "Print #iNumber, \"This is a new line of text\""
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3151043\n"
-"8\n"
+"03020104.xhp\n"
+"par_id3163805\n"
+"62\n"
"help.text"
-msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
-msgstr "End: không cần thiết, nhưng vẫn còn có thể được nhập vào bất cứ nơi nào bên trong một thủ tục để kết thúc thực hiện chương trình."
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"All files will be closed\",0,\"Error\""
-#: 03090404.xhp
+#: 03020200.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3145171\n"
-"9\n"
+"03020200.xhp\n"
+"tit\n"
"help.text"
-msgid "End Function: Ends a <emph>Function</emph> statement."
-msgstr "End Function: Kết thúc một câu lệnh <emph>Function</emph>."
+msgid "File Input/Output Functions"
+msgstr "Hàm Vào/Ra Tập tin"
-#: 03090404.xhp
+#: 03020200.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3153192\n"
-"10\n"
+"03020200.xhp\n"
+"hd_id3150791\n"
+"1\n"
"help.text"
-msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
-msgstr "End If: Đánh dấu kết thúc của một khối <emph>If...Then...Else</emph>."
+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=\"Hàm Vào/Ra Tập tin\">Hàm Vào/Ra Tập tin</link>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3148451\n"
-"11\n"
+"03020201.xhp\n"
+"tit\n"
"help.text"
-msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
-msgstr "End Select: Đánh dấu kết thúc của một khối <emph>Select Case</emph>."
+msgid "Get Statement [Runtime]"
+msgstr "Câu lệnh Get [Runtime]"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3155131\n"
-"12\n"
+"03020201.xhp\n"
+"bm_id3154927\n"
"help.text"
-msgid "End Sub: Ends a <emph>Sub</emph> statement."
-msgstr "End Sub: Kết thúc một câu lệnh <emph>Sub</emph>."
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Get</bookmark_value>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3146120\n"
-"13\n"
+"03020201.xhp\n"
+"hd_id3154927\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Câu lệnh Get [Runtime]</link>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3152887\n"
-"19\n"
+"03020201.xhp\n"
+"par_id3145069\n"
+"2\n"
"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Đánh số từ 1 đến 5\""
+msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+msgstr "Đọc một bản ghi từ một tập tin tương đối, hoặc đọc một dãy byte từ một tập tin nhị phân, vào một biến."
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3148618\n"
-"21\n"
+"03020201.xhp\n"
+"par_id3154346\n"
+"3\n"
"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Đánh số từ 6 đến 8\""
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
+msgstr "Xem thêm: Câu lệnh <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3147436\n"
-"23\n"
+"03020201.xhp\n"
+"hd_id3150358\n"
+"4\n"
"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Lớn hơn 8\""
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3150418\n"
-"25\n"
+"03020201.xhp\n"
+"par_id3150792\n"
+"5\n"
"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"Phạm vi bên ngoài 1 đến 10\""
+msgid "Get [#] FileNumber As Integer, [Position], Variable"
+msgstr "Get [#] FileNumber As Integer, [Position], Variable"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"tit\n"
+"03020201.xhp\n"
+"hd_id3154138\n"
+"6\n"
"help.text"
-msgid "HasUnoInterfaces Function [Runtime]"
-msgstr "Hàm HasUnoInterfaces [Runtime]"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"bm_id3149987\n"
+"03020201.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
-msgstr "<bookmark_value>hàm HasUnoInterfaces</bookmark_value>"
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+msgstr "<emph>FileNumber:</emph> (Số hiệu tập tin) bất cứ biểu thức số nguyên nào mà xác định số hiệu tập tin."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3149987\n"
-"1\n"
+"03020201.xhp\n"
+"par_id3154684\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"Hàm HasUnoInterfaces [Runtime]\">Hàm HasUnoInterfaces [Runtime]</link>"
+msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
+msgstr "<emph>Position:</emph> (Vị trí) đối với các tập tin được mở ở chế độ Ngẫu nhiên, <emph>Position</emph> là số hiệu của bản ghi bạn muốn đoc."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3151262\n"
-"2\n"
+"03020201.xhp\n"
+"par_id3153768\n"
+"9\n"
"help.text"
-msgid "Tests if a Basic Uno object supports certain Uno interfaces."
-msgstr "Thử nếu một đối tượng Uni Basic hỗ trợ một số giao diện Uno nào đó không."
+msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
+msgstr "Đối với các tập tin được mở ở chế độ Nhị phân, <emph>Position</emph> là vị trí trong tập tin ở đó bắt đầu đọc."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3154232\n"
-"3\n"
+"03020201.xhp\n"
+"par_id3147319\n"
+"10\n"
"help.text"
-msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
-msgstr "Trả về Đúng nếu hỗ trợ <emph>tất cả</emph> các giao diện Uno đã ghi rõ, không thì Sai."
+msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
+msgstr "Nếu để trống <emph>Position</emph> (vị trí) thì vị trí con trỏ hoặc bản ghi hiện thời của tập tin sẽ được sử dụng."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3150040\n"
-"4\n"
+"03020201.xhp\n"
+"par_id3149484\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr "Variable: (Biến) tên của biến cần đọc. Ra khỏi biến đối tượng, bạn vẫn còn có thể sử dụng bất cứ kiểu biến nào."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3155555\n"
-"5\n"
+"03020201.xhp\n"
+"hd_id3153144\n"
+"12\n"
"help.text"
-msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
-msgstr "HasUnoInterfaces( oTest, Tên_giao_diện_Uno1 [, Tên_giao_diện_Uno2, ...])"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3153345\n"
-"6\n"
+"03020201.xhp\n"
+"par_id3155307\n"
+"15\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr "Dim vanBan As Variant REM Phải là Variant"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"7\n"
+"03020201.xhp\n"
+"par_id3149411\n"
+"21\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr "Seek #soNguyen,1 REM Vị trí bắt đầu"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3159157\n"
-"8\n"
+"03020201.xhp\n"
+"par_id3153158\n"
+"22\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3155419\n"
-"9\n"
+"03020201.xhp\n"
+"par_id3148457\n"
+"23\n"
"help.text"
-msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
-msgstr "<emph>oTest:</emph> đối tượng Uno Basic cần thử."
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #soNguyen,, \"Day la dong thu hai\""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3149236\n"
-"10\n"
+"03020201.xhp\n"
+"par_id3150715\n"
+"24\n"
"help.text"
-msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
-msgstr "<emph> Tên_giao_diện_Uno :</emph> danh sách các tên giao diện Uno."
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #soNguyen,, \"Day la dong thu ba\""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3147574\n"
-"11\n"
+"03020201.xhp\n"
+"par_id3155938\n"
+"33\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Put #iNumber,,\"This is a new text\""
+msgstr "Put #soNguyen,,\"Day la mot doan van moi\""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3149580\n"
-"12\n"
+"03020201.xhp\n"
+"par_id3146916\n"
+"36\n"
"help.text"
-msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-msgstr "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #soNguyen,20,\"Day la van ban trong ban ghi 20\""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
+"03020202.xhp\n"
"tit\n"
"help.text"
-msgid "Choose Function [Runtime]"
-msgstr "Hàm Choose [Runtime]"
+msgid "Input# Statement [Runtime]"
+msgstr "Câu lệnh Input# [Runtime]"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"bm_id3143271\n"
+"03020202.xhp\n"
+"bm_id3154908\n"
"help.text"
-msgid "<bookmark_value>Choose function</bookmark_value>"
-msgstr "<bookmark_value>hàm Choose</bookmark_value>"
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr "<bookmark_value>hàm Input</bookmark_value>"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3143271\n"
+"03020202.xhp\n"
+"hd_id3154908\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Hàm Choose [Runtime]\">Hàm Choose [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Câu lệnh Input# [Runtime]\"> Câu lệnh Input# [Runtime]</link>"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3149234\n"
+"03020202.xhp\n"
+"par_id3156424\n"
"2\n"
"help.text"
-msgid "Returns a selected value from a list of arguments."
-msgstr "Trả về một giá trị đã chọn từ một danh sách các đối số."
+msgid "Reads data from an open sequential file."
+msgstr "Đọc dữ liệu từ một tập tin dãy còn mở."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
+"03020202.xhp\n"
+"hd_id3125863\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3147560\n"
+"03020202.xhp\n"
+"par_id3150440\n"
"4\n"
"help.text"
-msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-msgstr "Choose (Chỉ_số, Vùng_chọn1[, Vùng_chọn2, ... [, Vùng_chọn_n]])"
+msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3154346\n"
+"03020202.xhp\n"
+"hd_id3146121\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3148664\n"
+"03020202.xhp\n"
+"par_id3145749\n"
"6\n"
"help.text"
-msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
-msgstr "<emph>Chỉ_số:</emph> một biểu thức thuộc số mà ghi rõ giá trị cần trả về."
+msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+msgstr "<emph>FileNumber:</emph> số thứ tự của tập tin mà chứa dữ liệu bạn muốn đọc. Tập tin phải được mở bằng câu lệnh « Open », dùng từ khoá INPUT (nhập liệu)."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3150791\n"
+"03020202.xhp\n"
+"par_id3150011\n"
"7\n"
"help.text"
-msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
-msgstr "<emph>Vùng_chọn1:</emph> bất cứ biểu thức nào chứa một của những sự chọn có thể."
+msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
+msgstr "<emph>var:</emph> một biến kiểu số hoặc chuỗi cho đó bạn gán các giá trị được đọc từ tập tin còn mở."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3151043\n"
+"03020202.xhp\n"
+"par_id3159153\n"
"8\n"
"help.text"
-msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
-msgstr "Hàm <emph>Choose</emph> (chọn) trả về một giá trị từ danh sách các biểu thức, dựa vào giá trị chỉ số. Chỉ số = 1 thì hàm trả về biểu thức thứ nhất trong danh sách. Chỉ số = 2 thì hàm trả về biểu thức thứ hai, v.v."
+msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
+msgstr "Câu lệnh <emph>Input#</emph> đọc các giá trị thuộc số hoặc các chuỗi từ một tập tin còn mở, và gán dữ liệu cho một hai nhiều biến. Một biến thuộc số được đọc đến khi gặp đầu tiên một ký tự xuống dòng (CR, Asc=13; LF, Asc=10), dấu cách hoặc dấu phẩy. Biến chuỗi được đọc đến khi gặp đầu tiên một ký tự xuống dòng (CR, Asc=13; LF, Asc=10) hoặc dấu phẩy."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3153192\n"
+"03020202.xhp\n"
+"par_id3146984\n"
"9\n"
"help.text"
-msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
-msgstr "Nếu giá trị chỉ số nhỏ hơn 1 hay lớn hơn số biểu thức được liệt kê, thì hàm trả về một giá trị Rỗng."
+msgid "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
+msgstr "Dữ liệu và các kiểu dữ liệu trong tập tin được mở phải xuất hiện theo cùng một thứ tự với các biến được gửi qua trong tham số « var ». Nếu bạn gán giá trị không thuộc số cho một biến thuộc số, « var » được gán một giá trị số không."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3156281\n"
+"03020202.xhp\n"
+"par_id3156442\n"
"10\n"
"help.text"
-msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
-msgstr "Mẫu thí dụ theo đây sử dụng hàm <emph>Choose</emph> để chọn một chuỗi từ vài chuỗi tạo thành một trình đơn:"
+msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
+msgstr "Các bản ghi phân tách bằng dấu phẩy không thể được gán cho một biến chuỗi. Dấu nháy kép « \" » trong tập tin cũng bị bỏ qua. Nếu bạn muốn đọc các ký tự như vậy trong tập tin, hãy dùng câu lệnh <emph>Line Input#</emph> để đọc từng dòng tập tin văn bản thuần (tập tin chỉ chứa các ký tự có thể in ra)."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3150439\n"
+"03020202.xhp\n"
+"par_id3147349\n"
"11\n"
"help.text"
+msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
+msgstr "Nếu tới kết thúc tập tin trong khi đọc một phần tử dữ liệu thì gặp lỗi nên hủy bỏ tiến trình."
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"hd_id3152578\n"
+"12\n"
+"help.text"
msgid "Example:"
-msgstr "Ví dụ :"
+msgstr "Thí dụ :"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3156443\n"
-"20\n"
+"03020202.xhp\n"
+"par_id4144765\n"
"help.text"
-msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
-msgstr "ChooseMenu = Choose(Chỉ số, \"Định dạng nhanh\", \"Định dạng lưu\", \"Định dạng hệ thống\")"
+msgid "' Write data ( which we will read later with Input ) to file"
+msgstr ""
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id4144766\n"
+"help.text"
+msgid "' Read data file using Input"
+msgstr ""
#: 03020203.xhp
msgctxt ""
@@ -5026,4002 +9806,3906 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
+"03020204.xhp\n"
"tit\n"
"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr "Toán tử Xor [Runtime]"
+msgid "Put Statement [Runtime]"
+msgstr "Câu lệnh Put [Runtime]"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"bm_id3156024\n"
+"03020204.xhp\n"
+"bm_id3150360\n"
"help.text"
-msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử Xor (lôgic)</bookmark_value>"
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Put</bookmark_value>"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3156024\n"
+"03020204.xhp\n"
+"hd_id3150360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Toán tử Xor [Runtime]\">Toán tử Xor [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Câu lệnh Put [Runtime]\">Câu lệnh Put [Runtime]</link>"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3159414\n"
+"03020204.xhp\n"
+"par_id3154909\n"
"2\n"
"help.text"
-msgid "Performs a logical Exclusive-Or combination of two expressions."
-msgstr "Thực hiện một phép tổ hợp kiểu Xor (Hoặc loại) về hai biểu thức."
+msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
+msgstr "Ghi một bản ghi vào một tập tin tương đối, hoặc ghi một dãy byte vào một tập tin nhị phân."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
+"03020204.xhp\n"
+"par_id3156281\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
+msgstr "Xem thêm: câu lệnh <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link>"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150400\n"
+"03020204.xhp\n"
+"hd_id3125863\n"
"4\n"
"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr "Kết quả = Biểu_thức1 Xor Biểu_thức2"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
+"03020204.xhp\n"
+"par_id3155132\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Put [#] FileNumber As Integer, [position], Variable"
+msgstr "Put [#] FileNumber As Integer, [position], Variable"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150448\n"
+"03020204.xhp\n"
+"hd_id3153190\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
-msgstr "<emph>Kết quả :</emph> bất cứ biến thuộc số nào mà chứa kết quả tổ hợp."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3125864\n"
+"03020204.xhp\n"
+"par_id3146120\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số cần kết hợp."
+msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
+msgstr "<emph>FileNumber:</emph> bất cứ biểu thức số nguyên nào mà xác định tập tin vào đó bạn muốn ghi."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150439\n"
+"03020204.xhp\n"
+"par_id3155411\n"
"8\n"
"help.text"
-msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
-msgstr "Một phép hội Xor (Hoặc loại) hai biểu thức Bun thì trả về giá trị Đúng chỉ nếu hai biểu thức khác với nhau."
+msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
+msgstr "<emph>Position:</emph> Vị trí đối với các tập tin tương đối (tập tin truy cập ngẫu nhiên), số thứ tự của bản ghi bạn muốn ghi."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153770\n"
+"03020204.xhp\n"
+"par_id3148576\n"
"9\n"
"help.text"
-msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
-msgstr "Một phép hội Xor (Hoặc loại) theo vị trí bit thì trả về một bit nếu bit tương ứng được đặt trong chỉ một của hai biểu thức."
+msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
+msgstr "Đối với tập tin nhị phân (truy cập nhị phân), vị trí của byte trong tập tin ở đó bạn muốn bắt đầu ghi."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
+"03020204.xhp\n"
+"par_id3153729\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+msgstr "<emph>Variable:</emph> (Biến) tên của biến bạn muốn ghi vào tập tin."
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3156442\n"
-"15\n"
+"03020204.xhp\n"
+"par_id3146974\n"
+"11\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vC ' returns 0"
-msgstr "vOut = vA > vB Xor vB > vC REM trả về 0"
+msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
+msgstr "Ghi chú về tập tin tương đối: nếu nội dung của biến này không tương ứng với chiều dài của bản ghi được ghi rõ trong mệnh đề <emph>Len</emph> của câu lệnh <emph>Open</emph>, khoảng cách giữa kết thúc của bản ghi mới ghi và bản ghi kế tiếp được đệm bằng dữ liệu đã tồn tại từ tập tin vào đó bạn đang ghi."
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153191\n"
+"03020204.xhp\n"
+"par_id3155855\n"
+"12\n"
+"help.text"
+msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
+msgstr "Ghi chú về tập tin nhị phân: nội dung của các biến được ghi vào vị trí đã định, và con trỏ tập tin được chèn vào đúng phía sau byte cuối cùng. Không có khoảng cách nào giữa hai bản ghi."
+
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"hd_id3154491\n"
+"13\n"
+"help.text"
+msgid "Example:"
+msgstr "Thí dụ :"
+
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3154729\n"
"16\n"
"help.text"
-msgid "vOut = vB > vA Xor vB > vC ' returns -1"
-msgstr "vOut = vB > vA Xor vB > vC REM trả về -1"
+msgid "Dim sText As Variant ' Must be a variant type"
+msgstr "Dim sText As Variant REM Must be a variant type"
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153144\n"
-"17\n"
+"03020204.xhp\n"
+"par_id3156278\n"
+"22\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vD ' returns -1"
-msgstr "vOut = vA > vB Xor vB > vD REM trả về -1"
+msgid "Seek #iNumber,1 ' Position To start writing"
+msgstr "Seek #iNumber,1 REM Position to start writing"
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3154944\n"
-"18\n"
+"03020204.xhp\n"
+"par_id3153711\n"
+"23\n"
"help.text"
-msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
-msgstr "vOut = (vB > vD Xor vB > vA) REM trả về 0"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3148455\n"
-"19\n"
+"03020204.xhp\n"
+"par_id3155446\n"
+"24\n"
"help.text"
-msgid "vOut = vB Xor vA ' returns 2"
-msgstr "vOut = vB Xor vA REM trả về 2"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #soNguyen,, \"Day la dong thu hai\""
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"tit\n"
+"03020204.xhp\n"
+"par_id3154255\n"
+"25\n"
"help.text"
-msgid "Absolute Values"
-msgstr "Giá trị Tuyệt đối"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #soNguyen,, \"Day la dong thu ba\""
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"hd_id3146958\n"
-"1\n"
+"03020204.xhp\n"
+"par_id3150940\n"
+"34\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Giá trị Tuyệt đối\">Giá trị Tuyệt đối</link>"
+msgid "Put #iNumber,,\"This is new text\""
+msgstr "Put #iNumber,,\"This is new text\""
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"par_id3150771\n"
-"2\n"
+"03020204.xhp\n"
+"par_id3159102\n"
+"37\n"
"help.text"
-msgid "This function returns absolute values."
-msgstr "Hàm này trả về giá trị tuyệt đối."
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #soNguyen,20,\"Day la van ban trong ban ghi 20\""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
+"03020205.xhp\n"
"tit\n"
"help.text"
-msgid "DefLng Statement [Runtime]"
-msgstr "Câu lệnh DefLng [Runtime]"
+msgid "Write Statement [Runtime]"
+msgstr "Câu lệnh Write [Runtime]"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"bm_id3148538\n"
+"03020205.xhp\n"
+"bm_id3147229\n"
"help.text"
-msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefLng</bookmark_value>"
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Write</bookmark_value>"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3148538\n"
+"03020205.xhp\n"
+"hd_id3147229\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"Câu lệnh DefLng [Runtime]\">Câu lệnh DefLng [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Câu lệnh Write [Runtime]\">Câu lệnh Write [Runtime]</link>"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3149514\n"
+"03020205.xhp\n"
+"par_id3154685\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+msgid "Writes data to a sequential file."
+msgstr "Ghi dữ liệu vào một tập tin dãy."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
+"03020205.xhp\n"
+"hd_id3150449\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145609\n"
+"03020205.xhp\n"
+"par_id3145785\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "Write [#FileName], [Expressionlist]"
+msgstr "Write [#FileName], [Expressionlist]"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3154760\n"
+"03020205.xhp\n"
+"hd_id3151116\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145069\n"
+"03020205.xhp\n"
+"par_id3153728\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin mà được đặt bởi câu lệnh Mở (Open) cho tập tin tương ứng."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3150791\n"
+"03020205.xhp\n"
+"par_id3146120\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
+msgstr "<emph>Expressionlist:</emph> danh sách định giới bằng dấu phẩy, chứa các biến hoặc biểu thức mà bạn muốn nhập vào một tập tin."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3148798\n"
+"03020205.xhp\n"
+"par_id3150010\n"
"8\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
+msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+msgstr "Bỏ sót biểu thức thì câu lệnh <emph>Write</emph> (Ghi) phụ thêm một dòng rỗng vào tập tin."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3154686\n"
+"03020205.xhp\n"
+"par_id3163713\n"
"9\n"
"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr "<emph>DefLng:</emph> dài"
+msgid "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
+msgstr "Để thêm một danh sách biểu thức vào một tập tin mới hoặc tập tin đã tồn tại, tập tin phải được mở ở chế độ <emph>Kết xuất</emph> hoặc <emph>Phụ thêm</emph>."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
+"03020205.xhp\n"
+"par_id3147428\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
+msgstr "Các chuỗi bạn ghi sẽ tự động được kẹp giữa hai dấu nháy kép và phân cách bằng dấu phẩy. Bạn không cần nhập các ký tự phân cách vào danh sách biểu thức."
-#: 03101600.xhp
-#, fuzzy
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3154124\n"
-"12\n"
+"03020205.xhp\n"
+"par_id1002838\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tế cho các kiểu biến:"
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr "Mỗi câu lệnh <emph>Write</emph> (Ghi) thì xuất một ký hiệu kết thúc dòng dưới dạng mục nhập cuối cùng."
-#: 03101600.xhp
-#, fuzzy
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145273\n"
-"22\n"
+"03020205.xhp\n"
+"par_id6618854\n"
"help.text"
-msgid "lCount=123456789 ' lCount is an implicit long integer variable"
-msgstr "lCount=123456789 REM lCount là một biến số nguyên dài ngầm"
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr "Con số có dấu tách thập phân được chuyển đổi tùy theo thiết lập miền địa phương."
-#: 01020100.xhp
+#: 03020205.xhp
msgctxt ""
-"01020100.xhp\n"
+"03020205.xhp\n"
+"hd_id3151073\n"
+"11\n"
+"help.text"
+msgid "Example:"
+msgstr "Thí dụ :"
+
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
"tit\n"
"help.text"
-msgid "Using Variables"
-msgstr "Sử dụng Biến"
+msgid "Eof Function [Runtime]"
+msgstr "Hàm Eof [Runtime]"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"bm_id3149346\n"
+"03020301.xhp\n"
+"bm_id3154598\n"
"help.text"
-msgid "<bookmark_value>names of variables</bookmark_value><bookmark_value>variables; using</bookmark_value><bookmark_value>types of variables</bookmark_value><bookmark_value>declaring variables</bookmark_value><bookmark_value>values;of variables</bookmark_value><bookmark_value>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
-msgstr "<bookmark_value>tên của biến</bookmark_value><bookmark_value>biến; sử dụng</bookmark_value><bookmark_value>kiểu của biến</bookmark_value><bookmark_value>khai báo biến</bookmark_value><bookmark_value>giá trị;của biến</bookmark_value><bookmark_value>hằng số</bookmark_value><bookmark_value>mảng;tuyên bố</bookmark_value><bookmark_value>xác định;hằng số</bookmark_value>"
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr "<bookmark_value>hàm Eof</bookmark_value>"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149346\n"
+"03020301.xhp\n"
+"hd_id3154598\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
-msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Sử dụng biến\">Sử dụng biến</link>"
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Hàm Eof [Runtime]\">Hàm Eof [Runtime]</link>"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154346\n"
+"03020301.xhp\n"
+"par_id3147182\n"
+"2\n"
+"help.text"
+msgid "Determines if the file pointer has reached the end of a file."
+msgstr "Xác định nếu con trỏ đã tới kết thúc tập tin chưa."
+
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"hd_id3149119\n"
"3\n"
"help.text"
-msgid "The following describes the basic use of variables in $[officename] Basic."
-msgstr "Phần theo đây diễn tả cách sử dụng cơ bản các biến trong mã Basic của $[officename]."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153361\n"
+"03020301.xhp\n"
+"par_id3147399\n"
"4\n"
"help.text"
-msgid "Naming Conventions for Variable Identifiers"
-msgstr "Quy ước đặt tên cho bộ nhận diện biến"
+msgid "Eof (intexpression As Integer)"
+msgstr "Eof (intexpression As Integer)"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3148797\n"
+"03020301.xhp\n"
+"hd_id3153539\n"
"5\n"
"help.text"
-msgid "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
-msgstr "Một tên biến có chiều dài tối đa là 255 ký tự. Ký tự đầu của tên biến phải là chữ cái (A-Z, a-z). Tên biến cũng có thể chứa chữ số, nhưng không cho phép chứa dấu chấm câu hoặc ký tự đặc biệt, trừ dấu gạch dưới (_). Trong mã Basic của $[officename], các bộ nhận diện biến không phân biệt chữ hoa/thường. Tên biến có thể chứa dấu cách, nhưng chỉ được chứa trong dấu ngoặc vuông."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3156422\n"
+"03020301.xhp\n"
+"par_id3156027\n"
"6\n"
"help.text"
-msgid "Examples for variable identifiers:"
-msgstr "Mẫu thí dụ về các bộ nhận diện khác nhau :"
+msgid "Bool"
+msgstr "Bool"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3156441\n"
-"126\n"
+"03020301.xhp\n"
+"hd_id3152924\n"
+"7\n"
"help.text"
-msgid "Correct"
-msgstr "Đúng"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149664\n"
-"127\n"
+"03020301.xhp\n"
+"par_id3153990\n"
+"8\n"
"help.text"
-msgid "Correct"
-msgstr "Đúng"
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgstr "<emph>Intexpression:</emph> bất cứ biểu thức số nguyên nào mà ước lượng thành số thứ tự của một tập tin còn mở."
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3146119\n"
-"128\n"
+"03020301.xhp\n"
+"par_id3153527\n"
+"9\n"
"help.text"
-msgid "Correct"
-msgstr "Đúng"
+msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
+msgstr "Hãy dùng hàm EOF để tránh lỗi khi bạn thử đặt dữ liệu nhập đi qua kết thúc của tập tin. Khi bạn dùng câu lệnh Input (nhập liệu) hoặc Get (lấy) để đọc từ một tập tin, con trỏ tập tin được tiên tiến theo số byte được đọc. Khi tới kết thúc tập tin, hàm EOF trả về giá trị « True » (Đúng): -1."
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153876\n"
-"11\n"
+"03020301.xhp\n"
+"hd_id3154046\n"
+"10\n"
"help.text"
-msgid "Not valid, variable with space must be enclosed in square brackets"
-msgstr "Không hợp lệ, biến chứa dấu cách phải nằm giữa dấu ngoặc vuông"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154510\n"
-"15\n"
+"03020301.xhp\n"
+"par_id3153360\n"
+"19\n"
"help.text"
-msgid "Correct"
-msgstr "Đúng"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150330\n"
-"129\n"
+"03020301.xhp\n"
+"par_id3148797\n"
+"20\n"
"help.text"
-msgid "Not valid, special characters are not allowed"
-msgstr "Không hợp lệ, không cho phép ký tự đặc biệt"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154254\n"
-"130\n"
+"03020302.xhp\n"
+"tit\n"
"help.text"
-msgid "Not valid, variable may not begin with a number"
-msgstr "Không hợp lệ, biến không thể bắt đầu với con số"
+msgid "Loc Function [Runtime]"
+msgstr "Câu lệnh Loc [Runtime]"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149256\n"
-"131\n"
+"03020302.xhp\n"
+"bm_id3148663\n"
"help.text"
-msgid "Not valid, punctuation marks are not allowed"
-msgstr "Không hợp lệ, không cho phép dấu chấm câu"
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr "<bookmark_value>hàm Loc</bookmark_value>"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3146317\n"
-"17\n"
+"03020302.xhp\n"
+"hd_id3148663\n"
+"1\n"
"help.text"
-msgid "Declaring Variables"
-msgstr "Khai báo biến"
+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=\"Hàm Loc [Runtime]\">Hàm Loc [Runtime]</link>"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150299\n"
-"18\n"
+"03020302.xhp\n"
+"par_id3154138\n"
+"2\n"
"help.text"
-msgid "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word."
-msgstr "Trong mã Basic của $[officename], bạn không cần phải khai báo biến một cách dứt khoát. Có thể khai báo một biến bằng câu lệnh <emph>Dim</emph>. Cũng có thể khai báo nhiều biến đồng thời, bằng định giới các biến bằng dấu phẩy. Để xác định kiểu biến, dùng hoặc một dấu khai báo kiểu phía sau tên, hoặc từ khoá thích hợp."
+msgid "Returns the current position in an open file."
+msgstr "Trả về vị trí hiện tại trong một tập tin còn mở."
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154118\n"
-"140\n"
+"03020302.xhp\n"
+"hd_id3156422\n"
+"3\n"
"help.text"
-msgid "Examples for variable declarations:"
-msgstr "Mẫu thí dụ cho lời khai báo biến:"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150982\n"
-"132\n"
+"03020302.xhp\n"
+"par_id3150768\n"
+"4\n"
"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Khai báo biến « a » làm Chuỗi"
+msgid "Loc(FileNumber)"
+msgstr "Loc(FileNumber)"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150343\n"
-"133\n"
+"03020302.xhp\n"
+"hd_id3150440\n"
+"5\n"
"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Khai báo biến « a » làm Chuỗi"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155507\n"
-"22\n"
+"03020302.xhp\n"
+"par_id3152578\n"
+"6\n"
"help.text"
-msgid "Declares one variable as a String and one as an Integer"
-msgstr "Khai báo một biến dạng Chuỗi, và một biến khác dạng Số nguyên"
+msgid "Long"
+msgstr "Dài"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_idN10859\n"
+"03020302.xhp\n"
+"hd_id3152462\n"
+"7\n"
"help.text"
-msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
-msgstr "Khai báo c là một biến lôgic có thể là Đúng hoặc Sai"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150519\n"
-"23\n"
+"03020302.xhp\n"
+"par_id3153363\n"
+"8\n"
"help.text"
-msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
-msgstr "Rất quan trọng khi khai báo biến là mỗi lần bạn dùng ký tự khai báo kiểu, thậm chí nếu nó đã được dùng trong lời khai báo thay cho từ khoá. Vì vậy các câu lệnh sau không phải hợp lệ:"
+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> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin được đặt bởi câu lệnh Open cho tập tin tương ứng."
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154527\n"
-"134\n"
+"03020302.xhp\n"
+"par_id3154320\n"
+"9\n"
"help.text"
-msgid "Declares \"a\" as a String"
-msgstr "Khai báo « a » làm Chuỗi."
+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 "Nếu hàm « Loc » được dùng cho một tập tin truy cập ngẫu nhiên còn mở, nó trả về số thứ tự của bản ghi được đọc/ghi cuối cùng,"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153064\n"
-"135\n"
+"03020302.xhp\n"
+"par_id3151115\n"
+"10\n"
"help.text"
-msgid "Type-declaration missing: \"a$=\""
-msgstr "Lời khai báo kiểu còn thiếu: \"a$=\""
+msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
+msgstr "Đối với một tập tin dãy, hàm « Loc » trả về vị trí trong một tập tin được chia cho 128. Đối với tập tin nhị phân, trả về vị trí của byte được đọc/ghi cuối cùng."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3144770\n"
-"26\n"
+"03020303.xhp\n"
+"tit\n"
"help.text"
-msgid "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
-msgstr "Một khi bạn khai báo một biến có kiểu cụ thể, không thể khai báo cùng biến dưới cùng tên với kiểu khác."
+msgid "Lof Function [Runtime]"
+msgstr "Hàm Lof [Runtime]"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149331\n"
-"27\n"
+"03020303.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "Forcing Variable Declarations"
-msgstr "Ép buộc khai báo biến"
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr "<bookmark_value>hàm Lof</bookmark_value>"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149443\n"
-"28\n"
+"03020303.xhp\n"
+"hd_id3156024\n"
+"1\n"
"help.text"
-msgid "To force declaration of variables, use the following command:"
-msgstr "Để ép buộc khai báo biến, dùng câu lệnh này:"
+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=\"Hàm Lof [Runtime]\">Hàm Lof [Runtime]</link>"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155072\n"
-"30\n"
+"03020303.xhp\n"
+"par_id3146794\n"
+"2\n"
"help.text"
-msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
-msgstr "Câu lệnh <emph>Tùy chọn dứt khoát</emph> phải là dòng đầu của mô-đun, phía trước trình con đầu tiên. Nói chung, chỉ mảng cần được khai báo dứt khoát. Các biến khác được khai báo tùy theo ký tự khai báo kiểu, không có thì có kiểu mặc định <emph>Đơn</emph>."
+msgid "Returns the size of an open file in bytes."
+msgstr "Trả về kích cỡ theo byte của một tập tin còn mở."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3154614\n"
-"34\n"
+"03020303.xhp\n"
+"hd_id3153380\n"
+"3\n"
"help.text"
-msgid "Variable Types"
-msgstr "Kiểu biến"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155383\n"
-"35\n"
+"03020303.xhp\n"
+"par_id3150359\n"
+"4\n"
"help.text"
-msgid "$[officename] Basic supports four variable classes:"
-msgstr "Mã Basic của $[officename] hỗ trợ bốn hạng biến:"
+msgid "Lof (FileNumber)"
+msgstr "Lof (FileNumber)"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153972\n"
-"36\n"
+"03020303.xhp\n"
+"hd_id3154141\n"
+"5\n"
"help.text"
-msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers."
-msgstr "Biến kiểu <emph>Số</emph> có thể chứa giá trị thuộc số. Một số biến nào đó được dùng để cất giữ số lớn hoặc số nhỏ, còn biến khác dùng cho số kiểu điểm động hoặc số kiểu phân số."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3159226\n"
-"37\n"
+"03020303.xhp\n"
+"par_id3147230\n"
+"6\n"
"help.text"
-msgid "<emph>String</emph> variables contain character strings."
-msgstr "Biến kiểu <emph>Chuỗi</emph> thì chứa chuỗi các ký tự."
+msgid "Long"
+msgstr "Dài"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3145217\n"
-"38\n"
+"03020303.xhp\n"
+"hd_id3156281\n"
+"7\n"
"help.text"
-msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
-msgstr "Biến <emph>Lôgic</emph> thì chứa giá trị hoặc ĐÚNG hoặc SAI."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154762\n"
-"39\n"
+"03020303.xhp\n"
+"par_id3150869\n"
+"8\n"
"help.text"
-msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
-msgstr "Các biến kiểu <emph>Đối tượng</emph> có thể chứa các đối tượng có kiểu khác nhau, v.d. các bảng và tài liệu bên trong tài liệu khác."
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
+msgstr "<emph>FileNumber:</emph> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin được ghi rõ trong câu lệnh Open."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153805\n"
-"40\n"
+"03020303.xhp\n"
+"par_id3147349\n"
+"9\n"
"help.text"
-msgid "Integer Variables"
-msgstr "Biến số nguyên"
+msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
+msgstr "Để giành được chiều dài của một tập tin chưa mở, dùng hàm <emph>FileLen</emph>."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3146966\n"
-"41\n"
+"03020303.xhp\n"
+"hd_id3155415\n"
+"10\n"
"help.text"
-msgid "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
-msgstr "Biến số nguyên nằm trong phạm vi (-32768 ... 32767). Nếu bạn gán một giá trị chấm động cho một biến số nguyên, các chữ số thập phân được làm tròn thành số nguyên gần nhất. Biến số nguyên được tính nhanh trong các thủ tục thì thích hợp với biến đếm trong vòng lặp. Một biến số nguyên chỉ chiếm 2 byte bộ nhớ. Ký tự khai báo kiểu là « % »."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3147546\n"
-"45\n"
+"03020303.xhp\n"
+"par_id3154730\n"
+"13\n"
"help.text"
-msgid "Long Integer Variables"
-msgstr "Biến số nguyên dài"
+msgid "Dim sText As Variant REM must be a Variant"
+msgstr "Dim sText As Variant REM must be a Variant"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3151193\n"
-"46\n"
+"03020303.xhp\n"
+"par_id3156276\n"
+"19\n"
"help.text"
-msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
-msgstr "Biến số nguyên dài nằm trong phạm vi (-2147483648 ... 2147483647). Nếu bạn gán một giá trị điểm động cho một biến số nguyên dài, các chữ số thập phân được làm tròn thành số nguyên gần nhất. Biến số nguyên dài được tính nhanh trong thủ tục thì thích hợp với biến đếm trong vòng lặp với giá trị lớn. Một biến số nguyên dài chiếm 4 byte bộ nhớ. Ký tự khai báo kiểu là « & »."
+msgid "Seek #iNumber,1 REM Position at start"
+msgstr "Seek #iNumber,1 REM Position at start"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id7596972\n"
+"03020303.xhp\n"
+"par_id3148405\n"
+"20\n"
"help.text"
-msgid "Decimal Variables"
-msgstr "Biến thập phân"
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id2649311\n"
+"03020303.xhp\n"
+"par_id3154756\n"
+"21\n"
"help.text"
-msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
-msgstr "BIến thập phân chấp nhận cả con số dương, con số âm và số không (độ chính xác đến 29 chữ số)."
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #soNguyen,, \"Day la dong thu hai\""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id7617114\n"
+"03020303.xhp\n"
+"par_id3145643\n"
+"22\n"
"help.text"
-msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
-msgstr "Bạn có thể sử dụng dấu cộng (+) hoặc dấu trừ (-) làm tiền tố cho số thập phân (có dấu cách hay không, cũng được)."
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #soNguyen,, \"Day la dong thu ba\""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id1593676\n"
+"03020303.xhp\n"
+"par_id3150299\n"
+"31\n"
"help.text"
-msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
-msgstr "Gán một số thập phân cho một biến số nguyên thì %PRODUCTNAME Basic làm tròn giá trị."
+msgid "Put #iNumber,,\"This is a new line of text\""
+msgstr "Put #iNumber,,\"This is a new line of text\""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3147500\n"
-"50\n"
+"03020303.xhp\n"
+"par_id3166425\n"
+"34\n"
"help.text"
-msgid "Single Variables"
-msgstr "Biến đơn"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #soNguyen,20,\"Day la van ban trong ban ghi 20\""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153070\n"
-"51\n"
+"03020304.xhp\n"
+"tit\n"
"help.text"
-msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
-msgstr "Biến đơn có thể chứa giá trị dương hoặc giá trị âm trong phậm vi (3.402823 x 10E38 ... 1.401298 x 10E-45). Biến đơn là biến điểm động, trong đó độ chính xác thập phân giảm tỷ lệ với kích cỡ tăng của phần không thập phân của số. Biến đơn thích hợp với phép tính có độ chính xác vừa. Phép tính như vậy mất nhiều thời gian hơn phép tính với biến số nguyên, còn ít thời gian hơn phép tính với biến đôi. Một biến đơn chiếm 4 byte bộ nhớ. Ký tự khai báo kiểu là « ! »."
+msgid "Seek Function [Runtime]"
+msgstr "Hàm Seek [Runtime]"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3155753\n"
-"54\n"
+"03020304.xhp\n"
+"bm_id3154367\n"
"help.text"
-msgid "Double Variables"
-msgstr "Biến đôi"
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr "<bookmark_value>hàm Seek</bookmark_value>"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150953\n"
-"55\n"
+"03020304.xhp\n"
+"hd_id3154367\n"
+"1\n"
"help.text"
-msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
-msgstr "Biến đôi có thể chứa giá trị hoặc dương hoặc âm, trong phạm vi (1.79769313486232 x 10E308 ... 4.94065645841247 x 10E-324). Biến đôi là biến điểm động, trong đó độ chính xác thập phân giảm tỷ lệ với kích cỡ tăng của phần không thập phân của số. Biến đôi thích hợp với phép tính chính xác. Phép tính như vậy mất nhiều thời gian hơn phép tính với biến đơn. Một biến đôi chiếm 8 byte bộ nhớ. Ký tự khai báo kiểu là « # »."
+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=\"Hàm Seek [Runtime]\">Hàm Seek [Runtime]</link>"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3155747\n"
-"95\n"
+"03020304.xhp\n"
+"par_id3156280\n"
+"2\n"
"help.text"
-msgid "Currency Variables"
-msgstr "Biến tiền tệ"
+msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
+msgstr "Trả về vị trí ở đó cần đọc/ghi kế tiếp trong một tập tin được mở bởi câu lệnh Open."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153337\n"
-"96\n"
+"03020304.xhp\n"
+"par_id3153194\n"
+"3\n"
"help.text"
-msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
-msgstr "Biến kiểu tiền tệ được cất giữ nội bộ dưới dạng con số 64-bit (8 Byte) và được hiển thị dưới dạng con số thập phân cố định với 15 lần số nguyên và 4 chữ số thập phân. Các giá trị nằm trong phạm vi (-922337203685477.5808 ... +922337203685477.5807). Biến tiền tệ được dùng để tính giá trị tiền tệ với độ chính xác cao. Ký tự khai báo kiểu là « @ »."
+msgid "For random access files, the Seek function returns the number of the next record to be read."
+msgstr "Đối với các tập tin truy cập ngẫu nhiên, hàm Seek trả về số thứ tự của bản ghi kế tiếp cần đọc."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3148742\n"
-"58\n"
+"03020304.xhp\n"
+"par_id3161831\n"
+"4\n"
"help.text"
-msgid "String Variables"
-msgstr "Biến chuỗi"
+msgid "For all other files, the function returns the byte position at which the next operation is to occur."
+msgstr "Đối với các tập tin khác, hàm trả về vị trí byte ở đó thao tác kế tiếp sẽ xảy ra."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3151393\n"
-"59\n"
+"03020304.xhp\n"
+"par_id3155854\n"
+"5\n"
"help.text"
-msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
-msgstr "Biến chuỗi có thể chứa chuỗi ký tự chứa đến 65 535 ký tứ. Mỗi ký tự được cất giữ dưới dạng giá trị Unicode tương ứng. Biến chuỗi thích hợp với chức năng xử lý từ bên trong chương trình, và để cất giữ tạm thời bất cứ ký tự không thể in nào có chiều dài đến 64 KB. Bộ nhớ cần thiết để cất giữ biến chuỗi sẽ phụ thuộc vào số ký tự nó chứa. Ký tự khai báo kiểu là « $ »."
+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 "Xem thêm: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3150534\n"
-"62\n"
+"03020304.xhp\n"
+"hd_id3152460\n"
+"6\n"
"help.text"
-msgid "Boolean Variables"
-msgstr "Biến lôgic"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3145632\n"
-"63\n"
+"03020304.xhp\n"
+"par_id3145365\n"
+"7\n"
"help.text"
-msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
-msgstr "Biến lôgic chứa chỉ một của hai giá trị: ĐÚNG hoặc SAI. Số không được tính là SAI, mà các giá trị khác được tính là ĐÚNG."
+msgid "Seek (FileNumber)"
+msgstr "Seek (FileNumber)"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149722\n"
-"65\n"
+"03020304.xhp\n"
+"hd_id3148575\n"
+"8\n"
"help.text"
-msgid "Date Variables"
-msgstr "Biến ngày"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3159116\n"
-"66\n"
+"03020304.xhp\n"
+"par_id3159156\n"
+"9\n"
"help.text"
-msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
-msgstr "Biến kiểu ngày tháng thì chỉ chứa được các giá trị ngày tháng và thời gian được cất giữ theo một định dạng nội bộ. Giá trị được gán cho biến Ngày <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> hoặc <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> được tự động chuyển đổi sang định dạng nội bộ. Các biến ngày tháng được chuyển đổi sang số bình thường dùng hàm <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Ngày\"><emph>Ngày</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Tháng\"><emph>Tháng</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Năm\"><emph>Năm</emph></link> hoặc <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Giờ\"><emph>Giờ</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Phút\"><emph>Phút</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Giây\"><emph>Giây</emph></link>. Định dạng nội bộ hiệu lực chức năng so sánh các giá trị ngày/giờ bằng cách tính hiệu của hai con số. Những biến này chỉ có thể được khai báo bằng từ khoá <emph>Date</emph> (Ngày)."
+msgid "Long"
+msgstr "Dài"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3148732\n"
-"68\n"
+"03020304.xhp\n"
+"hd_id3149665\n"
+"10\n"
"help.text"
-msgid "Initial Variable Values"
-msgstr "Giá trị biến đầu tiên"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154549\n"
-"69\n"
+"03020304.xhp\n"
+"par_id3148645\n"
+"11\n"
"help.text"
-msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
-msgstr "Một khi biến được khai báo thì nó được tự động đặt thành giá trị « Null » (vô giá trị). Ghi chú về những quy ước này:"
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgstr "<emph>FileNumber:</emph> số thứ tự kênh dữ liệu được dùng trong câu lệnh Open."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3143222\n"
-"70\n"
+"03020305.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
-msgstr "Biến <emph>Thuộc Số</emph> được khai báo thì tự động nhận giá trị « 0 » ."
+msgid "Seek Statement [Runtime]"
+msgstr "Câu lệnh Seek [Runtime]"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150693\n"
-"71\n"
+"03020305.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
-msgstr "Các <emph>biến ngày tháng</emph> được gán nội bộ giá trị 0; tương đương với chuyển đổi giá trị sang 0 dùng hàm <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Ngày\"><emph>Ngày</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Tháng\"><emph>Tháng</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Năm\"><emph>Năm</emph></link> hoặc <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Giờ\"><emph>Giờ</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Phút\"><emph>Phút</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Giây\"><emph>Giây</emph></link>."
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Seek</bookmark_value>"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154807\n"
-"72\n"
+"03020305.xhp\n"
+"hd_id3159413\n"
+"1\n"
"help.text"
-msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
-msgstr "Một <emph>Biến kiểu chuỗi</emph> được khai báo thì cũng được gán một chuỗi rỗng ( )."
+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=\"Câu lệnh Seek [Runtime]\">Câu lệnh Seek [Runtime]</link>"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153936\n"
-"83\n"
+"03020305.xhp\n"
+"par_id3153381\n"
+"2\n"
"help.text"
-msgid "Arrays"
-msgstr "Mảng"
+msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+msgstr "Đặt vị trí kế tiếp để đọc/viết trong một tập tin được mở bằng câu lệnh Open."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3148736\n"
-"84\n"
+"03020305.xhp\n"
+"par_id2100589\n"
"help.text"
-msgid "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
-msgstr "$[officename] Basic nhận ra các mảng kiểu một chiều hoặc đa chiều, được xác định theo một kiểu biến đã ghi rõ. Mảng là thích hợp với công việc chỉnh sửa danh sách và bảng trong chương trình. Cũng có thể đặt địa chỉ của mỗi thành phần riêng của một mảng, dùng một chỉ mục thuộc số."
+msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgstr "Đối với các tập tin truy cập ngẫu nhiên, câu lệnh Seek đặt số thứ tự của bản ghi kế tiếp sẽ được truy cập."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149546\n"
-"85\n"
+"03020305.xhp\n"
+"par_id5444807\n"
"help.text"
-msgid "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
-msgstr "Mảng <emph>phải</emph> được khai báo dùng câu lệnh <emph>Dim</emph>. Có vài cách khác nhau để khai báo phạm vi chỉ mục của một mảng:"
+msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+msgstr "Đối với các tập tin khác, câu lệnh tìm nơi Seek đặt vị trí byte ở đó thao tác sẽ xảy ra."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154567\n"
-"136\n"
+"03020305.xhp\n"
+"par_id3156280\n"
+"5\n"
"help.text"
-msgid "21 elements numbered from 0 to 20"
-msgstr "21 phần tử được đánh số từ 0 đến 20"
+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 "Xem thêm: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154397\n"
-"137\n"
+"03020305.xhp\n"
+"hd_id3145785\n"
+"6\n"
"help.text"
-msgid "30 elements (a matrix of 6 x 5 elements)"
-msgstr "30 phần tử (một ma trận có 6×5 phần tử)"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149690\n"
-"138\n"
+"03020305.xhp\n"
+"par_id3145273\n"
+"7\n"
"help.text"
-msgid "21 elements numbered from 5 to 25"
-msgstr "21 phần tử đánh số từ 5 đến 25"
+msgid "Seek[#FileNumber], Position (As Long)"
+msgstr "Seek[#FileNumber], Position (As Long)"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153113\n"
-"89\n"
+"03020305.xhp\n"
+"hd_id3154321\n"
+"8\n"
"help.text"
-msgid "21 elements (including 0), numbered from -15 to 5"
-msgstr "21 phần tử (gồm có 0), đánh số từ -15 đến 5"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153005\n"
-"90\n"
+"03020305.xhp\n"
+"par_id3153952\n"
+"9\n"
"help.text"
-msgid "The index range can include positive as well as negative numbers."
-msgstr "Phạm vi chỉ mục có thể chứa con số dương, cũng như số âm."
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgstr "<emph>FileNumber:</emph> số thứ tự kênh dữ liệu được dùng trong câu lệnh Open (Mở)."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3154507\n"
-"91\n"
+"03020305.xhp\n"
+"par_id3145366\n"
+"10\n"
"help.text"
-msgid "Constants"
-msgstr "Hằng số"
+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> Vị trí ở đó sẽ tiếp tục đọc/ghi. Vị trí nằm trong khoảng từ 1 đến 2.147.483.647. Tùy theo kiểu tập tin, vị trí ngụ ý số thứ tự của bản ghi (tập tin ở chế độ ngẫu nhiên) hoặc vị trí byte (tập tin ở chế độ Nhị phân, Xuất, Phụ thêm hoặc Nhập liệu). Byte thứ nhất trong một tập tin là vị trí 1, byte thứ hai là vị trí 2, v.v."
-#: 01020100.xhp
+#: 03020400.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3156357\n"
-"92\n"
+"03020400.xhp\n"
+"tit\n"
"help.text"
-msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
-msgstr "Hằng số có giá trị cố định. Chỉ xác định mỗi hằng số một lần trong chưng trình, không thể xác định lại sau :"
+msgid "Managing Files"
+msgstr "Quản lý Tập tin"
-#: 03101700.xhp
+#: 03020400.xhp
msgctxt ""
-"03101700.xhp\n"
+"03020400.xhp\n"
+"hd_id3145136\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Quản lý Tập tin\">Quản lý Tập tin</link>"
+
+#: 03020400.xhp
+msgctxt ""
+"03020400.xhp\n"
+"par_id3147264\n"
+"2\n"
+"help.text"
+msgid "The functions and statements for managing files are described here."
+msgstr "Ở đây thì diễn tả các hàm và câu lệnh để quản lý tập tin."
+
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
"tit\n"
"help.text"
-msgid "DefObj Statement [Runtime]"
-msgstr "Câu lệnh DefObj [Runtime]"
+msgid "ChDir Statement [Runtime]"
+msgstr "Câu lệnh ChDir [Runtime]"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"bm_id3149811\n"
+"03020401.xhp\n"
+"bm_id3150178\n"
"help.text"
-msgid "<bookmark_value>DefObj statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefObj</bookmark_value>"
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr "<bookmark_value>Câu lệnh ChDir</bookmark_value>"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3149811\n"
+"03020401.xhp\n"
+"hd_id3150178\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"Câu lệnh DefObj [Runtime]\">Câu lệnh DefObj [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"Câu lệnh ChDir [Runtime]\">Câu lệnh ChDir [Runtime]</link>"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3147573\n"
+"03020401.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+msgid "Changes the current directory or drive."
+msgstr "Thay đổi thư mục hoặc ổ đĩa hiện thời."
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3150504\n"
+"03020401.xhp\n"
+"par_id9783013\n"
+"help.text"
+msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
+msgstr "Câu lệnh lúc chạy này không hoạt động như được diễn tả trong tài liệu. Xem <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">vấn đề này</link> để tìm thêm thông tin."
+
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"hd_id3154347\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3147530\n"
+"03020401.xhp\n"
+"par_id3153897\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "ChDir Text As String"
+msgstr "ChDir Text As String"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3153896\n"
+"03020401.xhp\n"
+"hd_id3148664\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3148552\n"
+"03020401.xhp\n"
+"par_id3150543\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ đường dẫn thư mục hoặc ổ đĩa."
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3150358\n"
+"03020401.xhp\n"
+"par_id3152598\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
+msgstr "Chỉ muốn thay đổi ổ đĩa hiện thời thì nhập chữ riêng của ổ đĩa, sau đó một dấu hai chấm (v.d. « C: »)."
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3148798\n"
+"03020401.xhp\n"
+"hd_id3151116\n"
"8\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
-"9\n"
-"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr "<emph>DefObj:</emph> đối tượng"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tố cho các kiểu biến:"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3156424\n"
-"13\n"
-"help.text"
-msgid "DefBool b"
-msgstr "DefBool b"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3159254\n"
-"14\n"
-"help.text"
-msgid "DefDate t"
-msgstr "DefDate t"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150440\n"
-"15\n"
-"help.text"
-msgid "DefDbL d"
-msgstr "DefDbL d"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3161832\n"
-"16\n"
-"help.text"
-msgid "DefInt i"
-msgstr "DefInt i"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3145365\n"
-"17\n"
-"help.text"
-msgid "DefLng l"
-msgstr "DefLng l"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3149481\n"
-"18\n"
-"help.text"
-msgid "DefObj o"
-msgstr "DefObj o"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3152886\n"
-"19\n"
-"help.text"
-msgid "DefVar v"
-msgstr "DefVar v"
-
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
+"03020402.xhp\n"
"tit\n"
"help.text"
-msgid "Let Statement [Runtime]"
-msgstr "Câu lệnh Let [Runtime]"
+msgid "ChDrive Statement [Runtime]"
+msgstr "Câu lệnh ChDrive [Runtime]"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"bm_id3147242\n"
+"03020402.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>Let statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Let</bookmark_value>"
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh ChDrive</bookmark_value>"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3147242\n"
+"03020402.xhp\n"
+"hd_id3145068\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Câu lệnh Let [Runtime]\">Câu lệnh Let [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Câu lệnh ChDrive [Runtime]\">Câu lệnh ChDrive [Runtime]</link>"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3149233\n"
+"03020402.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "Assigns a value to a variable."
-msgstr "Gán một giá trị cho một biến."
+msgid "Changes the current drive."
+msgstr "Chuyển đổi ổ đĩa đang dùng."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
+"03020402.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3154285\n"
+"03020402.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "[Let] VarName=Expression"
-msgstr "[Let] Tên_biến=Biểu_thức"
+msgid "ChDrive Text As String"
+msgstr "ChDrive Text As String"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3148944\n"
+"03020402.xhp\n"
+"hd_id3156423\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3147560\n"
+"03020402.xhp\n"
+"par_id3145172\n"
"6\n"
"help.text"
-msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
-msgstr "<emph>Tên_biến:</emph> biến cho đó bạn muốn gán một giá trị. Giá trị và kiểu biến phải tương thích với nhau."
+msgid "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> bất cứ biểu thức văn bản nào mà chứa chữ hiệu ổ đĩa của ổ đĩa mới. Bạn cũng có thể dùng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Kiểu ghi URL\">Kiểu ghi URL</link>."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3148451\n"
+"03020402.xhp\n"
+"par_id3145785\n"
"7\n"
"help.text"
-msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
-msgstr "Cũng với phần lớn phương ngôn BASIC, từ khoá <emph>Let</emph> vẫn còn tùy chọn."
+msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
+msgstr "Ổ đĩa phải được gán một chữ hoa. Dưới Windows, chữ được gán cho ổ đĩa bị hạn chế bởi thiết lập trong LASTDRV. Nếu đối số ổ đĩa là một chuỗi đa ký tự, chỉ chữ thứ nhất là thích hợp. Thử truy cập đến một ổ đĩa không tồn tại thì gặp một lỗi mà bạn có thể đáp ứng dùng câu lệnh OnError."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
+"03020402.xhp\n"
+"hd_id3153188\n"
"8\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03103100.xhp
-#, fuzzy
-msgctxt ""
-"03103100.xhp\n"
-"par_id3152939\n"
-"12\n"
-"help.text"
-msgid "MsgBox Len(sText) ' returns 9"
-msgstr "MsgBox Len(sText) REM trả về 9"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr "Hàm V/R Màn hình"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"hd_id3156280\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Hàm V/R Màn hình\">Hàm V/R Màn hình</link>"
-
-#: 03010000.xhp
+#: 03020402.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3153770\n"
-"2\n"
+"03020402.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
-msgstr "Phần này diễn tả các Hàm Lúc Chạy được dùng để gọi hộp thoại để nhập/xuất dữ liệu của người dùng."
+msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
+msgstr "ChDrive \"D\" REM Only possible if a drive 'D' exists."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
+"03020403.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoService Function [Runtime]"
-msgstr "Hàm CreateUnoService [Runtime]"
+msgid "CurDir Function [Runtime]"
+msgstr "Hàm CurDir [Runtime]"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"bm_id3150682\n"
+"03020403.xhp\n"
+"bm_id3153126\n"
"help.text"
-msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
-msgstr "<bookmark_value>hàm CreateUnoService</bookmark_value>"
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh CurDir</bookmark_value>"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3150682\n"
+"03020403.xhp\n"
+"hd_id3153126\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"Hàm CreateUnoService [Runtime]\">Hàm CreateUnoService [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020403.xhp\">Hàm CurDir [Runtime]</link>"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3152924\n"
+"03020403.xhp\n"
+"par_id3156343\n"
"2\n"
"help.text"
-msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr "Khởi tạo một dịch vụ Uno với bộ quản lý dịch vụ tiến trình (ProcessServiceManager)."
+msgid "Returns a variant string that represents the current path of the specified drive."
+msgstr "Trả về một chuỗi biến thể mà đại diện đường dẫn hiện thời của ổ đĩa đã ghi rõ."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
+"03020403.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3153346\n"
+"03020403.xhp\n"
+"par_id3153381\n"
"4\n"
"help.text"
-msgid "oService = CreateUnoService( Uno service name )"
-msgstr "oService = CreateUnoService( Uno service name )"
+msgid "CurDir [(Text As String)]"
+msgstr "CurDir [(Text As String)]"
-#: 03131600.xhp
-#, fuzzy
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN1060F\n"
+"03020403.xhp\n"
+"hd_id3154366\n"
+"5\n"
"help.text"
-msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
-msgstr "Để tìm thấy danh sách các dịch vụ sẵn sàng, hãy thâm địa chỉ: http://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3151111\n"
-"5\n"
+"03020403.xhp\n"
+"par_id3156281\n"
+"6\n"
"help.text"
-msgid "Examples:"
-msgstr "Thí dụ :"
+msgid "String"
+msgstr "Chuỗi"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3154046\n"
-"6\n"
+"03020403.xhp\n"
+"hd_id3156423\n"
+"7\n"
"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"bm_id8334604\n"
+"03020403.xhp\n"
+"par_id3153193\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>filepicker;API service</bookmark_value>"
-msgstr "<bookmark_value>filepicker;dịch vụ API</bookmark_value>"
+msgid "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ một ổ đĩa đã tồn tại (v.d. « C » đại diện phân vùng thứ nhất của đĩa cứng thứ nhất)."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN10625\n"
+"03020403.xhp\n"
+"par_id3155133\n"
+"9\n"
"help.text"
-msgid "The following code uses a service to open a file open dialog:"
-msgstr "Mã theo đây sử dụng một dịch vụ để mở một hộp thoại kiểu mở tập tin:"
+msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
+msgstr "Chưa ghi rõ ổ đĩa hoặc ổ đĩa là chuỗi chiều dài số không thì hàm CurDir trả về đường dẫn đến ổ đĩa hiện thời. $[officename] Basic trả về lỗi nếu mô tả ổ đĩa có cú pháp sai, ổ đĩa không tồn tại, hoặc chữ hiệu ổ đĩa xảy ra phía sau chữ được xác định bằng câu lệnh Lastdrive trong tập tin cấu hình CONFIG.SYS."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN1062B\n"
+"03020403.xhp\n"
+"par_id3150010\n"
+"10\n"
"help.text"
-msgid "fName = FileOpenDialog (\"Please select a file\")"
-msgstr "fName = FileOpenDialog (\"Hãy chọn một tập tin\")"
+msgid "This function is not case-sensitive."
+msgstr "Hàm này không phân biệt chữ hoa/thường."
-#: 03131600.xhp
-#, fuzzy
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN10630\n"
+"03020403.xhp\n"
+"hd_id3155411\n"
+"11\n"
"help.text"
-msgid "Print \"file chosen: \"+fName"
-msgstr "print \"tập tin đã chọn: \"+fName"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
+"03020404.xhp\n"
"tit\n"
"help.text"
-msgid "Month Function [Runtime]"
-msgstr "Hàm Month [Runtime]"
+msgid "Dir Function [Runtime]"
+msgstr "Hàm Dir [Runtime]"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"bm_id3153127\n"
+"03020404.xhp\n"
+"bm_id3154347\n"
"help.text"
-msgid "<bookmark_value>Month function</bookmark_value>"
-msgstr "<bookmark_value>hàm Month</bookmark_value>"
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr "<bookmark_value>hàm Dir</bookmark_value>"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3153127\n"
+"03020404.xhp\n"
+"hd_id3154347\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Hàm Month [Runtime]\">Hàm Month [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Hàm Dir [Runtime]\">Hàm Dir [Runtime]</link>"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3148550\n"
+"03020404.xhp\n"
+"par_id3153381\n"
"2\n"
"help.text"
-msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
-msgstr "Trả về tháng của năm từ một ngày dãy được tạo ra bởi hàm DateSerial hoặc DateValue."
+msgid "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
+msgstr "Trả về tên của một tập tin, một thư mục, hoặc tất cả các tập tin và thư mục đều nằm trên một đĩa hoặc trong một thư mục mà tương ứng với đường dẫn tìm kiếm đã ghi rõ."
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
+"03020404.xhp\n"
+"hd_id3154365\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3150398\n"
+"03020404.xhp\n"
+"par_id3156282\n"
"4\n"
"help.text"
-msgid "Month (Number)"
-msgstr "Tháng (Số)"
+msgid "Dir [(Text As String) [, Attrib As Integer]]"
+msgstr "Dir [(Text As String) [, Attrib As Integer]]"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3154366\n"
+"03020404.xhp\n"
+"hd_id3156424\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
+"03020404.xhp\n"
+"par_id3153193\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "String"
+msgstr "Chuỗi"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
+"03020404.xhp\n"
+"hd_id3153770\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3156423\n"
+"03020404.xhp\n"
+"par_id3161831\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
-msgstr "<emph>Số:</emph> biểu thức thuộc số mà chứa số ngày dãy được dùng để xác định tháng của năm."
+msgid "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ đường dẫn, thư mục hoặc tập tin để tìm kiếm. Đối số này chỉ có thể được ghi rõ lần đầu tiên bạn gọi hàm « Dir ». Bạn cũng có thể nhập đường dẫn theo <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3153770\n"
+"03020404.xhp\n"
+"par_id3146974\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
-msgstr "Hàm này là mặt đối lập của hàm <emph>DateSerial</emph>. Nó trả về tháng của năm mà tương ứng với ngày dãy được tạo ra bằng hàm <emph>DateSerial</emph> hoặc <emph>DateValue</emph>. Thí dụ, biểu thức"
+msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
+msgstr "<emph>Attrib:</emph> bất cứ biểu thức số nguyên nào mà ghi rõ các thuộc tính tập tin theo vị trí bit. Hàm <emph>Dir</emph> chỉ trả về các tập tin hoặc thư mục mà tương ứng với các thuộc tính đã ghi rõ. Bạn cũng có thể kết hợp vài thuộc tính khác nhau, bằng cách thêm những giá trị thuộc tính:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3145366\n"
+"03020404.xhp\n"
+"par_id3149666\n"
"11\n"
"help.text"
-msgid "returns the value 12."
-msgstr "trả về giá trị 12."
+msgid "0 : Normal files."
+msgstr "0 : Các tập tin bình thường."
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3146923\n"
-"12\n"
+"03020404.xhp\n"
+"par_id3147427\n"
+"15\n"
+"help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr "16 : Chỉ trả về tên của thư mục."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3153952\n"
+"16\n"
+"help.text"
+msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
+msgstr "Hãy dùng thuộc tính này để kiểm tra nếu một tập tin hoặc thư mục có tồn tại không, hoặc để xác định tất cả các tập tin và thư mục trong một thư mục cụ thể."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3159156\n"
+"17\n"
+"help.text"
+msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
+msgstr "Để kiểm tra nếu một tập tin nào đó có phải tồn tại không, nhập tên và đường dẫn đầy đủ của tập tin đó. Không tồn tại thì hàm « Dir » sẽ trả về một chuỗi rỗng « »."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3154012\n"
+"18\n"
+"help.text"
+msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
+msgstr "Để tạo ra một danh sách các tập tin đã có trong một thư mục cụ thể, tiếp tục như sau : lần đầu tiên bạn gọi hàm « Dir », ghi rõ đường dẫn tìm kiếm hoàn toàn cho các tập tin đó (v.d. « D:\\Files\\*.sxw »). Nếu đường dẫn là đúng và chức năng tìm kiếm có phải tìm tập tin, hàm « Dir » trả về tên của tập tin thứ nhất mà tương ứng với đường dẫn tìm kiếm. Để trả về thêm tập tin mà tương ứng với đường dẫn, gọi hàm « Dir » lần nữa, nhưng không có đối số."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3147348\n"
+"19\n"
+"help.text"
+msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
+msgstr "Để trả về chỉ thư mục, dùng tham số thuộc tính. Cũng vậy nếu bạn muốn xác định tên của một khối tin (v.d. một phân vùng trên đĩa cứng)."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"hd_id3154942\n"
+"20\n"
"help.text"
msgid "Example:"
-msgstr "Ví dụ :"
+msgstr "Thí dụ :"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3149664\n"
-"14\n"
+"03020404.xhp\n"
+"par_id3148455\n"
+"22\n"
"help.text"
-msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
-msgstr "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgid "' Displays all files and directories"
+msgstr "REM Hiển thị tất cả các tập tin và thư mục"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
+"03020404.xhp\n"
+"par_id3153416\n"
+"27\n"
+"help.text"
+msgid "sDir=\"Directories:\""
+msgstr "sDir=\"Directories:\""
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3154253\n"
+"34\n"
+"help.text"
+msgid "' Get the directories"
+msgstr "REM get the directories"
+
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
"tit\n"
"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr "Câu lệnh GoSub...Return [Runtime]"
+msgid "FileAttr-Function [Runtime]"
+msgstr "H àm FileAttr [Runtime]"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"bm_id3147242\n"
+"03020405.xhp\n"
+"bm_id3153380\n"
"help.text"
-msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh GoSub...Return</bookmark_value>"
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr "<bookmark_value>hàm FileAttr</bookmark_value>"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3147242\n"
+"03020405.xhp\n"
+"hd_id3153380\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"Câu lệnh GoSub...Return [Runtime]\">Câu lệnh GoSub...Return [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"Hàm FileAttr [Runtime]\">Hàm FileAttr [Runtime]</link>"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145316\n"
+"03020405.xhp\n"
+"par_id3154366\n"
"2\n"
"help.text"
-msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
-msgstr "Gọi một chương trình con được ngụ ý bởi một nhãn từ một chương trình con hay hàm khác. Những câu lệnh theo sau nhãn đó được thực hiện đến khi tới câu lệnh <emph>Return</emph> kế tiếp. Sau đó thì chương trình tiếp tục bằng cách chạy câu lệnh theo sau câu lệnh <emph>GoSub</emph>."
+msgid "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
+msgstr "Trả về chế độ truy cập hoặc số truy cập tập tin của một tập tin đã được mở bằng câu lệnh Open. Số truy cập tập tin cũng phụ thuộc vào hệ điều hành (OSH: bộ quản lý hệ điều hành)."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
+"03020405.xhp\n"
+"par_id3153364\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+msgstr "Hệ điều hành của bạn có kiểu 32-bit thì không thể sử dụng hàm FileAttr để xác định số truy cập tập tin."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145069\n"
+"03020405.xhp\n"
+"par_id3163713\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "xem Tham số"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3147265\n"
+"03020405.xhp\n"
+"hd_id3151116\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3148664\n"
+"03020405.xhp\n"
+"par_id3154012\n"
"6\n"
"help.text"
-msgid "Sub/Function"
-msgstr "Con/Hàm"
+msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150400\n"
+"03020405.xhp\n"
+"hd_id3147349\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090301.xhp
-#, fuzzy
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
+"03020405.xhp\n"
+"par_id3146974\n"
"8\n"
"help.text"
-msgid "Label"
-msgstr "Nhã n"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150869\n"
+"03020405.xhp\n"
+"hd_id3153728\n"
"9\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154909\n"
+"03020405.xhp\n"
+"par_id3151074\n"
"10\n"
"help.text"
-msgid "GoSub Label"
-msgstr "Nhãn GoSub"
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+msgstr "<emph>FileNumber:</emph> số hiệu của tập tin được câu lệnh Open mở."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3153969\n"
+"03020405.xhp\n"
+"par_id3144766\n"
"11\n"
"help.text"
-msgid "Exit Sub/Function"
-msgstr "Exit Sub/Function"
+msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
+msgstr "<emph>Thuộc tính:</emph> biểu thức số nguyên mà ngụ ý kiểu thông tin tập tin bạn muốn đặt hàm trả về. Có thể dùng những giá trị này:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154685\n"
+"03020405.xhp\n"
+"par_id3147396\n"
"12\n"
"help.text"
-msgid "Label:"
-msgstr "Nhãn:"
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr "1: Hàm FileAttr ngụ ý chế độ truy cập của tập tin."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145786\n"
+"03020405.xhp\n"
+"par_id3149959\n"
"13\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgstr "2: Hàm FileAttr trả về số truy cập tập tin của hệ điều hành."
-#: 03090301.xhp
-#, fuzzy
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3159252\n"
+"03020405.xhp\n"
+"par_id3154018\n"
"14\n"
"help.text"
-msgid "Return"
-msgstr "Return"
+msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgstr "Ghi rõ một thuộc tính tham số có giá trị 1 thì trả về các giá trị này:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154321\n"
+"03020405.xhp\n"
+"par_id3149124\n"
"15\n"
"help.text"
-msgid "End Sub/Function"
-msgstr "End Sub/Function"
+msgid "1 - INPUT (file open for input)"
+msgstr "1 - NHẬP (tập tin mở để nhập vào)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3147318\n"
+"03020405.xhp\n"
+"par_id3156275\n"
"16\n"
"help.text"
-msgid "The <emph>GoSub</emph> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
-msgstr "Câu lệnh <emph>GoSub</emph> gọi một chương trình con cục bộ được ngụ ý bởi một nhãn từ bên trong một chương trình con hay hàm khác. Tên của nhãn phải kết thúc với một dấu hai chấm « : »."
+msgid "2 - OUTPUT (file open for output)"
+msgstr "2 - XUẤT (tập tin mở để xuất ra)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3153190\n"
+"03020405.xhp\n"
+"par_id3155066\n"
"17\n"
"help.text"
-msgid "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
-msgstr "Nếu chương trình gặp một câu lệnh <emph>Return</emph> không có <emph>GoSub</emph> đi trước, $[officename] Basic sẽ trả về một thông điệp lỗi. Hãy dùng <emph>Exit Sub</emph> hay <emph>Exit Function</emph> để đảm bảo chương trình thoát khỏi một chương trình con hay hàm trước khi tới câu lệnh <emph>Return</emph> kế tiếp."
+msgid "4 - RANDOM (file open for random access)"
+msgstr "4 - NGẪU NHIÊN (tập tin mở để truy cập ngẫu nhiên)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145799\n"
-"19\n"
+"03020405.xhp\n"
+"par_id3148406\n"
+"18\n"
"help.text"
-msgid "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
-msgstr "Mẫu ví dụ theo đây minh hoạ sử dụng hai câu lệnh <emph>GoSub</emph> và <emph>Return</emph>. Bằng cách thực hiện một phần chương trình hai lần, chương trình tính căn bậc hai của hai số được người dùng nhập."
+msgid "8 - APPEND (file open for appending)"
+msgstr "8 - PHỤ THÊM (tập tin mở để phụ thêm)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
-"20\n"
+"03020405.xhp\n"
+"par_id3154757\n"
+"19\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "32 - BINARY (file open in binary mode)."
+msgstr "32 - NHỊ PHÂN (tập tin mở ở chế độ nhị phân)."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3146970\n"
-"25\n"
+"03020405.xhp\n"
+"hd_id3147339\n"
+"20\n"
"help.text"
-msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
-msgstr "iInputa = Int(InputBox$ \"Gõ số thứ nhất: \",\"NumberInput\"))"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150329\n"
-"26\n"
+"03020405.xhp\n"
+"par_id3155607\n"
+"29\n"
"help.text"
-msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
-msgstr "iInputb = Int(InputBox$ \"Gõ số thứ hai: \",\"NumberInput\"))"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154756\n"
-"29\n"
+"03020405.xhp\n"
+"par_id3150361\n"
+"30\n"
"help.text"
-msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
-msgstr "Print \"Căn bậc hai của\";iInputa;\" là\";iInputc"
+msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3147340\n"
-"32\n"
+"03020405.xhp\n"
+"par_id3149817\n"
+"31\n"
"help.text"
-msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
-msgstr "Print \"Căn bậc hai của\";iInputb;\" là\";iInputc"
+msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
+"03020406.xhp\n"
"tit\n"
"help.text"
-msgid "Stop Statement [Runtime]"
-msgstr "Câu lệnh Stop [Runtime]"
+msgid "FileCopy Statement [Runtime]"
+msgstr "Câu lệnh FileCopy [Runtime]"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"bm_id3153311\n"
+"03020406.xhp\n"
+"bm_id3154840\n"
"help.text"
-msgid "<bookmark_value>Stop statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Stop</bookmark_value>"
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh FileCopy</bookmark_value>"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3153311\n"
+"03020406.xhp\n"
+"hd_id3154840\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Câu lệnh Stop [Runtime]\">Câu lệnh Stop [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Câu lệnh FileCopy [Runtime]\">Câu lệnh FileCopy [Runtime]</link>"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"par_id3154142\n"
+"03020406.xhp\n"
+"par_id3149497\n"
"2\n"
"help.text"
-msgid "Stops the execution of the Basic program."
-msgstr "Dừng thực hiện chương trình Basic."
+msgid "Copies a file."
+msgstr "Sao chép một tập tin."
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
+"03020406.xhp\n"
+"hd_id3147443\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"par_id3156023\n"
+"03020406.xhp\n"
+"par_id3146957\n"
"4\n"
"help.text"
-msgid "Stop"
-msgstr "Stop"
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr "FileCopy TextFrom As String, TextTo As String"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
+"03020406.xhp\n"
+"hd_id3153825\n"
"5\n"
"help.text"
+msgid "Parameters:"
+msgstr "Tham số :"
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3155390\n"
+"6\n"
+"help.text"
+msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>TextFrom:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ tên của tập tin bạn muốn sao chép. Biểu thức này có thể chứa (tùy chọn) thông tin về đường dẫn và ổ đĩa. Bạn cũng có thể nhập đường dẫn theo <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3150669\n"
+"7\n"
+"help.text"
+msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
+msgstr "<emph>TextTo:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ nơi vào đó bạn muốn sao chép tập tin nguồn. Biểu thức này có thể chứa ổ đĩa đích đến, đường dẫn và tên tập tin, hoặc đường dẫn kiểu ghi địa chỉ URL."
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3150791\n"
+"8\n"
+"help.text"
+msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgstr "Bạn chỉ có thể sử dụng câu lệnh FileCopy để sao chép tập tin không mở."
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"hd_id3125863\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
+"03020407.xhp\n"
"tit\n"
"help.text"
-msgid "RGB Function [Runtime]"
-msgstr "Hàm RGB [Runtime]"
+msgid "FileDateTime Function [Runtime]"
+msgstr "Hàm FileDateTime [Runtime]"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3150792\n"
+"03020407.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr "<bookmark_value>hàm FileDateTime</bookmark_value>"
+
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"hd_id3153361\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"Hàm RGB [Runtime]\">Hàm RGB [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"Hàm FileDateTime [Runtime]\">Hàm FileDateTime [Runtime]</link>"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3150447\n"
+"03020407.xhp\n"
+"par_id3156423\n"
"2\n"
"help.text"
-msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
-msgstr "Trả về một <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"giá trị màu số nguyên dài\">giá trị màu số nguyên dài</link> chứa ba thành phần màu đỏ, màu lục và màu xanh."
+msgid "Returns a string that contains the date and the time that a file was created or last modified."
+msgstr "Trả về một chuỗi chứa ngày và giờ tạo hoặc sửa đổi cuối cùng của một tập tin nào đó."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
+"03020407.xhp\n"
+"hd_id3154685\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
+"03020407.xhp\n"
+"par_id3154124\n"
"4\n"
"help.text"
-msgid "RGB (Red, Green, Blue)"
-msgstr "RGB (Đỏ, Lục, Xanh)"
+msgid "FileDateTime (Text As String)"
+msgstr "FileDateTime (Text As String)"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
+"03020407.xhp\n"
+"hd_id3150448\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
+"03020407.xhp\n"
"par_id3159153\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi mà chứa một đặc tả tập tin không mơ hồ (không chứa ký tự đại diện). Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
+"03020407.xhp\n"
+"par_id3155306\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
+msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
+msgstr "Hàm này xác định thời gian xác định tạo hoặc sửa đổi cuối cùng cho một tập tin (dưới dạng « MM.DD.YYYY HH.MM.SS »)."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3152597\n"
+"03020407.xhp\n"
+"hd_id3146119\n"
"8\n"
"help.text"
-msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
-msgstr "<emph>Red</emph>: bất cứ biểu thức số nguyên nào mà tương ứng với thành phần màu đỏ (0-255) của màu ghép."
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3146974\n"
-"9\n"
-"help.text"
-msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
-msgstr "<emph>Green</emph>: bất cứ biểu thức số nguyên nào mà tương ứng với thành phần màu lục (0-255) của màu ghép."
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3151113\n"
-"10\n"
-"help.text"
-msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
-msgstr "<emph>Blue</emph>: bất cứ biểu thức số nguyên nào mà tương ứng với thành phần màu xanh (0-255) của màu ghép."
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03010305.xhp
-#, fuzzy
-msgctxt ""
-"03010305.xhp\n"
-"par_id3145647\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"red= \" & red(lVar) & Chr(13)&_"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3149401\n"
-"17\n"
-"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr "\"green= \" & green(lVar) & Chr(13)&_"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150716\n"
-"18\n"
-"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
+"03020408.xhp\n"
"tit\n"
"help.text"
-msgid "IsNull Function [Runtime]"
-msgstr "Hàm IsNull [Runtime]"
+msgid "FileLen-Function [Runtime]"
+msgstr "Hàm FileLen [Runtime]"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"bm_id3155555\n"
+"03020408.xhp\n"
+"bm_id3153126\n"
"help.text"
-msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
-msgstr "<bookmark_value>hàm IsNull</bookmark_value><bookmark_value>giá trị Null</bookmark_value>"
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr "<bookmark_value>hàm FileLen</bookmark_value>"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3155555\n"
+"03020408.xhp\n"
+"hd_id3153126\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"Hàm IsNull [Runtime]\">Hàm IsNull [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"Hàm FileLen [Runtime]\">Hàm FileLen [Runtime]</link>"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3146957\n"
+"03020408.xhp\n"
+"par_id3145068\n"
"2\n"
"help.text"
-msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
-msgstr "Thử nếu một BIến thế chứa giá trị Null đặc biệt, hay không. Giá trị Null ngụ ý rằng biến đó không chứa dữ liệu."
+msgid "Returns the length of a file in bytes."
+msgstr "Trả về chiều dài của tập tin, theo byte."
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
+"03020408.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3150984\n"
+"03020408.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "IsNull (Var)"
-msgstr "IsNull (BIến)"
+msgid "FileLen (Text As String)"
+msgstr "FileLen (Text As String)"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3149514\n"
+"03020408.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
+"03020408.xhp\n"
+"par_id3156282\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Long"
+msgstr "Dài"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
+"03020408.xhp\n"
+"hd_id3150768\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3159414\n"
+"03020408.xhp\n"
+"par_id3153193\n"
"8\n"
"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
-msgstr "<emph>Biến:</emph> bắt cứ biến nào cần thử. Hàm này trả về Đúng nếu Biến thế chứa giá trị Rỗng, không thì Sai."
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_idN1062A\n"
+"03020408.xhp\n"
+"par_id3150439\n"
+"9\n"
"help.text"
-msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
-msgstr "<emph>Null</emph>: giá trị này được dùng cho một kiểu con dữ liệu biến thế không có nội dung hợp lệ."
+msgid "This function determines the length of a file. If the FileLen function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the Lof function."
+msgstr "Hàm này xác định chiều dài của tập tin. Hàm FileLen được gọi đối với một tập tin còn mở sẽ trả về chiều dài của tập tin trước khi mở. Để xác định chiều dài tư hiện thời của một tập tin đã mở, dùng hàm « Lof »."
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3153381\n"
-"9\n"
+"03020408.xhp\n"
+"hd_id3163710\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
+"03020409.xhp\n"
"tit\n"
"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr "Toán tử « + » [Runtime]"
+msgid "GetAttr Function [Runtime]"
+msgstr "Hàm GetAttr [Runtime]"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"bm_id3145316\n"
+"03020409.xhp\n"
+"bm_id3150984\n"
"help.text"
-msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử « * » (toán học)</bookmark_value>"
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr "<bookmark_value>hàm GetAttr</bookmark_value>"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3145316\n"
+"03020409.xhp\n"
+"hd_id3150984\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">Toán tử « + » [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"Hàm GetAttr [Runtime]\">Hàm GetAttr [Runtime]</link>"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3145068\n"
+"03020409.xhp\n"
+"par_id3154347\n"
"2\n"
"help.text"
-msgid "Adds or combines two expressions."
-msgstr "Cộng hoặc kết hợp với nhau hai biểu thức."
+msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgstr "Trả về một mẫu bit mà nhận dạng kiểu tập tin, hoặc tên của một khối tin hoặc thư mục."
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
+"03020409.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3150358\n"
+"03020409.xhp\n"
+"par_id3150359\n"
"4\n"
"help.text"
-msgid "Result = Expression1 + Expression2"
-msgstr "Kết quả = BIểu_thức1 + BIểu_thức2"
+msgid "GetAttr (Text As String)"
+msgstr "GetAttr (Text As String)"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
+"03020409.xhp\n"
+"hd_id3151211\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3154123\n"
+"03020409.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
-msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của phép cộng."
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3150870\n"
+"03020409.xhp\n"
+"hd_id3145172\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
-msgstr "<emph>BIểu_thức1, BIểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn cộng hoặc kết hợp với nhau."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
+"03020409.xhp\n"
+"par_id3151042\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trim Function [Runtime]"
-msgstr "Hàm Trim [Runtime]"
-
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr "<bookmark_value>hàm Trim</bookmark_value>"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03020409.xhp\n"
+"par_id3161831\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Hàm Trim [Runtime]\">Hàm Trim [Runtime]</link>"
+msgid "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
+msgstr "Hàm này xác định các thuộc tính cho một tập tin đã ghi rõ, và trả về mẫu bit có thể giúp bạn nhận dạng các thuộc tính tập tin này:"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3149177\n"
-"2\n"
+"03020409.xhp\n"
+"hd_id3145364\n"
+"10\n"
"help.text"
-msgid "Removes all leading and trailing spaces from a string expression."
-msgstr "Gỡ bỏ mọi dấu cách đi trước hay sau khỏi một biểu thức chuỗi."
+msgid "Value"
+msgstr "Giá trị"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"3\n"
+"03020409.xhp\n"
+"par_id3147349\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "0 : Normal files."
+msgstr "0 : Các tập tin bình thường."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
-"4\n"
+"03020409.xhp\n"
+"par_id3147434\n"
+"12\n"
"help.text"
-msgid "Trim( Text As String )"
-msgstr "Trim( Text As String )"
+msgid "1 : Read-only files."
+msgstr "1 : tập tin chỉ-đọc."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"5\n"
+"03020409.xhp\n"
+"par_id3159154\n"
+"15\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "8 : Returns the name of the volume"
+msgstr "8 : Trả về tên của khối tin"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"6\n"
+"03020409.xhp\n"
+"par_id3145271\n"
+"16\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "16 : Returns the name of the directory only."
+msgstr "16 : Chỉ trả về tên của thư mục."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"7\n"
+"03020409.xhp\n"
+"par_id3153953\n"
+"17\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32 : tập tin đã thay đổi kể từ lần sao lưu cuối cùng (bit Kho lưu)."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
-"8\n"
+"03020409.xhp\n"
+"par_id3156444\n"
+"18\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào."
+msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
+msgstr "Muốn biết nếu thuộc tính có một bit đã đặt thì dùng phương pháp truy vấn này:"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
+"03020409.xhp\n"
+"hd_id3153094\n"
+"19\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run-Time Functions"
-msgstr "Hàm Lúc Chạy"
-
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Hàm Lúc Chạy\">Hàm Lúc Chạy</link></variable>"
-
-#: 03000000.xhp
+#: 03020409.xhp
msgctxt ""
-"03000000.xhp\n"
-"par_id3148983\n"
-"2\n"
+"03020409.xhp\n"
+"par_id3155415\n"
+"21\n"
"help.text"
-msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr "Phần này diễn tả các Hàm Lúc Chạy của <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr "On Error Goto ErrorHandler REM Define target for error-handler"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
+"03020410.xhp\n"
"tit\n"
"help.text"
-msgid "Open Statement[Runtime]"
-msgstr "Câu lệnh Open [Runtime]"
+msgid "Kill Statement [Runtime]"
+msgstr "Câu lệnh Kill [Runtime]"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
+"03020410.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Open (Mở)</bookmark_value>"
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Kill</bookmark_value>"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3150791\n"
+"03020410.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Câu lệnh Open [Runtime]\">Câu lệnh Open [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Câu lệnh Kill [Runtime]\">Câu lệnh Kill [Runtime]</link>"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
+"03020410.xhp\n"
+"par_id3151211\n"
"2\n"
"help.text"
-msgid "Opens a data channel."
-msgstr "Mở một kênh dữ liệu."
+msgid "Deletes a file from a disk."
+msgstr "Xoá một tập tin khỏi một đĩa."
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
+"03020410.xhp\n"
+"hd_id3150767\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154124\n"
+"03020410.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
-msgstr "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+msgid "Kill File As String"
+msgstr "Kill File As String"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
+"03020410.xhp\n"
+"hd_id3153194\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3155132\n"
+"03020410.xhp\n"
+"par_id3150440\n"
"6\n"
"help.text"
-msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
-msgstr "<emph>FileName:</emph> tên và đường dẫn của tập tin bạn muốn mở. Nếu bạn thử đọc một tập tin không tồn tại (Access=Read), một thông điệp lỗi sẽ xuất hiện. Nếu bạn thử ghi vào một tập tin không tồn tại (Access=Write), một tập tin mới được tạo."
+msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3149262\n"
+"03020410.xhp\n"
+"hd_id3148645\n"
"7\n"
"help.text"
-msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
-msgstr "<emph>Mode:</emph> từ khoá mà ghi rõ chế độ tập tin. Giá trị hợp lệ: Append (phụ thêm vào tập tin dãy), Binary (nhị phân: dữ liệu có thể được truy cập theo byte dùng Get và Put), Input (nhập vào : mở một kênh để đọc), Output (xuất ra: mở một kênh dữ liệu để ghi) và Random (ngẫu nhiên: chỉnh sửa các tập tin tương đối)."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154014\n"
-"8\n"
+"03020410.xhp\n"
+"par_id3163710\n"
+"9\n"
"help.text"
-msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
-msgstr "<emph>IOMode:</emph> từ khoá mà xác định kiểu truy cập. Giá trị hợp lệ: Read (chỉ đọc), Write (chỉ ghi) và Read Write (cả hai)."
+msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
+msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150011\n"
-"9\n"
+"03020411.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
-msgstr "<emph>Protected:</emph> từ khoá mà xác định trạng thái bảo mật của một tập tin đã mở. Giá trị hợp lệ: Shared (dùng chung: tập tin có thể được mở bằng ứng dụng khác), Lock Read (khoá đọc: tập tin được bảo vê chống đọc), Lock Write (khoá ghi: tập tin được bảo vệ chống ghi), và Lock Read Write (khoá đọc ghi: từ chối truy cập đến tập tin)."
+msgid "MkDir Statement [Runtime]"
+msgstr "Câu lệnh MkDir [Runtime]"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153190\n"
-"10\n"
+"03020411.xhp\n"
+"bm_id3156421\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
-msgstr "<emph>FileNumber:</emph> bất cứ biễu thức số nguyên nào từ 0 đấn 511 để ngụ ý số hiệu của một kênh dữ liệu còn rảnh. Vì vậy bạn có thể gửi lệnh qua kênh dữ liệu đó để truy cập đến tập tin. Số thứ tự tập tin phải được xác định bởi hàm FreeFile đúng trước câu lệnh Open (Mở)."
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh MkDir</bookmark_value>"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3151115\n"
-"11\n"
+"03020411.xhp\n"
+"hd_id3156421\n"
+"1\n"
"help.text"
-msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
-msgstr "<emph>DatasetLength:</emph> đối với các tập tin truy cập ngẫu nhiên, đặt chiều dài của các bản ghi."
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Câu lệnh MkDir [Runtime]\">Câu lệnh MkDir [Runtime]</link>"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153418\n"
-"12\n"
+"03020411.xhp\n"
+"par_id3147000\n"
+"2\n"
"help.text"
-msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
-msgstr "Bạn chỉ có khả năng sửa đổi nội dung của một tập tin được mở bằng câu lệnh Open (Mở). Nếu bạn thử mở một tập tin đã mở, một thông điệp lỗi sẽ xuất hiện."
+msgid "Creates a new directory on a data medium."
+msgstr "Tạo một thư mục mới trên một vật chứa dữ liệu."
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
+"03020411.xhp\n"
+"hd_id3148520\n"
+"3\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154705\n"
-"22\n"
+"03020411.xhp\n"
+"par_id3155150\n"
+"4\n"
"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"This is a line of text\""
+msgid "MkDir Text As String"
+msgstr "MkDir Text As String"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3146916\n"
-"23\n"
+"03020411.xhp\n"
+"hd_id3156027\n"
+"5\n"
"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr "Print #iNumber, \"This is another line of text\""
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"tit\n"
+"03020411.xhp\n"
+"par_id3153750\n"
+"6\n"
"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr "Toán tử « * » [Runtime]"
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ tên và đường dẫn của thư mục cần tạo. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
+"03020411.xhp\n"
+"par_id3153311\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử « * » (toán học)</bookmark_value>"
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr "Chưa xác định đường dẫn thì thư mục được tạo trong thư mục hiện thời."
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3147573\n"
-"1\n"
+"03020411.xhp\n"
+"hd_id3155388\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">Toán tử « * » [Runtime]</link>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
-"2\n"
+"03020411.xhp\n"
+"par_id3149762\n"
+"10\n"
"help.text"
-msgid "Multiplies two values."
-msgstr "Nhân hai giá trị."
+msgid "' Example for functions of the file organization"
+msgstr "' Thí dụ về các hàm tổ chức tập tin"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
-"3\n"
+"03020411.xhp\n"
+"par_id3149669\n"
+"13\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Const sSubDir1 As String =\"Test\""
+msgstr "Const sSubDir1 as String =\"Test\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
-"4\n"
+"03020411.xhp\n"
+"par_id3148663\n"
+"14\n"
"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr "Kết quả = Biểu_thức1 * Biểu_thức2"
+msgid "Const sFile2 As String = \"Copied.tmp\""
+msgstr "Const sFile2 as String = \"Copied.tmp\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
-"5\n"
+"03020411.xhp\n"
+"par_id3154071\n"
+"15\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Const sFile3 As String = \"Renamed.tmp\""
+msgstr "Const sFile3 as String = \"Renamed.tmp\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154365\n"
-"6\n"
+"03020411.xhp\n"
+"par_id3154217\n"
+"19\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
-msgstr "<emph>Kết quả:</emph> bất kỳ biểu thức số nào ghi nhận kết quả của một phép nhân."
+msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
+msgstr "If Dir(sSubDir1,16)=\"\" then ' Does the directory exist ?"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154685\n"
-"7\n"
+"03020411.xhp\n"
+"par_id3147228\n"
+"21\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn nhân."
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr "MsgBox sFile,0,\"Create directory\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
+"03020411.xhp\n"
+"par_id3153770\n"
+"26\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"tit\n"
+"03020411.xhp\n"
+"par_id3159154\n"
+"27\n"
"help.text"
-msgid "File I/O Functions"
-msgstr "Hàm V/R Tập Tin"
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"hd_id3156344\n"
-"1\n"
+"03020411.xhp\n"
+"par_id3149484\n"
+"28\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=\"Hàm V/R Tập tin\">Hàm V/R Tập tin</link>"
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+msgstr "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3153360\n"
-"2\n"
+"03020411.xhp\n"
+"par_id3152885\n"
+"29\n"
"help.text"
-msgid "Use File I/O functions to create and manage user-defined (data) files."
-msgstr "Hãy dùng các hàm V/R tập tin để tạo và quản lý các tập tin (dữ liệu) tự xác định."
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3150398\n"
-"3\n"
+"03020411.xhp\n"
+"par_id3153952\n"
+"31\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 "Bạn có thể sử dụng các hàm này để hỗ trợ chức năng tạo các tập tin « tương đối », do đó bạn có thể lưu và nạp lại một số bản ghi nào đó bằng cách ghi rõ số thứ tự bản ghi. Các hàm V/R tập tin cũng giúp bạn quản lý các tập tin, bằng cách cung cấp thông tin như kích cỡ tập tin, thiết lập đường dẫn hiện thời và ngày tháng đã tạo một tập tin hoặc thư mục."
+msgid "' Rename in the same directory"
+msgstr "' Thay đổi tên trong cùng một thư mục"
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
+"03020411.xhp\n"
+"par_id3147426\n"
+"34\n"
+"help.text"
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgstr "SetAttr( sFile, 0 ) 'Delete all attributes"
+
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3148647\n"
+"35\n"
+"help.text"
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3150092\n"
+"40\n"
+"help.text"
+msgid "' Converts a system path in URL"
+msgstr "' Chuyển đổi một đường dẫn hệ thống theo URL"
+
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3156276\n"
+"49\n"
+"help.text"
+msgid "' the colon with DOS"
+msgstr "' dấu hai chấm với DOS"
+
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
"tit\n"
"help.text"
-msgid "CStr Function [Runtime]"
-msgstr "Hàm CStr [Runtime]"
+msgid "Name Statement [Runtime]"
+msgstr "Câu lệnh Name [Runtime]"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"bm_id3146958\n"
+"03020412.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "<bookmark_value>CStr function</bookmark_value>"
-msgstr "<bookmark_value>hàm CStr</bookmark_value>"
+msgid "<bookmark_value>Name statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Name</bookmark_value>"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3146958\n"
+"03020412.xhp\n"
+"hd_id3143268\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"Hàm CStr [Runtime]\">Hàm CStr [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Câu lệnh Name [Runtime]\">Câu lệnh Name [Runtime]</link>"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147574\n"
+"03020412.xhp\n"
+"par_id3154346\n"
"2\n"
"help.text"
-msgid "Converts any numeric expression to a string expression."
-msgstr "Chuyển đổi bất cứ biểu thức thuộc số nào sang một biểu thức kiểu chuỗi."
+msgid "Renames an existing file or directory."
+msgstr "Thay đổi tên của một tập tin hoặc thư mục đã có."
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
+"03020412.xhp\n"
+"hd_id3156344\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3145315\n"
+"03020412.xhp\n"
+"par_id3153381\n"
"4\n"
"help.text"
-msgid "CStr (Expression)"
-msgstr "CStr (Biểu thức)"
+msgid "Name OldName As String As NewName As String"
+msgstr "Name OldName As String As NewName As String"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3153062\n"
+"03020412.xhp\n"
+"hd_id3153362\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Chuỗi"
-
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149457\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
-msgstr "<emph>Biểu thức:</emph> bất cứ biểu thức nào kiểu chuỗi hay thuộc số mà bạn muốn chuyển đổi."
-
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3150358\n"
-"9\n"
+"03020412.xhp\n"
+"par_id3151210\n"
+"6\n"
"help.text"
-msgid "Expression Types and Conversion Returns"
-msgstr "Kiểu Biểu thức và Trả về khi Chuyển đổi"
+msgid "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>OldName, NewName:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ tên tập tin (chứa đường dẫn). Bạn cũng có thể dùng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"10\n"
+"03020412.xhp\n"
+"hd_id3125863\n"
+"8\n"
"help.text"
-msgid "Boolean :"
-msgstr "Lôgic :"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3156422\n"
-"11\n"
+"03020412.xhp\n"
+"par_id3152462\n"
+"16\n"
"help.text"
-msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
-msgstr "Chuỗi mà ước tính thành hoặc <emph>True</emph> (Đúng) hoặc <emph>False</emph> (Sai)."
+msgid "MsgBox \"File already exists\""
+msgstr "msgbox \"Tập tin đã có\""
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
+"03020413.xhp\n"
+"tit\n"
"help.text"
-msgid "Date :"
-msgstr "Ngày :"
+msgid "RmDir Statement [Runtime]"
+msgstr "Câu lệnh RmDir [Runtime]"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155411\n"
-"13\n"
+"03020413.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "String that contains the date and time."
-msgstr "Chuỗi mà chứa ngày và giờ."
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh RmDir</bookmark_value>"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"14\n"
+"03020413.xhp\n"
+"hd_id3148947\n"
+"1\n"
"help.text"
-msgid "Null :"
-msgstr "Rỗng :"
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"Câu lệnh RmDir [Runtime]\">Câu lệnh RmDir [Runtime]</link>"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3150486\n"
-"15\n"
+"03020413.xhp\n"
+"par_id3149457\n"
+"2\n"
"help.text"
-msgid "Run-time error."
-msgstr "Lỗi lúc chạy."
+msgid "Deletes an existing directory from a data medium."
+msgstr "Xoá một thư mục đã tồn tại khỏi một vật chứa dữ liệu."
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"16\n"
+"03020413.xhp\n"
+"hd_id3153361\n"
+"3\n"
"help.text"
-msgid "Empty :"
-msgstr "Rỗng :"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155306\n"
-"17\n"
+"03020413.xhp\n"
+"par_id3154367\n"
+"4\n"
"help.text"
-msgid "String without any characters."
-msgstr "Chuỗi không có ký tự"
+msgid "RmDir Text As String"
+msgstr "RmDir Text As String"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"18\n"
+"03020413.xhp\n"
+"hd_id3156281\n"
+"5\n"
"help.text"
-msgid "Any :"
-msgstr "Bất kỳ :"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3152938\n"
-"19\n"
+"03020413.xhp\n"
+"par_id3151042\n"
+"6\n"
"help.text"
-msgid "Corresponding number as string."
-msgstr "Số tương ứng dạng chuỗi."
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi mà ghi rõ tên và đường dẫn của thư mục cần xoá. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155738\n"
-"20\n"
+"03020413.xhp\n"
+"par_id3153192\n"
+"7\n"
"help.text"
-msgid "Zeros at the end of a floating-point number are not included in the returned string."
-msgstr "Các số không ở kết thúc của một số với chấm động không phải được bao gồm trong chuỗi trả về."
+msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
+msgstr "Chưa xác định đường dẫn thì <emph>Câu lệnh RmDir</emph> tìm kiếm thư mục cần xoá theo đường dẫn hiện thời. Không tìm thấy thì hiển thị một thông điệp lỗi."
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3154729\n"
-"21\n"
+"03020413.xhp\n"
+"hd_id3145271\n"
+"8\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
+"03020414.xhp\n"
"tit\n"
"help.text"
-msgid "Close Statement [Runtime]"
-msgstr "Câu lệnh đóng [Runtime]"
+msgid "SetAttr Statement [Runtime]"
+msgstr "Câu lệnh SetAttr [Runtime]"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"bm_id3157896\n"
+"03020414.xhp\n"
+"bm_id3147559\n"
"help.text"
-msgid "<bookmark_value>Close statement</bookmark_value>"
-msgstr "<bookmark_value>Câu lệnh đóng</bookmark_value>"
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh SetAttr</bookmark_value>"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3157896\n"
+"03020414.xhp\n"
+"hd_id3147559\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Câu lệnh đóng [Runtime]\">Câu lệnh đóng [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"Câu lệnh SetAttr [Runtime]\">Câu lệnh SetAttr [Runtime]</link>"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147573\n"
+"03020414.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "Closes a specified file that was opened with the Open statement."
-msgstr "Đóng một tập tin cụ thể mà được mở bằng câu lệnh Open (Mở)."
+msgid "Sets the attribute information for a specified file."
+msgstr "Đặt thông tin thuộc tính về một tập tin cụ thể."
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3156344\n"
+"03020414.xhp\n"
+"hd_id3150359\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147265\n"
+"03020414.xhp\n"
+"par_id3154365\n"
"4\n"
"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-msgstr "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr "SetAttr FileName As String, Attribute As Integer"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
+"03020414.xhp\n"
+"hd_id3125863\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3150791\n"
+"03020414.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
-msgstr "<emph>FileNumber:</emph> bất cứ biểu thức số nguyên nào mà ghi rõ số hiệu của kênh dữ liệu đã được mở bằng câu lệnh <emph>Open</emph> (Mở)."
+msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>FileName:</emph> tên cũa tập tin (bao gồm đường dẫn) có các thuộc tính bạn muốn thử. Không nhập đường dẫn thì <emph>SetAttr</emph> tìm kiếm trong thư mục hiện thời. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
+"03020414.xhp\n"
+"par_id3153192\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
+msgstr "<emph>Thuộc tính:</emph> mẫu bit xác định các thuộc tính bạn muốn đặt hoặc gột:"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
-"16\n"
+"03020414.xhp\n"
+"par_id3145786\n"
+"8\n"
"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
+msgid "<emph>Value</emph>"
+msgstr "<emph>Giá trị</emph>"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
+"03020414.xhp\n"
+"par_id3152596\n"
+"9\n"
+"help.text"
+msgid "0 : Normal files."
+msgstr "0 : Các tập tin bình thường."
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3149262\n"
+"10\n"
+"help.text"
+msgid "1 : Read-only files."
+msgstr "1 : tập tin chỉ-đọc."
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3152576\n"
+"13\n"
+"help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32 : tập tin đã thay đổi kể từ lần sao lưu cuối cùng (bit Kho lưu)."
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3153093\n"
+"14\n"
+"help.text"
+msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgstr "Bạn có thể đặt nhiều thuộc tính đồng thời, bằng cách kết hợp những giá trị tương ứng trong một câu lệnh OR (hoặc) luận lý."
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"hd_id3147434\n"
+"15\n"
+"help.text"
+msgid "Example:"
+msgstr "Thí dụ :"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3148645\n"
"17\n"
"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr "On Error Goto ErrorHandler REM Define target for error-handler"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
+"03020415.xhp\n"
"tit\n"
"help.text"
-msgid "IsObject Function [Runtime]"
-msgstr "Hàm IsObject [Runtime]"
+msgid "FileExists Function [Runtime]"
+msgstr "Câu lệnh FileExists [Runtime]"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"bm_id3149346\n"
+"03020415.xhp\n"
+"bm_id3148946\n"
"help.text"
-msgid "<bookmark_value>IsObject function</bookmark_value>"
-msgstr "<bookmark_value>Hàm IsObject</bookmark_value>"
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr "<bookmark_value>hàm FileExists</bookmark_value>"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3149346\n"
+"03020415.xhp\n"
+"hd_id3148946\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"Hàm IsObject [Runtime]\">Hàm IsObject [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"Hàm FileExists [Runtime]\">Hàm FileExists [Runtime]</link>"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3148538\n"
+"03020415.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
-msgstr "Thử nếu một biến đối tượng là một đối tượng OLE không. Có thì hàm trả về Đúng, không thì Sai."
+msgid "Determines if a file or a directory is available on the data medium."
+msgstr "Xác định nếu một tập tin hoặc thư mục có sẵn trong vật chứa dữ liệu."
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
+"03020415.xhp\n"
+"hd_id3150447\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
+"03020415.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "IsObject (ObjectVar)"
-msgstr "IsObject (Biến_đối_tượng)"
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr "FileExists(FileName As String | DirectoryName As String)"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
+"03020415.xhp\n"
+"hd_id3154126\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
+"03020415.xhp\n"
+"par_id3150769\n"
"6\n"
"help.text"
msgid "Bool"
msgstr "Bool"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
+"03020415.xhp\n"
+"hd_id3153770\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
+"03020415.xhp\n"
+"par_id3147349\n"
"8\n"
"help.text"
-msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
-msgstr "<emph>Biến_đối_tượng:</emph> bất cứ biến nào cần thử. Nếu biến đối tượng chứa một đối tượng OLE, hàm này trả về Đúng."
+msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "FileName | DirectoryName: bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-#: 03132500.xhp
+#: 03020415.xhp
msgctxt ""
-"03132500.xhp\n"
+"03020415.xhp\n"
+"hd_id3149664\n"
+"9\n"
+"help.text"
+msgid "Example:"
+msgstr "Thí dụ :"
+
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
"tit\n"
"help.text"
-msgid "GetDefaultContext Function [Runtime]"
-msgstr "Hàm GetDefaultContext [Runtime]"
+msgid "Date and Time Functions"
+msgstr "Hàm Ngày và Giờ"
-#: 03132500.xhp
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"bm_id4761192\n"
+"03030000.xhp\n"
+"hd_id3150502\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
-msgstr "<bookmark_value>hàm GetDefaultContext</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Hàm Ngày và Giờ\">Hàm Ngày và Giờ</link>"
-#: 03132500.xhp
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10580\n"
+"03030000.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">Hàm GetDefaultContext [Runtime]</link>"
+msgid "Use the statements and functions described here to perform date and time calculations."
+msgstr "Hãy dùng các câu lệnh và hàm được diễn tả ở đây để thực hiện phép tính kiểu ngày tháng và thời gian."
-#: 03132500.xhp
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10590\n"
+"03030000.xhp\n"
+"par_id3152363\n"
+"3\n"
"help.text"
-msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
-msgstr "Trả về ngữ cảnh mặc định của bộ tạo dịch vụ tiến trình, nếu có ; không thì trả về tham chiếu rỗng."
+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 cho phép bạn tính hiệu của hai ngày tháng hoặc hai thời gian, bằng cách chuyển đổi các giá trị ngày và giờ sang giá trị thuộc số liên tục. Một khi tính hiệu thì hàm đặc biệt sẽ chuyển đổi giá trị về định dạng ngày/giờ tiêu chuẩn."
-#: 03132500.xhp
-#, fuzzy
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10593\n"
+"03030000.xhp\n"
+"par_id3151054\n"
+"4\n"
"help.text"
-msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
-msgstr "Hàm lúc chạy này trả về ngữ cảnh thành phần mặc định cần dùng, nếu có khởi tạo dịch vụ thông qua XmultiServiceFactory. Xem chương <item type=\"literal\">Professional UNO</item> (UNO chuyên nghiệp) trong <item type=\"literal\">Developer's Guide</item> (Sổ tay Nhà phát triển) ở địa chỉ <link href=\"http://api.openoffice.org\">api.openoffice.org</link> để tìm thêm thông tin."
+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 "Bạn có thể kết hợp các giá trị ngày/giờ để làm cùng một số thập phân động. Ngày được chuyển đổi sang số nguyên, và giờ sang giá trị thập phân. <item type=\"productname\">%PRODUCTNAME</item> Basic cũng hỗ trợ biến kiểu Date (Ngày) mà có thể chứa một đặc tả thời gian chứa cả hai ngày và giờ."
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
+"03030100.xhp\n"
"tit\n"
"help.text"
-msgid "Atn Function [Runtime]"
-msgstr "Hàm Atn [Runtime]"
+msgid "Converting Date Values"
+msgstr "Chuyển đổi Giá trị Ngày tháng"
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
-"bm_id3150616\n"
+"03030100.xhp\n"
+"hd_id3147573\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>Atn function</bookmark_value>"
-msgstr "<bookmark_value>hàm Atn</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Chuyển đổi Giá trị Ngày tháng\">Chuyển đổi Giá trị Ngày tháng</link>"
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3150616\n"
+"03030100.xhp\n"
+"par_id3154760\n"
+"2\n"
+"help.text"
+msgid "The following functions convert date values to calculable numbers and back."
+msgstr "Các hàm sau sẽ chuyển đổi giữa giá trị ngày tháng và số có thể tính."
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"tit\n"
+"help.text"
+msgid "DateSerial Function [Runtime]"
+msgstr "Hàm DateSerial [Runtime]"
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"bm_id3157896\n"
+"help.text"
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr "<bookmark_value>hàm DateSerial</bookmark_value>"
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"hd_id3157896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Hàm Atn [Runtime]\">Hàm Atn [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"Hàm DateSerial [Runtime]\">Hàm DateSerial [Runtime]</link>"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3149346\n"
+"03030101.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
-msgstr "Hàm lượng giác mà trả về arctang của một biểu thức thuộc số. Giá trị trả về nằm trong phạm vi -π/2 đến +π/2."
+msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgstr "Trả về một giá trị <emph>Ngày tháng</emph> cho một năm, tháng hoặc ngày cụ thể."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3143271\n"
+"03030101.xhp\n"
+"hd_id3147264\n"
"3\n"
"help.text"
-msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
-msgstr "Arctang là giá trị ngược của hàm tang. Hàm Atn trả về góc « Alpha » theo radian, dùng tang của góc này. Hàm cũng có thể trả về góc « Alpha » bằng cách so sánh tỷ lệ của chiều dài cạnh đối vơi góc đó, với chiều dài cạnh kề với góc đó, trong một hình tam giác vuông góc."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3145315\n"
+"03030101.xhp\n"
+"par_id3149670\n"
"4\n"
"help.text"
-msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
-msgstr "Atn(cạnh đối với góc/cạnh kề với góc)= Alpha"
+msgid "DateSerial (year, month, day)"
+msgstr "DateSerial (năm, tháng, ngày)"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
+"03030101.xhp\n"
+"hd_id3150792\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3148947\n"
+"03030101.xhp\n"
+"par_id3150398\n"
"6\n"
"help.text"
-msgid "Atn (Number)"
-msgstr "Atn (Số)"
+msgid "Date"
+msgstr "Ngày"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3148664\n"
+"03030101.xhp\n"
+"hd_id3154141\n"
"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
+"03030101.xhp\n"
+"par_id3147229\n"
"8\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+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> biểu thức số nguyên mà ngụ ý một năm. Tất cả các giá trị nằm giữa 0 và 99 được đọc là năm 1900-1999. Đối với nằm ở ngoại phạm vi này, bạn cần phải nhập cả bốn chữ số."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
+"03030101.xhp\n"
+"par_id3156280\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+msgstr "<emph>Tháng:</emph> biểu thức số nguyên mà ngụ ý tháng của năm đã ghi rõ. Phạm vi hợp lệ là 1-12."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3156212\n"
+"03030101.xhp\n"
+"par_id3151043\n"
"10\n"
"help.text"
-msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
-msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số nào đại diện tỷ lệ của hai cạnh của một hình tam giác vuông góc. Hàm Atn trả về góc tương ứng theo radian (arctang)."
+msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
+msgstr ""
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3153192\n"
+"03030101.xhp\n"
+"par_id3161832\n"
"11\n"
"help.text"
-msgid "To convert radians to degrees, multiply radians by 180/pi."
-msgstr "Để chuyển đổi một số radian sang độ, hãy nhân số radian với 180/π."
+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>Hàm DateSerial</emph> trả về số ngày nằm giữa ngày 30, tháng 12/1899 và ngày đã cho. Bạn có thể sử dụng hàm này để tính hiệu của hai ngày tháng."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3147230\n"
+"03030101.xhp\n"
+"par_id3155306\n"
"12\n"
"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "độ=(radian*180)/π"
+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>Hàm DateSerial</emph> trả về kiểu dữ liệu Biến Thể (Variant) với VarType 7 (Ngày). Giá trị này được cất giữ nội bộ dưới dạng một giá trị Đôi (Double), do đó khi ngày tháng đã cho là 1900-01-01, giá trị đã trả về là 1. Giá trị âm tương ứng với ngày trước ngày 30, tháng 12, 1899 (không Negative values correspond to dates before December 30, 1899 (không kể cả)."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3125864\n"
+"03030101.xhp\n"
+"par_id3152576\n"
"13\n"
"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr "radian=(độ*π)/180"
+msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+msgstr "Nếu bạn xác định một ngày tháng nằm ở ngoại phạm vi hợp lệ, $[officename] Basic trả về một thông điệp lỗi."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3159252\n"
+"03030101.xhp\n"
+"par_id3149481\n"
"14\n"
"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
-msgstr "Pi (π) ở đây là hằng số hình tròn cố định có giá trị được làm tròn 3.14159."
+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 "Dù bạn xác định <emph>hàm DateValue</emph> dưới dạng một chuỗi chứa ngày tháng, <emph>hàm DateSerial</emph> ước tính mỗi thành phần (năm, tháng, ngày) là một biểu thức thuộc số riêng."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
+"03030101.xhp\n"
+"hd_id3155411\n"
"15\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3146985\n"
-"16\n"
-"help.text"
-msgid "' The following example calculates for a right-angled triangle"
-msgstr "REM Mẫu ví dụ sau tính cho một tam giác vuông góc"
-
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145750\n"
-"17\n"
-"help.text"
-msgid "' the angle Alpha from the tangent of the angle Alpha:"
-msgstr "REM góc Alpha từ tang của góc Alpha:"
-
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3151112\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159 Is a predefined constant"
-msgstr "REM π = 3.14159 được làm tròn là một hằng số đã xác định sẵn"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3149262\n"
-"22\n"
-"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
-msgstr "d1 = InputBox$ (\"Nhập chiều dài của cạnh kề với góc: \",\"Kề\")"
-
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3149482\n"
-"23\n"
+"03030101.xhp\n"
+"par_id3154942\n"
"help.text"
-msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
-msgstr "d2 = InputBox$ (\"Nhập chiều dài của cạnh đối với góc: \",\"Đối\")"
+msgid "MsgBox lDate ' returns 23476"
+msgstr "msgbox lDate REM returns 23476"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3155415\n"
-"24\n"
+"03030101.xhp\n"
+"par_id3151074\n"
"help.text"
-msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
-msgstr "Print \"Góc Alpha là\"; (atn (d2/d1) * 180 / Pi); \" độ\""
+msgid "MsgBox sDate ' returns 04/09/1964"
+msgstr "msgbox sDate REM returns 04/09/1964"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
+"03030102.xhp\n"
"tit\n"
"help.text"
-msgid "Rnd Function [Runtime]"
-msgstr "Hàm Rnd [Runtime]"
+msgid "DateValue Function [Runtime]"
+msgstr "Hàm DateValue [Runtime]"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"bm_id3148685\n"
+"03030102.xhp\n"
+"bm_id3156344\n"
"help.text"
-msgid "<bookmark_value>Rnd function</bookmark_value>"
-msgstr "<bookmark_value>Hàm Rnd</bookmark_value>"
+msgid "<bookmark_value>DateValue function</bookmark_value>"
+msgstr "<bookmark_value>hàm DateValue</bookmark_value>"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3148685\n"
+"03030102.xhp\n"
+"hd_id3156344\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Hàm Rnd [Runtime]\">Hàm Rnd [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"Hàm DateValue [Runtime]\">Hàm DateValue [Runtime]</link>"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3149669\n"
+"03030102.xhp\n"
+"par_id3150542\n"
"2\n"
"help.text"
-msgid "Returns a random number between 0 and 1."
-msgstr "Trả về một số ngẫu nhiễn giữa 0 và 1."
+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 "Trả về một giá trị ngày tháng từ một chuỗi ngày tháng. Chuỗi ngày tháng là một ngày tháng hoàn toàn được đại diện dưới dạng một giá trị thuộc số riêng lẻ. Bạn cũng có thể sử dụng số dãy này để tính hiệu của hai ngày tháng."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
+"03030102.xhp\n"
+"hd_id3148799\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3150543\n"
+"03030102.xhp\n"
+"par_id3154910\n"
"4\n"
"help.text"
-msgid "Rnd [(Expression)]"
-msgstr "Rnd [(Biểu_thức)]"
+msgid "DateValue [(date)]"
+msgstr "DateValue [(ngày)]"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3149655\n"
+"03030102.xhp\n"
+"hd_id3150870\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
+"03030102.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Date"
+msgstr "Ngày"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
+"03030102.xhp\n"
+"hd_id3153969\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03080302.xhp
-#, fuzzy
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3125864\n"
+"03030102.xhp\n"
+"par_id3153770\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression."
-msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào."
+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>Ngày:</emph> biểu thức chuỗi mà chứa ngày tháng bạn muốn tính. Có thể ghi rõ ngày tháng bằng gần bất cứ định dạng nào."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3155306\n"
-"12\n"
+"03030102.xhp\n"
+"par_id3153189\n"
+"22\n"
"help.text"
-msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
-msgstr "<emph>Bỏ sót:</emph> trả về số ngẫu nhiên kế tiếp trong chuỗi."
+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 "Bạn có thể sử dụng hàm này để chuyển đổi một ngày tháng mà xảy ra giữa ngày 1582-12-01 và 9999-12-31 sang một giá trị số nguyên riêng lẻ. Do đó thì bạn có thể sử dụng giá trị này để tính hiệu của hai ngày đó. Nếu đối số ngày tháng nằm ở ngoại phạm vi hợp lệ, $[officename] sẽ trả về một thông điệp lỗi."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3147318\n"
-"14\n"
+"03030102.xhp\n"
+"par_id3146974\n"
+"23\n"
"help.text"
-msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
-msgstr "Hàm <emph>Rnd</emph> chỉ trả về những giá trị trong phạm vị 0 đến 1. Để tạo ra các số nguyên ngẫu nhiên trong một phạm vi đã cho, dùng công thức trong mẫu ví dụ theo đây:"
+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 "Trái ngược với hàm DateSerial mà gửi mỗi năm, tháng và ngày dưới dạng một giá trị riêng, hàm DateValue gửi ngày tháng dưới dạng « tháng.[,]ngày.[,]năm »."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3151118\n"
-"15\n"
+"03030102.xhp\n"
+"hd_id3153142\n"
+"24\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Đánh số từ 1 đến 5\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Đánh số từ 6 đến 8\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Lớn hơn 8\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"Phạm vi bên ngoài 1 đến 10\""
-
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
+"03030103.xhp\n"
"tit\n"
"help.text"
-msgid "Str Function [Runtime]"
-msgstr "Hàm Str [Runtime]"
+msgid "Day Function [Runtime]"
+msgstr "Hàm Day [Runtime]"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"bm_id3143272\n"
+"03030103.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>Str function</bookmark_value>"
-msgstr "<bookmark_value>hàm Str</bookmark_value>"
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr "<bookmark_value>hàm Day</bookmark_value>"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3143272\n"
+"03030103.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Hàm Str [Runtime]\">Hàm Str [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Hàm Day [Runtime]\">Hàm Day [Runtime]</link>"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3155100\n"
+"03030103.xhp\n"
+"par_id3147560\n"
"2\n"
"help.text"
-msgid "Converts a numeric expression into a string."
-msgstr "Chuyển đổi một biểu thức thuộc số sang một chuỗi."
+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 "Trả về một giá trị đại diện ngày của tháng dựa vào một số ngày dãy được tạo ra bởi hàm <emph>DateSerial</emph> hoặc <emph>DateValue</emph>."
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
+"03030103.xhp\n"
+"hd_id3149456\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3149497\n"
+"03030103.xhp\n"
+"par_id3150358\n"
"4\n"
"help.text"
-msgid "Str (Expression)"
-msgstr "Str (Biểu_thức)"
+msgid "Day (Number)"
+msgstr "Day (Number)"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3150040\n"
+"03030103.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
+"03030103.xhp\n"
+"par_id3125865\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
+"03030103.xhp\n"
+"hd_id3150448\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3149178\n"
+"03030103.xhp\n"
+"par_id3156423\n"
"8\n"
"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào."
+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>Số:</emph> một biểu thức thuộc số mà chứa một số ngày tháng dãy từ đó bạn có thể xác định ngày của tháng."
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3146958\n"
+"03030103.xhp\n"
+"par_id3145786\n"
"9\n"
"help.text"
-msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
-msgstr "Hàm <emph>Str</emph> chuyển đổi một biến thuộc số, hay kết quả của một phép tính, sang một chuỗi. Số âm có dấu trừ đi trước. Số dương có dấu cách đi trước (thay cho dấu cộng)."
+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 "Về cơ bản thì hàm này là mặt đối lập của hàm DateSerial, trả về ngày của tháng từ một số ngày dãy được tạo ra bởi hàm <emph>DateSerial</emph> hoặc <emph>DateValue</emph>. Ví dụ, biểu thức"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3155419\n"
-"10\n"
+"03030103.xhp\n"
+"par_id3153190\n"
+"11\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "returns the value 20."
+msgstr "trả về giá trị 20."
-#: 03030300.xhp
+#: 03030103.xhp
msgctxt ""
-"03030300.xhp\n"
-"tit\n"
+"03030103.xhp\n"
+"hd_id3149481\n"
+"12\n"
"help.text"
-msgid "System Date and Time"
-msgstr "Ngày và Giờ của Hệ thống"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030300.xhp
+#: 03030103.xhp
msgctxt ""
-"03030300.xhp\n"
-"hd_id3154923\n"
-"1\n"
+"03030103.xhp\n"
+"par_id3149260\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
-msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"Ngày và Giờ của Hệ thống\">Ngày và Giờ của Hệ thống</link>"
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
-#: 03030300.xhp
+#: 03030104.xhp
msgctxt ""
-"03030300.xhp\n"
-"par_id3149457\n"
-"2\n"
+"03030104.xhp\n"
+"tit\n"
"help.text"
-msgid "The following functions and statements set or return the system date and time."
-msgstr "Những hàm và câu lệnh theo đây đặt hay trả về ngày tháng và giờ hiện thời của hệ thống."
+msgid "Month Function [Runtime]"
+msgstr "Hàm Month [Runtime]"
-#: 03090200.xhp
+#: 03030104.xhp
msgctxt ""
-"03090200.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"bm_id3153127\n"
"help.text"
-msgid "Loops"
-msgstr "Vòng lặp"
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr "<bookmark_value>hàm Month</bookmark_value>"
-#: 03090200.xhp
+#: 03030104.xhp
msgctxt ""
-"03090200.xhp\n"
-"hd_id3153990\n"
+"03030104.xhp\n"
+"hd_id3153127\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
-msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Vòng lặp\">Vòng lặp</link>"
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Hàm Month [Runtime]\">Hàm Month [Runtime]</link>"
-#: 03090200.xhp
+#: 03030104.xhp
msgctxt ""
-"03090200.xhp\n"
-"par_id3147226\n"
+"03030104.xhp\n"
+"par_id3148550\n"
"2\n"
"help.text"
-msgid "The following statements execute loops."
-msgstr "Theo đây có những câu lệnh thực hiện vòng lặp."
+msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
+msgstr "Trả về tháng của năm từ một ngày dãy được tạo ra bởi hàm DateSerial hoặc DateValue."
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"hd_id3145068\n"
+"3\n"
"help.text"
-msgid "Mathematical Operators"
-msgstr "Toán tử"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"hd_id3149234\n"
-"1\n"
+"03030104.xhp\n"
+"par_id3150398\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Toán tử Toán học\">Toán tử Toán học</link>"
+msgid "Month (Number)"
+msgstr "Tháng (Số)"
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"03030104.xhp\n"
+"hd_id3154366\n"
+"5\n"
"help.text"
-msgid "The following mathematical operators are supported in $[officename] Basic."
-msgstr "$[officename] Basic hỗ trợ những toán tử toán học theo đây."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"par_id3148552\n"
-"3\n"
+"03030104.xhp\n"
+"par_id3154125\n"
+"6\n"
"help.text"
-msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
-msgstr "Chương này cung cấp một miêu tả chung ngắn về tất cả các toán tử kiểu số học yêu cầu để tính toán bên trong chương trình."
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"hd_id3150768\n"
+"7\n"
"help.text"
-msgid "Do...Loop Statement [Runtime]"
-msgstr "Câu lệnh Do...Loop [Runtime]"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"bm_id3156116\n"
+"03030104.xhp\n"
+"par_id3156423\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Do...Loop (theo vòng lặp)</bookmark_value><bookmark_value>While (trong khi); Do loop (theo vòng lặp)</bookmark_value><bookmark_value>Until (đến khi)</bookmark_value><bookmark_value>vòng lặp</bookmark_value>"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+msgstr "<emph>Số:</emph> biểu thức thuộc số mà chứa số ngày dãy được dùng để xác định tháng của năm."
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3156116\n"
-"1\n"
+"03030104.xhp\n"
+"par_id3153770\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Câu lệnh Do...Loop [Runtime]\">Câu lệnh Do...Loop [Runtime]</link>"
+msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
+msgstr "Hàm này là mặt đối lập của hàm <emph>DateSerial</emph>. Nó trả về tháng của năm mà tương ứng với ngày dãy được tạo ra bằng hàm <emph>DateSerial</emph> hoặc <emph>DateValue</emph>. Thí dụ, biểu thức"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3109850\n"
-"2\n"
+"03030104.xhp\n"
+"par_id3145366\n"
+"11\n"
"help.text"
-msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
-msgstr "Lặp lại những câu lệnh nằm giữa câu lệnh Do (làm) và câu lệnh Loop (vòng lặp) trong khi điều kiện là Đúng, hoặc đên khi điều kiện trở thành Đúng."
+msgid "returns the value 12."
+msgstr "trả về giá trị 12."
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
-"3\n"
+"03030104.xhp\n"
+"hd_id3146923\n"
+"12\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155150\n"
-"4\n"
+"03030104.xhp\n"
+"par_id3149664\n"
+"14\n"
"help.text"
-msgid "Do [{While | Until} condition = True]"
-msgstr "Do [{While | Until} condition = True]"
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgstr "MsgBox \"\" & Month(Now) ,64,\"The current month\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"5\n"
+"03030105.xhp\n"
+"tit\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "WeekDay Function [Runtime]"
+msgstr "Hàm WeekDay [Runtime]"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150789\n"
-"6\n"
+"03030105.xhp\n"
+"bm_id3153127\n"
"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
+msgid "<bookmark_value>WeekDay function</bookmark_value>"
+msgstr "<bookmark_value>hàm WeekDay</bookmark_value>"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155805\n"
-"7\n"
+"03030105.xhp\n"
+"hd_id3153127\n"
+"1\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+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=\"Hàm WeekDay [Runtime]\">Hàm WeekDay [Runtime]</link>"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145090\n"
-"8\n"
+"03030105.xhp\n"
+"par_id3146795\n"
+"2\n"
"help.text"
-msgid "Loop"
-msgstr "Vòng lặp"
+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 "Trả về số tương ứng với ngày của tuần được đại diện bởi một số ngày dãy được tạo ra bằng hàm DateSerial hoặc DateValue."
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154749\n"
-"9\n"
+"03030105.xhp\n"
+"hd_id3145068\n"
+"3\n"
"help.text"
-msgid "or"
-msgstr "hoặc"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150503\n"
-"10\n"
+"03030105.xhp\n"
+"par_id3149655\n"
+"4\n"
"help.text"
-msgid "Do"
-msgstr "Do"
+msgid "WeekDay (Number)"
+msgstr "WeekDay (Số)"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149762\n"
-"11\n"
+"03030105.xhp\n"
+"hd_id3148799\n"
+"5\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150984\n"
-"12\n"
+"03030105.xhp\n"
+"par_id3154125\n"
+"6\n"
"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3143228\n"
-"13\n"
+"03030105.xhp\n"
+"hd_id3150768\n"
+"7\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149235\n"
-"14\n"
+"03030105.xhp\n"
+"par_id3151042\n"
+"8\n"
"help.text"
-msgid "Loop [{While | Until} condition = True]"
-msgstr "Loop [{While | Until} condition = True]"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
+msgstr "<emph>Số:</emph> biểu thức số nguyên mà chứa số ngày dãy được dùng để xác định hôm của tuần (1-7)."
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3156024\n"
-"15\n"
+"03030105.xhp\n"
+"par_id3159254\n"
+"9\n"
"help.text"
-msgid "Parameters/Elements"
-msgstr "Tham số/Phần tử"
+msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
+msgstr "Mẫu thí dụ theo đây xác định hôm của tuần, dùng hàm WeekDay khi bạn nhập một ngày tháng."
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3156344\n"
-"16\n"
+"03030105.xhp\n"
+"hd_id3148616\n"
+"10\n"
"help.text"
-msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
-msgstr "<emph>Điều_kiện</emph> : một biểu thức kiểu so sánh, thuộc số hay chuỗi mà ước tính là hoặc Đúng hoặc Sai."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149669\n"
-"17\n"
+"03030105.xhp\n"
+"par_id3148576\n"
+"13\n"
"help.text"
-msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
-msgstr "<emph>Khối câu lệnh</emph> : những câu lệnh bạn muốn lặp lại trong khi hoặc đến khi điều kiện là Đúng."
+msgid "' Return And display the day of the week"
+msgstr "REM Trả về và hiển thị hôm của tuần"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150791\n"
-"18\n"
+"03030105.xhp\n"
+"par_id3151117\n"
+"16\n"
"help.text"
-msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
-msgstr "Câu lệnh <emph>Do...Loop</emph> (làm...vòng lặp) thực hiện một vòng lặp miến là, hoặc đến khi một điều kiện nào đó là Đúng. Điều kiện thoát phải được nhập vào phía sau câu lệnh kiểu <emph>Do</emph> hay <emph>Loop</emph>. Những mẫu thí dụ theo đây là tổ hợp đúng:"
+msgid "sDay=\"Sunday\""
+msgstr "sDay=\"Chủ Nhật\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"19\n"
+"03030105.xhp\n"
+"par_id3153952\n"
+"18\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "sDay=\"Monday\""
+msgstr "sDay=\"Thứ Hai\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
+"03030105.xhp\n"
+"par_id3153157\n"
"20\n"
"help.text"
-msgid "Do While condition = True"
-msgstr "Do While condition = True"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
-"help.text"
-msgid "...statement block"
-msgstr "...khối câu lệnh"
+msgid "sDay=\"Tuesday\""
+msgstr "sDay=\"Thứ Ba\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3125864\n"
+"03030105.xhp\n"
+"par_id3154942\n"
"22\n"
"help.text"
-msgid "Loop"
-msgstr "Vòng lặp"
+msgid "sDay=\"Wednesday\""
+msgstr "sDay=\"Thứ Tư\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154124\n"
+"03030105.xhp\n"
+"par_id3155416\n"
"24\n"
"help.text"
-msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
-msgstr "Khối câu lệnh nằm giữa hai câu lệnh <emph>Do While</emph> (làm trong khi) và <emph>Loop</emph> (vòng lặp) được lặp lại miễn là điều kiện là Đúng."
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr "Do Until condition = True"
+msgid "sDay=\"Thursday\""
+msgstr "sDay=\"Thứ Năm\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
+"03030105.xhp\n"
+"par_id3154015\n"
"26\n"
"help.text"
-msgid "...statement block"
-msgstr "...khối câu lệnh"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"27\n"
-"help.text"
-msgid "Loop"
-msgstr "Vòng lặp"
+msgid "sDay=\"Friday\""
+msgstr "sDay=\"Thứ Sáu\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150440\n"
-"29\n"
+"03030105.xhp\n"
+"par_id3153707\n"
+"28\n"
"help.text"
-msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
-msgstr "Khối câu lệnh nằm giữa hai câu lệnh <emph>Do Until</emph> (làm đến khi) và <emph>Loop</emph> (vòng lặp) thì được lặp lại nếu/miễn là điều kiện là Sai."
+msgid "sDay=\"Saturday\""
+msgstr "sDay=\"Thứ Bảy\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153952\n"
+"03030105.xhp\n"
+"par_id3148993\n"
"30\n"
"help.text"
-msgid "Do"
-msgstr "Do"
+msgid "MsgBox \"\" + sDay,64,\"Today Is\""
+msgstr "msgbox \"\" + sDay,64,\"Hôm nay là hôm\""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"31\n"
+"03030106.xhp\n"
+"tit\n"
"help.text"
-msgid "...statement block"
-msgstr "...khối câu lệnh"
+msgid "Year Function [Runtime]"
+msgstr "Hàm Năm [Runtime]"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"32\n"
+"03030106.xhp\n"
+"bm_id3148664\n"
"help.text"
-msgid "Loop While condition = True"
-msgstr "Loop While condition = True"
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr "<bookmark_value>hàm Năm</bookmark_value>"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3146985\n"
-"34\n"
+"03030106.xhp\n"
+"hd_id3148664\n"
+"1\n"
"help.text"
-msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
-msgstr "Khối câu lệnh nằm giữa hai câu lệnh Do (làm) và Loop (vòng lặp) thì lặp lại miễn là điều kiện là Đúng."
+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=\"Hàm Năm [Runtime]\">Hàm Năm [Runtime]</link>"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150488\n"
-"35\n"
+"03030106.xhp\n"
+"par_id3149655\n"
+"2\n"
"help.text"
-msgid "Do"
-msgstr "Do"
+msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Trả về năm từ một số ngày dãy được tạo ra bởi hàm DateSerial hoặc DateValue."
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153189\n"
-"36\n"
+"03030106.xhp\n"
+"hd_id3154125\n"
+"3\n"
"help.text"
-msgid "...statement block"
-msgstr "...khối câu lệnh"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"37\n"
+"03030106.xhp\n"
+"par_id3147229\n"
+"4\n"
"help.text"
-msgid "Loop Until condition = True"
-msgstr "Loop Until condition = True"
+msgid "Year (Number)"
+msgstr "Year (Số)"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3151117\n"
-"39\n"
+"03030106.xhp\n"
+"hd_id3154685\n"
+"5\n"
"help.text"
-msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
-msgstr "Khối câu lệnh nằm giữa hai câu lệnh <emph>Do</emph> (làm) và <emph>Loop</emph> (vòng lặp) lặp lại đến khi điều kiện là Đúng."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149484\n"
-"41\n"
+"03030106.xhp\n"
+"par_id3153970\n"
+"6\n"
"help.text"
-msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
-msgstr "Hãy dùng câu lệnh <emph>Exit Do</emph> (thoát làm) để kết thúc tuyệt đối vòng lặp. Bạn có thể thêm câu lệnh này vào bất cứ nơi nào trong một câu lệnh kiểu <emph>Do</emph>...<emph>Loop</emph> (làm...vòng lặp). Cũng có thể xác định một điều kiện thoát dùng cấu trúc <emph>If...Then</emph> (nếu...thì) như theo đây:"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149262\n"
-"42\n"
+"03030106.xhp\n"
+"hd_id3150440\n"
+"7\n"
"help.text"
-msgid "Do..."
-msgstr "Làm..."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149298\n"
-"43\n"
+"03030106.xhp\n"
+"par_id3163712\n"
+"8\n"
"help.text"
-msgid "statements"
-msgstr "câu lệnh"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
+msgstr "<emph>Số:</emph> biểu thức số nguyên mà chứa số ngày dãy được dùng để xác định năm."
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145646\n"
-"44\n"
+"03030106.xhp\n"
+"par_id3152596\n"
+"9\n"
"help.text"
-msgid "If condition = True Then Exit Do"
-msgstr "If condition = True Then Exit Do"
+msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
+msgstr "Hàm này là mặt đối lập của hàm <emph>DateSerial</emph>, và trả về năm của một ngày tháng kiểu dãy. Ví dụ, biểu thức:"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"45\n"
+"03030106.xhp\n"
+"par_id3149483\n"
+"11\n"
"help.text"
-msgid "statements"
-msgstr "câu lệnh"
+msgid "returns the value 1994."
+msgstr "trả về giá trị 1994."
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153159\n"
-"46\n"
+"03030106.xhp\n"
+"hd_id3146985\n"
+"12\n"
"help.text"
-msgid "Loop..."
-msgstr "Vòng lặp..."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3147396\n"
-"47\n"
+"03030106.xhp\n"
+"par_id3153363\n"
+"14\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ :"
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr "MsgBox \"\" & Year(Now) ,64,\"Năm nay\""
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
+"03030107.xhp\n"
"tit\n"
"help.text"
-msgid "Oct Function [Runtime]"
-msgstr "Hàm Oct [Runtime]"
+msgid "CDateToIso Function [Runtime]"
+msgstr "Hàm CDateToIso [Runtime]"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"bm_id3155420\n"
+"03030107.xhp\n"
+"bm_id3150620\n"
"help.text"
-msgid "<bookmark_value>Oct function</bookmark_value>"
-msgstr "<bookmark_value>hàm Oct</bookmark_value>"
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
+msgstr "<bookmark_value>Hàm CdateToIso</bookmark_value>"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3155420\n"
+"03030107.xhp\n"
+"hd_id3150620\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Hàm Oct [Runtime]\">Hàm Oct [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"Hàm CDateToIso [Runtime]\">Hàm CDateToIso [Runtime]</link>"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3154924\n"
+"03030107.xhp\n"
+"par_id3151097\n"
"2\n"
"help.text"
-msgid "Returns the octal value of a number."
-msgstr "Trả về giá trị bát phăn của một số."
+msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Trả về ngày tháng theo định dạng ISO từ một số ngày tháng kiểu dãy được tạo ra bởi hàm DateSerial hoặc DateValue."
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
+"03030107.xhp\n"
+"hd_id3159224\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3150543\n"
+"03030107.xhp\n"
+"par_id3149497\n"
"4\n"
"help.text"
-msgid "Oct (Number)"
-msgstr "Oct (Số)"
+msgid "CDateToIso(Number)"
+msgstr "CDateToIso(Số)"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3153360\n"
+"03030107.xhp\n"
+"hd_id3152347\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
+"03030107.xhp\n"
+"par_id3154422\n"
"6\n"
"help.text"
msgid "String"
msgstr "Chuỗi"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
+"03030107.xhp\n"
+"hd_id3147303\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3150768\n"
+"03030107.xhp\n"
+"par_id3145136\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
-msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào cần chuyển đổi sang một giá trị bát phân."
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr "<emph>Số:</emph> số nguyên chứa số ngày tháng kiểu dãy."
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
+"03030107.xhp\n"
+"hd_id3147243\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr "Tính căn bậc hai"
-
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
-msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Tính căn bậc hai\">Tính căn bậc hai</link>"
-
-#: 03080400.xhp
+#: 03030107.xhp
msgctxt ""
-"03080400.xhp\n"
-"par_id3159414\n"
-"2\n"
+"03030107.xhp\n"
+"par_id3153126\n"
+"11\n"
"help.text"
-msgid "Use this function to calculate square roots."
-msgstr "Hãy dùng hàm này để tính căn bậc hai."
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgstr "MsgBox \"\" & CDateToIso(Now) ,64,\"Ngày ISO\""
#: 03030108.xhp
msgctxt ""
@@ -9082,7 +13766,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
#: 03030108.xhp
msgctxt ""
@@ -9138,888 +13822,622 @@ msgctxt ""
msgid "returns 12/31/2002 in the date format of your system"
msgstr "trả về 12/31/2002 theo định dạng ngày tháng của hệ điều hành"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
+"03030110.xhp\n"
"tit\n"
"help.text"
-msgid "CCur Function [Runtime]"
-msgstr "Hàm CCur [Runtime]"
+msgid "DateAdd Function [Runtime]"
+msgstr "Hàm DateAdd [Runtime]"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"bm_id8926053\n"
+"03030110.xhp\n"
+"bm_id6269417\n"
"help.text"
-msgid "<bookmark_value>CCur function</bookmark_value>"
-msgstr "<bookmark_value>hàm CCur</bookmark_value>"
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
+msgstr "<bookmark_value>hàm DateAdd</bookmark_value>"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10541\n"
+"03030110.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Hàm CCur [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Hàm DateAdd [Runtime]</link>"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10545\n"
+"03030110.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
-msgstr "Chuyển đổi một biểu thức kiểu chuỗi hay thuộc số sang một biểu thức kiểu tiền tệ. Thiết lập miền địa phương được dùng để đặt dấu thập phân và ký hiệu tiền tệ."
+msgid "Adds a date interval to a given date a number of times and returns the resulting date."
+msgstr "Thêm một khoảng ngày vào một ngày tháng đã ghi rõ một số lần đã ghi rõ rồi trả về ngày tháng kết quả."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
+"03030110.xhp\n"
+"par_idN1055B\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105E8\n"
+"03030110.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "CCur(Expression)"
-msgstr "Ccur(Biểu_thức)"
+msgid "DateAdd (Add, Count, Date)"
+msgstr "DateAdd (Cộng, Đếm, Ngày)"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
+"03030110.xhp\n"
+"par_idN1061E\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
+"03030110.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "Currency"
-msgstr "Tiền tệ"
+msgid "A Variant containing a date."
+msgstr "Một Biến thể chứa một ngày tháng."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
+"03030110.xhp\n"
+"par_idN10625\n"
"help.text"
-msgid "Parameter:"
+msgid "Parameters:"
msgstr "Tham số :"
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F6\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Biểu_thức: bất cứ biểu thức kiểu chuỗi hay thuộc số cần chuyển đổi."
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tan Function [Runtime]"
-msgstr "Hàm Tan [Runtime]"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
-"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr "<bookmark_value>hàm Tan</bookmark_value>"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Hàm Tan [Runtime]\">Hàm Tan [Runtime]</link>"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3148663\n"
-"2\n"
-"help.text"
-msgid "Determines the tangent of an angle. The angle is specified in radians."
-msgstr "Xác định tang của một góc. Góc được ghi rõ theo radian."
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153379\n"
-"3\n"
-"help.text"
-msgid "Using the angle Alpha, the Tan Function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
-msgstr "Dùng góc Alpha, hàm Tan tính tỷ lệ giữa chiều dài của cạnh đối với góc và chiều dài của cạnh kề với góc, trong một hình tam giác vuông góc."
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
-msgstr "Tan(Alpha) = cạnh đối với góc/cạnh kề với góc"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
-"help.text"
-msgid "Tan (Number)"
-msgstr "Tan (số)"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
+"03030110.xhp\n"
+"par_idN10629\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Add - A string expression from the following table, specifying the date interval."
+msgstr "Cộng — một biểu thức chuỗi từ bảng theo sau, ghi rõ khoảng ngày."
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
+"03030110.xhp\n"
+"par_idN10636\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Add (string value)"
+msgstr "Add (giá trị chuỗi)"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3145786\n"
-"10\n"
+"03030110.xhp\n"
+"par_idN1063C\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
-msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số nào cho đó bạn muốn tính tang (theo radian)."
+msgid "Explanation"
+msgstr "Giải thích"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3153728\n"
-"11\n"
+"03030110.xhp\n"
+"par_idN10643\n"
"help.text"
-msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
-msgstr "Để chuyển đổi độ sang radian, hãy nhân với π/180. Ngược lại, để chuyển đổi radian sang độ, nhân với 180/π."
+msgid "yyyy"
+msgstr "nnnn"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3155414\n"
-"12\n"
+"03030110.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "degrees=(radiant*180)/Pi"
-msgstr "độ=(radiant*180)/π"
+msgid "Year"
+msgstr "Năm"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3146975\n"
-"13\n"
+"03030110.xhp\n"
+"par_idN10650\n"
"help.text"
-msgid "radiant=(degrees*Pi)/180"
-msgstr "radiant=(độ*π)/180"
+msgid "q"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3147434\n"
-"14\n"
+"03030110.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "π xấp xỉ là 3.141593."
+msgid "Quarter"
+msgstr "Quý"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
+"03030110.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "m"
+msgstr ""
-#: 03080104.xhp
-#, fuzzy
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3148646\n"
-"16\n"
+"03030110.xhp\n"
+"par_idN10663\n"
"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr "REM Trong mẫu ví dụ này, mục nhập theo đây có thể tính được đối với một hình tam giác vuông góc:"
+msgid "Month"
+msgstr "Tháng"
-#: 03080104.xhp
-#, fuzzy
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3150012\n"
-"17\n"
+"03030110.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
-msgstr "REM Cạnh đối với góc và góc (theo độ) để tính chiều dài của cạnh kề với góc:"
+msgid "y"
+msgstr ""
-#: 03080104.xhp
-#, fuzzy
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3153158\n"
-"19\n"
+"03030110.xhp\n"
+"par_idN10670\n"
"help.text"
-msgid "' Pi = 3.1415926 is a pre-defined variable"
-msgstr "REM π = 3.1415926 là một biến đã xác định sẵn"
+msgid "Day of year"
+msgstr "Ngày của năm"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3145252\n"
-"22\n"
+"03030110.xhp\n"
+"par_idN10677\n"
"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
-msgstr "d1 = InputBox$ (\"Nhập chiều dài của cạnh đối với góc: \",\"đối\")"
+msgid "w"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3149582\n"
-"23\n"
+"03030110.xhp\n"
+"par_idN1067D\n"
"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
-msgstr "dAlpha = InputBox$ (\"Nhập góc Alpha theo độ: \",\"Alpha\")"
+msgid "Weekday"
+msgstr "Hôm của tuần"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3154016\n"
-"24\n"
+"03030110.xhp\n"
+"par_idN10684\n"
"help.text"
-msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
-msgstr "Print \"chiều dài cảu cạnh kề với góc là\"; (d1 / tan (dAlpha * Pi / 180))"
+msgid "ww"
+msgstr "tn"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"tit\n"
+"03030110.xhp\n"
+"par_idN1068A\n"
"help.text"
-msgid "CDate Function [Runtime]"
-msgstr "Hàm CDate [Runtime]"
+msgid "Week of year"
+msgstr "Tuần của năm"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"bm_id3150772\n"
+"03030110.xhp\n"
+"par_idN10691\n"
"help.text"
-msgid "<bookmark_value>CDate function</bookmark_value>"
-msgstr "<bookmark_value>hàm CDate</bookmark_value>"
+msgid "d"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3150772\n"
-"1\n"
+"03030110.xhp\n"
+"par_idN10697\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"Hàm CDate [Runtime]\">Hàm CDate [Runtime]</link>"
+msgid "Day"
+msgstr "Ngày"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3150986\n"
-"2\n"
+"03030110.xhp\n"
+"par_idN1069E\n"
"help.text"
-msgid "Converts any string or numeric expression to a date value."
-msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một giá trị ngày tháng."
+msgid "h"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3148944\n"
-"3\n"
+"03030110.xhp\n"
+"par_idN106A4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Hour"
+msgstr "Giờ"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3148947\n"
-"4\n"
+"03030110.xhp\n"
+"par_idN106AB\n"
"help.text"
-msgid "CDate (Expression)"
-msgstr "CDate (Biểu_thức)"
+msgid "n"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3148552\n"
-"5\n"
+"03030110.xhp\n"
+"par_idN106B1\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Minute"
+msgstr "Phút"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03030110.xhp\n"
+"par_idN106B8\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "s"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3153525\n"
-"7\n"
+"03030110.xhp\n"
+"par_idN106BE\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Second"
+msgstr "Giây"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3150359\n"
-"8\n"
+"03030110.xhp\n"
+"par_idN106C1\n"
"help.text"
-msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
-msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức nào kiểu chuỗi hay thuộc số mà bạn muốn chuyển đổi."
+msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
+msgstr "Đếm — một biểu thức thuộc số ghi rõ bao nhiều lần khoảng Cộng được cộng (Đếm là một số dương) hay trừ (Đếm là một số âm)."
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3125864\n"
-"9\n"
+"03030110.xhp\n"
+"par_idN106C4\n"
"help.text"
-msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
-msgstr "Khi bạn chuyển đổi một biểu thức kiểu chuỗi, ngày tháng và giờ phải được nhập theo định dạng Th.Ng.NNăm Gi.Ph.gy (v.d. 05.13.2008 19.25.44), như được xác định bởi hai quy ước <emph>DateValue</emph> và <emph>TimeValue</emph>. Trong biểu thức thuộc số, các giá trị bên trái dấu thập phân đại diện ngày tháng, bắt đầu từ ngày 31, tháng 12/1899. Các giá trị bên phải đại diện thời gian."
+msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
+msgstr "Ngày — một ngày tháng đã ghi rõ, hoặc tên của một biến Biến thể chứa một ngày tháng. Giá trị Cộng sẽ được cộng Đếm lần vào giá trị này."
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
+"03030110.xhp\n"
+"par_idN106C7\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
+"03030120.xhp\n"
"tit\n"
"help.text"
-msgid "Events"
-msgstr "Sự kiện"
-
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155506\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Sự kiện\">Sự kiện</link>"
+msgid "DateDiff Function [Runtime]"
+msgstr "Hàm DateDiff [Runtime]"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3146114\n"
-"2\n"
+"03030120.xhp\n"
+"bm_id6134830\n"
"help.text"
-msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
-msgstr "Xác định các phép gán sự kiện cho điều khiển hoặc hộp thoại đã chọn. Các sự kiện có thể dùng phụ thuộc vào kiểu điều khiển đã chọn."
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
+msgstr "<bookmark_value>hàm DateDiff</bookmark_value>"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3145387\n"
-"16\n"
+"03030120.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "When receiving focus"
-msgstr "Tiêu điểm đã nhận"
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">Hàm DateDiff [Runtime]</link>"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155090\n"
-"17\n"
+"03030120.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Sự kiện này xảy ra nếu điều khiển nhận tiêu điểm.</ahelp>"
+msgid "Returns the number of date intervals between two given date values."
+msgstr "Trả về số khoảng ngày giữa hai giá trị ngày tháng đã cho."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3152892\n"
-"18\n"
+"03030120.xhp\n"
+"par_idN10549\n"
"help.text"
-msgid "When losing focus"
-msgstr "Tiêu điểm bị mất"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153305\n"
-"19\n"
+"03030120.xhp\n"
+"par_idN10648\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Sự kiện này xảy ra nếu điều khiển mất tiêu điểm.</ahelp>"
+msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+msgstr "DateDiff (Cộng, Ngày1, Ngày2 [, Đầu_tuần [, Đầu_năm]])"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3152896\n"
-"20\n"
+"03030120.xhp\n"
+"par_idN1064B\n"
"help.text"
-msgid "Key pressed"
-msgstr "Phím đã bấm"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3148837\n"
-"21\n"
+"03030120.xhp\n"
+"par_idN1064F\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">Sự kiện này xảy ra khi người dùng bấm bất cứ phím nào trong khi điều khiển này có tiêu điểm.</ahelp>"
+msgid "A number."
+msgstr "Một con số."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3146869\n"
-"43\n"
+"03030120.xhp\n"
+"par_idN10652\n"
"help.text"
-msgid "Key released"
-msgstr "Phím đã nhả"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155267\n"
-"44\n"
+"03030120.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_KEYUP\">Sự kiện này xảy ra khi người dùng nhả nút chuột khi điều khiển có tiêu điểm.</ahelp>"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Cộng</emph> — một biểu thức chuỗi từ bảng theo sau, ghi rõ khoảng ngày."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
+"03030120.xhp\n"
+"par_idN10664\n"
"help.text"
-msgid "Modified"
-msgstr "Bị sửa đổi"
+msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
+msgstr "<emph>Ngày1, Ngày2</emph> — hai giá trị ngày tháng cần so sánh."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3156019\n"
-"42\n"
+"03030120.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_CHANGED\">Sự kiện này xảy ra khi điều khiển mất tiêu điểm và nội dung của điều khiển đã thay đổi kể từ khi mất tiêu điểm.</ahelp>"
+msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
+msgstr "<emph>Đầu_tuần</emph> — một tham số tùy chọn mà ghi rõ hôm bắt đầu tuần."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3144508\n"
-"10\n"
+"03030120.xhp\n"
+"par_idN1067A\n"
"help.text"
-msgid "Text modified"
-msgstr "Văn bản bị sửa đổi"
+msgid "Week_start value"
+msgstr "GIá trị đầu_tuần"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3148608\n"
-"11\n"
+"03030120.xhp\n"
+"par_idN10680\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Sự kiện này xảy ra nếu bạn nhập hoặc sửa đổi văn bản trong một trường nhập liệu.</ahelp>"
+msgid "Explanation"
+msgstr "Giải thích"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3159207\n"
-"8\n"
+"03030120.xhp\n"
+"par_idN10687\n"
"help.text"
-msgid "Item status changed"
-msgstr "Trạng thái mục đã thay đổi"
+msgid "0"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155097\n"
-"9\n"
+"03030120.xhp\n"
+"par_idN1068D\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">Sự kiện này xảy ra nếu trạng thái của trường điều khiển bị thay đổi, chẳng hạn, (không) có dấu kiểm.</ahelp>"
+msgid "Use system default value"
+msgstr "Dùng giá trị mặc định của hệ thống"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3151304\n"
-"26\n"
+"03030120.xhp\n"
+"par_idN10694\n"
"help.text"
-msgid "Mouse inside"
-msgstr "Chuột bên trong"
+msgid "1"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3152871\n"
-"27\n"
+"03030120.xhp\n"
+"par_idN1069A\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Sự kiện này xảy ra khi con chuột vào điều khiển này.</ahelp>"
+msgid "Sunday (default)"
+msgstr "Chủ Nhật (mặc định)"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3146778\n"
-"30\n"
+"03030120.xhp\n"
+"par_idN106A1\n"
"help.text"
-msgid "Mouse moved while key pressed"
-msgstr "Chuột di chuyển trong khi nhấn phím"
+msgid "2"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3150403\n"
-"31\n"
+"03030120.xhp\n"
+"par_idN106A7\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">Sự kiện này xảy ra khi người dùng ấn giữ phím trong khi kéo con chuột.</ahelp>"
+msgid "Monday"
+msgstr "Thứ Hai"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3150210\n"
-"32\n"
+"03030120.xhp\n"
+"par_idN106AE\n"
"help.text"
-msgid "Mouse moved"
-msgstr "Chuột di chuyển"
+msgid "3"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3149697\n"
-"33\n"
+"03030120.xhp\n"
+"par_idN106B4\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Sự kiện này xảy ra khi con chuột đi qua ở trên điều khiển này.</ahelp>"
+msgid "Tuesday"
+msgstr "Thứ Ba"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3145216\n"
-"22\n"
+"03030120.xhp\n"
+"par_idN106BB\n"
"help.text"
-msgid "Mouse button pressed"
-msgstr "Nút chuột đã bấm"
+msgid "4"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155914\n"
-"23\n"
+"03030120.xhp\n"
+"par_idN106C1\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">Sự kiện này xảy ra khi người dùng bấm nút chuột trong khi con trỏ nằm trên điều khiển này.</ahelp>"
+msgid "Wednesday"
+msgstr "Thứ Tư"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3148899\n"
-"24\n"
+"03030120.xhp\n"
+"par_idN106C8\n"
"help.text"
-msgid "Mouse button released"
-msgstr "Nút chuột đã nhả"
+msgid "5"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153812\n"
-"25\n"
+"03030120.xhp\n"
+"par_idN106CE\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">Sự kiện này xảy ra khi người dùng nhả nút chuột khi con trỏ ở trên điều khiển này.</ahelp>"
+msgid "Thursday"
+msgstr "Thứ Năm"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3153556\n"
-"28\n"
+"03030120.xhp\n"
+"par_idN106D5\n"
"help.text"
-msgid "Mouse outside"
-msgstr "Chuột bên ngoài"
+msgid "6"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153013\n"
-"29\n"
+"03030120.xhp\n"
+"par_idN106DB\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Sự kiện này xảy ra khi con chuột dời khỏi điều khiển này.</ahelp>"
+msgid "Friday"
+msgstr "Thứ Sáu"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3155759\n"
-"45\n"
+"03030120.xhp\n"
+"par_idN106E2\n"
"help.text"
-msgid "While adjusting"
-msgstr "Đang điều chỉnh"
+msgid "7"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3156364\n"
-"46\n"
+"03030120.xhp\n"
+"par_idN106E8\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Sự kiện này xảy ra khi người dùng kéo thanh cuộn.</ahelp>"
+msgid "Saturday"
+msgstr "Thứ Bảy"
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN106EB\n"
"help.text"
-msgid "Call Stack Window (Calls)"
-msgstr "Cửa sổ Đống Gọi (Lời gọi)"
+msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
+msgstr "<emph>Đầu_năm</emph> — một tham số tùy chọn mà ghi rõ tuần đầu tiên của năm."
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"hd_id3146794\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN106FB\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
-msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Cửa sổ Đống Gọi (Lời gọi)\">Cửa sổ Đống Gọi (Lời gọi)</link>"
+msgid "Year_start value"
+msgstr "GIá trị đầu_năm"
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"par_id3150400\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN10701\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp> The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
-msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Hiển thị dãy các trình con và hàm trong khi thực hiện một chương trình.</ahelp><emph>Đống Gọi</emph> cho phép bạn theo dõi dãy các trình con và hàm trong khi thực hiện một chương trình. Các trình con và hàm đều được hiển thị từ trên xuống dưới, với cái mới nhất ở đầu của danh sách."
+msgid "Explanation"
+msgstr "Giải thích"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN10708\n"
"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "Hàm TwipsPerPixelY [Runtime]"
+msgid "0"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"bm_id3150040\n"
+"03030120.xhp\n"
+"par_idN1070E\n"
"help.text"
-msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
-msgstr "<bookmark_value>hàm TwipsPerPixelY</bookmark_value>"
+msgid "Use system default value"
+msgstr "Dùng giá trị mặc định của hệ thống"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3150040\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"Hàm TwipsPerPixelY [Runtime]\">Hàm TwipsPerPixelY [Runtime]</link>"
+msgid "1"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3154186\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN1071B\n"
"help.text"
-msgid "Returns the number of twips that represent the height of a pixel."
-msgstr "Trả về số các twip đại diện chiều cao của một điểm ảnh."
+msgid "Week 1 is the week with January, 1st (default)"
+msgstr "Tuần 1 là tuần chứa ngày 1, tháng 1 (mặc định)"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
+"03030120.xhp\n"
+"par_idN10722\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "2"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3153681\n"
-"4\n"
+"03030120.xhp\n"
+"par_idN10728\n"
"help.text"
-msgid "n = TwipsPerPixelY"
-msgstr "n = TwipsPerPixelY"
+msgid "Week 1 is the first week containing four or more days of that year"
+msgstr "Tuần 1 là tuần thứ nhất chứa ít nhất bốn ngày của năm đó."
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3148473\n"
-"5\n"
+"03030120.xhp\n"
+"par_idN1072F\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "3"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3154306\n"
-"6\n"
+"03030120.xhp\n"
+"par_idN10735\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Week 1 is the first week containing only days of the new year"
+msgstr "Tuần 1 là tuần thứ nhất chứa chỉ những ngày của năm mới."
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
+"03030120.xhp\n"
+"par_idN10738\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154142\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Kích cỡ điểm ảnh\""
-
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
-msgstr "Chuyển đổi ASCII/ANSI trong chuỗi"
-
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"hd_id3147443\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"Chuyển đổi ASCII/ANSI trong chuỗi\">Chuyển đổi ASCII/ANSI trong chuỗi</link>"
-
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "The following functions convert strings to and from ASCII or ANSI code."
-msgstr "Những hàm theo đây có chuyển đổi chuỗi sang và từ mã ASCII hay ANSI."
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr "Câu lệnh With [Runtime]"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh With</bookmark_value>"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3153311\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Câu lệnh With [Runtime]\">Câu lệnh With [Runtime]</link>"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3159158\n"
-"2\n"
-"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Đặt một đối tượng nào đó thành đối tượng mặc định. Nếu không khai báo một tên đối tượng khác, tất cả các thuộc tính và phương pháp đều tham chiếu đến đối tượng mặc định đến khi tới câu lệnh <emph>End With</emph>."
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03090411.xhp
-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"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Dùng <emph>With</emph> và <emph>End With</emph> nếu bạn có vài thuộc tính hay phương pháp cho một đối tượng riêng lẻ."
-
#: 03030130.xhp
msgctxt ""
"03030130.xhp\n"
@@ -10074,7 +14492,7 @@ msgctxt ""
"par_idN105EB\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
#: 03030130.xhp
msgctxt ""
@@ -10116,891 +14534,1033 @@ msgctxt ""
msgid "Example:"
msgstr "Thí dụ :"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
+"03030200.xhp\n"
"tit\n"
"help.text"
-msgid "DefSng Statement [Runtime]"
-msgstr "Câu lệnh DefSng [Runtime]"
+msgid "Converting Time Values"
+msgstr "Chuyển đổi Giá trị Thời gian"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
-"bm_id2445142\n"
+"03030200.xhp\n"
+"hd_id3147226\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>DefSng statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefSng</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Chuyển đổi Giá trị Thời gian\">Chuyển đổi Giá trị Thời gian</link>"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10577\n"
+"03030200.xhp\n"
+"par_id3149415\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Câu lệnh DefSng [Runtime]</link>"
+msgid "The following functions convert time values to calculable numbers."
+msgstr "Các hàm sau sẽ chuyển đổi giữa giá trị thời gian sang số có thể tính."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10587\n"
+"03030201.xhp\n"
+"tit\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefSng</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+msgid "Hour Function [Runtime]"
+msgstr "Hàm Hour [Runtime]"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1058A\n"
+"03030201.xhp\n"
+"bm_id3156042\n"
+"help.text"
+msgid "<bookmark_value>Hour function</bookmark_value>"
+msgstr "<bookmark_value>Hàm Hour</bookmark_value>"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3156042\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hàm Hour [Runtime]\">Hàm Hour [Runtime]</link>"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149346\n"
+"2\n"
+"help.text"
+msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
+msgstr "Trả về giờ (tiếng) từ một giá trị thời gian được tạo bởi hàm TimeSerial hay TimeValue."
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3147574\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1058E\n"
+"03030201.xhp\n"
+"par_id3147264\n"
+"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "Hour (Number)"
+msgstr "Hour (Số)"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10591\n"
+"03030201.xhp\n"
+"hd_id3145069\n"
+"5\n"
+"help.text"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149670\n"
+"6\n"
+"help.text"
+msgid "Integer"
+msgstr "Số nguyên"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3150359\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10595\n"
+"03030201.xhp\n"
+"par_id3154366\n"
+"8\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+msgstr "<emph>Số:</emph> biểu thức số chứa giá trị thời gian kiểu dãy được dùng để trả về giá trị giờ."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1059C\n"
+"03030201.xhp\n"
+"par_id3154909\n"
+"9\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+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 "Hàm này là mặt đối lập của hàm <emph>TimeSerial</emph>. Nó trả về một giá trị số nguyên mà đại diện giờ từ một giá trị thời gian được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue </emph>. Ví dụ, biểu thức"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105A3\n"
+"03030201.xhp\n"
+"par_id3163798\n"
+"10\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
+msgid "Print Hour(TimeSerial(12,30,41))"
+msgstr "In ra Hour(TimeSerial(12:30:41))"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105AA\n"
+"03030201.xhp\n"
+"par_id3155132\n"
+"11\n"
"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr "<emph>DefSng:</emph> đơn"
+msgid "returns the value 12."
+msgstr "trả về giá trị 12."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
+"03030201.xhp\n"
+"hd_id3147348\n"
+"12\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03101130.xhp
-#, fuzzy
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105B5\n"
+"03030201.xhp\n"
+"par_id3146985\n"
+"13\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tế cho các kiểu biến:"
+msgid "Sub ExampleHour"
+msgstr "Sub ExampleHour"
-#: 03101130.xhp
-#, fuzzy
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105D3\n"
+"03030201.xhp\n"
+"par_id3156441\n"
+"14\n"
"help.text"
-msgid "sSng=Single ' sSng is an implicit single variable"
-msgstr "sSng=Single REM sSng là một biến đơn ngầm"
+msgid "Print \"The current hour is \" & Hour( Now )"
+msgstr "In ra \"Giờ hiện thời là \" & Hour( Now )"
-#: 03120305.xhp
+#: 03030201.xhp
msgctxt ""
-"03120305.xhp\n"
+"03030201.xhp\n"
+"par_id3153145\n"
+"15\n"
+"help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
"tit\n"
"help.text"
-msgid "LTrim Function [Runtime]"
-msgstr "Hàm LTrim [Runtime]"
+msgid "Minute Function [Runtime]"
+msgstr "Hàm Minute [Runtime]"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"bm_id3147574\n"
+"03030202.xhp\n"
+"bm_id3155419\n"
"help.text"
-msgid "<bookmark_value>LTrim function</bookmark_value>"
-msgstr "<bookmark_value>hàm LTrim</bookmark_value>"
+msgid "<bookmark_value>Minute function</bookmark_value>"
+msgstr "<bookmark_value>hàm Minute</bookmark_value>"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3147574\n"
+"03030202.xhp\n"
+"hd_id3155419\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"Hàm LTrim [Runtime]\">Hàm LTrim [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Hàm Minute [Runtime]\">Hàm Minute [Runtime]</link>"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3145316\n"
+"03030202.xhp\n"
+"par_id3156344\n"
"2\n"
"help.text"
-msgid "Removes all leading spaces at the start of a string expression."
-msgstr "Gỡ bỏ mọi dấu cách khỏi đầu của một biểu thức chuỗi."
+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 "Trả về phút của giờ tương ứng với giá trị thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>."
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
+"03030202.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3148552\n"
+"03030202.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "LTrim (Text As String)"
-msgstr "LTrim (Text As String)"
+msgid "Minute (Number)"
+msgstr "Minute (Số)"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
+"03030202.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
+"03030202.xhp\n"
+"par_id3150449\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
+"03030202.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3150792\n"
+"03030202.xhp\n"
+"par_id3153969\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào."
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgstr "<emph>Số:</emph> biểu thức số chứa giá trị thời gian dãy được dùng để trả về giá trị phút."
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3125863\n"
+"03030202.xhp\n"
+"par_id3150869\n"
"9\n"
"help.text"
-msgid "Use this function to remove spaces at the beginning of a string expression."
-msgstr "Hãy sử dụng hàm này để gỡ bỏ các dấu cách khỏi đầu của một biểu thức chuỗi."
+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 "Hàm này là mặt đối lập của hàm <emph>TimeSerial</emph>. Nó trả về phút của giá trị thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>. Ví dụ, biểu thức:"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
+"03030202.xhp\n"
+"par_id3149262\n"
"10\n"
"help.text"
+msgid "Print Minute(TimeSerial(12,30,41))"
+msgstr "In ra Minute(TimeSerial(12:30:41))"
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3148576\n"
+"11\n"
+"help.text"
+msgid "returns the value 30."
+msgstr "trả về giá trị 30."
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"hd_id3150010\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03010103.xhp
+#: 03030202.xhp
msgctxt ""
-"03010103.xhp\n"
+"03030202.xhp\n"
+"par_id3159154\n"
+"13\n"
+"help.text"
+msgid "Sub ExampleMinute"
+msgstr "Sub ExampleMinute"
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3146119\n"
+"14\n"
+"help.text"
+msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgstr "MsgBox \"Phút hiện thời là \"& Minute(Now)& \".\""
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3153726\n"
+"15\n"
+"help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
"tit\n"
"help.text"
-msgid "Print Statement [Runtime]"
-msgstr "Câu lệnh Print [Runtime]"
+msgid "Now Function [Runtime]"
+msgstr "Hàm Now [Runtime]"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"bm_id3147230\n"
+"03030203.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Print</bookmark_value>"
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr "<bookmark_value>hàm Now</bookmark_value>"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3147230\n"
+"03030203.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Câu lệnh Print [Runtime]\">Câu lệnh Print [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Hàm Now [Runtime]\">Hàm Now [Runtime]</link>"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3156281\n"
+"03030203.xhp\n"
+"par_id3149670\n"
"2\n"
"help.text"
-msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
-msgstr "Xuất các chuỗi hoặc biểu thức số đã ghi rõ vào một hộp thoại hoặc tập tin."
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgstr "Trả về ngày tháng hệ thống hiện thời dạng giá trị <emph>Ngày</emph>."
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
+"03030203.xhp\n"
+"hd_id3149456\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3153188\n"
+"03030203.xhp\n"
+"par_id3149655\n"
"4\n"
"help.text"
-msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
-msgstr "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
+msgid "Now"
+msgstr "Now"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
+"03030203.xhp\n"
+"hd_id3154366\n"
"5\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
-
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id2508621\n"
-"help.text"
-msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr "<emph>FileName:</emph> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin mà được đặt bởi câu lệnh Mở (Open) cho tập tin tương ứng."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3163712\n"
+"03030203.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>Expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
-msgstr "<emph>Expression</emph>: bất kỳ biểu thức kiểu số hoặc chuỗi mà nên in ra. Có thể định giới nhiều biểu thức bằng dấu chấm phẩy. Định giới bằng dấu phẩy thì các biểu thức được thụt vào vị trí tab kế tiếp. Không thể điều chỉnh vị trí tab."
+msgid "Date"
+msgstr "Ngày"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3153092\n"
+"03030203.xhp\n"
+"hd_id3147229\n"
"7\n"
"help.text"
-msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr "<emph>Number</emph>: Số dấu cách nên được hàm <emph>Spc</emph> chèn."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3145364\n"
-"8\n"
+"03030203.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
-msgstr "<emph>Pos</emph>: chèn các dấu cách đến khi tới vị trí đã ghi rõ."
+msgid "MsgBox \"It is now \" & Now"
+msgstr "msgbox \"Bây giờ có \" & Now"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3154319\n"
-"9\n"
+"03030204.xhp\n"
+"tit\n"
"help.text"
-msgid "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
-msgstr "Nếu một dấu chấm phẩy hoặc dấu phẩy xuất hiện phía sau biểu thức cuối cùng cần in thì $[officename] Basic cất giữ văn bản trong một bộ đệm nội bộ và tiếp tục lại thực hiện chương trình mà không in ấn. Khi một câu lệnh « Print » (In) khác không có dấu chấm phẩy hoặc dấu phẩy ở cuối được gặp, toàn bộ văn bản cần in ra được in đồng thời."
+msgid "Second Function [Runtime]"
+msgstr "Hàm Second [Runtime]"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3145272\n"
-"10\n"
+"03030204.xhp\n"
+"bm_id3153346\n"
"help.text"
-msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
-msgstr "Các biểu thức số dương thì được in ra với một dấu cách đứng đầu. Biểu thức âm được in ra với một dấu trừ đứng đầu. Vượt quá một phạm vi nào đó cho giá trị chấm động thì biểu thức số tương ứng được in ra theo kiểu ghi số mũ."
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr "<bookmark_value>hàm Second</bookmark_value>"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3154011\n"
-"11\n"
+"03030204.xhp\n"
+"hd_id3153346\n"
+"1\n"
"help.text"
-msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
-msgstr "Biểu thức cần in cũng vượt quá chiều dài đã ghi rõ thì ô hiển thị sẽ tự động cuộn đến dòng kế tiếp."
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Hàm Second [Runtime]\">Hàm Second [Runtime]</link>"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3146969\n"
-"12\n"
+"03030204.xhp\n"
+"par_id3156023\n"
+"2\n"
"help.text"
-msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
-msgstr "Bạn có thể chèn hàm <emph>Tab</emph>, bao bọc trong hai dấu chấm phẩy, nằm giữa các đối số để thụt dữ liệu nhập vào một vị trí cụ thể, hoặc bạn có thể sử dụng hàm <emph>Spc</emph> để chèn một số dấu cách đã ghi rõ."
+msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
+msgstr "Trả về một số nguyên đại diện số giây của số thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>."
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3146912\n"
-"13\n"
+"03030204.xhp\n"
+"hd_id3147264\n"
+"3\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"tit\n"
+"03030204.xhp\n"
+"par_id3146795\n"
+"4\n"
"help.text"
-msgid "Control and Dialog Properties"
-msgstr "Thuộc tính Điều khiển và Hộp thoại"
+msgid "Second (Number)"
+msgstr "Second (Số)"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"bm_id3153379\n"
+"03030204.xhp\n"
+"hd_id3150792\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
-msgstr "<bookmark_value>điều khiển; thuộc tính</bookmark_value><bookmark_value>thuộc tính; điều khiển và hộp thoại</bookmark_value><bookmark_value>hộp thoại; thuộc tính</bookmark_value>"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"hd_id3153379\n"
-"1\n"
+"03030204.xhp\n"
+"par_id3154140\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
-msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Thuộc tính Điều khiển và Hộp thoại\">Thuộc tính Điều khiển và Hộp thoại</link>"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3156280\n"
-"2\n"
+"03030204.xhp\n"
+"hd_id3156280\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
-msgstr "<ahelp hid=\".\">Ghi rõ các thuộc tính về hộp thoại hoặc điều khiển đã chọn.</ahelp> Bạn phải ở chế độ thiết kế để có khả năng sử dụng lệnh này."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"hd_id3151043\n"
-"20\n"
+"03030204.xhp\n"
+"par_id3154124\n"
+"8\n"
"help.text"
-msgid "Entering Data in the Properties Dialog"
-msgstr "Nhập Dữ liệu vào Hộp thoại Thuộc tính"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+msgstr "<emph>Số:</emph> biểu thức thuộc số mà chứa số thời gian dãy được dùng để tính số giây."
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3153771\n"
-"3\n"
+"03030204.xhp\n"
+"par_id3125864\n"
+"9\n"
"help.text"
-msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
-msgstr "Các tổ hợp phím sau có áp dụng khi nhập dữ liệu vào trường đa dòng hoặc hộp tổ hợp của hộp thoại <emph>Thuộc tính</emph>:"
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
+msgstr "Hàm này là mặt đối lập của hàm <emph>TimeSerial</emph>. Nó trả về số giây của một giá trị thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>. Ví dụ, biểu thức:"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3150010\n"
-"18\n"
+"03030204.xhp\n"
+"par_id3153951\n"
+"10\n"
"help.text"
-msgid "Keys"
-msgstr "Phím"
+msgid "Print Second(TimeSerial(12,30,41))"
+msgstr "Print Second(TimeSerial(12,30,41))"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3147317\n"
-"19\n"
+"03030204.xhp\n"
+"par_id3151117\n"
+"11\n"
"help.text"
-msgid "Effects"
-msgstr "Hiệu ứng"
+msgid "returns the value 41."
+msgstr "trả về giá trị 41."
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146121\n"
-"4\n"
+"03030204.xhp\n"
+"hd_id3147426\n"
+"12\n"
"help.text"
-msgid "Alt+Down Arrow"
-msgstr "Alt+mũi tên chỉ xuống"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149581\n"
-"5\n"
+"03030204.xhp\n"
+"par_id3156441\n"
+"14\n"
"help.text"
-msgid "Opens a combo box"
-msgstr "Mở một hộp tổ hợp"
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr "MsgBox \"Giây chính xác hiện thời là \"& Second( Now )"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3147394\n"
-"6\n"
+"03030205.xhp\n"
+"tit\n"
"help.text"
-msgid "Alt+Up Arrow"
-msgstr "Alt+mũi tên lên"
+msgid "TimeSerial Function [Runtime]"
+msgstr "Hàm TimeSerial [Runtime]"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3148455\n"
-"7\n"
+"03030205.xhp\n"
+"bm_id3143271\n"
"help.text"
-msgid "Closes a combo box"
-msgstr "Đóng một hộp tổ hợp"
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr "<bookmark_value>hàm TimeSerial</bookmark_value>"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3154511\n"
-"8\n"
+"03030205.xhp\n"
+"hd_id3143271\n"
+"1\n"
"help.text"
-msgid "Shift+Enter"
-msgstr "Shift+Enter"
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"Hàm TimeSerial [Runtime]\">Hàm TimeSerial [Runtime]</link>"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146971\n"
-"9\n"
+"03030205.xhp\n"
+"par_id3156344\n"
+"2\n"
"help.text"
-msgid "Inserts a line break in multiline fields."
-msgstr "Chèn một chỗ ngắt dòng trong trường đa dòng."
+msgid "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
+msgstr "Tính một giá trị thời gian dãy cho các tham số giờ, phút và giây được gửi dạng giá trị thuộc số. Vì thế bạn có thể dùng giá trị này để tính hiệu số giữa hai thời gian."
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146914\n"
-"10\n"
+"03030205.xhp\n"
+"hd_id3146794\n"
+"4\n"
"help.text"
-msgid "(UpArrow)"
-msgstr "(Mũi tên lên)"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3153714\n"
-"11\n"
+"03030205.xhp\n"
+"par_id3150792\n"
+"5\n"
"help.text"
-msgid "Goes to the previous line."
-msgstr "Về dòng trước."
+msgid "TimeSerial (hour, minute, second)"
+msgstr "TimeSerial (giờ, phút, giây)"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3159266\n"
-"12\n"
+"03030205.xhp\n"
+"hd_id3148797\n"
+"6\n"
"help.text"
-msgid "(DownArrow)"
-msgstr "(Mũi tên xuống)"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146314\n"
-"13\n"
+"03030205.xhp\n"
+"par_id3154908\n"
+"7\n"
"help.text"
-msgid "Goes to the next line."
-msgstr "Tới dòng kế tiếp."
+msgid "Date"
+msgstr "Ngày"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149255\n"
-"14\n"
+"03030205.xhp\n"
+"hd_id3154124\n"
+"8\n"
"help.text"
-msgid "Enter"
-msgstr "Enter"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149566\n"
-"15\n"
+"03030205.xhp\n"
+"par_id3153193\n"
+"9\n"
"help.text"
-msgid "Applies the changes made to a field and places the cursor into the next field."
-msgstr "Áp dụng các thay đổi được làm trong một trường nào đó, sau đó đặt con trỏ vào trường kế tiếp."
+msgid "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
+msgstr "<emph>giờ:</emph> bất cứ biểu thức số nguyên nào mà ngụ ý giờ của thời gian được dùng để quyết định giá trị thời gian dãy. Giá trị hợp lệ: 0-23."
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"tit\n"
+"03030205.xhp\n"
+"par_id3159252\n"
+"10\n"
"help.text"
-msgid "Trigonometric Functions"
-msgstr "Hàm lượng giác"
+msgid "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
+msgstr "<emph>phút</emph>: bất cứ biểu thức số nguyên nào mà ngụ ý phút của thời gian được dùng để quyết định giá trị thời gian dãy. Nói chung, hãy dùng giá trị nằm giữa 0 và 59. Tuy nhiên, bạn cũng có thể sử dụng giá trị nằm ở ngoại phạm vi này, có số phút ảnh hưởng đến giá trị giờ."
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"hd_id3159201\n"
-"1\n"
+"03030205.xhp\n"
+"par_id3161831\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Hàm lượng giác\">Hàm lượng giác</link>"
+msgid "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
+msgstr "<emph>giây</emph>: bất cứ biểu thức số nguyên nào mà ngụ ý giây của thời gian được dùng để quyết định giá trị thời gian dãy. Nói chung, hãy dùng giá trị nằm giữa 0 và 59. Tuy nhiên, bạn cũng có thể sử dụng giá trị nằm ở ngoại phạm vi này, có số giây ảnh hưởng đến giá trị phút."
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"par_id3149180\n"
-"2\n"
+"03030205.xhp\n"
+"par_id3155854\n"
+"12\n"
"help.text"
-msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
-msgstr "Theo đây có những hàm lượng giác được $[officename] Basic hỗ trợ."
+msgid "<emph>Examples:</emph>"
+msgstr "<emph>Ví dụ :</emph>"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"tit\n"
+"03030205.xhp\n"
+"par_id3153952\n"
+"13\n"
"help.text"
-msgid "CVErr Function [Runtime]"
-msgstr "Hàm CVerr [Runtime]"
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr "12, -5, 45 tương ứng với 11, 55, 45"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"bm_id531022\n"
+"03030205.xhp\n"
+"par_id3147349\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>CVErr function</bookmark_value>"
-msgstr "<bookmark_value>hàm CVerr</bookmark_value>"
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr "12, 61, 45 tương ứng với 13, 2, 45"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1054B\n"
+"03030205.xhp\n"
+"par_id3147426\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Hàm CVErr [Runtime]</link>"
+msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgstr "12, 20, -2 tương ứng với 12, 19, 58"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1055B\n"
+"03030205.xhp\n"
+"par_id3153365\n"
+"16\n"
"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
-msgstr "Chuyển đổi một biểu thức kiểu chuỗi hay thuộc số sang một biểu thức kiểu hay biến đổi có kiểu phụ « Lỗi »."
+msgid "12, 20, 63 corresponds to 12, 21, 4"
+msgstr "12, 20, 63 tương ứng với 12, 21, 4"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1055E\n"
+"03030205.xhp\n"
+"par_id3146985\n"
+"17\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgstr "Bạn có thể sử dụng hàm <emph>TimeSerial</emph> để chuyển đổi bất cứ thời gian nào sang một giá trị riêng lẻ mà bạn có thể dùng để tính hiệu số thời gian."
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10562\n"
+"03030205.xhp\n"
+"par_id3155308\n"
+"18\n"
"help.text"
-msgid "CVErr(Expression)"
-msgstr "CVErr(Biểu_thức)"
+msgid "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
+msgstr "Hàm <emph>TimeSerial</emph> trả về kiểu Biến thể có kiểu VarType 7 (Ngày). Giá trị này được cất giữ nội bộ dạng một số chính xác đôi giữa 0 và 0.9999999999. Khác với hàm <emph>DateSerial</emph> hay <emph>DateValue</emph>, trong chúng các giá trị ngày dãy được tính dạng ngày tương đối với một ngày tháng cố định, bạn có khả năng tính với các giá trị được hàm <emph>TimeSerial</emph> trả về: vẫn không thể ước tính chúng."
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10565\n"
+"03030205.xhp\n"
+"par_id3149482\n"
+"19\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
+msgstr "Trong hàm <emph>TimeValue</emph>, bạn có thể gửi một chuỗi dạng tham số chứa thời gian. Đối với hàm <emph>TimeSerial</emph>, tuy nhiên, bạn có thể gửi mỗi tham số riêng (giờ, phút, giây) dạng một biểu thức thuộc số riêng."
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10569\n"
+"03030205.xhp\n"
+"hd_id3154790\n"
+"20\n"
"help.text"
-msgid "Variant."
-msgstr "Biến thế."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1056C\n"
+"03030205.xhp\n"
+"par_id3155600\n"
+"25\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr "MsgBox dDate,64,\"Thời gian dạng số\""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10570\n"
+"03030205.xhp\n"
+"par_id3153417\n"
+"26\n"
"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Biểu_thức: bất cứ biểu thức kiểu chuỗi hay thuộc số cần chuyển đổi."
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr "MsgBox sDate,64,\"Thời gian đã định dạng\""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
+"03030206.xhp\n"
"tit\n"
"help.text"
-msgid "Fix Function [Runtime]"
-msgstr "Hàm Fix [Runtime]"
+msgid "TimeValue Function [Runtime]"
+msgstr "Hàm TimeValue [Runtime]"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"bm_id3159201\n"
+"03030206.xhp\n"
+"bm_id3149670\n"
"help.text"
-msgid "<bookmark_value>Fix function</bookmark_value>"
-msgstr "<bookmark_value>hàm Fix</bookmark_value>"
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr "<bookmark_value>hàm TimeValue</bookmark_value>"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3159201\n"
+"03030206.xhp\n"
+"hd_id3149670\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Hàm Fix [Runtime]\">Hàm Fix [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Hàm TimeValue [Runtime]\">Hàm TimeValue [Runtime]</link>"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3149346\n"
+"03030206.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
-msgstr "Trả về giá trị số nguyên của một biểu thức thuộc số, bằng cách gỡ bỏ phần phân số của một số."
+msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
+msgstr "Tính một giá trị thời gian dãy từ giờ, phút và giây đã ghi rõ (các tham số được gửi dạng chuỗi) mà đại diện thời gian theo một giá trị thuộc số riêng lẻ. Giá trị này có thể được dùng để tính hiệu số giữa hai thời gian."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
+"03030206.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3156152\n"
+"03030206.xhp\n"
+"par_id3156282\n"
"4\n"
"help.text"
-msgid "Fix (Expression)"
-msgstr "Fix (Biểu_thức)"
+msgid "TimeValue (Text As String)"
+msgstr "TimeValue (Text As String)"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3154923\n"
+"03030206.xhp\n"
+"hd_id3153969\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
+"03030206.xhp\n"
+"par_id3156424\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Date"
+msgstr "Ngày"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
+"03030206.xhp\n"
+"hd_id3145172\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3149457\n"
+"03030206.xhp\n"
+"par_id3145786\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
-msgstr "<emph>Biểu_thức</emph> : biểu thức thuộc số cho đó bạn muốn tính giá trị số nguyên."
+msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
+msgstr "<emph>Văn bản</emph>: bất cứ biểu thức chuỗi nào mà chứa thời gian bạn muốn tính theo định dạng « GG:PP:gg »."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
+"03030206.xhp\n"
+"par_id3152578\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+msgstr "Hãy dùng hàm <emph>TimeValue</emph> để chuyển đổi bất cứ thời gian nào sang một giá trị riêng lẻ, để tính hiệu số thời gian."
-#: 03080501.xhp
-#, fuzzy
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3156214\n"
+"03030206.xhp\n"
+"par_id3163710\n"
+"10\n"
+"help.text"
+msgid "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
+msgstr "Hàm <emph> TimeValue </emph> trả về kiểu Biến thể có VarType 7 (Ngày), và cất giữ giá trị này theo một số chính xác đôi giữa 0 và 0.9999999999."
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151117\n"
"11\n"
"help.text"
-msgid "Print Fix(3.14159) ' returns 3."
-msgstr "Print Fix(3.14159) REM trả về 3."
+msgid "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
+msgstr "Khác với hàm <emph>DateSerial</emph> hay <emph>DateValue</emph>, trong chúng giá trị ngày tháng dãy có kết quả là số ngày tương đối với một ngày tháng cố định, bạn có thể tính với các giá trị được hàm <emph>TimeValue</emph> trả về, nhưng vẫn không thể ước tính chúng."
-#: 03080501.xhp
-#, fuzzy
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3154217\n"
+"03030206.xhp\n"
+"par_id3147426\n"
"12\n"
"help.text"
-msgid "Print Fix(0) ' returns 0."
-msgstr "Print Fix(0) REM trả về 0."
+msgid "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
+msgstr "Trong hàm <emph>TimeSerial</emph>, bạn có thể gửi mỗi tham số riêng (giờ, phút, giây) dạng một biểu thức thuộc số riêng. Đối với hàm <emph>TimeValue</emph>, tuy nhiên, bạn có thể gửi một chuỗi dạng tham số chứa thời gian."
-#: 03080501.xhp
-#, fuzzy
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3145786\n"
+"03030206.xhp\n"
+"hd_id3145271\n"
"13\n"
"help.text"
-msgid "Print Fix(-3.14159) ' returns -3."
-msgstr "Print Fix(-3.14159) REM trả về -3."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090300.xhp
+#: 03030206.xhp
msgctxt ""
-"03090300.xhp\n"
+"03030206.xhp\n"
+"par_id3149378\n"
+"33\n"
+"help.text"
+msgid "a1 = \"start time\""
+msgstr "a1 = \"giờ bắt đầu\""
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3145800\n"
+"34\n"
+"help.text"
+msgid "b1 = \"end time\""
+msgstr "b1 = \"giờ kết thúc\""
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151074\n"
+"35\n"
+"help.text"
+msgid "c1 = \"total time\""
+msgstr "c1 = \"tổng thời gian\""
+
+#: 03030300.xhp
+msgctxt ""
+"03030300.xhp\n"
"tit\n"
"help.text"
-msgid "Jumps"
-msgstr "Nhảy"
+msgid "System Date and Time"
+msgstr "Ngày và Giờ của Hệ thống"
-#: 03090300.xhp
+#: 03030300.xhp
msgctxt ""
-"03090300.xhp\n"
-"hd_id3151262\n"
+"03030300.xhp\n"
+"hd_id3154923\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
-msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Nhảy\">Nhảy</link>"
+msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
+msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"Ngày và Giờ của Hệ thống\">Ngày và Giờ của Hệ thống</link>"
-#: 03090300.xhp
+#: 03030300.xhp
msgctxt ""
-"03090300.xhp\n"
-"par_id3148983\n"
+"03030300.xhp\n"
+"par_id3149457\n"
"2\n"
"help.text"
-msgid "The following statements execute jumps."
-msgstr "Theo đây có những câu lệnh thực hiện bước nhảy."
+msgid "The following functions and statements set or return the system date and time."
+msgstr "Những hàm và câu lệnh theo đây đặt hay trả về ngày tháng và giờ hiện thời của hệ thống."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
+"03030301.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
-msgstr "Hàm CreateUnoStruct [Runtime]"
+msgid "Date Statement [Runtime]"
+msgstr "Câu lệnh Date [Runtime]"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"bm_id3150499\n"
+"03030301.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>hàm CreateUnoStruct</bookmark_value>"
+msgid "<bookmark_value>Date statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Date</bookmark_value>"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3150499\n"
+"03030301.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"Hàm CreateUnoStruct [Runtime]\">Hàm CreateUnoStruct [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Câu lệnh Date [Runtime]\">Câu lệnh Date [Runtime]</link>"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3150713\n"
+"03030301.xhp\n"
+"par_id3147291\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
-msgstr "<ahelp hid=\".\">Tạo một thể hiện của một kiểu cấu trúc Uno.</ahelp>"
+msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
+msgstr "Trả về ngày tháng hệ thống hiện thời dạng chuỗi, hoặc đặt lại ngày tháng. Định dạng ngày tháng phụ thuộc vào thiết lập hệ thống cục bộ của bạn."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3147226\n"
+"03030301.xhp\n"
+"hd_id3148686\n"
"3\n"
"help.text"
-msgid "Use the following structure for your statement:"
-msgstr "Hãy sử dụng cấu trúc theo đây cho câu lệnh của bạn:"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3149177\n"
+"03030301.xhp\n"
+"par_id3146794\n"
"4\n"
"help.text"
-msgid "Dim oStruct as new com.sun.star.beans.Property"
-msgstr "Dim oStruct as new com.sun.star.beans.Property"
+msgid "Date ; Date = Text As String"
+msgstr "Date ; Date = Text As String"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3156153\n"
+"03030301.xhp\n"
+"hd_id3154347\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3155341\n"
+"03030301.xhp\n"
+"par_id3145069\n"
"6\n"
"help.text"
-msgid "oStruct = CreateUnoStruct( Uno type name )"
-msgstr "oStruct = CreateUnoStruct( Uno type name )"
+msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
+msgstr "<emph>Văn bản</emph>: chỉ cần thiết để đặt lại ngày tháng của hệ thống. Trong trường hợp này, biểu thức chuỗi phải tương ứng với định dạng ngày tháng được xác định trong thiết lập cục bộ của bạn."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
+"03030301.xhp\n"
+"hd_id3150793\n"
"7\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3149762\n"
-"8\n"
+"03030301.xhp\n"
+"par_id3156424\n"
+"9\n"
"help.text"
-msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+msgid "MsgBox \"The date is \" & Date"
+msgstr "msgbox \"Ngày tháng là \" & Date"
#: 03030302.xhp
msgctxt ""
@@ -11090,1013 +15650,659 @@ msgctxt ""
msgid "MsgBox Time,0,\"The time is\""
msgstr "MsgBox Time,0,\"Bây giờ có"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
+"03030303.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
-msgstr "Hàm CreateUnoDialog [Runtime]"
+msgid "Timer Function [Runtime]"
+msgstr "Hàm Timer [Runtime]"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"bm_id3150040\n"
+"03030303.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
-msgstr "<bookmark_value>hàm CreateUnoDialog</bookmark_value>"
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr "<bookmark_value>hàm Timer</bookmark_value>"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3150040\n"
+"03030303.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"Hàm CreateUnoDialog [Runtime]\">Hàm CreateUnoDialog [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Hàm Timer [Runtime]\">Hàm Timer [Runtime]</link>"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154186\n"
+"03030303.xhp\n"
+"par_id3156023\n"
"2\n"
"help.text"
-msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
-msgstr "Tạo một đối tượng Uno Basic mà đại diện một điều khiển hộp thoại Uno trong khi chạy Basic."
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
+msgstr "Trả về một giá trị mà ghi rõ số giây đã qua kể từ nửa đêm."
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3153750\n"
+"03030303.xhp\n"
+"par_id3156212\n"
"3\n"
"help.text"
-msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
-msgstr "Hộp thoại được định nghĩa trong thư viện hộp thoại. Để hiển thị một hộp thoại, một hộp thoại « động » phải được tạo từ thư viện."
+msgid "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
+msgstr "Trước tiên bạn cần phải khai báo một biến để gọi hàm <emph>Timer</emph> và gán cho nó kiểu dữ liệu « Long » (dài), không thì trả về một giá trị Ngày."
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3153681\n"
+"03030303.xhp\n"
+"hd_id3153768\n"
"4\n"
"help.text"
-msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ví dụ\">Ví dụ</link>."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
+"03030303.xhp\n"
+"par_id3161831\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Timer"
+msgstr "Đếm thời gian"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3159176\n"
+"03030303.xhp\n"
+"hd_id3146975\n"
"6\n"
"help.text"
-msgid "CreateUnoDialog( oDlgDesc )"
-msgstr "CreateUnoDialog( oDlgDesc )"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3143270\n"
+"03030303.xhp\n"
+"par_id3146984\n"
"7\n"
"help.text"
+msgid "Date"
+msgstr "Ngày"
+
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"hd_id3156442\n"
+"8\n"
+"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3159157\n"
-"8\n"
+"03030303.xhp\n"
+"par_id3145748\n"
+"12\n"
"help.text"
-msgid "' Get dialog description from the dialog library"
-msgstr "' Lấy mô tả hộp thoại từ thư viện hộp thoại"
+msgid "MsgBox lSec,0,\"Seconds since midnight\""
+msgstr "MsgBox lSec,0,\"Giây kể từ nửa đêm\""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3149234\n"
-"9\n"
+"03030303.xhp\n"
+"par_id3156283\n"
+"17\n"
"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
+msgstr "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"Bây giờ có\""
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154923\n"
-"10\n"
+"03050000.xhp\n"
+"tit\n"
"help.text"
-msgid "' generate \"live\" dialog"
-msgstr "' tạo hộp thoại « động »"
+msgid "Error-Handling Functions"
+msgstr "Hàm Quản Lý Lỗi"
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3149670\n"
-"11\n"
+"03050000.xhp\n"
+"hd_id3143271\n"
+"1\n"
"help.text"
-msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
-msgstr "oDlgControl = CreateUnoDialog( oDlgDesc )"
+msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Hàm Quả lý Lỗi\">Hàm Quản lý Lỗi</link>"
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3148550\n"
-"12\n"
+"03050000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "' display \"live\" dialog"
-msgstr "' hiển thị hộp thoại « động »"
+msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+msgstr "Hãy dùng những câu lệnh và hàm theo đây để xác định cách $[officename] Basic đáp ứng lỗi lúc chạy."
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154072\n"
-"13\n"
+"03050000.xhp\n"
+"par_id3148946\n"
+"3\n"
"help.text"
-msgid "oDlgControl.execute"
-msgstr "oDlgControl.execute"
+msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+msgstr "$[officename] Basic cung câp vài phương pháp khác nhau để ngăn cản chương trình bị chấm dứt do lỗi lúc chạy."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
+"03050100.xhp\n"
"tit\n"
"help.text"
-msgid "IsEmpty Function [Runtime]"
-msgstr "Hàm IsEmpty [Runtime]"
+msgid "Erl Function [Runtime]"
+msgstr "Hàm Erl [Runtime]"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"bm_id3153394\n"
+"03050100.xhp\n"
+"bm_id3157896\n"
"help.text"
-msgid "<bookmark_value>IsEmpty function</bookmark_value>"
-msgstr "<bookmark_value>hàm IsEmpty</bookmark_value>"
+msgid "<bookmark_value>Erl function</bookmark_value>"
+msgstr "<bookmark_value>hàm Erl</bookmark_value>"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3153394\n"
+"03050100.xhp\n"
+"hd_id3157896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"Hàm IsEmpty [Runtime]\">Hàm IsEmpty [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Hàm Erl [Runtime]\">Hàm Erl [Runtime]</link>"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3163045\n"
+"03050100.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
-msgstr "Thử nếu một biến kiểu BIến thế chứa giá trị Rỗng. Giá trị Rỗng ngụ ý rằng biến không phải được sơ khởi."
+msgid "Returns the line number where an error occurred during program execution."
+msgstr "Trả về số thứ tự dòng trên đó lỗi xảy ra trong khi thực hiện chương trình."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
+"03050100.xhp\n"
+"hd_id3147574\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3153126\n"
+"03050100.xhp\n"
+"par_id3146795\n"
"4\n"
"help.text"
-msgid "IsEmpty (Var)"
-msgstr "IsEmpty (Biến)"
+msgid "Erl"
+msgstr "Erl"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3148685\n"
+"03050100.xhp\n"
+"hd_id3147265\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
+"03050100.xhp\n"
+"par_id3154924\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
+"03050100.xhp\n"
+"hd_id3150792\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3154347\n"
+"03050100.xhp\n"
+"par_id3153771\n"
"8\n"
"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
-msgstr "<emph>Biến:</emph> bất cứ biến nào cần thử. Nếu Biến thế chứa giá trị Rỗng, thì hàm còn lại Đúng; không thì Sai."
+msgid "The Erl function only returns a line number, and not a line label."
+msgstr "Hàm <emph>Erl</emph> chỉ trả về một số thứ tự dòng, không phải một nhãn dòng."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
+"03050100.xhp\n"
+"hd_id3146921\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03102400.xhp
-#, fuzzy
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"13\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr "Print IsEmpty(sVar) REM Trả về Đúng"
-
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"tit\n"
+"03050100.xhp\n"
+"par_id3150010\n"
+"11\n"
"help.text"
-msgid "Converting Time Values"
-msgstr "Chuyển đổi Giá trị Thời gian"
+msgid "On Error GoTo ErrorHandler ' Set up error handler"
+msgstr "on error goto ErrorHandler REM Thiết lập hàm quản lý lỗi"
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"hd_id3147226\n"
-"1\n"
+"03050100.xhp\n"
+"par_id3153188\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Chuyển đổi Giá trị Thời gian\">Chuyển đổi Giá trị Thời gian</link>"
+msgid "' Error caused by non-existent file"
+msgstr "REM Lỗi gây ra bởi tập tin không tồn tại"
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"par_id3149415\n"
-"2\n"
+"03050100.xhp\n"
+"par_id3155416\n"
+"21\n"
"help.text"
-msgid "The following functions convert time values to calculable numbers."
-msgstr "Các hàm sau sẽ chuyển đổi giữa giá trị thời gian sang số có thể tính."
+msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
+msgstr "MsgBox \"Lỗi \" & err & \": \" & error$ + chr(13) + \"Trên dòng : \" + Erl + chr(13) + Now , 16 ,\"Gặp lỗi\""
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
+"03050200.xhp\n"
"tit\n"
"help.text"
-msgid "CLng Function [Runtime]"
-msgstr "Câu lệnh CLng [Runtime]"
+msgid "Err Function [Runtime]"
+msgstr "Hàm Err [Runtime]"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"bm_id3153311\n"
+"03050200.xhp\n"
+"bm_id3156343\n"
"help.text"
-msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr "<bookmark_value>hàm CLng</bookmark_value>"
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr "<bookmark_value>hàm Err</bookmark_value>"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3153311\n"
+"03050200.xhp\n"
+"hd_id3156343\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"Hàm CLng [Runtime]\">Hàm CLng [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Hàm Err [Runtime]\">Hàm Err [Runtime]</link>"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3148686\n"
+"03050200.xhp\n"
+"par_id3150541\n"
"2\n"
"help.text"
-msgid "Converts any string or numeric expression to a long integer."
-msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một số nguyên dài."
+msgid "Returns an error code that identifies the error that occurred during program execution."
+msgstr "Trả về một mã lỗi mà nhận diện lỗi đã xảy ra trong khi thực hiện chương trình."
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
+"03050200.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3147573\n"
+"03050200.xhp\n"
+"par_id3154123\n"
"4\n"
"help.text"
-msgid "CLng (Expression)"
-msgstr "CLng(Biểu_thức)"
+msgid "Err"
+msgstr "Err"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3145610\n"
+"03050200.xhp\n"
+"hd_id3147229\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
+"03050200.xhp\n"
+"par_id3150869\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
+"03050200.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3159414\n"
+"03050200.xhp\n"
+"par_id3149561\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào cần chuyển đổi. Nếu <emph>Biểu_thức</emph> nằm ở ngoại phạm vi số nguyên dài hợp lệ -2.147.483.648 đến 2.147.483.647, $[officename] Basic trả về một lỗi bị tràn. Để chuyển đổi một biểu thức kiểu chuỗi, số phải được nhập dạng văn bản bình thường (\"123.5\") dùng định dạng số mặc định của hệ điều hành của bạn."
+msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
+msgstr "Hàm <emph>Err</emph> được dùng trong câu lệnh quản lý lỗi để quyết định lỗi đã xảy ra và hành động sửa chữa tương ứng."
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3150358\n"
+"03050200.xhp\n"
+"hd_id3147317\n"
"9\n"
"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr "Hàm này lúc nào cũng làm tròn phần phân số của một số thành số nguyên gần nhất."
-
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr "Thanh công cụ Vĩ lệnh"
-
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"bm_id3150543\n"
+"03050200.xhp\n"
+"par_id3147426\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
-msgstr "<bookmark_value>thanh công cụ; IDE Basic</bookmark_value><bookmark_value>thanh công cụ Vĩ lệnh</bookmark_value>"
+msgid "On Error Goto ErrorHandler REM Set up error handler"
+msgstr "on error goto ErrorHandler REM Thiết lập hàm quản lý lỗi"
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"hd_id3150543\n"
-"1\n"
+"03050200.xhp\n"
+"par_id3149481\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
-msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Thanh công cụ Vĩ lệnh\">Thanh công cụ Vĩ lệnh</link>"
+msgid "REM Error occurs due to non-existent file"
+msgstr "REM Lỗi xảy ra do tập tin không tồn tại"
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"par_id3147288\n"
-"2\n"
+"03050200.xhp\n"
+"par_id3145646\n"
+"21\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\"><emph>Thanh công cụ Vĩ lệnh</emph> chứa các chức năng để tạo, chỉnh sửa và chạy vĩ lệnh.</ahelp>"
+msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
+msgstr "MsgBox \"Lỗi \" & Err & \": \" & Error$ + chr(13) + \"Ở dòng : \" + Erl + chr(13) + Now , 16 ,\"gặp lỗi\""
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
+"03050300.xhp\n"
"tit\n"
"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr "Toán tử « - » [Runtime]"
+msgid "Error Function [Runtime]"
+msgstr "Hàm Error [Runtime]"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"bm_id3156042\n"
+"03050300.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử « - » (toán học)</bookmark_value>"
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr "<bookmark_value>hàm Error</bookmark_value>"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3156042\n"
+"03050300.xhp\n"
+"hd_id3159413\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">Toán tử « - » [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Hàm Error [Runtime]\">Hàm Error [Runtime]</link>"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"par_id3153345\n"
+"03050300.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "Subtracts two values."
-msgstr "Trừ giá trị này khỏi giá trị khác."
+msgid "Returns the error message that corresponds to a given error code."
+msgstr "Trả về thông điệp lỗi tương ứng với mã lỗi đã cho."
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3149416\n"
+"03050300.xhp\n"
+"hd_id3153379\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 - Expression2"
-msgstr "Kết quả = Biểu_thức1 - Biểu_thức2"
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
-msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của phép trừ."
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3150398\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn dùng trong phép trừ."
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154366\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeSerial Function [Runtime]"
-msgstr "Hàm TimeSerial [Runtime]"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>TimeSerial function</bookmark_value>"
-msgstr "<bookmark_value>hàm TimeSerial</bookmark_value>"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3143271\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"Hàm TimeSerial [Runtime]\">Hàm TimeSerial [Runtime]</link>"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3156344\n"
-"2\n"
-"help.text"
-msgid "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
-msgstr "Tính một giá trị thời gian dãy cho các tham số giờ, phút và giây được gửi dạng giá trị thuộc số. Vì thế bạn có thể dùng giá trị này để tính hiệu số giữa hai thời gian."
-
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3146794\n"
+"03050300.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Error (Expression)"
+msgstr "Error (Biểu thức)"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3150792\n"
+"03050300.xhp\n"
+"hd_id3145173\n"
"5\n"
"help.text"
-msgid "TimeSerial (hour, minute, second)"
-msgstr "TimeSerial (giờ, phút, giây)"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3148797\n"
+"03050300.xhp\n"
+"par_id3154125\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "String"
+msgstr "Chuỗi"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3154908\n"
+"03050300.xhp\n"
+"hd_id3150869\n"
"7\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154124\n"
-"8\n"
-"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
+"03050300.xhp\n"
"par_id3153193\n"
-"9\n"
-"help.text"
-msgid "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
-msgstr "<emph>giờ:</emph> bất cứ biểu thức số nguyên nào mà ngụ ý giờ của thời gian được dùng để quyết định giá trị thời gian dãy. Giá trị hợp lệ: 0-23."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3159252\n"
-"10\n"
-"help.text"
-msgid "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
-msgstr "<emph>phút</emph>: bất cứ biểu thức số nguyên nào mà ngụ ý phút của thời gian được dùng để quyết định giá trị thời gian dãy. Nói chung, hãy dùng giá trị nằm giữa 0 và 59. Tuy nhiên, bạn cũng có thể sử dụng giá trị nằm ở ngoại phạm vi này, có số phút ảnh hưởng đến giá trị giờ."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3161831\n"
-"11\n"
-"help.text"
-msgid "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
-msgstr "<emph>giây</emph>: bất cứ biểu thức số nguyên nào mà ngụ ý giây của thời gian được dùng để quyết định giá trị thời gian dãy. Nói chung, hãy dùng giá trị nằm giữa 0 và 59. Tuy nhiên, bạn cũng có thể sử dụng giá trị nằm ở ngoại phạm vi này, có số giây ảnh hưởng đến giá trị phút."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155854\n"
-"12\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "<emph>Ví dụ :</emph>"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153952\n"
-"13\n"
-"help.text"
-msgid "12, -5, 45 corresponds to 11, 55, 45"
-msgstr "12, -5, 45 tương ứng với 11, 55, 45"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3147349\n"
-"14\n"
-"help.text"
-msgid "12, 61, 45 corresponds to 13, 2, 45"
-msgstr "12, 61, 45 tương ứng với 13, 2, 45"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3147426\n"
-"15\n"
-"help.text"
-msgid "12, 20, -2 corresponds to 12, 19, 58"
-msgstr "12, 20, -2 tương ứng với 12, 19, 58"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153365\n"
-"16\n"
-"help.text"
-msgid "12, 20, 63 corresponds to 12, 21, 4"
-msgstr "12, 20, 63 tương ứng với 12, 21, 4"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3146985\n"
-"17\n"
-"help.text"
-msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
-msgstr "Bạn có thể sử dụng hàm <emph>TimeSerial</emph> để chuyển đổi bất cứ thời gian nào sang một giá trị riêng lẻ mà bạn có thể dùng để tính hiệu số thời gian."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155308\n"
-"18\n"
-"help.text"
-msgid "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
-msgstr "Hàm <emph>TimeSerial</emph> trả về kiểu Biến thể có kiểu VarType 7 (Ngày). Giá trị này được cất giữ nội bộ dạng một số chính xác đôi giữa 0 và 0.9999999999. Khác với hàm <emph>DateSerial</emph> hay <emph>DateValue</emph>, trong chúng các giá trị ngày dãy được tính dạng ngày tương đối với một ngày tháng cố định, bạn có khả năng tính với các giá trị được hàm <emph>TimeSerial</emph> trả về: vẫn không thể ước tính chúng."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3149482\n"
-"19\n"
-"help.text"
-msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
-msgstr "Trong hàm <emph>TimeValue</emph>, bạn có thể gửi một chuỗi dạng tham số chứa thời gian. Đối với hàm <emph>TimeSerial</emph>, tuy nhiên, bạn có thể gửi mỗi tham số riêng (giờ, phút, giây) dạng một biểu thức thuộc số riêng."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154790\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155600\n"
-"25\n"
-"help.text"
-msgid "MsgBox dDate,64,\"Time as a number\""
-msgstr "MsgBox dDate,64,\"Thời gian dạng số\""
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153417\n"
-"26\n"
-"help.text"
-msgid "MsgBox sDate,64,\"Formatted time\""
-msgstr "MsgBox sDate,64,\"Thời gian đã định dạng\""
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Toán tử So sánh"
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Toán tử So sánh\">Toán tử So sánh</link>"
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"2\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Ở đây thì diễn tả những toán tử so sánh sẵn sàng."
-
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Condition Statements"
-msgstr "Câu lệnh Điều kiện"
-
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
-msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Câu lệnh Điều kiện\">Câu lệnh Điều kiện</link>"
+msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
+msgstr "<emph>Biểu thức</emph>: bất cứ biểu thức thuộc số nào mà chứa mã lỗi của thông điệp lỗi bạn muốn trả về."
-#: 03090100.xhp
+#: 03050300.xhp
msgctxt ""
-"03090100.xhp\n"
-"par_id3153750\n"
-"2\n"
+"03050300.xhp\n"
+"par_id3159254\n"
+"9\n"
"help.text"
-msgid "The following statements are based on conditions."
-msgstr "Theo đây có những câu lệnh dựa vào điều kiện."
+msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+msgstr "Không đưa ra tham số thì hàm Error trả về thông điệp lỗi của lỗi mới đây xảy ra trong khi thực hiện chương trình."
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
+"03050500.xhp\n"
"tit\n"
"help.text"
-msgid "CByte Function [Runtime]"
-msgstr "Hàm CByte [Runtime]"
+msgid "On Error GoTo ... Resume Statement [Runtime]"
+msgstr "Câu lệnh tiếp tục On Error GoTo ... [Runtime]"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"bm_id3156027\n"
+"03050500.xhp\n"
+"bm_id3146795\n"
"help.text"
-msgid "<bookmark_value>CByte function</bookmark_value>"
-msgstr "<bookmark_value>hàm CByte</bookmark_value>"
+msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr "<bookmark_value>tham số Resume Next</bookmark_value><bookmark_value>câu lệnh tiếp tục On Error GoTo ...</bookmark_value>"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3156027\n"
+"03050500.xhp\n"
+"hd_id3146795\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"Hàm CByte [Runtime]\">Hàm CByte [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"Câu lệnh tiếp tục On Error GoTo ... [Runtime]\">Câu lệnh tiếp tục On Error GoTo ... [Runtime]</link>"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3143267\n"
+"03050500.xhp\n"
+"par_id3150358\n"
"2\n"
"help.text"
-msgid "Converts a string or a numeric expression to the type Byte."
-msgstr "Chuyển đổi một chuỗi hay biểu thức thuộc số sang kiểu Byte."
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgstr "Gặp lỗi thì hiệu lực một hàm quản lý lỗi, hoặc tiếp tục lại thực hiện chương trình."
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
+"03050500.xhp\n"
+"hd_id3151212\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3147573\n"
+"03050500.xhp\n"
+"par_id3145173\n"
"4\n"
"help.text"
-msgid "Cbyte( expression )"
-msgstr "Cbyte( biểu_thức )"
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr "On {Error GoTo Labelname | GoTo 0 | Resume Next}"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
+"03050500.xhp\n"
+"hd_id3154125\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"6\n"
-"help.text"
-msgid "Byte"
-msgstr "Byte"
-
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3145068\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> A string or a numeric expression."
-msgstr "<emph>Biểu_thức:</emph> một biểu thức kiểu chuỗi hay thuộc số."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"tit\n"
-"help.text"
-msgid "InputBox Function [Runtime]"
-msgstr "Hàm InputBox [Runtime]"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"bm_id3148932\n"
-"help.text"
-msgid "<bookmark_value>InputBox function</bookmark_value>"
-msgstr "<bookmark_value>hàm InputBox</bookmark_value>"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3148932\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"Hàm InputBox [Runtime]\">Hàm InputBox [Runtime]</link>"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151262\n"
-"2\n"
-"help.text"
-msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
-msgstr "Mở một hộp thoại cứa một dấu nhắc ở đó người dùng có thể nhập văn bản. Dữ liệu nhập được gán cho một biến."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151100\n"
-"3\n"
-"help.text"
-msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
-msgstr "Câu lệnh <emph>InputBox</emph> là một phương pháp tiện lợi để nhập văn bản thông qua một hộp thoại. Hãy xác nhận dữ liệu nhập bằng cách nhấn vào nút <emph>OK</emph> hoặc bấm phím <item type=\"keycode\">Return</item>. Dữ liệu nhập được trả về dưới dạng giá trị trả về của hàm. Nếu bạn đóng hộp thoại bằng nút <emph>Thôi</emph>, <emph>InputBox</emph> sẽ trả về một chuỗi rỗng « »."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3159201\n"
-"5\n"
-"help.text"
-msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-msgstr "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3150713\n"
-"6\n"
+"03050500.xhp\n"
+"par_id3150869\n"
+"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgstr "<emph>GoTo Labelname:</emph> gặp lỗi thì hiệu lực hàm quản lý lỗi mà bắt đầu ở dòng « Labelname »."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3145090\n"
-"7\n"
+"03050500.xhp\n"
+"par_id3150439\n"
+"8\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
+msgstr "<emph>Resume Next:</emph> gặp lỗi thì tiếp tục lại thực hiện chương trình bằng cách chạy câu lệnh đi theo câu lệnh vừa gặp lỗi."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3149346\n"
-"8\n"
+"03050500.xhp\n"
+"par_id3149482\n"
+"9\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+msgstr "<emph>GoTo 0:</emph> tắt hàm quản lý lỗi trong thủ tục hiện thời."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3153311\n"
+"03050500.xhp\n"
+"par_id3149483\n"
"9\n"
"help.text"
-msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
-msgstr "<emph>Msg</emph>: biểu thức chuỗi được hiển thị dưới dạng thông điệp trong hộp thoại."
+msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
+msgstr ""
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3145315\n"
+"03050500.xhp\n"
+"par_id3148619\n"
"10\n"
"help.text"
-msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
-msgstr "<emph>Title</emph>: biểu thức chuỗi được hiển thị trên thanh tựa đề của hộp thoại."
+msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
+msgstr ""
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3154307\n"
+"03050500.xhp\n"
+"hd_id3146985\n"
"11\n"
"help.text"
-msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
-msgstr "<emph>Default</emph>: biểu thức chuỗi được hiển thị trong hộp văn bản theo mặc định nếu không có dữ liệu khác nhập vào."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3147573\n"
-"12\n"
+"03050500.xhp\n"
+"par_id3153876\n"
+"52\n"
"help.text"
-msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
-msgstr "<emph>x_pos</emph>: biểu thức số nguyên mà ghi rõ vị trí theo chiều ngang của hộp thoại. Vị trí này là một toạ độ tuyệt đối và không tham chiếu đến cửa sổ của ứng dụng văn phòng."
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3156024\n"
-"13\n"
+"03050500.xhp\n"
+"par_id3146916\n"
+"67\n"
"help.text"
-msgid "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
-msgstr "<emph>y_pos</emph>: biểu thức số nguyên mà ghi rõ vị trí của hộp thoại theo chiều dọc. Vị trí này là một toạ độ tuyệt đối và không tham chiếu đến cửa sổ của ứng dụng văn phòng."
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"All files will be closed\",0,\"Error\""
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3153897\n"
-"14\n"
+"03060000.xhp\n"
+"tit\n"
"help.text"
-msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
-msgstr "Bỏ sót hai toạ độ <emph>x_pos</emph> và <emph>y_pos</emph> thì hộp thoại nằm ở giữa trên màn hình. Vị trí được ghi rõ theo đơn vị <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+msgid "Logical Operators"
+msgstr "Toán tử Lôgic"
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3149456\n"
-"15\n"
+"03060000.xhp\n"
+"hd_id3147559\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Toán tử Lôgic\">Toán tử Lôgic</link>"
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3154367\n"
-"18\n"
+"03060000.xhp\n"
+"par_id3153379\n"
+"2\n"
"help.text"
-msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-msgstr "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgid "The following logical operators are supported by $[officename] Basic."
+msgstr "$[officename] Basic hỗ trợ những toán tử lôgic theo đây."
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3151042\n"
-"19\n"
+"03060000.xhp\n"
+"par_id3154138\n"
+"3\n"
"help.text"
-msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-msgstr "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
+msgstr "Toán tử lôgic tổ hợp (theo vị trí bit) nội dung của hai biểu thức hay biến, ví dụ, để thử nếu một số bit cụ thể đã được đặt hay không."
#: 03060100.xhp
msgctxt ""
@@ -12157,7 +16363,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Parameters:"
-msgstr "Tham số:"
+msgstr "Tham số :"
#: 03060100.xhp
msgctxt ""
@@ -12214,7 +16420,6 @@ msgid "Example:"
msgstr "Thí dụ :"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3146984\n"
@@ -12224,7 +16429,6 @@ msgid "vVarOut = A > B And B > C ' returns -1"
msgstr "vVarOut = A > B And B > C REM trả về -1"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3154014\n"
@@ -12234,7 +16438,6 @@ msgid "vVarOut = B > A And B > C ' returns 0"
msgstr "vVarOut = B > A And B > C REM trả về 0"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3149262\n"
@@ -12244,7 +16447,6 @@ msgid "vVarOut = A > B And B > D ' returns 0"
msgstr "vVarOut = A > B And B > D REM trả về 0"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3145751\n"
@@ -12254,7 +16456,6 @@ msgid "vVarOut = (B > D And B > A) ' returns 0"
msgstr "vVarOut = (B > D And B > A) REM trả về 0"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3147394\n"
@@ -12263,198 +16464,449 @@ msgctxt ""
msgid "vVarOut = B And A ' returns 8 due to the bitwise And combination of both arguments"
msgstr "vVarOut = B And A REM trả về 8 do tổ hợp cả hai đối số bằng AND theo vị trí bit"
-#: 01000000.xhp
+#: 03060200.xhp
msgctxt ""
-"01000000.xhp\n"
+"03060200.xhp\n"
"tit\n"
"help.text"
-msgid "Programming with $[officename] Basic"
-msgstr "Lập trình bằng $[officename] Basic"
+msgid "Eqv Operator [Runtime]"
+msgstr "Toán tử Eqv [Runtime]"
-#: 01000000.xhp
+#: 03060200.xhp
msgctxt ""
-"01000000.xhp\n"
-"hd_id3156027\n"
+"03060200.xhp\n"
+"bm_id3156344\n"
+"help.text"
+msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử Eqv (lôgic)</bookmark_value>"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3156344\n"
"1\n"
"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Lập trình bằng $[officename] Basic\">Lập trình bằng $[officename] Basic</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Toán tử Eqv [Runtime]\">Toán tử Eqv [Runtime]</link>"
-#: 01000000.xhp
+#: 03060200.xhp
msgctxt ""
-"01000000.xhp\n"
-"par_id3153708\n"
+"03060200.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "This is where you find general information about working with macros and $[officename] Basic."
-msgstr "Đây là nơi bạn tìm thông tin chung về cách thao tác vĩ lệnh và ngôn ngữ $[officename] Basic."
+msgid "Calculates the logical equivalence of two expressions."
+msgstr "Tính sự tương đương lôgic của hai biểu thức."
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"tit\n"
+"03060200.xhp\n"
+"hd_id3154367\n"
+"3\n"
"help.text"
-msgid "Declare Statement [Runtime]"
-msgstr "Câu lệnh Declare [Runtime]"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"bm_id3148473\n"
+"03060200.xhp\n"
+"par_id3154910\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Declare statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Declare</bookmark_value>"
+msgid "Result = Expression1 Eqv Expression2"
+msgstr "Result = Biểu_thức1 Eqv Biểu_thức2"
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3148473\n"
-"1\n"
+"03060200.xhp\n"
+"hd_id3151043\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Câu lệnh Declare [Runtime]\">Câu lệnh Declare [Runtime]</link>"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"bm_id3145316\n"
+"03060200.xhp\n"
+"par_id3150869\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
-msgstr "<bookmark_value>DLL (Thư viện Liên kết Động)</bookmark_value>"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgstr "<emph>Kết quả:</emph> bất cứ biến thuộc số nào mà chứa kết quả của hàm so sánh."
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3145316\n"
+"03060200.xhp\n"
+"par_id3150448\n"
+"7\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ hai biểu thức nào bạn muốn so sánh."
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149562\n"
+"8\n"
+"help.text"
+msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
+msgstr "Khi thử có sự tương đương giữa hai biểu thức Bun, kết quả là <emph>True</emph> nếu cả hai biểu thức là hoặc <emph>True</emph> hoặc <emph>False</emph>."
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3154319\n"
+"9\n"
+"help.text"
+msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
+msgstr "Trong một hàm so sánh theo vị trí bit, toán tử Eqv chỉ đặt bit tương ứng trong kết quả nếu một bit được đặt/không đặt trong cả hai biểu thức."
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3159154\n"
+"10\n"
+"help.text"
+msgid "Example:"
+msgstr "Thí dụ :"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3152462\n"
+"15\n"
+"help.text"
+msgid "vOut = A > B Eqv B > C ' returns -1"
+msgstr "vOut = A > B Eqv B > C REM trả về -1"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3153191\n"
+"16\n"
+"help.text"
+msgid "vOut = B > A Eqv B > C ' returns 0"
+msgstr "vOut = B > A Eqv B > C REM trả về 0"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3145799\n"
+"17\n"
+"help.text"
+msgid "vOut = A > B Eqv B > D ' returns 0"
+msgstr "vOut = A > B Eqv B > D REM trả về 0"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149412\n"
+"18\n"
+"help.text"
+msgid "vOut = (B > D Eqv B > A) ' returns -1"
+msgstr "vOut = (B > D Eqv B > A) REM trả về -1"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149959\n"
+"19\n"
+"help.text"
+msgid "vOut = B Eqv A ' returns -3"
+msgstr "vOut = B Eqv A REM trả về -3"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Imp-Operator [Runtime]"
+msgstr "Toán tử Imp [Runtime]"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử Imp (lôgic)</bookmark_value>"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"hd_id3156024\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Toán tử Imp [Runtime]\">Toán tử Imp [Runtime]</link>"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3148947\n"
"2\n"
"help.text"
-msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
-msgstr "Khai báo và xác định một chương trình con trong một tập tin DLL mà bạn muốn thực hiện từ $[officename] Basic."
+msgid "Performs a logical implication on two expressions."
+msgstr "Thực hiện phép tất suy với hai biểu thức."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3146795\n"
+"03060300.xhp\n"
+"hd_id3148664\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3156344\n"
+"03060300.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Result = Expression1 Imp Expression2"
+msgstr "Result = Biểu_thức1 Imp Biểu_thức2"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3148664\n"
+"03060300.xhp\n"
+"hd_id3151212\n"
"5\n"
"help.text"
-msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
-msgstr "Declare {Sub | Function} Name Lib \"Tên_thư_viện\" [Alias \"Tên_biệt_hiệu\"] [Parameter] [As Type]"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3153360\n"
+"03060300.xhp\n"
+"par_id3154910\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgstr "<emph>Kết quả:</emph> bất cứ giá trị thuộc số nào mà chứa kết quả của phép tất suy."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3154140\n"
+"03060300.xhp\n"
+"par_id3156281\n"
+"7\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ biểu thức nào bạn muốn tính bằng toán tử Imp."
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3150440\n"
"8\n"
"help.text"
-msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
-msgstr "<emph>Tên:</emph> một tên khác với tên được xác định trong DLL, để gọi chương trình con từ $[officename] Basic."
+msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
+msgstr "Nếu bạn dùng toán tử Imp trong biểu thức Bun, giá trị FALSE (SAI) chỉ được trả về nếu biểu thức thứ nhất tính đến TRUE (ĐÚNG) và biểu thức thứ hai tính đến FALSE."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3150870\n"
+"03060300.xhp\n"
+"par_id3163710\n"
"9\n"
"help.text"
-msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
-msgstr "<emph>Tên_biệt_hiệu</emph> : tên của chương trình con như được xác định trong DLL."
+msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
+msgstr "Nếu bạn dùng toán tử Imp trong biểu thức kiểu bit, một bit bị xoá khỏi kết quả nếu bit tương ứng được đặt trong biểu thức thứ nhất và bit tương ứng bị xoá trong biểu thức thứ hai."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3154684\n"
+"03060300.xhp\n"
+"hd_id3147318\n"
"10\n"
"help.text"
-msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
-msgstr "<emph>Tên_thư_viện:</emph> tên tập tin hay hệ thống của DLL. Thư viện này được tự động nạp lần đầu tiên dùng hàm này."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3148452\n"
-"11\n"
+"03060300.xhp\n"
+"par_id3145750\n"
+"15\n"
"help.text"
-msgid "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
-msgstr "<emph>Danh_sách_đối_số:</emph> danh sách các tham số đại diện đối số được gửi cho thủ tục khi nó được gọi. Kiểu và số tham số phụ thuộc vào thủ tục được thực hiện."
+msgid "vOut = A > B Imp B > C ' returns -1"
+msgstr "vOut = A > B Imp B > C REM trả về -1"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3147289\n"
-"12\n"
+"03060300.xhp\n"
+"par_id3156441\n"
+"16\n"
"help.text"
-msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
-msgstr "<emph>Kiểu :</emph> xác định kiểu dữ liệu của giá trị được trả về bởi một thủ tục hàm. Bạn cũng có thể loại trừ hàm này nếu một ký tự khai báo kiểu được nhập phía sau tên."
+msgid "vOut = B > A Imp B > C ' returns -1"
+msgstr "vOut = B > A Imp B > C REM trả về -1"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3146922\n"
-"13\n"
+"03060300.xhp\n"
+"par_id3152596\n"
+"17\n"
"help.text"
-msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
-msgstr "Để gửi một tham số cho một chương trình con dưới dạng một giá trị thay cho một tham chiếu, tham số phải được ngụ ý bởi từ khoá <emph>ByVal</emph>."
+msgid "vOut = A > B Imp B > D ' returns 0"
+msgstr "vOut = A > B Imp B > D REM trả về 0"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3153951\n"
-"14\n"
+"03060300.xhp\n"
+"par_id3154942\n"
+"18\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "vOut = (B > D Imp B > A) ' returns -1"
+msgstr "vOut = (B > D Imp B > A) REM trả về -1"
-#: 03120400.xhp
+#: 03060300.xhp
msgctxt ""
-"03120400.xhp\n"
+"03060300.xhp\n"
+"par_id3154492\n"
+"19\n"
+"help.text"
+msgid "vOut = B Imp A ' returns -1"
+msgstr "vOut = B Imp A REM trả về -1"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Editing String Length"
-msgstr "Chình sửa Chiều dài Chuỗi"
+msgid "Not-Operator [Runtime]"
+msgstr "Toán tử Not [Runtime]"
-#: 03120400.xhp
+#: 03060400.xhp
msgctxt ""
-"03120400.xhp\n"
-"hd_id3155150\n"
+"03060400.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử Not (lôgic)</bookmark_value>"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3156024\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
-msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Chình sửa Chiều dài Chuỗi\">Chình sửa Chiều dài Chuỗi</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Toán tử Not [Runtime]\">Toán tử Not [Runtime]</link>"
-#: 03120400.xhp
+#: 03060400.xhp
msgctxt ""
-"03120400.xhp\n"
-"par_id3159201\n"
+"03060400.xhp\n"
+"par_id3159414\n"
"2\n"
"help.text"
-msgid "The following functions determine string lengths and compare strings."
-msgstr "Các hàm sau quyết định chiều dài chuỗi, và so sánh các chuỗi khác nhau."
+msgid "Negates an expression by inverting the bit values."
+msgstr "Phủ định một biểu thức bằng cách đảo ngược các giá trị bit."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3149457\n"
+"3\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Cú pháp:"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3150360\n"
+"4\n"
+"help.text"
+msgid "Result = Not Expression"
+msgstr "Kết quả = không phải biểu thức"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3151211\n"
+"5\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Tham số :"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3147228\n"
+"6\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
+msgstr "<emph>Kết quả:</emph> bất cứ biến thuộc số nào mà chứa kết quả của sự phủ định."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3154124\n"
+"7\n"
+"help.text"
+msgid "<emph>Expression:</emph> Any expression that you want to negate."
+msgstr "<emph>Biểu thức:</emph> bất cứ biểu thức nào bạn muốn phủ định."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3150868\n"
+"8\n"
+"help.text"
+msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
+msgstr "Khi một biểu thức Bun bị phủ định, giá trị Đúng trở thành Sai, và ngược lại."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145785\n"
+"9\n"
+"help.text"
+msgid "In a bitwise negation each individual bit is inverted."
+msgstr "Trong một sự phủ định theo vị trí bit, mỗi bit riêng bị đảo ngược."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3153093\n"
+"10\n"
+"help.text"
+msgid "Example:"
+msgstr "Thí dụ :"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145749\n"
+"15\n"
+"help.text"
+msgid "vOut = Not vA ' Returns -11"
+msgstr "vOut = Not vA REM trả về -11"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3148645\n"
+"16\n"
+"help.text"
+msgid "vOut = Not(vC > vD) ' Returns -1"
+msgstr "vOut = Not(vC > vD) REM trả về -1"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3156441\n"
+"17\n"
+"help.text"
+msgid "vOut = Not(vB > vA) ' Returns -1"
+msgstr "vOut = Not(vB > vA) REM trả về -1"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3152596\n"
+"18\n"
+"help.text"
+msgid "vOut = Not(vA > vB) ' Returns 0"
+msgstr "vOut = Not(vA > vB) REM trả về 0"
#: 03060500.xhp
msgctxt ""
@@ -12562,8076 +17014,6809 @@ msgctxt ""
msgid "Example:"
msgstr "Thí dụ :"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
+"03060600.xhp\n"
"tit\n"
"help.text"
-msgid "Format Function [Runtime]"
-msgstr "Hàm Format [Runtime]"
+msgid "Xor-Operator [Runtime]"
+msgstr "Toán tử Xor [Runtime]"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"bm_id3153539\n"
+"03060600.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "<bookmark_value>Format function</bookmark_value>"
-msgstr "<bookmark_value>hàm Format</bookmark_value>"
+msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử Xor (lôgic)</bookmark_value>"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3153539\n"
+"03060600.xhp\n"
+"hd_id3156024\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Hàm Format [Runtime]\">Hàm Format [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Toán tử Xor [Runtime]\">Toán tử Xor [Runtime]</link>"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3156042\n"
+"03060600.xhp\n"
+"par_id3159414\n"
"2\n"
"help.text"
-msgid "Converts a number to a string, and then formats it according to the format that you specify."
-msgstr "Chuyển đổi một số sang một chuỗi, sau đó thì định dạng nó tùy theo định dạng bạn ghi rõ."
+msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgstr "Thực hiện một phép tổ hợp kiểu Xor (Hoặc loại) về hai biểu thức."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3145090\n"
-"4\n"
+"03060600.xhp\n"
+"hd_id3153381\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153527\n"
+"03060600.xhp\n"
+"par_id3150400\n"
+"4\n"
+"help.text"
+msgid "Result = Expression1 Xor Expression2"
+msgstr "Kết quả = Biểu_thức1 Xor Biểu_thức2"
+
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"hd_id3153968\n"
"5\n"
"help.text"
-msgid "Format (Number [, Format As String])"
-msgstr "Format (Number [, Format As String])"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149178\n"
+"03060600.xhp\n"
+"par_id3150448\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr "<emph>Kết quả :</emph> bất cứ biến thuộc số nào mà chứa kết quả tổ hợp."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148474\n"
+"03060600.xhp\n"
+"par_id3125864\n"
"7\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số cần kết hợp."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
+"03060600.xhp\n"
+"par_id3150439\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgstr "Một phép hội Xor (Hoặc loại) hai biểu thức Bun thì trả về giá trị Đúng chỉ nếu hai biểu thức khác với nhau."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149415\n"
+"03060600.xhp\n"
+"par_id3153770\n"
"9\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
-msgstr "<emph>Số</emph> : biểu thức thuộc số cần chuyển đổi sang một chuỗi được định dạng."
+msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgstr "Một phép hội Xor (Hoặc loại) theo vị trí bit thì trả về một bit nếu bit tương ứng được đặt trong chỉ một của hai biểu thức."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147531\n"
+"03060600.xhp\n"
+"hd_id3153366\n"
"10\n"
"help.text"
-msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
-msgstr "<emph>Định dạng:</emph> chuỗi mà ghi rõ mã định dạng cho số. Không đưa ra <emph>Định dạng</emph> thì hàm <emph>Format</emph> chạy giống như hàm <emph>Str</emph>."
-
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3147561\n"
-"47\n"
-"help.text"
-msgid "Formatting Codes"
-msgstr "Mã định dạng"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147265\n"
-"11\n"
+"03060600.xhp\n"
+"par_id3156442\n"
+"15\n"
"help.text"
-msgid "The following list describes the codes that you can use for formatting a number:"
-msgstr "Danh sách theo đây diễn tả những mã bạn có thể sử dụng để định dạng một số :"
+msgid "vOut = vA > vB Xor vB > vC ' returns 0"
+msgstr "vOut = vA > vB Xor vB > vC REM trả về 0"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153380\n"
-"12\n"
+"03060600.xhp\n"
+"par_id3153191\n"
+"16\n"
"help.text"
-msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
-msgstr "<emph>0:</emph> Nếu <emph>Số</emph> có một chữ số ở vị trí của 0 trong mã định dạng, thì hiển thị chữ số đó ; không thì hiển thị một số không."
+msgid "vOut = vB > vA Xor vB > vC ' returns -1"
+msgstr "vOut = vB > vA Xor vB > vC REM trả về -1"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3151210\n"
-"13\n"
+"03060600.xhp\n"
+"par_id3153144\n"
+"17\n"
"help.text"
-msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
-msgstr "Nếu <emph>Số</emph> có ít chữ số hơn số các số không trong mã định dạng (ở bên nào của dấu thập phân), thì hiển thị các số không đi trước hay đi sau. Nếu số có nhiều chữ số bên trái dấu thập phân hơn số các số không trong mã định dạng, thì hiển thị các chữ số thêm, không cần định dạng."
+msgid "vOut = vA > vB Xor vB > vD ' returns -1"
+msgstr "vOut = vA > vB Xor vB > vD REM trả về -1"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3151176\n"
-"14\n"
+"03060600.xhp\n"
+"par_id3154944\n"
+"18\n"
"help.text"
-msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
-msgstr "Số lần số trong số này được làm tròn tùy theo số các số không xuất hiện phía sau dấu thập phân trong mã <emph>Định dạng</emph>."
+msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
+msgstr "vOut = (vB > vD Xor vB > vA) REM trả về 0"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154123\n"
-"15\n"
+"03060600.xhp\n"
+"par_id3148455\n"
+"19\n"
"help.text"
-msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
-msgstr "<emph>#:</emph> nếu <emph>Số</emph> chứa một chữ số ở vị trí của vật thế chỗ « # » trong mã <emph>Định dạng</emph>, thì hiển thị chữ số đó ; không thì không hiển thị gì ở vị trí này."
+msgid "vOut = vB Xor vA ' returns 2"
+msgstr "vOut = vB Xor vA REM trả về 2"
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148452\n"
-"16\n"
+"03070000.xhp\n"
+"tit\n"
"help.text"
-msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
-msgstr "Ký hiệu này giống như số 0, nhưng không hiển thị các số không đi trước/sau nếu có nhiều ký tự # trong mã định dạng hơn số chữ số trong số đó. Chỉ hiển thị những chữ số liên quan của số đó."
+msgid "Mathematical Operators"
+msgstr "Toán tử"
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3159150\n"
-"17\n"
+"03070000.xhp\n"
+"hd_id3149234\n"
+"1\n"
"help.text"
-msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
-msgstr "<emph>.:</emph> vật thế chỗ thập phân quyết định số lần số bên trái và bên phải dấu cách thập phân."
+msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Toán tử Toán học\">Toán tử Toán học</link>"
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3159252\n"
-"18\n"
+"03070000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
-msgstr "Nếu mã định dạng chứa chỉ # vật thế chỗ bên trái ký hiệu này, thì các số nhỏ hơn 1 sẽ bắt đầu với một dấu cách thập phân. Để luôn luôn hiển thị một số không đi trước với các số phân số, hãy dùng 0 làm vật thế chỗ cho chữ số thứ nhất bên trái dấu cách thập phân."
+msgid "The following mathematical operators are supported in $[officename] Basic."
+msgstr "$[officename] Basic hỗ trợ những toán tử toán học theo đây."
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153368\n"
-"19\n"
+"03070000.xhp\n"
+"par_id3148552\n"
+"3\n"
"help.text"
-msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
-msgstr "<emph>%:</emph> nhân số với 100, và chèn dấu phân trăm (%) vào vị trí của số trong mã định dạng."
+msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
+msgstr "Chương này cung cấp một miêu tả chung ngắn về tất cả các toán tử kiểu số học yêu cầu để tính toán bên trong chương trình."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149481\n"
-"20\n"
+"03070100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
-msgstr "<emph>E- E+ e- e+ :</emph> nếu mã định dạng chứa ít nhất một chữ số giữ chỗ (0 hay #) bên phải ký hiệu E-, E+, e-, hay e+, thì số được định dạng theo định dạng hoa học hay số mũ. Chữ E hay e được chèn vào giữa số chính và số mũ. Số các ký hiệu giữ chỗ cho chữ số bên phải ký hiệu thì quyết định số các chữ số trong số mũ."
+msgid "\"-\" Operator [Runtime]"
+msgstr "Toán tử « - » [Runtime]"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149262\n"
-"21\n"
+"03070100.xhp\n"
+"bm_id3156042\n"
"help.text"
-msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
-msgstr "Nếu số mũ là âm, một dấu trừ được hiển thị trực tiếp phía trước một số mũ với E-, E+, e-, e+. Nếu số mũ là dương, một dấu cộng chỉ được hiển thị phía trước số mũ với E+ hay e+."
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử « - » (toán học)</bookmark_value>"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148617\n"
-"23\n"
+"03070100.xhp\n"
+"hd_id3156042\n"
+"1\n"
"help.text"
-msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
-msgstr "Dấu cách hàng nghìn được hiển thị nếu mã định dạng chứa dấu tách nằm giữa hai ký tự giữ chỗ (0 hay #)."
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">Toán tử « - » [Runtime]</link>"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3163713\n"
-"29\n"
+"03070100.xhp\n"
+"par_id3153345\n"
+"2\n"
"help.text"
-msgid "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
-msgstr "Sử dụng một dấu chấm làm dấu cách hàng nghìn thì phụ thuộc vào thiết lập miền. Khi bạn gõ một số một cách trực tiếp vào mã nguồn Basic, lúc nào cũng cần phải sử dụng một dấu chấm làm dấu cách hàng nghìn. Ký tự thật được hiển thị làm dấu cách hàng nghìn phụ thuộc vào định dạng số trong thiết lập hệ thống của bạn."
+msgid "Subtracts two values."
+msgstr "Trừ giá trị này khỏi giá trị khác."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3152887\n"
-"24\n"
+"03070100.xhp\n"
+"hd_id3149416\n"
+"3\n"
"help.text"
-msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
-msgstr "<emph>- + $ ( ) dấu_cách:</emph> Mỗi dấu cộng (+), dấu trừ (-), dấu đồng đô-la ($), dấu cách ( ) hay (dấu ngoặc) được nhập trực tiếp vào mã định dạng thì được hiển thị dưới dạng một ký tự nghĩa chữ."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148576\n"
-"25\n"
+"03070100.xhp\n"
+"par_id3156023\n"
+"4\n"
"help.text"
-msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
-msgstr "Để hiển thị ký tự khác với những cái được liệt kê ở đây, bạn cần phải gõ gạch chéo ngược (\\) phía trước, hoặc \"bao quanh nó trong dấu nháy kép\"."
+msgid "Result = Expression1 - Expression2"
+msgstr "Kết quả = Biểu_thức1 - Biểu_thức2"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153139\n"
-"26\n"
+"03070100.xhp\n"
+"hd_id3154760\n"
+"5\n"
"help.text"
-msgid "\\ : The backslash displays the next character in the format code."
-msgstr "\\ : Gạch chéo ngược sẽ hiển thị ký tự kế tiếp trong mã định dạng."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153366\n"
-"27\n"
+"03070100.xhp\n"
+"par_id3147560\n"
+"6\n"
"help.text"
-msgid "Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
-msgstr "Trong mã định dạng ký tự có nghĩa đặc biêt chỉ có thể được hiển thị dạng ký tự nghĩa chữ nếu nó có gạch chéo ngược đi trước. Gạch chéo ngược chính nó không phải được hiển thị, nếu bạn không gõ một gạch chéo ngược đôi (\\\\) để thoát nó trong mã định dạng."
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của phép trừ."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3155411\n"
-"28\n"
+"03070100.xhp\n"
+"par_id3150398\n"
+"7\n"
"help.text"
-msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
-msgstr "Các ký tự phải có gạch chéo ngược đi trước trong mã định dạng để hiển thị dạng ký tự nghĩa chữ là những ký tự định dạng ngày tháng và thời gian (a, c, d, h, m, n, p, q, s, t, w, y, /, :), những ký tự định dạng số (#, 0, %, E, e, dấu phẩy, dấu chấm), và những ký tự định dạng chuỗi (@, &, <, >, !)."
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn dùng trong phép trừ."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3145749\n"
-"30\n"
+"03070100.xhp\n"
+"hd_id3154366\n"
+"8\n"
"help.text"
-msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
-msgstr "Bạn cũng có thể sử dụng những định dạng số đã xác định sẵn mà theo đây. Mọi mã được đã xác định sẵn (trừ « Số chung ») đều trả về số dạng số thập phân có hai lần số."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3150113\n"
-"31\n"
+"03070200.xhp\n"
+"tit\n"
"help.text"
-msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
-msgstr "Nếu bạn sử dụng định dạng xác định sẵn, tên của định dạng phải nằm giữa dấu nháy kép."
+msgid "\"*\" Operator [Runtime]"
+msgstr "Toán tử « * » [Runtime]"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149377\n"
-"32\n"
+"03070200.xhp\n"
+"bm_id3147573\n"
"help.text"
-msgid "Predefined format"
-msgstr "Định dạng xác định sẵn"
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử « * » (toán học)</bookmark_value>"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154730\n"
-"33\n"
+"03070200.xhp\n"
+"hd_id3147573\n"
+"1\n"
"help.text"
-msgid "<emph>General Number:</emph> Numbers are displayed as entered."
-msgstr "<emph>Số chung:</emph> mỗi số được hiển thị dưới dạng đã nhập vào."
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">Toán tử « * » [Runtime]</link>"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153158\n"
-"34\n"
+"03070200.xhp\n"
+"par_id3154347\n"
+"2\n"
"help.text"
-msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
-msgstr "<emph>Tiền tệ:</emph> chèn một ký hiệu đô-la vào phía trước số, và đặt số âm giữa dấu ngoặc."
+msgid "Multiplies two values."
+msgstr "Nhân hai giá trị."
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154490\n"
-"35\n"
+"03070200.xhp\n"
+"hd_id3148946\n"
+"3\n"
"help.text"
-msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
-msgstr "<emph>Cố định:</emph> hiển thị ít nhất một chữ số phía trước dấu cách thập phân."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153415\n"
-"36\n"
+"03070200.xhp\n"
+"par_id3150358\n"
+"4\n"
"help.text"
-msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
-msgstr "<emph>Chuẩn:</emph> hiển thị số dùng dấu cách hàng nghìn."
+msgid "Result = Expression1 * Expression2"
+msgstr "Kết quả = Biểu_thức1 * Biểu_thức2"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3150715\n"
-"37\n"
+"03070200.xhp\n"
+"hd_id3150400\n"
+"5\n"
"help.text"
-msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
-msgstr "<emph>Phần trăm:</emph> nhân số với 100, và phụ thêm một ký hiệu phần trăm vào số."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153836\n"
-"38\n"
+"03070200.xhp\n"
+"par_id3154365\n"
+"6\n"
"help.text"
-msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
-msgstr "<emph>Khoa học:</emph> hiển thị các số theo định dạng khoa học, v.d. 1.00E+03 = 1000)."
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgstr "<emph>Kết quả:</emph> bất kỳ biểu thức số nào ghi nhận kết quả của một phép nhân."
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153707\n"
-"39\n"
+"03070200.xhp\n"
+"par_id3154685\n"
+"7\n"
"help.text"
-msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
-msgstr "Một mã định dạng có thể được chia ra ba phần định giới bằng dấu chấm phẩy. Phần thứ nhất xác định định dạng cho các giá trị dương, phần thứ hai cho các giá trị âm, và phần thứ ba cho số không. Nếu bạn chỉ ghi rõ một mã định dạng, nó sẽ áp dụng cho tất cả các số."
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn nhân."
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149019\n"
-"40\n"
+"03070200.xhp\n"
+"hd_id3153968\n"
+"8\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03120301.xhp
-#, fuzzy
+#: 03070300.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_idN107A2\n"
+"03070300.xhp\n"
+"tit\n"
"help.text"
-msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
-msgstr "REM Lúc nào cũng sử dụng một dấu cách thập phân khi bạn gõ số vào mã nguồn Basic."
+msgid "\"+\" Operator [Runtime]"
+msgstr "Toán tử « + » [Runtime]"
-#: 03120301.xhp
-#, fuzzy
+#: 03070300.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147339\n"
-"46\n"
+"03070300.xhp\n"
+"bm_id3145316\n"
"help.text"
-msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
-msgstr "REM Hiển thị (v.d.) 6,328.20 theo miền địa phương tiếng Anh, và 6.328,20 theo miền địa phương tiếng Việt."
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử « * » (toán học)</bookmark_value>"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"tit\n"
+"03070300.xhp\n"
+"hd_id3145316\n"
+"1\n"
"help.text"
-msgid "$[officename] Basic IDE"
-msgstr "$[officename] Basic IDE"
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">Toán tử « + » [Runtime]</link>"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"03070300.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
-msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgid "Adds or combines two expressions."
+msgstr "Cộng hoặc kết hợp với nhau hai biểu thức."
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153142\n"
-"2\n"
+"03070300.xhp\n"
+"hd_id3144500\n"
+"3\n"
"help.text"
-msgid "This section describes the structure of the Basic IDE."
-msgstr "Phần này diễn tả cấu trúc của môi trường IDE Basic."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_idN105C9\n"
+"03070300.xhp\n"
+"par_id3150358\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở môi trường IDE Basic, trong đó bạn có thể ghi và chỉnh sửa vĩ lệnh.</ahelp>"
+msgid "Result = Expression1 + Expression2"
+msgstr "Kết quả = BIểu_thức1 + BIểu_thức2"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3153188\n"
+"03070300.xhp\n"
+"hd_id3150400\n"
"5\n"
"help.text"
-msgid "Commands From the Context menu of the Module Tabs"
-msgstr "Lệnh từ Trình đơn ngữ cảnh của các Thẻ Mô-đun"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154731\n"
+"03070300.xhp\n"
+"par_id3154123\n"
"6\n"
"help.text"
-msgid "Insert"
-msgstr "Chèn"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của phép cộng."
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3151074\n"
-"8\n"
+"03070300.xhp\n"
+"par_id3150870\n"
+"7\n"
"help.text"
-msgid "Module"
-msgstr "Mô-đun"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr "<emph>BIểu_thức1, BIểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn cộng hoặc kết hợp với nhau."
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3149581\n"
-"9\n"
+"03070300.xhp\n"
+"hd_id3153969\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
-msgstr "<ahelp hid=\".uno:NewModule\">Chèn một mô-đun mới vào thư viện hiện thời.</ahelp>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147397\n"
-"10\n"
+"03070400.xhp\n"
+"tit\n"
"help.text"
-msgid "Dialog"
-msgstr "Hộp thoại"
+msgid "\"/\" Operator [Runtime]"
+msgstr "Toán tử « / » [Runtime]"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3144335\n"
-"11\n"
+"03070400.xhp\n"
+"bm_id3150669\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
-msgstr "<ahelp hid=\".uno:NewDialog\">Chèn một hộp thoại mới vào hộp thoại hiện tại.</ahelp>"
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử « / » (toán học)</bookmark_value>"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3155602\n"
-"12\n"
+"03070400.xhp\n"
+"hd_id3150669\n"
+"1\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">Toán tử « / » [Runtime]</link>"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3155064\n"
-"13\n"
+"03070400.xhp\n"
+"par_id3149670\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteCurrent\">Xoá mô-đun đã chọn.</ahelp>"
+msgid "Divides two values."
+msgstr "Chia giá trị này cho giá trị khác."
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3149018\n"
-"14\n"
+"03070400.xhp\n"
+"hd_id3148946\n"
+"3\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154754\n"
-"15\n"
+"03070400.xhp\n"
+"par_id3153360\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
-msgstr "<ahelp hid=\".uno:RenameCurrent\">Thay đổi tên của mô-đun hiện thời, tại chỗ.</ahelp>"
+msgid "Result = Expression1 / Expression2"
+msgstr "Kết quả = Biểu_thức1 / Biểu_thức2"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3150043\n"
-"16\n"
+"03070400.xhp\n"
+"hd_id3150359\n"
+"5\n"
"help.text"
-msgid "Hide"
-msgstr "Ẩn"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3145147\n"
-"17\n"
+"03070400.xhp\n"
+"par_id3154141\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
-msgstr "<ahelp hid=\".uno:HideCurPage\">Ẩn mô-đun hiện thời.</ahelp>"
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
+msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của phép chia."
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3163805\n"
-"18\n"
+"03070400.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "Modules"
-msgstr "Mô-đun"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn đặt trong phép chia."
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153965\n"
-"19\n"
+"03070400.xhp\n"
+"hd_id3154684\n"
+"8\n"
"help.text"
-msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
-msgstr "Mở hộp thoại <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Tổ chức Vĩ lệnh\"><emph>Tổ chức Vĩ lệnh</emph></link>."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
+"03070500.xhp\n"
"tit\n"
"help.text"
-msgid "DateDiff Function [Runtime]"
-msgstr "Hàm DateDiff [Runtime]"
+msgid "\"^\" Operator [Runtime]"
+msgstr "Toán tử « ^ » [Runtime]"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"bm_id6134830\n"
+"03070500.xhp\n"
+"bm_id3145315\n"
"help.text"
-msgid "<bookmark_value>DateDiff function</bookmark_value>"
-msgstr "<bookmark_value>hàm DateDiff</bookmark_value>"
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử « ^ » (toán học)</bookmark_value>"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10542\n"
+"03070500.xhp\n"
+"hd_id3145315\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">Hàm DateDiff [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">Toán tử « ^ » [Runtime]</link>"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10546\n"
+"03070500.xhp\n"
+"par_id3149670\n"
+"2\n"
"help.text"
-msgid "Returns the number of date intervals between two given date values."
-msgstr "Trả về số khoảng ngày giữa hai giá trị ngày tháng đã cho."
+msgid "Raises a number to a power."
+msgstr "Tăng một số bằng một lũy thừa."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10549\n"
+"03070500.xhp\n"
+"hd_id3147264\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10648\n"
-"help.text"
-msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-msgstr "DateDiff (Cộng, Ngày1, Ngày2 [, Đầu_tuần [, Đầu_năm]])"
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1064F\n"
+"03070500.xhp\n"
+"par_id3149656\n"
+"4\n"
"help.text"
-msgid "A number."
-msgstr "Một con số."
+msgid "Result = Expression ^ Exponent"
+msgstr "Kết quả = Biểu_thức ^ Số_mũ"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10652\n"
+"03070500.xhp\n"
+"hd_id3151211\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10656\n"
-"help.text"
-msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr "<emph>Cộng</emph> — một biểu thức chuỗi từ bảng theo sau, ghi rõ khoảng ngày."
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10664\n"
-"help.text"
-msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
-msgstr "<emph>Ngày1, Ngày2</emph> — hai giá trị ngày tháng cần so sánh."
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
-msgstr "<emph>Đầu_tuần</emph> — một tham số tùy chọn mà ghi rõ hôm bắt đầu tuần."
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1067A\n"
-"help.text"
-msgid "Week_start value"
-msgstr "GIá trị đầu_tuần"
-
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10680\n"
+"03070500.xhp\n"
+"par_id3153192\n"
+"6\n"
"help.text"
-msgid "Explanation"
-msgstr "Giải thích"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của số tăng bằng lũy thừa."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10687\n"
+"03070500.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
+msgstr "<emph>Biểu thức:</emph> giá trị thuộc số cần tăng bằng lũy thừa."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1068D\n"
+"03070500.xhp\n"
+"par_id3156422\n"
+"8\n"
"help.text"
-msgid "Use system default value"
-msgstr "Dùng giá trị mặc định của hệ thống"
+msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
+msgstr "<emph>Số mũ :</emph> giá trị của lũy thừa bằng đó bạn muốn tăng biểu thức."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10694\n"
+"03070500.xhp\n"
+"hd_id3147287\n"
+"9\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1069A\n"
+"03070500.xhp\n"
+"par_id3146984\n"
+"12\n"
"help.text"
-msgid "Sunday (default)"
-msgstr "Chủ Nhật (mặc định)"
+msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
+msgstr "Print Exp ( 23 * Log( 12.345 ) ) REM Tăng bằng cách tạo lôga"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106A1\n"
+"03070600.xhp\n"
+"tit\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Mod-Operator [Runtime]"
+msgstr "Toán tử Mod [Runtime]"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106A7\n"
+"03070600.xhp\n"
+"bm_id3150669\n"
"help.text"
-msgid "Monday"
-msgstr "Thứ Hai"
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>toán tử MOD (toán học)</bookmark_value>"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106AE\n"
+"03070600.xhp\n"
+"hd_id3150669\n"
+"1\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Toán tử Mod [Runtime]\">Toán tử Mod [Runtime]</link>"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106B4\n"
+"03070600.xhp\n"
+"par_id3148686\n"
+"2\n"
"help.text"
-msgid "Tuesday"
-msgstr "Thứ Ba"
+msgid "Returns the integer remainder of a division."
+msgstr "Trả về phần dự nguyên của một phép chia."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106BB\n"
+"03070600.xhp\n"
+"hd_id3146795\n"
+"3\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106C1\n"
+"03070600.xhp\n"
+"par_id3147560\n"
+"4\n"
"help.text"
-msgid "Wednesday"
-msgstr "Thứ Tư"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Kết quả = Biểu_thức1 MOD Biểu_thức2"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106C8\n"
+"03070600.xhp\n"
+"hd_id3149657\n"
+"5\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106CE\n"
+"03070600.xhp\n"
+"par_id3153380\n"
+"6\n"
"help.text"
-msgid "Thursday"
-msgstr "Thứ Năm"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106D5\n"
+"03070600.xhp\n"
+"hd_id3154365\n"
+"7\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106DB\n"
+"03070600.xhp\n"
+"par_id3145172\n"
+"8\n"
"help.text"
-msgid "Friday"
-msgstr "Thứ Sáu"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgstr "<emph>Kết quả:</emph> bất cứ biến thuộc số nào mà chứa kết quả của phép MOD."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106E2\n"
+"03070600.xhp\n"
+"par_id3151042\n"
+"9\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn đặt trong phép chia."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106E8\n"
+"03070600.xhp\n"
+"hd_id3147287\n"
+"10\n"
"help.text"
-msgid "Saturday"
-msgstr "Thứ Bảy"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106EB\n"
+"03070600.xhp\n"
+"par_id3161832\n"
+"12\n"
"help.text"
-msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
-msgstr "<emph>Đầu_năm</emph> — một tham số tùy chọn mà ghi rõ tuần đầu tiên của năm."
+msgid "Print 10 Mod 2.5 ' returns 0"
+msgstr "print 10 mod 2.5 REM trả về 0"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106FB\n"
+"03070600.xhp\n"
+"par_id3146922\n"
+"13\n"
"help.text"
-msgid "Year_start value"
-msgstr "GIá trị đầu_năm"
+msgid "Print 10 / 2.5 ' returns 4"
+msgstr "print 10 / 2.5 REM trả về 4"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10701\n"
+"03070600.xhp\n"
+"par_id3145273\n"
+"14\n"
"help.text"
-msgid "Explanation"
-msgstr "Giải thích"
+msgid "Print 10 Mod 5 ' returns 0"
+msgstr "print 10 mod 5 REM trả về 0"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10708\n"
+"03070600.xhp\n"
+"par_id3150011\n"
+"15\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Print 10 / 5 ' returns 2"
+msgstr "print 10 / 5 REM trả về 2"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1070E\n"
+"03070600.xhp\n"
+"par_id3149483\n"
+"16\n"
"help.text"
-msgid "Use system default value"
-msgstr "Dùng giá trị mặc định của hệ thống"
+msgid "Print 5 Mod 10 ' returns 5"
+msgstr "print 5 mod 10 REM trả về 5"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10715\n"
+"03070600.xhp\n"
+"par_id3151114\n"
+"17\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Print 5 / 10 ' returns 0.5"
+msgstr "print 5 / 10 REM trả về 0.5"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1071B\n"
+"03080000.xhp\n"
+"tit\n"
"help.text"
-msgid "Week 1 is the week with January, 1st (default)"
-msgstr "Tuần 1 là tuần chứa ngày 1, tháng 1 (mặc định)"
+msgid "Numeric Functions"
+msgstr "Hàm thuộc số"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10722\n"
+"03080000.xhp\n"
+"hd_id3153127\n"
+"1\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Hàm thuộc số\">Hàm thuộc số</link>"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10728\n"
+"03080000.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Week 1 is the first week containing four or more days of that year"
-msgstr "Tuần 1 là tuần thứ nhất chứa ít nhất bốn ngày của năm đó."
+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 "Những hàm thuộc số theo đây đều làm phép tính. Các toán tử kiểu toán học và lôgic đều được diễn tả trong một phần khác. Hàm khác với toán tử, vì hàm nhận đối số và trả về kết quả, còn toán tử trả về kết quả bằng cách kết hợp hai biểu thức thuộc số."
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1072F\n"
+"03080100.xhp\n"
+"tit\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "Trigonometric Functions"
+msgstr "Hàm lượng giác"
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10735\n"
+"03080100.xhp\n"
+"hd_id3159201\n"
+"1\n"
"help.text"
-msgid "Week 1 is the first week containing only days of the new year"
-msgstr "Tuần 1 là tuần thứ nhất chứa chỉ những ngày của năm mới."
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Hàm lượng giác\">Hàm lượng giác</link>"
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10738\n"
+"03080100.xhp\n"
+"par_id3149180\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr "Theo đây có những hàm lượng giác được $[officename] Basic hỗ trợ."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
+"03080101.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "Câu lệnh While...Wend [Runtime]"
+msgid "Atn Function [Runtime]"
+msgstr "Hàm Atn [Runtime]"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"bm_id3150400\n"
+"03080101.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
-msgstr "<bookmark_value>While;vòng lặp While...Wend</bookmark_value>"
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr "<bookmark_value>hàm Atn</bookmark_value>"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3150400\n"
+"03080101.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"Câu lệnh While...Wend [Runtime]\">Câu lệnh While...Wend [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Hàm Atn [Runtime]\">Hàm Atn [Runtime]</link>"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151211\n"
+"03080101.xhp\n"
+"par_id3149346\n"
"2\n"
"help.text"
-msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
-msgstr "Khi một chương trình gặp một câu lệnh <emph>While</emph> (trong khi), nó thử điều kiện. Điều kiện là Sai thì chương trình cứ trực tiếp theo câu lệnh <emph>Wend</emph> (Cuối W?). Điều kiện Đúng thì thực hiện vòng lặp đến khi chương trình tìm <emph>Wend</emph> rồi nhảy về câu lệnh <emph>While</emph>. Nếu điều kiện vẫn còn đúng, thì vòng lặp được thực hiện lần nữa."
+msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+msgstr "Hàm lượng giác mà trả về arctang của một biểu thức thuộc số. Giá trị trả về nằm trong phạm vi -π/2 đến +π/2."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151041\n"
+"03080101.xhp\n"
+"par_id3143271\n"
"3\n"
"help.text"
-msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
-msgstr "Khác với câu lệnh <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> (làm...vòng lặp), bạn không thể hủy bỏ một vòng lặp <emph>While...Wend</emph> bằng <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> (thoát). Không bao giờ nên thoát khỏi một vòng lặp <emph>While...Wend</emph> dùng <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link> (đi tới), vì nó có thể gây ra lỗi lúc chạy."
+msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
+msgstr "Arctang là giá trị ngược của hàm tang. Hàm Atn trả về góc « Alpha » theo radian, dùng tang của góc này. Hàm cũng có thể trả về góc « Alpha » bằng cách so sánh tỷ lệ của chiều dài cạnh đối vơi góc đó, với chiều dài cạnh kề với góc đó, trong một hình tam giác vuông góc."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3145172\n"
+"03080101.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "A Do...Loop is more flexible than a While...Wend."
-msgstr "Một câu lệnh kiểu <emph>Do...Loop</emph> ít chặt chẽ hơn câu lệnh <emph>While...Wend</emph>."
+msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+msgstr "Atn(cạnh đối với góc/cạnh kề với góc)= Alpha"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
+"03080101.xhp\n"
+"hd_id3149669\n"
"5\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147288\n"
+"03080101.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "While Condition [Statement] Wend"
-msgstr "Điều kiện While [Statement] Wend"
+msgid "Atn (Number)"
+msgstr "Atn (Số)"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3153139\n"
+"03080101.xhp\n"
+"hd_id3148664\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3159153\n"
+"03080101.xhp\n"
+"par_id3150359\n"
"8\n"
"help.text"
-msgid "Sub ExampleWhileWend"
-msgstr "Sub ExampleWhileWend"
+msgid "Double"
+msgstr "Đôi"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151114\n"
+"03080101.xhp\n"
+"hd_id3148798\n"
"9\n"
"help.text"
-msgid "Dim stext As String"
-msgstr "Dim stext As String"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3153143\n"
+"03080101.xhp\n"
+"par_id3156212\n"
"10\n"
"help.text"
-msgid "Dim iRun As Integer"
-msgstr "Dim iRun As Integer"
+msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
+msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số nào đại diện tỷ lệ của hai cạnh của một hình tam giác vuông góc. Hàm Atn trả về góc tương ứng theo radian (arctang)."
-#: 03090203.xhp
-#, fuzzy
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3155306\n"
+"03080101.xhp\n"
+"par_id3153192\n"
"11\n"
"help.text"
-msgid "sText =\"This Is a short text\""
-msgstr "sText =\"Đây là một chuỗi văn bản ngắn.\""
+msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgstr "Để chuyển đổi một số radian sang độ, hãy nhân số radian với 180/π."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3154011\n"
+"03080101.xhp\n"
+"par_id3147230\n"
"12\n"
"help.text"
-msgid "iRun = 1"
-msgstr "iRun = 1"
+msgid "degree=(radian*180)/pi"
+msgstr "độ=(radian*180)/π"
-#: 03090203.xhp
-#, fuzzy
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147215\n"
+"03080101.xhp\n"
+"par_id3125864\n"
"13\n"
"help.text"
-msgid "While iRun < Len(sText)"
-msgstr "while iRun < Len(sText)"
+msgid "radian=(degree*pi)/180"
+msgstr "radian=(độ*π)/180"
-#: 03090203.xhp
-#, fuzzy
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147427\n"
+"03080101.xhp\n"
+"par_id3159252\n"
"14\n"
"help.text"
-msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
-msgstr "if Mid(sText,iRun,1 )<> \" \" then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
+msgstr "Pi (π) ở đây là hằng số hình tròn cố định có giá trị được làm tròn 3.14159."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3149665\n"
+"03080101.xhp\n"
+"hd_id3153142\n"
"15\n"
"help.text"
-msgid "iRun = iRun + 1"
-msgstr "iRun = iRun + 1"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3152939\n"
+"03080101.xhp\n"
+"par_id3146985\n"
"16\n"
"help.text"
-msgid "Wend"
-msgstr "Wend"
+msgid "' The following example calculates for a right-angled triangle"
+msgstr "REM Mẫu ví dụ sau tính cho một tam giác vuông góc"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3153189\n"
+"03080101.xhp\n"
+"par_id3145750\n"
"17\n"
"help.text"
-msgid "MsgBox sText,0,\"Text encoded\""
-msgstr "MsgBox sText,0,\"Văn bản đã mã hoá\""
-
-#: 03090203.xhp
-#, fuzzy
-msgctxt ""
-"03090203.xhp\n"
-"par_id3145251\n"
-"18\n"
-"help.text"
-msgid "End Sub"
-msgstr "End Sub"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"tit\n"
-"help.text"
-msgid "Global Statement [Runtime]"
-msgstr "Câu lệnh Global [Runtime]"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Global statement</bookmark_value>"
-msgstr "<bookmark_value>Câu lệnh Global</bookmark_value>"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3159201\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Câu lệnh Global [Runtime]\">Câu lệnh Global [Runtime]</link>"
+msgid "' the angle Alpha from the tangent of the angle Alpha:"
+msgstr "REM góc Alpha từ tang của góc Alpha:"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"par_id3149177\n"
-"2\n"
+"03080101.xhp\n"
+"par_id3151112\n"
+"19\n"
"help.text"
-msgid "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
-msgstr "Đặt các chiều của một biến hay mảng ở bậc toàn cục (tức là không phải bên trong một chương trình con hay hàm), để biến hay mảng còn hợp lệ trong tất cả các thư viện và mô-đun trong phiên chạy đang chạy."
+msgid "' rounded Pi = 3.14159 Is a predefined constant"
+msgstr "REM π = 3.14159 được làm tròn là một hằng số đã xác định sẵn"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"hd_id3143270\n"
-"3\n"
+"03080101.xhp\n"
+"par_id3149262\n"
+"22\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"Nhập chiều dài của cạnh kề với góc: \",\"Kề\")"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"par_id3150771\n"
-"4\n"
+"03080101.xhp\n"
+"par_id3149482\n"
+"23\n"
"help.text"
-msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-msgstr "Global Tên_biến[(đầu To cuối)] [As Kiểu_biến][, Tên_biến2[(đầu To cuối)] [As Kiểu_biến][,...]]"
+msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgstr "d2 = InputBox$ (\"Nhập chiều dài của cạnh đối với góc: \",\"Đối\")"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"hd_id3156152\n"
-"5\n"
+"03080101.xhp\n"
+"par_id3155415\n"
+"24\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr "Print \"Góc Alpha là\"; (atn (d2/d1) * 180 / Pi); \" độ\""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
+"03080102.xhp\n"
"tit\n"
"help.text"
-msgid "Const Statement [Runtime]"
-msgstr "Câu lệnh Const [Runtime]"
+msgid "Cos Function [Runtime]"
+msgstr "Hàm Cos [Runtime]"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"bm_id3146958\n"
+"03080102.xhp\n"
+"bm_id3154923\n"
"help.text"
-msgid "<bookmark_value>Const statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Const</bookmark_value>"
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr "<bookmark_value>hàm Cos</bookmark_value>"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3146958\n"
+"03080102.xhp\n"
+"hd_id3154923\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Câu lệnh Const [Runtime]\">Câu lệnh Const [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Hàm Cos [Runtime]\">Hàm Cos [Runtime]</link>"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3154143\n"
+"03080102.xhp\n"
+"par_id3159413\n"
"2\n"
"help.text"
-msgid "Defines a string as a constant."
-msgstr "Xác định một chuỗi dưới dạng một hằng số."
+msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Tính cosin của một góc. Góc được ghi rõ theo độ. Kết quả nằm giữa -1 và +1."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3150670\n"
+"03080102.xhp\n"
+"par_id3150358\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Using the angle Alpha, the Cos-Function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
+msgstr "Dùng góc Alpha, hàm Cos tính tỷ lệ là chiều dài của cạnh kề với góc chia cho chiều dài của cạnh huyền, trong một hình tam giác vuông góc."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150984\n"
+"03080102.xhp\n"
+"par_id3154141\n"
"4\n"
"help.text"
-msgid "Const Text = Expression"
-msgstr "Const Văn_bản = Biểu_thức"
+msgid "Cos(Alpha) = Adjacent/Hypotenuse"
+msgstr "Cos(Alpha) = Kề/Huyền"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3147530\n"
+"03080102.xhp\n"
+"hd_id3154125\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3153897\n"
+"03080102.xhp\n"
+"par_id3145172\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
-msgstr "<emph>Văn_bản:</emph> bất cứ tên hằng số nào mà tùy theo ước quy đặt tên tiêu chuẩn."
+msgid "Cos (Number)"
+msgstr "Cos (Số)"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3147264\n"
+"03080102.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
-msgstr "Một hằng số là một biến giúp cải tiến khả năng đọc của một chương trình. Hằng số không phải được xác định dưới dạng một kiểu biến nào đó, nhưng được dùng làm vật thế chỗ trong mã nguồn. Bạn chỉ có thể xác định mỗi hằng số một lần, sau đó thì không thể sửa đổi. Hãy dùng câu lệnh này để xác định một hằng số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03100700.xhp
-#, fuzzy
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150542\n"
+"03080102.xhp\n"
+"par_id3150449\n"
"8\n"
"help.text"
-msgid "CONST ConstName=Expression"
-msgstr "CONST ConstName=Expression"
+msgid "Double"
+msgstr "Đôi"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150400\n"
+"03080102.xhp\n"
+"hd_id3153969\n"
"9\n"
"help.text"
-msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
-msgstr "Kiểu biểu thức không thích đáng. Nếu một chương trình được khởi chạy, $[officename] Basic chuyển đổi mã chương trình một cách nội bộ, để mỗi lần dùng hằng số, biểu thức đã xác định sẽ thay thế nó."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3154366\n"
+"03080102.xhp\n"
+"par_id3153770\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+msgstr "<emph>Số:</emph> biểu thức thuộc số mà ghi rõ một góc theo radian cho đó bạn muốn tính cosin."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3153969\n"
+"03080102.xhp\n"
+"par_id3145749\n"
+"11\n"
+"help.text"
+msgid "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
+msgstr "Để chuyển đổi một số độ sang radian, hãy nhân số độ với π/180. Ngược lại, để chuyển đổi một số radian sang độ, nhân số radian với 180/π."
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3149664\n"
+"12\n"
+"help.text"
+msgid "degree=(radian*180)/pi"
+msgstr "độ=(radian*180)/π"
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3146985\n"
+"13\n"
+"help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "radian=(độ*π)/180"
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3152885\n"
"14\n"
"help.text"
-msgid "Const sVar = \"Program\", dVar As Double = 1.00"
-msgstr "Const sVar = \"Program\", dVar As Double = 1.00"
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
+msgstr "Pi (π) ở đây là hằng số hình tròn cố định có giá trị được làm tròn 3.14159..."
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"tit\n"
+"03080102.xhp\n"
+"hd_id3153951\n"
+"15\n"
"help.text"
-msgid "Using Objects"
-msgstr "Sử dụng Đối tượng"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"hd_id3145645\n"
-"1\n"
+"03080102.xhp\n"
+"par_id3155855\n"
+"16\n"
"help.text"
-msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
-msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Sử dụng Phân loại Đối tượng</link></variable>"
+msgid "' The following example allows for a right-angled triangle the input of"
+msgstr "REM Mẫu ví dụ theo đây cho phép (đối với một hình tam giác vuông góc) nhập"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3153707\n"
-"76\n"
+"03080102.xhp\n"
+"par_id3149484\n"
+"17\n"
"help.text"
-msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
-msgstr "Phân loại đối tượng cung cấp một toàn cảnh của tất cả các mô-đun và hộp thoại bạn đã tạo trong $[officename]."
+msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
+msgstr "REM sec và góc (theo độ), và tính chiều dài của cạnh huyền:"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3147346\n"
-"78\n"
+"03080102.xhp\n"
+"par_id3150010\n"
+"19\n"
"help.text"
-msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
-msgstr "Nhấn vào biểu tượng <emph>Phân loại Đối tượng</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Biểu tượng</alt></image> trên thanh công cụ <emph>Vĩ lệnh</emph> để hiển thị phân loại đối tượng."
+msgid "' rounded Pi = 3.14159"
+msgstr "REM π = 3.14159 (được làm tròn)"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3155114\n"
-"79\n"
+"03080102.xhp\n"
+"par_id3144764\n"
+"21\n"
"help.text"
-msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
-msgstr "Hộp thoại hiển thị danh sách các đối tượng tồn tại theo phân cấp. Nhấn đôi vào một mục nhập nào đó trong danh sách, để giãn ra nó và hiển thị các đối tượng cấp con."
+msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"\"Nhập chiều dài của cạnh kề: \",\"Kề\")"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3150786\n"
-"83\n"
+"03080102.xhp\n"
+"par_id3154491\n"
+"22\n"
"help.text"
-msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, select the corresponding entry and click the <emph>Show</emph> icon <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icon</alt></image>."
-msgstr "Để hiển thị một mô-đun nào đó trong Bộ Sửa, hoặc để đặt con trỏ trong một trình con hoặc hàm nào đó, lựa chọn mục nhập tương ứng, sau đó nhấn vào biểu tượng <emph>Hiện</emph> <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Biểu tượng</alt></image>."
+msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAngle = InputBox$ (\"Nhập góc Alpha theo độ: \",\"Alpha\")"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3153266\n"
-"81\n"
+"03080102.xhp\n"
+"par_id3151074\n"
+"23\n"
"help.text"
-msgid "Click the (X) icon in the title bar to close the object catalog."
-msgstr "Nhấn vào biểu tượng (X) trên thanh tựa đề để đóng phân loại đối tượng."
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgstr "Print \"Chiều dài của cạnh huyền là; (d1 / cos (dAngle * Pi / 180))"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
+"03080103.xhp\n"
"tit\n"
"help.text"
-msgid "FreeLibrary Function [Runtime]"
-msgstr "Hàm FreeLibrary [Runtime]"
+msgid "Sin Function [Runtime]"
+msgstr "Hàm Sin [Runtime]"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"bm_id3143270\n"
+"03080103.xhp\n"
+"bm_id3153896\n"
"help.text"
-msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
-msgstr "<bookmark_value>hàm FreeLibrary</bookmark_value>"
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr "<bookmark_value>hàm Sin</bookmark_value>"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3143270\n"
+"03080103.xhp\n"
+"hd_id3153896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"Hàm FreeLibrary [Runtime]\">Hàm FreeLibrary [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Hàm Sin [Runtime]\">Hàm Sin [Runtime]</link>"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3147559\n"
+"03080103.xhp\n"
+"par_id3149456\n"
"2\n"
"help.text"
-msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
-msgstr "Ngắt các DLL đã được nạp bằng câu lệnh Declare. Một DLL đã nhả được tự động nạp lại nếu một của các hàm của nó được gọi. Xem thêm: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Trả về sin của một góc. Góc được ghi rõ theo độ. Kết quả nằm giữa -1 và +1."
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3148550\n"
+"03080103.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Using the angle Alpha, the Sin Function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
+msgstr "Dùng góc Alpha, hàm Sin trả về tỷ lệ là chiều dài của cạnh đối với góc chia cho chiều dài của cạnh huyền, trong một hình tam giác vuông góc."
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3153361\n"
+"03080103.xhp\n"
+"par_id3148798\n"
"4\n"
"help.text"
-msgid "FreeLibrary (LibName As String)"
-msgstr "FreeLibrary (LibName As String)"
+msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
+msgstr "Sin(Alpha) = cạnh đối với góc/cạnh huyền"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153380\n"
+"03080103.xhp\n"
+"hd_id3147230\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3154138\n"
+"03080103.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
-msgstr "<emph>Tên_thư_viện:</emph> biểu thức chuỗi mà ghi rõ tên của DLL."
+msgid "Sin (Number)"
+msgstr "Sin (Số)"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3146923\n"
+"03080103.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
-msgstr "FreeLibrary chỉ có thể nhả những DLL được nạp trong khi chạy Basic."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153363\n"
+"03080103.xhp\n"
+"par_id3150870\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Double"
+msgstr "Đôi"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"tit\n"
+"03080103.xhp\n"
+"hd_id3155132\n"
+"9\n"
"help.text"
-msgid "Static Statement [Runtime]"
-msgstr "Câu lệnh Static [Runtime]"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"bm_id3149798\n"
+"03080103.xhp\n"
+"par_id3145786\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>Static statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Static</bookmark_value>"
+msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+msgstr "<emph>Số:</emph> biểu thức thuộc số mà xác định góc theo radian cho đó bạn muốn tính sin."
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3149798\n"
-"1\n"
+"03080103.xhp\n"
+"par_id3155413\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Câu lệnh Static [Runtime]\">Câu lệnh Static [Runtime]</link>"
+msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
+msgstr "Để chuyển đổi độ sang radian, nhân số độ với π/180 ; ngược lại, để chuyển đổi radian sang độ, nhân số radian với 180/π."
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3153311\n"
-"2\n"
+"03080103.xhp\n"
+"par_id3149664\n"
+"12\n"
"help.text"
-msgid "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
-msgstr "Khai báo một biến hay mảng ở bậc thủ tục bên trong một chương trình con hay hàm, để các giá trị của biến hay mảng đó được giữ lại sau khi thoát khỏi chương trình con hay hàm. Các quy ước của câu lệnh <emph>Dim</emph> đều cũng hợp lệ."
+msgid "grad=(radiant*180)/pi"
+msgstr "grad=(radiant*180)/π"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3147264\n"
-"3\n"
+"03080103.xhp\n"
+"par_id3153143\n"
+"13\n"
"help.text"
-msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
-msgstr "Câu lệnh <emph>Static</emph> không thể dùng được để xác định mảng biến đổi. Mảng phải được ghi rõ tùy theo một kích cỡ cố định."
+msgid "radiant=(grad*pi)/180"
+msgstr "radiant=(grad*π)/180"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3149657\n"
-"4\n"
+"03080103.xhp\n"
+"par_id3151112\n"
+"14\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Pi is approximately 3.141593."
+msgstr "π xấp xỉ là 3.141593."
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3150400\n"
-"5\n"
+"03080103.xhp\n"
+"hd_id3163712\n"
+"15\n"
"help.text"
-msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
-msgstr "Static Tên_biến[(đầu To cuối)] [As Kiểu_biến], Tên_biến2[(đầu To cuối)] [As Kiểu_biến], ..."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3148452\n"
-"6\n"
+"03080103.xhp\n"
+"par_id3149482\n"
+"16\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM Trong mẫu ví dụ này, mục nhập theo đây có thể tính được đối với một hình tam giác vuông góc:"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3150870\n"
-"11\n"
+"03080103.xhp\n"
+"par_id3148577\n"
+"17\n"
"help.text"
-msgid "MsgBox iResult,0,\"The answer is\""
-msgstr "MsgBox iResult,0,\"Lời giải là\""
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+msgstr "REM Cạnh đối với góc và góc (theo độ) để tinh chiều dài của cạnh huyền:"
-#: 03103500.xhp
-#, fuzzy
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3151115\n"
-"15\n"
+"03080103.xhp\n"
+"par_id3150011\n"
+"19\n"
"help.text"
-msgid "' Function for initialization of the static variable"
-msgstr "REM Hàm để khởi tạo biến tĩnh"
+msgid "' Pi = 3.1415926 is a predefined variable"
+msgstr "REM π = 3.1415926 là một biến đã xác định sẵn"
-#: 03103500.xhp
-#, fuzzy
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id1057161\n"
+"03080103.xhp\n"
+"par_id3145251\n"
+"22\n"
"help.text"
-msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
-msgstr "Const iMinimum as Integer = 40 REM giá trị trả về tối thiểu của hàm này"
+msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgstr "d1 = InputBox$ (\"Nhập chiều dài của cạnh đối: \",\"Cạnh đối\")"
-#: 03103500.xhp
-#, fuzzy
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id580462\n"
+"03080103.xhp\n"
+"par_id3148456\n"
+"23\n"
"help.text"
-msgid "If iInit = 0 Then ' check if initialized"
-msgstr "if iInit = 0 then REM kiểm tra đã khởi tạo chưa"
+msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAlpha = InputBox$ (\"Nhập góc Alpha theo độ: \",\"Alpha\")"
-#: 03090202.xhp
+#: 03080103.xhp
msgctxt ""
-"03090202.xhp\n"
+"03080103.xhp\n"
+"par_id3153877\n"
+"24\n"
+"help.text"
+msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgstr "Print \"Chiều dài của cạnh huyền là\"; (d1 / sin (dAlpha * Pi / 180))"
+
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
"tit\n"
"help.text"
-msgid "For...Next Statement [Runtime]"
-msgstr "Câu lệnh For...Next [Runtime]"
+msgid "Tan Function [Runtime]"
+msgstr "Hàm Tan [Runtime]"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"bm_id3149205\n"
+"03080104.xhp\n"
+"bm_id3148550\n"
"help.text"
-msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh For</bookmark_value><bookmark_value>câu lệnh To</bookmark_value><bookmark_value>câu lệnh Step</bookmark_value><bookmark_value>câu lệnh Next</bookmark_value>"
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr "<bookmark_value>hàm Tan</bookmark_value>"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3149205\n"
+"03080104.xhp\n"
+"hd_id3148550\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"Câu lệnh For...Next [Runtime]\">Câu lệnh For...Next [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Hàm Tan [Runtime]\">Hàm Tan [Runtime]</link>"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3143267\n"
+"03080104.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "Repeats the statements between the For...Next block a specified number of times."
-msgstr "Lặp lại những câu lệnh nằm giữa khối <emph>For...Next</emph> (trong...kế tiếp) một số lần nào đó."
+msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgstr "Xác định tang của một góc. Góc được ghi rõ theo radian."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3156153\n"
+"03080104.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Using the angle Alpha, the Tan Function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
+msgstr "Dùng góc Alpha, hàm Tan tính tỷ lệ giữa chiều dài của cạnh đối với góc và chiều dài của cạnh kề với góc, trong một hình tam giác vuông góc."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3148473\n"
+"03080104.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "For counter=start To end [Step step]"
-msgstr "For counter=start To end [Step step]"
+msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+msgstr "Tan(Alpha) = cạnh đối với góc/cạnh kề với góc"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156024\n"
+"03080104.xhp\n"
+"hd_id3145174\n"
"5\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3146796\n"
+"03080104.xhp\n"
+"par_id3151042\n"
"6\n"
"help.text"
-msgid "[Exit For]"
-msgstr "[Exit For]"
+msgid "Tan (Number)"
+msgstr "Tan (số)"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3159414\n"
+"03080104.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153897\n"
+"03080104.xhp\n"
+"par_id3156281\n"
"8\n"
"help.text"
-msgid "Next [counter]"
-msgstr "Next [counter]"
+msgid "Double"
+msgstr "Đôi"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3150400\n"
+"03080104.xhp\n"
+"hd_id3155132\n"
"9\n"
"help.text"
-msgid "Variables:"
-msgstr "Biến:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3150358\n"
+"03080104.xhp\n"
+"par_id3145786\n"
"10\n"
"help.text"
-msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
-msgstr "<emph>Counter</emph>: bộ đếm vòng lặp được gán đầu tiên giá trị bên phải dấu bằng (Đầu). Chỉ giá trị thuộc số là hợp lệ. Bộ đếm vòng lặp thì tăng hay giảm tùy theo biến Bước đến khi đi qua Cuối."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số nào cho đó bạn muốn tính tang (theo radian)."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3152455\n"
+"03080104.xhp\n"
+"par_id3153728\n"
"11\n"
"help.text"
-msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
-msgstr "<emph>Đầu</emph> : biến thuộc số mà xác định giá trị đầu tiên ở đầu của vòng lặp."
+msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
+msgstr "Để chuyển đổi độ sang radian, hãy nhân với π/180. Ngược lại, để chuyển đổi radian sang độ, nhân với 180/π."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3151043\n"
+"03080104.xhp\n"
+"par_id3155414\n"
"12\n"
"help.text"
-msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
-msgstr "<emph>Cuối</emph> : biến thuộc số mà xác định giá trị cuối cùng ở cuối của vòng lặp."
+msgid "degrees=(radiant*180)/Pi"
+msgstr "độ=(radiant*180)/π"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156281\n"
+"03080104.xhp\n"
+"par_id3146975\n"
"13\n"
"help.text"
-msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
-msgstr "<emph>Bước</emph> : đặt giá trị theo đó cần tăng/giảm bộ đếm vòng lặp. Không đưa ra Bước thì bộ đếm vòng lặp được tăng/giảm theo một. Trong trường hợp này, Cuối phải lớn hơn Đầu. Muốn giảm Bộ đếm thì Cuối phải nhỏ hơn Đầu, và Bước phải được gán một giá trị âm."
+msgid "radiant=(degrees*Pi)/180"
+msgstr "radiant=(độ*π)/180"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3154684\n"
+"03080104.xhp\n"
+"par_id3147434\n"
"14\n"
"help.text"
-msgid "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
-msgstr "Vòng lặp <emph>For...Next</emph> lặp lại tất cả các câu lệnh trong vòng lặp số lần đã ghi rõ bằng tham số."
+msgid "Pi is approximately 3.141593."
+msgstr "π xấp xỉ là 3.141593."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3147287\n"
+"03080104.xhp\n"
+"hd_id3149483\n"
"15\n"
"help.text"
-msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
-msgstr "Trong khi giảm biến đếm, $[officename] Basic kiểm tra nếu giá trị cuối đã được tới chưa. Một khi bộ đếm đi qua giá trị cuối, vòng lặp tự động kết thúc."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3159154\n"
+"03080104.xhp\n"
+"par_id3148646\n"
"16\n"
"help.text"
-msgid "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
-msgstr "Cũng có thể lồng nhau nhiều câu lệnh <emph>For...Next</emph>. Nếu bạn không ghi rõ một biến phía sau câu lệnh <emph>Next</emph>, <emph>Next</emph> tự động tham chiếu đến câu lệnh <emph>For</emph> mới đây."
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM Trong mẫu ví dụ này, mục nhập theo đây có thể tính được đối với một hình tam giác vuông góc:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155306\n"
+"03080104.xhp\n"
+"par_id3150012\n"
"17\n"
"help.text"
-msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
-msgstr "Nếu bạn ghi rõ một bước tăng/giảm 0, những câu lệnh nằm giữa <emph>For</emph> và <emph>Next</emph> được lặp lại liên tục."
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
+msgstr "REM Cạnh đối với góc và góc (theo độ) để tính chiều dài của cạnh kề với góc:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155854\n"
-"18\n"
+"03080104.xhp\n"
+"par_id3153158\n"
+"19\n"
"help.text"
-msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
-msgstr "Khi đếm xuống biến đếm, $[officename] Basic kiểm tra bị tràn hay bị tràn ngược. Vòng lặp kết thúc khi Bộ đếm lớn hơn Cuối (giá trị Bước dương) hoặc nhỏ hơn Cuối (giá trị Bước âm)."
+msgid "' Pi = 3.1415926 is a pre-defined variable"
+msgstr "REM π = 3.1415926 là một biến đã xác định sẵn"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145273\n"
-"19\n"
+"03080104.xhp\n"
+"par_id3145252\n"
+"22\n"
"help.text"
-msgid "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
-msgstr "Hãy dùng câu lệnh <emph>Exit For</emph> (thoát trong) để thoát tuyệt đối vòng lặp. Câu lệnh này phải nằm bên trong một vòng lặp kiểu <emph>For...Next</emph> (trong...kế tiếp). Dùng câu lệnh <emph>If...Then</emph> (nếu...thì) để thử điều kiện thoát như theo đây:"
+msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+msgstr "d1 = InputBox$ (\"Nhập chiều dài của cạnh đối với góc: \",\"đối\")"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153190\n"
-"20\n"
+"03080104.xhp\n"
+"par_id3149582\n"
+"23\n"
"help.text"
-msgid "For..."
-msgstr "For..."
+msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgstr "dAlpha = InputBox$ (\"Nhập góc Alpha theo độ: \",\"Alpha\")"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149482\n"
-"21\n"
+"03080104.xhp\n"
+"par_id3154016\n"
+"24\n"
"help.text"
-msgid "statements"
-msgstr "câu lệnh"
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr "Print \"chiều dài cảu cạnh kề với góc là\"; (d1 / tan (dAlpha * Pi / 180))"
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3147124\n"
-"22\n"
+"03080200.xhp\n"
+"tit\n"
"help.text"
-msgid "If condition = True Then Exit For"
-msgstr "If condition = True Then Exit For"
+msgid "Exponential and Logarithmic Functions"
+msgstr "Hàm số mũ và lôga"
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153159\n"
-"23\n"
+"03080200.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "statements"
-msgstr "câu lệnh"
+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=\"Hàm số mũ và lôga\">Hàm số mũ và lôga</link>"
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3154096\n"
-"24\n"
+"03080200.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Next"
-msgstr "Tiếp"
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr "$[officename] Basic hỗ trợ những hàm kiểu số mũ và lôga theo đây."
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156286\n"
-"25\n"
+"03080201.xhp\n"
+"tit\n"
"help.text"
-msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
-msgstr "Ghi chú : trong vòng lặp lồng nhau kiểu <emph>For...Next</emph>, nếu bạn thoát khỏi một vòng lặp một cách không điều kiện dùng <emph>Exit For</emph>, chỉ thoát khỏi một vòng lặp."
+msgid "Exp Function [Runtime]"
+msgstr "Hàm Exp [Runtime]"
-#: 03090202.xhp
-#, fuzzy
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3148457\n"
-"26\n"
+"03080201.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "Example"
-msgstr "#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nVí dụ"
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr "<bookmark_value>hàm Exp</bookmark_value>"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3151074\n"
-"27\n"
+"03080201.xhp\n"
+"hd_id3150616\n"
+"1\n"
"help.text"
-msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
-msgstr "Mẫu thí dụ theo đây dùng hai vòng lặp lồng nhau để sắp xếp một mảng chuỗi có 10 phần tử ( sEntry() ), đầu tiên được điền bằng các nội dung khác nhau :"
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Hàm Exp [Runtime]\">Hàm Exp [Runtime]</link>"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155767\n"
-"42\n"
+"03080201.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "sEntry(0) = \"Jerry\""
-msgstr "sEntry(0) = \"Trường\""
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgstr "Trả về cơ số của lôga tự nhiên (e = 2,718282) lấy lũy thừa."
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153711\n"
-"33\n"
+"03080201.xhp\n"
+"hd_id3150984\n"
+"3\n"
"help.text"
-msgid "sEntry(1) = \"Patty\""
-msgstr "sEntry(1) = \"Huyền\""
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3148993\n"
-"34\n"
+"03080201.xhp\n"
+"par_id3145315\n"
+"4\n"
"help.text"
-msgid "sEntry(2) = \"Kurt\""
-msgstr "sEntry(2) = \"Minh\""
+msgid "Exp (Number)"
+msgstr "Exp (Số)"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156382\n"
-"35\n"
+"03080201.xhp\n"
+"hd_id3154347\n"
+"5\n"
"help.text"
-msgid "sEntry(3) = \"Thomas\""
-msgstr "sEntry(3) = \"Sơn\""
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155174\n"
-"36\n"
+"03080201.xhp\n"
+"par_id3149670\n"
+"6\n"
"help.text"
-msgid "sEntry(4) = \"Michael\""
-msgstr "sEntry(4) = \"Trung\""
+msgid "Double"
+msgstr "Đôi"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3166448\n"
-"37\n"
+"03080201.xhp\n"
+"hd_id3154760\n"
+"7\n"
"help.text"
-msgid "sEntry(5) = \"David\""
-msgstr "sEntry(5) = \"Quý\""
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149255\n"
-"38\n"
+"03080201.xhp\n"
+"par_id3150793\n"
+"8\n"
"help.text"
-msgid "sEntry(6) = \"Cathy\""
-msgstr "sEntry(6) = \"Hương\""
+msgid "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
+msgstr "<emph>Số</emph>: bất cứ biểu thức thuộc số nào mà ghi rõ giá trị số mũ của e (cơ số của lôga tự nhiên). Số mũ này phải cả hai nhỏ hơn hay bằng với 88,02969 cho số chính xác đơn và nhỏ hơn hay bằng với 709,782712893 cho số chính xác đôi, vì $[officename] Basic trả về lỗi Bị Tràn đáp ứng số vượt quá giá trị đó."
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149565\n"
-"39\n"
+"03080201.xhp\n"
+"hd_id3156280\n"
+"9\n"
"help.text"
-msgid "sEntry(7) = \"Susie\""
-msgstr "sEntry(7) = \"Hoa\""
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145148\n"
-"40\n"
+"03080201.xhp\n"
+"par_id3159254\n"
+"13\n"
"help.text"
-msgid "sEntry(8) = \"Edward\""
-msgstr "sEntry(8) = \"Tuấn\""
+msgid "Const b2=1.345e34"
+msgstr "const b2=1.345e34"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145229\n"
-"41\n"
+"03080201.xhp\n"
+"par_id3161832\n"
+"15\n"
"help.text"
-msgid "sEntry(9) = \"Christine\""
-msgstr "sEntry(9) = \"Nguyệt\""
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+msgstr "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Nhân với lôga\""
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
+"03080202.xhp\n"
"tit\n"
"help.text"
-msgid "ChDir Statement [Runtime]"
-msgstr "Câu lệnh ChDir [Runtime]"
+msgid "Log Function [Runtime]"
+msgstr "Hàm Log [Runtime]"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"bm_id3150178\n"
+"03080202.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>ChDir statement</bookmark_value>"
-msgstr "<bookmark_value>Câu lệnh ChDir</bookmark_value>"
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr "<bookmark_value>hàm Log</bookmark_value>"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3150178\n"
+"03080202.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"Câu lệnh ChDir [Runtime]\">Câu lệnh ChDir [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Hàm Log [Runtime]\">Hàm Log [Runtime]</link>"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3153126\n"
+"03080202.xhp\n"
+"par_id3145066\n"
"2\n"
"help.text"
-msgid "Changes the current directory or drive."
-msgstr "Thay đổi thư mục hoặc ổ đĩa hiện thời."
-
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id9783013\n"
-"help.text"
-msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
-msgstr "Câu lệnh lúc chạy này không hoạt động như được diễn tả trong tài liệu. Xem <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">vấn đề này</link> để tìm thêm thông tin."
+msgid "Returns the natural logarithm of a number."
+msgstr "Trả về lôga tự nhiên của một số."
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3154347\n"
+"03080202.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3153897\n"
+"03080202.xhp\n"
+"par_id3154760\n"
"4\n"
"help.text"
-msgid "ChDir Text As String"
-msgstr "ChDir Text As String"
+msgid "Log (Number)"
+msgstr "Log (Số)"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3148664\n"
+"03080202.xhp\n"
+"hd_id3149457\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3150543\n"
+"03080202.xhp\n"
+"par_id3150791\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ đường dẫn thư mục hoặc ổ đĩa."
+msgid "Double"
+msgstr "Đôi"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3152598\n"
+"03080202.xhp\n"
+"hd_id3151211\n"
"7\n"
"help.text"
-msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
-msgstr "Chỉ muốn thay đổi ổ đĩa hiện thời thì nhập chữ riêng của ổ đĩa, sau đó một dấu hai chấm (v.d. « C: »)."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3151116\n"
+"03080202.xhp\n"
+"par_id3151041\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Other Commands"
-msgstr "Các lệnh khác"
-
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
-msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Các lệnh khác\">Các lệnh khác</link>"
-
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"par_id3153312\n"
-"2\n"
-"help.text"
-msgid "This is a list of the functions and the statements that are not included in the other categories."
-msgstr "Đây là một danh sách các hàm và câu lệnh đều không nằm trong phân loại khác."
-
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date Statement [Runtime]"
-msgstr "Câu lệnh Date [Runtime]"
-
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Date</bookmark_value>"
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số nào cho đó bạn muốn tính lôga tự nhiên."
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03080202.xhp\n"
+"par_id3150869\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Câu lệnh Date [Runtime]\">Câu lệnh Date [Runtime]</link>"
+msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
+msgstr "Lôga tự nhiên là lôga của cơ số e. Cơ số e là một hằng số có giá trị xấp xỉ 2,718282..."
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3147291\n"
-"2\n"
+"03080202.xhp\n"
+"par_id3153968\n"
+"10\n"
"help.text"
-msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
-msgstr "Trả về ngày tháng hệ thống hiện thời dạng chuỗi, hoặc đặt lại ngày tháng. Định dạng ngày tháng phụ thuộc vào thiết lập hệ thống cục bộ của bạn."
+msgid "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
+msgstr "Bạn có thể tính lôga với bất cứ cơ số nào (n) cho bất cứ số nào (x), bằng cách chia lôga tự nhiên của x cho lôga tự nhiên của n, như theo đây:"
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3148686\n"
-"3\n"
+"03080202.xhp\n"
+"par_id3145420\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Log n(x) = Log(x) / Log(n)"
+msgstr "Log n(x) = Log(x) / Log(n)"
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3146794\n"
-"4\n"
+"03080202.xhp\n"
+"hd_id3155131\n"
+"12\n"
"help.text"
-msgid "Date ; Date = Text As String"
-msgstr "Date ; Date = Text As String"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3154347\n"
-"5\n"
+"03080202.xhp\n"
+"par_id3149262\n"
+"18\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Nhân với hàm lôga\""
-#: 03030301.xhp
+#: 03080300.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3145069\n"
-"6\n"
+"03080300.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
-msgstr "<emph>Văn bản</emph>: chỉ cần thiết để đặt lại ngày tháng của hệ thống. Trong trường hợp này, biểu thức chuỗi phải tương ứng với định dạng ngày tháng được xác định trong thiết lập cục bộ của bạn."
+msgid "Generating Random Numbers"
+msgstr "Tạo ra các số ngẫu nhiên"
-#: 03030301.xhp
+#: 03080300.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3150793\n"
-"7\n"
+"03080300.xhp\n"
+"hd_id3143270\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+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=\"Tạo ra các số ngẫu nhiên\">Tạo ra các số ngẫu nhiên</link>"
-#: 03030301.xhp
-#, fuzzy
+#: 03080300.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3156424\n"
-"9\n"
+"03080300.xhp\n"
+"par_id3154347\n"
+"2\n"
"help.text"
-msgid "MsgBox \"The date is \" & Date"
-msgstr "msgbox \"Ngày tháng là \" & Date"
+msgid "The following statements and functions generate random numbers."
+msgstr "Những câu lệnh và hàm theo đây có khả năng tạo ra các số ngẫu nhiên."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
+"03080301.xhp\n"
"tit\n"
"help.text"
-msgid "LSet Statement [Runtime]"
-msgstr "Câu lệnh LSet [Runtime]"
+msgid "Randomize Statement [Runtime]"
+msgstr "Câu lệnh Randomize [Runtime]"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"bm_id3143268\n"
+"03080301.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>LSet statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh LSet</bookmark_value>"
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Randomize</bookmark_value>"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3143268\n"
+"03080301.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"Hàm LSet [Runtime]\">Hàm LSet [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Câu lệnh Randomize [Runtime]\">Câu lệnh Randomize [Runtime]</link>"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3155419\n"
+"03080301.xhp\n"
+"par_id3145090\n"
"2\n"
"help.text"
-msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
-msgstr "Sắp hàng một chuỗi theo bên trái của một biến chuỗi, hoặc sao chép một biến có kiểu do người dùng xác định vào một biến có kiểu do người dùng xác định khác."
+msgid "Initializes the random-number generator."
+msgstr "Khởi tạo bộ sinh số ngẫu nhiên."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
+"03080301.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3150984\n"
+"03080301.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "LSet Var As String = Text or LSet Var1 = Var2"
-msgstr "LSet Var As String = Text or LSet Var1 = Var2"
+msgid "Randomize [Number]"
+msgstr "Randomize [Số]"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3143271\n"
+"03080301.xhp\n"
+"hd_id3152456\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3145610\n"
+"03080301.xhp\n"
+"par_id3149670\n"
"6\n"
"help.text"
-msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
-msgstr "<emph>Var:</emph> bất cứ biến Chuỗi nào mà chứa chuỗi cần canh lề theo bên trái."
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr "<emph>Số:</emph> số nguyên chứa số ngày tháng kiểu dãy."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3154346\n"
+"03080301.xhp\n"
+"hd_id3149655\n"
"7\n"
"help.text"
-msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
-msgstr "<emph>Text:</emph> chuỗi cần canh lề theo bên trái của biến chuỗi."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3151054\n"
-"8\n"
-"help.text"
-msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
-msgstr "<emph>Var1:</emph> tên của biến có kiểu do người dùng xác định vào đó cần sao chép."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3153361\n"
-"9\n"
-"help.text"
-msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
-msgstr "<emph>Var2:</emph> tên của biến có kiểu do người dùng xác định từ đó cần sao chép."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3154686\n"
-"10\n"
-"help.text"
-msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
-msgstr "Nếu chuỗi ngắn hơn biến chuỗi, thì câu lệnh <emph>LSet</emph> canh lề chuỗi theo bên trái bên trong biến chuỗi. Bất cứ vị trí nào còn lại trong biến chuỗi được dấu cách thay thế. Nếu chuỗi dài hơn biến chuỗi, thì chỉ sao chép những ký tự bên trái cùng đến chiều dài của biến chuỗi đó. Dùng câu lệnh <emph>LSet</emph>, bạn cũng có thể sao chép một biến có kiểu do người dùng xác định vào một biến khác cùng kiểu."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"11\n"
-"help.text"
msgid "Example:"
-msgstr "Ví dụ :"
-
-#: 03120304.xhp
-#, fuzzy
-msgctxt ""
-"03120304.xhp\n"
-"par_id3152940\n"
-"18\n"
-"help.text"
-msgid "' Align \"SBX\" within the 40-character reference string"
-msgstr "REM Sắp hàng « SBX » bên trong chuỗi tham chiếu có 40 ký tự."
+msgstr "Thí dụ :"
-#: 03120304.xhp
-#, fuzzy
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3148647\n"
-"19\n"
+"03080301.xhp\n"
+"par_id3147288\n"
+"14\n"
"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "REM Thay thế mỗi dấu sao bằng một dáu cách"
+msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
+msgstr "iVar = Int((10 * Rnd) ) REM Phạm vi từ 0 đến 9"
-#: 03120304.xhp
-#, fuzzy
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3151075\n"
-"30\n"
+"03080301.xhp\n"
+"par_id3148617\n"
+"22\n"
"help.text"
-msgid "' Left-align \"SBX\" within the 40-character reference string"
-msgstr "REM Canh lề trái « SBX » bên trong chuỗi tham chiếu có 40 ký tự"
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr "MsgBox sText,0,\"Phân phối phổ\""
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
+"03080302.xhp\n"
"tit\n"
"help.text"
-msgid "CDateToIso Function [Runtime]"
-msgstr "Hàm CDateToIso [Runtime]"
+msgid "Rnd Function [Runtime]"
+msgstr "Hàm Rnd [Runtime]"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"bm_id3150620\n"
+"03080302.xhp\n"
+"bm_id3148685\n"
"help.text"
-msgid "<bookmark_value>CdateToIso function</bookmark_value>"
-msgstr "<bookmark_value>Hàm CdateToIso</bookmark_value>"
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr "<bookmark_value>Hàm Rnd</bookmark_value>"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3150620\n"
+"03080302.xhp\n"
+"hd_id3148685\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"Hàm CDateToIso [Runtime]\">Hàm CDateToIso [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Hàm Rnd [Runtime]\">Hàm Rnd [Runtime]</link>"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3151097\n"
+"03080302.xhp\n"
+"par_id3149669\n"
"2\n"
"help.text"
-msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "Trả về ngày tháng theo định dạng ISO từ một số ngày tháng kiểu dãy được tạo ra bởi hàm DateSerial hoặc DateValue."
+msgid "Returns a random number between 0 and 1."
+msgstr "Trả về một số ngẫu nhiễn giữa 0 và 1."
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3159224\n"
+"03080302.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3149497\n"
+"03080302.xhp\n"
+"par_id3150543\n"
"4\n"
"help.text"
-msgid "CDateToIso(Number)"
-msgstr "CDateToIso(Số)"
+msgid "Rnd [(Expression)]"
+msgstr "Rnd [(Biểu_thức)]"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3152347\n"
+"03080302.xhp\n"
+"hd_id3149655\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3154422\n"
+"03080302.xhp\n"
+"par_id3154365\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Double"
+msgstr "Đôi"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3147303\n"
+"03080302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3145136\n"
+"03080302.xhp\n"
+"par_id3125864\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Integer that contains the serial date number."
-msgstr "<emph>Số:</emph> số nguyên chứa số ngày tháng kiểu dãy."
-
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147243\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3153126\n"
-"11\n"
-"help.text"
-msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
-msgstr "MsgBox \"\" & CDateToIso(Now) ,64,\"Ngày ISO\""
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shell Function [Runtime]"
-msgstr "Hàm Shell [Runtime]"
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>Shell function</bookmark_value>"
-msgstr "<bookmark_value>hàm Shell</bookmark_value>"
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150040\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Hàm Shell [Runtime]\">Hàm Shell [Runtime]</link>"
+msgid "<emph>Expression:</emph> Any numeric expression."
+msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào."
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3153394\n"
-"2\n"
+"03080302.xhp\n"
+"par_id3155306\n"
+"12\n"
"help.text"
-msgid "Starts another application and defines the respective window style, if necessary."
-msgstr "Khởi chạy một ứng dụng khác và xác định kiểu dáng cửa sổ tương ứng, nếu cần thiết."
+msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
+msgstr "<emph>Bỏ sót:</emph> trả về số ngẫu nhiên kế tiếp trong chuỗi."
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3153345\n"
-"4\n"
+"03080302.xhp\n"
+"par_id3147318\n"
+"14\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
+msgstr "Hàm <emph>Rnd</emph> chỉ trả về những giá trị trong phạm vị 0 đến 1. Để tạo ra các số nguyên ngẫu nhiên trong một phạm vi đã cho, dùng công thức trong mẫu ví dụ theo đây:"
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3147576\n"
-"5\n"
+"03080302.xhp\n"
+"hd_id3151118\n"
+"15\n"
"help.text"
-msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
-msgstr "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3149235\n"
-"6\n"
+"03080302.xhp\n"
+"par_id3147124\n"
+"21\n"
"help.text"
-msgid "Parameter"
-msgstr "Tham số"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Đánh số từ 1 đến 5\""
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3154306\n"
+"03080302.xhp\n"
+"par_id3154943\n"
"23\n"
"help.text"
-msgid "Pathname"
-msgstr "Pathname"
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3155419\n"
-"7\n"
-"help.text"
-msgid "Complete path and program name of the program that you want to start."
-msgstr "Toàn bộ đường dẫn và tên chương trình của trình cần khởi chạy."
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150771\n"
-"24\n"
-"help.text"
-msgid "Windowstyle"
-msgstr "Windowstyle"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Đánh số từ 6 đến 8\""
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3145609\n"
-"8\n"
+"03080302.xhp\n"
+"par_id3151074\n"
+"25\n"
"help.text"
-msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
-msgstr "Biểu thức số nguyên còn tùy chọn mà ghi rõ kiểu dáng của cửa sổ trong đó chương trình được thực hiện. Những giá trị theo đây có thể tính:"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Lớn hơn 8\""
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3148663\n"
-"25\n"
+"03080302.xhp\n"
+"par_id3155602\n"
+"27\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Phạm vi bên ngoài 1 đến 10\""
-#: 03130500.xhp
+#: 03080400.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3153360\n"
-"10\n"
+"03080400.xhp\n"
+"tit\n"
"help.text"
-msgid "The focus is on the hidden program window."
-msgstr "Tiêu điểm ở cửa sổ chương trình bị ẩn."
+msgid "Square Root Calculation"
+msgstr "Tính căn bậc hai"
-#: 03130500.xhp
+#: 03080400.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3154123\n"
-"26\n"
+"03080400.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
+msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Tính căn bậc hai\">Tính căn bậc hai</link>"
-#: 03130500.xhp
+#: 03080400.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3144760\n"
-"11\n"
+"03080400.xhp\n"
+"par_id3159414\n"
+"2\n"
"help.text"
-msgid "The focus is on the program window in standard size."
-msgstr "Tiêu điểm ở cửa sổ chương trình theo kích cỡ tiêu chuẩn."
+msgid "Use this function to calculate square roots."
+msgstr "Hãy dùng hàm này để tính căn bậc hai."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3156422\n"
-"27\n"
+"03080401.xhp\n"
+"tit\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Sqr Function [Runtime]"
+msgstr "Hàm Sqr [Runtime]"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3148451\n"
-"12\n"
+"03080401.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "The focus is on the minimized program window."
-msgstr "Tiêu điểm ở cửa sổ chương trình bị thu nhỏ."
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr "<bookmark_value>hàm Sqr</bookmark_value>"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149561\n"
-"28\n"
+"03080401.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Hàm Sqr [Runtime]\">Hàm Sqr [Runtime]</link>"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3146921\n"
-"13\n"
+"03080401.xhp\n"
+"par_id3147226\n"
+"2\n"
"help.text"
-msgid "focus is on the maximized program window."
-msgstr "Tiêu điểm ở cửa sổ chương trình đã phóng to."
+msgid "Calculates the square root of a numeric expression."
+msgstr "Tính căn bậc hai của một biểu thức thuộc số."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149481\n"
-"29\n"
+"03080401.xhp\n"
+"hd_id3143267\n"
+"3\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3155854\n"
-"14\n"
+"03080401.xhp\n"
+"par_id3149415\n"
+"4\n"
"help.text"
-msgid "Standard size program window, without focus."
-msgstr "Cửa sổ chương trình có kích cỡ tiêu chuẩn, không có tiêu điểm."
+msgid "Sqr (Number)"
+msgstr "Sqr (Số)"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3145271\n"
-"30\n"
+"03080401.xhp\n"
+"hd_id3156023\n"
+"5\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3152938\n"
-"15\n"
+"03080401.xhp\n"
+"par_id3156343\n"
+"6\n"
"help.text"
-msgid "Minimized program window, focus remains on the active window."
-msgstr "Cửa sổ chương trình bị thu nhỏ, tiêu điểm còn lại ở cửa sổ đang hoạt động."
+msgid "Double"
+msgstr "Đôi"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3146119\n"
-"31\n"
+"03080401.xhp\n"
+"hd_id3147265\n"
+"7\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3151112\n"
-"16\n"
+"03080401.xhp\n"
+"par_id3149457\n"
+"8\n"
"help.text"
-msgid "Full-screen display."
-msgstr "Hiển thị trên toàn màn hình."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgstr "<emph>Số</emph>: bất cứ biểu thức thuộc số nào cho đó bạn muốn tính căn bậc hai."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3150419\n"
-"33\n"
+"03080401.xhp\n"
+"par_id3154365\n"
+"9\n"
"help.text"
-msgid "Param"
-msgstr "Param"
+msgid "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
+msgstr "Căn bậc hai là con số bạn tính theo chính nó để được một số khác, v.d. căn bậc hai của 36 là 6."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149412\n"
-"17\n"
+"03080401.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "Any string expression that specifies the command line that want to pass."
-msgstr "Bất cứ biểu thức chuỗi nào mà ghi rõ dòng lệnh cần gửi cho hàm."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3148456\n"
-"32\n"
+"03080500.xhp\n"
+"tit\n"
"help.text"
-msgid "bSync"
-msgstr "bSync"
+msgid "Integers"
+msgstr "Số nguyên"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3154096\n"
-"18\n"
+"03080500.xhp\n"
+"hd_id3153345\n"
+"1\n"
"help.text"
-msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
-msgstr "Nếu giá trị này được đặt thành <emph>true</emph> (đúng), thì lệnh <emph>Shell</emph> và tất cả các công việc $[officename] sẽ đợi đến khi tiến trình trình bao chạy xong. Còn nếu giá trị này được đặt thành <emph>false</emph> (sai), thì trình bao trả về trực tiếp. Giá trị mặc định là <emph>false</emph>."
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Số nguyên\">Số nguyên</link>"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3154270\n"
-"19\n"
+"03080500.xhp\n"
+"par_id3156152\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "The following functions round values to integers."
+msgstr "Theo đây có những hàm làm tròn giá trị thành số nguyên."
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
+"03080501.xhp\n"
"tit\n"
"help.text"
-msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "Hàm TwipsPerPixelX [Runtime]"
+msgid "Fix Function [Runtime]"
+msgstr "Hàm Fix [Runtime]"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"bm_id3153539\n"
+"03080501.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
-msgstr "<bookmark_value>hàm TwipsPerPixelX</bookmark_value>"
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr "<bookmark_value>hàm Fix</bookmark_value>"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3153539\n"
+"03080501.xhp\n"
+"hd_id3159201\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"Hàm TwipsPerPixelX [Runtime]\">Hàm TwipsPerPixelX [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Hàm Fix [Runtime]\">Hàm Fix [Runtime]</link>"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3153394\n"
+"03080501.xhp\n"
+"par_id3149346\n"
"2\n"
"help.text"
-msgid "Returns the number of twips that represent the width of a pixel."
-msgstr "Trả về số các twip đại diện chiều dài của một điểm ảnh."
+msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
+msgstr "Trả về giá trị số nguyên của một biểu thức thuộc số, bằng cách gỡ bỏ phần phân số của một số."
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3153527\n"
+"03080501.xhp\n"
+"hd_id3155419\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3151110\n"
+"03080501.xhp\n"
+"par_id3156152\n"
"4\n"
"help.text"
-msgid "n = TwipsPerPixelX"
-msgstr "n = TwipsPerPixelX"
+msgid "Fix (Expression)"
+msgstr "Fix (Biểu_thức)"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3150669\n"
+"03080501.xhp\n"
+"hd_id3154923\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3150503\n"
+"03080501.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Double"
+msgstr "Đôi"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3159176\n"
+"03080501.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
+msgid "Parameters:"
+msgstr "Tham số :"
+
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3149457\n"
+"8\n"
+"help.text"
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgstr "<emph>Biểu_thức</emph> : biểu thức thuộc số cho đó bạn muốn tính giá trị số nguyên."
+
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"hd_id3150447\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3153061\n"
-"9\n"
+"03080501.xhp\n"
+"par_id3156214\n"
+"11\n"
"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Kích cỡ điểm ảnh\""
+msgid "Print Fix(3.14159) ' returns 3."
+msgstr "Print Fix(3.14159) REM trả về 3."
-#: 03100500.xhp
+#: 03080501.xhp
msgctxt ""
-"03100500.xhp\n"
+"03080501.xhp\n"
+"par_id3154217\n"
+"12\n"
+"help.text"
+msgid "Print Fix(0) ' returns 0."
+msgstr "Print Fix(0) REM trả về 0."
+
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3145786\n"
+"13\n"
+"help.text"
+msgid "Print Fix(-3.14159) ' returns -3."
+msgstr "Print Fix(-3.14159) REM trả về -3."
+
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
"tit\n"
"help.text"
-msgid "CInt Function [Runtime]"
-msgstr "Hàm CInt [Runtime]"
+msgid "Int Function [Runtime]"
+msgstr "Hàm Int [Runtime]"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"bm_id3149346\n"
+"03080502.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>CInt function</bookmark_value>"
-msgstr "<bookmark_value>hàm CInt</bookmark_value>"
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr "<bookmark_value>hàm Int</bookmark_value>"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3149346\n"
+"03080502.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"Hàm CInt [Runtime]\">Hàm CInt [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Hàm Int [Runtime]\">Hàm Int [Runtime]</link>"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3155419\n"
+"03080502.xhp\n"
+"par_id3155420\n"
"2\n"
"help.text"
-msgid "Converts any string or numeric expression to an integer."
-msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một số nguyên."
+msgid "Returns the integer portion of a number."
+msgstr "Trả về phần số nguyên của một số."
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3147573\n"
+"03080502.xhp\n"
+"hd_id3147559\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3154142\n"
+"03080502.xhp\n"
+"par_id3146795\n"
"4\n"
"help.text"
-msgid "CInt (Expression)"
-msgstr "CInt(Biểu_thức)"
+msgid "Int (Number)"
+msgstr "Int (Số)"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3147531\n"
+"03080502.xhp\n"
+"hd_id3149670\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
+"03080502.xhp\n"
+"par_id3150400\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Double"
+msgstr "Đôi"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3145069\n"
+"03080502.xhp\n"
+"hd_id3149656\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3159414\n"
+"03080502.xhp\n"
+"par_id3148797\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào cần chuyển đổi. Nếu <emph> Biểu_thức </emph> vượt quá phạm vi giá trị -32768 đến 32767, $[officename] Basic thông báo lỗi bị tràn. Để chuyển đổi một biểu thức kiểu chuỗi, số phải được nhập dạng văn bản bình thường (\"123.5\") dùng định dạng số mặc định của hệ điều hành của bạn."
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào còn hợp lệ."
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3150358\n"
+"03080502.xhp\n"
+"hd_id3148672\n"
"9\n"
"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr "Hàm này lúc nào cũng làm tròn phần phân số của một số thành số nguyên gần nhất."
-
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03030110.xhp
+#: 03080502.xhp
msgctxt ""
-"03030110.xhp\n"
-"tit\n"
+"03080502.xhp\n"
+"par_id3125864\n"
+"11\n"
"help.text"
-msgid "DateAdd Function [Runtime]"
-msgstr "Hàm DateAdd [Runtime]"
+msgid "Print Int(3.99) ' returns the value 3"
+msgstr "Print Int(3.99) REM trả về giá trị 3.0"
-#: 03030110.xhp
+#: 03080502.xhp
msgctxt ""
-"03030110.xhp\n"
-"bm_id6269417\n"
+"03080502.xhp\n"
+"par_id3145787\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>DateAdd function</bookmark_value>"
-msgstr "<bookmark_value>hàm DateAdd</bookmark_value>"
+msgid "Print Int(0) ' returns the value 0"
+msgstr "Print Int(0) REM trả về giá trị 0.0"
-#: 03030110.xhp
+#: 03080502.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10548\n"
+"03080502.xhp\n"
+"par_id3153143\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Hàm DateAdd [Runtime]</link>"
+msgid "Print Int(-3.14159) ' returns the value -4"
+msgstr "Print Int(-3.14159) REM trả về giá trị -4.0"
-#: 03030110.xhp
+#: 03080600.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10558\n"
+"03080600.xhp\n"
+"tit\n"
"help.text"
-msgid "Adds a date interval to a given date a number of times and returns the resulting date."
-msgstr "Thêm một khoảng ngày vào một ngày tháng đã ghi rõ một số lần đã ghi rõ rồi trả về ngày tháng kết quả."
+msgid "Absolute Values"
+msgstr "Giá trị Tuyệt đối"
-#: 03030110.xhp
+#: 03080600.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1055B\n"
+"03080600.xhp\n"
+"hd_id3146958\n"
+"1\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Giá trị Tuyệt đối\">Giá trị Tuyệt đối</link>"
-#: 03030110.xhp
+#: 03080600.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1055F\n"
+"03080600.xhp\n"
+"par_id3150771\n"
+"2\n"
"help.text"
-msgid "DateAdd (Add, Count, Date)"
-msgstr "DateAdd (Cộng, Đếm, Ngày)"
+msgid "This function returns absolute values."
+msgstr "Hàm này trả về giá trị tuyệt đối."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1061E\n"
+"03080601.xhp\n"
+"tit\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Abs Function [Runtime]"
+msgstr "Hàm Abs [Runtime]"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10622\n"
+"03080601.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "A Variant containing a date."
-msgstr "Một Biến thể chứa một ngày tháng."
+msgid "<bookmark_value>Abs function</bookmark_value>"
+msgstr "<bookmark_value>Hàm Abs</bookmark_value>"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10625\n"
+"03080601.xhp\n"
+"hd_id3159201\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Hàm Abs [Runtime]\">Hàm Abs [Runtime]</link>"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10629\n"
+"03080601.xhp\n"
+"par_id3153394\n"
+"2\n"
"help.text"
-msgid "Add - A string expression from the following table, specifying the date interval."
-msgstr "Cộng — một biểu thức chuỗi từ bảng theo sau, ghi rõ khoảng ngày."
+msgid "Returns the absolute value of a numeric expression."
+msgstr "Trả về giá trị tuyệt đối của một biểu thức thuộc số."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10636\n"
+"03080601.xhp\n"
+"hd_id3149233\n"
+"3\n"
"help.text"
-msgid "Add (string value)"
-msgstr "Add (giá trị chuỗi)"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1063C\n"
+"03080601.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "Explanation"
-msgstr "Giải thích"
+msgid "Abs (Number)"
+msgstr "Abs (Số)"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10643\n"
+"03080601.xhp\n"
+"hd_id3156152\n"
+"5\n"
"help.text"
-msgid "yyyy"
-msgstr "nnnn"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10649\n"
+"03080601.xhp\n"
+"par_id3149670\n"
+"6\n"
"help.text"
-msgid "Year"
-msgstr "Năm"
+msgid "Double"
+msgstr "Đôi"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10650\n"
+"03080601.xhp\n"
+"hd_id3154924\n"
+"7\n"
"help.text"
-msgid "q"
-msgstr "q"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10656\n"
+"03080601.xhp\n"
+"par_id3154347\n"
+"8\n"
"help.text"
-msgid "Quarter"
-msgstr "Quý"
+msgid "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
+msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào cho đó bạn muốn tính giá trị tuyệt đối. Mỗi số dương, gồm có 0, được trả về mà không thay đổi, còn mỗi số âm được chuyển đổi sang số dương."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1065D\n"
+"03080601.xhp\n"
+"par_id3153381\n"
+"9\n"
"help.text"
-msgid "m"
-msgstr "m"
+msgid "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
+msgstr "Mẫu ví dụ theo đây dùng hàm Abs để tính hiệu số giữa hai giá trị. Thứ tự nhập giá trị không có tác động."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10663\n"
+"03080601.xhp\n"
+"hd_id3148451\n"
+"10\n"
"help.text"
-msgid "Month"
-msgstr "Tháng"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1066A\n"
+"03080601.xhp\n"
+"par_id3145786\n"
+"14\n"
"help.text"
-msgid "y"
-msgstr "n"
+msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
+msgstr "siW1 = Int(InputBox$ (\"Hãy nhập số tiền thứ nhất\",\"Nhập giá trị\"))"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10670\n"
+"03080601.xhp\n"
+"par_id3149561\n"
+"15\n"
"help.text"
-msgid "Day of year"
-msgstr "Ngày của năm"
+msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
+msgstr "siW2 = Int(InputBox$ (\"Hãy nhập số tiền thứ hai\",\"Nhập giá trị\"))"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10677\n"
+"03080601.xhp\n"
+"par_id3145750\n"
+"16\n"
"help.text"
-msgid "w"
-msgstr "h"
+msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
+msgstr "Print \"Hiệu là \"; Abs(siW1 - siW2)"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1067D\n"
+"03080700.xhp\n"
+"tit\n"
"help.text"
-msgid "Weekday"
-msgstr "Hôm của tuần"
+msgid "Expression Signs"
+msgstr "Dấu biểu thức"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10684\n"
+"03080700.xhp\n"
+"hd_id3150702\n"
+"1\n"
"help.text"
-msgid "ww"
-msgstr "tn"
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Dấu biểu thức\">Dấu biểu thức</link>"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1068A\n"
+"03080700.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "Week of year"
-msgstr "Tuần của năm"
+msgid "This function returns the algebraic sign of a numeric expression."
+msgstr "Hàm này trả về dấu đại số của một biểu thức thuộc số."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10691\n"
+"03080701.xhp\n"
+"tit\n"
"help.text"
-msgid "d"
-msgstr "n"
+msgid "Sgn Function [Runtime]"
+msgstr "Hàm Sgn [Runtime]"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10697\n"
+"03080701.xhp\n"
+"bm_id3148474\n"
"help.text"
-msgid "Day"
-msgstr "Ngày"
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr "<bookmark_value>hàm Sgn</bookmark_value>"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1069E\n"
+"03080701.xhp\n"
+"hd_id3148474\n"
+"1\n"
"help.text"
-msgid "h"
-msgstr "g"
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Hàm Sgn [Runtime]\">Hàm Sgn [Runtime]</link>"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106A4\n"
+"03080701.xhp\n"
+"par_id3148686\n"
+"2\n"
"help.text"
-msgid "Hour"
-msgstr "Giờ"
+msgid "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
+msgstr "Trả về một số nguyên giữa -1 và +1 mà ngụ ý nếu số được gửi cho hàm là dương, âm hay số không."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106AB\n"
+"03080701.xhp\n"
+"hd_id3156023\n"
+"3\n"
"help.text"
-msgid "n"
-msgstr "p"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106B1\n"
+"03080701.xhp\n"
+"par_id3153897\n"
+"4\n"
"help.text"
-msgid "Minute"
-msgstr "Phút"
+msgid "Sgn (Number)"
+msgstr "Sgn (Số)"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106B8\n"
+"03080701.xhp\n"
+"hd_id3145069\n"
+"5\n"
"help.text"
-msgid "s"
-msgstr "gy"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106BE\n"
+"03080701.xhp\n"
+"par_id3150359\n"
+"6\n"
"help.text"
-msgid "Second"
-msgstr "Giây"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C1\n"
+"03080701.xhp\n"
+"hd_id3150543\n"
+"7\n"
"help.text"
-msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
-msgstr "Đếm — một biểu thức thuộc số ghi rõ bao nhiều lần khoảng Cộng được cộng (Đếm là một số dương) hay trừ (Đếm là một số âm)."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C4\n"
+"03080701.xhp\n"
+"par_id3154365\n"
+"8\n"
"help.text"
-msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
-msgstr "Ngày — một ngày tháng đã ghi rõ, hoặc tên của một biến Biến thể chứa một ngày tháng. Giá trị Cộng sẽ được cộng Đếm lần vào giá trị này."
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgstr "<emph>Số</emph> : biểu thức thuộc số mà quyết định giá trị được hàm trả về."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C7\n"
+"03080701.xhp\n"
+"par_id3150767\n"
+"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "NumExpression"
+msgstr "NumExpression"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"tit\n"
+"03080701.xhp\n"
+"par_id3150441\n"
+"10\n"
"help.text"
-msgid "DefBool Statement [Runtime]"
-msgstr "Câu lệnh DefBool [Runtime]"
+msgid "Return value"
+msgstr "Giá trị trả về"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"bm_id3145759\n"
+"03080701.xhp\n"
+"par_id3161833\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>DefBool statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefBool</bookmark_value>"
+msgid "negative"
+msgstr "âm"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3145759\n"
-"1\n"
+"03080701.xhp\n"
+"par_id3155306\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"Câu lệnh DefBool [Runtime]\">Câu lệnh DefBool [Runtime]</link>"
+msgid "Sgn returns -1."
+msgstr "Sgn trả về -1."
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3153089\n"
-"2\n"
+"03080701.xhp\n"
+"par_id3145271\n"
+"13\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
-msgstr "Không đưa ra ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefBool</emph> đặt kiểu dữ liệu mặc định cho các biến, tùy theo một phạm vi chữ."
+msgid "0"
+msgstr ""
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3149495\n"
-"3\n"
+"03080701.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Sgn returns 0."
+msgstr "Sgn trả về 0."
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3150682\n"
-"4\n"
+"03080701.xhp\n"
+"par_id3153139\n"
+"15\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "positive"
+msgstr "dương"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3159201\n"
-"5\n"
+"03080701.xhp\n"
+"par_id3154319\n"
+"16\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Sgn returns 1."
+msgstr "Sgn trả về 1."
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3147226\n"
-"6\n"
+"03080701.xhp\n"
+"hd_id3152576\n"
+"17\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt kiểu dữ liệu mặc định."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3149178\n"
-"7\n"
+"03080701.xhp\n"
+"par_id3155416\n"
+"19\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "Print sgn(-10) ' returns -1"
+msgstr "Print sgn(-10) REM trả về -1"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3150669\n"
-"8\n"
+"03080701.xhp\n"
+"par_id3154096\n"
+"20\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định."
+msgid "Print sgn(0) ' returns 0"
+msgstr "Print sgn(0) REM trả về 0"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3149233\n"
-"9\n"
+"03080701.xhp\n"
+"par_id3148457\n"
+"21\n"
"help.text"
-msgid "<emph>DefBool:</emph> Boolean"
-msgstr "<emph>DefBool:</emph> giá trị lôgic (Đúng/Sai)"
+msgid "Print sgn(10) ' returns 1"
+msgstr "Print sgn(10) REM trả về 1"
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3149762\n"
-"10\n"
+"03080800.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Converting Numbers"
+msgstr "Chuyển đổi số"
-#: 03101100.xhp
-#, fuzzy
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3156152\n"
-"12\n"
+"03080800.xhp\n"
+"hd_id3145315\n"
+"1\n"
"help.text"
-msgid "' Prefix definition for variable types:"
-msgstr "REM Xác định tiền tố cho các kiểu biến:"
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Chuyển đổi số\">Chuyển đổi số</link>"
-#: 03101100.xhp
-#, fuzzy
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3151381\n"
-"22\n"
+"03080800.xhp\n"
+"par_id3154760\n"
+"2\n"
"help.text"
-msgid "bOK=TRUE ' bOK is an implicit boolean variable"
-msgstr "bOK=TRUE REM bOK là một biến lôgic ngầm"
+msgid "The following functions convert numbers from one number format to another."
+msgstr "Theo đây có những hàm chuyển đổi số từ định dạng số này sang định dạng số khác."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
+"03080801.xhp\n"
"tit\n"
"help.text"
-msgid "SetAttr Statement [Runtime]"
-msgstr "Câu lệnh SetAttr [Runtime]"
+msgid "Hex Function [Runtime]"
+msgstr "Hàm Hex [Runtime]"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"bm_id3147559\n"
+"03080801.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>SetAttr statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh SetAttr</bookmark_value>"
+msgid "<bookmark_value>Hex function</bookmark_value>"
+msgstr "<bookmark_value>hàm Hex</bookmark_value>"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3147559\n"
+"03080801.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"Câu lệnh SetAttr [Runtime]\">Câu lệnh SetAttr [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hàm Hex [Runtime]\">Hàm Hex [Runtime]</link>"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3147264\n"
+"03080801.xhp\n"
+"par_id3145136\n"
"2\n"
"help.text"
-msgid "Sets the attribute information for a specified file."
-msgstr "Đặt thông tin thuộc tính về một tập tin cụ thể."
+msgid "Returns a string that represents the hexadecimal value of a number."
+msgstr "Trả về một chuỗi mà đại diện giá trị thập lục của một số."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3150359\n"
+"03080801.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3154365\n"
+"03080801.xhp\n"
+"par_id3150771\n"
"4\n"
"help.text"
-msgid "SetAttr FileName As String, Attribute As Integer"
-msgstr "SetAttr FileName As String, Attribute As Integer"
+msgid "Hex (Number)"
+msgstr "Hex (Số)"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3125863\n"
+"03080801.xhp\n"
+"hd_id3147530\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3154909\n"
+"03080801.xhp\n"
+"par_id3159414\n"
"6\n"
"help.text"
-msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>FileName:</emph> tên cũa tập tin (bao gồm đường dẫn) có các thuộc tính bạn muốn thử. Không nhập đường dẫn thì <emph>SetAttr</emph> tìm kiếm trong thư mục hiện thời. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "String"
+msgstr "Chuỗi"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3153192\n"
+"03080801.xhp\n"
+"hd_id3156344\n"
"7\n"
"help.text"
-msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
-msgstr "<emph>Thuộc tính:</emph> mẫu bit xác định các thuộc tính bạn muốn đặt hoặc gột:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3145786\n"
+"03080801.xhp\n"
+"par_id3148947\n"
"8\n"
"help.text"
-msgid "<emph>Value</emph>"
-msgstr "<emph>Giá trị</emph>"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào cần chuyển đổi sang một số thập lục."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3152596\n"
+"03080801.xhp\n"
+"hd_id3154365\n"
"9\n"
"help.text"
-msgid "0 : Normal files."
-msgstr "0 : tập tin bình thường."
-
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "1 : tập tin chỉ-đọc."
-
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3152576\n"
-"13\n"
-"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
-msgstr "32 : tập tin đã thay đổi kể từ lần sao lưu cuối cùng (bit Kho lưu)."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3153093\n"
-"14\n"
+"03080801.xhp\n"
+"par_id3156214\n"
+"30\n"
"help.text"
-msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
-msgstr "Bạn có thể đặt nhiều thuộc tính đồng thời, bằng cách kết hợp những giá trị tương ứng trong một câu lệnh OR (hoặc) luận lý."
+msgid "' uses BasicFormulas in $[officename] Calc"
+msgstr "REM dùng BasicFormulas trong $[officename] Calc"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3147434\n"
-"15\n"
+"03080801.xhp\n"
+"par_id3149262\n"
+"20\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "' Returns a long integer from a hexadecimal value."
+msgstr "REM Trả về một Số nguyên dài từ một giá trị thập lục."
-#: 03020414.xhp
-#, fuzzy
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3148645\n"
-"17\n"
+"03080801.xhp\n"
+"par_id3147215\n"
+"25\n"
"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr "On Error Goto ErrorHandler REM Define target for error-handler"
+msgid "' Calculates a hexadecimal value in integer."
+msgstr "REM Tính một giá trị thập lục trong Integer."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
+"03080802.xhp\n"
"tit\n"
"help.text"
-msgid "GoTo Statement [Runtime]"
-msgstr "Câu lệnh GoTo [Runtime]"
+msgid "Oct Function [Runtime]"
+msgstr "Hàm Oct [Runtime]"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"bm_id3159413\n"
+"03080802.xhp\n"
+"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh GoTo</bookmark_value>"
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr "<bookmark_value>hàm Oct</bookmark_value>"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3159413\n"
+"03080802.xhp\n"
+"hd_id3155420\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"Câu lệnh GoTo [Runtime]\">Câu lệnh GoTo [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Hàm Oct [Runtime]\">Hàm Oct [Runtime]</link>"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3153379\n"
+"03080802.xhp\n"
+"par_id3154924\n"
"2\n"
"help.text"
-msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
-msgstr "Tiếp tục thực hiện chương trình bên trong một chương trình con hay hàm, ở dòng thủ tục được nhãn ngụ ý."
+msgid "Returns the octal value of a number."
+msgstr "Trả về giá trị bát phăn của một số."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3149656\n"
+"03080802.xhp\n"
+"hd_id3148947\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3154367\n"
+"03080802.xhp\n"
+"par_id3150543\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "xem Tham số"
+msgid "Oct (Number)"
+msgstr "Oct (Số)"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3150870\n"
+"03080802.xhp\n"
+"hd_id3153360\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3156214\n"
+"03080802.xhp\n"
+"par_id3154138\n"
"6\n"
"help.text"
-msgid "Sub/Function"
-msgstr "Sub/Function"
+msgid "String"
+msgstr "Chuỗi"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3156424\n"
+"03080802.xhp\n"
+"hd_id3156422\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3154685\n"
+"03080802.xhp\n"
+"par_id3150768\n"
"8\n"
"help.text"
-msgid "Label1"
-msgstr "Label1"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào cần chuyển đổi sang một giá trị bát phân."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3145786\n"
+"03080802.xhp\n"
+"hd_id3148672\n"
"9\n"
"help.text"
-msgid "<emph>Label2:</emph>"
-msgstr "<emph>Label2:</emph>"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3161832\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
-
-#: 03090302.xhp
-#, fuzzy
-msgctxt ""
-"03090302.xhp\n"
-"par_id3146120\n"
-"11\n"
-"help.text"
-msgid "Exit Sub"
-msgstr "Exit Sub"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3150010\n"
-"12\n"
-"help.text"
-msgid "<emph>Label1:</emph>"
-msgstr "<emph>Label1:</emph>"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152462\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "GoTo Label2"
-msgstr "GoTo Label2"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152886\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "End Sub/Function"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3152596\n"
-"16\n"
+"03090000.xhp\n"
+"tit\n"
"help.text"
-msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
-msgstr "Hãy dùng câu lệnh <emph>GoTo</emph> để báo $[officename] Basic tiếp tục thực hiện chương trình ở nơi khác bên trong thủ tục đó. Vị trí phải được một nhãn ngụ ý. Để đặt một nhãn, gán một tên, sau đó kết thúc bằng một dấu hai chấm « : »."
+msgid "Controlling Program Execution"
+msgstr "Điều khiển sự thực hiện chương trình"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3155416\n"
-"17\n"
+"03090000.xhp\n"
+"hd_id3145136\n"
+"1\n"
"help.text"
-msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
-msgstr "Không thể sử dụng câu lệnh <emph>GoTo</emph> để nhảy ra một chương trình con hay hàm."
+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=\"Chuyển đổi sự thực hiện chương trình\">Chuyển đổi sự thực hiện chương trình</link>"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3154731\n"
-"19\n"
+"03090000.xhp\n"
+"par_id3143268\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "The following statements control the execution of a program."
+msgstr "Theo đây có những câu lệnh điều khiển sự thực hiện chương trình."
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id6967035\n"
+"03090000.xhp\n"
+"par_id3156152\n"
+"3\n"
"help.text"
-msgid "see Parameters"
-msgstr "xem Tham số"
+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 "Một chương trình thường thực hiện từ dong mã đầu đến dòng mã cuối. Bạn cũng có thể thực hiện một số hàm riêng bên trong chương trình, tùy theo một số điều kiện nào đó, hoặc chạy lại một phần của chương trình bên trong một hàm phụ. Bạn có thể dùng vòng lặp để lặp lại phần của chương trình càng nhiều lần càng cần thiết, hoặc đến khi thoả một điều kiện nào đó. Câu lệnh điều khiển kiểu này được phân loại là câu lệnh kiểu Điều kiện, Vòng lặp hay Nhảy."
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
+"03090100.xhp\n"
"tit\n"
"help.text"
-msgid "Expression Signs"
-msgstr "Dấu biểu thức"
+msgid "Condition Statements"
+msgstr "Câu lệnh Điều kiện"
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
-"hd_id3150702\n"
+"03090100.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
-msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Dấu biểu thức\">Dấu biểu thức</link>"
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Câu lệnh Điều kiện\">Câu lệnh Điều kiện</link>"
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
-"par_id3148668\n"
+"03090100.xhp\n"
+"par_id3153750\n"
"2\n"
"help.text"
-msgid "This function returns the algebraic sign of a numeric expression."
-msgstr "Hàm này trả về dấu đại số của một biểu thức thuộc số."
+msgid "The following statements are based on conditions."
+msgstr "Theo đây có những câu lệnh dựa vào điều kiện."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
+"03090101.xhp\n"
"tit\n"
"help.text"
-msgid "RSet Statement [Runtime]"
-msgstr "Câu lệnh RSet [Runtime]"
+msgid "If...Then...Else Statement [Runtime]"
+msgstr "Câu lệnh If...Then...Else [Runtime]"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"bm_id3153345\n"
+"03090101.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>RSet statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh RSet</bookmark_value>"
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh If</bookmark_value>"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3153345\n"
+"03090101.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"Câu lệnh RSet [Runtime]\">Câu lệnh RSet [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"Câu lệnh Nếu...Thì...Không thì [Runtime]\">Câu lệnh Nếu...Thì...Không thì [Runtime]</link>"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3150503\n"
+"03090101.xhp\n"
+"par_id3155555\n"
"2\n"
"help.text"
-msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
-msgstr "Canh lề một chuỗi theo bên phải bên trong một biến kiểu chuỗi, hoặc sao chép một kiểu biến do người dùng xác định vào một kiểu khác."
+msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
+msgstr "Xác định một hay nhiều khối câu lệnh sẽ chỉ thực hiện nếu một điều kiện đã cho là Đúng."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
+"03090101.xhp\n"
+"hd_id3146957\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3150669\n"
+"03090101.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
-msgstr "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
+msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3156024\n"
+"03090101.xhp\n"
+"par_id3123476\n"
+"help.text"
+msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
+msgstr ""
+
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"hd_id3155419\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3148552\n"
+"03090101.xhp\n"
+"par_id3153062\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string variable."
-msgstr "<emph>Text:</emph> bất cứ biến chuỗi nào."
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr "Câu lệnh <emph>If...Then</emph> (Nếu...Thì) thực hiện các khối chương trình phụ thuộc vào những điều kiện đã cho. Khi $[officename] Basic gặp một câu lệnh <emph>If</emph> (Nếu), điều kiện được thử. Điều kiện là Đúng thì thực hiện tất cả các câu lệnh theo sau, đến câu lệnh <emph>Else</emph> (Không thì) hay <emph>ElseIf</emph> (Không nếu). Nếu điều kiện là Sai, và một câu lệnh <emph>ElseIf</emph> theo sau, thì $[officename] Basic thử điều kiện kế tiếp: Đúng thì nó thực hiện những câu lệnh theo sau ; Sai thì nó tiếp tục lại với câu lệnh kế tiếp kiểu <emph>ElseIf</emph> hay <emph>Else</emph>. Câu lệnh nằm sau <emph>Else</emph> được thực hiện chỉ nếu không có điều kiện đã thử trước là Đúng. Một khi thử tất cả các điều kiện, và thực hiện những câu lệnh tương ứng, chương trình tiếp tục lại với câu lệnh nằm sau <emph>EndIf</emph>."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3154924\n"
+"03090101.xhp\n"
+"par_id3153192\n"
"7\n"
"help.text"
-msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
-msgstr "<emph>Text</emph>: chuỗi cần canh lề theo bên phải trong biến chuỗi."
+msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgstr "Bạn có thể lồng nhau nhiều câu lệnh kiểu <emph>If...Then</emph> (Nếu...Thì)."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3149456\n"
+"03090101.xhp\n"
+"par_id3154684\n"
"8\n"
"help.text"
-msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
-msgstr "<emph>Variable1:</emph> biến do người dùng xác định là đích cho biến được sao chép."
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgstr "Các câu lệnh kiểu <emph>Else</emph> (Không thì) và <emph>ElseIf</emph> (Không nếu) vẫn còn tùy chọn."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3153381\n"
+"03090101.xhp\n"
+"par_id3152939\n"
"9\n"
"help.text"
-msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
-msgstr "<emph>Variable2:</emph> biến do người dùng xác định cần sao chép vào biến khác."
+msgid "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
+msgstr "Bạn có thể sử dụng toán tử <emph>GoTo</emph> (đi tới) và <emph>GoSub</emph> (đi tới hàm phụ?) để nhảy ra một khối câu lệnh kiểu <emph>If...Then</emph> (Nếu...thì), nhưng không phải để nhảy vào một cấu trúc <emph>If...Then</emph>."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3154140\n"
+"03090101.xhp\n"
+"par_id3153951\n"
"10\n"
"help.text"
-msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
-msgstr "Nếu chuỗi này nhỏ hơn biến chuỗi, hàm <emph>RSet</emph> sẽ canh lề chuỗi theo bên phải bên trong biến chuỗi. Bất cứ ký tự nào còn lại trong chuỗi được dấu cách thay thế. Còn nếu chuỗi này lớn hơn biến chuỗi, thì cắt ngắn các ký tự vượt quá chiều dài của biến, và chỉ những ký tự còn lại được sắp hàng theo bên phải bên trong biến chuỗi."
+msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+msgstr "Mẫu ví dụ theo đây cho bạn nhập ngày hết hạn của một sản phẩm, và quyết định nếu sản phẩm đã hết hạn dùng chưa."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3149202\n"
+"03090101.xhp\n"
+"hd_id3152576\n"
"11\n"
"help.text"
-msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
-msgstr "Bạn cũng có thể sử dụng câu lệnh <emph>RSet</emph> để gán các biến có một kiểu do người dùng xác định, cho một kiểu khác."
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
-msgstr "Mẫu thí dụ theo đây sử dụng hai câu lệnh <emph>RSet</emph> và <emph>LSet</emph> để sửa đổi cách canh lề bên trái và bên phải của một chuỗi."
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"13\n"
-"help.text"
msgid "Example:"
-msgstr "Ví dụ :"
+msgstr "Thí dụ :"
-#: 03120308.xhp
-#, fuzzy
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3155856\n"
-"20\n"
+"03090101.xhp\n"
+"par_id3154490\n"
+"16\n"
"help.text"
-msgid "' Right-align \"SBX\" in a 40-character string"
-msgstr "REM Canh lề phải « SBX » trong một chuỗi có 40 ký tự"
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgstr "sDate = InputBox(\"Nhập ngày hết hạn dùng (Th.Ng.NNĂM)\")"
-#: 03120308.xhp
-#, fuzzy
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3152577\n"
+"03090101.xhp\n"
+"par_id3155601\n"
"21\n"
"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "REM Thay thế mỗi dấu sao bằng một dáu cách"
-
-#: 03120308.xhp
-#, fuzzy
-msgctxt ""
-"03120308.xhp\n"
-"par_id3145801\n"
-"32\n"
-"help.text"
-msgid "' Left-align \"SBX\" in a 40-character string"
-msgstr "REM Canh lề trái « SBX » trong một chuỗi có 40 ký tự"
-
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exponential and Logarithmic Functions"
-msgstr "Hàm số mũ và lôga"
+msgid "MsgBox \"The expiration date has passed\""
+msgstr "MsgBox \"Đã hết hạn\""
-#: 03080200.xhp
+#: 03090101.xhp
msgctxt ""
-"03080200.xhp\n"
-"hd_id3154758\n"
-"1\n"
+"03090101.xhp\n"
+"par_id3146912\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Hàm số mũ và lôga\">Hàm số mũ và lôga</link>"
+msgid "MsgBox \"The expiration date has not yet passed\""
+msgstr "MsgBox \"Chưa hết hạn dùng\""
-#: 03080200.xhp
+#: 03090101.xhp
msgctxt ""
-"03080200.xhp\n"
-"par_id3148550\n"
-"2\n"
+"03090101.xhp\n"
+"par_id3154754\n"
+"25\n"
"help.text"
-msgid "$[officename] Basic supports the following exponential and logarithmic functions."
-msgstr "$[officename] Basic hỗ trợ những hàm kiểu số mũ và lôga theo đây."
+msgid "MsgBox \"The expiration date is today\""
+msgstr "MsgBox \"Ngày hết hạn là hôm nay\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
+"03090102.xhp\n"
"tit\n"
"help.text"
-msgid "The Basic Editor"
-msgstr "Trình Sửa Basic"
+msgid "Select...Case Statement [Runtime]"
+msgstr "Câu lệnh Select...Case [Runtime]"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"bm_id3148647\n"
+"03090102.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
-msgstr "<bookmark_value>lưu;mã Basic</bookmark_value><bookmark_value>nạp;mã Basic</bookmark_value><bookmark_value>trình sửa Basic</bookmark_value><bookmark_value>di chuyển;qua dự án Basic</bookmark_value><bookmark_value>dòng dài;trong trình sửa Basic</bookmark_value><bookmark_value>dòng văn bản;trong trình sửa Basic</bookmark_value><bookmark_value>tiếp tục;dòng dài trong trình sửa</bookmark_value>"
+msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Select...Case</bookmark_value><bookmark_value>câu lệnh Case</bookmark_value>"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3147264\n"
+"03090102.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
-msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Trình Sửa Basic\">Trình Sửa Basic</link>"
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3145069\n"
-"3\n"
-"help.text"
-msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
-msgstr "Trình Soạn thảo Basic cung cấp các chức năng chỉnh sửa bình thường khi hiệu chỉnh một tài liệu văn bản. Nó hỗ trợ các chức năng của trình đơn <emph>Sửa</emph> (Cắt, Xoá, Dán), khả năng lựa chọn chuỗi dùng phím <item type=\"keycode\">Shift</item>, cũng như các chức năng định vị con trỏ (v.d. dời từ từ này sang từ đó dùng phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Ctrl</defaultinline></switchinline> và các phím mũi tên)."
+msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Câu lệnh Select...Case [Runtime]\">Câu lệnh Select...Case [Runtime]</link>"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154686\n"
-"31\n"
+"03090102.xhp\n"
+"par_id3153896\n"
+"2\n"
"help.text"
-msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
-msgstr "Dòng dài có thể được chia ra vài phần riêng, bằn cách chèn một dấu cách ( ) và một dấu gạch dưới (_) như là hai ký tự cuối cùng của dòng đó. Do đó kết nối dòng trước và dòng sau với nhau làm một dòng hợp lý riêng lẻ. (Cũng dùng « Tùy chọn tương thích » trong mô-đun Basic đó thì tính năng tiếp tục dòng cũng hợp lệ đối với các dòng chú thích.)"
+msgid "Defines one or more statement blocks depending on the value of an expression."
+msgstr "Xác định một hay nhiều khối câu lệnh phụ thuộc vào giá trị của một biểu thức."
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3151042\n"
-"32\n"
+"03090102.xhp\n"
+"hd_id3147265\n"
+"3\n"
"help.text"
-msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
-msgstr "Nếu bạn nhấn vào biểu tượng <emph>Chạy BASIC</emph> trên thanh công cụ <emph>Vĩ lệnh</emph>, tiến trình thực hiện chương trình bắt đầu ở dòng đầu của trình sửa Basic. Chương trình thực hiện trình con hoặc hàm thứ nhất, sau đó dừng thực hiện. « Sub Main » không có quyền cao hơn khi thực hiện chương trình."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id59816\n"
+"03090102.xhp\n"
+"par_id3150400\n"
+"4\n"
"help.text"
-msgid "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
-msgstr "Chèn mã Basic vào giữa dòng Sub Main và dòng End Sub mà bạn thấy khi mở IDE lần đầu tiên. Hoặc xoá tất cả các dòng, sau đó nhập mã nguồn của bạn."
+msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
+msgstr "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3125863\n"
-"4\n"
+"03090102.xhp\n"
+"hd_id3150767\n"
+"5\n"
"help.text"
-msgid "Navigating in a Project"
-msgstr "Điều hướng trong một dự án"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3145785\n"
+"03090102.xhp\n"
+"par_id3156281\n"
"6\n"
"help.text"
-msgid "The Library List"
-msgstr "Danh sách Thư viện"
+msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgstr "<emph>Điều_kiện</emph> : bất cứ biểu thức nào mà điều khiển nếu nên thực hiện khối câu lệnh nằm sau mệnh đề Case tương ứng."
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3146120\n"
+"03090102.xhp\n"
+"par_id3150448\n"
"7\n"
"help.text"
-msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
-msgstr "Chọn một thư viện trong danh sách <emph>Thư viện</emph> bên trái thanh công cụ, để nạp thư viện đó trong trình sửa. Mô-đun thứ nhất của thư viện đã chọn sẽ được hiển thị."
+msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
+msgstr "<emph>Biểu_thức</emph> : bất cứ biểu thức nào tương thích với biểu thức kiểu Condition (điều kiện). Khối câu lệnh nằm sau mệnh đề Case (trường hợp) được thực hiện nếu <emph>Condition</emph> tương ứng với <emph>Biểu_thức</emph>."
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3153190\n"
+"03090102.xhp\n"
+"hd_id3153768\n"
"8\n"
"help.text"
-msgid "The Object Catalog"
-msgstr "Phân loại Đối tượng"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3148647\n"
-"15\n"
+"03090102.xhp\n"
+"par_id3152597\n"
+"14\n"
"help.text"
-msgid "Saving and Loading Basic Source Code"
-msgstr "Lưu và Nạp Mã Nguồn Basic"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Đánh số từ 1 đến 5\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154320\n"
+"03090102.xhp\n"
+"par_id3147349\n"
"16\n"
"help.text"
-msgid "You can save Basic code in a text file for saving and importing in other programming systems."
-msgstr "Bạn có khả năng lưu mã nguồn Basic vào một tập tin văn bản, để lưu và nhập vào hệ thống ngôn ngữ khác."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149959\n"
-"25\n"
-"help.text"
-msgid "You cannot save Basic dialogs to a text file."
-msgstr "Không thể lưu hộp thoại Basic vào một tập tin văn bản."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3149403\n"
-"17\n"
-"help.text"
-msgid "Saving Source Code to a Text File"
-msgstr "Lưu Mã Nguồn vào một Tập tin Văn bản"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Đánh số từ 6 đến 8\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3150327\n"
+"03090102.xhp\n"
+"par_id3152886\n"
"18\n"
"help.text"
-msgid "Select the module that you want to export as text from the object catalog."
-msgstr "Chọn mô-đun bạn muốn xuất dạng văn bản từ phân loại đối tượng."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3150752\n"
-"19\n"
-"help.text"
-msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
-msgstr "Nhấn vào biểu tượng <emph>Lưu mã nguồn dạng</emph> trên thanh công cụ <emph>Vĩ lệnh</emph>."
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Lớn hơn 8\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154754\n"
+"03090102.xhp\n"
+"par_id3146975\n"
"20\n"
"help.text"
-msgid "Select a file name and click <emph>OK</emph> to save the file."
-msgstr "Chọn một tên tập tin, sau đó bấm nút <emph>OK</emph> để lưu tập tin."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3159264\n"
-"21\n"
-"help.text"
-msgid "Loading Source Code From a Text File"
-msgstr "Nạp Mã Nguồn từ một Tập tin Văn bản"
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3147343\n"
-"22\n"
-"help.text"
-msgid "Select the module where you want to import the source code from the object catalog."
-msgstr "Chọn mô-đun trong đó bạn muốn cải tiến mã nguồn từ phân loại đối tượng."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3145230\n"
-"23\n"
-"help.text"
-msgid "Position the cursor where you want to insert the program code."
-msgstr "Đặt con trỏ vào vị trí bạn muốn chèn mã chương trình."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149565\n"
-"24\n"
-"help.text"
-msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
-msgstr "Nhấn vào biểu tượng <emph>Chèn văn bản nguồn</emph> trên thanh công cụ <emph>Vĩ lệnh</emph>."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3154020\n"
-"33\n"
-"help.text"
-msgid "Select the text file containing the source code and click <emph>OK</emph>."
-msgstr "Chọn tập tin văn bản chứa mã nguồn, sau đó bấm nút <emph>OK</emph>."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3153198\n"
-"29\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgid "Print \"Out of range 1 to 10\""
+msgstr "Print \"Ở ngoại phạm vi 1 đến 10\""
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
+"03090103.xhp\n"
"tit\n"
"help.text"
-msgid "DefVar Statement [Runtime]"
-msgstr "Câu lệnh DefVar [Runtime]"
+msgid "IIf Statement [Runtime]"
+msgstr "Câu lệnh IIf [Runtime]"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"bm_id3143267\n"
+"03090103.xhp\n"
+"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>DefVar statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefVar</bookmark_value>"
+msgid "<bookmark_value>IIf statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh IIf</bookmark_value>"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3143267\n"
+"03090103.xhp\n"
+"hd_id3155420\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"Câu lệnh DefVar [Runtime]\">Câu lệnh DefVar [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Câu lệnh IIf [Runtime]\">Câu lệnh IIf [Runtime]</link>"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3153825\n"
+"03090103.xhp\n"
+"par_id3145610\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
+msgstr "Trả về một của hai kết quả hàm có thể làm, phụ thuộc vào giá trị lôgic của biểu thức đã tính."
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
+"03090103.xhp\n"
+"hd_id3159413\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3149514\n"
+"03090103.xhp\n"
+"par_id3147560\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+msgstr "IIf (Biểu_thức, Biểu_thức_Đúng, Biểu_thức_Sai)"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3156024\n"
+"03090103.xhp\n"
+"hd_id3150541\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3147560\n"
+"03090103.xhp\n"
+"par_id3153381\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+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>Biểu_thức</emph> : bất cứ biểu thức nào bạn muốn ước tính. Nếu biểu thức tính là <emph>Đúng</emph> thì hàm trả về kết quả của Biểu_thức_Đúng; không thì nó trả về kết quả của Biểu_thức_Sai."
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3148552\n"
+"03090103.xhp\n"
+"par_id3150870\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "<emph>DefVar:</emph> biến thế"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
+msgstr "<emph>Biểu_thức_Đúng, Biểu_thức_Sai</emph> : bất cặp cứ biểu thức nào, một của chúng sẽ được trả về làm kết quả của hàm, phụ thuộc vào sự ước tính lôgic."
-#: 03102000.xhp
-#, fuzzy
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3156214\n"
-"11\n"
+"03090200.xhp\n"
+"tit\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tế cho các kiểu biến:"
+msgid "Loops"
+msgstr "Vòng lặp"
-#: 03102000.xhp
-#, fuzzy
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3154012\n"
-"21\n"
+"03090200.xhp\n"
+"hd_id3153990\n"
+"1\n"
"help.text"
-msgid "vDiv=99 ' vDiv is an implicit variant"
-msgstr "vDiv=99 REM vDiv là một biến thế ngầm"
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Vòng lặp\">Vòng lặp</link>"
-#: 03102000.xhp
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3146121\n"
-"22\n"
+"03090200.xhp\n"
+"par_id3147226\n"
+"2\n"
"help.text"
-msgid "vDiv=\"Hello world\""
-msgstr "vDiv=\"Chào thế giới\""
+msgid "The following statements execute loops."
+msgstr "Theo đây có những câu lệnh thực hiện vòng lặp."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
+"03090201.xhp\n"
"tit\n"
"help.text"
-msgid "Information"
-msgstr "Thông tin"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "Information"
-msgstr "Thông tin"
+msgid "Do...Loop Statement [Runtime]"
+msgstr "Câu lệnh Do...Loop [Runtime]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153381\n"
-"102\n"
+"03090201.xhp\n"
+"bm_id3156116\n"
"help.text"
-msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
-msgstr ""
+msgid "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Do...Loop (theo vòng lặp)</bookmark_value><bookmark_value>While (trong khi); Do loop (theo vòng lặp)</bookmark_value><bookmark_value>Until (đến khi)</bookmark_value><bookmark_value>vòng lặp</bookmark_value>"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150870\n"
-"103\n"
+"03090201.xhp\n"
+"hd_id3156116\n"
+"1\n"
"help.text"
-msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
-msgstr "Cũng vậy với thiết lập miền địa phương đối với định dạng của ngày tháng, thời gian và tiền tệ. Mã định dạng Basic sẽ được giải thích và hiển thị tùy theo thiết lập miền địa phương của bạn."
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Câu lệnh Do...Loop [Runtime]\">Câu lệnh Do...Loop [Runtime]</link>"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3156424\n"
+"03090201.xhp\n"
+"par_id3109850\n"
"2\n"
"help.text"
-msgid "The color values of the 16 basic colors are as follows:"
-msgstr "16 màu sắc cơ bản có những giá trị màu này:"
+msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
+msgstr "Lặp lại những câu lệnh nằm giữa câu lệnh Do (làm) và câu lệnh Loop (vòng lặp) trong khi điều kiện là Đúng, hoặc đên khi điều kiện trở thành Đúng."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153091\n"
+"03090201.xhp\n"
+"hd_id3149119\n"
"3\n"
"help.text"
-msgid "<emph>Color Value</emph>"
-msgstr "<emph>Giá trị màu</emph>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154319\n"
+"03090201.xhp\n"
+"par_id3155150\n"
"4\n"
"help.text"
-msgid "<emph>Color Name</emph>"
-msgstr "<emph>Tên màu</emph>"
+msgid "Do [{While | Until} condition = True]"
+msgstr "Do [{While | Until} condition = True]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151112\n"
+"03090201.xhp\n"
+"par_id3154422\n"
"5\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3155854\n"
+"03090201.xhp\n"
+"par_id3150789\n"
"6\n"
"help.text"
-msgid "Black"
-msgstr "Đen"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154942\n"
+"03090201.xhp\n"
+"par_id3155805\n"
"7\n"
"help.text"
-msgid "128"
-msgstr "128"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154731\n"
+"03090201.xhp\n"
+"par_id3145090\n"
"8\n"
"help.text"
-msgid "Blue"
-msgstr "Xanh"
+msgid "Loop"
+msgstr "Vòng lặp"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145645\n"
+"03090201.xhp\n"
+"par_id3154749\n"
"9\n"
"help.text"
-msgid "32768"
-msgstr "32768"
+msgid "or"
+msgstr "hoặc"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149400\n"
+"03090201.xhp\n"
+"par_id3150503\n"
"10\n"
"help.text"
-msgid "Green"
-msgstr "Lục"
+msgid "Do"
+msgstr "Do"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150753\n"
+"03090201.xhp\n"
+"par_id3149762\n"
"11\n"
"help.text"
-msgid "32896"
-msgstr "32896"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153765\n"
+"03090201.xhp\n"
+"par_id3150984\n"
"12\n"
"help.text"
-msgid "Cyan"
-msgstr "Lục lam"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154756\n"
+"03090201.xhp\n"
+"par_id3143228\n"
"13\n"
"help.text"
-msgid "8388608"
-msgstr "8388608"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159266\n"
+"03090201.xhp\n"
+"par_id3149235\n"
"14\n"
"help.text"
-msgid "Red"
-msgstr "Đỏ"
+msgid "Loop [{While | Until} condition = True]"
+msgstr "Loop [{While | Until} condition = True]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3163807\n"
+"03090201.xhp\n"
+"hd_id3156024\n"
"15\n"
"help.text"
-msgid "8388736"
-msgstr "8388736"
+msgid "Parameters/Elements"
+msgstr "Tham số/Phần tử"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145150\n"
+"03090201.xhp\n"
+"par_id3156344\n"
"16\n"
"help.text"
-msgid "Magenta"
-msgstr "Đỏ tươi"
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+msgstr "<emph>Điều_kiện</emph> : một biểu thức kiểu so sánh, thuộc số hay chuỗi mà ước tính là hoặc Đúng hoặc Sai."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147002\n"
+"03090201.xhp\n"
+"par_id3149669\n"
"17\n"
"help.text"
-msgid "8421376"
-msgstr "8421376"
+msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
+msgstr "<emph>Khối câu lệnh</emph> : những câu lệnh bạn muốn lặp lại trong khi hoặc đến khi điều kiện là Đúng."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152778\n"
+"03090201.xhp\n"
+"par_id3150791\n"
"18\n"
"help.text"
-msgid "Yellow"
-msgstr "Vàng"
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
+msgstr "Câu lệnh <emph>Do...Loop</emph> (làm...vòng lặp) thực hiện một vòng lặp miến là, hoặc đến khi một điều kiện nào đó là Đúng. Điều kiện thoát phải được nhập vào phía sau câu lệnh kiểu <emph>Do</emph> hay <emph>Loop</emph>. Những mẫu thí dụ theo đây là tổ hợp đúng:"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150088\n"
+"03090201.xhp\n"
+"hd_id3154366\n"
"19\n"
"help.text"
-msgid "8421504"
-msgstr "8421504"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159239\n"
+"03090201.xhp\n"
+"par_id3145171\n"
"20\n"
"help.text"
-msgid "White"
-msgstr "Trắng"
+msgid "Do While condition = True"
+msgstr "Do While condition = True"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150206\n"
+"03090201.xhp\n"
+"par_id3149203\n"
"21\n"
"help.text"
-msgid "12632256"
-msgstr "12632256"
+msgid "...statement block"
+msgstr "...khối câu lệnh"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149817\n"
+"03090201.xhp\n"
+"par_id3125864\n"
"22\n"
"help.text"
-msgid "Gray"
-msgstr "Xám"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150363\n"
-"23\n"
-"help.text"
-msgid "255"
-msgstr "255"
+msgid "Loop"
+msgstr "Vòng lặp"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154576\n"
+"03090201.xhp\n"
+"par_id3154124\n"
"24\n"
"help.text"
-msgid "Light blue"
-msgstr "Xanh nhạt"
+msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgstr "Khối câu lệnh nằm giữa hai câu lệnh <emph>Do While</emph> (làm trong khi) và <emph>Loop</emph> (vòng lặp) được lặp lại miễn là điều kiện là Đúng."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150367\n"
+"03090201.xhp\n"
+"par_id3153968\n"
"25\n"
"help.text"
-msgid "65280"
-msgstr "65280"
+msgid "Do Until condition = True"
+msgstr "Do Until condition = True"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150202\n"
+"03090201.xhp\n"
+"par_id3154909\n"
"26\n"
"help.text"
-msgid "Light green"
-msgstr "Lục nhạt"
+msgid "...statement block"
+msgstr "...khối câu lệnh"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154487\n"
+"03090201.xhp\n"
+"par_id3159151\n"
"27\n"
"help.text"
-msgid "65535"
-msgstr "65535"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151332\n"
-"28\n"
-"help.text"
-msgid "Light cyan"
-msgstr "Xanh lá mạ nhạt"
+msgid "Loop"
+msgstr "Vòng lặp"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148702\n"
+"03090201.xhp\n"
+"par_id3150440\n"
"29\n"
"help.text"
-msgid "16711680"
-msgstr "16711680"
+msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
+msgstr "Khối câu lệnh nằm giữa hai câu lệnh <emph>Do Until</emph> (làm đến khi) và <emph>Loop</emph> (vòng lặp) thì được lặp lại nếu/miễn là điều kiện là Sai."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153067\n"
+"03090201.xhp\n"
+"par_id3153952\n"
"30\n"
"help.text"
-msgid "Light red"
-msgstr "Đỏ nhạt"
+msgid "Do"
+msgstr "Do"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153912\n"
+"03090201.xhp\n"
+"par_id3147349\n"
"31\n"
"help.text"
-msgid "16711935"
-msgstr "16711935"
+msgid "...statement block"
+msgstr "...khối câu lệnh"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159097\n"
+"03090201.xhp\n"
+"par_id3159153\n"
"32\n"
"help.text"
-msgid "Light magenta"
-msgstr "Đỏ tươi nhạt"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155266\n"
-"33\n"
-"help.text"
-msgid "16776960"
-msgstr "16776960"
+msgid "Loop While condition = True"
+msgstr "Loop While condition = True"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3157978\n"
+"03090201.xhp\n"
+"par_id3146985\n"
"34\n"
"help.text"
-msgid "Light yellow"
-msgstr "Vàng nhạt"
+msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgstr "Khối câu lệnh nằm giữa hai câu lệnh Do (làm) và Loop (vòng lặp) thì lặp lại miễn là điều kiện là Đúng."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153286\n"
+"03090201.xhp\n"
+"par_id3150488\n"
"35\n"
"help.text"
-msgid "16777215"
-msgstr "16777215"
+msgid "Do"
+msgstr "Do"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151302\n"
+"03090201.xhp\n"
+"par_id3153189\n"
"36\n"
"help.text"
-msgid "Transparent white"
-msgstr "Màu trắng trong suốt"
+msgid "...statement block"
+msgstr "...khối câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"hd_id3152869\n"
+"03090201.xhp\n"
+"par_id3155411\n"
"37\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Mã lỗi</variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id315509599\n"
-"help.text"
-msgid "<variable id=\"err1\">1 An exception occurred</variable>"
-msgstr "<variable id=\"err18\">18 Người dùng đã gián đoạn </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155095\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"err2\">2 Syntax error</variable>"
-msgstr "<variable id=\"err2\">2 Lỗi cú pháp không được xác định </variable>"
+msgid "Loop Until condition = True"
+msgstr "Loop Until condition = True"
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149126\n"
+"03090201.xhp\n"
+"par_id3151117\n"
"39\n"
"help.text"
-msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
-msgstr "<variable id=\"err3\">3 Trà về mà không có Gosub </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153976\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
-msgstr "<variable id=\"err14\">14 Tham số không hợp lệ </variable>"
+msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
+msgstr "Khối câu lệnh nằm giữa hai câu lệnh <emph>Do</emph> (làm) và <emph>Loop</emph> (vòng lặp) lặp lại đến khi điều kiện là Đúng."
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150891\n"
+"03090201.xhp\n"
+"par_id3149484\n"
"41\n"
"help.text"
-msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
-msgstr "<variable id=\"err5\">5 Sai gọi thủ tục</variable>"
+msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
+msgstr "Hãy dùng câu lệnh <emph>Exit Do</emph> (thoát làm) để kết thúc tuyệt đối vòng lặp. Bạn có thể thêm câu lệnh này vào bất cứ nơi nào trong một câu lệnh kiểu <emph>Do</emph>...<emph>Loop</emph> (làm...vòng lặp). Cũng có thể xác định một điều kiện thoát dùng cấu trúc <emph>If...Then</emph> (nếu...thì) như theo đây:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159227\n"
+"03090201.xhp\n"
+"par_id3149262\n"
"42\n"
"help.text"
-msgid "<variable id=\"err6\">6 Overflow</variable>"
-msgstr "<variable id=\"err6\">6 Tràn </variable>"
+msgid "Do..."
+msgstr "Làm..."
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154649\n"
+"03090201.xhp\n"
+"par_id3149298\n"
"43\n"
"help.text"
-msgid "<variable id=\"err7\">7 Not enough memory</variable>"
-msgstr "<variable id=\"err7\">7 Cạn bộ nhớ </variable>"
+msgid "statements"
+msgstr "câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150050\n"
+"03090201.xhp\n"
+"par_id3145646\n"
"44\n"
"help.text"
-msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
-msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+msgid "If condition = True Then Exit Do"
+msgstr "If condition = True Then Exit Do"
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148900\n"
+"03090201.xhp\n"
+"par_id3154490\n"
"45\n"
"help.text"
-msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
-msgstr "<variable id=\"err9\">9 Chỉ số dưới ở ngoài phạm vi </variable>"
+msgid "statements"
+msgstr "câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153806\n"
+"03090201.xhp\n"
+"par_id3153159\n"
"46\n"
"help.text"
-msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
-msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+msgid "Loop..."
+msgstr "Vòng lặp..."
-#: 00000003.xhp
-#, fuzzy
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146963\n"
+"03090201.xhp\n"
+"hd_id3147396\n"
"47\n"
"help.text"
-msgid "<variable id=\"err11\">11 Division by zero</variable>"
-msgstr "<variable id=\"err11\">11 Chia cho không </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153013\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"err12\">12 Variable not defined</variable>"
-msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-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 Kiểu không khớp</variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151197\n"
-"50\n"
-"help.text"
-msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
-msgstr "<variable id=\"err14\">14 Tham số không hợp lệ </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154710\n"
-"51\n"
-"help.text"
-msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
-msgstr "<variable id=\"err18\">18 Người dùng đã gián đoạn </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147504\n"
-"52\n"
-"help.text"
-msgid "<variable id=\"err20\">20 Resume without error</variable>"
-msgstr "<variable id=\"err20\">20 Tiếp tục mà không có lỗi </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145319\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
-msgstr "<variable id=\"err28\">28 Ngăn xếp hết dung lượng</variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146110\n"
-"54\n"
-"help.text"
-msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
-msgstr "<variable id=\"err35\">35 Chưa xác định Thủ tục hoặc Hàm </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147246\n"
-"55\n"
-"help.text"
-msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
-msgstr "<variable id=\"err48\">48 Gặp lỗi khi nạp DLL </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146101\n"
-"56\n"
-"help.text"
-msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
-msgstr "<variable id=\"err49\">49 Quy ước gọi DLL sai </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153957\n"
-"57\n"
-"help.text"
-msgid "<variable id=\"err51\">51 Internal error</variable>"
-msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154404\n"
-"58\n"
-"help.text"
-msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
-msgstr "<variable id=\"err52\">52 Tên/số tập tin sai </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151338\n"
-"59\n"
-"help.text"
-msgid "<variable id=\"err53\">53 File not found</variable>"
-msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147298\n"
-"60\n"
-"help.text"
-msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
-msgstr "<variable id=\"err54\">54 Sai chế độ tập tin</variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148747\n"
-"61\n"
-"help.text"
-msgid "<variable id=\"err55\">55 File already open</variable>"
-msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145233\n"
-"62\n"
-"help.text"
-msgid "<variable id=\"err57\">57 Device I/O error</variable>"
-msgstr "<variable id=\"err57\">57 Lỗi V/R thiết bị </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3156399\n"
-"63\n"
-"help.text"
-msgid "<variable id=\"err58\">58 File already exists</variable>"
-msgstr "<variable id=\"err58\">58 Tập tin đã có </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149324\n"
-"64\n"
-"help.text"
-msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
-msgstr "<variable id=\"err59\">59 Sai chiều dài bản ghi </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147409\n"
-"65\n"
-"help.text"
-msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
-msgstr "<variable id=\"err61\">61 Đĩa đầy</variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149146\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
-msgstr "<variable id=\"err67\">67 Quá nhiều tập tin</variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150456\n"
-"67\n"
-"help.text"
-msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
-msgstr "<variable id=\"err63\">63 Sai số thứ tự bản ghi </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146883\n"
-"68\n"
-"help.text"
-msgid "<variable id=\"err67\">67 Too many files</variable>"
-msgstr "<variable id=\"err67\">67 Quá nhiều tập tin</variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146818\n"
-"69\n"
-"help.text"
-msgid "<variable id=\"err68\">68 Device not available</variable>"
-msgstr "<variable id=\"err68\">68 Thiết bị không sẵn sàng </variable>"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145225\n"
-"70\n"
-"help.text"
-msgid "<variable id=\"err70\">70 Access denied</variable>"
-msgstr "<variable id=\"err70\">70 Từ chối cấp phép </variable>"
+msgid "Example"
+msgstr "Ví dụ :"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150372\n"
-"71\n"
+"03090202.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err71\">71 Disk not ready</variable>"
-msgstr "<variable id=\"err71\">71 Đĩa không sẵn sàng </variable>"
+msgid "For...Next Statement [Runtime]"
+msgstr "Câu lệnh For...Next [Runtime]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148894\n"
-"72\n"
+"03090202.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<variable id=\"err73\">73 Not implemented</variable>"
-msgstr "<variable id=\"err73\">73 Tính năng chưa được thực hiện </variable>"
+msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh For</bookmark_value><bookmark_value>câu lệnh To</bookmark_value><bookmark_value>câu lệnh Step</bookmark_value><bookmark_value>câu lệnh Next</bookmark_value>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152981\n"
-"73\n"
+"03090202.xhp\n"
+"hd_id3149205\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
-msgstr "<variable id=\"err74\">74 Không thay đổi tên với ổ đĩa khác</variable>"
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"Câu lệnh For...Next [Runtime]\">Câu lệnh For...Next [Runtime]</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149355\n"
-"74\n"
+"03090202.xhp\n"
+"par_id3143267\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err75\">75 Path/file access error</variable>"
-msgstr "<variable id=\"err75\">75 Lỗi truy cập đến đường dẫn/tập tin</variable>"
+msgid "Repeats the statements between the For...Next block a specified number of times."
+msgstr "Lặp lại những câu lệnh nằm giữa khối <emph>For...Next</emph> (trong...kế tiếp) một số lần nào đó."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150477\n"
-"75\n"
+"03090202.xhp\n"
+"hd_id3156153\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err76\">76 Path not found</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154678\n"
-"76\n"
+"03090202.xhp\n"
+"par_id3148473\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err91\">91 Object variable not set</variable>"
-msgstr "<variable id=\"err91\">91 Chưa đặt biến đối tượng </variable>"
+msgid "For counter=start To end [Step step]"
+msgstr "For counter=start To end [Step step]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149890\n"
-"77\n"
+"03090202.xhp\n"
+"par_id3156024\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
-msgstr "<variable id=\"err93\">93 Chuỗi mẫu sai</variable>"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146942\n"
-"78\n"
+"03090202.xhp\n"
+"par_id3146796\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
-msgstr "<variable id=\"err4\">4 Làm lại từ đầu </variable>"
+msgid "[Exit For]"
+msgstr "[Exit For]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469429\n"
+"03090202.xhp\n"
+"par_id3159414\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err250\">250 DDE Error</variable>"
-msgstr "<variable id=\"err57\">57 Lỗi V/R thiết bị </variable>"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469428\n"
+"03090202.xhp\n"
+"par_id3153897\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
-msgstr "<variable id=\"err20\">20 Tiếp tục mà không có lỗi </variable>"
+msgid "Next [counter]"
+msgstr "Next [counter]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469427\n"
+"03090202.xhp\n"
+"hd_id3150400\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
-msgstr "<variable id=\"err68\">68 Thiết bị không sẵn sàng </variable>"
+msgid "Variables:"
+msgstr "Biến:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469426\n"
+"03090202.xhp\n"
+"par_id3150358\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
+msgstr "<emph>Counter</emph>: bộ đếm vòng lặp được gán đầu tiên giá trị bên phải dấu bằng (Đầu). Chỉ giá trị thuộc số là hợp lệ. Bộ đếm vòng lặp thì tăng hay giảm tùy theo biến Bước đến khi đi qua Cuối."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469425\n"
+"03090202.xhp\n"
+"par_id3152455\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err425\">425 Sai dùng đối tượng </variable>"
+msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+msgstr "<emph>Đầu</emph> : biến thuộc số mà xác định giá trị đầu tiên ở đầu của vòng lặp."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469424\n"
+"03090202.xhp\n"
+"par_id3151043\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
-msgstr "<variable id=\"err28\">28 Ngăn xếp hết dung lượng</variable>"
+msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
+msgstr "<emph>Cuối</emph> : biến thuộc số mà xác định giá trị cuối cùng ở cuối của vòng lặp."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469423\n"
+"03090202.xhp\n"
+"par_id3156281\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
-msgstr "<variable id=\"err451\">451 Đối tượng không phải là một bộ sưu tập</variable>"
+msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
+msgstr "<emph>Bước</emph> : đặt giá trị theo đó cần tăng/giảm bộ đếm vòng lặp. Không đưa ra Bước thì bộ đếm vòng lặp được tăng/giảm theo một. Trong trường hợp này, Cuối phải lớn hơn Đầu. Muốn giảm Bộ đếm thì Cuối phải nhỏ hơn Đầu, và Bước phải được gán một giá trị âm."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469422\n"
+"03090202.xhp\n"
+"par_id3154684\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
-msgstr "<variable id=\"err28\">28 Ngăn xếp hết dung lượng</variable>"
+msgid "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
+msgstr "Vòng lặp <emph>For...Next</emph> lặp lại tất cả các câu lệnh trong vòng lặp số lần đã ghi rõ bằng tham số."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469421\n"
+"03090202.xhp\n"
+"par_id3147287\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
-msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
+msgstr "Trong khi giảm biến đếm, $[officename] Basic kiểm tra nếu giá trị cuối đã được tới chưa. Một khi bộ đếm đi qua giá trị cuối, vòng lặp tự động kết thúc."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469420\n"
+"03090202.xhp\n"
+"par_id3159154\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err288\">288 External application busy</variable>"
-msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
+msgid "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
+msgstr "Cũng có thể lồng nhau nhiều câu lệnh <emph>For...Next</emph>. Nếu bạn không ghi rõ một biến phía sau câu lệnh <emph>Next</emph>, <emph>Next</emph> tự động tham chiếu đến câu lệnh <emph>For</emph> mới đây."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469419\n"
+"03090202.xhp\n"
+"par_id3155306\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
-msgstr "<variable id=\"err3\">3 Trà về mà không có Gosub </variable>"
+msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+msgstr "Nếu bạn ghi rõ một bước tăng/giảm 0, những câu lệnh nằm giữa <emph>For</emph> và <emph>Next</emph> được lặp lại liên tục."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469418\n"
+"03090202.xhp\n"
+"par_id3155854\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
-msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
+msgstr "Khi đếm xuống biến đếm, $[officename] Basic kiểm tra bị tràn hay bị tràn ngược. Vòng lặp kết thúc khi Bộ đếm lớn hơn Cuối (giá trị Bước dương) hoặc nhỏ hơn Cuối (giá trị Bước âm)."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469417\n"
+"03090202.xhp\n"
+"par_id3145273\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
-msgstr "<variable id=\"err93\">93 Chuỗi mẫu sai</variable>"
+msgid "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
+msgstr "Hãy dùng câu lệnh <emph>Exit For</emph> (thoát trong) để thoát tuyệt đối vòng lặp. Câu lệnh này phải nằm bên trong một vòng lặp kiểu <emph>For...Next</emph> (trong...kế tiếp). Dùng câu lệnh <emph>If...Then</emph> (nếu...thì) để thử điều kiện thoát như theo đây:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469416\n"
+"03090202.xhp\n"
+"par_id3153190\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr "<variable id=\"err18\">18 Người dùng đã gián đoạn </variable>"
+msgid "For..."
+msgstr "For..."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469415\n"
+"03090202.xhp\n"
+"par_id3149482\n"
+"21\n"
"help.text"
-msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
-msgstr "<variable id=\"err423\">423 Không tìm thấy thuộc tính hay phương pháp </variable>"
+msgid "statements"
+msgstr "câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469414\n"
+"03090202.xhp\n"
+"par_id3147124\n"
+"22\n"
"help.text"
-msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
-msgstr "<variable id=\"err460\">460 Định dạng bảng nháp không hợp lệ </variable>"
+msgid "If condition = True Then Exit For"
+msgstr "If condition = True Then Exit For"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469413\n"
+"03090202.xhp\n"
+"par_id3153159\n"
+"23\n"
"help.text"
-msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
-msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+msgid "statements"
+msgstr "câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469412\n"
+"03090202.xhp\n"
+"par_id3154096\n"
+"24\n"
"help.text"
-msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "Next"
+msgstr "Tiếp"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469411\n"
+"03090202.xhp\n"
+"par_id3156286\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
-msgstr "<variable id=\"err71\">71 Đĩa không sẵn sàng </variable>"
+msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
+msgstr "Ghi chú : trong vòng lặp lồng nhau kiểu <emph>For...Next</emph>, nếu bạn thoát khỏi một vòng lặp một cách không điều kiện dùng <emph>Exit For</emph>, chỉ thoát khỏi một vòng lặp."
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469410\n"
+"03090202.xhp\n"
+"hd_id3148457\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
-msgstr "<variable id=\"err424\">424 Cần thiết đối tượng </variable>"
+msgid "Example"
+msgstr "Ví dụ :"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150028\n"
-"79\n"
+"03090202.xhp\n"
+"par_id3151074\n"
+"27\n"
"help.text"
-msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
-msgstr "<variable id=\"err323\">323 Không thể nạp mô-đun </variable>"
+msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
+msgstr "Mẫu thí dụ theo đây dùng hai vòng lặp lồng nhau để sắp xếp một mảng chuỗi có 10 phần tử ( sEntry() ), đầu tiên được điền bằng các nội dung khác nhau :"
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148434\n"
-"80\n"
+"03090202.xhp\n"
+"par_id3155767\n"
+"42\n"
"help.text"
-msgid "<variable id=\"err341\">341 Invalid object index</variable>"
-msgstr "<variable id=\"err341\">341 Sai chỉ mục đối tượng</variable>"
+msgid "sEntry(0) = \"Jerry\""
+msgstr "sEntry(0) = \"Trường\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3143219\n"
-"81\n"
+"03090202.xhp\n"
+"par_id3153711\n"
+"33\n"
"help.text"
-msgid "<variable id=\"err366\">366 Object is not available</variable>"
-msgstr "<variable id=\"err68\">68 Thiết bị không sẵn sàng </variable>"
+msgid "sEntry(1) = \"Patty\""
+msgstr "sEntry(1) = \"Huyền\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3144744\n"
-"82\n"
+"03090202.xhp\n"
+"par_id3148993\n"
+"34\n"
"help.text"
-msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
-msgstr "<variable id=\"err380\">380 Giá trị thuộc tính sai </variable>"
+msgid "sEntry(2) = \"Kurt\""
+msgstr "sEntry(2) = \"Minh\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147420\n"
-"83\n"
+"03090202.xhp\n"
+"par_id3156382\n"
+"35\n"
"help.text"
-msgid "<variable id=\"err382\">382 This property is read-only</variable>"
-msgstr "<variable id=\"err382\">382 Thuộc tính là chỉ-đọc </variable>"
+msgid "sEntry(3) = \"Thomas\""
+msgstr "sEntry(3) = \"Sơn\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147472\n"
-"84\n"
+"03090202.xhp\n"
+"par_id3155174\n"
+"36\n"
"help.text"
-msgid "<variable id=\"err394\">394 This property is write-only</variable>"
-msgstr "<variable id=\"err394\">394 Thuộc tính là chỉ-ghi</variable>"
+msgid "sEntry(4) = \"Michael\""
+msgstr "sEntry(4) = \"Trung\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148583\n"
-"85\n"
+"03090202.xhp\n"
+"par_id3166448\n"
+"37\n"
"help.text"
-msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
-msgstr "<variable id=\"err420\">420 Sai tham chiếu đến đối tượng </variable>"
+msgid "sEntry(5) = \"David\""
+msgstr "sEntry(5) = \"Quý\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153329\n"
-"86\n"
+"03090202.xhp\n"
+"par_id3149255\n"
+"38\n"
"help.text"
-msgid "<variable id=\"err423\">423 Property or method not found</variable>"
-msgstr "<variable id=\"err423\">423 Không tìm thấy thuộc tính hay phương pháp </variable>"
+msgid "sEntry(6) = \"Cathy\""
+msgstr "sEntry(6) = \"Hương\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148738\n"
-"87\n"
+"03090202.xhp\n"
+"par_id3149565\n"
+"39\n"
"help.text"
-msgid "<variable id=\"err424\">424 Object required</variable>"
-msgstr "<variable id=\"err424\">424 Cần thiết đối tượng </variable>"
+msgid "sEntry(7) = \"Susie\""
+msgstr "sEntry(7) = \"Hoa\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159084\n"
-"88\n"
+"03090202.xhp\n"
+"par_id3145148\n"
+"40\n"
"help.text"
-msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
-msgstr "<variable id=\"err425\">425 Sai dùng đối tượng </variable>"
+msgid "sEntry(8) = \"Edward\""
+msgstr "sEntry(8) = \"Tuấn\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146806\n"
-"89\n"
+"03090202.xhp\n"
+"par_id3145229\n"
+"41\n"
"help.text"
-msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
-msgstr "<variable id=\"err440\">440 Lỗi tự động hoá OLE </variable>"
+msgid "sEntry(9) = \"Christine\""
+msgstr "sEntry(9) = \"Nguyệt\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146130\n"
-"90\n"
+"03090203.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
-msgstr "<variable id=\"err423\">423 Không tìm thấy thuộc tính hay phương pháp </variable>"
+msgid "While...Wend Statement[Runtime]"
+msgstr "Câu lệnh While...Wend [Runtime]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154374\n"
-"91\n"
+"03090203.xhp\n"
+"bm_id3150400\n"
"help.text"
-msgid "<variable id=\"err440\">440 OLE automation error</variable>"
-msgstr "<variable id=\"err440\">440 Lỗi tự động hoá OLE </variable>"
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
+msgstr "<bookmark_value>While;vòng lặp While...Wend</bookmark_value>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149685\n"
-"92\n"
+"03090203.xhp\n"
+"hd_id3150400\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
-msgstr "<variable id=\"err445\">445 Đối tượng không hỗ trợ hành động này </variable>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"Câu lệnh While...Wend [Runtime]\">Câu lệnh While...Wend [Runtime]</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150282\n"
-"93\n"
+"03090203.xhp\n"
+"par_id3151211\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
-msgstr "<variable id=\"err448\">448 Không tìm thấy đối số đặt tên </variable>"
+msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
+msgstr "Khi một chương trình gặp một câu lệnh <emph>While</emph> (trong khi), nó thử điều kiện. Điều kiện là Sai thì chương trình cứ trực tiếp theo câu lệnh <emph>Wend</emph> (Cuối W?). Điều kiện Đúng thì thực hiện vòng lặp đến khi chương trình tìm <emph>Wend</emph> rồi nhảy về câu lệnh <emph>While</emph>. Nếu điều kiện vẫn còn đúng, thì vòng lặp được thực hiện lần nữa."
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150142\n"
-"94\n"
+"03090203.xhp\n"
+"par_id3151041\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
-msgstr "<variable id=\"err445\">445 Đối tượng không hỗ trợ hành động này </variable>"
+msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgstr "Khác với câu lệnh <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> (làm...vòng lặp), bạn không thể hủy bỏ một vòng lặp <emph>While...Wend</emph> bằng <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> (thoát). Không bao giờ nên thoát khỏi một vòng lặp <emph>While...Wend</emph> dùng <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link> (đi tới), vì nó có thể gây ra lỗi lúc chạy."
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152771\n"
-"95\n"
+"03090203.xhp\n"
+"par_id3145172\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err448\">448 Named argument not found</variable>"
-msgstr "<variable id=\"err448\">448 Không tìm thấy đối số đặt tên </variable>"
+msgid "A Do...Loop is more flexible than a While...Wend."
+msgstr "Một câu lệnh kiểu <emph>Do...Loop</emph> ít chặt chẽ hơn câu lệnh <emph>While...Wend</emph>."
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145145\n"
-"96\n"
+"03090203.xhp\n"
+"hd_id3155133\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
-msgstr "<variable id=\"err449\">449 Đối số không phải tùy ý </variable>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154399\n"
-"97\n"
+"03090203.xhp\n"
+"par_id3147288\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err450\">450 Số đối số không đúng </variable>"
+msgid "While Condition [Statement] Wend"
+msgstr "Điều kiện While [Statement] Wend"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146137\n"
-"98\n"
+"03090203.xhp\n"
+"hd_id3153139\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err451\">451 Object is not a list</variable>"
-msgstr "<variable id=\"err451\">451 Đối tượng không phải là một bộ sưu tập</variable>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149507\n"
-"99\n"
+"03090203.xhp\n"
+"par_id3159153\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
-msgstr "<variable id=\"err452\">452 Cái thứ tự sai</variable>"
+msgid "Sub ExampleWhileWend"
+msgstr "Sub ExampleWhileWend"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154566\n"
-"100\n"
+"03090203.xhp\n"
+"par_id3151114\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
-msgstr "<variable id=\"err453\">453 Không tìm thấy hàm DLL đã ghi rõ </variable>"
+msgid "Dim stext As String"
+msgstr "Dim stext As String"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145595\n"
-"101\n"
+"03090203.xhp\n"
+"par_id3153143\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
-msgstr "<variable id=\"err460\">460 Định dạng bảng nháp không hợp lệ </variable>"
+msgid "Dim iRun As Integer"
+msgstr "Dim iRun As Integer"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455951\n"
+"03090203.xhp\n"
+"par_id3155306\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
-msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
+msgid "sText =\"This Is a short text\""
+msgstr "sText =\"Đây là một chuỗi văn bản ngắn.\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455952\n"
+"03090203.xhp\n"
+"par_id3154011\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err952\">952 Expected:</variable>"
-msgstr "<variable id=\"err424\">424 Cần thiết đối tượng </variable>"
+msgid "iRun = 1"
+msgstr "iRun = 1"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455953\n"
+"03090203.xhp\n"
+"par_id3147215\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err953\">953 Symbol expected</variable>"
-msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+msgid "While iRun < Len(sText)"
+msgstr "while iRun < Len(sText)"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455954\n"
+"03090203.xhp\n"
+"par_id3147427\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err954\">954 Variable expected</variable>"
-msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
+msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgstr "if Mid(sText,iRun,1 )<> \" \" then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455955\n"
+"03090203.xhp\n"
+"par_id3149665\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err955\">955 Label expected</variable>"
-msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+msgid "iRun = iRun + 1"
+msgstr "iRun = iRun + 1"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455956\n"
+"03090203.xhp\n"
+"par_id3152939\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
-msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+msgid "Wend"
+msgstr "Wend"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455957\n"
+"03090203.xhp\n"
+"par_id3153189\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err957\">957 Variable already defined</variable>"
-msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr "MsgBox sText,0,\"Văn bản đã mã hoá\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455958\n"
+"03090203.xhp\n"
+"par_id3145251\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
-msgstr "<variable id=\"err35\">35 Chưa xác định Thủ tục hoặc Hàm </variable>"
+msgid "End Sub"
+msgstr "End Sub"
-#: 00000003.xhp
-#, fuzzy
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455959\n"
+"03090300.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err959\">959 Label already defined</variable>"
-msgstr "<variable id=\"err55\">55 Tập tin đã mở </variable>"
+msgid "Jumps"
+msgstr "Nhảy"
-#: 00000003.xhp
-#, fuzzy
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455960\n"
+"03090300.xhp\n"
+"hd_id3151262\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err960\">960 Variable not found</variable>"
-msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Nhảy\">Nhảy</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455961\n"
+"03090300.xhp\n"
+"par_id3148983\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "The following statements execute jumps."
+msgstr "Theo đây có những câu lệnh thực hiện bước nhảy."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455962\n"
+"03090301.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err962\">962 Procedure not found</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "GoSub...Return Statement [Runtime]"
+msgstr "Câu lệnh GoSub...Return [Runtime]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455963\n"
+"03090301.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<variable id=\"err963\">963 Label undefined</variable>"
-msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh GoSub...Return</bookmark_value>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455964\n"
+"03090301.xhp\n"
+"hd_id3147242\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err964\">964 Unknown data type</variable>"
-msgstr "<variable id=\"err6\">6 Tràn </variable>"
+msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"Câu lệnh GoSub...Return [Runtime]\">Câu lệnh GoSub...Return [Runtime]</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455965\n"
+"03090301.xhp\n"
+"par_id3145316\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err965\">965 Exit expected</variable>"
-msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
+msgstr "Gọi một chương trình con được ngụ ý bởi một nhãn từ một chương trình con hay hàm khác. Những câu lệnh theo sau nhãn đó được thực hiện đến khi tới câu lệnh <emph>Return</emph> kế tiếp. Sau đó thì chương trình tiếp tục bằng cách chạy câu lệnh theo sau câu lệnh <emph>GoSub</emph>."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455966\n"
+"03090301.xhp\n"
+"hd_id3145609\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
-msgstr "<variable id=\"err62\">62 Nhập liệu qua kết thúc tập tin </variable>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455967\n"
+"03090301.xhp\n"
+"par_id3145069\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "see Parameters"
+msgstr "xem Tham số"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455968\n"
+"03090301.xhp\n"
+"hd_id3147265\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
-msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455969\n"
+"03090301.xhp\n"
+"par_id3148664\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "Sub/Function"
+msgstr "Con/Hàm"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455970\n"
+"03090301.xhp\n"
+"par_id3150400\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
-msgstr "<variable id=\"err93\">93 Chuỗi mẫu sai</variable>"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455971\n"
+"03090301.xhp\n"
+"par_id3154140\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
-msgstr "<variable id=\"err8\">8 Mảng đã đặt các chiều </variable>"
+msgid "Label"
+msgstr "Nhãn"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455972\n"
+"03090301.xhp\n"
+"par_id3150869\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
-msgstr "<variable id=\"err20\">20 Tiếp tục mà không có lỗi </variable>"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455973\n"
+"03090301.xhp\n"
+"par_id3154909\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr "<variable id=\"err5\">5 Sai gọi thủ tục</variable>"
+msgid "GoSub Label"
+msgstr "Nhãn GoSub"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455974\n"
+"03090301.xhp\n"
+"par_id3153969\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr "<variable id=\"err94\">94 Sai dùng Null (vô giá trị) </variable>"
+msgid "Exit Sub/Function"
+msgstr "Exit Sub/Function"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455975\n"
+"03090301.xhp\n"
+"par_id3154685\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
-msgstr "<variable id=\"err53\">53 Không tìm thấy tập tin </variable>"
+msgid "Label:"
+msgstr "Nhãn:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455976\n"
+"03090301.xhp\n"
+"par_id3145786\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err976\">976 Unknown option:</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455977\n"
+"03090301.xhp\n"
+"par_id3159252\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err977\">977 Constant redefined</variable>"
-msgstr "<variable id=\"err67\">67 Quá nhiều tập tin</variable>"
+msgid "Return"
+msgstr "Return"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455978\n"
+"03090301.xhp\n"
+"par_id3154321\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err978\">978 Program too large</variable>"
-msgstr "<variable id=\"err76\">76 Không tìm thấy đường dẫn </variable>"
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455979\n"
+"03090301.xhp\n"
+"par_id3147318\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
-msgstr "<variable id=\"err71\">71 Đĩa không sẵn sàng </variable>"
+msgid "The <emph>GoSub</emph> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
+msgstr "Câu lệnh <emph>GoSub</emph> gọi một chương trình con cục bộ được ngụ ý bởi một nhãn từ bên trong một chương trình con hay hàm khác. Tên của nhãn phải kết thúc với một dấu hai chấm « : »."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455980\n"
+"03090301.xhp\n"
+"par_id3153190\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
-msgstr "<variable id=\"err91\">91 Chưa đặt biến đối tượng </variable>"
+msgid "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
+msgstr "Nếu chương trình gặp một câu lệnh <emph>Return</emph> không có <emph>GoSub</emph> đi trước, $[officename] Basic sẽ trả về một thông điệp lỗi. Hãy dùng <emph>Exit Sub</emph> hay <emph>Exit Function</emph> để đảm bảo chương trình thoát khỏi một chương trình con hay hàm trước khi tới câu lệnh <emph>Return</emph> kế tiếp."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455981\n"
+"03090301.xhp\n"
+"par_id3145799\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
-msgstr "<variable id=\"err438\">438 Đối tượng không hỗ trợ phương pháp </variable>"
+msgid "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
+msgstr "Mẫu ví dụ theo đây minh hoạ sử dụng hai câu lệnh <emph>GoSub</emph> và <emph>Return</emph>. Bằng cách thực hiện một phần chương trình hai lần, chương trình tính căn bậc hai của hai số được người dùng nhập."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455982\n"
+"03090301.xhp\n"
+"hd_id3156284\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
-msgstr "<variable id=\"err10\">10 Khai báo bị trùng</variable>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455983\n"
+"03090301.xhp\n"
+"par_id3146970\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err450\">450 Số đối số không đúng </variable>"
+msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
+msgstr "iInputa = Int(InputBox$ \"Gõ số thứ nhất: \",\"NumberInput\"))"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455984\n"
+"03090301.xhp\n"
+"par_id3150329\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
-msgstr "<variable id=\"err48\">48 Gặp lỗi khi nạp DLL </variable>"
+msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+msgstr "iInputb = Int(InputBox$ \"Gõ số thứ hai: \",\"NumberInput\"))"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455985\n"
+"03090301.xhp\n"
+"par_id3154756\n"
+"29\n"
"help.text"
-msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
-msgstr "<variable id=\"err51\">51 Lỗi nội bộ </variable>"
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
+msgstr "Print \"Căn bậc hai của\";iInputa;\" là\";iInputc"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455986\n"
+"03090301.xhp\n"
+"par_id3147340\n"
+"32\n"
"help.text"
-msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
-msgstr "<variable id=\"err12\">12 Biến chưa được định nghĩa </variable>"
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
+msgstr "Print \"Căn bậc hai của\";iInputb;\" là\";iInputc"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
+"03090302.xhp\n"
"tit\n"
"help.text"
-msgid "Mid Function, Mid Statement [Runtime]"
-msgstr "Hàm Mid, Câu lệnh Mid [Runtime]"
+msgid "GoTo Statement [Runtime]"
+msgstr "Câu lệnh GoTo [Runtime]"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"bm_id3143268\n"
+"03090302.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
-msgstr "<bookmark_value>hàm Mid</bookmark_value><bookmark_value>câu lệnh Mid</bookmark_value>"
+msgid "<bookmark_value>GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh GoTo</bookmark_value>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3143268\n"
+"03090302.xhp\n"
+"hd_id3159413\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Hàm Mid, Câu lệnh Mid [Runtime]\">Hàm Mid, Câu lệnh Mid [Runtime]</link>"
+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=\"Câu lệnh GoTo [Runtime]\">Câu lệnh GoTo [Runtime]</link>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148473\n"
+"03090302.xhp\n"
+"par_id3153379\n"
"2\n"
"help.text"
-msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
-msgstr "Trả về phần đã ghi rõ của một biểu thức chuỗi (<emph>hàm Mid</emph>), hoặc thay thế phần của một biểu thức chuỗi bằng một chuỗi khác (<emph>câu lệnh Mid</emph>)."
+msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
+msgstr "Tiếp tục thực hiện chương trình bên trong một chương trình con hay hàm, ở dòng thủ tục được nhãn ngụ ý."
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
+"03090302.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3147530\n"
+"03090302.xhp\n"
+"par_id3154367\n"
"4\n"
"help.text"
-msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
-msgstr "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
+msgid "see Parameters"
+msgstr "xem Tham số"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
+"03090302.xhp\n"
+"hd_id3150870\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3149295\n"
+"03090302.xhp\n"
+"par_id3156214\n"
"6\n"
"help.text"
-msgid "String (only by Function)"
-msgstr "Chuỗi (chỉ theo Hàm)"
+msgid "Sub/Function"
+msgstr "Con/Hàm"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
+"03090302.xhp\n"
+"par_id3156424\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148664\n"
+"03090302.xhp\n"
+"par_id3154685\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to modify."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào cần sửa đổi."
+msgid "Label1"
+msgstr "Label1"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150359\n"
+"03090302.xhp\n"
+"par_id3145786\n"
"9\n"
"help.text"
-msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
-msgstr "<emph>Start:</emph> biểu thức thuộc số mà ngụ ý vị trí ký tự bên trong chuỗi ở đó bắt đầu phần chuỗi bạn muốn thay thế hay trả về. Giá trị tối đa được phép là 65535."
+msgid "<emph>Label2:</emph>"
+msgstr "<emph>Label2:</emph>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148451\n"
+"03090302.xhp\n"
+"par_id3161832\n"
"10\n"
"help.text"
-msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
-msgstr "<emph>Length:</emph> biểu thức thuộc số mà trả về số các ký tự cần thay thế hay trả về. Giá trị tối đa được phép là 65535."
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3125864\n"
+"03090302.xhp\n"
+"par_id3146120\n"
"11\n"
"help.text"
-msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
-msgstr "Nếu tham số Length (chiều dài) trong <emph>hàm Mid</emph> bị bỏ sót, thì trả về tất cả các ký tự trong biểu thức chuỗi, từ vị trí bắt đầu đến kết thúc của chuỗi."
+msgid "Exit Sub"
+msgstr "Exit Sub"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3144762\n"
+"03090302.xhp\n"
+"par_id3150010\n"
"12\n"
"help.text"
-msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
-msgstr "Nếu tham số Length (chiều dài) trong <emph>hàm Mid</emph> nhỏ hơn chiều dài của chuỗi văn bản cần thay thế, thì cắt ngắn chuỗi đó thành chiều dài đã ghi rõ."
+msgid "<emph>Label1:</emph>"
+msgstr "<emph>Label1:</emph>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150769\n"
+"03090302.xhp\n"
+"par_id3152462\n"
"13\n"
"help.text"
-msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
-msgstr "<emph>Text:</emph> chuỗi sẽ thay thế biểu thức chuỗi (<emph>câu lệnh Mid</emph>)."
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
+"03090302.xhp\n"
+"par_id3149664\n"
"14\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3153189\n"
-"18\n"
-"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Hãy nhập một ngày tháng theo định dạng quốc tế « NNăm-Th-Ng »)"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Year Function [Runtime]"
-msgstr "Hàm Năm [Runtime]"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"bm_id3148664\n"
-"help.text"
-msgid "<bookmark_value>Year function</bookmark_value>"
-msgstr "<bookmark_value>hàm Năm</bookmark_value>"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3148664\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Hàm Năm [Runtime]\">Hàm Năm [Runtime]</link>"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149655\n"
-"2\n"
-"help.text"
-msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "Trả về năm từ một số ngày dãy được tạo ra bởi hàm DateSerial hoặc DateValue."
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154125\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Year (Number)"
-msgstr "Year (Số)"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153970\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3150440\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "GoTo Label2"
+msgstr "GoTo Label2"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3163712\n"
-"8\n"
+"03090302.xhp\n"
+"par_id3152886\n"
+"15\n"
"help.text"
-msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
-msgstr "<emph>Số:</emph> biểu thức số nguyên mà chứa số ngày dãy được dùng để xác định năm."
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
+"03090302.xhp\n"
"par_id3152596\n"
-"9\n"
+"16\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 "Hàm này là mặt đối lập của hàm <emph>DateSerial</emph>, và trả về năm của một ngày tháng kiểu dãy. Ví dụ, biểu thức:"
+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 "Hãy dùng câu lệnh <emph>GoTo</emph> để báo $[officename] Basic tiếp tục thực hiện chương trình ở nơi khác bên trong thủ tục đó. Vị trí phải được một nhãn ngụ ý. Để đặt một nhãn, gán một tên, sau đó kết thúc bằng một dấu hai chấm « : »."
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3149483\n"
-"11\n"
+"03090302.xhp\n"
+"par_id3155416\n"
+"17\n"
"help.text"
-msgid "returns the value 1994."
-msgstr "trả về giá trị 1994."
+msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgstr "Không thể sử dụng câu lệnh <emph>GoTo</emph> để nhảy ra một chương trình con hay hàm."
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"hd_id3146985\n"
-"12\n"
+"03090302.xhp\n"
+"hd_id3154731\n"
+"19\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3153363\n"
-"14\n"
+"03090302.xhp\n"
+"par_id6967035\n"
"help.text"
-msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
-msgstr "MsgBox \"\" & Year(Now) ,64,\"Năm nay\""
+msgid "see Parameters"
+msgstr "xem Tham số"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
+"03090303.xhp\n"
"tit\n"
"help.text"
-msgid "Abs Function [Runtime]"
-msgstr "Hàm Abs [Runtime]"
+msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
+msgstr "Câu lệnh On...GoSub; câu lệnh On...GoTo [Runtime]"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"bm_id3159201\n"
+"03090303.xhp\n"
+"bm_id3153897\n"
"help.text"
-msgid "<bookmark_value>Abs function</bookmark_value>"
-msgstr "<bookmark_value>Hàm Abs</bookmark_value>"
+msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh On...GoSub</bookmark_value><bookmark_value>câu lệnh On...GoTo</bookmark_value>"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3159201\n"
+"03090303.xhp\n"
+"hd_id3153897\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Hàm Abs [Runtime]\">Hàm Abs [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"Câu lệnh On...GoSub; câu lệnh On...GoTo [Runtime]\">Câu lệnh On...GoSub; câu lệnh On...GoTo [Runtime]</link>"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3153394\n"
+"03090303.xhp\n"
+"par_id3150359\n"
"2\n"
"help.text"
-msgid "Returns the absolute value of a numeric expression."
-msgstr "Trả về giá trị tuyệt đối của một biểu thức thuộc số."
+msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgstr "Tách nhánh đến một của vài dòng mã chương trình đã ghi rõ, phụ thuộc vào giá trị của một biểu thức thuộc số nào đó."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3149233\n"
+"03090303.xhp\n"
+"hd_id3148798\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3147573\n"
+"03090303.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "Abs (Number)"
-msgstr "Abs (Số)"
+msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr "On N GoSub Label1[, Label2[, Label3[,...]]]"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3156152\n"
+"03090303.xhp\n"
+"par_id3150769\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
+"03090303.xhp\n"
+"hd_id3156215\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3154924\n"
+"03090303.xhp\n"
+"par_id3148673\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
+msgstr "<emph>NumExpression:</emph> bất cứ biểu thức thuộc số nào nằm giữa 0 và 255 mà xác định chương trình tách nhánh đến dòng mã nguồn nào. NumExpression là 0 thì không thực hiện câu lệnh. NumExpression lớn hơn 0 thì chương trình nhảy đến nhãn có vị trí tương ứng với biểu thức (1 = nhãn thứ nhất; 2 = nhãn thứ hai)."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3154347\n"
+"03090303.xhp\n"
+"par_id3153194\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
-msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào cho đó bạn muốn tính giá trị tuyệt đối. Mỗi số dương, gồm có 0, được trả về mà không thay đổi, còn mỗi số âm được chuyển đổi sang số dương."
+msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+msgstr "<emph>Nhãn:</emph> dòng đích tùy theo cấu trúc <emph> GoTo</emph> hay <emph>GoSub</emph>."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3153381\n"
+"03090303.xhp\n"
+"par_id3156442\n"
"9\n"
"help.text"
-msgid "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
-msgstr "Mẫu ví dụ theo đây dùng hàm Abs để tính hiệu số giữa hai giá trị. Thứ tự nhập giá trị không có tác động."
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgstr "Quy ước <emph>GoTo</emph> hay <emph>GoSub</emph> là hợp lệ."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3148451\n"
+"03090303.xhp\n"
+"hd_id3148645\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080601.xhp
-#, fuzzy
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3145786\n"
-"14\n"
+"03090303.xhp\n"
+"par_id3153948\n"
+"21\n"
"help.text"
-msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
-msgstr "siW1 = Int(InputBox$ (\"Hãy nhập số tiền thứ nhất\",\"Nhập giá trị\"))"
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
+msgstr "sVar =sVar & \" Từ Con 1 đến : Return"
-#: 03080601.xhp
-#, fuzzy
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3149561\n"
-"15\n"
+"03090303.xhp\n"
+"par_id3153708\n"
+"23\n"
"help.text"
-msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
-msgstr "siW2 = Int(InputBox$ (\"Hãy nhập số tiền thứ hai\",\"Nhập giá trị\"))"
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
+msgstr "sVar =sVar & \" Từ Con 2 đến\" : Return"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3145750\n"
-"16\n"
+"03090303.xhp\n"
+"par_id3150321\n"
+"25\n"
"help.text"
-msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
-msgstr "Print \"Hiệu là \"; Abs(siW1 - siW2)"
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
+msgstr "sVar =sVar & \" Nhãn 1\" : GoTo Ende"
-#: 03104000.xhp
+#: 03090303.xhp
msgctxt ""
-"03104000.xhp\n"
-"tit\n"
+"03090303.xhp\n"
+"par_id3155764\n"
+"27\n"
"help.text"
-msgid "IsMissing function [Runtime]"
-msgstr "Hàm IsMissing [Runtime]"
+msgid "sVar =sVar & \" Label 2\""
+msgstr "sVar =sVar & \" Nhãn 2\""
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"bm_id3153527\n"
+"03090400.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IsMissing function</bookmark_value>"
-msgstr "<bookmark_value>hàm IsMissing</bookmark_value>"
+msgid "Further Statements"
+msgstr "Câu lệnh bổ sung"
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3153527\n"
+"03090400.xhp\n"
+"hd_id3145316\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=\"Hàm IsMissing [Runtime]\">Hàm IsMissing [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Câu lệnh bổ sung\">Câu lệnh bổ sung</link>"
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3153825\n"
+"03090400.xhp\n"
+"par_id3154923\n"
"2\n"
"help.text"
-msgid "Tests if a function is called with an optional parameter."
-msgstr "Thử nếu một hàm được gọi với tham số còn tùy chọn không."
-
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3150669\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgid "Statements that do not belong to any of the other runtime categories are described here."
+msgstr "Các câu lệnh không thuộc về bất cứ phân loại lúc chạy nào thì được diễn tả ở đây."
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3145611\n"
-"4\n"
+"03090401.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Call Statement [Runtime]"
+msgstr "Câu lệnh Call [Runtime]"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3154924\n"
-"5\n"
+"03090401.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "IsMissing( ArgumentName )"
-msgstr "IsMissing( Tên_đối_số )"
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Call</bookmark_value>"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3145069\n"
-"6\n"
+"03090401.xhp\n"
+"hd_id3154422\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+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=\"Câu lệnh Call [Runtime]\">Câu lệnh Call [Runtime]</link>"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3149457\n"
-"7\n"
+"03090401.xhp\n"
+"par_id3153394\n"
+"2\n"
"help.text"
-msgid "<emph>ArgumentName:</emph> the name of an optional argument."
-msgstr "<emph>Tên_đối_số :</emph> tên của đối số còn tùy chọn."
+msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+msgstr "Truyền điều khiển của chương trình sang một chương trình con, một hàm hay một thủ tục DLL."
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3150398\n"
-"8\n"
+"03090401.xhp\n"
+"hd_id3153345\n"
+"3\n"
"help.text"
-msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
-msgstr "Nếu hàm <emph>IsMissing</emph> được Tên_đối_số gọi, thì trả về Đúng."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3148798\n"
-"9\n"
+"03090401.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Xem thêm <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ví dụ\">Ví dụ</link>."
+msgid "[Call] Name [Parameter]"
+msgstr "[Call] Tên [Tham_số]"
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"tit\n"
+"03090401.xhp\n"
+"hd_id3150771\n"
+"5\n"
"help.text"
-msgid "$[officename] Basic Help"
-msgstr "Trợ giúp $[officename] Basic"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3154232\n"
-"1\n"
+"03090401.xhp\n"
+"par_id3148473\n"
+"6\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=\"Trợ giúp $[officename] Basic\">Trợ giúp %PRODUCTNAME Basic</link>"
+msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
+msgstr "<emph>Tên:</emph> tên của chương trình con, hàm hay DLL bạn muốn gọi."
-#: main0601.xhp
-#, fuzzy
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3153894\n"
-"4\n"
+"03090401.xhp\n"
+"par_id3148946\n"
+"7\n"
"help.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
-msgstr "%PRODUCTNAME %PRODUCTVERSION cung cấp một giao diện lập trình ứng dụng (API) cho phép điều khiển các thành phần $[officename] theo các ngôn ngữ lập trình khác nhau bằng cách sử dụng bộ công cụ phát triển phần mềm (SDK) của $[officename]. Để tìm thêm thông tin về API và SDK của $[officename], hãy tới <link href=\"http://api.openoffice.org/\" name=\"http://api.openoffice.org\">http://api.openoffice.org</link>."
+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>Tham số :</emph> các tham số cần gửi cho thủ tục. Kiểu và số các tham số thì phụ thuộc vào thủ tục đang thực hiện."
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3147226\n"
-"10\n"
+"03090401.xhp\n"
+"par_id3154216\n"
+"8\n"
"help.text"
-msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
-msgstr ""
+msgid "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 "Một từ khoá vẫn tùy chọn khi bạn gọi một thủ tục. Nếu một hàm được thực hiện dưới dạng một biểu thức, thì các tham số phải nằm trong dấu ngoặc trong câu lệnh. Nếu một DLL được gọi, trước tiên nó phải được xác định trong <emph>Declare-Statement</emph> (câu lệnh khai báo)."
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3146957\n"
+"03090401.xhp\n"
+"hd_id3125865\n"
"9\n"
"help.text"
-msgid "Working with %PRODUCTNAME Basic"
-msgstr "Làm việc với %PRODUCTNAME Basic"
-
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "Trợ giúp về Trợ giúp"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
+"03090402.xhp\n"
"tit\n"
"help.text"
-msgid "Rem Statement [Runtime]"
-msgstr "Câu lệnh Rem [Runtime]"
+msgid "Choose Function [Runtime]"
+msgstr "Hàm Choose [Runtime]"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"bm_id3154347\n"
+"03090402.xhp\n"
+"bm_id3143271\n"
"help.text"
-msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Rem</bookmark_value><bookmark_value>ghi chú;câu lệnh Rem</bookmark_value>"
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr "<bookmark_value>hàm Choose</bookmark_value>"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3154347\n"
+"03090402.xhp\n"
+"hd_id3143271\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Câu Rem [Runtime]\">Câu lệnh Rem [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Hàm Choose [Runtime]\">Hàm Choose [Runtime]</link>"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3153525\n"
+"03090402.xhp\n"
+"par_id3149234\n"
"2\n"
"help.text"
-msgid "Specifies that a program line is a comment."
-msgstr "Ghi rõ rằng một dòng chương trình là một ghi chú."
+msgid "Returns a selected value from a list of arguments."
+msgstr "Trả về một giá trị đã chọn từ một danh sách các đối số."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3153360\n"
+"03090402.xhp\n"
+"hd_id3148943\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
+"03090402.xhp\n"
+"par_id3147560\n"
"4\n"
"help.text"
-msgid "Rem Text"
-msgstr "Rem Văn bản"
+msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgstr "Choose (Chỉ_số, Vùng_chọn1[, Vùng_chọn2, ... [, Vùng_chọn_n]])"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3151042\n"
+"03090402.xhp\n"
+"hd_id3154346\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3150869\n"
+"03090402.xhp\n"
+"par_id3148664\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any text that serves as a comment."
-msgstr "<emph>Văn bản:</emph> bất cứ chuỗi hay đoạn văn làm ghi chú."
+msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgstr "<emph>Chỉ_số:</emph> một biểu thức thuộc số mà ghi rõ giá trị cần trả về."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3147318\n"
+"03090402.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
-msgstr "Bạn có thể sử dụng dấu nháy đơn thay cho từ khoá Rem để ngụ ý rằng chuỗi trên một dòng làm ghi chú. Ký hiệu này có thể được chèn trực tiếp vào bên phải mã chương trình, sau đó ghi chú theo sau."
+msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+msgstr "<emph>Vùng_chọn1:</emph> bất cứ biểu thức nào chứa một của những sự chọn có thể."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id6187017\n"
+"03090402.xhp\n"
+"par_id3151043\n"
+"8\n"
"help.text"
-msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
-msgstr "Bạn có thể sử dụng một dấu cách rồi một dấu gạch dưới « _ » làm hai ký tự cuối cùng của một dòng, để tiếp tục lại dòng lôgic trên dòng kế tiếp. Để tiếp tục lại dòng ghi chú, bạn cần phải nhập « Option Compatible » (Tùy chọn Tương thích) vào cùng một mô-đun Basic."
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
+msgstr "Hàm <emph>Choose</emph> (chọn) trả về một giá trị từ danh sách các biểu thức, dựa vào giá trị chỉ số. Chỉ số = 1 thì hàm trả về biểu thức thứ nhất trong danh sách. Chỉ số = 2 thì hàm trả về biểu thức thứ hai, v.v."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3150012\n"
-"8\n"
+"03090402.xhp\n"
+"par_id3153192\n"
+"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+msgstr "Nếu giá trị chỉ số nhỏ hơn 1 hay lớn hơn số biểu thức được liệt kê, thì hàm trả về một giá trị Rỗng."
-#: 03090407.xhp
-#, fuzzy
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3153140\n"
-"13\n"
+"03090402.xhp\n"
+"par_id3156281\n"
+"10\n"
"help.text"
-msgid "' Nothing occurs here"
-msgstr "REM Không có gì xảy ra ở đây"
+msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+msgstr "Mẫu thí dụ theo đây sử dụng hàm <emph>Choose</emph> để chọn một chuỗi từ vài chuỗi tạo thành một trình đơn:"
-#: 03101140.xhp
+#: 03090402.xhp
msgctxt ""
-"03101140.xhp\n"
-"tit\n"
+"03090402.xhp\n"
+"hd_id3150439\n"
+"11\n"
"help.text"
-msgid "DefStr Statement [Runtime]"
-msgstr "Câu lệnh DefStr [Runtime]"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03101140.xhp
+#: 03090402.xhp
msgctxt ""
-"03101140.xhp\n"
-"bm_id6161381\n"
+"03090402.xhp\n"
+"par_id3156443\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>DefStr statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefStr</bookmark_value>"
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgstr "ChooseMenu = Choose(Chỉ số, \"Định dạng nhanh\", \"Định dạng lưu\", \"Định dạng hệ thống\")"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10577\n"
+"03090403.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Câu lệnh DefStr [Runtime]</link>"
+msgid "Declare Statement [Runtime]"
+msgstr "Câu lệnh Declare [Runtime]"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10587\n"
+"03090403.xhp\n"
+"bm_id3148473\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì câu lệnh <emph>DefStr</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+msgid "<bookmark_value>Declare statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Declare</bookmark_value>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1058A\n"
+"03090403.xhp\n"
+"hd_id3148473\n"
+"1\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Câu lệnh Declare [Runtime]\">Câu lệnh Declare [Runtime]</link>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1058E\n"
+"03090403.xhp\n"
+"bm_id3145316\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgstr "<bookmark_value>DLL (Thư viện Liên kết Động)</bookmark_value>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10591\n"
+"03090403.xhp\n"
+"par_id3145316\n"
+"2\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+msgstr "Khai báo và xác định một chương trình con trong một tập tin DLL mà bạn muốn thực hiện từ $[officename] Basic."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10595\n"
+"03090403.xhp\n"
+"par_id3146795\n"
+"3\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1059C\n"
+"03090403.xhp\n"
+"hd_id3156344\n"
+"4\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105A3\n"
+"03090403.xhp\n"
+"par_id3148664\n"
+"5\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr "Declare {Sub | Function} Name Lib \"Tên_thư_viện\" [Alias \"Tên_biệt_hiệu\"] [Parameter] [As Type]"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105AA\n"
+"03090403.xhp\n"
+"hd_id3153360\n"
+"6\n"
"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "<emph>DefStr:</emph> chuỗi"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105B1\n"
+"03090403.xhp\n"
+"par_id3154140\n"
+"8\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgstr "<emph>Tên:</emph> một tên khác với tên được xác định trong DLL, để gọi chương trình con từ $[officename] Basic."
-#: 03101140.xhp
-#, fuzzy
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105B5\n"
+"03090403.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tế cho các kiểu biến:"
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+msgstr "<emph>Tên_biệt_hiệu</emph> : tên của chương trình con như được xác định trong DLL."
-#: 03101140.xhp
-#, fuzzy
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105D3\n"
+"03090403.xhp\n"
+"par_id3154684\n"
+"10\n"
"help.text"
-msgid "sStr=String ' sStr is an implicit string variable"
-msgstr "sStr=String REM sStr là một biến chuỗi ngầm"
+msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
+msgstr "<emph>Tên_thư_viện:</emph> tên tập tin hay hệ thống của DLL. Thư viện này được tự động nạp lần đầu tiên dùng hàm này."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"tit\n"
+"03090403.xhp\n"
+"par_id3148452\n"
+"11\n"
"help.text"
-msgid "Logical Operators"
-msgstr "Toán tử Lôgic"
+msgid "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
+msgstr "<emph>Danh_sách_đối_số:</emph> danh sách các tham số đại diện đối số được gửi cho thủ tục khi nó được gọi. Kiểu và số tham số phụ thuộc vào thủ tục được thực hiện."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"hd_id3147559\n"
-"1\n"
+"03090403.xhp\n"
+"par_id3147289\n"
+"12\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=\"Toán tử Lôgic\">Toán tử Lôgic</link>"
+msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
+msgstr "<emph>Kiểu :</emph> xác định kiểu dữ liệu của giá trị được trả về bởi một thủ tục hàm. Bạn cũng có thể loại trừ hàm này nếu một ký tự khai báo kiểu được nhập phía sau tên."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3153379\n"
-"2\n"
+"03090403.xhp\n"
+"par_id3146922\n"
+"13\n"
"help.text"
-msgid "The following logical operators are supported by $[officename] Basic."
-msgstr "$[officename] Basic hỗ trợ những toán tử lôgic theo đây."
+msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
+msgstr "Để gửi một tham số cho một chương trình con dưới dạng một giá trị thay cho một tham chiếu, tham số phải được ngụ ý bởi từ khoá <emph>ByVal</emph>."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3154138\n"
-"3\n"
+"03090403.xhp\n"
+"hd_id3153951\n"
+"14\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 "Toán tử lôgic tổ hợp (theo vị trí bit) nội dung của hai biểu thức hay biến, ví dụ, để thử nếu một số bit cụ thể đã được đặt hay không."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
+"03090404.xhp\n"
"tit\n"
"help.text"
-msgid "GlobalScope [Runtime]"
-msgstr "Hàm GlobalScope [Runtime]"
+msgid "End Statement [Runtime]"
+msgstr "Câu lệnh End [Runtime]"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"bm_id3150682\n"
+"03090404.xhp\n"
+"bm_id3150771\n"
"help.text"
-msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
-msgstr "<bookmark_value>hàm GlobalScope</bookmark_value><bookmark_value>hệ thống thư viện</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh End</bookmark_value>"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3150682\n"
+"03090404.xhp\n"
+"hd_id3150771\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"Hàm GlobalScope [Runtime]\">Hàm GlobalScope [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"Câu lệnh End [Runtime]\">Câu lệnh End [Runtime]</link>"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3153345\n"
+"03090404.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Basic source code and dialogs are organized in a library system."
-msgstr "Cả mã nguồn và hộp thoại Basic đều được tổ chức theo một hệ thống thư viện."
+msgid "Ends a procedure or block."
+msgstr "Kết thúc một thủ tục hay khối."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3145315\n"
+"03090404.xhp\n"
+"hd_id3147264\n"
"3\n"
"help.text"
-msgid "The LibraryContainer contains libraries"
-msgstr "LibraryContainer (thì) chứa thư viện."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3149514\n"
+"03090404.xhp\n"
+"par_id3148552\n"
"4\n"
"help.text"
-msgid "Libraries can contain modules and dialogs"
-msgstr "Thư viện lần lượt có thể chứa mô-đun và hộp thoại."
+msgid "End, End Function, End If, End Select, End Sub"
+msgstr "End, End Function, End If, End Select, End Sub"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3143271\n"
+"03090404.xhp\n"
+"hd_id3149456\n"
"5\n"
"help.text"
-msgid "In Basic:"
-msgstr "Bằng mã Basic:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3153061\n"
+"03090404.xhp\n"
+"par_id3150398\n"
"6\n"
"help.text"
-msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
-msgstr "Đối tượng thư viện LibraryContainer được gọi như là <emph>BasicLibraries</emph>."
+msgid "Use the End statement as follows:"
+msgstr "Hãy sử dụng câu lệnh <emph>End</emph> như theo đây:"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3154346\n"
+"03090404.xhp\n"
+"hd_id3154366\n"
"7\n"
"help.text"
-msgid "In dialogs:"
-msgstr "Trong hộp thoại:"
+msgid "Statement"
+msgstr "Câu lệnh"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3148663\n"
+"03090404.xhp\n"
+"par_id3151043\n"
"8\n"
"help.text"
-msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
-msgstr "Đối tượng thư viện LibraryContainer được gọi như là <emph>DialogLibraries</emph>."
+msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+msgstr "End: không cần thiết, nhưng vẫn còn có thể được nhập vào bất cứ nơi nào bên trong một thủ tục để kết thúc thực hiện chương trình."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3150543\n"
+"03090404.xhp\n"
+"par_id3145171\n"
"9\n"
"help.text"
-msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
-msgstr "Cả hai đối tượng thư viện LibraryContainer tồn tại ở mức ứng dụng và bên trong mọi tài liệu. Trong mã Basic của tài liệu, các đối tượng thư viện của tài liệu đó được tự động dùng. Muốn gọi các đối tượng thư viện toàn cục từ bên trong một tài liệu, thì bạn cần phải sử dụng từ khoá <emph>GlobalScope</emph> (phạm vi toàn cục)."
+msgid "End Function: Ends a <emph>Function</emph> statement."
+msgstr "End Function: Kết thúc một câu lệnh <emph>Function</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3148920\n"
+"03090404.xhp\n"
+"par_id3153192\n"
"10\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr "End If: Đánh dấu kết thúc của một khối <emph>If...Then...Else</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3149203\n"
+"03090404.xhp\n"
+"par_id3148451\n"
"11\n"
"help.text"
-msgid "GlobalScope"
-msgstr "GlobalScope"
+msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
+msgstr "End Select: Đánh dấu kết thúc của một khối <emph>Select Case</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3154685\n"
+"03090404.xhp\n"
+"par_id3155131\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr "End Sub: Kết thúc một câu lệnh <emph>Sub</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3154124\n"
+"03090404.xhp\n"
+"hd_id3146120\n"
"13\n"
"help.text"
-msgid "Example in the document Basic"
-msgstr "Ví dụ trong mã Basic của tài liệu"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3158408\n"
-"14\n"
+"03090404.xhp\n"
+"par_id3152887\n"
+"19\n"
"help.text"
-msgid "' calling Dialog1 in the document library Standard"
-msgstr "' đang gọi hộp thoại Dialog1 trong thư viện tài liệu tiêu chuẩn Standard"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Đánh số từ 1 đến 5\""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3125865\n"
-"15\n"
+"03090404.xhp\n"
+"par_id3148618\n"
+"21\n"
"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Đánh số từ 6 đến 8\""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3154910\n"
-"16\n"
+"03090404.xhp\n"
+"par_id3147436\n"
+"23\n"
"help.text"
-msgid "' calling Dialog2 in the application library Library1"
-msgstr "' đang gọi hộp thoại Dialog2 trong thư viện ứng dụng Library1"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Lớn hơn 8\""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3156424\n"
-"17\n"
+"03090404.xhp\n"
+"par_id3150418\n"
+"25\n"
"help.text"
-msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Phạm vi bên ngoài 1 đến 10\""
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
+"03090405.xhp\n"
"tit\n"
"help.text"
-msgid "Now Function [Runtime]"
-msgstr "Hàm Now [Runtime]"
+msgid "FreeLibrary Function [Runtime]"
+msgstr "Hàm FreeLibrary [Runtime]"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"bm_id3149416\n"
+"03090405.xhp\n"
+"bm_id3143270\n"
"help.text"
-msgid "<bookmark_value>Now function</bookmark_value>"
-msgstr "<bookmark_value>hàm Now</bookmark_value>"
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr "<bookmark_value>hàm FreeLibrary</bookmark_value>"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3149416\n"
+"03090405.xhp\n"
+"hd_id3143270\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Hàm Now [Runtime]\">Hàm Now [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"Hàm FreeLibrary [Runtime]\">Hàm FreeLibrary [Runtime]</link>"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3149670\n"
+"03090405.xhp\n"
+"par_id3147559\n"
"2\n"
"help.text"
-msgid "Returns the current system date and time as a <emph>Date</emph> value."
-msgstr "Trả về ngày tháng hệ thống hiện thời dạng giá trị <emph>Ngày</emph>."
+msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+msgstr "Ngắt các DLL đã được nạp bằng câu lệnh Declare. Một DLL đã nhả được tự động nạp lại nếu một của các hàm của nó được gọi. Xem thêm: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3149456\n"
+"03090405.xhp\n"
+"hd_id3148550\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3149655\n"
+"03090405.xhp\n"
+"par_id3153361\n"
"4\n"
"help.text"
-msgid "Now"
-msgstr "Now"
+msgid "FreeLibrary (LibName As String)"
+msgstr "FreeLibrary (LibName As String)"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3154366\n"
+"03090405.xhp\n"
+"hd_id3153380\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3154909\n"
+"03090405.xhp\n"
+"par_id3154138\n"
"6\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+msgstr "<emph>Tên_thư_viện:</emph> biểu thức chuỗi mà ghi rõ tên của DLL."
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3147229\n"
+"03090405.xhp\n"
+"par_id3146923\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03030203.xhp
-#, fuzzy
-msgctxt ""
-"03030203.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"It is now \" & Now"
-msgstr "msgbox \"Bây giờ có \" & Now"
-
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Variables"
-msgstr "Biến"
-
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"hd_id3149669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
-msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Biến\">Biến</link>"
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+msgstr "FreeLibrary chỉ có thể nhả những DLL được nạp trong khi chạy Basic."
-#: 03100000.xhp
+#: 03090405.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3147265\n"
-"2\n"
+"03090405.xhp\n"
+"hd_id3153363\n"
+"8\n"
"help.text"
-msgid "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
-msgstr "Những câu lệnh và hàm theo đây thao tác biến. Bạn có thể sử dụng hàm như vậy để khai báo hay xác định biến, chuyển đổi biến từ kiểu này sang kiểu khác, hoặc quyết định kiểu biến."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
+"03090406.xhp\n"
"tit\n"
"help.text"
-msgid "Sin Function [Runtime]"
-msgstr "Hàm Sin [Runtime]"
+msgid "Function Statement [Runtime]"
+msgstr "Câu lệnh Function [Runtime]"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"bm_id3153896\n"
+"03090406.xhp\n"
+"bm_id3153346\n"
"help.text"
-msgid "<bookmark_value>Sin function</bookmark_value>"
-msgstr "<bookmark_value>hàm Sin</bookmark_value>"
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Function</bookmark_value>"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3153896\n"
+"03090406.xhp\n"
+"hd_id3153346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Hàm Sin [Runtime]\">Hàm Sin [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Câu lệnh Function [Runtime]\">Câu lệnh Function [Runtime]</link>"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149456\n"
+"03090406.xhp\n"
+"par_id3159158\n"
"2\n"
"help.text"
-msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
-msgstr "Trả về sin của một góc. Góc được ghi rõ theo độ. Kết quả nằm giữa -1 và +1."
+msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgstr "Xác định một chương trình con có thể được dùng làm biểu thức để quyết định một kiểu trả về."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3153379\n"
+"03090406.xhp\n"
+"hd_id3145316\n"
"3\n"
"help.text"
-msgid "Using the angle Alpha, the Sin Function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
-msgstr "Dùng góc Alpha, hàm Sin trả về tỷ lệ là chiều dài của cạnh đối với góc chia cho chiều dài của cạnh huyền, trong một hình tam giác vuông góc."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3148798\n"
+"03090406.xhp\n"
+"par_id3148944\n"
"4\n"
"help.text"
-msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
-msgstr "Sin(Alpha) = cạnh đối với góc/cạnh huyền"
+msgid "see Parameter"
+msgstr "xem Tham số"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3147230\n"
+"03090406.xhp\n"
+"hd_id3154760\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3154909\n"
+"03090406.xhp\n"
+"par_id3156344\n"
"6\n"
"help.text"
-msgid "Sin (Number)"
-msgstr "Sin (Số)"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3156214\n"
+"03090406.xhp\n"
+"par_id3149457\n"
"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgstr "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
+"03090406.xhp\n"
+"par_id3153360\n"
"8\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3155132\n"
+"03090406.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "[Exit Function]"
+msgstr "[Exit Function]"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3145786\n"
+"03090406.xhp\n"
+"par_id3145419\n"
"10\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
-msgstr "<emph>Số:</emph> biểu thức thuộc số mà xác định góc theo radian cho đó bạn muốn tính sin."
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3155413\n"
+"03090406.xhp\n"
+"par_id3150449\n"
"11\n"
"help.text"
-msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
-msgstr "Để chuyển đổi độ sang radian, nhân số độ với π/180 ; ngược lại, để chuyển đổi radian sang độ, nhân số radian với 180/π."
+msgid "End Function"
+msgstr "End Function"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149664\n"
+"03090406.xhp\n"
+"par_id3156281\n"
"12\n"
"help.text"
-msgid "grad=(radiant*180)/pi"
-msgstr "grad=(radiant*180)/π"
+msgid "Parameter"
+msgstr "Tham số"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3153143\n"
+"03090406.xhp\n"
+"par_id3153193\n"
"13\n"
"help.text"
-msgid "radiant=(grad*pi)/180"
-msgstr "radiant=(grad*π)/180"
+msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
+msgstr "<emph>Name:</emph> tên của chương trình nên chứa giá trị được hàm trả về."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3151112\n"
+"03090406.xhp\n"
+"par_id3147229\n"
"14\n"
"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "π xấp xỉ là 3.141593."
+msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
+msgstr "<emph>VarName:</emph> tham số cần gửi cho chương trình con."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3163712\n"
+"03090406.xhp\n"
+"par_id3147287\n"
"15\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Type:</emph> Type-declaration keyword."
+msgstr "<emph>Type:</emph> từ khoá khai báo kiểu."
-#: 03080103.xhp
-#, fuzzy
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149482\n"
+"03090406.xhp\n"
+"hd_id3163710\n"
"16\n"
"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr "REM Trong mẫu ví dụ này, mục nhập theo đây có thể tính được đối với một hình tam giác vuông góc:"
-
-#: 03080103.xhp
-#, fuzzy
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148577\n"
-"17\n"
-"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
-msgstr "REM Cạnh đối với góc và góc (theo độ) để tinh chiều dài của cạnh huyền:"
-
-#: 03080103.xhp
-#, fuzzy
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150011\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a predefined variable"
-msgstr "REM π = 3.1415926 là một biến đã xác định sẵn"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3145251\n"
-"22\n"
-"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
-msgstr "d1 = InputBox$ (\"Nhập chiều dài của cạnh đối: \",\"Cạnh đối\")"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148456\n"
-"23\n"
-"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-msgstr "dAlpha = InputBox$ (\"Nhập góc Alpha theo độ: \",\"Alpha\")"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3153877\n"
-"24\n"
-"help.text"
-msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
-msgstr "Print \"Chiều dài của cạnh huyền là\"; (d1 / sin (dAlpha * Pi / 180))"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"tit\n"
+"03090406.xhp\n"
+"par_id3152939\n"
+"21\n"
"help.text"
-msgid "Error-Handling Functions"
-msgstr "Hàm Quản Lý Lỗi"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr "For siStep = 0 to 10 REM Điền mảng bằng dữ liệu thử"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"hd_id3143271\n"
-"1\n"
+"03090406.xhp\n"
+"par_id3154943\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Hàm Quả lý Lỗi\">Hàm Quản lý Lỗi</link>"
+msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM Linsearch quét một TextArray:sList() tìm một TextEntry:"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"03090406.xhp\n"
+"par_id3155601\n"
+"33\n"
"help.text"
-msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
-msgstr "Hãy dùng những câu lệnh và hàm theo đây để xác định cách $[officename] Basic đáp ứng lỗi lúc chạy."
+msgid "' Return value Is the index of the entry Or 0 (Null)"
+msgstr "REM Giá trị trả về là chỉ số của mục nhập, hay 0 (Rỗng)"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3148946\n"
-"3\n"
+"03090406.xhp\n"
+"par_id3153707\n"
+"36\n"
"help.text"
-msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
-msgstr "$[officename] Basic cung câp vài phương pháp khác nhau để ngăn cản chương trình bị chấm dứt do lỗi lúc chạy."
+msgid "Exit For ' sItem found"
+msgstr "Exit for REM sItem tìm thấy"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
+"03090407.xhp\n"
"tit\n"
"help.text"
-msgid "Dim Statement [Runtime]"
-msgstr "Câu lệnh Dim [Runtime]"
+msgid "Rem Statement [Runtime]"
+msgstr "Câu lệnh Rem [Runtime]"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"bm_id3149812\n"
+"03090407.xhp\n"
+"bm_id3154347\n"
"help.text"
-msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Dim</bookmark_value><bookmark_value>mảng; đặt các chiều</bookmark_value><bookmark_value>đột các chiều của mảng</bookmark_value>"
+msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Rem</bookmark_value><bookmark_value>ghi chú;câu lệnh Rem</bookmark_value>"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3149812\n"
+"03090407.xhp\n"
+"hd_id3154347\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Câu lệnh Dim [Runtime]\">Câu lệnh Dim [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Câu Rem [Runtime]\">Câu lệnh Rem [Runtime]</link>"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3143271\n"
+"03090407.xhp\n"
+"par_id3153525\n"
"2\n"
"help.text"
-msgid "Declares a variable or an array."
-msgstr "Khai báo một biến hay mảng."
+msgid "Specifies that a program line is a comment."
+msgstr "Ghi rõ rằng một dòng chương trình là một ghi chú."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154686\n"
+"03090407.xhp\n"
+"hd_id3153360\n"
"3\n"
"help.text"
-msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
-msgstr "Nếu các biến phân cách bởi dấu phẩy (v.d. « DIM sPar1, sPar2, sPar3 AS STRING »), chỉ có thể xác định biến kiểu Biến thế. Hãy dùng một lời xác định riêng cho mỗi biến."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3152576\n"
-"7\n"
-"help.text"
-msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
-msgstr "Câu lệnh <emph>Dim</emph> khai báo biến cục bộ bên trong chương trình con. Biến toàn cục được khai báo dùng câu lệnh PUBLIC (công) hay PRIVATE (riêng)."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3156443\n"
-"8\n"
-"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149412\n"
-"9\n"
+"03090407.xhp\n"
+"par_id3154141\n"
+"4\n"
"help.text"
-msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
-msgstr "[ReDim]Dim Tên_biến [(đầu To cuối)] [As Kiểu_biến][, Tên_biến2 [(đầu To cuối)] [As Kiểu_biến][,...]]"
+msgid "Rem Text"
+msgstr "Rem Văn bản"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3147397\n"
-"10\n"
+"03090407.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154730\n"
-"11\n"
-"help.text"
-msgid "<emph>VarName:</emph> Any variable or array name."
-msgstr "<emph>Tên_biến:</emph> bất cứ tên nào của một biến hay mảng."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3147125\n"
-"12\n"
-"help.text"
-msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
-msgstr "<emph>đầu, cuối:</emph> giá trị thuộc số hay hằng số mà xác định số phần tử (NumberElements=(cuối-đầu)+1) và phạm vi chỉ số."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153877\n"
-"13\n"
-"help.text"
-msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
-msgstr "<emph>đầu</emph> và <emph>cuối</emph> có thể là biểu thức thuộc số nếu câu lệnh <emph>ReDim</emph> được áp dụng ở bậc thủ tục."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153510\n"
-"14\n"
-"help.text"
-msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
-msgstr "<emph>Kiểu_biến:</emph> từ khoá mà khai báo kiểu dữ liệu của một biến."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154015\n"
-"15\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Từ_khoá:</emph> kiểu biến"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153949\n"
-"16\n"
-"help.text"
-msgid "<emph>Bool:</emph> Boolean variable (True, False)"
-msgstr "<emph>Bool:</emph> biến lôgic (Đúng/Sai)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156275\n"
-"17\n"
-"help.text"
-msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
-msgstr "<emph>Tiền_tệ:</emph> biến tiền tệ (tiền tệ có 4 chữ số thập phân)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156057\n"
-"18\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Ngày:</emph> biến ngày"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148405\n"
-"19\n"
-"help.text"
-msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
-msgstr "<emph>Đôi:</emph> biến chấm động chính xác đôi (1,79769313486232 × 10E308 - 4,94065645841247 × 10E-324)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148916\n"
-"20\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "<emph>Số nguyên:</emph> biến số nguyên (-32768 - 32767)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3150045\n"
-"21\n"
-"help.text"
-msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
-msgstr "<emph>Dài:</emph> biến số nguyên dài (-2.147.483.648 - 2.147.483.647)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149255\n"
-"22\n"
-"help.text"
-msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
-msgstr "<emph>Đối tượng:</emph> biến đối tượng (ghi chú : biến này chỉ có thể được xác định về sau dùng « Set »)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3155937\n"
-"23\n"
-"help.text"
-msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
-msgstr "<emph>Đơn:</emph> biến chấm động chính xác đơn (3,402823 × 10E38 - 1,401298 × 10E-45)."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3151251\n"
-"24\n"
-"help.text"
-msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
-msgstr "<emph>Chuỗi:</emph> biến chuỗi chứa nhiều nhất 64.000 ASCII ký tự."
-
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154704\n"
-"25\n"
+"03090407.xhp\n"
+"par_id3150869\n"
+"6\n"
"help.text"
-msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
-msgstr "<emph>[Variant]:</emph> kiểu biến Biến thế (chứa tất cả các kiểu, được ghi rõ bởi lời xác định). Không ghi rõ từ khoá, thì biến được tự động xác định là Kiểu Biến Thế, nếu không dùng một câu lệnh từ <emph>DefBool</emph> tới <emph>DefVar</emph>."
+msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgstr "<emph>Văn bản:</emph> bất cứ chuỗi hay đoạn văn làm ghi chú."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3146316\n"
-"26\n"
+"03090407.xhp\n"
+"par_id3147318\n"
+"7\n"
"help.text"
-msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
-msgstr "Bằng mã $[officename] Basic, bạn không cần tuyến biến một cách dứt khoát. Tuy nhiên, bạn có phải cần phải khai báo một mảng trước khi sử dụng nó. Bạn có thể khai báo một biến dùng câu lệnh <emph>Dim</emph>, dùng dấu phẩy để phân cách nhiều lời khai báo. Để khai báo một kiểu biến, nhập một ký tự khai báo kiểu phía sau tên biến, hoặc dùng một từ khoá tương ứng."
+msgid "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
+msgstr "Bạn có thể sử dụng dấu nháy đơn thay cho từ khoá Rem để ngụ ý rằng chuỗi trên một dòng làm ghi chú. Ký hiệu này có thể được chèn trực tiếp vào bên phải mã chương trình, sau đó ghi chú theo sau."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149924\n"
-"27\n"
+"03090407.xhp\n"
+"par_id6187017\n"
"help.text"
-msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
-msgstr "$[officename] Basic hỗ trợ mảng một/nhiều chiều được xác định bởi một kiểu biến đã ghi rõ. Mảng thích hợp nếu chương trình chứa danh sách hay bảng bạn muốn chỉnh sửa. Lợi ích của mảng là có thể đặt địa chỉ của mỗi phần tử riêng tùy theo chỉ số, mà có thể được cấu tạo dạng biểu thức thuộc số hay biến."
+msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
+msgstr "Bạn có thể sử dụng một dấu cách rồi một dấu gạch dưới « _ » làm hai ký tự cuối cùng của một dòng, để tiếp tục lại dòng lôgic trên dòng kế tiếp. Để tiếp tục lại dòng ghi chú, bạn cần phải nhập « Option Compatible » (Tùy chọn Tương thích) vào cùng một mô-đun Basic."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3148488\n"
-"28\n"
+"03090407.xhp\n"
+"hd_id3150012\n"
+"8\n"
"help.text"
-msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
-msgstr "Mảng được khai báo dùng câu lệnh <emph>Dim</emph>. Có hai phương pháp xác định phạm vi chỉ số :"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154662\n"
-"29\n"
+"03090407.xhp\n"
+"par_id3153140\n"
+"13\n"
"help.text"
-msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
-msgstr "DIM text(20) as String REM 21 phần tử, đánh số từ 0 đến 20"
+msgid "' Nothing occurs here"
+msgstr "REM Không có gì xảy ra ở đây"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3155604\n"
-"30\n"
+"03090408.xhp\n"
+"tit\n"
"help.text"
-msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
-msgstr "DIM text(5 to 25) as String REM 21 phần tử, đánh số từ 5 đến 25"
+msgid "Stop Statement [Runtime]"
+msgstr "Câu lệnh Stop [Runtime]"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3151274\n"
-"31\n"
+"03090408.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
-msgstr "DIM text(-15 to 5) as String REM 21 phần tử (gồm có 0)"
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Stop</bookmark_value>"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3152774\n"
-"32\n"
+"03090408.xhp\n"
+"hd_id3153311\n"
+"1\n"
"help.text"
-msgid "REM numbered from -15 to 5"
-msgstr "REM đánh số từ -15 đến 5"
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Câu lệnh Stop [Runtime]\">Câu lệnh Stop [Runtime]</link>"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3150829\n"
-"33\n"
+"03090408.xhp\n"
+"par_id3154142\n"
+"2\n"
"help.text"
-msgid "Two-dimensional data field"
-msgstr "Trường dữ liệu chiều đôi"
+msgid "Stops the execution of the Basic program."
+msgstr "Dừng thực hiện chương trình Basic."
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149529\n"
-"34\n"
+"03090408.xhp\n"
+"hd_id3153126\n"
+"3\n"
"help.text"
-msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
-msgstr "DIM text(20,2) as String REM 63 phần tử; từ 0 đến 20 ở bậc 1, từ 0 đến 20 ở bậc 2 và từ 0 đến 20 ở bậc 3."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3159239\n"
-"35\n"
+"03090408.xhp\n"
+"par_id3156023\n"
+"4\n"
"help.text"
-msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
-msgstr "Bạn có thể khai báo một kiểu mảng là động nếu một câu lệnh <emph>ReDim</emph> xác định số chiều trong chương trình con hay hàm chứa mảng đó. Nói chung, bạn chỉ có thể xác định mỗi chiều mảng một lần, sau đó thì không thể sửa đổi. Bên trong một chương trình con, bạn có thể khai báo một mảng dùng <emph>ReDim</emph>. Chỉ có thể xác định chiều dùng biểu thức thuộc số. Trường hợp này đảm bảo các trường chỉ càng lớn càng cần thiết."
+msgid "Stop"
+msgstr "Stop"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3150344\n"
-"36\n"
+"03090408.xhp\n"
+"hd_id3156344\n"
+"5\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154657\n"
-"40\n"
-"help.text"
-msgid "sVar = \"Office\""
-msgstr "sVar = \"Office\""
-
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149036\n"
-"44\n"
-"help.text"
-msgid "' Two-dimensional data field"
-msgstr "Trường dữ liệu chiều đôi"
-
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153782\n"
-"46\n"
-"help.text"
-msgid "Const sDim As String = \" Dimension:\""
-msgstr "Const sDim as String = \" Dimension:\""
-
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
+"03090409.xhp\n"
"tit\n"
"help.text"
-msgid "FreeFile Function[Runtime]"
-msgstr "Hàm FreeFile [Runtime]"
+msgid "Sub Statement [Runtime]"
+msgstr "Câu lệnh Sub [Runtime]"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"bm_id3150400\n"
+"03090409.xhp\n"
+"bm_id3147226\n"
"help.text"
-msgid "<bookmark_value>FreeFile function</bookmark_value>"
-msgstr "<bookmark_value>hàm FreeFile</bookmark_value>"
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Sub</bookmark_value>"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3150400\n"
+"03090409.xhp\n"
+"hd_id3147226\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Hàm FreeFile [Runtime]\">Hàm FreeFile [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Câu lệnh Sub [Runtime]\">Câu lệnh Sub [Runtime]</link>"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3154366\n"
+"03090409.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
-msgstr "Trả về số thứ tự tập tin sẵn sàng kế tiếp để mở một tập tin. Dùng hàm này để mở một tập tin dùng một số thứ tự tập tin chưa được dùng bởi một tập tin đang mở."
+msgid "Defines a subroutine."
+msgstr "Xác định một chương trình con."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
+"03090409.xhp\n"
+"hd_id3149416\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
+"03090409.xhp\n"
+"par_id3147530\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "statement block"
+msgstr "khối câu lệnh"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3150440\n"
-"6\n"
+"03090409.xhp\n"
+"hd_id3153525\n"
+"9\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"7\n"
+"03090409.xhp\n"
+"par_id3150792\n"
+"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Name:</emph> Name of the subroutine ."
+msgstr "<emph>Name:</emph> tên của chương trình con."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3155854\n"
-"8\n"
+"03090409.xhp\n"
+"par_id3154138\n"
+"11\n"
"help.text"
-msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
-msgstr "Hàm này chỉ có thể được dùng ngay lập tức phía trước một câu lệnh « Open » (Mở). FreeFile trả về số thứ tự tập tin sẵn sàng kế tiếp, nhưng không phải dành riêng nó."
+msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
+msgstr "<emph>VarName:</emph> tham số cần gửi cho chương trình con."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"9\n"
+"03090409.xhp\n"
+"par_id3154908\n"
+"12\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Type:</emph> Type-declaration key word."
+msgstr "<emph>Type:</emph> từ khoá khai báo kiểu."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"18\n"
+"03090409.xhp\n"
+"hd_id3153770\n"
+"16\n"
"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"19\n"
+"03090409.xhp\n"
+"par_idN1063F\n"
"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
+msgid "' some statements"
+msgstr "REM một số câu lệnh"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
+"03090410.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertToURL Function [Runtime]"
-msgstr "Hàm ConvertToURL [Runtime]"
+msgid "Switch Function [Runtime]"
+msgstr "Hàm Switch [Runtime]"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"bm_id3152801\n"
+"03090410.xhp\n"
+"bm_id3148554\n"
"help.text"
-msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
-msgstr "<bookmark_value>hàm ConvertToURL</bookmark_value>"
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr "<bookmark_value>hàm Switch</bookmark_value>"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3152801\n"
+"03090410.xhp\n"
+"hd_id3148554\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"Hàm ConvertToURL [Runtime]\">Hàm ConvertToURL [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Hàm Switch [Runtime]\">Hàm Switch [Runtime]</link>"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3148538\n"
+"03090410.xhp\n"
+"par_id3148522\n"
"2\n"
"help.text"
-msgid "Converts a system file name to a file URL."
-msgstr "Chuyển đổi một tên tập tin hệ thống sang một địa chỉ URL kiểu tập tin."
+msgid "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
+msgstr "Ước tính danh sách các đối số, mỗi đồ là một biểu thức với một giá trị theo sau. Hàm Switch trả về một giá trị liên quan đến biểu thức được hàm này gửi."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
+"03090410.xhp\n"
+"hd_id3154863\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3154285\n"
+"03090410.xhp\n"
+"par_id3155934\n"
"4\n"
"help.text"
-msgid "ConvertToURL(filename)"
-msgstr "ConvertToURL(tên_tập_tin)"
+msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+msgstr "Switch (Biểu_thức1, Giá_trị1[, Biểu_thức2, Giá_trị2[..., Biểu_thức_n, Giá_trị_n]])"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3150984\n"
+"03090410.xhp\n"
+"hd_id3149119\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
+"03090410.xhp\n"
+"par_id3153894\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
+msgstr "Hàm <emph>Switch</emph> ước tính những biểu thức từ trái sang phải, sau đó trả về giá trị được gán cho biểu thức hàm. Không đưa ra biểu thức và giá trị làm cặp thì gặp một lỗi lúc chạy."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
+"03090410.xhp\n"
+"par_id3153990\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr "<emph>Biểu thức:</emph> biểu thức cần ước tính."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3148947\n"
+"03090410.xhp\n"
+"par_id3153394\n"
"8\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as string."
-msgstr "<emph>Tên_tập_tin:</emph> một tên tập tin dạng chuỗi."
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
+msgstr "<emph>Giá trị:</emph> giá trị nên trả về nếu biểu thức là Đúng."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
+"03090410.xhp\n"
+"par_id3153346\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+msgstr "Trong mẫu thí dụ theo đây, hàm <emph>Switch</emph> gán giới tính thích hợp cho tên được gửi cho hàm:"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
+"03090410.xhp\n"
+"hd_id3159157\n"
"10\n"
"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154365\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "url$ = ConvertToURL( systemFile$ )"
-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "print url$"
-msgstr "print url$"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3154909\n"
+"03090410.xhp\n"
+"par_id3149579\n"
"13\n"
"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
+msgid "sGender = GetGenderIndex( \"John\" )"
+msgstr "sGender = GetGenderIndex( \"Tuấn\" )"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3144762\n"
-"14\n"
+"03090410.xhp\n"
+"par_id3153361\n"
+"18\n"
"help.text"
-msgid "print systemFileAgain$"
-msgstr "print systemFileAgain$"
+msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgstr "GetGenderIndex = Switch(sName = \"Nguyệt\", \"nữ\", sName = \"Tuấn\", \"nam\")"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
+"03090411.xhp\n"
"tit\n"
"help.text"
-msgid "Set Statement[Runtime]"
-msgstr "Câu lệnh Set [Runtime]"
+msgid "With Statement [Runtime]"
+msgstr "Câu lệnh With [Runtime]"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"bm_id3154422\n"
+"03090411.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Set</bookmark_value><bookmark_value>đối tượng Nothing</bookmark_value>"
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh With</bookmark_value>"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3154422\n"
+"03090411.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Câu lệnh Set [Runtime]\">Câu lệnh Set [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Câu lệnh With [Runtime]\">Câu lệnh With [Runtime]</link>"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3159149\n"
+"03090411.xhp\n"
+"par_id3159158\n"
"2\n"
"help.text"
-msgid "Sets an object reference on a variable or a Property."
-msgstr "Đặt một tham chiếu đối tượng vào một biến hay Thuộc tính."
+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 "Đặt một đối tượng nào đó thành đối tượng mặc định. Nếu không khai báo một tên đối tượng khác, tất cả các thuộc tính và phương pháp đều tham chiếu đến đối tượng mặc định đến khi tới câu lệnh <emph>End With</emph>."
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3153105\n"
+"03090411.xhp\n"
+"hd_id3156153\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3154217\n"
+"03090411.xhp\n"
+"par_id3145609\n"
"4\n"
"help.text"
-msgid "Set ObjectVar = Object"
-msgstr "Set ObjectVar = Object"
+msgid "With Object Statement block End With"
+msgstr "With Object Statement block End With"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3154685\n"
+"03090411.xhp\n"
+"hd_id3154924\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3156281\n"
+"03090411.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
-msgstr "<emph>ObjectVar:</emph> một biến hay thuộc tính mà cần thiết một tham chiếu đối tượng."
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3159252\n"
-"7\n"
-"help.text"
-msgid "<emph>Object:</emph> Object that the variable or the property refers to."
-msgstr "<emph>Object:</emph> đối tượng đến đó biến hay thuộc tính tham chiếu."
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
-msgstr "<emph>Nothing</emph> : gán đối tượng <emph>Nothing</emph> (không gì) cho một biến để gỡ bỏ một sự gán trước."
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3159153\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgstr "Dùng <emph>With</emph> và <emph>End With</emph> nếu bạn có vài thuộc tính hay phương pháp cho một đối tượng riêng lẻ."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
+"03090412.xhp\n"
"tit\n"
"help.text"
-msgid "DefDate Statement [Runtime]"
-msgstr "Câu lệnh DefDate [Runtime]"
+msgid "Exit Statement [Runtime]"
+msgstr "Câu lệnh Exit [Runtime]"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"bm_id3150504\n"
+"03090412.xhp\n"
+"bm_id3152924\n"
"help.text"
-msgid "<bookmark_value>DefDate statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefDate</bookmark_value>"
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Exit</bookmark_value>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3150504\n"
+"03090412.xhp\n"
+"hd_id3152924\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"Câu lệnh DefDate [Runtime]\">Câu lệnh DefDate [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Câu lệnh Exit [Runtime]\">Câu lệnh Exit [Runtime]</link>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3145069\n"
+"03090412.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì câu lệnh <emph>DefDate</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+msgstr "Thoát khỏi một câu lệnh <emph>Do...Loop</emph> hay <emph>For...Next</emph>, một hàm hay một chương trình con."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3154758\n"
+"03090412.xhp\n"
+"hd_id3149763\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3148664\n"
+"03090412.xhp\n"
+"par_id3159157\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "see Parameters"
+msgstr "xem Tham số"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3150541\n"
+"03090412.xhp\n"
+"hd_id3148943\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03101300.xhp
-#, fuzzy
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3156709\n"
+"03090412.xhp\n"
+"par_id3154760\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+msgid "<emph>Exit Do</emph>"
+msgstr "<emph>Exit Do</emph>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3150869\n"
+"03090412.xhp\n"
+"par_id3147559\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
+msgstr "Chỉ hợp lệ bên trong một câu lệnh <emph>Do...Loop</emph> để thoát khỏi vòng lặp. Tiếp tục thực hiện chương trình với câu lệnh theo sau câu lệnh vòng lặp. Nếu các câu lệnh <emph>Do...Loop</emph> lồng nhau, điều khiển được truyền sang vòng lặp ở bậc trên theo một."
-#: 03101300.xhp
-#, fuzzy
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3145171\n"
+"03090412.xhp\n"
+"par_id3150398\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
+msgid "<emph>Exit For</emph>"
+msgstr "<emph>Exit For</emph>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3150767\n"
+"03090412.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "<emph>DefDate:</emph> Date"
-msgstr "<emph>DefDate:</emph> ngày"
+msgid "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
+msgstr "Chỉ hợp lệ bên trong một câu lệnh <emph>For...Next</emph> để thoát khỏi vòng lặp. Tiếp tục thực hiện chương trình với câu lệnh theo sau câu lệnh <emph>Next</emph>. Trong các câu lệnh lồng nhau, đối tượng được truyền sang vòng lặp ở bậc trên theo một."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3153768\n"
+"03090412.xhp\n"
+"par_id3147229\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145785\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tế cho các kiểu biến:"
-
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"par_id3152462\n"
-"22\n"
-"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
-msgstr "tDate=Date REM tDate là một biến ngày tháng ngầm"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Libraries, Modules and Dialogs"
-msgstr "Thư viện, Mô-đun và Hộp thoại"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3147317\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
-msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Thư viện, Mô-đun và Hộp thoại\">Thư viện, Mô-đun và Hộp thoại</link>"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3147427\n"
-"2\n"
-"help.text"
-msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
-msgstr "Theo đây có mô tả về cách sử dụng cơ bản các thư viện, mô-đun và hộp thoại trong $[officename] Basic."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3146120\n"
-"3\n"
-"help.text"
-msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
-msgstr "$[officename] Basic cung cấp các công cụ để giúp bạn tạo cấu trúc của dự án. Nó hỗ trợ một số « đơn vị » khác nhau mà cho bạn có khả năng nhóm lại các hàm và trình con riêng trong cùng dự án."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3148575\n"
-"5\n"
-"help.text"
-msgid "Libraries"
-msgstr "Thư viện"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3150011\n"
-"6\n"
-"help.text"
-msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
-msgstr "Thư viện là một công cụ để tổ chức các mô-đun, và có thể được đính kèm hoặc một tài liệu hoặc một mẫu. Khi tài liệu hoặc mẫu được lưu, tất cả các mô-đun nằm trong thư viện đó cũng được tự động lưu."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3151112\n"
-"7\n"
-"help.text"
-msgid "A library can contain up to 16,000 modules."
-msgstr "Một thư viện có thể chứa đến 16 000 mô-đun."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3149262\n"
-"8\n"
-"help.text"
-msgid "Modules"
-msgstr "Mô-đun"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3156441\n"
-"9\n"
-"help.text"
-msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
-msgstr "Một mô-đun chứa các trình con và hàm, cũng như các lời khai báo biến. Chiều dài của chương trình có thể được lưu vào mô-đun không thể vượt quá 64 KB. Cần thiết nhiều sức chứa hơn thì cũng có thể chia một dự án $[officename] Basic ra vài mô-đun khác nhau, sau đó lưu chúng vào cùng một thư viện."
+msgid "<emph>Exit Function</emph>"
+msgstr "<emph>Exit Function</emph>"
-#: 01020500.xhp
+#: 03090412.xhp
msgctxt ""
-"01020500.xhp\n"
-"hd_id3152577\n"
+"03090412.xhp\n"
+"par_id3154685\n"
"11\n"
"help.text"
-msgid "Dialog Modules"
-msgstr "Mô-đun Hộp thoại"
+msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
+msgstr "Thoát khỏi thủ tục <emph>Function</emph> ngay lập tức. Tiếp tục thực hiện chương trình với câu lệnh theo sau cuộc gọi hàm <emph>Function</emph>."
-#: 01020500.xhp
+#: 03090412.xhp
msgctxt ""
-"01020500.xhp\n"
-"par_id3149377\n"
+"03090412.xhp\n"
+"par_id3155132\n"
"12\n"
"help.text"
-msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
-msgstr "Mô-đun hộp thoại chứa các lời xác định hộp thoại, gồm có các thuộc tính về hộp là hộp thoại, các thuộc tính về mỗi phần tử của hộp thoại, và các sự kiện được gán. Vì một mô-đun chỉ có khả năng tạo một hộp thoại riêng lẻ, nó thường đơn giản được gọi là \"hộp thoại\"."
-
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time Functions"
-msgstr "Hàm Ngày và Giờ"
-
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Hàm Ngày và Giờ\">Hàm Ngày và Giờ</link>"
+msgid "<emph>Exit Sub</emph>"
+msgstr "<emph>Exit Sub</emph>"
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3153255\n"
-"2\n"
+"03090412.xhp\n"
+"par_id3149561\n"
+"13\n"
"help.text"
-msgid "Use the statements and functions described here to perform date and time calculations."
-msgstr "Hãy dùng các câu lệnh và hàm được diễn tả ở đây để thực hiện phép tính kiểu ngày tháng và thời gian."
+msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
+msgstr "Thoát khỏi chương trình con ngay lập tức. Tiếp tục thực hiện chương trình với câu lệnh theo sau cuộc gọi <emph>Sub</emph>."
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3152363\n"
-"3\n"
+"03090412.xhp\n"
+"par_id3153143\n"
+"14\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> Basic cho phép bạn tính hiệu của hai ngày tháng hoặc hai thời gian, bằng cách chuyển đổi các giá trị ngày và giờ sang giá trị thuộc số liên tục. Một khi tính hiệu thì hàm đặc biệt sẽ chuyển đổi giá trị về định dạng ngày/giờ tiêu chuẩn."
+msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
+msgstr "Câu lệnh <emph>Exit</emph> không xác định kết thúc của một cấu trúc, và không nên bị nhầm lẫn sang câu lệnh <emph>End</emph>."
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3151054\n"
-"4\n"
+"03090412.xhp\n"
+"hd_id3147348\n"
+"15\n"
"help.text"
-msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
-msgstr "Bạn có thể kết hợp các giá trị ngày/giờ để làm cùng một số thập phân động. Ngày được chuyển đổi sang số nguyên, và giờ sang giá trị thập phân. <item type=\"productname\">%PRODUCTNAME</item> Basic cũng hỗ trợ biến kiểu Date (Ngày) mà có thể chứa một đặc tả thời gian chứa cả hai ngày và giờ."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"tit\n"
+"03090412.xhp\n"
+"par_id3153158\n"
+"20\n"
"help.text"
-msgid "Controlling Program Execution"
-msgstr "Điều khiển sự thực hiện chương trình"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr "For siStep = 0 to 10 REM Điền mảng bằng dữ liệu thử"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"03090412.xhp\n"
+"par_id3153764\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
-msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Chuyển đổi sự thực hiện chương trình\">Chuyển đổi sự thực hiện chương trình</link>"
+msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM LinSearch quét một danh sách TextArray:sList() tìm một mục nhập TextEntry:"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3143268\n"
-"2\n"
+"03090412.xhp\n"
+"par_id3148995\n"
+"32\n"
"help.text"
-msgid "The following statements control the execution of a program."
-msgstr "Theo đây có những câu lệnh điều khiển sự thực hiện chương trình."
+msgid "' Returns the index of the entry or 0 (Null)"
+msgstr "REM Trả về chỉ số của mục nhập, hay 0 (Rỗng)"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3156152\n"
-"3\n"
+"03090412.xhp\n"
+"par_id3149567\n"
+"35\n"
"help.text"
-msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
-msgstr "Một chương trình thường thực hiện từ dong mã đầu đến dòng mã cuối. Bạn cũng có thể thực hiện một số hàm riêng bên trong chương trình, tùy theo một số điều kiện nào đó, hoặc chạy lại một phần của chương trình bên trong một hàm phụ. Bạn có thể dùng vòng lặp để lặp lại phần của chương trình càng nhiều lần càng cần thiết, hoặc đến khi thoả một điều kiện nào đó. Câu lệnh điều khiển kiểu này được phân loại là câu lệnh kiểu Điều kiện, Vòng lặp hay Nhảy."
+msgid "Exit For ' sItem found"
+msgstr "Exit for REM sItem tìm thấy"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
+"03100000.xhp\n"
"tit\n"
"help.text"
-msgid "Numeric Functions"
-msgstr "Hàm thuộc số"
+msgid "Variables"
+msgstr "Biến"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
-"hd_id3153127\n"
+"03100000.xhp\n"
+"hd_id3149669\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Hàm thuộc số\">Hàm thuộc số</link>"
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Biến\">Biến</link>"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3148550\n"
+"03100000.xhp\n"
+"par_id3147265\n"
"2\n"
"help.text"
-msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
-msgstr "Những hàm thuộc số theo đây đều làm phép tính. Các toán tử kiểu toán học và lôgic đều được diễn tả trong một phần khác. Hàm khác với toán tử, vì hàm nhận đối số và trả về kết quả, còn toán tử trả về kết quả bằng cách kết hợp hai biểu thức thuộc số."
+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 "Những câu lệnh và hàm theo đây thao tác biến. Bạn có thể sử dụng hàm như vậy để khai báo hay xác định biến, chuyển đổi biến từ kiểu này sang kiểu khác, hoặc quyết định kiểu biến."
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
+"03100050.xhp\n"
"tit\n"
"help.text"
-msgid "UCase Function [Runtime]"
-msgstr "Hàm UCase [Runtime]"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>UCase function</bookmark_value>"
-msgstr "<bookmark_value>hàm UCase</bookmark_value>"
+msgid "CCur Function [Runtime]"
+msgstr "Hàm CCur [Runtime]"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"hd_id3153527\n"
-"1\n"
+"03100050.xhp\n"
+"bm_id8926053\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"Hàm UCase [Runtime]\">Hàm UCase [Runtime]</link>"
+msgid "<bookmark_value>CCur function</bookmark_value>"
+msgstr "<bookmark_value>hàm CCur</bookmark_value>"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3155420\n"
-"2\n"
+"03100050.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "Converts lowercase characters in a string to uppercase."
-msgstr "Chuyển đổi các chữ thường trong một chuỗi sang chữ hoa."
+msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Hàm CCur [Runtime]</link>"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3150771\n"
-"3\n"
+"03100050.xhp\n"
+"par_idN10545\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"Hàm LCase\">Hàm LCase</link>"
+msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+msgstr "Chuyển đổi một biểu thức kiểu chuỗi hay thuộc số sang một biểu thức kiểu tiền tệ. Thiết lập miền địa phương được dùng để đặt dấu thập phân và ký hiệu tiền tệ."
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3149233\n"
-"4\n"
+"03100050.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<emph>Syntax</emph>:"
-msgstr "<emph>Cú pháp</emph>:"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3153061\n"
-"5\n"
+"03100050.xhp\n"
+"par_idN105E8\n"
"help.text"
-msgid "UCase (Text As String)"
-msgstr "UCase (Text As String)"
+msgid "CCur(Expression)"
+msgstr "Ccur(Biểu_thức)"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03100050.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<emph>Return value</emph>:"
-msgstr "<emph>Giá trị trả về</emph>:"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"7\n"
+"03100050.xhp\n"
+"par_idN105EF\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Currency"
+msgstr "Tiền tệ"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"hd_id3149457\n"
-"8\n"
+"03100050.xhp\n"
+"par_idN105F2\n"
"help.text"
-msgid "Parameters:"
+msgid "Parameter:"
msgstr "Tham số :"
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3150791\n"
-"9\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào cần chuyển đổi."
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3154125\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03120310.xhp
-#, fuzzy
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149204\n"
-"14\n"
-"help.text"
-msgid "Print LCase(sVar) ' returns \"las vegas\""
-msgstr "Print LCase(sVar) REM trả về \"las vegas\""
-
-#: 03120310.xhp
-#, fuzzy
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3156280\n"
-"15\n"
+"03100050.xhp\n"
+"par_idN105F6\n"
"help.text"
-msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) REM trả về \"LAS VEGAS\""
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Biểu_thức: bất cứ biểu thức kiểu chuỗi hay thuộc số cần chuyển đổi."
#: 03100060.xhp
msgctxt ""
@@ -20687,7 +23872,7 @@ msgctxt ""
"par_idN105ED\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
#: 03100060.xhp
msgctxt ""
@@ -20713,1004 +23898,873 @@ msgctxt ""
msgid "Expression: Any string or numeric expression that you want to convert."
msgstr "Biểu_thức: bất cứ biểu thức kiểu chuỗi hay thuộc số cần chuyển đổi."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
+"03100070.xhp\n"
"tit\n"
"help.text"
-msgid "Event-Driven Macros"
-msgstr "Vĩ lệnh điều khiển bởi sự kiện"
+msgid "CVar Function [Runtime]"
+msgstr "Hàm CVar [Runtime]"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"bm_id3154581\n"
+"03100070.xhp\n"
+"bm_id2338633\n"
"help.text"
-msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
-msgstr "<bookmark_value>xoá;gán vĩ lệnh cho sự kiện</bookmark_value><bookmark_value>vĩ lệnh;gán cho sự kiện</bookmark_value><bookmark_value>gán vĩ lệnh cho sự kiện</bookmark_value><bookmark_value>sự kiện;gán vĩ lệnh</bookmark_value>"
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr "<bookmark_value>hàm CVar</bookmark_value>"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3147348\n"
-"1\n"
+"03100070.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
-msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Vĩ lệnh điều khiển bởi sự kiện\">Vĩ lệnh điều khiển bởi sự kiện </link>"
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Hàm CVar [Runtime]</link>"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146120\n"
-"2\n"
+"03100070.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "This section describes how to assign Basic programs to program events."
-msgstr "Phần này mô tả cách gán chương trình Basic cho sự kiện chương trình."
+msgid "Converts a string expression or numeric expression to a variant expression."
+msgstr "Chuyển đổi một biểu thức kiểu chuỗi hay thuộc số sang một biểu thức kiểu hay biến đổi."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149263\n"
-"4\n"
+"03100070.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
-msgstr "Bạn có thể thực hiện một vĩ lệnh tự động khi xảy ra một sự kiện phần mềm đã cho bằng cách gán vĩ lệnh mong muốn cho sự kiện đó. Bảng dưới đây cung cấp toàn cảnh các swj kiện chương trình và điểm thực hiện vĩ lệnh đã được gán."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148455\n"
-"5\n"
+"03100070.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "Event"
-msgstr "Sự kiện"
+msgid "CVar(Expression)"
+msgstr "CVar(Biểu_thức)"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145799\n"
-"6\n"
+"03100070.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "An assigned macro is executed..."
-msgstr "Một vĩ lệnh đã gán được thực hiện..."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149379\n"
-"7\n"
+"03100070.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "Program Start"
-msgstr "Khởi chạy Chương trình"
+msgid "Variant."
+msgstr "Biến thế."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150715\n"
-"8\n"
+"03100070.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "... after a $[officename] application is started."
-msgstr "...sau khi khởi chạy một ứng dụng $[officename]."
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146914\n"
-"9\n"
+"03100070.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "Program End"
-msgstr "Kết thúc Chương trình"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Biểu_thức: bất cứ biểu thức kiểu chuỗi hay thuộc số cần chuyển đổi."
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153765\n"
-"10\n"
+"03100080.xhp\n"
+"tit\n"
"help.text"
-msgid "...before a $[officename] application is terminated."
-msgstr "...trước khi kết thúc một ứng dụng $[officename]."
+msgid "CVErr Function [Runtime]"
+msgstr "Hàm CVerr [Runtime]"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145150\n"
-"11\n"
+"03100080.xhp\n"
+"bm_id531022\n"
"help.text"
-msgid "Create Document"
-msgstr "Tạo tài liệu"
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr "<bookmark_value>hàm CVerr</bookmark_value>"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3163808\n"
-"12\n"
+"03100080.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
-msgstr "...sau khi một tài liệu mới được tạo bằng lệnh <emph>Tập tin > Mới</emph> hoặc bằng biểu tượng <emph>Mới</emph>."
+msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Hàm CVErr [Runtime]</link>"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145790\n"
-"13\n"
+"03100080.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "Open Document"
-msgstr "Mở tài liệu"
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgstr "Chuyển đổi một biểu thức kiểu chuỗi hay thuộc số sang một biểu thức kiểu hay biến đổi có kiểu phụ « Lỗi »."
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154572\n"
-"14\n"
+"03100080.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
-msgstr "...sau khi một tài liệu được mở bằng lệnh <emph>Tập tin > Mở</emph> hoặc bằng biểu tượng <emph>Mở</emph>."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153266\n"
-"15\n"
+"03100080.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "Save Document As"
-msgstr "Lưu mới tài liệu"
+msgid "CVErr(Expression)"
+msgstr "CVErr(Biểu_thức)"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150208\n"
-"16\n"
+"03100080.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr "...trước khi một tài liệu được lưu dưới một tên cụ thể (dùng lệnh <emph>Tập tin > Lưu mới</emph>, hoặc dùng lệnh <emph>Tập tin > Lưu</emph> hoặc biểu tượng <emph>Lưu</emph> nếu chưa ghi rõ tên tài liệu)."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3158215\n"
-"43\n"
+"03100080.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "Document has been saved as"
-msgstr "Tài liệu đã được lưu dưới dạng"
+msgid "Variant."
+msgstr "Biến thế."
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150980\n"
-"44\n"
+"03100080.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr "...sau khi một tài liệu được lưu với một tên cụ thể (dùng lệnh <emph>Tập tin > Lưu mới</emph>, hoặc dùng lệnh <emph>Tập tin > Lưu</emph> hoặc biểu tượng <emph>Lưu</emph> nếu chưa ghi rõ tên tài liệu)."
+msgid "Parameter:"
+msgstr "Tham số :"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150519\n"
-"17\n"
+"03100080.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "Save Document"
-msgstr "Lưu tài liệu"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Biểu_thức: bất cứ biểu thức kiểu chuỗi hay thuộc số cần chuyển đổi."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3155529\n"
-"18\n"
+"03100100.xhp\n"
+"tit\n"
"help.text"
-msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
-msgstr "...trước khi một tài liệu được lưu bằng lệnh <emph>Tập tin > Lưu</emph> hoặc bằng biểu tượng <emph>Lưu</emph>, miễn là đã xác định một tên cho tài liệu."
+msgid "CBool Function [Runtime]"
+msgstr "Hàm CBool [Runtime]"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149404\n"
-"45\n"
+"03100100.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "Document has been saved"
-msgstr "Tài liệu đã được lưu"
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr "<bookmark_value>hàm CBool</bookmark_value>"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3151332\n"
-"46\n"
+"03100100.xhp\n"
+"hd_id3150616\n"
+"1\n"
"help.text"
-msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
-msgstr "...sau khi một tài liệu được lưu bằng lệnh <emph>Tập tin > Lưu</emph> hoặc biểu tượng <emph>Lưu</emph>, miễn là đã xác định một tên cho tài liệu."
+msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"Hàm CBool [Runtime]\">Hàm CBool [Runtime]</link>"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159171\n"
-"19\n"
+"03100100.xhp\n"
+"par_id3145136\n"
+"2\n"
"help.text"
-msgid "Document is closing"
-msgstr "Tài liệu đang đóng"
+msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
+msgstr "Chuyển đổi một so sánh kiểu chuỗi hay thuộc số sang một biểu thức lôgic, hoặc chuyển đổi một biểu thức thuộc số riêng lẻ sang một biểu thức lôgic."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146868\n"
-"20\n"
+"03100100.xhp\n"
+"hd_id3153345\n"
+"3\n"
"help.text"
-msgid "...before a document is closed."
-msgstr "...trước khi đóng tài liệu."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159097\n"
-"47\n"
+"03100100.xhp\n"
+"par_id3149514\n"
+"4\n"
"help.text"
-msgid "Document closed"
-msgstr "Đóng tài liệu"
+msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgstr "CBool (Biểu_thức1 {= | <> | < | > | <= | >=} Biểu_thức2) or CBool (Số)"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148606\n"
-"48\n"
+"03100100.xhp\n"
+"hd_id3156152\n"
+"5\n"
"help.text"
-msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
-msgstr "...sau khi đóng tài liệu. Lưu ý rằng sự kiện \"Lưu tài liệu\" cũng có thể xảy ra khi tài liệu được lưu trước khi đóng."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3144772\n"
-"21\n"
+"03100100.xhp\n"
+"par_id3155419\n"
+"6\n"
"help.text"
-msgid "Activate Document"
-msgstr "Kích hoạt tài liệu"
+msgid "Bool"
+msgstr "Bool"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149442\n"
-"22\n"
+"03100100.xhp\n"
+"hd_id3147530\n"
+"7\n"
"help.text"
-msgid "...after a document is brought to the foreground."
-msgstr "...sau khi một tài liệu được nâng lên trên."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150888\n"
-"23\n"
+"03100100.xhp\n"
+"par_id3156344\n"
+"8\n"
"help.text"
-msgid "Deactivate Document"
-msgstr "Khử hoạt tài liệu"
+msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
+msgstr "<emph> Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức kiểu chuỗi hay thuộc số cần so sánh. Nếu hai biểu thức tương ứng, hàm <emph>CBool</emph> trả về <emph>True</emph> (Đúng), không thì trả về <emph>False</emph> (Sai)."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154060\n"
-"24\n"
+"03100100.xhp\n"
+"par_id3149655\n"
+"9\n"
"help.text"
-msgid "...after another document is brought to the foreground."
-msgstr "...sau khi tài liệu khác được nâng lên trên."
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
+msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số cần chuyển đổi. Nếu biểu thức bằng với 0 thì trả về <emph>False</emph> (Sai); không thì <emph>True</emph> (Đúng)."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3152384\n"
-"25\n"
+"03100100.xhp\n"
+"par_id3145171\n"
+"10\n"
"help.text"
-msgid "Print Document"
-msgstr "In tài liệu"
+msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+msgstr "Mẫu thí dụ theo đây sử dụng hàm <emph>CBool</emph> để ước tính giá trị được hàm <emph>Instr</emph> trả về. Hàm kiểm tra nếu từ « and » (và) được tìm trong câu được người dùng nhập vào, hay không."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3152873\n"
-"26\n"
+"03100100.xhp\n"
+"hd_id3156212\n"
+"11\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
-msgstr "...sau khi đóng hộp thoại <emph>In</emph>, nhưng trước khi khởi chạy tiến trình in thật sự."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159227\n"
-"49\n"
+"03100100.xhp\n"
+"par_id3155132\n"
+"14\n"
"help.text"
-msgid "JavaScript run-time error"
-msgstr "Lỗi thực hiện JavaScript"
+msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgstr "sText = InputBox(\"Hãy gõ một câu ngắn:\")"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145362\n"
-"50\n"
+"03100100.xhp\n"
+"par_id3155855\n"
+"15\n"
"help.text"
-msgid "...when a JavaScript run-time error occurs."
-msgstr "...khi gặp một lỗi JavaScript tức thời."
+msgid "' Proof if the word »and« appears in the sentence."
+msgstr "REM Chứng minh là từ « and » xuất hiện tron câu đó."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154767\n"
-"27\n"
+"03100100.xhp\n"
+"par_id3146984\n"
+"16\n"
"help.text"
-msgid "Print Mail Merge"
-msgstr "In thư đã trộn"
+msgid "' Instead of the command line"
+msgstr "REM Thay vào dòng lệnh"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153555\n"
-"28\n"
+"03100100.xhp\n"
+"par_id3148576\n"
+"17\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
-msgstr "...sau khi đóng hộp thoại <emph>In</emph>, còn trước khi khởi chạy tiến trình in thật. Sự kiện này xảy ra cho mỗi bản được in ra."
+msgid "' If Instr(Input, \"and\")<>0 Then..."
+msgstr "REM If Instr(Input, \"and\")<>0 Then..."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3156366\n"
-"51\n"
+"03100100.xhp\n"
+"par_id3154014\n"
+"18\n"
"help.text"
-msgid "Change of the page count"
-msgstr "Hiệu đếm trang"
+msgid "' the CBool function is applied as follows:"
+msgstr "REM hàm CBool được áp dụng như theo đây:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154627\n"
-"52\n"
+"03100100.xhp\n"
+"par_id3155413\n"
+"19\n"
"help.text"
-msgid "...when the page count changes."
-msgstr "...khi tổng số trang thay đổi."
+msgid "If CBool(Instr(sText, \"and\")) Then"
+msgstr "If CBool(Instr(sText, \"and\")) Then"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154737\n"
-"53\n"
+"03100100.xhp\n"
+"par_id3152940\n"
+"20\n"
"help.text"
-msgid "Message received"
-msgstr "Nhận được thông điệp"
+msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgstr "MsgBox \"Từ « and » xuất hiện trong câu bạn đã nhập.\""
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150952\n"
-"54\n"
+"03100300.xhp\n"
+"tit\n"
"help.text"
-msgid "...if a message was received."
-msgstr "...nếu nhận được một thông điệp."
+msgid "CDate Function [Runtime]"
+msgstr "Hàm CDate [Runtime]"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3153299\n"
-"30\n"
+"03100300.xhp\n"
+"bm_id3150772\n"
"help.text"
-msgid "Assigning a Macro to an Event"
-msgstr "Gán một vĩ lệnh cho một sự kiện"
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr "<bookmark_value>hàm CDate</bookmark_value>"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3147244\n"
-"31\n"
+"03100300.xhp\n"
+"hd_id3150772\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
-msgstr "Chọn mục trình đơn <emph>Công cụ > Tùy biến</emph>, sau đó nhấn vào phiếu <emph>Sự kiện</emph>."
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"Hàm CDate [Runtime]\">Hàm CDate [Runtime]</link>"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146098\n"
-"55\n"
+"03100300.xhp\n"
+"par_id3150986\n"
+"2\n"
"help.text"
-msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
-msgstr "Trong hộp liệt kê <emph>Lưu vào</emph>, chọn nếu bạn muốn sự gán này là hợp lệ toàn cục hoặc chỉ hợp lệ trong tài liệu hiện tại."
+msgid "Converts any string or numeric expression to a date value."
+msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một giá trị ngày tháng."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150431\n"
-"32\n"
+"03100300.xhp\n"
+"hd_id3148944\n"
+"3\n"
"help.text"
-msgid "Select the event from the <emph>Event</emph> list."
-msgstr "Chọn sự kiện trong danh sách các <emph>Sự kiện</emph>."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148742\n"
-"33\n"
+"03100300.xhp\n"
+"par_id3148947\n"
+"4\n"
"help.text"
-msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
-msgstr "Nhấn vào nút <emph>Vĩ lệnh</emph>, sau đó chọn vĩ lệnh cần gán cho sự kiện đã chọn."
+msgid "CDate (Expression)"
+msgstr "CDate (Biểu_thức)"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146321\n"
-"35\n"
+"03100300.xhp\n"
+"hd_id3148552\n"
+"5\n"
"help.text"
-msgid "Click <emph>OK</emph> to assign the macro."
-msgstr "Nhấn vào nút <emph>OK</emph> để gán vĩ lệnh."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3147414\n"
-"56\n"
+"03100300.xhp\n"
+"par_id3159414\n"
+"6\n"
"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "Nhấn vào nút <emph>OK</emph> để đóng hộp thoại."
+msgid "Date"
+msgstr "Ngày"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3154581\n"
-"36\n"
+"03100300.xhp\n"
+"hd_id3153525\n"
+"7\n"
"help.text"
-msgid "Removing the Assignment of a Macro to an Event"
-msgstr "Gỡ bỏ phép gán vĩ lệnh cho một sự kiện"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146883\n"
-"57\n"
+"03100300.xhp\n"
+"par_id3150359\n"
+"8\n"
"help.text"
-msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
-msgstr "Chọn trình đơn <emph>Công cụ > Tùy biến</emph>, sau đó nhấn vào phiếu <emph>Sự kiện</emph>."
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức nào kiểu chuỗi hay thuộc số mà bạn muốn chuyển đổi."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3155909\n"
-"58\n"
+"03100300.xhp\n"
+"par_id3125864\n"
+"9\n"
"help.text"
-msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
-msgstr "Chọn nếu bạn muốn gỡ bỏ một sự gán toàn cục hoặc một sự gán chỉ hợp lệ trong tài liệu hiện tại, bằng cách bật tùy chọn đó trong hộp liệt kê <emph>Lưu vào</emph>."
+msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
+msgstr "Khi bạn chuyển đổi một biểu thức kiểu chuỗi, ngày tháng và giờ phải được nhập theo định dạng Th.Ng.NNăm Gi.Ph.gy (v.d. 05.13.2008 19.25.44), như được xác định bởi hai quy ước <emph>DateValue</emph> và <emph>TimeValue</emph>. Trong biểu thức thuộc số, các giá trị bên trái dấu thập phân đại diện ngày tháng, bắt đầu từ ngày 31, tháng 12/1899. Các giá trị bên phải đại diện thời gian."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159129\n"
-"59\n"
+"03100300.xhp\n"
+"hd_id3156422\n"
+"10\n"
"help.text"
-msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
-msgstr "Chọn sự kiện có phép gán cần gỡ bỏ trong danh sách các <emph>sự kiện</emph>."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01040000.xhp
+#: 03100400.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149143\n"
-"37\n"
+"03100400.xhp\n"
+"tit\n"
"help.text"
-msgid "Click <emph>Remove</emph>."
-msgstr "Nhấn vào nút <emph>Bỏ</emph>."
+msgid "CDbl Function [Runtime]"
+msgstr "Hàm CDbl [Runtime]"
-#: 01040000.xhp
+#: 03100400.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149351\n"
-"60\n"
+"03100400.xhp\n"
+"bm_id3153750\n"
"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "Nhấn vào nút <emph>OK</emph> để đóng hộp thoại."
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr "<bookmark_value>hàm CDbl</bookmark_value>"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"tit\n"
+"03100400.xhp\n"
+"hd_id3153750\n"
+"1\n"
"help.text"
-msgid "Debugging a Basic Program"
-msgstr "Gỡ lỗi một Chương trình Basic"
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"Hàm CDbl [Runtime]\">Hàm CDbl [Runtime]</link>"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"bm_id3153344\n"
+"03100400.xhp\n"
+"par_id3149233\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
-msgstr "<bookmark_value>gỡ lỗi chương trình Basic</bookmark_value><bookmark_value>biến; theo dõi giá trị</bookmark_value><bookmark_value>theo dõi biến</bookmark_value><bookmark_value>lỗi tức thời Basic</bookmark_value><bookmark_value>mã lỗi trong Basic</bookmark_value><bookmark_value>điểm ngắt</bookmark_value><bookmark_value>cửa sổ Đống Gọi</bookmark_value>"
+msgid "Converts any numerical expression or string expression to a double type."
+msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một kiểu đôi."
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3153344\n"
-"1\n"
+"03100400.xhp\n"
+"hd_id3149516\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
-msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">Gỡ lỗi một Chương trình Basic</link>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3159224\n"
+"03100400.xhp\n"
+"par_id3156152\n"
"4\n"
"help.text"
-msgid "Breakpoints and Single Step Execution"
-msgstr "Điểm ngắt và Thực hiện Bước Đơn"
+msgid "CDbl (Expression)"
+msgstr "CDbl(Biểu_thức)"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3150682\n"
+"03100400.xhp\n"
+"hd_id3153061\n"
"5\n"
"help.text"
-msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
-msgstr "Trong chương trình Basic, bạn có thể kiểm tra mỗi dòng có lỗi không bằng chức năng thực hiện bước đơn. Chức năng này dễ truy tìm lỗi, vì bạn có thể thấy ngay kết quả của mỗi bước. Một con trỏ trong cột điểm ngắt của trình sửa cũng ngụ ý dòng hiện tại. Bạn cũng có thể đặt một điểm ngắt để ép chương trình bị dừng ở một vị trí nào đó."
+msgid "Return value"
+msgstr "Giá trị trả về"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3147303\n"
-"7\n"
+"03100400.xhp\n"
+"par_id3145068\n"
+"6\n"
"help.text"
-msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
-msgstr "Nhấn đôi vào cột <emph>điểm ngắt</emph> ở bên trái của cửa sổ trình sửa để hiển thị hoặc ẩn một điểm ngắt trên dòng tương ứng. Khi chương trình tới một điểm ngắt, tiến trình thực hiện chương trình bị gián đoạn."
+msgid "Double"
+msgstr "Đôi"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3155805\n"
-"8\n"
+"03100400.xhp\n"
+"hd_id3154760\n"
+"7\n"
"help.text"
-msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
-msgstr "Tiến trình thực hiện <emph>Bước đơn</emph> dùng biểu tượng <emph>Bước đơn</emph> thì gây ra chương trình tách nhánh vào các trình con và hàm."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3151110\n"
-"25\n"
+"03100400.xhp\n"
+"par_id3153897\n"
+"8\n"
"help.text"
-msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
-msgstr "Tiến trình thực hiện bước thủ tục, dùng biểu tượng <emph>Bước thủ tục</emph>, gây ra chương trình bỏ qua các thủ tục và hàm như là một bước riêng lẻ."
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức nào kiểu chuỗi hay thuộc số mà bạn muốn chuyển đổi. Để chuyển đổi một biểu thức kiểu chuỗi, số phải được nhập dạng văn bản bình thường (\"123.5\") dùng định dạng số của hệ điều hành của bạn."
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3153825\n"
+"03100400.xhp\n"
+"hd_id3148797\n"
"9\n"
"help.text"
-msgid "Properties of a Breakpoint"
-msgstr "Thuộc tính về một Điểm ngắt"
-
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_id3147574\n"
-"26\n"
-"help.text"
-msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
-msgstr "Các thuộc tính về một điểm ngắt nào đó cũng sẵn sàng thông qua trình đơn ngữ cảnh của nó : nhấn-phải vào điểm ngắt đó trong cột điểm ngắt."
-
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_id3148473\n"
-"10\n"
-"help.text"
-msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution."
-msgstr "Bạn có khả năng <emph>Bật</emph> và <emph>Tắt</emph> một điểm ngắt nào đó, bằng cách chọn mục <emph>Hoạt động</emph> trong trình đơn ngữ cảnh của nó. Khi một điểm ngắt nào đó bị tắt, nó không còn gián đoạn lại tiến trình thực hiện chương trình."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3159413\n"
-"27\n"
+"03100500.xhp\n"
+"tit\n"
"help.text"
-msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
-msgstr "Chọn mục <emph>Thuộc tính</emph> trong trình đơn ngữ cảnh của một điểm ngắt, hoặc chọn mục <emph>Điểm ngắt</emph> trong trình đơn ngữ cảnh của cột điểm ngắt, để mở hộp thoại <emph>Điểm ngắt</emph> trong đó bạn có thể ghi rõ các tùy chọn điểm ngắt khác."
+msgid "CInt Function [Runtime]"
+msgstr "Hàm CInt [Runtime]"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3156280\n"
-"11\n"
+"03100500.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
-msgstr "Danh sách này hiển thị tất cả các <emph>điểm ngắt</emph> với số thứ tự dòng tương ứng trong mã nguồn. Bạn có thể kích hoạt hoặc hủy kích hoạt một điểm ngắt đã chọn bằng cách đánh dấu/bỏ dấu trong hộp <emph>Hoạt động</emph>."
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr "<bookmark_value>hàm CInt</bookmark_value>"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3158407\n"
-"12\n"
+"03100500.xhp\n"
+"hd_id3149346\n"
+"1\n"
"help.text"
-msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
-msgstr "Số <emph>Đếm lần qua</emph> thì ghi rõ số lần có thể đi qua một điểm ngắt nào đó trước khi chương trình bị gián đoạn. Nếu bạn nhập 0 (giá trị mặc định), chương trình lúc nào cũng bị gián đoạn một khi gặp điểm ngắt đó."
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"Hàm CInt [Runtime]\">Hàm CInt [Runtime]</link>"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3153968\n"
-"13\n"
+"03100500.xhp\n"
+"par_id3155419\n"
+"2\n"
"help.text"
-msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
-msgstr "Nhấn vào nút <emph>Xoá</emph> để gỡ bỏ điểm ngắt đó khỏi chương trình."
+msgid "Converts any string or numeric expression to an integer."
+msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một số nguyên."
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3150439\n"
-"14\n"
+"03100500.xhp\n"
+"hd_id3147573\n"
+"3\n"
"help.text"
-msgid "Observing the Value of Variables"
-msgstr "Theo dõi Giá trị của Biến"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3153368\n"
-"15\n"
+"03100500.xhp\n"
+"par_id3154142\n"
+"4\n"
"help.text"
-msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
-msgstr "Bạn có thể theo dõi các giá trị của một biến nào đó, bằng cách thêm nó vào cửa sổ <emph>Theo dõi</emph>. Để thêm một biến vào danh sách các biến đang theo dõi, gõ tên biến trong hộp văn bản <emph>Theo dõi</emph>, sau đó bấm phím <item type=\"keycode\">Enter</item>."
+msgid "CInt (Expression)"
+msgstr "CInt(Biểu_thức)"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3146986\n"
-"16\n"
+"03100500.xhp\n"
+"hd_id3147531\n"
+"5\n"
"help.text"
-msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
-msgstr "Giá trị của biến chỉ được hiển thị nếu nó nằm trong phạm vi. Biến không phải được xác định ở vị trí mã nguồn hiện tại sẽ hiển thị « Ngoại phạm vi » thay cho một giá trị."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3145272\n"
-"17\n"
+"03100500.xhp\n"
+"par_id3147560\n"
+"6\n"
"help.text"
-msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
-msgstr "Bạn cũng có thể kèm thêm mảng trong cửa sổ <emph>Theo dõi</emph>. Nếu bạn nhập vào cửa sổ <emph>Theo dõi</emph> tên của một biến mảng không có giá trị chỉ mục, nội dung của toàn bộ mảng được hiển thị."
+msgid "Integer"
+msgstr "Số nguyên"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3145749\n"
-"19\n"
+"03100500.xhp\n"
+"hd_id3145069\n"
+"7\n"
"help.text"
-msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
-msgstr "Nếu bạn để lại con trỏ ở trên một biến đã định sẵn trong trình sửa vào lúc chạy, nội dung của biến đó được hiển thị trong một hộp tự mở."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3148618\n"
-"20\n"
+"03100500.xhp\n"
+"par_id3159414\n"
+"8\n"
"help.text"
-msgid "The Call Stack Window"
-msgstr "Cửa sổ Đống Gọi"
+msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào cần chuyển đổi. Nếu <emph> Biểu_thức </emph> vượt quá phạm vi giá trị -32768 đến 32767, $[officename] Basic thông báo lỗi bị tràn. Để chuyển đổi một biểu thức kiểu chuỗi, số phải được nhập dạng văn bản bình thường (\"123.5\") dùng định dạng số mặc định của hệ điều hành của bạn."
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3154491\n"
-"21\n"
+"03100500.xhp\n"
+"par_id3150358\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
-msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Cung cấp một toàn cảnh về phân cấp gọi của các trình con và hàm.</ahelp> Bạn có thể xác định những trình con hoặc hàm nào đã gọi các trình con hoặc hàm khác ở điểm hiện tại trong mã nguồn."
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "Hàm này lúc nào cũng làm tròn phần phân số của một số thành số nguyên gần nhất."
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3150594\n"
-"24\n"
+"03100500.xhp\n"
+"hd_id3145419\n"
+"10\n"
"help.text"
-msgid "List of Run-Time Errors"
-msgstr "Danh sách các lỗi tức thời"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
+"03100600.xhp\n"
"tit\n"
"help.text"
-msgid "Keyboard Shortcuts in the Basic IDE"
-msgstr "Phím tắt trong IDE Basic"
+msgid "CLng Function [Runtime]"
+msgstr "Câu lệnh CLng [Runtime]"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"bm_id3154760\n"
+"03100600.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
-msgstr "<bookmark_value>bàn phím;trong IDE</bookmark_value><bookmark_value>phím tắt;IDE Basic</bookmark_value><bookmark_value>IDE;phím tắt</bookmark_value>"
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr "<bookmark_value>hàm CLng</bookmark_value>"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"hd_id3154760\n"
+"03100600.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Phím tắt trong IDE Basic\">Phím tắt trong IDE Basic</link>"
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"Hàm CLng [Runtime]\">Hàm CLng [Runtime]</link>"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3149655\n"
+"03100600.xhp\n"
+"par_id3148686\n"
"2\n"
"help.text"
-msgid "In the Basic IDE you can use the following keyboard shortcuts:"
-msgstr "Trong giao diện IDE Basic, bạn có thể sử dụng những phím tắt theo đây:"
+msgid "Converts any string or numeric expression to a long integer."
+msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một số nguyên dài."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154908\n"
+"03100600.xhp\n"
+"hd_id3145315\n"
"3\n"
"help.text"
-msgid "Action"
-msgstr "Hành vi"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3153192\n"
+"03100600.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "Keyboard shortcut"
-msgstr "Phím tắt"
+msgid "CLng (Expression)"
+msgstr "CLng(Biểu_thức)"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3159254\n"
+"03100600.xhp\n"
+"hd_id3145610\n"
"5\n"
"help.text"
-msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
-msgstr "Chạy lại mã kể từ dòng đầu, hay từ điểm ngắt hiện thời, nếu chương trình vừa dừng ở đó."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3163712\n"
+"03100600.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "F5"
-msgstr "F5"
+msgid "Long"
+msgstr "Dài"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3150010\n"
+"03100600.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Stop"
-msgstr "Dừng"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154319\n"
+"03100600.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "Shift+F5"
-msgstr "Shift+F5"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3151073\n"
-"11\n"
-"help.text"
-msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
-msgstr "Bắt đầu <link href=\"text/sbasic/shared/01050100.xhp\" name=\"theo dõi\">theo dõi</link> biến dưới con trỏ."
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154731\n"
-"12\n"
-"help.text"
-msgid "F7"
-msgstr "F7"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3148455\n"
-"13\n"
-"help.text"
-msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
-msgstr "Bước đơn qua mỗi câu lệnh, bắt đầu ở dòng đầu hay ở câu lệnh vừa dừng chương trình chạy."
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150716\n"
-"14\n"
-"help.text"
-msgid "F8"
-msgstr "F8"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3156275\n"
-"15\n"
-"help.text"
-msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
-msgstr "Bước đơn giống như với F8, nhưng một cuộc gọi hàm được thấy chỉ là <emph>một</emph> câu lệnh."
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153764\n"
-"16\n"
-"help.text"
-msgid "Shift+F8"
-msgstr "Shift+F8"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150323\n"
-"17\n"
-"help.text"
-msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
-msgstr "Đặt hay gỡ bỏ một <link href=\"text/sbasic/shared/01030300.xhp\" name=\"điểm ngắt\">điểm ngắt</link> ở dòng hiện tại, hoặc tất cả các điểm ngắt trong phần hiện tại."
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3147339\n"
-"18\n"
-"help.text"
-msgid "F9"
-msgstr "F9"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153963\n"
-"19\n"
-"help.text"
-msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
-msgstr "Bật/tắt điểm ngắt ở dòng hiện tại, hoặc tất cả các điểm ngắt trong phần hiện tại."
+msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào cần chuyển đổi. Nếu <emph>Biểu_thức</emph> nằm ở ngoại phạm vi số nguyên dài hợp lệ -2.147.483.648 đến 2.147.483.647, $[officename] Basic trả về một lỗi bị tràn. Để chuyển đổi một biểu thức kiểu chuỗi, số phải được nhập dạng văn bản bình thường (\"123.5\") dùng định dạng số mặc định của hệ điều hành của bạn."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3155175\n"
-"20\n"
+"03100600.xhp\n"
+"par_id3150358\n"
+"9\n"
"help.text"
-msgid "Shift+F9"
-msgstr "Shift+F9"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "Hàm này lúc nào cũng làm tròn phần phân số của một số thành số nguyên gần nhất."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154702\n"
-"21\n"
+"03100600.xhp\n"
+"hd_id3154216\n"
+"10\n"
"help.text"
-msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
-msgstr "Vĩ lệnh đang chạy có thể được dừng bằng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, hay từ bên ngoài của giao diện Basic. Nếu bạn đang ở trong giao diện của Basic và vĩ lệnh ngừng tại một điểm dừng, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q sẽ ngừng việc thực thi của vĩ lệnh, nhưng điều này chỉ có thể nhận thấy rõ nếu bạn bấm tiếp F5, F8, hay Shift+F8."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
+"03100700.xhp\n"
"tit\n"
"help.text"
-msgid "IsArray Function [Runtime]"
-msgstr "Hàm IsArray [Runtime]"
+msgid "Const Statement [Runtime]"
+msgstr "Câu lệnh Const [Runtime]"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"bm_id3154346\n"
+"03100700.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>IsArray function</bookmark_value>"
-msgstr "<bookmark_value>hàm IsArray</bookmark_value>"
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Const</bookmark_value>"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3154346\n"
+"03100700.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"Hàm IsArray [Runtime]\">Hàm IsArray [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Câu lệnh Const [Runtime]\">Câu lệnh Const [Runtime]</link>"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3159413\n"
+"03100700.xhp\n"
+"par_id3154143\n"
"2\n"
"help.text"
-msgid "Determines if a variable is a data field in an array."
-msgstr "Xác định nếu một biến là một trường dữ liệu trong một mảng, hay không."
+msgid "Defines a string as a constant."
+msgstr "Xác định một chuỗi dưới dạng một hằng số."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3150792\n"
+"03100700.xhp\n"
+"hd_id3150670\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3153379\n"
+"03100700.xhp\n"
+"par_id3150984\n"
"4\n"
"help.text"
-msgid "IsArray (Var)"
-msgstr "IsArray (Biến)"
+msgid "Const Text = Expression"
+msgstr "Const Văn_bản = Biểu_thức"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3154365\n"
+"03100700.xhp\n"
+"hd_id3147530\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
+"03100700.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
+msgstr "<emph>Văn_bản:</emph> bất cứ tên hằng số nào mà tùy theo ước quy đặt tên tiêu chuẩn."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3153969\n"
+"03100700.xhp\n"
+"par_id3147264\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
+msgstr "Một hằng số là một biến giúp cải tiến khả năng đọc của một chương trình. Hằng số không phải được xác định dưới dạng một kiểu biến nào đó, nhưng được dùng làm vật thế chỗ trong mã nguồn. Bạn chỉ có thể xác định mỗi hằng số một lần, sau đó thì không thể sửa đổi. Hãy dùng câu lệnh này để xác định một hằng số :"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3145172\n"
+"03100700.xhp\n"
+"par_id3150542\n"
"8\n"
"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
-msgstr "<emph>Biến:</emph> bất cứ biến nào cần thử nếu nó được khai báo là một mảng hay không. Có thì hàm trả về <emph>Đúng</emph>, không thì <emph>Sai</emph>."
+msgid "CONST ConstName=Expression"
+msgstr "CONST ConstName=Expression"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3155131\n"
+"03100700.xhp\n"
+"par_id3150400\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Generating Random Numbers"
-msgstr "Tạo ra các số ngẫu nhiên"
+msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+msgstr "Kiểu biểu thức không thích đáng. Nếu một chương trình được khởi chạy, $[officename] Basic chuyển đổi mã chương trình một cách nội bộ, để mỗi lần dùng hằng số, biểu thức đã xác định sẽ thay thế nó."
-#: 03080300.xhp
+#: 03100700.xhp
msgctxt ""
-"03080300.xhp\n"
-"hd_id3143270\n"
-"1\n"
+"03100700.xhp\n"
+"hd_id3154366\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Tạo ra các số ngẫu nhiên\">Tạo ra các số ngẫu nhiên</link>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03080300.xhp
+#: 03100700.xhp
msgctxt ""
-"03080300.xhp\n"
-"par_id3154347\n"
-"2\n"
+"03100700.xhp\n"
+"par_id3153969\n"
+"14\n"
"help.text"
-msgid "The following statements and functions generate random numbers."
-msgstr "Những câu lệnh và hàm theo đây có khả năng tạo ra các số ngẫu nhiên."
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
+msgstr "Const sVar = \"Program\", dVar As Double = 1.00"
#: 03100900.xhp
msgctxt ""
@@ -21771,7 +24825,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
#: 03100900.xhp
msgctxt ""
@@ -21809,2623 +24863,1929 @@ msgctxt ""
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
+"03101000.xhp\n"
"tit\n"
"help.text"
-msgid "Int Function [Runtime]"
-msgstr "Hàm Int [Runtime]"
+msgid "CStr Function [Runtime]"
+msgstr "Hàm CStr [Runtime]"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"bm_id3153345\n"
+"03101000.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>Int function</bookmark_value>"
-msgstr "<bookmark_value>hàm Int</bookmark_value>"
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr "<bookmark_value>hàm CStr</bookmark_value>"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3153345\n"
+"03101000.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Hàm Int [Runtime]\">Hàm Int [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"Hàm CStr [Runtime]\">Hàm CStr [Runtime]</link>"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3155420\n"
+"03101000.xhp\n"
+"par_id3147574\n"
"2\n"
"help.text"
-msgid "Returns the integer portion of a number."
-msgstr "Trả về phần số nguyên của một số."
+msgid "Converts any numeric expression to a string expression."
+msgstr "Chuyển đổi bất cứ biểu thức thuộc số nào sang một biểu thức kiểu chuỗi."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3147559\n"
+"03101000.xhp\n"
+"hd_id3148473\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3146795\n"
+"03101000.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "Int (Number)"
-msgstr "Int (Số)"
+msgid "CStr (Expression)"
+msgstr "CStr (Biểu thức)"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3149670\n"
+"03101000.xhp\n"
+"hd_id3153062\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
+"03101000.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "String"
+msgstr "Chuỗi"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3149656\n"
+"03101000.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3148797\n"
+"03101000.xhp\n"
+"par_id3149457\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào còn hợp lệ."
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr "<emph>Biểu thức:</emph> bất cứ biểu thức nào kiểu chuỗi hay thuộc số mà bạn muốn chuyển đổi."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3148672\n"
+"03101000.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"par_id3125864\n"
-"11\n"
-"help.text"
-msgid "Print Int(3.99) ' returns the value 3"
-msgstr "Print Int(3.99) REM trả về giá trị 3.0"
-
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"par_id3145787\n"
-"12\n"
-"help.text"
-msgid "Print Int(0) ' returns the value 0"
-msgstr "Print Int(0) REM trả về giá trị 0.0"
-
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"par_id3153143\n"
-"13\n"
-"help.text"
-msgid "Print Int(-3.14159) ' returns the value -4"
-msgstr "Print Int(-3.14159) REM trả về giá trị -4.0"
+msgid "Expression Types and Conversion Returns"
+msgstr "Kiểu Biểu thức và Trả về khi Chuyển đổi"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"tit\n"
+"03101000.xhp\n"
+"par_id3153192\n"
+"10\n"
"help.text"
-msgid "RTrim Function [Runtime]"
-msgstr "Hàm RTrim [Runtime]"
+msgid "Boolean :"
+msgstr "Lôgic :"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"bm_id3154286\n"
+"03101000.xhp\n"
+"par_id3156422\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>RTrim function</bookmark_value>"
-msgstr "<bookmark_value>hàm RTrim</bookmark_value>"
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgstr "Chuỗi mà ước tính thành hoặc <emph>True</emph> (Đúng) hoặc <emph>False</emph> (Sai)."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3154286\n"
-"1\n"
+"03101000.xhp\n"
+"par_id3147287\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"Hàm RTrim [Runtime]\">Hàm RTrim [Runtime]</link>"
+msgid "Date :"
+msgstr "Ngày :"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153127\n"
-"2\n"
+"03101000.xhp\n"
+"par_id3155411\n"
+"13\n"
"help.text"
-msgid "Deletes the spaces at the end of a string expression."
-msgstr "Xoá các dấu cách ở kết thúc của một biểu thức chuỗi."
+msgid "String that contains the date and time."
+msgstr "Chuỗi mà chứa ngày và giờ."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153062\n"
-"3\n"
+"03101000.xhp\n"
+"par_id3147428\n"
+"14\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"Hàm LTrim\">Hàm LTrim</link>"
+msgid "Null :"
+msgstr "Rỗng :"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3154924\n"
-"4\n"
+"03101000.xhp\n"
+"par_id3150486\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Run-time error."
+msgstr "Lỗi lúc chạy."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3154347\n"
-"5\n"
+"03101000.xhp\n"
+"par_id3153953\n"
+"16\n"
"help.text"
-msgid "RTrim (Text As String)"
-msgstr "RTrim (Text As String)"
+msgid "Empty :"
+msgstr "Rỗng :"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3149457\n"
-"6\n"
+"03101000.xhp\n"
+"par_id3155306\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "String without any characters."
+msgstr "Chuỗi không có ký tự"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"7\n"
+"03101000.xhp\n"
+"par_id3149260\n"
+"18\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Any :"
+msgstr "Bất kỳ :"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3148798\n"
-"8\n"
+"03101000.xhp\n"
+"par_id3152938\n"
+"19\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Corresponding number as string."
+msgstr "Số tương ứng dạng chuỗi."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3151380\n"
-"9\n"
+"03101000.xhp\n"
+"par_id3155738\n"
+"20\n"
"help.text"
-msgid "<emph>Text: </emph>Any string expression."
-msgstr "<emph>Text:</emph> bắt cứ biểu thức chuỗi nào."
+msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgstr "Các số không ở kết thúc của một số với chấm động không phải được bao gồm trong chuỗi trả về."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3151041\n"
-"10\n"
+"03101000.xhp\n"
+"hd_id3154729\n"
+"21\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integers"
-msgstr "Số nguyên"
-
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"hd_id3153345\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Số nguyên\">Số nguyên</link>"
-
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"par_id3156152\n"
-"2\n"
-"help.text"
-msgid "The following functions round values to integers."
-msgstr "Theo đây có những hàm làm tròn giá trị thành số nguyên."
-
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
+"03101100.xhp\n"
"tit\n"
"help.text"
-msgid "Chr Function [Runtime]"
-msgstr "Hàm Chr [Runtime]"
+msgid "DefBool Statement [Runtime]"
+msgstr "Câu lệnh DefBool [Runtime]"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"bm_id3149205\n"
+"03101100.xhp\n"
+"bm_id3145759\n"
"help.text"
-msgid "<bookmark_value>Chr function</bookmark_value>"
-msgstr "<bookmark_value>hàm Chr</bookmark_value>"
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefBool</bookmark_value>"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3149205\n"
+"03101100.xhp\n"
+"hd_id3145759\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Hàm Chr [Runtime]\">Hàm Chr [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"Câu lệnh DefBool [Runtime]\">Câu lệnh DefBool [Runtime]</link>"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3153311\n"
+"03101100.xhp\n"
+"par_id3153089\n"
"2\n"
"help.text"
-msgid "Returns the character that corresponds to the specified character code."
-msgstr "Trả về ký tự tương ứng với mã ký tự đã ghi rõ."
+msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
+msgstr "Không đưa ra ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefBool</emph> đặt kiểu dữ liệu mặc định cho các biến, tùy theo một phạm vi chữ."
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3149514\n"
+"03101100.xhp\n"
+"hd_id3149495\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3150669\n"
+"03101100.xhp\n"
+"par_id3150682\n"
"4\n"
"help.text"
-msgid "Chr(Expression As Integer)"
-msgstr "Chr(Expression As Integer)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3143228\n"
+"03101100.xhp\n"
+"hd_id3159201\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3153824\n"
+"03101100.xhp\n"
+"par_id3147226\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3148944\n"
+"03101100.xhp\n"
+"par_id3149178\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3149295\n"
+"03101100.xhp\n"
+"par_id3150669\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
-msgstr "<emph>Biểu thức:</emph> các biến thuộc số mà đại ciện một giá trị 8-bit ASCII hợp lệ (0-255) hay một giá trị 16-bit Unicode."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3159414\n"
+"03101100.xhp\n"
+"par_id3149233\n"
"9\n"
"help.text"
-msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
-msgstr "Hãy sử dụng hàm <emph>Chr$</emph> để gửi các dãy điều khiển đặc biệt cho một máy in hay nguồn xuất khác. Bạn cũng có thể sử dụng nó để chèn dấu nháy kép vào một biểu thức chuỗi."
+msgid "<emph>DefBool:</emph> Boolean"
+msgstr "<emph>DefBool:</emph> giá trị lôgic (Đúng/Sai)"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3154366\n"
+"03101100.xhp\n"
+"hd_id3149762\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03120102.xhp
-#, fuzzy
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3154909\n"
+"03101100.xhp\n"
+"par_id3156152\n"
"12\n"
"help.text"
-msgid "' This example inserts quotation marks (ASCII value 34) in a string."
-msgstr "REM Mẫu thí dụ này chèn dấu nháy kép (giá trị ASCII 34) vào một chuỗi."
+msgid "' Prefix definition for variable types:"
+msgstr "REM Xác định tiền tố cho các kiểu biến:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3151380\n"
-"13\n"
+"03101100.xhp\n"
+"par_id3151381\n"
+"22\n"
"help.text"
-msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
-msgstr "MsgBox \"một \"+ Chr$(34)+\"chuyến dã ngoại\" + Chr$(34)+\" ngắn.\""
+msgid "bOK=TRUE ' bOK is an implicit boolean variable"
+msgstr "bOK=TRUE REM bOK là một biến lôgic ngầm"
-#: 03120102.xhp
-#, fuzzy
+#: 03101110.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3145174\n"
-"14\n"
+"03101110.xhp\n"
+"tit\n"
"help.text"
-msgid "' The printout appears in the dialog as: A \"short\" trip."
-msgstr "REM Chuỗi in xuất hiện trong hộp thoại như Một \"chuyến dã ngoại\" ngắn."
+msgid "DefCur Statement [Runtime]"
+msgstr "Câu lệnh DefCur [Runtime]"
-#: 03120102.xhp
+#: 03101110.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_idN10668\n"
+"03101110.xhp\n"
+"bm_id9555345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+msgid "<bookmark_value>DefCur statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefCur</bookmark_value>"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"tit\n"
+"03101110.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "GetProcessServiceManager Function [Runtime]"
-msgstr "Hàm GetProcessServiceManager [Runtime]"
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Câu lệnh DefCur [Runtime]</link>"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"bm_id3153255\n"
+"03101110.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-msgstr "<bookmark_value>hàm GetProcessServiceManager</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefCur</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3153255\n"
-"1\n"
+"03101110.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"Hàm GetProcessServiceManager [Runtime]\">Hàm GetProcessServiceManager [Runtime]</link>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3156414\n"
-"2\n"
+"03101110.xhp\n"
+"par_idN10594\n"
"help.text"
-msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
-msgstr "Trả về ProcessServiceManager (ServiceManager Uno trung tâm)."
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3145136\n"
-"3\n"
+"03101110.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
-msgstr "Hàm này cần thiết khi bạn muốn khởi tạo một dịch vụ dùng CreateInstanceWithArguments."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3153681\n"
-"4\n"
+"03101110.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3151110\n"
-"5\n"
+"03101110.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr "oServiceManager = GetProcessServiceManager()"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3149516\n"
-"6\n"
+"03101110.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3143270\n"
-"7\n"
+"03101110.xhp\n"
+"par_idN105B0\n"
"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr "oServiceManager = GetProcessServiceManager()"
+msgid "<emph>DefCur:</emph> Currency"
+msgstr "<emph>DefCur:</emph> tiền tệ"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3153825\n"
-"8\n"
+"03101110.xhp\n"
+"par_idN105B7\n"
"help.text"
-msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
-msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3148473\n"
-"9\n"
+"03101110.xhp\n"
+"par_idN105BB\n"
"help.text"
-msgid "this is the same as the following statement:"
-msgstr "tương đương với câu lệnh theo đây:"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tố cho các kiểu biến:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3145609\n"
-"10\n"
+"03101110.xhp\n"
+"par_idN105D9\n"
"help.text"
-msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgid "cCur=Currency REM cCur is an implicit currency variable"
+msgstr "cCur=Currency REM cCur là một biến tiền tệ ngầm"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
+"03101120.xhp\n"
"tit\n"
"help.text"
-msgid "Asc Function [Runtime]"
-msgstr "Hàm Asc [Runtime]"
+msgid "DefErr Statement [Runtime]"
+msgstr "Câu lệnh DefErr [Runtime]"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"bm_id3150499\n"
+"03101120.xhp\n"
+"bm_id8177739\n"
"help.text"
-msgid "<bookmark_value>Asc function</bookmark_value>"
-msgstr "<bookmark_value>hàm Asc</bookmark_value>"
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefErr</bookmark_value>"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3150499\n"
-"1\n"
+"03101120.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Hàm Asc [Runtime]\">Hàm Asc [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Câu lệnh DefErr [Runtime]</link>"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3151384\n"
-"2\n"
+"03101120.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
-msgstr "Trả về giá trị ASCII (mã tiêu chuẩn Mỹ để trao đổi thông tin) của ký tự thứ nhất theo một biểu thức chuỗi."
+msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefErr</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3155555\n"
-"3\n"
+"03101120.xhp\n"
+"par_idN10590\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3143267\n"
-"4\n"
+"03101120.xhp\n"
+"par_idN10594\n"
"help.text"
-msgid "Asc (Text As String)"
-msgstr "Asc (Text As String)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3147242\n"
-"5\n"
+"03101120.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3150669\n"
-"6\n"
+"03101120.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3148473\n"
-"7\n"
+"03101120.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3149415\n"
-"8\n"
+"03101120.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
-msgstr "<emph>Chuỗi:</emph> bất cứ biểu thức chuỗi hợp lệ nào. Chỉ ký tự đầu tiên trong chuỗi này là thích hợp."
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3145609\n"
-"9\n"
+"03101120.xhp\n"
+"par_idN105B0\n"
"help.text"
-msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
-msgstr "Hãy dùng hàm Asc để thay thế phím bằng giá trị. Nếu hàm Asc gặp một chuỗi rỗng, thì $[officename] Basic thông báo một lỗi lúc chạy. Thêm vào các ký tự 7-bit ASCII (Mã 0-127), hàm Asc cũng có thể phát hiện mã phím không in được theo mã ASCII. Hàm này cũng có thể thao tác ký tự 16-bit Unicode."
+msgid "<emph>DefErr:</emph> Error"
+msgstr "<emph>DefErr:</emph> lỗi"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3159413\n"
-"10\n"
+"03101120.xhp\n"
+"par_idN105B7\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"par_id3150792\n"
-"12\n"
-"help.text"
-msgid "Print ASC(\"A\") ' returns 65"
-msgstr "Print ASC(\"A\") REM trả về 65"
-
-#: 03120101.xhp
-#, fuzzy
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3148797\n"
-"13\n"
+"03101120.xhp\n"
+"par_idN105BB\n"
"help.text"
-msgid "Print ASC(\"Z\") ' returns 90"
-msgstr "Print ASC(\"Z\") REM trả về 90"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tế cho các kiểu biến:"
-#: 03120101.xhp
-#, fuzzy
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3163800\n"
-"14\n"
+"03101120.xhp\n"
+"par_idN105D9\n"
"help.text"
-msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
-msgstr "Print ASC(\"Las Vegas\") REM trả về 76, vì chỉ ký tự đầu tiên được xử lý."
+msgid "eErr=Error ' eErr is an implicit error variable"
+msgstr "eErr=Error REM eErr là một biến lỗi ngầm"
-#: 03120101.xhp
+#: 03101130.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_idN1067B\n"
+"03101130.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
-msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgid "DefSng Statement [Runtime]"
+msgstr "Câu lệnh DefSng [Runtime]"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"tit\n"
+"03101130.xhp\n"
+"bm_id2445142\n"
"help.text"
-msgid "CDbl Function [Runtime]"
-msgstr "Hàm CDbl [Runtime]"
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefSng</bookmark_value>"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"bm_id3153750\n"
+"03101130.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "<bookmark_value>CDbl function</bookmark_value>"
-msgstr "<bookmark_value>hàm CDbl</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Câu lệnh DefSng [Runtime]</link>"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3153750\n"
-"1\n"
+"03101130.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"Hàm CDbl [Runtime]\">Hàm CDbl [Runtime]</link>"
+msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefSng</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3149233\n"
-"2\n"
+"03101130.xhp\n"
+"par_idN1058A\n"
"help.text"
-msgid "Converts any numerical expression or string expression to a double type."
-msgstr "Chuyển đổi bất cứ biểu thức nào kiểu chuỗi hay thuộc số sang một kiểu đôi."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3149516\n"
-"3\n"
+"03101130.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3156152\n"
-"4\n"
+"03101130.xhp\n"
+"par_idN10591\n"
"help.text"
-msgid "CDbl (Expression)"
-msgstr "CDbl(Biểu_thức)"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3153061\n"
-"5\n"
+"03101130.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "Return value"
-msgstr "Giá trị trả về"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"6\n"
+"03101130.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03101130.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3153897\n"
-"8\n"
+"03101130.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>Biểu_thức</emph>: bất cứ biểu thức nào kiểu chuỗi hay thuộc số mà bạn muốn chuyển đổi. Để chuyển đổi một biểu thức kiểu chuỗi, số phải được nhập dạng văn bản bình thường (\"123.5\"), dùng định dạng số mặc định của hệ điều hành của bạn."
+msgid "<emph>DefSng:</emph> Single"
+msgstr "<emph>DefSng:</emph> đơn"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3148797\n"
-"9\n"
+"03101130.xhp\n"
+"par_idN105B1\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"tit\n"
+"03101130.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "Cos Function [Runtime]"
-msgstr "Hàm Cos [Runtime]"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tế cho các kiểu biến:"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"bm_id3154923\n"
+"03101130.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "<bookmark_value>Cos function</bookmark_value>"
-msgstr "<bookmark_value>hàm Cos</bookmark_value>"
+msgid "sSng=Single ' sSng is an implicit single variable"
+msgstr "sSng=Single REM sSng là một biến đơn ngầm"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3154923\n"
-"1\n"
+"03101140.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Hàm Cos [Runtime]\">Hàm Cos [Runtime]</link>"
+msgid "DefStr Statement [Runtime]"
+msgstr "Câu lệnh DefStr [Runtime]"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3159413\n"
-"2\n"
+"03101140.xhp\n"
+"bm_id6161381\n"
"help.text"
-msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
-msgstr "Tính cosin của một góc. Góc được ghi rõ theo độ. Kết quả nằm giữa -1 và +1."
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefStr</bookmark_value>"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3150358\n"
-"3\n"
+"03101140.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "Using the angle Alpha, the Cos-Function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
-msgstr "Dùng góc Alpha, hàm Cos tính tỷ lệ là chiều dài của cạnh kề với góc chia cho chiều dài của cạnh huyền, trong một hình tam giác vuông góc."
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Câu lệnh DefStr [Runtime]</link>"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3154141\n"
-"4\n"
+"03101140.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "Cos(Alpha) = Adjacent/Hypotenuse"
-msgstr "Cos(Alpha) = Kề/Huyền"
+msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì câu lệnh <emph>DefStr</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3154125\n"
-"5\n"
+"03101140.xhp\n"
+"par_idN1058A\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3145172\n"
-"6\n"
-"help.text"
-msgid "Cos (Number)"
-msgstr "Cos (Số)"
-
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"8\n"
+"03101140.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3153969\n"
-"9\n"
+"03101140.xhp\n"
+"par_idN10591\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3153770\n"
-"10\n"
-"help.text"
-msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
-msgstr "<emph>Số:</emph> biểu thức thuộc số mà ghi rõ một góc theo radian cho đó bạn muốn tính cosin."
-
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3145749\n"
-"11\n"
+"03101140.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
-msgstr "Để chuyển đổi một số độ sang radian, hãy nhân số độ với π/180. Ngược lại, để chuyển đổi một số radian sang độ, nhân số radian với 180/π."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3149664\n"
-"12\n"
+"03101140.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "độ=(radian*180)/π"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3146985\n"
-"13\n"
+"03101140.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr "radian=(độ*π)/180"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3152885\n"
-"14\n"
+"03101140.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
-msgstr "Pi (π) ở đây là hằng số hình tròn cố định có giá trị được làm tròn 3.14159..."
+msgid "<emph>DefStr:</emph> String"
+msgstr "<emph>DefStr:</emph> chuỗi"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3153951\n"
-"15\n"
+"03101140.xhp\n"
+"par_idN105B1\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3155855\n"
-"16\n"
-"help.text"
-msgid "' The following example allows for a right-angled triangle the input of"
-msgstr "REM Mẫu ví dụ theo đây cho phép (đối với một hình tam giác vuông góc) nhập"
-
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149484\n"
-"17\n"
-"help.text"
-msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
-msgstr "REM sec và góc (theo độ), và tính chiều dài của cạnh huyền:"
-
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150010\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159"
-msgstr "REM π = 3.14159 (được làm tròn)"
-
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3144764\n"
-"21\n"
+"03101140.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
-msgstr "d1 = InputBox$ (\"\"Nhập chiều dài của cạnh kề: \",\"Kề\")"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tế cho các kiểu biến:"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3154491\n"
-"22\n"
+"03101140.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-msgstr "dAngle = InputBox$ (\"Nhập góc Alpha theo độ: \",\"Alpha\")"
+msgid "sStr=String ' sStr is an implicit string variable"
+msgstr "sStr=String REM sStr là một biến chuỗi ngầm"
-#: 03080102.xhp
+#: 03101300.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3151074\n"
-"23\n"
+"03101300.xhp\n"
+"tit\n"
"help.text"
-msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
-msgstr "Print \"Chiều dài của cạnh huyền là; (d1 / cos (dAngle * Pi / 180))"
+msgid "DefDate Statement [Runtime]"
+msgstr "Câu lệnh DefDate [Runtime]"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"tit\n"
+"03101300.xhp\n"
+"bm_id3150504\n"
"help.text"
-msgid "Manage Breakpoints"
-msgstr "Quản lý Điểm ngắt"
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefDate</bookmark_value>"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3154927\n"
+"03101300.xhp\n"
+"hd_id3150504\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
-msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Quản lý Điểm ngắt\">Quản lý Điểm ngắt</link>"
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"Câu lệnh DefDate [Runtime]\">Câu lệnh DefDate [Runtime]</link>"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3148550\n"
+"03101300.xhp\n"
+"par_id3145069\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Ghi rõ các tùy chọn về điểm ngắt.</ahelp>"
+msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì câu lệnh <emph>DefDate</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3149670\n"
+"03101300.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
-msgid "Breakpoints"
-msgstr "Điểm ngắt"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3150398\n"
+"03101300.xhp\n"
+"par_id3148664\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Nhập số thứ tự dòng cho một điểm ngắt mới, sau đó nhấn vào nút <emph>Mới</emph>.</ahelp>"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3156280\n"
+"03101300.xhp\n"
+"hd_id3150541\n"
+"5\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Tham số :"
+
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"par_id3156709\n"
"6\n"
"help.text"
-msgid "Active"
-msgstr "Hoạt động"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3154910\n"
+"03101300.xhp\n"
+"par_id3150869\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_ACTIV\">Bật/tắt điểm ngắt hiện thời.</ahelp>"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3144500\n"
+"03101300.xhp\n"
+"par_id3145171\n"
"8\n"
"help.text"
-msgid "Pass Count"
-msgstr "Đếm lần qua"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3161831\n"
+"03101300.xhp\n"
+"par_id3150767\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Ghi rõ số vòng lặp cần chạy trước khi điểm ngắt có tác động.</ahelp>"
+msgid "<emph>DefDate:</emph> Date"
+msgstr "<emph>DefDate:</emph> ngày"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3152579\n"
+"03101300.xhp\n"
+"hd_id3153768\n"
"10\n"
"help.text"
-msgid "New"
-msgstr "Mới"
-
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"par_id3148575\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Tạo một điềm ngắt trên dòng có số thứ tự đã ghi rõ.</ahelp>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3147319\n"
+"03101300.xhp\n"
+"par_id3145785\n"
"12\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tế cho các kiểu biến:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3153363\n"
-"13\n"
+"03101300.xhp\n"
+"par_id3152462\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Xoá điểm ngắt đã chọn.</ahelp>"
+msgid "tDate=Date ' tDate is an implicit date variable"
+msgstr "tDate=Date REM tDate là một biến ngày tháng ngầm"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
+"03101400.xhp\n"
"tit\n"
"help.text"
-msgid "Array Function [Runtime]"
-msgstr "Hàm Array [Runtime]"
+msgid "DefDbl Statement [Runtime]"
+msgstr "Câu lệnh DefDbl [Runtime]"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"bm_id3150499\n"
+"03101400.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<bookmark_value>Array function</bookmark_value>"
-msgstr "<bookmark_value>hàm Array</bookmark_value>"
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefDbl</bookmark_value>"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3150499\n"
+"03101400.xhp\n"
+"hd_id3147242\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Hàm Array [Runtime]\">Hàm Array [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"Câu lệnh DefDbl [Runtime]\">Câu lệnh DefDbl [Runtime]</link>"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3155555\n"
+"03101400.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Returns the type Variant with a data field."
-msgstr "Trả về kiểu Biến thế với một trường dữ liệu."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3148538\n"
+"03101400.xhp\n"
+"hd_id3155420\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153126\n"
+"03101400.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "Array ( Argument list)"
-msgstr "Array ( Danh_sách_đối_số)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3155419\n"
+"03101400.xhp\n"
+"hd_id3145069\n"
"5\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-msgstr "Xem thêm <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3150669\n"
+"03101400.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3145609\n"
+"03101400.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr "<emph>Danh_sách_đối_số :</emph> một danh sách chứa bất cứ số đối số nào định giới bằng dấu phẩy."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3156343\n"
+"03101400.xhp\n"
+"par_id3151210\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153897\n"
+"03101400.xhp\n"
+"par_id3154123\n"
"9\n"
"help.text"
-msgid "Dim A As Variant"
-msgstr "Dim A As Variant"
+msgid "<emph>DefDbl:</emph> Double"
+msgstr "<emph>DefDbl:</emph> đôi"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153525\n"
+"03101400.xhp\n"
+"hd_id3153192\n"
"10\n"
"help.text"
-msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
-msgstr "A = Array(\"Tuấn\",\"Minh\",\"Trường\")"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3150792\n"
-"11\n"
+"03101400.xhp\n"
+"par_id3156281\n"
+"12\n"
"help.text"
-msgid "Msgbox A(2)"
-msgstr "Msgbox A(2)"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tế cho các kiểu biến:"
-#: 03120104.xhp
+#: 03101400.xhp
msgctxt ""
-"03120104.xhp\n"
+"03101400.xhp\n"
+"par_id3153144\n"
+"22\n"
+"help.text"
+msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
+msgstr "dValue=1.23e43 REM dValue là một kiểu biến đôi ngầm"
+
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
"tit\n"
"help.text"
-msgid "Val Function [Runtime]"
-msgstr "Hàm Val [Runtime]"
+msgid "DefInt Statement [Runtime]"
+msgstr "Câu lệnh DefInt [Runtime]"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"bm_id3149205\n"
+"03101500.xhp\n"
+"bm_id3149811\n"
"help.text"
-msgid "<bookmark_value>Val function</bookmark_value>"
-msgstr "<bookmark_value>hàm Val</bookmark_value>"
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefInt</bookmark_value>"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3149205\n"
+"03101500.xhp\n"
+"hd_id3149811\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Hàm Val [Runtime]\">Hàm Val [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"Câu lệnh DefInt [Runtime]\">Câu lệnh DefInt [Runtime]</link>"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3153345\n"
+"03101500.xhp\n"
+"par_id3149762\n"
"2\n"
"help.text"
-msgid "Converts a string to a numeric expression."
-msgstr "Chuyển đổi một chuỗi sang một biểu thức thuộc số."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3159157\n"
+"03101500.xhp\n"
+"hd_id3148686\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3149514\n"
+"03101500.xhp\n"
+"par_id3156023\n"
"4\n"
"help.text"
-msgid "Val (Text As String)"
-msgstr "Val (Text As String)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3150669\n"
+"03101500.xhp\n"
+"hd_id3156344\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3143228\n"
+"03101500.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3156024\n"
+"03101500.xhp\n"
+"par_id3150398\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3154348\n"
+"03101500.xhp\n"
+"par_id3154365\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
-msgstr "<emph>Chuỗi:</emph> chuỗi mà đại diện một số."
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3149670\n"
+"03101500.xhp\n"
+"par_id3125863\n"
"9\n"
"help.text"
-msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
-msgstr "Dùng hàm <emph>Val</emph>, bạn có thể chuyển đổi một chuỗi mà đại diện các số sang các biểu thức thuộc số. Hàm này đảo ngược hàm <emph>Str</emph>. Nếu chỉ một phần của chuỗi chứa số, chỉ những ký tự thích hợp đầu tiên của chuỗi được chuyển đổi. Nếu chuỗi không chứa số, thì hàm <emph>Val</emph> trả về giá trị 0."
+msgid "<emph>DefInt:</emph> Integer"
+msgstr "<emph>DefInt:</emph> số nguyên"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3154365\n"
+"03101500.xhp\n"
+"hd_id3154123\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions for Screen Input"
-msgstr "Hàm để nhập vào màn hình"
-
-#: 03010200.xhp
+#: 03101500.xhp
msgctxt ""
-"03010200.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"03101500.xhp\n"
+"par_id3151042\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
-msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Hàm để nhập vào màn hình\">Hàm để nhập vào màn hình</link>"
+msgid "' Prefix definitions for variable types"
+msgstr "REM Xác định tiền tố cho các kiểu biến:"
-#: 03010200.xhp
+#: 03101500.xhp
msgctxt ""
-"03010200.xhp\n"
-"par_id3150398\n"
-"2\n"
+"03101500.xhp\n"
+"par_id3153728\n"
+"22\n"
"help.text"
-msgid "This section describes Runtime functions used to control screen input."
-msgstr "Phần này diễn tả các hàm lúc chạy được dùng để điều khiển cách nhập vào màn hình."
+msgid "iCount=200 ' iCount is an implicit integer variable"
+msgstr "iCount=200 REM iCount là một biến số nguyên ngầm"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
+"03101600.xhp\n"
"tit\n"
"help.text"
-msgid "MkDir Statement [Runtime]"
-msgstr "Câu lệnh MkDir [Runtime]"
+msgid "DefLng Statement [Runtime]"
+msgstr "Câu lệnh DefLng [Runtime]"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"bm_id3156421\n"
+"03101600.xhp\n"
+"bm_id3148538\n"
"help.text"
-msgid "<bookmark_value>MkDir statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh MkDir</bookmark_value>"
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefLng</bookmark_value>"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3156421\n"
+"03101600.xhp\n"
+"hd_id3148538\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Câu lệnh MkDir [Runtime]\">Câu lệnh MkDir [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"Câu lệnh DefLng [Runtime]\">Câu lệnh DefLng [Runtime]</link>"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3147000\n"
+"03101600.xhp\n"
+"par_id3149514\n"
"2\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Tạo một thư mục mới trên một vật chứa dữ liệu."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
+"03101600.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3155150\n"
+"03101600.xhp\n"
+"par_id3145609\n"
"4\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
+"03101600.xhp\n"
+"hd_id3154760\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3153750\n"
+"03101600.xhp\n"
+"par_id3145069\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ tên và đường dẫn của thư mục cần tạo. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3153311\n"
+"03101600.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "If the path is not determined, the directory is created in the current directory."
-msgstr "Chưa xác định đường dẫn thì thư mục được tạo trong thư mục hiện thời."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
+"03101600.xhp\n"
+"par_id3148798\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149762\n"
-"10\n"
-"help.text"
-msgid "' Example for functions of the file organization"
-msgstr "' Thí dụ về các hàm tổ chức tập tin"
-
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149669\n"
-"13\n"
-"help.text"
-msgid "Const sSubDir1 As String =\"Test\""
-msgstr "Const sSubDir1 as String =\"Test\""
-
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3148663\n"
-"14\n"
-"help.text"
-msgid "Const sFile2 As String = \"Copied.tmp\""
-msgstr "Const sFile2 as String = \"Copied.tmp\""
-
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154071\n"
-"15\n"
-"help.text"
-msgid "Const sFile3 As String = \"Renamed.tmp\""
-msgstr "Const sFile3 as String = \"Renamed.tmp\""
-
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154217\n"
-"19\n"
-"help.text"
-msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
-msgstr "If Dir(sSubDir1,16)=\"\" then ' Does the directory exist ?"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147228\n"
-"21\n"
-"help.text"
-msgid "MsgBox sFile,0,\"Create directory\""
-msgstr "MsgBox sFile,0,\"Create directory\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153770\n"
-"26\n"
-"help.text"
-msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-msgstr "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3159154\n"
-"27\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
-msgstr "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149484\n"
-"28\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
-msgstr "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3152885\n"
-"29\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
-msgstr "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153952\n"
-"31\n"
-"help.text"
-msgid "' Rename in the same directory"
-msgstr "' Thay đổi tên trong cùng một thư mục"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3147426\n"
-"34\n"
+"03101600.xhp\n"
+"par_id3154686\n"
+"9\n"
"help.text"
-msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
-msgstr "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgid "<emph>DefLng:</emph> Long"
+msgstr "<emph>DefLng:</emph> dài"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3148647\n"
-"35\n"
+"03101600.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
-msgstr "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3150092\n"
-"40\n"
+"03101600.xhp\n"
+"par_id3154124\n"
+"12\n"
"help.text"
-msgid "' Converts a system path in URL"
-msgstr "' Chuyển đổi một đường dẫn hệ thống theo URL"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tế cho các kiểu biến:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3156276\n"
-"49\n"
+"03101600.xhp\n"
+"par_id3145273\n"
+"22\n"
"help.text"
-msgid "' the colon with DOS"
-msgstr "' dấu hai chấm với DOS"
+msgid "lCount=123456789 ' lCount is an implicit long integer variable"
+msgstr "lCount=123456789 REM lCount là một biến số nguyên dài ngầm"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
+"03101700.xhp\n"
"tit\n"
"help.text"
-msgid "On Error GoTo ... Resume Statement [Runtime]"
-msgstr "Câu lệnh tiếp tục On Error GoTo ... [Runtime]"
+msgid "DefObj Statement [Runtime]"
+msgstr "Câu lệnh DefObj [Runtime]"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"bm_id3146795\n"
+"03101700.xhp\n"
+"bm_id3149811\n"
"help.text"
-msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
-msgstr "<bookmark_value>tham số Resume Next</bookmark_value><bookmark_value>câu lệnh tiếp tục On Error GoTo ...</bookmark_value>"
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefObj</bookmark_value>"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3146795\n"
+"03101700.xhp\n"
+"hd_id3149811\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"Câu lệnh tiếp tục On Error GoTo ... [Runtime]\">Câu lệnh tiếp tục On Error GoTo ... [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"Câu lệnh DefObj [Runtime]\">Câu lệnh DefObj [Runtime]</link>"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150358\n"
+"03101700.xhp\n"
+"par_id3147573\n"
"2\n"
"help.text"
-msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
-msgstr "Gặp lỗi thì hiệu lực một hàm quản lý lỗi, hoặc tiếp tục lại thực hiện chương trình."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
+"03101700.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3145173\n"
+"03101700.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
-msgstr "On {Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
+"03101700.xhp\n"
+"hd_id3153896\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150869\n"
-"7\n"
+"03101700.xhp\n"
+"par_id3148552\n"
+"6\n"
"help.text"
-msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
-msgstr "<emph>GoTo Labelname:</emph> gặp lỗi thì hiệu lực hàm quản lý lỗi mà bắt đầu ở dòng « Labelname »."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150439\n"
-"8\n"
+"03101700.xhp\n"
+"par_id3150358\n"
+"7\n"
"help.text"
-msgid "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
-msgstr "<emph>Resume Next:</emph> gặp lỗi thì tiếp tục lại thực hiện chương trình bằng cách chạy câu lệnh đi theo câu lệnh vừa gặp lỗi."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3149482\n"
-"9\n"
+"03101700.xhp\n"
+"par_id3148798\n"
+"8\n"
"help.text"
-msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
-msgstr "<emph>GoTo 0:</emph> tắt hàm quản lý lỗi trong thủ tục hiện thời."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3149483\n"
+"03101700.xhp\n"
+"par_id3150769\n"
"9\n"
"help.text"
-msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
-msgstr ""
+msgid "<emph>DefObj:</emph> Object"
+msgstr "<emph>DefObj:</emph> đối tượng"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3148619\n"
+"03101700.xhp\n"
+"hd_id3156212\n"
"10\n"
"help.text"
-msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
-msgstr ""
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"11\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3153876\n"
-"52\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"This is a line of text\""
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3146916\n"
-"67\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Glossary"
-msgstr "Từ điển Thuật ngữ $[officename] Basic"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145068\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
-msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"Từ điển Thuật ngữ $[officename] Basic\">Từ điển Thuật ngữ $[officename] Basic</link>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3150792\n"
-"2\n"
-"help.text"
-msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
-msgstr "Từ điển thuật ngữ này giải thích một số thuật ngữ mà bạn có thể thấy trong khi làm việc với $[officename] Basic."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155133\n"
-"7\n"
-"help.text"
-msgid "Decimal Point"
-msgstr "Dấu thập phân"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156443\n"
-"8\n"
-"help.text"
-msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
-msgstr "Khi chuyển đổi con số, $[officename] Basic dùng thiết lập miền địa phương của hệ thống để xác định kiểu dấu tách thập phân và dấu tách hàng nghìn. (Có miền địa phương Việt Nam để cung cấp thiết lập tiếng Việt và các đơn vị, thứ tự đối chiếu và ngày/giờ thích hợp.)"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153092\n"
-"9\n"
-"help.text"
-msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
-msgstr "Ứng xử có tác động cả hai việc chuyển đổi ẩn ( 1 + \"2.3\" = 3.3 ) và hàm lúc chạy <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link> (thuộc số)."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155854\n"
-"29\n"
-"help.text"
-msgid "Colors"
-msgstr "Màu sắc"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3145366\n"
-"30\n"
-"help.text"
-msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
-msgstr "Trong mã $[officename] Basic, màu sắc lúc nào cũng được xử lý dưới dạng giá trị số nguyên dài. Giá trị trả về của màu sắc cũng lúc nào là giá trị số nguyên dài. Khi bạn xác định các thuộc tính, cũng có thể ghi rõ màu sắc theo mã RGB (Đỏ, Lục, Xanh) được chuyển đổi sang giá trị số nguyên dài, dùng <link href=\"text/sbasic/shared/03010305.xhp\" name=\"hàm RGB\">hàm RGB</link>."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3146119\n"
-"32\n"
-"help.text"
-msgid "Measurement Units"
-msgstr "Đơn vị đo"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154013\n"
-"33\n"
-"help.text"
-msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
-msgstr ""
-
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3145801\n"
+"03101700.xhp\n"
+"par_id3153969\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>twips; definition</bookmark_value>"
-msgstr "<bookmark_value>twips; định nghĩa</bookmark_value>"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tố cho các kiểu biến:"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3145801\n"
-"5\n"
+"03101700.xhp\n"
+"par_id3156424\n"
+"13\n"
"help.text"
-msgid "Twips"
-msgstr "Twips"
+msgid "DefBool b"
+msgstr "DefBool b"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154731\n"
-"6\n"
+"03101700.xhp\n"
+"par_id3159254\n"
+"14\n"
"help.text"
-msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
-msgstr "Một twip là một đơn vị không phụ thuộc vào màn hình mà được dùng để xác định thống nhất vị trí và kích cỡ của phần tử màn hình trên mọi hệ thống hiển thị. Một twip là 1/1440 insơ hay 1/20 điểm in. Có 1440 twip trong mỗi insơ, và khoảng 567 twip trong mỗi xenti-mét."
+msgid "DefDate t"
+msgstr "DefDate t"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3153159\n"
-"106\n"
+"03101700.xhp\n"
+"par_id3150440\n"
+"15\n"
"help.text"
-msgid "URL Notation"
-msgstr "Kiểu ghi URL"
+msgid "DefDbL d"
+msgstr "DefDbL d"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3153415\n"
-"108\n"
+"03101700.xhp\n"
+"par_id3161832\n"
+"16\n"
"help.text"
-msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
-msgstr "URL (bộ định vị tài nguyên thống nhất) được dùng để xác định địa điểm của một tài nguyên nào đó (v.d. một tập tin trong hệ thống tập tin), bình thường bên trong môi trường mạng. Một địa chỉ URL chứa ba phần ghi rõ (1) giao thức, (2) tên máy và (3) đường dẫn:"
+msgid "DefInt i"
+msgstr "DefInt i"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149121\n"
-"107\n"
+"03101700.xhp\n"
+"par_id3145365\n"
+"17\n"
"help.text"
-msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
-msgstr "<emph>giao thức</emph>://<emph>tên_của_máy</emph>/<emph>đường/dẫn/đến/tập_tin.html</emph>"
+msgid "DefLng l"
+msgstr "DefLng l"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3168612\n"
-"109\n"
+"03101700.xhp\n"
+"par_id3149481\n"
+"18\n"
"help.text"
-msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
-msgstr "Địa chỉ URL thường dùng trên Internet để định vị trang Web. Một số giao thức thường dùng là <emph>http</emph> (trang Web), <emph>ftp</emph> (truyền tập tin) và <emph>file</emph>. Giao thức <emph>file</emph> được dùng khi tham chiếu đến một tập tin nằm trên hệ thống tập tin cục bộ."
+msgid "DefObj o"
+msgstr "DefObj o"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3150324\n"
-"110\n"
+"03101700.xhp\n"
+"par_id3152886\n"
+"19\n"
"help.text"
-msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
-msgstr "Kiểu ghi địa chỉ URL không cho phép dùng một số ký tự đặc biệt nào đó. Chúng hoặc được thay thế bằng ký tự khác, hoặc được mã hoá. Một sổ chéo (<emph>/</emph>) được dùng làm dấu tách phần đường dẫn. Ví dụ, một tập tin được gọi <emph>C:\\My File.sxw</emph> trên máy cục bộ dưới Windows trở thành <emph>file:///C|/My%20File.sxw</emph> theo kiểu ghi URL."
+msgid "DefVar v"
+msgstr "DefVar v"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
+"03102000.xhp\n"
"tit\n"
"help.text"
-msgid "Join Function [Runtime]"
-msgstr "Hàm Join [Runtime]"
+msgid "DefVar Statement [Runtime]"
+msgstr "Câu lệnh DefVar [Runtime]"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"bm_id3149416\n"
+"03102000.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>Join function</bookmark_value>"
-msgstr "<bookmark_value>hàm Join</bookmark_value>"
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh DefVar</bookmark_value>"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3149416\n"
+"03102000.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Hàm Join [Runtime]\">Hàm Join [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"Câu lệnh DefVar [Runtime]\">Câu lệnh DefVar [Runtime]</link>"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3149670\n"
+"03102000.xhp\n"
+"par_id3153825\n"
"2\n"
"help.text"
-msgid "Returns a string from a number of substrings in a string array."
-msgstr "Trả về một chuỗi từ một số các chuỗi phụ trong một mảng chuỗi."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
+"03102000.xhp\n"
+"hd_id3154143\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3156344\n"
+"03102000.xhp\n"
+"par_id3149514\n"
"4\n"
"help.text"
-msgid "Join (Text As String Array, delimiter)"
-msgstr "Join (Text As String Array, dấu_tách)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3150400\n"
+"03102000.xhp\n"
+"hd_id3156024\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
+"03102000.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
+"03102000.xhp\n"
+"par_id3148552\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3145171\n"
+"03102000.xhp\n"
+"par_id3153524\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> A string array."
-msgstr "<emph>Text:</emph> một mảng văn bản."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3154908\n"
+"03102000.xhp\n"
+"par_id3150767\n"
"9\n"
"help.text"
-msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
-msgstr "<emph>dấu tách (tùy chọn):</emph> một ký tự chuỗi được dùng để phân cách các chuỗi phụ trong chuỗi kết quả. Dấu tách mặc định là ký tự khoảng trống. Nếu dấu tách là một chuỗi có chiều dài số không « », thì các chuỗi phụ được ghép nối, không định giới."
+msgid "<emph>DefVar:</emph> Variant"
+msgstr "<emph>DefVar:</emph> biến thế"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
+"03102000.xhp\n"
+"hd_id3151041\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateValue Function [Runtime]"
-msgstr "Hàm DateValue [Runtime]"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>DateValue function</bookmark_value>"
-msgstr "<bookmark_value>hàm DateValue</bookmark_value>"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3156344\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"Hàm DateValue [Runtime]\">Hàm DateValue [Runtime]</link>"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3150542\n"
-"2\n"
-"help.text"
-msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
-msgstr "Trả về một giá trị ngày tháng từ một chuỗi ngày tháng. Chuỗi ngày tháng là một ngày tháng hoàn toàn được đại diện dưới dạng một giá trị thuộc số riêng lẻ. Bạn cũng có thể sử dụng số dãy này để tính hiệu của hai ngày tháng."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "DateValue [(date)]"
-msgstr "DateValue [(ngày)]"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Ngày"
-
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"hd_id3153969\n"
-"7\n"
+"03102000.xhp\n"
+"par_id3156214\n"
+"11\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM Xác định tiền tế cho các kiểu biến:"
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"par_id3153770\n"
-"8\n"
+"03102000.xhp\n"
+"par_id3154012\n"
+"21\n"
"help.text"
-msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
-msgstr "<emph>Ngày:</emph> biểu thức chuỗi mà chứa ngày tháng bạn muốn tính. Có thể ghi rõ ngày tháng bằng gần bất cứ định dạng nào."
+msgid "vDiv=99 ' vDiv is an implicit variant"
+msgstr "vDiv=99 REM vDiv là một biến thế ngầm"
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"par_id3153189\n"
+"03102000.xhp\n"
+"par_id3146121\n"
"22\n"
"help.text"
-msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
-msgstr "Bạn có thể sử dụng hàm này để chuyển đổi một ngày tháng mà xảy ra giữa ngày 1582-12-01 và 9999-12-31 sang một giá trị số nguyên riêng lẻ. Do đó thì bạn có thể sử dụng giá trị này để tính hiệu của hai ngày đó. Nếu đối số ngày tháng nằm ở ngoại phạm vi hợp lệ, $[officename] sẽ trả về một thông điệp lỗi."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3146974\n"
-"23\n"
-"help.text"
-msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
-msgstr "Trái ngược với hàm DateSerial mà gửi mỗi năm, tháng và ngày dưới dạng một giá trị riêng, hàm DateValue gửi ngày tháng dưới dạng « tháng.[,]ngày.[,]năm »."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153142\n"
-"24\n"
-"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Contents"
-msgstr "Chỉnh Sửa Nội Dung Chuỗi"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr "<bookmark_value>dấu và trong StarBasic</bookmark_value>"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"hd_id3153894\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
-msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Chỉnh Sửa Nội Dung Chuỗi\">Chỉnh Sửa Nội Dung Chuỗi</link>"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"par_id3149178\n"
-"2\n"
-"help.text"
-msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
-msgstr "Những hàm theo đây chỉnh sửa, định dạng và canh lề nội dung của chuỗi. Hãy dùng toán tử « & » để ghép nối các chuỗi."
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateObject Function [Runtime]"
-msgstr "Hàm CreateObject [Runtime]"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"bm_id659810\n"
-"help.text"
-msgid "<bookmark_value>CreateObject function</bookmark_value>"
-msgstr "<bookmark_value>hàm CreateObject</bookmark_value>"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">hàm CreateObject [Runtime]</link>"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Tạo một đối tượng UNO. Dưới Windows, cũng có thể tạo đối tượng OLE.</ahelp>"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN1059F\n"
-"help.text"
-msgid "This method creates instances of the type that is passed as parameter."
-msgstr "Phương pháp này tạo thể hiện có kiểu được gửi dưới dạng tham số."
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "oObj = CreateObject( type )"
-msgstr "oObj = CreateObject( type )"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "vDiv=\"Hello world\""
+msgstr "vDiv=\"Chào thế giới\""
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
+"03102100.xhp\n"
"tit\n"
"help.text"
-msgid "Reset Statement [Runtime]"
-msgstr "Câu lệnh Reset [Runtime]"
+msgid "Dim Statement [Runtime]"
+msgstr "Câu lệnh Dim [Runtime]"
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"bm_id3154141\n"
+"03102100.xhp\n"
+"bm_id3149812\n"
"help.text"
-msgid "<bookmark_value>Reset statement</bookmark_value>"
-msgstr "<bookmark_value>Câu lệnh Reset (đặt lại)</bookmark_value>"
+msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Dim</bookmark_value><bookmark_value>mảng; đặt các chiều</bookmark_value><bookmark_value>đột các chiều của mảng</bookmark_value>"
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"hd_id3154141\n"
+"03102100.xhp\n"
+"hd_id3149812\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Câu lệnh Reset [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Câu lệnh Dim [Runtime]\">Câu lệnh Dim [Runtime]</link>"
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"par_id3156423\n"
+"03102100.xhp\n"
+"par_id3143271\n"
"2\n"
"help.text"
-msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
-msgstr "Đóng tất cả các tập tin còn mở và ghi nội dung của tất cả các bộ đệm tập tin vào đĩa."
+msgid "Declares a variable or an array."
+msgstr "Khai báo một biến hay mảng."
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"hd_id3154124\n"
+"03102100.xhp\n"
+"par_id3154686\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3148455\n"
-"47\n"
-"help.text"
-msgid "Print #iNumber, \"This is a new line of text\""
-msgstr "Print #iNumber, \"This is a new line of text\""
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3163805\n"
-"62\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Red Function [Runtime]"
-msgstr "Hàm Red [Runtime]"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Red function</bookmark_value>"
-msgstr "<bookmark_value>hàm Red</bookmark_value>"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148947\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Hàm Red [Runtime]\">Hàm Red [Runtime]</link>"
+msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
+msgstr "Nếu các biến phân cách bởi dấu phẩy (v.d. « DIM sPar1, sPar2, sPar3 AS STRING »), chỉ có thể xác định biến kiểu Biến thế. Hãy dùng một lời xác định riêng cho mỗi biến."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3149656\n"
-"2\n"
+"03102100.xhp\n"
+"par_id3152576\n"
+"7\n"
"help.text"
-msgid "Returns the Red component of the specified color code."
-msgstr "Trả về thành phần màu Đỏ của mã màu đã ghi rõ."
+msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
+msgstr "Câu lệnh <emph>Dim</emph> khai báo biến cục bộ bên trong chương trình con. Biến toàn cục được khai báo dùng câu lệnh PUBLIC (công) hay PRIVATE (riêng)."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3148799\n"
-"3\n"
+"03102100.xhp\n"
+"hd_id3156443\n"
+"8\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3150448\n"
-"4\n"
-"help.text"
-msgid "Red (ColorNumber As Long)"
-msgstr "Red (ColorNumber As Long)"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3145173\n"
-"6\n"
+"03102100.xhp\n"
+"par_id3149412\n"
+"9\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+msgstr "[ReDim]Dim Tên_biến [(đầu To cuối)] [As Kiểu_biến][, Tên_biến2 [(đầu To cuối)] [As Kiểu_biến][,...]]"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"7\n"
+"03102100.xhp\n"
+"hd_id3147397\n"
+"10\n"
"help.text"
-msgid "Parameter:"
+msgid "Parameters:"
msgstr "Tham số :"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3150440\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3154730\n"
+"11\n"
"help.text"
-msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
-msgstr "<emph>ColorNumber</emph>: biểu thức số nguyên dài mà ghi rõ bất cứ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"mã màu\">mã màu</link> cho đó cần trả về thành phần màu Đỏ."
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "<emph>Tên_biến:</emph> bất cứ tên nào của một biến hay mảng."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3148575\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3147125\n"
+"12\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+msgstr "<emph>đầu, cuối:</emph> giá trị thuộc số hay hằng số mà xác định số phần tử (NumberElements=(cuối-đầu)+1) và phạm vi chỉ số."
-#: 03010303.xhp
-#, fuzzy
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3147435\n"
+"03102100.xhp\n"
+"par_id3153877\n"
"13\n"
"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
+msgstr "<emph>đầu</emph> và <emph>cuối</emph> có thể là biểu thức thuộc số nếu câu lệnh <emph>ReDim</emph> được áp dụng ở bậc thủ tục."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3155306\n"
+"03102100.xhp\n"
+"par_id3153510\n"
"14\n"
"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"red= \" & red(lVar) & Chr(13)&_"
+msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
+msgstr "<emph>Kiểu_biến:</emph> từ khoá mà khai báo kiểu dữ liệu của một biến."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3149262\n"
+"03102100.xhp\n"
+"par_id3154015\n"
"15\n"
"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr "\"green= \" & green(lVar) & Chr(13)&_"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3147397\n"
+"03102100.xhp\n"
+"par_id3153949\n"
"16\n"
"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Function [Runtime]"
-msgstr "Hàm Split [Runtime]"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Split function</bookmark_value>"
-msgstr "<bookmark_value>hàm Split</bookmark_value>"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Hàm Split [Runtime]\">Hàm Split [Runtime]</link>"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3155805\n"
-"2\n"
-"help.text"
-msgid "Returns an array of substrings from a string expression."
-msgstr "Trả về một mảng các chuỗi phụ từ một biểu thức chuỗi."
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3153824\n"
-"4\n"
-"help.text"
-msgid "Split (Text As String, delimiter, number)"
-msgstr "Split (Text As String, dấu_tách, số)"
+msgid "<emph>Bool:</emph> Boolean variable (True, False)"
+msgstr "<emph>Bool:</emph> biến lôgic (Đúng/Sai)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"hd_id3149763\n"
-"5\n"
+"03102100.xhp\n"
+"par_id3156275\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
+msgstr "<emph>Tiền_tệ:</emph> biến tiền tệ (tiền tệ có 4 chữ số thập phân)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3154285\n"
-"6\n"
+"03102100.xhp\n"
+"par_id3156057\n"
+"18\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "<emph>Ngày:</emph> biến ngày"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"hd_id3145315\n"
-"7\n"
+"03102100.xhp\n"
+"par_id3148405\n"
+"19\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+msgstr "<emph>Đôi:</emph> biến chấm động chính xác đôi (1,79769313486232 × 10E308 - 4,94065645841247 × 10E-324)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3156023\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3148916\n"
+"20\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào."
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "<emph>Số nguyên:</emph> biến số nguyên (-32768 - 32767)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3147560\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3150045\n"
+"21\n"
"help.text"
-msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
-msgstr "<emph>dấu_tách (tùy chọn):</emph> một chuỗi chứa một hay nhiều ký tự mà được dùng để định giới chuỗi văn bản (Text). Mặc định là ký tự dấu cách."
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+msgstr "<emph>Dài:</emph> biến số nguyên dài (-2.147.483.648 - 2.147.483.647)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3145069\n"
-"12\n"
+"03102100.xhp\n"
+"par_id3149255\n"
+"22\n"
"help.text"
-msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
-msgstr "<emph>số (tùy chọn):</emph> số chuỗi phụ cần trả về."
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
+msgstr "<emph>Đối tượng:</emph> biến đối tượng (ghi chú : biến này chỉ có thể được xác định về sau dùng « Set »)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"hd_id3150398\n"
-"10\n"
+"03102100.xhp\n"
+"par_id3155937\n"
+"23\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+msgstr "<emph>Đơn:</emph> biến chấm động chính xác đơn (3,402823 × 10E38 - 1,401298 × 10E-45)."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"tit\n"
+"03102100.xhp\n"
+"par_id3151251\n"
+"24\n"
"help.text"
-msgid "Input# Statement [Runtime]"
-msgstr "Câu lệnh Input# [Runtime]"
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr "<emph>Chuỗi:</emph> biến chuỗi chứa nhiều nhất 64.000 ASCII ký tự."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"bm_id3154908\n"
+"03102100.xhp\n"
+"par_id3154704\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>Input statement</bookmark_value>"
-msgstr "<bookmark_value>hàm Input</bookmark_value>"
+msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
+msgstr "<emph>[Variant]:</emph> kiểu biến Biến thế (chứa tất cả các kiểu, được ghi rõ bởi lời xác định). Không ghi rõ từ khoá, thì biến được tự động xác định là Kiểu Biến Thế, nếu không dùng một câu lệnh từ <emph>DefBool</emph> tới <emph>DefVar</emph>."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3154908\n"
-"1\n"
+"03102100.xhp\n"
+"par_id3146316\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Câu lệnh Input# [Runtime]\"> Câu lệnh Input# [Runtime]</link>"
+msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+msgstr "Bằng mã $[officename] Basic, bạn không cần tuyến biến một cách dứt khoát. Tuy nhiên, bạn có phải cần phải khai báo một mảng trước khi sử dụng nó. Bạn có thể khai báo một biến dùng câu lệnh <emph>Dim</emph>, dùng dấu phẩy để phân cách nhiều lời khai báo. Để khai báo một kiểu biến, nhập một ký tự khai báo kiểu phía sau tên biến, hoặc dùng một từ khoá tương ứng."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3156424\n"
-"2\n"
+"03102100.xhp\n"
+"par_id3149924\n"
+"27\n"
"help.text"
-msgid "Reads data from an open sequential file."
-msgstr "Đọc dữ liệu từ một tập tin dãy còn mở."
+msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+msgstr "$[officename] Basic hỗ trợ mảng một/nhiều chiều được xác định bởi một kiểu biến đã ghi rõ. Mảng thích hợp nếu chương trình chứa danh sách hay bảng bạn muốn chỉnh sửa. Lợi ích của mảng là có thể đặt địa chỉ của mỗi phần tử riêng tùy theo chỉ số, mà có thể được cấu tạo dạng biểu thức thuộc số hay biến."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3125863\n"
-"3\n"
+"03102100.xhp\n"
+"par_id3148488\n"
+"28\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
+msgstr "Mảng được khai báo dùng câu lệnh <emph>Dim</emph>. Có hai phương pháp xác định phạm vi chỉ số :"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3150440\n"
-"4\n"
+"03102100.xhp\n"
+"par_id3154662\n"
+"29\n"
"help.text"
-msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
-msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
+msgstr "DIM text(20) as String REM 21 phần tử, đánh số từ 0 đến 20"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3146121\n"
-"5\n"
+"03102100.xhp\n"
+"par_id3155604\n"
+"30\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
+msgstr "DIM text(5 to 25) as String REM 21 phần tử, đánh số từ 5 đến 25"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3145749\n"
-"6\n"
+"03102100.xhp\n"
+"par_id3151274\n"
+"31\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
-msgstr "<emph>FileNumber:</emph> số thứ tự của tập tin mà chứa dữ liệu bạn muốn đọc. Tập tin phải được mở bằng câu lệnh « Open », dùng từ khoá INPUT (nhập liệu)."
+msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+msgstr "DIM text(-15 to 5) as String REM 21 phần tử (gồm có 0)"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3150011\n"
-"7\n"
+"03102100.xhp\n"
+"par_id3152774\n"
+"32\n"
"help.text"
-msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
-msgstr "<emph>var:</emph> một biến kiểu số hoặc chuỗi cho đó bạn gán các giá trị được đọc từ tập tin còn mở."
+msgid "REM numbered from -15 to 5"
+msgstr "REM đánh số từ -15 đến 5"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3159153\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3150829\n"
+"33\n"
"help.text"
-msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
-msgstr "Câu lệnh <emph>Input#</emph> đọc các giá trị thuộc số hoặc các chuỗi từ một tập tin còn mở, và gán dữ liệu cho một hai nhiều biến. Một biến thuộc số được đọc đến khi gặp đầu tiên một ký tự xuống dòng (CR, Asc=13; LF, Asc=10), dấu cách hoặc dấu phẩy. Biến chuỗi được đọc đến khi gặp đầu tiên một ký tự xuống dòng (CR, Asc=13; LF, Asc=10) hoặc dấu phẩy."
+msgid "Two-dimensional data field"
+msgstr "Trường dữ liệu chiều đôi"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3146984\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3149529\n"
+"34\n"
"help.text"
-msgid "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
-msgstr "Dữ liệu và các kiểu dữ liệu trong tập tin được mở phải xuất hiện theo cùng một thứ tự với các biến được gửi qua trong tham số « var ». Nếu bạn gán giá trị không thuộc số cho một biến thuộc số, « var » được gán một giá trị số không."
+msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
+msgstr "DIM text(20,2) as String REM 63 phần tử; từ 0 đến 20 ở bậc 1, từ 0 đến 20 ở bậc 2 và từ 0 đến 20 ở bậc 3."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3156442\n"
-"10\n"
+"03102100.xhp\n"
+"par_id3159239\n"
+"35\n"
"help.text"
-msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
-msgstr "Các bản ghi phân tách bằng dấu phẩy không thể được gán cho một biến chuỗi. Dấu nháy kép « \" » trong tập tin cũng bị bỏ qua. Nếu bạn muốn đọc các ký tự như vậy trong tập tin, hãy dùng câu lệnh <emph>Line Input#</emph> để đọc từng dòng tập tin văn bản thuần (tập tin chỉ chứa các ký tự có thể in ra)."
+msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
+msgstr "Bạn có thể khai báo một kiểu mảng là động nếu một câu lệnh <emph>ReDim</emph> xác định số chiều trong chương trình con hay hàm chứa mảng đó. Nói chung, bạn chỉ có thể xác định mỗi chiều mảng một lần, sau đó thì không thể sửa đổi. Bên trong một chương trình con, bạn có thể khai báo một mảng dùng <emph>ReDim</emph>. Chỉ có thể xác định chiều dùng biểu thức thuộc số. Trường hợp này đảm bảo các trường chỉ càng lớn càng cần thiết."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3147349\n"
-"11\n"
+"03102100.xhp\n"
+"hd_id3150344\n"
+"36\n"
"help.text"
-msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
-msgstr "Nếu tới kết thúc tập tin trong khi đọc một phần tử dữ liệu thì gặp lỗi nên hủy bỏ tiến trình."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3152578\n"
-"12\n"
+"03102100.xhp\n"
+"par_id3154657\n"
+"40\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "sVar = \"Office\""
+msgstr "sVar = \"Office\""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id4144765\n"
+"03102100.xhp\n"
+"par_id3149036\n"
+"44\n"
"help.text"
-msgid "' Write data ( which we will read later with Input ) to file"
-msgstr ""
+msgid "' Two-dimensional data field"
+msgstr "Trường dữ liệu chiều đôi"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id4144766\n"
+"03102100.xhp\n"
+"par_id3153782\n"
+"46\n"
"help.text"
-msgid "' Read data file using Input"
-msgstr ""
+msgid "Const sDim As String = \" Dimension:\""
+msgstr "Const sDim as String = \" Dimension:\""
#: 03102101.xhp
msgctxt ""
@@ -24459,7 +26819,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Declares a variable or an array."
-msgstr "Khai báo một biến hay một mảng."
+msgstr "Khai báo một biến hay mảng."
#: 03102101.xhp
msgctxt ""
@@ -24512,7 +26872,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
-msgstr "<emph>đầu, cuối:</emph> hai giá trị thuộc số hay hằng số mà xác định số phần tử (Số_phần_tử=(cuối-đầu)+1) và phạm vi chỉ số."
+msgstr "<emph>đầu, cuối:</emph> giá trị thuộc số hay hằng số mà xác định số phần tử (NumberElements=(cuối-đầu)+1) và phạm vi chỉ số."
#: 03102101.xhp
msgctxt ""
@@ -24539,7 +26899,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Từ khoá:</emph> kiểu biến"
+msgstr "<emph>Từ_khoá:</emph> kiểu biến"
#: 03102101.xhp
msgctxt ""
@@ -24557,7 +26917,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Ngày:</emph> biến ngày tháng"
+msgstr "<emph>Ngày:</emph> biến ngày"
#: 03102101.xhp
msgctxt ""
@@ -24575,7 +26935,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "<emph>Số nguyên:</emph> biến số nguyên (-32768 đến +32767)"
+msgstr "<emph>Số nguyên:</emph> biến số nguyên (-32768 - 32767)"
#: 03102101.xhp
msgctxt ""
@@ -24629,7 +26989,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
-msgstr "Trong $[officename] Basic, bạn không cần khai báo biến một cách dứt khoát. Tuy nhiên, bạn có phải cần khai báo một mảng trước khi sử dụng nó. Bạn có thể khai báo một biến dùng câu lệnh <emph>Dim</emph>, định giới nhiều lời khai báo bằng dấu phẩy. Để khai báo một kiểu biến, nhập một ký tự khai báo kiểu phía sau tên, hoặc sử dụng một từ khoá tương ứng."
+msgstr "Bằng mã $[officename] Basic, bạn không cần tuyến biến một cách dứt khoát. Tuy nhiên, bạn có phải cần phải khai báo một mảng trước khi sử dụng nó. Bạn có thể khai báo một biến dùng câu lệnh <emph>Dim</emph>, dùng dấu phẩy để phân cách nhiều lời khai báo. Để khai báo một kiểu biến, nhập một ký tự khai báo kiểu phía sau tên biến, hoặc dùng một từ khoá tương ứng."
#: 03102101.xhp
msgctxt ""
@@ -24638,7 +26998,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
-msgstr "$[officename] Basic hỗ trợ mảng có một hay nhiều chiều, mà được xác định theo một kiểu biến nào đó. Mảng thích hợp nếu chương trình chứa danh sách hay bảng cần chỉnh sửa. Lợi ích của mảng là có thể đặt địa chỉ của mỗi phần tử riêng tùy theo chỉ số, mà có thể được cấu tạo dạng biểu thức thuộc số hay biến."
+msgstr "$[officename] Basic hỗ trợ mảng một/nhiều chiều được xác định bởi một kiểu biến đã ghi rõ. Mảng thích hợp nếu chương trình chứa danh sách hay bảng bạn muốn chỉnh sửa. Lợi ích của mảng là có thể đặt địa chỉ của mỗi phần tử riêng tùy theo chỉ số, mà có thể được cấu tạo dạng biểu thức thuộc số hay biến."
#: 03102101.xhp
msgctxt ""
@@ -24703,5047 +27063,4114 @@ msgctxt ""
msgid "Example:"
msgstr "Thí dụ :"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
+"03102200.xhp\n"
"tit\n"
"help.text"
-msgid "Day Function [Runtime]"
-msgstr "Hàm Day [Runtime]"
+msgid "IsArray Function [Runtime]"
+msgstr "Hàm IsArray [Runtime]"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"bm_id3153345\n"
+"03102200.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<bookmark_value>Day function</bookmark_value>"
-msgstr "<bookmark_value>hàm Day</bookmark_value>"
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr "<bookmark_value>hàm IsArray</bookmark_value>"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3153345\n"
+"03102200.xhp\n"
+"hd_id3154346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Hàm Day [Runtime]\">Hàm Day [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"Hàm IsArray [Runtime]\">Hàm IsArray [Runtime]</link>"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3147560\n"
+"03102200.xhp\n"
+"par_id3159413\n"
"2\n"
"help.text"
-msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
-msgstr "Trả về một giá trị đại diện ngày của tháng dựa vào một số ngày dãy được tạo ra bởi hàm <emph>DateSerial</emph> hoặc <emph>DateValue</emph>."
+msgid "Determines if a variable is a data field in an array."
+msgstr "Xác định nếu một biến là một trường dữ liệu trong một mảng, hay không."
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3149456\n"
+"03102200.xhp\n"
+"hd_id3150792\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3150358\n"
+"03102200.xhp\n"
+"par_id3153379\n"
"4\n"
"help.text"
-msgid "Day (Number)"
-msgstr "Day (Number)"
+msgid "IsArray (Var)"
+msgstr "IsArray (Biến)"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3148798\n"
+"03102200.xhp\n"
+"hd_id3154365\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3125865\n"
+"03102200.xhp\n"
+"par_id3154685\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Bool"
+msgstr "Bool"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3150448\n"
+"03102200.xhp\n"
+"hd_id3153969\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3156423\n"
+"03102200.xhp\n"
+"par_id3145172\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
-msgstr "<emph>Số:</emph> một biểu thức thuộc số mà chứa một số ngày tháng dãy từ đó bạn có thể xác định ngày của tháng."
+msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
+msgstr "<emph>Biến:</emph> bất cứ biến nào cần thử nếu nó được khai báo là một mảng hay không. Có thì hàm trả về <emph>Đúng</emph>, không thì <emph>Sai</emph>."
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3145786\n"
+"03102200.xhp\n"
+"hd_id3155131\n"
"9\n"
"help.text"
-msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
-msgstr "Về cơ bản thì hàm này là mặt đối lập của hàm DateSerial, trả về ngày của tháng từ một số ngày dãy được tạo ra bởi hàm <emph>DateSerial</emph> hoặc <emph>DateValue</emph>. Ví dụ, biểu thức"
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3153190\n"
-"11\n"
-"help.text"
-msgid "returns the value 20."
-msgstr "trả về giá trị 20."
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149481\n"
-"12\n"
-"help.text"
msgid "Example:"
-msgstr "Ví dụ :"
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3149260\n"
-"14\n"
-"help.text"
-msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
-msgstr "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr "Thí dụ :"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
+"03102300.xhp\n"
"tit\n"
"help.text"
-msgid "IsUnoStruct Function [Runtime]"
-msgstr "Hàm IsUnoStruct [Runtime]"
+msgid "IsDate Function [Runtime]"
+msgstr "Hàm IsDate [Runtime]"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"bm_id3146117\n"
+"03102300.xhp\n"
+"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>hàm IsUnoStruct</bookmark_value>"
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr "<bookmark_value>hàm IsDate</bookmark_value>"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3146117\n"
+"03102300.xhp\n"
+"hd_id3145090\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"Hàm IsUnoStruct [Runtime]\">Hàm IsUnoStruct [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"Hàm IsDate [Runtime]\">Hàm IsDate [Runtime]</link>"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3146957\n"
+"03102300.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns True if the given object is a Uno struct."
-msgstr "Trả về Đúng nếu đối tượng đã cho là một cấu trúc Uno."
+msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
+msgstr "Thử nếu một biểu thức kiểu số hay chuỗi có thể được chuyển đổi sang một biến <emph>Ngày</emph>."
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3148538\n"
+"03102300.xhp\n"
+"hd_id3153824\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3155341\n"
+"03102300.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "IsUnoStruct( Uno type )"
-msgstr "IsUnoStruct( Kiểu Uno )"
+msgid "IsDate (Expression)"
+msgstr "IsDate (Biểu_thức)"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3148473\n"
+"03102300.xhp\n"
+"hd_id3143270\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
+"03102300.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
msgid "Bool"
msgstr "Bool"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3145609\n"
+"03102300.xhp\n"
+"hd_id3148947\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3148947\n"
+"03102300.xhp\n"
+"par_id3145069\n"
"8\n"
"help.text"
-msgid "Uno type : A UnoObject"
-msgstr "Kiểu Uno : một UnoObject"
+msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
+msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức nào kiểu số hay chuỗi mà bạn muốn thử. Nếu biểu thức chuyển đổi được sang một ngày tháng, hàm trả về <emph>Đúng</emph>; không thì <emph>Sai</emph>."
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3156343\n"
+"03102300.xhp\n"
+"hd_id3150447\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "' Instantiate a service"
-msgstr "' Instantiate a service"
-
-#: 03104500.xhp
-#, fuzzy
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10644\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
-msgstr "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "' Instantiate a Property struct"
-msgstr "' Instantiate a Property struct"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10653\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-msgstr "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN1065B\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Date Values"
-msgstr "Chuyển đổi Giá trị Ngày tháng"
-
-#: 03030100.xhp
+#: 03102300.xhp
msgctxt ""
-"03030100.xhp\n"
-"hd_id3147573\n"
-"1\n"
+"03102300.xhp\n"
+"par_id3150869\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Chuyển đổi Giá trị Ngày tháng\">Chuyển đổi Giá trị Ngày tháng</link>"
+msgid "Print IsDate(sDateVar) ' Returns True"
+msgstr "print IsDate(sDateVar) REM Trả về Đúng"
-#: 03030100.xhp
+#: 03102300.xhp
msgctxt ""
-"03030100.xhp\n"
-"par_id3154760\n"
-"2\n"
+"03102300.xhp\n"
+"par_id3147288\n"
+"15\n"
"help.text"
-msgid "The following functions convert date values to calculable numbers and back."
-msgstr "Các hàm sau sẽ chuyển đổi giữa giá trị ngày tháng và số có thể tính."
+msgid "Print IsDate(sDateVar) ' Returns False"
+msgstr "print IsDate(sDateVar) REM Trả về Sai"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
+"03102400.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Function [Runtime]"
-msgstr "Hàm MsgBox [Runtime]"
+msgid "IsEmpty Function [Runtime]"
+msgstr "Hàm IsEmpty [Runtime]"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"bm_id3153379\n"
+"03102400.xhp\n"
+"bm_id3153394\n"
"help.text"
-msgid "<bookmark_value>MsgBox function</bookmark_value>"
-msgstr "<bookmark_value>hàm MsgBox</bookmark_value>"
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr "<bookmark_value>hàm IsEmpty</bookmark_value>"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153379\n"
+"03102400.xhp\n"
+"hd_id3153394\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"Hàm MsgBox [Runtime]\">Hàm MsgBox [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"Hàm IsEmpty [Runtime]\">Hàm IsEmpty [Runtime]</link>"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145171\n"
+"03102400.xhp\n"
+"par_id3163045\n"
"2\n"
"help.text"
-msgid "Displays a dialog box containing a message and returns a value."
-msgstr "Hiển thị một hộp thoại chứa một thông điệp và trả về một giá trị."
+msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
+msgstr "Thử nếu một biến kiểu BIến thế chứa giá trị Rỗng. Giá trị Rỗng ngụ ý rằng biến không phải được sơ khởi."
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
+"03102400.xhp\n"
+"hd_id3159158\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3154685\n"
+"03102400.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-msgstr "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgid "IsEmpty (Var)"
+msgstr "IsEmpty (Biến)"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153771\n"
+"03102400.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146985\n"
+"03102400.xhp\n"
+"par_id3156344\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Bool"
+msgstr "Bool"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153363\n"
+"03102400.xhp\n"
+"hd_id3148947\n"
"7\n"
"help.text"
-msgid "Parameter:"
+msgid "Parameters:"
msgstr "Tham số :"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153727\n"
+"03102400.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr "<emph>Text</emph>: biểu thức chuỗi được hiển thị dưới dạng một thông điệp trong hộp thoại. Có thể chèn chỗ ngắt dòng dùng Chr$(13)."
+msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
+msgstr "<emph>Biến:</emph> bất cứ biến nào cần thử. Nếu Biến thế chứa giá trị Rỗng, thì hàm còn lại Đúng; không thì Sai."
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3147317\n"
+"03102400.xhp\n"
+"hd_id3154138\n"
"9\n"
"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
-msgstr "<emph>DialogTitle</emph>: biểu thức chuỗi được hiển thị trên thanh tựa đề của hộp thoại. Bỏ sót thì hiển thị tên của ứng dụng tương ứng."
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153954\n"
-"10\n"
-"help.text"
-msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
-msgstr "<emph>Type</emph>: bất cứ biểu thức số nguyên nào mà ghi rõ kiểu hộp thoại và xác định số và kiểu của các nút hoặc cáu biểu tượng được hiển thị. <emph>Type</emph> đại diện một tổ hợp các mẫu bit (các phần tử hộp thoại được xác định bằng cách cộng các giá trị với nhau)."
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3154319\n"
-"11\n"
-"help.text"
-msgid "<emph>Values</emph>"
-msgstr "<emph>Giá trị</emph>"
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3147397\n"
-"12\n"
-"help.text"
-msgid "0 : Display OK button only."
-msgstr "0 : Hiển thị chỉ một nút <emph>OK</emph>."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145646\n"
+"03102400.xhp\n"
+"par_id3154863\n"
"13\n"
"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1 : Hiển thị các nút <emph>OK</emph> và <emph>Thôi</emph>."
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149410\n"
-"14\n"
-"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2 : Hiển thị các nút <emph>Hủy bỏ</emph>, <emph>Thử lại</emph> và <emph>Bỏ qua</emph>."
+msgid "Print IsEmpty(sVar) ' Returns True"
+msgstr "Print IsEmpty(sVar) REM Trả về Đúng"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3151075\n"
-"15\n"
+"03102450.xhp\n"
+"tit\n"
"help.text"
-msgid "3 : Display Yes, No, and Cancel buttons."
-msgstr "3 : Hiển thị các nút <emph>Có</emph>, <emph>Không</emph> và <emph>Thôi</emph>."
+msgid "IsError Function [Runtime]"
+msgstr "Hàm IsError [Runtime]"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153878\n"
-"16\n"
+"03102450.xhp\n"
+"bm_id4954680\n"
"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4 : Hiển thị các nút <emph>Có</emph> và <emph>Không</emph>."
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr "<bookmark_value>hàm IsError</bookmark_value>"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155601\n"
-"17\n"
+"03102450.xhp\n"
+"par_idN1054E\n"
"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5 : Hiển thị các nút<emph>Thử lại</emph> và <emph>Thôi</emph>."
+msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Hàm IsError [Runtime]</link>"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3150716\n"
-"18\n"
+"03102450.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr "16 : Thêm biểu tượng <emph>Dừng</emph> vào hộp thoại."
+msgid "Tests if a variable contains an error value."
+msgstr "Thử nếu một biến chứa một giá trị lỗi, hay không."
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153837\n"
-"19\n"
+"03102450.xhp\n"
+"par_idN10561\n"
"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr "32 : Thêm biểu tượng <emph>Hỏi</emph> vào hộp thoại."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3150751\n"
-"20\n"
+"03102450.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "48 : Add the Exclamation Point icon to the dialog."
-msgstr "48 : Thêm biểu tượng <emph>Dấu than</emph> vào hộp thoại."
+msgid "IsError (Var)"
+msgstr "IsError (Biến)"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146915\n"
-"21\n"
+"03102450.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr "64 : Thêm biểu tượng <emph>Thông tin</emph> vào hộp thoại."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145640\n"
-"22\n"
+"03102450.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "128 : First button in the dialog as default button."
-msgstr "128 : Nút thứ nhất trong tài liệu là nút mặc định."
+msgid "Bool"
+msgstr "Bool"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153765\n"
-"23\n"
+"03102450.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "256 : Second button in the dialog as default button."
-msgstr "256 : Nút thứ hai trong hộp thoại là nút mặc định."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153715\n"
-"24\n"
+"03102450.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "512 : Third button in the dialog as default button."
-msgstr "512 : Nút thứ ba trong hộp thoại là nút mặc định."
+msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
+msgstr "<emph>Biến:</emph> bất cứ biến nào cần thử. Nếu biến chứa một giá trị lỗi, hàm trả về Đúng, không thì Sai."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3159267\n"
-"25\n"
+"03102600.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Return value:</emph>"
-msgstr "<emph>Giá trị trả về:</emph>"
+msgid "IsNull Function [Runtime]"
+msgstr "Hàm IsNull [Runtime]"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145230\n"
-"26\n"
+"03102600.xhp\n"
+"bm_id3155555\n"
"help.text"
-msgid "1 : OK"
-msgstr "1 : OK"
+msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
+msgstr "<bookmark_value>hàm IsNull</bookmark_value><bookmark_value>giá trị Null</bookmark_value>"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3149567\n"
-"27\n"
+"03102600.xhp\n"
+"hd_id3155555\n"
+"1\n"
"help.text"
-msgid "2 : Cancel"
-msgstr "2 : Thôi"
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"Hàm IsNull [Runtime]\">Hàm IsNull [Runtime]</link>"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id4056825\n"
+"03102600.xhp\n"
+"par_id3146957\n"
+"2\n"
"help.text"
-msgid "3 : Abort"
-msgstr "3 : Hủy bỏ"
+msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
+msgstr "Thử nếu một BIến thế chứa giá trị Null đặc biệt, hay không. Giá trị Null ngụ ý rằng biến đó không chứa dữ liệu."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155335\n"
-"28\n"
+"03102600.xhp\n"
+"hd_id3150670\n"
+"3\n"
"help.text"
-msgid "4 : Retry"
-msgstr "4 : Thử lại"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146918\n"
-"29\n"
+"03102600.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "5 : Ignore"
-msgstr "5 : Bỏ qua"
+msgid "IsNull (Var)"
+msgstr "IsNull (BIến)"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155961\n"
-"30\n"
+"03102600.xhp\n"
+"hd_id3149514\n"
+"5\n"
"help.text"
-msgid "6 : Yes"
-msgstr "6 : Có"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3148488\n"
-"31\n"
+"03102600.xhp\n"
+"par_id3145609\n"
+"6\n"
"help.text"
-msgid "7 : No"
-msgstr "7 : Không"
+msgid "Bool"
+msgstr "Bool"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3150090\n"
-"40\n"
+"03102600.xhp\n"
+"hd_id3149669\n"
+"7\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3151278\n"
-"43\n"
+"03102600.xhp\n"
+"par_id3159414\n"
+"8\n"
"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\")"
-msgstr "sVar = MsgBox(\"Las Vegas\")"
+msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
+msgstr "<emph>Biến:</emph> bắt cứ biến nào cần thử. Hàm này trả về Đúng nếu Biến thế chứa giá trị Rỗng, không thì Sai."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3149034\n"
-"44\n"
+"03102600.xhp\n"
+"par_idN1062A\n"
"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\",1)"
-msgstr "sVar = MsgBox(\"Las Vegas\",1)"
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgstr "<emph>Null</emph>: giá trị này được dùng cho một kiểu con dữ liệu biến thế không có nội dung hợp lệ."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3166424\n"
-"45\n"
+"03102600.xhp\n"
+"hd_id3153381\n"
+"9\n"
"help.text"
-msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
-msgstr "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
+"03102700.xhp\n"
"tit\n"
"help.text"
-msgid "LCase Function [Runtime]"
-msgstr "Hàm LCase [Runtime]"
+msgid "IsNumeric Function [Runtime]"
+msgstr "Hàm IsNumeric [Runtime]"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"bm_id3152363\n"
+"03102700.xhp\n"
+"bm_id3145136\n"
"help.text"
-msgid "<bookmark_value>LCase function</bookmark_value>"
-msgstr "<bookmark_value>hàm LCase</bookmark_value>"
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr "<bookmark_value>hàm IsNumeric</bookmark_value>"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3152363\n"
+"03102700.xhp\n"
+"hd_id3145136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"Hàm LCase [Runtime]\">Hàm LCase [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"Hàm IsNumeric [Runtime]\">Hàm IsNumeric [Runtime]</link>"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3145609\n"
+"03102700.xhp\n"
+"par_id3149177\n"
"2\n"
"help.text"
-msgid "Converts all uppercase letters in a string to lowercase."
-msgstr "Chuyển đổi mọi chữ hoa trong một chuỗi sang chữ thường."
+msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
+msgstr "Thử nếu một biểu thức là một số không. Nếu biểu thức là một <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"số\">số</link>, hàm trả về <emph>Đúng</emph>, không thì <emph>Sai</emph>."
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3154347\n"
+"03102700.xhp\n"
+"hd_id3149415\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
-msgstr "Xem thêm: hàm <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3149456\n"
+"03102700.xhp\n"
+"par_id3150771\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "IsNumeric (Var)"
+msgstr "IsNumeric (Biến)"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3150791\n"
+"03102700.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
-msgid "LCase (Text As String)"
-msgstr "LCase (Text As String)"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3154940\n"
+"03102700.xhp\n"
+"par_id3148944\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Bool"
+msgstr "Bool"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
+"03102700.xhp\n"
+"hd_id3148947\n"
"7\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3151043\n"
-"8\n"
-"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3153193\n"
-"9\n"
+"03102700.xhp\n"
+"par_id3154760\n"
+"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào cần chuyển đổi."
+msgid "<emph>Var:</emph> Any expression that you want to test."
+msgstr "<emph>Biến:</emph> bất cứ biểu thức nào bạn muốn thử."
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3148451\n"
-"10\n"
+"03102700.xhp\n"
+"hd_id3149656\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03120302.xhp
-#, fuzzy
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3146121\n"
-"14\n"
+"03102700.xhp\n"
+"par_id3147230\n"
+"13\n"
"help.text"
-msgid "Print LCase(sVar) ' Returns \"las vegas\""
-msgstr "Print LCase(sVar) REM trả về \"las vegas\""
+msgid "Print IsNumeric(vVar) ' Returns False"
+msgstr "Print IsNumeric(vVar) REM Trả về Sai"
-#: 03120302.xhp
-#, fuzzy
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3146986\n"
+"03102700.xhp\n"
+"par_id3154910\n"
"15\n"
"help.text"
-msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) REM trả về \"LAS VEGAS\""
+msgid "Print IsNumeric(vVar) ' Returns True"
+msgstr "Print IsNumeric(vVar) REM Trả về Đúng"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
+"03102800.xhp\n"
"tit\n"
"help.text"
-msgid "ThisComponent Statement [Runtime]"
-msgstr "Câu lệnh ThisComponent [Runtime]"
+msgid "IsObject Function [Runtime]"
+msgstr "Hàm IsObject [Runtime]"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"bm_id3155342\n"
+"03102800.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
-msgstr "<bookmark_value>thuộc tính ThisComponent</bookmark_value><bookmark_value>thành phần;đặt địa chỉ</bookmark_value>"
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr "<bookmark_value>Hàm IsObject</bookmark_value>"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3155342\n"
+"03102800.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"Câu lệnh ThisComponent [Runtime]\">Câu lệnh ThisComponent [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"Hàm IsObject [Runtime]\">Hàm IsObject [Runtime]</link>"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3154923\n"
+"03102800.xhp\n"
+"par_id3148538\n"
"2\n"
"help.text"
-msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
-msgstr "Đặt địa chỉ của thành phần hoạt động để đọc và đặt các thuộc tính về nó. Câu lệnh ThisComponent được dùng từ mã Basic của tài liệu, mà nó đại diện tài liệu chứa mã Basic đó. Kiểu đối tượng được ThisComponent truy cập thì phụ thuộc vào kiểu tài liệu."
+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 "Thử nếu một biến đối tượng là một đối tượng OLE không. Có thì hàm trả về Đúng, không thì Sai."
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3154346\n"
+"03102800.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3151056\n"
+"03102800.xhp\n"
+"par_id3154285\n"
"4\n"
"help.text"
-msgid "ThisComponent"
-msgstr "ThisComponent"
+msgid "IsObject (ObjectVar)"
+msgstr "IsObject (Biến_đối_tượng)"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3154940\n"
+"03102800.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03132200.xhp
-#, fuzzy
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3154123\n"
-"7\n"
+"03102800.xhp\n"
+"par_id3156024\n"
+"6\n"
"help.text"
-msgid "' updates the \"Table of Contents\" in a text doc"
-msgstr "REM cập nhật Mục Lục trong một tài liệu văn bản"
+msgid "Bool"
+msgstr "Bool"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3153194\n"
-"10\n"
+"03102800.xhp\n"
+"hd_id3148947\n"
+"7\n"
"help.text"
-msgid "index = allindexes.getByName(\"Table of Contents1\")"
-msgstr "index = allindexes.getByName(\"Mục Lục 1\")"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03132200.xhp
-#, fuzzy
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3156422\n"
-"11\n"
+"03102800.xhp\n"
+"par_id3148552\n"
+"8\n"
"help.text"
-msgid "' use the default name for Table of Contents and a 1"
-msgstr "REM dùng tên mặc định cho Mục Lục và phụ thêm số 1"
+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>Biến_đối_tượng:</emph> bất cứ biến nào cần thử. Nếu biến đối tượng chứa một đối tượng OLE, hàm này trả về Đúng."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
+"03102900.xhp\n"
"tit\n"
"help.text"
-msgid "Second Function [Runtime]"
-msgstr "Hàm Second [Runtime]"
+msgid "LBound Function [Runtime]"
+msgstr "Hàm LBound [Runtime]"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"bm_id3153346\n"
+"03102900.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Second function</bookmark_value>"
-msgstr "<bookmark_value>hàm Second</bookmark_value>"
+msgid "<bookmark_value>LBound function</bookmark_value>"
+msgstr "<bookmark_value>hàm LBound</bookmark_value>"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3153346\n"
+"03102900.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Hàm Second [Runtime]\">Hàm Second [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"Hàm LBound [Runtime]\">Hàm LBound [Runtime]</link>"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3156023\n"
+"03102900.xhp\n"
+"par_id3147226\n"
"2\n"
"help.text"
-msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
-msgstr "Trả về một số nguyên đại diện số giây của số thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>."
+msgid "Returns the lower boundary of an array."
+msgstr "Trả về giới hạn dưới của một mảng."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3147264\n"
+"03102900.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3146795\n"
+"03102900.xhp\n"
+"par_id3150503\n"
"4\n"
"help.text"
-msgid "Second (Number)"
-msgstr "Second (Số)"
+msgid "LBound (ArrayName [, Dimension])"
+msgstr "LBound (Tên_mảng [, Chiều])"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3150792\n"
+"03102900.xhp\n"
+"hd_id3150984\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3154140\n"
+"03102900.xhp\n"
+"par_id3153126\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Số nguyên"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3156280\n"
+"03102900.xhp\n"
+"hd_id3144500\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3154124\n"
+"03102900.xhp\n"
+"par_id3145069\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
-msgstr "<emph>Số:</emph> biểu thức thuộc số mà chứa số thời gian dãy được dùng để tính số giây."
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
+msgstr "<emph>Tên_mảng:</emph> tên của mảng cho đó bạn muốn trả về giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>) của chiều mảng."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3125864\n"
+"03102900.xhp\n"
+"par_id3149457\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
-msgstr "Hàm này là mặt đối lập của hàm <emph>TimeSerial</emph>. Nó trả về số giây của một giá trị thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>. Ví dụ, biểu thức:"
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
+msgstr "<emph>[Chiều]:</emph> số nguyên mà ghi rõ chiều nào cho đó cần trả về giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>) của chiều mảng. Không ghi rõ giá trị thì giả sử chiều đầu tiên."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3153951\n"
+"03102900.xhp\n"
+"hd_id3145171\n"
"10\n"
"help.text"
-msgid "Print Second(TimeSerial(12,30,41))"
-msgstr "Print Second(TimeSerial(12,30,41))"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3151117\n"
-"11\n"
+"03102900.xhp\n"
+"par_id3145365\n"
+"18\n"
"help.text"
-msgid "returns the value 41."
-msgstr "trả về giá trị 41."
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Print LBound(sVar()) REM Trả về 10"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3147426\n"
-"12\n"
+"03102900.xhp\n"
+"par_id3150486\n"
+"19\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Print UBound(sVar()) REM Trả về 20"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3156441\n"
-"14\n"
+"03102900.xhp\n"
+"par_id3149665\n"
+"20\n"
"help.text"
-msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
-msgstr "MsgBox \"Giây chính xác hiện thời là \"& Second( Now )"
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Print LBound(sVar(),2) REM Trả về 5"
-#: 03102300.xhp
+#: 03102900.xhp
msgctxt ""
-"03102300.xhp\n"
+"03102900.xhp\n"
+"par_id3159154\n"
+"21\n"
+"help.text"
+msgid "Print UBound(sVar(),2) ' Returns 70"
+msgstr "Print UBound(sVar(),2) REM Trả về 70"
+
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
"tit\n"
"help.text"
-msgid "IsDate Function [Runtime]"
-msgstr "Hàm IsDate [Runtime]"
+msgid "UBound Function [Runtime]"
+msgstr "Hàm UBound [Runtime]"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"bm_id3145090\n"
+"03103000.xhp\n"
+"bm_id3148538\n"
"help.text"
-msgid "<bookmark_value>IsDate function</bookmark_value>"
-msgstr "<bookmark_value>hàm IsDate</bookmark_value>"
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr "<bookmark_value>hàm UBound</bookmark_value>"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3145090\n"
+"03103000.xhp\n"
+"hd_id3148538\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"Hàm IsDate [Runtime]\">Hàm IsDate [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"Hàm UBound [Runtime]\">Hàm UBound [Runtime]</link>"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3153311\n"
+"03103000.xhp\n"
+"par_id3147573\n"
"2\n"
"help.text"
-msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
-msgstr "Thử nếu một biểu thức kiểu số hay chuỗi có thể được chuyển đổi sang một biến <emph>Ngày</emph>."
+msgid "Returns the upper boundary of an array."
+msgstr "Trả về giới hạn trên của một mảng."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3153824\n"
+"03103000.xhp\n"
+"hd_id3150984\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147573\n"
+"03103000.xhp\n"
+"par_id3149415\n"
"4\n"
"help.text"
-msgid "IsDate (Expression)"
-msgstr "IsDate (Biểu_thức)"
+msgid "UBound (ArrayName [, Dimension])"
+msgstr "UBound (Tên_mảng [, Chiều])"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3143270\n"
+"03103000.xhp\n"
+"hd_id3153897\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
+"03103000.xhp\n"
+"par_id3149670\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3148947\n"
+"03103000.xhp\n"
+"hd_id3154347\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3145069\n"
+"03103000.xhp\n"
+"par_id3153381\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
-msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức nào kiểu số hay chuỗi mà bạn muốn thử. Nếu biểu thức chuyển đổi được sang một ngày tháng, hàm trả về <emph>Đúng</emph>; không thì <emph>Sai</emph>."
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
+msgstr "<emph>Tên_mảng:</emph> tên của mảng cho đó bạn muốn quyết định giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>)."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3150447\n"
+"03103000.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+msgstr "<emph>[Dimension]:</emph> số nguyên mà ghi rõ chiều cho đó cần trả về giới hạn trên (<emph>Ubound</emph>) hay giới hạn dưới (<emph>LBound</emph>). Không ghi rõ giá trị thì trả về giới hạn của chiều đầu tiên."
-#: 03102300.xhp
-#, fuzzy
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3150869\n"
-"13\n"
+"03103000.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "Print IsDate(sDateVar) ' Returns True"
-msgstr "print IsDate(sDateVar) REM Trả về Đúng"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03102300.xhp
-#, fuzzy
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"15\n"
+"03103000.xhp\n"
+"par_id3152596\n"
+"18\n"
"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr "print IsDate(sDateVar) REM Trả về Sai"
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Print LBound(sVar()) REM Trả về 10"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"tit\n"
+"03103000.xhp\n"
+"par_id3153138\n"
+"19\n"
"help.text"
-msgid "Managing Files"
-msgstr "Quản lý Tập tin"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Print UBound(sVar()) REM Trả về 20"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"03103000.xhp\n"
+"par_id3149665\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
-msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Quản lý Tập tin\">Quản lý Tập tin</link>"
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Print LBound(sVar(),2) REM Trả về 5"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"par_id3147264\n"
-"2\n"
+"03103000.xhp\n"
+"par_id3147214\n"
+"21\n"
"help.text"
-msgid "The functions and statements for managing files are described here."
-msgstr "Ở đây thì diễn tả các hàm và câu lệnh để quản lý tập tin."
+msgid "Print UBound(sVar(),2) ' Returns 70"
+msgstr "Print UBound(sVar(),2) REM Trả về 70"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
+"03103100.xhp\n"
"tit\n"
"help.text"
-msgid "CBool Function [Runtime]"
-msgstr "Hàm CBool [Runtime]"
+msgid "Let Statement [Runtime]"
+msgstr "Câu lệnh Let [Runtime]"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"bm_id3150616\n"
+"03103100.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<bookmark_value>CBool function</bookmark_value>"
-msgstr "<bookmark_value>hàm CBool</bookmark_value>"
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Let</bookmark_value>"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3150616\n"
+"03103100.xhp\n"
+"hd_id3147242\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"Hàm CBool [Runtime]\">Hàm CBool [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Câu lệnh Let [Runtime]\">Câu lệnh Let [Runtime]</link>"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3145136\n"
+"03103100.xhp\n"
+"par_id3149233\n"
"2\n"
"help.text"
-msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
-msgstr "Chuyển đổi một so sánh kiểu chuỗi hay thuộc số sang một biểu thức lôgic, hoặc chuyển đổi một biểu thức thuộc số riêng lẻ sang một biểu thức lôgic."
+msgid "Assigns a value to a variable."
+msgstr "Gán một giá trị cho một biến."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
+"03103100.xhp\n"
+"hd_id3153127\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3149514\n"
+"03103100.xhp\n"
+"par_id3154285\n"
"4\n"
"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
-msgstr "CBool (Biểu_thức1 {= | <> | < | > | <= | >=} Biểu_thức2) or CBool (Số)"
+msgid "[Let] VarName=Expression"
+msgstr "[Let] Tên_biến=Biểu_thức"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3156152\n"
+"03103100.xhp\n"
+"hd_id3148944\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155419\n"
+"03103100.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+msgstr "<emph>Tên_biến:</emph> biến cho đó bạn muốn gán một giá trị. Giá trị và kiểu biến phải tương thích với nhau."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3147530\n"
+"03103100.xhp\n"
+"par_id3148451\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr "Cũng với phần lớn phương ngôn BASIC, từ khoá <emph>Let</emph> vẫn còn tùy chọn."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3156344\n"
+"03103100.xhp\n"
+"hd_id3145785\n"
"8\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
-msgstr "<emph> Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức kiểu chuỗi hay thuộc số cần so sánh. Nếu hai biểu thức tương ứng, hàm <emph>CBool</emph> trả về <emph>True</emph> (Đúng), không thì trả về <emph>False</emph> (Sai)."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3149655\n"
-"9\n"
+"03103100.xhp\n"
+"par_id3152939\n"
+"12\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
-msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số cần chuyển đổi. Nếu biểu thức bằng với 0 thì trả về <emph>False</emph> (Sai); không thì <emph>True</emph> (Đúng)."
+msgid "MsgBox Len(sText) ' returns 9"
+msgstr "MsgBox Len(sText) REM trả về 9"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3145171\n"
-"10\n"
+"03103200.xhp\n"
+"tit\n"
"help.text"
-msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
-msgstr "Mẫu thí dụ theo đây sử dụng hàm <emph>CBool</emph> để ước tính giá trị được hàm <emph>Instr</emph> trả về. Hàm kiểm tra nếu từ « and » (và) được tìm trong câu được người dùng nhập vào, hay không."
+msgid "Option Base Statement [Runtime]"
+msgstr "Câu lệnh Option Base [Runtime]"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3156212\n"
-"11\n"
+"03103200.xhp\n"
+"bm_id3155805\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Option Base</bookmark_value>"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155132\n"
-"14\n"
+"03103200.xhp\n"
+"hd_id3155805\n"
+"1\n"
"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
-msgstr "sText = InputBox(\"Hãy gõ một câu ngắn:\")"
+msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Câu lệnh Option Base [Runtime]\">Câu lệnh Option Base [Runtime]</link>"
-#: 03100100.xhp
-#, fuzzy
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155855\n"
-"15\n"
+"03103200.xhp\n"
+"par_id3147242\n"
+"2\n"
"help.text"
-msgid "' Proof if the word »and« appears in the sentence."
-msgstr "REM Chứng minh là từ « and » xuất hiện tron câu đó."
+msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgstr "Xác định giới hạn dưới mặc định cho mảng là 0 hay 1."
-#: 03100100.xhp
-#, fuzzy
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3146984\n"
-"16\n"
+"03103200.xhp\n"
+"hd_id3150771\n"
+"3\n"
"help.text"
-msgid "' Instead of the command line"
-msgstr "REM Thay vào dòng lệnh"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03100100.xhp
-#, fuzzy
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3148576\n"
-"17\n"
+"03103200.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "' If Instr(Input, \"and\")<>0 Then..."
-msgstr "REM If Instr(Input, \"and\")<>0 Then..."
+msgid "Option Base { 0 | 1}"
+msgstr "Option Base { 0 | 1}"
-#: 03100100.xhp
-#, fuzzy
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3154014\n"
-"18\n"
+"03103200.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
-msgid "' the CBool function is applied as follows:"
-msgstr "REM hàm CBool được áp dụng như theo đây:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155413\n"
-"19\n"
+"03103200.xhp\n"
+"par_id3147229\n"
+"6\n"
"help.text"
-msgid "If CBool(Instr(sText, \"and\")) Then"
-msgstr "If CBool(Instr(sText, \"and\")) Then"
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Câu lệnh này phải được thêm vào phía trước mã chương trình có thể thực hiện trong một mô-đun."
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3152940\n"
-"20\n"
+"03103200.xhp\n"
+"hd_id3150870\n"
+"7\n"
"help.text"
-msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
-msgstr "MsgBox \"Từ « and » xuất hiện trong câu bạn đã nhập.\""
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
+"03103300.xhp\n"
"tit\n"
"help.text"
-msgid "Get Statement [Runtime]"
-msgstr "Câu lệnh Get [Runtime]"
+msgid "Option Explicit Statement [Runtime]"
+msgstr "Câu lệnh Option Explicit [Runtime]"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"bm_id3154927\n"
+"03103300.xhp\n"
+"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>Get statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Get</bookmark_value>"
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Option Explicit</bookmark_value>"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3154927\n"
+"03103300.xhp\n"
+"hd_id3145090\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Câu lệnh Get [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Câu lệnh Option Explicit [Runtime]\">Câu lệnh Option Explicit [Runtime]</link>"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3145069\n"
+"03103300.xhp\n"
+"par_id3148538\n"
"2\n"
"help.text"
-msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
-msgstr "Đọc một bản ghi từ một tập tin tương đối, hoặc đọc một dãy byte từ một tập tin nhị phân, vào một biến."
+msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+msgstr "Ghi rõ rằng mọi biến trong mã chương trình đều phải được khai báo dứt khoát dùng câu lệnh <emph>Dim</emph>."
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3154346\n"
+"03103300.xhp\n"
+"hd_id3149763\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
-msgstr "Xem thêm: Câu lệnh <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link>"
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3150358\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3150792\n"
-"5\n"
+"03103300.xhp\n"
+"par_id3149514\n"
+"4\n"
"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr "Get [#] FileNumber As Integer, [Position], Variable"
+msgid "Option Explicit"
+msgstr "Option Explicit"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"6\n"
+"03103300.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
-msgstr "<emph>FileNumber:</emph> (Số hiệu tập tin) bất cứ biểu thức số nguyên nào mà xác định số hiệu tập tin."
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3154684\n"
-"8\n"
-"help.text"
-msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
-msgstr "<emph>Position:</emph> (Vị trí) đối với các tập tin được mở ở chế độ Ngẫu nhiên, <emph>Position</emph> là số hiệu của bản ghi bạn muốn đoc."
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3153768\n"
-"9\n"
-"help.text"
-msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
-msgstr "Đối với các tập tin được mở ở chế độ Nhị phân, <emph>Position</emph> là vị trí trong tập tin ở đó bắt đầu đọc."
-
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3147319\n"
-"10\n"
+"03103300.xhp\n"
+"par_id3145172\n"
+"6\n"
"help.text"
-msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
-msgstr "Nếu để trống <emph>Position</emph> (vị trí) thì vị trí con trỏ hoặc bản ghi hiện thời của tập tin sẽ được sử dụng."
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Câu lệnh này phải được thêm vào phía trước mã chương trình có thể thực hiện trong một mô-đun."
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3149484\n"
-"11\n"
+"03103300.xhp\n"
+"hd_id3125864\n"
+"7\n"
"help.text"
-msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
-msgstr "Variable: (Biến) tên của biến cần đọc. Ra khỏi biến đối tượng, bạn vẫn còn có thể sử dụng bất cứ kiểu biến nào."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
+"03103300.xhp\n"
+"par_id3145787\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "For i% = 1 To 10 ' This results in a run-time error"
+msgstr "For i% = 1 to 10 REM Gây ra một lỗi lúc chạy"
-#: 03020201.xhp
-#, fuzzy
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3155307\n"
-"15\n"
+"03103400.xhp\n"
+"tit\n"
"help.text"
-msgid "Dim sText As Variant ' Must be a variant"
-msgstr "Dim vanBan As Variant REM Phải là Variant"
+msgid "Public Statement [Runtime]"
+msgstr "Câu lệnh Public [Runtime]"
-#: 03020201.xhp
-#, fuzzy
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3149411\n"
-"21\n"
+"03103400.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "Seek #iNumber,1 ' Position at beginning"
-msgstr "Seek #soNguyen,1 REM Vị trí bắt đầu"
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Public</bookmark_value>"
-#: 03020201.xhp
-#, fuzzy
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3153158\n"
-"22\n"
+"03103400.xhp\n"
+"hd_id3153311\n"
+"1\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Câu lệnh Public [Runtime]\">Câu lệnh Public [Runtime]</link>"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3148457\n"
-"23\n"
+"03103400.xhp\n"
+"par_id3150669\n"
+"2\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #soNguyen,, \"Day la dong thu hai\""
+msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
+msgstr "Đặt các chiều của một biến hay mảng ở bậc mô-đun (tức là không phải bên trong một chương trình con hay hàm), để biến hay mảng đó còn hợp lệ trong tất cả các thư viện và mô-đun."
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3150715\n"
-"24\n"
+"03103400.xhp\n"
+"hd_id3150772\n"
+"3\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #soNguyen,, \"Day la dong thu ba\""
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3155938\n"
-"33\n"
+"03103400.xhp\n"
+"par_id3155341\n"
+"4\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #soNguyen,,\"Day la mot doan van moi\""
+msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Public Tên_biến[(đầu To cuối)] [As Kiểu_biến][, Tên_biến2[(đầu To cuối)] [As Kiểu_biến][,...]]"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3146916\n"
-"36\n"
+"03103400.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #soNguyen,20,\"Day la van ban trong ban ghi 20\""
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"tit\n"
"help.text"
-msgid "IsNumeric Function [Runtime]"
-msgstr "Hàm IsNumeric [Runtime]"
+msgid "Global Statement [Runtime]"
+msgstr "Câu lệnh Global [Runtime]"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"bm_id3145136\n"
+"03103450.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "<bookmark_value>IsNumeric function</bookmark_value>"
-msgstr "<bookmark_value>hàm IsNumeric</bookmark_value>"
+msgid "<bookmark_value>Global statement</bookmark_value>"
+msgstr "<bookmark_value>Câu lệnh Global</bookmark_value>"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3145136\n"
+"03103450.xhp\n"
+"hd_id3159201\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"Hàm IsNumeric [Runtime]\">Hàm IsNumeric [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Câu lệnh Global [Runtime]\">Câu lệnh Global [Runtime]</link>"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"par_id3149177\n"
"2\n"
"help.text"
-msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
-msgstr "Thử nếu một biểu thức là một số không. Nếu biểu thức là một <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"số\">số</link>, hàm trả về <emph>Đúng</emph>, không thì <emph>Sai</emph>."
+msgid "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
+msgstr "Đặt các chiều của một biến hay mảng ở bậc toàn cục (tức là không phải bên trong một chương trình con hay hàm), để biến hay mảng còn hợp lệ trong tất cả các thư viện và mô-đun trong phiên chạy đang chạy."
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3149415\n"
+"03103450.xhp\n"
+"hd_id3143270\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"par_id3150771\n"
"4\n"
"help.text"
-msgid "IsNumeric (Var)"
-msgstr "IsNumeric (Biến)"
+msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Global Tên_biến[(đầu To cuối)] [As Kiểu_biến][, Tên_biến2[(đầu To cuối)] [As Kiểu_biến][,...]]"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3148685\n"
+"03103450.xhp\n"
+"hd_id3156152\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154760\n"
-"8\n"
-"help.text"
-msgid "<emph>Var:</emph> Any expression that you want to test."
-msgstr "<emph>Biến:</emph> bất cứ biểu thức nào bạn muốn thử."
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149656\n"
-"9\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03102700.xhp
-#, fuzzy
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"13\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr "Print IsNumeric(vVar) REM Trả về Sai"
-
-#: 03102700.xhp
-#, fuzzy
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"15\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr "Print IsNumeric(vVar) REM Trả về Đúng"
-
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
+"03103500.xhp\n"
"tit\n"
"help.text"
-msgid "Optional (in Function Statement) [Runtime]"
-msgstr "Optional (trong câu lệnh Function) [Runtime]"
+msgid "Static Statement [Runtime]"
+msgstr "Câu lệnh Static [Runtime]"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"bm_id3149205\n"
+"03103500.xhp\n"
+"bm_id3149798\n"
"help.text"
-msgid "<bookmark_value>Optional function</bookmark_value>"
-msgstr "<bookmark_value>hàm Optional</bookmark_value>"
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Static</bookmark_value>"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3149205\n"
+"03103500.xhp\n"
+"hd_id3149798\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (trong câu lệnh Function) [Runtime]\">Optional (trong câu lệnh Function) [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Câu lệnh Static [Runtime]\">Câu lệnh Static [Runtime]</link>"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3143267\n"
+"03103500.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Allows you to define parameters that are passed to a function as optional."
-msgstr "Cho phép bạn xác định các tham số được gửi cho một hàm dưới dạng còn tùy chọn."
+msgid "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
+msgstr "Khai báo một biến hay mảng ở bậc thủ tục bên trong một chương trình con hay hàm, để các giá trị của biến hay mảng đó được giữ lại sau khi thoát khỏi chương trình con hay hàm. Các quy ước của câu lệnh <emph>Dim</emph> đều cũng hợp lệ."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3155419\n"
+"03103500.xhp\n"
+"par_id3147264\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+msgstr "Câu lệnh <emph>Static</emph> không thể dùng được để xác định mảng biến đổi. Mảng phải được ghi rõ tùy theo một kích cỡ cố định."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3153824\n"
+"03103500.xhp\n"
+"hd_id3149657\n"
"4\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3159157\n"
+"03103500.xhp\n"
+"par_id3150400\n"
"5\n"
"help.text"
-msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
-msgstr "Function Hàm_tôi(Chuỗi1 As String, Đối_số_tùy_chọn2, Đối_số_tùy_chọn3)"
+msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgstr "Static Tên_biến[(đầu To cuối)] [As Kiểu_biến], Tên_biến2[(đầu To cuối)] [As Kiểu_biến], ..."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3145610\n"
-"7\n"
+"03103500.xhp\n"
+"hd_id3148452\n"
+"6\n"
"help.text"
-msgid "Examples:"
+msgid "Example:"
msgstr "Thí dụ :"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3154347\n"
-"8\n"
+"03103500.xhp\n"
+"par_id3150870\n"
+"11\n"
"help.text"
-msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
-msgstr "Kết quả = Hàm_tôi(\"Đây\", 1, \"Đó\") ' mọi đối số đều được gửi"
+msgid "MsgBox iResult,0,\"The answer is\""
+msgstr "MsgBox iResult,0,\"Lời giải là\""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3146795\n"
-"9\n"
+"03103500.xhp\n"
+"par_id3151115\n"
+"15\n"
"help.text"
-msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
-msgstr "Kết quả = Hàm_tôi (\"Thử\", ,1) ' đối số thứ hai còn thiết"
+msgid "' Function for initialization of the static variable"
+msgstr "REM Hàm để khởi tạo biến tĩnh"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3153897\n"
-"10\n"
+"03103500.xhp\n"
+"par_id1057161\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Xem thêm <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ví dụ\">Ví dụ</link>."
+msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
+msgstr "Const iMinimum as Integer = 40 REM giá trị trả về tối thiểu của hàm này"
-#: 03090406.xhp
+#: 03103500.xhp
msgctxt ""
-"03090406.xhp\n"
+"03103500.xhp\n"
+"par_id580462\n"
+"help.text"
+msgid "If iInit = 0 Then ' check if initialized"
+msgstr "if iInit = 0 then REM kiểm tra đã khởi tạo chưa"
+
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
"tit\n"
"help.text"
-msgid "Function Statement [Runtime]"
-msgstr "Câu lệnh Function [Runtime]"
+msgid "TypeName Function; VarType Function[Runtime]"
+msgstr "Hàm TypeName; Hàm VarType [Runtime]"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"bm_id3153346\n"
+"03103600.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>Function statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Function</bookmark_value>"
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgstr "<bookmark_value>hàm TypeName</bookmark_value><bookmark_value>hàm VarType</bookmark_value>"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3153346\n"
+"03103600.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Câu lệnh Function [Runtime]\">Câu lệnh Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"Hàm TypeName; Hàm VarType [Runtime]\">Hàm TypeName; Hàm VarType [Runtime]</link>"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3159158\n"
+"03103600.xhp\n"
+"par_id3159157\n"
"2\n"
"help.text"
-msgid "Defines a subroutine that can be used as an expression to determine a return type."
-msgstr "Xác định một chương trình con có thể được dùng làm biểu thức để quyết định một kiểu trả về."
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgstr "Trả về một chuỗi (TypeName) hay một giá trị thuộc số (VarType) mà chứa thông tin về một biến."
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3145316\n"
+"03103600.xhp\n"
+"hd_id3153825\n"
"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3148944\n"
+"03103600.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "see Parameter"
-msgstr "xem Tham số"
+msgid "TypeName (Variable)VarType (Variable)"
+msgstr "TypeName (Biến)VarType (Biến)"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3154760\n"
+"03103600.xhp\n"
+"hd_id3145610\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156344\n"
+"03103600.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "String; Integer"
+msgstr "Chuỗi; Số nguyên"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3149457\n"
+"03103600.xhp\n"
+"hd_id3146795\n"
"7\n"
"help.text"
-msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
-msgstr "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153360\n"
+"03103600.xhp\n"
+"par_id3148664\n"
"8\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgstr "<emph>Biến:</emph> biến của đó bạn muốn quyết định kiểu. Có thể sử dụng những giá trị theo đây:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3148797\n"
+"03103600.xhp\n"
+"par_id3145171\n"
"9\n"
"help.text"
-msgid "[Exit Function]"
-msgstr "[Exit Function]"
+msgid "key word"
+msgstr "từ khoá"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3145419\n"
+"03103600.xhp\n"
+"par_id3156212\n"
"10\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "VarType"
+msgstr "VarType"
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3150449\n"
+"03103600.xhp\n"
+"par_id3154684\n"
"11\n"
"help.text"
-msgid "End Function"
-msgstr "End Function"
+msgid "Variable type"
+msgstr "Kiểu biến"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156281\n"
+"03103600.xhp\n"
+"par_id3151041\n"
"12\n"
"help.text"
-msgid "Parameter"
-msgstr "Tham số"
+msgid "Boolean"
+msgstr "Boolean"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153193\n"
+"03103600.xhp\n"
+"par_id3153367\n"
"13\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
-msgstr "<emph>Name:</emph> tên của chương trình nên chứa giá trị được hàm trả về."
+msgid "11"
+msgstr "11"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3147229\n"
+"03103600.xhp\n"
+"par_id3148645\n"
"14\n"
"help.text"
-msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
-msgstr "<emph>VarName:</emph> tham số cần gửi cho chương trình con."
+msgid "Boolean variable"
+msgstr "Biến lôgic"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3147287\n"
+"03103600.xhp\n"
+"par_id3153138\n"
"15\n"
"help.text"
-msgid "<emph>Type:</emph> Type-declaration keyword."
-msgstr "<emph>Type:</emph> từ khoá khai báo kiểu."
+msgid "Date"
+msgstr "Ngày"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3163710\n"
+"03103600.xhp\n"
+"par_id3153363\n"
"16\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3152939\n"
-"21\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr "For siStep = 0 to 10 REM Điền mảng bằng dữ liệu thử"
+msgid "7"
+msgstr ""
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3154943\n"
-"32\n"
+"03103600.xhp\n"
+"par_id3155411\n"
+"17\n"
"help.text"
-msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
-msgstr "REM Linsearch quét một TextArray:sList() tìm một TextEntry:"
+msgid "Date variable"
+msgstr "Biến ngày"
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3155601\n"
-"33\n"
+"03103600.xhp\n"
+"par_id3146975\n"
+"18\n"
"help.text"
-msgid "' Return value Is the index of the entry Or 0 (Null)"
-msgstr "REM Giá trị trả về là chỉ số của mục nhập, hay 0 (Rỗng)"
+msgid "Double"
+msgstr "Đôi"
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153707\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3150486\n"
+"19\n"
"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM sItem tìm thấy"
+msgid "5"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"tit\n"
+"03103600.xhp\n"
+"par_id3148616\n"
+"20\n"
"help.text"
-msgid "Using Procedures and Functions"
-msgstr "Sử dụng Trình con và Hàm"
+msgid "Double floating point variable"
+msgstr "Biến chấm động đôi"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"bm_id3149456\n"
+"03103600.xhp\n"
+"par_id3148457\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</bookmark_value><bookmark_value>parameters;passing by reference or value</bookmark_value><bookmark_value>variables;scope</bookmark_value><bookmark_value>scope of variables</bookmark_value><bookmark_value>GLOBAL variables</bookmark_value><bookmark_value>PUBLIC variables</bookmark_value><bookmark_value>PRIVATE variables</bookmark_value><bookmark_value>functions;return value type</bookmark_value><bookmark_value>return value type of functions</bookmark_value>"
-msgstr "<bookmark_value>thủ tục</bookmark_value><bookmark_value>hàm;sử dụng</bookmark_value><bookmark_value>biến;gửi cho thủ tục và hàm</bookmark_value><bookmark_value>tham số;cho thủ tục và hàm</bookmark_value><bookmark_value>tham số;gửi theo tham chiếu hoặc giá trị</bookmark_value><bookmark_value>biến;phạm vi</bookmark_value><bookmark_value>phạm vi của biến</bookmark_value><bookmark_value>biến toàn cục (GLOBAL)</bookmark_value><bookmark_value>biến công (PUBLIC)</bookmark_value><bookmark_value>biến riêng (PRIVATE)</bookmark_value><bookmark_value>hàm;trả về kiểu giá trị</bookmark_value><bookmark_value>trả về kiểu giá trị của hàm</bookmark_value>"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"03103600.xhp\n"
+"par_id3145647\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/01020300.xhp\">Sử dụng Thủ tục và Hàm</link>"
+msgid "2"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150767\n"
-"2\n"
+"03103600.xhp\n"
+"par_id3154490\n"
+"23\n"
"help.text"
-msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
-msgstr "Theo đây có mô tả về cách sử dụng cơ bản các trình con và hàm trong mã Basic của $[officename]."
+msgid "Integer variable"
+msgstr "Biến số nguyên"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3151215\n"
-"56\n"
+"03103600.xhp\n"
+"par_id3149960\n"
+"24\n"
"help.text"
-msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
-msgstr "Khi bạn tạo một mô-đun mới, $[officename] Basic tự động chèn một trình con tên « Main ». Tên mặc định này không có tác động thứ tự hoặc điểm bắt đầu của dự án $[officename] Basic. Bạn cũng có thể thay đổi tên này thành « SUB » một cách an toàn."
+msgid "Long"
+msgstr "Dài"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id314756320\n"
+"03103600.xhp\n"
+"par_id3154513\n"
+"25\n"
"help.text"
-msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgid "3"
msgstr ""
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3154124\n"
-"3\n"
-"help.text"
-msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
-msgstr "Các trình con (SUB) và hàm (FUNCTION) giúp bạn bảo tồn một toàn cảnh có cấu trúc, bằng cách chia một chương trình ra các phần hợp lý."
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3153193\n"
-"4\n"
-"help.text"
-msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
-msgstr "Một lợi ích của trình con và hàm là, một khi bạn phát triển mã chương trình chứa các thành phần công việc, bạn có thể dùng lại mã đó trong dự án khác."
-
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3153770\n"
+"03103600.xhp\n"
+"par_id3151318\n"
"26\n"
"help.text"
-msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
-msgstr "Gửi biến cho thủ tục (SUB) và hàm (FUNCTION)"
+msgid "Long integer variable"
+msgstr "Biến số nguyên dài"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155414\n"
+"03103600.xhp\n"
+"par_id3146972\n"
"27\n"
"help.text"
-msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
-msgstr "Có thể gửi biến cho cả hai trình con và hàm. Tuy nhiên, phải khai báo hàm hoặc trình con sẽ chấp nhận tham số."
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3151114\n"
-"29\n"
-"help.text"
-msgid "Program code"
-msgstr "Mã chương trình"
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3152577\n"
-"31\n"
-"help.text"
-msgid "The SUB is called using the following syntax:"
-msgstr "SUB (trình con) được gọi dùng cú pháp này:"
+msgid "Object"
+msgstr "Đối tượng"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147124\n"
-"33\n"
+"03103600.xhp\n"
+"par_id3154482\n"
+"28\n"
"help.text"
-msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
-msgstr "Các tham số được gửi cho một trình con (SUB) phải tương ứng với các tham số được ghi rõ trong lời khai báo trình con (SUB)."
+msgid "9"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147397\n"
-"34\n"
+"03103600.xhp\n"
+"par_id3150323\n"
+"29\n"
"help.text"
-msgid "The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
-msgstr "Cũng vậy với hàm (FUNCTION). Hơn nữa, hàm lúc nào cũng trả về kết quả kiểu hàm. Kết quả của hàm được xác định bằng cách gán giá trị trả về cho tên hàm:"
+msgid "Object variable"
+msgstr "Biến đối tượng"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3156284\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3148405\n"
+"30\n"
"help.text"
-msgid "Program code"
-msgstr "Mã chương trình"
+msgid "Single"
+msgstr "Đơn"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145799\n"
-"37\n"
+"03103600.xhp\n"
+"par_id3149020\n"
+"31\n"
"help.text"
-msgid "FunctionName=Result"
+msgid "4"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153839\n"
-"39\n"
+"03103600.xhp\n"
+"par_id3147341\n"
+"32\n"
"help.text"
-msgid "The FUNCTION is called using the following syntax:"
-msgstr "Hàm (FUNCTION) được gọi bằng cú pháp này:"
+msgid "Single floating-point variable"
+msgstr "Biến chấm động đơn"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3146914\n"
-"40\n"
+"03103600.xhp\n"
+"par_id3155901\n"
+"33\n"
"help.text"
-msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr "Biến=Tên_hàm(Tham_số1, Tham_số2,...)"
+msgid "String"
+msgstr "Chuỗi"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_idN107B3\n"
+"03103600.xhp\n"
+"par_id3155960\n"
+"34\n"
"help.text"
-msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
-msgstr "Bạn cũng có thể sử dụng tên có khả năng đầy đủ để gọi một hàm hoặc trình con:<br/><item type=\"literal\">Thư_viện.Mô-đun.Vĩ_lệnh()</item><br/> Chẳng hạn, để gọi vĩ lệnh Autotext từ thư viện Gimmicks, dùng lệnh này:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+msgid "8"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3156276\n"
-"45\n"
+"03103600.xhp\n"
+"par_id3146313\n"
+"35\n"
"help.text"
-msgid "Passing Variables by Value or Reference"
-msgstr "Gửi biến theo giá trị hoặc tham chiếu"
+msgid "String variable"
+msgstr "Biến chuỗi"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155765\n"
-"47\n"
+"03103600.xhp\n"
+"par_id3145149\n"
+"36\n"
"help.text"
-msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
-msgstr "Có thể gửi tham số cho một trình con hoặc một hàm, hoặc theo tham chiếu hoặc theo giá trị. Nếu không phải được ghi rõ khác, một tham số lúc nào cũng được gửi theo tham chiếu. Có nghĩa là một hàm hoặc trình con sẽ nhận được tham số và có khả năng đọc và sửa đổi giá trị của nó."
+msgid "Variant"
+msgstr "Biến thế"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145640\n"
-"53\n"
+"03103600.xhp\n"
+"par_id3154021\n"
+"37\n"
"help.text"
-msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
-msgstr "Muốn gửi một tham số theo giá trị thì chèn từ khoá « ByVal » vào phía trước tham số khi bạn gọi một trình con (SUB) hoặc hàm (FUNCTION), v.d.:"
+msgid "12"
+msgstr "12"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150042\n"
-"54\n"
+"03103600.xhp\n"
+"par_id3145789\n"
+"38\n"
"help.text"
-msgid "Result = Function(<emph>ByVal</emph> Parameter)"
-msgstr "Kết_quả = Hàm(<emph>ByVal</emph> Tham_số)"
+msgid "Variant variable (can contain all types specified by the definition)"
+msgstr "Biến kiểu hay thay đổi (có thể chứa tất cả các kiểu được ghi rõ bởi lời xác định)"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149258\n"
-"55\n"
+"03103600.xhp\n"
+"par_id3148630\n"
+"39\n"
"help.text"
-msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
-msgstr "Trong trường hợp này, nội dung gốc của tham số sẽ không bị hàm sửa đổi, vì nó chỉ nhận được giá trị, không phải tham số chính nó."
+msgid "Empty"
+msgstr "Rỗng"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3150982\n"
-"57\n"
+"03103600.xhp\n"
+"par_id3152584\n"
+"40\n"
"help.text"
-msgid "Scope of Variables"
-msgstr "Phạm vi của Biến"
+msgid "0"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149814\n"
-"58\n"
+"03103600.xhp\n"
+"par_id3151278\n"
+"41\n"
"help.text"
-msgid "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited."
-msgstr "Một biến được xác định bên trong một trình con hoặc hàm thì chỉ còn lại hợp lệ đến khi thủ tục thoát. Biến kiểu này được gọi là một biến « cục bộ ». Trong rất nhiều trường hợp đều, bạn cần một biến là hợp lệ trong mọi thủ tục, trong mọi mô-đun của mọi thư viện, hoặc sau khi một trình con hoặc hàm đã thoát."
+msgid "Variable is not initialized"
+msgstr "Biến không được khởi tạo"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3154186\n"
-"59\n"
+"03103600.xhp\n"
+"par_id3154576\n"
+"42\n"
"help.text"
-msgid "Declaring Variables Outside a SUB or FUNCTION"
-msgstr "Khai báo biến bên ngoài một trình con (SUB) hoặc hàm (FUNCTION)"
+msgid "Null"
+msgstr "Rỗng"
-#: 01020300.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150208\n"
-"111\n"
+"03103600.xhp\n"
+"par_id3166424\n"
+"43\n"
"help.text"
-msgid "Global VarName As TYPENAME"
-msgstr "GLOBAL VarName As TYPENAME"
+msgid "1"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145258\n"
-"112\n"
+"03103600.xhp\n"
+"par_id3145131\n"
+"44\n"
"help.text"
-msgid "The variable is valid as long as the $[officename] session lasts."
-msgstr "Biến là hợp lệ trong suốt phiên chạy $[officename] đó."
+msgid "No valid data"
+msgstr "Không có dữ liệu hợp lệ"
-#: 01020300.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153198\n"
-"60\n"
+"03103600.xhp\n"
+"hd_id3149338\n"
+"45\n"
"help.text"
-msgid "Public VarName As TYPENAME"
-msgstr "PUBLIC VarName As TYPENAME"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150088\n"
-"61\n"
+"03103600.xhp\n"
+"par_id3148817\n"
+"58\n"
"help.text"
-msgid "The variable is valid in all modules."
-msgstr "Biến là hợp lệ trong tất cả các mô-đun."
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
+msgstr "TypeName(lVar) & \" \" & VarType(lVar),0,\"Một số kiểu trong $[officename] Basic\""
-#: 01020300.xhp
-#, fuzzy
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3158212\n"
-"62\n"
+"03103700.xhp\n"
+"tit\n"
"help.text"
-msgid "Private VarName As TYPENAME"
-msgstr "PUBLIC VarName As TYPENAME"
+msgid "Set Statement[Runtime]"
+msgstr "Câu lệnh Set [Runtime]"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3152994\n"
-"63\n"
+"03103700.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "The variable is only valid in this module."
-msgstr "Biến chỉ là hợp lệ trong mô-đun này."
+msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Set</bookmark_value><bookmark_value>đối tượng Nothing</bookmark_value>"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150368\n"
-"65\n"
+"03103700.xhp\n"
+"hd_id3154422\n"
+"1\n"
"help.text"
-msgid "The variable is only valid in this module."
-msgstr "Biến chỉ là hợp lệ trong mô-đun này."
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Câu lệnh Set [Runtime]\">Câu lệnh Set [Runtime]</link>"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id5097506\n"
+"03103700.xhp\n"
+"par_id3159149\n"
+"2\n"
"help.text"
-msgid "Example for private variables"
-msgstr "Mẫu thí dụ về biến riêng"
+msgid "Sets an object reference on a variable or a Property."
+msgstr "Đặt một tham chiếu đối tượng vào một biến hay Thuộc tính."
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id8738975\n"
+"03103700.xhp\n"
+"hd_id3153105\n"
+"3\n"
"help.text"
-msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
-msgstr "Ép buộc các biến riêng là riêng qua các mô-đun, bằng cách đặt « CompatibilityMode(true) »."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id9475997\n"
+"03103700.xhp\n"
+"par_id3154217\n"
+"4\n"
"help.text"
-msgid "myText = \"Hello\""
-msgstr "myText = \"Hello\""
+msgid "Set ObjectVar = Object"
+msgstr "Set ObjectVar = Object"
-#: 01020300.xhp
-#, fuzzy
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id6933500\n"
+"03103700.xhp\n"
+"hd_id3154685\n"
+"5\n"
"help.text"
-msgid "Print \"In module1 : \", myText"
-msgstr "print \"in module1 : \", myText"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id4104129\n"
+"03103700.xhp\n"
+"par_id3156281\n"
+"6\n"
"help.text"
-msgid "' Now returns empty string"
-msgstr "' Giờ thì trả về chuỗi rỗng"
+msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
+msgstr "<emph>ObjectVar:</emph> một biến hay thuộc tính mà cần thiết một tham chiếu đối tượng."
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id7906125\n"
+"03103700.xhp\n"
+"par_id3159252\n"
+"7\n"
"help.text"
-msgid "' (or rises error for Option Explicit)"
-msgstr "' (hoặc tạo lỗi cho Tùy chọn Dứt khoát)"
+msgid "<emph>Object:</emph> Object that the variable or the property refers to."
+msgstr "<emph>Object:</emph> đối tượng đến đó biến hay thuộc tính tham chiếu."
-#: 01020300.xhp
-#, fuzzy
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id8055970\n"
+"03103700.xhp\n"
+"par_idN10623\n"
"help.text"
-msgid "Print \"Now in module2 : \", myText"
-msgstr "print \"Now in module2 : \", myText"
+msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+msgstr "<emph>Nothing</emph> : gán đối tượng <emph>Nothing</emph> (không gì) cho một biến để gỡ bỏ một sự gán trước."
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3154368\n"
-"66\n"
+"03103700.xhp\n"
+"hd_id3159153\n"
+"8\n"
"help.text"
-msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
-msgstr "Lưu nội dung biến đổi sau khi thoát khỏi một trình con (SUB) hoặc hàm (FUNCTION)"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01020300.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3156288\n"
-"67\n"
+"03103800.xhp\n"
+"tit\n"
"help.text"
-msgid "Static VarName As TYPENAME"
-msgstr "STATIC VarName As TYPENAME"
+msgid "FindObject Function [Runtime]"
+msgstr "Hàm FindObject [Runtime]"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3154486\n"
-"68\n"
+"03103800.xhp\n"
+"bm_id3145136\n"
"help.text"
-msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
-msgstr "Biến giữ lại giá trị đến khi hàm hoặc trình con được nhập lần kế tiếp. Lời khai báo phải nằm bên trong một hàm hoặc trình con."
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr "<bookmark_value>hàm FindObject</bookmark_value>"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3155809\n"
-"41\n"
+"03103800.xhp\n"
+"hd_id3145136\n"
+"1\n"
"help.text"
-msgid "Specifying the Return Value Type of a FUNCTION"
-msgstr "Ghi rõ kiểu giá trị trả về của một hàm (FUNCTION)"
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"Hàm FindObject [Runtime]\">Hàm FindObject [Runtime]</link>"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149404\n"
-"42\n"
+"03103800.xhp\n"
+"par_id3155341\n"
+"2\n"
"help.text"
-msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
-msgstr "Giống như đối với biến, hãy kèm thêm một ký tự khai báo kiểu phía sau tên hàm, hoặc kiểu được ngụ ý bởi « As » và từ khoá tương ứng ở kết thúc của danh sách tham số, để xác định kiểu của giá trị trả về của hàm, v.d."
+msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
+msgstr "Cho phép đặt địa chỉ của một đối tượng vào lúc chạy dưới dạng một tham số chuỗi qua tên đối tượng."
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"tit\n"
+"03103800.xhp\n"
+"par_id3150669\n"
+"3\n"
"help.text"
-msgid "Eqv Operator [Runtime]"
-msgstr "Toán tử Eqv [Runtime]"
+msgid "For example, the following command:"
+msgstr "Ví dụ, câu lệnh này:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"bm_id3156344\n"
+"03103800.xhp\n"
+"par_id3148473\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử Eqv (lôgic)</bookmark_value>"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MyObj.Prop1.Command = 5"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3156344\n"
-"1\n"
+"03103800.xhp\n"
+"par_id3156023\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Toán tử Eqv [Runtime]\">Toán tử Eqv [Runtime]</link>"
+msgid "corresponds to the command block:"
+msgstr "tương ứng với khối câu lệnh:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149656\n"
-"2\n"
+"03103800.xhp\n"
+"par_id3153896\n"
+"6\n"
"help.text"
-msgid "Calculates the logical equivalence of two expressions."
-msgstr "Tính sự tương đương lôgic của hai biểu thức."
+msgid "Dim ObjVar as Object"
+msgstr "Dim ObjVar as Object"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3154367\n"
-"3\n"
+"03103800.xhp\n"
+"par_id3154760\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp as Object"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3154910\n"
-"4\n"
+"03103800.xhp\n"
+"par_id3145069\n"
+"8\n"
"help.text"
-msgid "Result = Expression1 Eqv Expression2"
-msgstr "Result = Biểu_thức1 Eqv Biểu_thức2"
+msgid "ObjName As String = \"MyObj\""
+msgstr "ObjName As String = \"Đối_tượng_tôi\""
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3151043\n"
-"5\n"
+"03103800.xhp\n"
+"par_id3154939\n"
+"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "ObjVar = FindObject( ObjName As String )"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3150869\n"
-"6\n"
+"03103800.xhp\n"
+"par_id3150793\n"
+"10\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
-msgstr "<emph>Kết quả:</emph> bất cứ biến thuộc số nào mà chứa kết quả của hàm so sánh."
+msgid "PropName As String = \"Prop1\""
+msgstr "PropName As String = \"Thuộc_tính1\""
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3150448\n"
-"7\n"
+"03103800.xhp\n"
+"par_id3154141\n"
+"11\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ hai biểu thức nào bạn muốn so sánh."
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149562\n"
-"8\n"
+"03103800.xhp\n"
+"par_id3156424\n"
+"12\n"
"help.text"
-msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
-msgstr "Khi thử có sự tương đương giữa hai biểu thức Bun, kết quả là <emph>True</emph> nếu cả hai biểu thức là hoặc <emph>True</emph> hoặc <emph>False</emph>."
+msgid "ObjProp.Command = 5"
+msgstr "ObjProp.Command = 5"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3154319\n"
-"9\n"
+"03103800.xhp\n"
+"par_id3145420\n"
+"13\n"
"help.text"
-msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
-msgstr "Trong một hàm so sánh theo vị trí bit, toán tử Eqv chỉ đặt bit tương ứng trong kết quả nếu một bit được đặt/không đặt trong cả hai biểu thức."
+msgid "This allows names to be dynamically created at run-time. For example:"
+msgstr "Đây cho phép tên được tạo động vào lúc chạy. Chẳng hạn:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3159154\n"
-"10\n"
+"03103800.xhp\n"
+"par_id3153104\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+msgstr "\"TextEdit1\" to TextEdit5\" theo vòng lặp để tạo năm tên điều khiển."
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3152462\n"
+"03103800.xhp\n"
+"par_id3150767\n"
"15\n"
"help.text"
-msgid "vOut = A > B Eqv B > C ' returns -1"
-msgstr "vOut = A > B Eqv B > C REM trả về -1"
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3153191\n"
+"03103800.xhp\n"
+"hd_id3150868\n"
"16\n"
"help.text"
-msgid "vOut = B > A Eqv B > C ' returns 0"
-msgstr "vOut = B > A Eqv B > C REM trả về 0"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3145799\n"
+"03103800.xhp\n"
+"par_id3151042\n"
"17\n"
"help.text"
-msgid "vOut = A > B Eqv B > D ' returns 0"
-msgstr "vOut = A > B Eqv B > D REM trả về 0"
+msgid "FindObject( ObjName As String )"
+msgstr "FindObject( ObjName As String )"
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149412\n"
+"03103800.xhp\n"
+"hd_id3159254\n"
"18\n"
"help.text"
-msgid "vOut = (B > D Eqv B > A) ' returns -1"
-msgstr "vOut = (B > D Eqv B > A) REM trả về -1"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149959\n"
+"03103800.xhp\n"
+"par_id3150439\n"
"19\n"
"help.text"
-msgid "vOut = B Eqv A ' returns -3"
-msgstr "vOut = B Eqv A REM trả về -3"
+msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+msgstr "<emph>ObjName:</emph> một chuỗi mà ghi rõ tên của đối tượng có địa chỉ bạn muốn đặt vào lúc chạy."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
+"03103900.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Statement [Runtime]"
-msgstr "Câu lệnh MsgBox [Runtime]"
+msgid "FindPropertyObject Function [Runtime]"
+msgstr "Hàm FindPropertyObject [Runtime]"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"bm_id1807916\n"
+"03103900.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>MsgBox statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh MsgBox</bookmark_value>"
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr "<bookmark_value>hàm FindPropertyObject</bookmark_value>"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3154927\n"
+"03103900.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">Câu lệnh MsgBox [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"Câu lệnh FindPropertyObject [Runtime]\">Câu lệnh FindPropertyObject [Runtime]</link>"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148947\n"
+"03103900.xhp\n"
+"par_id3154285\n"
"2\n"
"help.text"
-msgid "Displays a dialog box containing a message."
-msgstr "Hiển thị hộp thoại chứa một thông điệp."
+msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
+msgstr "Cho phép đặt địa chỉ của đối tượng vào lúc chạy, dưới dạng một tham số chuỗi dùng tên đối tượng."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
+"03103900.xhp\n"
+"par_id3147573\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "For instance, the command:"
+msgstr "Chẳng hạn, câu lệnh:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148664\n"
+"03103900.xhp\n"
+"par_id3145610\n"
"4\n"
"help.text"
-msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
-msgstr "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MyObj.Prop1.Command = 5"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3153361\n"
+"03103900.xhp\n"
+"par_id3147265\n"
"5\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
+msgid "corresponds to the following command block:"
+msgstr "tương ứng với khối câu lênh này:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148798\n"
+"03103900.xhp\n"
+"par_id3153896\n"
"6\n"
"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr "<emph>Text</emph>: biểu thức chuỗi được hiển thị dưới dạng thông điệp trong hộp thoại. Chỗ ngắt trang có thể được chèn dùng Chr$(13)."
+msgid "Dim ObjVar as Object"
+msgstr "Dim ObjVar as Object"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3150769\n"
+"03103900.xhp\n"
+"par_id3148664\n"
"7\n"
"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
-msgstr "<emph>DialogTitle</emph>: biểu thức chuỗi được hiển thị trên thanh tựa đề của hộp thoại. Bỏ sót thì thanh tựa đề hiển thị tên của ứng dụng tương ứng."
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp as Object"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147228\n"
+"03103900.xhp\n"
+"par_id3150792\n"
"8\n"
"help.text"
-msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
-msgstr "<emph>Kiểu</emph>: một biểu thức số nguyên mà xác định kiểu hộp thoại, cũng như số và kiểu các nút cần hiển thị, và kiểu biểu tượng. <emph>Kiểu</emph> đại diện một tổ hợp các mẫu bit, tức là một tổ hợp các phần tử mà có thể được xác định bằng cách thêm các giá trị tương ứng:"
+msgid "ObjName As String = \"MyObj\""
+msgstr "ObjName As String = \"Đối_tượng_tôi\""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3161832\n"
+"03103900.xhp\n"
+"par_id3154365\n"
"9\n"
"help.text"
-msgid "0 : Display OK button only."
-msgstr "0 : Hiển thị chỉ một nút <emph>OK</emph>."
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "ObjVar = FindObject( ObjName As String )"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3153726\n"
+"03103900.xhp\n"
+"par_id3148453\n"
"10\n"
"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1 : Hiển thị các nút <emph>OK</emph> và <emph>Thôi</emph>."
+msgid "PropName As String = \"Prop1\""
+msgstr "PropName As String = \"Thuộc_tính1\""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3149665\n"
+"03103900.xhp\n"
+"par_id3150449\n"
"11\n"
"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2 : Hiển thị các nút <emph>Hủy bỏ</emph>, <emph>Thử lại</emph> và <emph>Bỏ qua</emph>."
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147318\n"
+"03103900.xhp\n"
+"par_id3159152\n"
"12\n"
"help.text"
-msgid "3 : Display Yes, No and Cancel buttons."
-msgstr "3 : Hiển thị các nút <emph>Có</emph>, <emph>Không</emph> và <emph>Thôi</emph>."
+msgid "ObjProp.Command = 5"
+msgstr "ObjProp.Command = 5"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3155412\n"
+"03103900.xhp\n"
+"par_id3156214\n"
"13\n"
"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4 : Hiển thị các nút <emph>Có</emph> và <emph>Không</emph>."
+msgid "To dynamically create Names at run-time, use:"
+msgstr "Để tạo động các Tên vào lúc chạy, hãy dùng:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3146119\n"
+"03103900.xhp\n"
+"par_id3154686\n"
"14\n"
"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5. Hiển thị các nút <emph>Thử lại</emph> và <emph>Thôi</emph>."
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
+msgstr "\"TextEdit1\" to TextEdit5\" theo một vòng lặp để tạo năm tên."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3159155\n"
+"03103900.xhp\n"
+"par_id3150868\n"
"15\n"
"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr "16 : Thêm biểu tượng <emph>Dừng</emph> vào hộp thoại."
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3145366\n"
+"03103900.xhp\n"
+"hd_id3147287\n"
"16\n"
"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr "32 : Thêm biểu tượng <emph>Hỏi</emph> vào hộp thoại."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147350\n"
+"03103900.xhp\n"
+"par_id3149560\n"
"17\n"
"help.text"
-msgid "48 : Add the Exclamation icon to the dialog."
-msgstr "48 : Thêm biểu tượng <emph>Dấu than</emph> vào hộp thoại."
+msgid "FindPropertyObject( ObjVar, PropName As String )"
+msgstr "FindPropertyObject( ObjVar, PropName As String )"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3149960\n"
+"03103900.xhp\n"
+"hd_id3150012\n"
"18\n"
"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr "64 : Thêm biểu tượng <emph>Thông tin</emph> vào hộp thoại."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3154944\n"
+"03103900.xhp\n"
+"par_id3109839\n"
"19\n"
"help.text"
-msgid "128 : First button in the dialog as default button."
-msgstr "128 : Nút thứ nhất trong hộp thoại là nút mặc định."
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgstr "<emph>ObjVar:</emph> biến đối tượng bạn muốn xác định động vào lúc chạy."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3155417\n"
+"03103900.xhp\n"
+"par_id3153363\n"
"20\n"
"help.text"
-msgid "256 : Second button in the dialog as default button."
-msgstr "256 : Nút thứ hai trong hộp thoại là nút mặc định."
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3153878\n"
-"21\n"
-"help.text"
-msgid "512 : Third button in the dialog as default button."
-msgstr "512 : Nút thứ ba trong hộp thoại là nút mặc định."
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"22\n"
-"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150327\n"
-"24\n"
-"help.text"
-msgid "Const sText1 = \"An unexpected error occurred.\""
-msgstr "Const sText1 = \"Gặp lỗi bất thường.\""
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146912\n"
-"25\n"
-"help.text"
-msgid "Const sText2 = \"The program execution will continue, however.\""
-msgstr "Const sText2 = \"Tuy nhiên, chương trình sẽ tiếp tục lại chạy.\""
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154757\n"
-"26\n"
-"help.text"
-msgid "Const sText3 = \"Error\""
-msgstr "Const sText3 = \"Lỗi\""
+msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+msgstr "<emph>PropName:</emph> chuỗi mà ghi rõ tên của thuộc tính có địa chỉ bạn muốn đặt vào lúc chạy."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
+"03104000.xhp\n"
"tit\n"
"help.text"
-msgid "Hex Function [Runtime]"
-msgstr "Hàm Hex [Runtime]"
+msgid "IsMissing function [Runtime]"
+msgstr "Hàm IsMissing [Runtime]"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"bm_id3150616\n"
+"03104000.xhp\n"
+"bm_id3153527\n"
"help.text"
-msgid "<bookmark_value>Hex function</bookmark_value>"
-msgstr "<bookmark_value>hàm Hex</bookmark_value>"
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr "<bookmark_value>hàm IsMissing</bookmark_value>"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3150616\n"
+"03104000.xhp\n"
+"hd_id3153527\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hàm Hex [Runtime]\">Hàm Hex [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"Hàm IsMissing [Runtime]\">Hàm IsMissing [Runtime]</link>"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3145136\n"
+"03104000.xhp\n"
+"par_id3153825\n"
"2\n"
"help.text"
-msgid "Returns a string that represents the hexadecimal value of a number."
-msgstr "Trả về một chuỗi mà đại diện giá trị thập lục của một số."
+msgid "Tests if a function is called with an optional parameter."
+msgstr "Thử nếu một hàm được gọi với tham số còn tùy chọn không."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3147573\n"
+"03104000.xhp\n"
+"par_id3150669\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3150771\n"
+"03104000.xhp\n"
+"hd_id3145611\n"
"4\n"
"help.text"
-msgid "Hex (Number)"
-msgstr "Hex (Số)"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3147530\n"
+"03104000.xhp\n"
+"par_id3154924\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "IsMissing( ArgumentName )"
+msgstr "IsMissing( Tên_đối_số )"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3159414\n"
+"03104000.xhp\n"
+"hd_id3145069\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3156344\n"
+"03104000.xhp\n"
+"par_id3149457\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgstr "<emph>Tên_đối_số :</emph> tên của đối số còn tùy chọn."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3148947\n"
+"03104000.xhp\n"
+"par_id3150398\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
-msgstr "<emph>Số</emph> : bất cứ biểu thức thuộc số nào cần chuyển đổi sang một số thập lục."
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
+msgstr "Nếu hàm <emph>IsMissing</emph> được Tên_đối_số gọi, thì trả về Đúng."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3154365\n"
+"03104000.xhp\n"
+"par_id3148798\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3156214\n"
-"30\n"
-"help.text"
-msgid "' uses BasicFormulas in $[officename] Calc"
-msgstr "REM dùng BasicFormulas trong $[officename] Calc"
-
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3149262\n"
-"20\n"
-"help.text"
-msgid "' Returns a long integer from a hexadecimal value."
-msgstr "REM Trả về một Số nguyên dài từ một giá trị thập lục."
-
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3147215\n"
-"25\n"
-"help.text"
-msgid "' Calculates a hexadecimal value in integer."
-msgstr "REM Tính một giá trị thập lục trong Integer."
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Numbers"
-msgstr "Chuyển đổi số"
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"hd_id3145315\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Chuyển đổi số\">Chuyển đổi số</link>"
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"par_id3154760\n"
-"2\n"
-"help.text"
-msgid "The following functions convert numbers from one number format to another."
-msgstr "Theo đây có những hàm chuyển đổi số từ định dạng số này sang định dạng số khác."
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Xem thêm <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ví dụ\">Ví dụ</link>."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
+"03104100.xhp\n"
"tit\n"
"help.text"
-msgid "InStr Function [Runtime]"
-msgstr "Hàm InStr [Runtime]"
+msgid "Optional (in Function Statement) [Runtime]"
+msgstr "Optional (trong câu lệnh Function) [Runtime]"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"bm_id3155934\n"
+"03104100.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>InStr function</bookmark_value>"
-msgstr "<bookmark_value>hàm InStr</bookmark_value>"
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr "<bookmark_value>hàm Optional</bookmark_value>"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3155934\n"
+"03104100.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"Hàm InStr [Runtime]\">Hàm InStr [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (trong câu lệnh Function) [Runtime]\">Optional (trong câu lệnh Function) [Runtime]</link>"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3153990\n"
+"03104100.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Returns the position of a string within another string."
-msgstr "Trả về vị trí của một chuỗi bên trong chuỗi khác."
+msgid "Allows you to define parameters that are passed to a function as optional."
+msgstr "Cho phép bạn xác định các tham số được gửi cho một hàm dưới dạng còn tùy chọn."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3147303\n"
+"03104100.xhp\n"
+"par_id3155419\n"
"3\n"
"help.text"
-msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
-msgstr "Hàm <emph>InStr</emph> trả về vị trí ở đó đã tìm mục tương ứng. Không tìm thấy thì hàm trả về 0."
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3145090\n"
+"03104100.xhp\n"
+"hd_id3153824\n"
"4\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3146957\n"
+"03104100.xhp\n"
+"par_id3159157\n"
"5\n"
"help.text"
-msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
-msgstr "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148538\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgstr "Function Hàm_tôi(Chuỗi1 As String, Đối_số_tùy_chọn2, Đối_số_tùy_chọn3)"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
+"03104100.xhp\n"
+"hd_id3145610\n"
"7\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Examples:"
+msgstr "Thí dụ :"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3148473\n"
+"03104100.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr "Kết quả = Hàm_tôi(\"Đây\", 1, \"Đó\") ' mọi đối số đều được gửi"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3153126\n"
+"03104100.xhp\n"
+"par_id3146795\n"
"9\n"
"help.text"
-msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
-msgstr "<emph>Start:</emph> một biểu thức thuộc số mà đánh dấu vị trí trong một chuỗi ở đó đã bắt đầu tìm kiếm chuỗi phụ đã ghi rõ. Bỏ sót tham số này thì bắt đầu tìm kiếm ở ký tự đầu tiên của chuỗi. Giá trị tối đa được phép là 65535."
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgstr "Kết quả = Hàm_tôi (\"Thử\", ,1) ' đối số thứ hai còn thiết"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3145609\n"
+"03104100.xhp\n"
+"par_id3153897\n"
"10\n"
"help.text"
-msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr "<emph>Text1:</emph> biểu thức chuỗi trong đó cần tìm kiếm."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3147559\n"
-"11\n"
-"help.text"
-msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr "<emph>Text2:</emph> biểu thức chuỗi cần tìm."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154758\n"
-"12\n"
-"help.text"
-msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
-msgstr "<emph>Compare:</emph> biểu thức thuộc số còn tùy chọn mà xác định kiểu phép so sánh. Giá trị của tham số này có thể là 0 hay 1. Giá trị mặc định 1 ghi rõ một phép so sánh văn bản mà không phân biệt chữ hoa/thường. Giá trị 0 ghi rõ một phép so sánh nhị phân mà phân biệt chữ hoa/thường."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3153361\n"
-"13\n"
-"help.text"
-msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
-msgstr "Để tránh lỗi lúc chạy, không đặt tham số Compare nếu tham số trả về đầu tiên bị bỏ qua."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3154366\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"19\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr "sInput = \"Office\""
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"20\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
-msgstr "iPos = Instr(sInput,\"c\")"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Xem thêm <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ví dụ\">Ví dụ</link>."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
+"03104200.xhp\n"
"tit\n"
"help.text"
-msgid "DefDbl Statement [Runtime]"
-msgstr "Câu lệnh DefDbl [Runtime]"
+msgid "Array Function [Runtime]"
+msgstr "Hàm Array [Runtime]"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"bm_id3147242\n"
+"03104200.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>DefDbl statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefDbl</bookmark_value>"
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr "<bookmark_value>hàm Array</bookmark_value>"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3147242\n"
+"03104200.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"Câu lệnh DefDbl [Runtime]\">Câu lệnh DefDbl [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Hàm Array [Runtime]\">Hàm Array [Runtime]</link>"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3153126\n"
+"03104200.xhp\n"
+"par_id3155555\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+msgid "Returns the type Variant with a data field."
+msgstr "Trả về kiểu Biến thế với một trường dữ liệu."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3155420\n"
+"03104200.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3147530\n"
+"03104200.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "Array ( Argument list)"
+msgstr "Array ( Danh_sách_đối_số)"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3145069\n"
+"03104200.xhp\n"
+"par_id3155419\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr "Xem thêm <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3147560\n"
+"03104200.xhp\n"
+"hd_id3150669\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3150791\n"
+"03104200.xhp\n"
+"par_id3145609\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Danh_sách_đối_số :</emph> một danh sách chứa bất cứ số đối số nào định giới bằng dấu phẩy."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3151210\n"
+"03104200.xhp\n"
+"hd_id3156343\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3154123\n"
+"03104200.xhp\n"
+"par_id3153897\n"
"9\n"
"help.text"
-msgid "<emph>DefDbl:</emph> Double"
-msgstr "<emph>DefDbl:</emph> đôi"
+msgid "Dim A As Variant"
+msgstr "Dim A As Variant"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3153192\n"
+"03104200.xhp\n"
+"par_id3153525\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03101400.xhp
-#, fuzzy
-msgctxt ""
-"03101400.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tế cho các kiểu biến:"
+msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgstr "A = Array(\"Tuấn\",\"Minh\",\"Trường\")"
-#: 03101400.xhp
-#, fuzzy
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3153144\n"
-"22\n"
+"03104200.xhp\n"
+"par_id3150792\n"
+"11\n"
"help.text"
-msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
-msgstr "dValue=1.23e43 REM dValue là một kiểu biến đôi ngầm"
+msgid "Msgbox A(2)"
+msgstr "Msgbox A(2)"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
+"03104300.xhp\n"
"tit\n"
"help.text"
-msgid "Green Function [Runtime]"
-msgstr "Hàm Green [Runtime]"
+msgid "DimArray Function [Runtime]"
+msgstr "Hàm DimArray [Runtime]"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"bm_id3148947\n"
+"03104300.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Green function</bookmark_value>"
-msgstr "<bookmark_value>hàm Green</bookmark_value>"
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr "<bookmark_value>hàm DimArray</bookmark_value>"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3148947\n"
+"03104300.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Hàm Green [Runtime]\"> Hàm Green [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"Hàm DimArray [Runtime]\">Hàm DimArray [Runtime]</link>"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153361\n"
+"03104300.xhp\n"
+"par_id3153527\n"
"2\n"
"help.text"
-msgid "Returns the Green component of the given color code."
-msgstr "Trả về thành phần màu Lục của mã màu đã cho."
+msgid "Returns a Variant array."
+msgstr "Trả về một mảng kiểu biến thế."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154140\n"
+"03104300.xhp\n"
+"hd_id3149762\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153969\n"
+"03104300.xhp\n"
+"par_id3148473\n"
"4\n"
"help.text"
-msgid "Green (Color As Long)"
-msgstr "Green (Color As Long)"
+msgid "DimArray ( Argument list)"
+msgstr "DimArray ( Danh_sách_đối_số)"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
+"03104300.xhp\n"
+"par_id3154142\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr "Xem thêm <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Mảng\">Mảng</link>"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153194\n"
+"03104300.xhp\n"
+"par_id3156023\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+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 "Không đưa ra tham số, thì tạo một mảng rỗng (giống như Dim A() mà tương đương với một dãy có chiều dài 0 trong Uno). Có phải đưa ra tham số thì tạo một chiều cho mỗi tham số."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
+"03104300.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Parameter:"
+msgid "Parameters:"
msgstr "Tham số :"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153770\n"
+"03104300.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
-msgstr "<emph>Color</emph>: biểu thức số nguyên dài mà ghi rõ một <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"mã màu\">mã màu</link> cho đó cần trả về thành phần màu Lục."
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Danh_sách_đối_số :</emph> một danh sách chứa bất cứ số đối số nào định giới bằng dấu phẩy."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
+"03104300.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03010302.xhp
-#, fuzzy
-msgctxt ""
-"03010302.xhp\n"
-"par_id3151117\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-msgstr "msgbox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153951\n"
-"14\n"
-"help.text"
-msgid "\"red = \" & red(lVar) & Chr(13)&_"
-msgstr "\"red = \" & red(lVar) & Chr(13)&_"
-
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3152462\n"
-"15\n"
-"help.text"
-msgid "\"green = \" & green(lVar) & Chr(13)&_"
-msgstr "\"green = \" & green(lVar) & Chr(13)&_"
-
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3154730\n"
-"16\n"
+"03104300.xhp\n"
+"par_id3154939\n"
+"10\n"
"help.text"
-msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr "« DimArray( 2, 2, 4 ) » tương đương với « DIM a( 2, 2, 4 ) »"
-#: 01030000.xhp
+#: 03104400.xhp
msgctxt ""
-"01030000.xhp\n"
+"03104400.xhp\n"
"tit\n"
"help.text"
-msgid "Integrated Development Environment (IDE)"
-msgstr "IDE (Môi trường Phát triển Hợp nhất)"
-
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
-msgstr "<bookmark_value>Basic IDE;môi trường phát triển hợp nhất</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
-
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"hd_id3145090\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
-msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Môi trường phát triển hợp nhất (IDE)\">Môi trường phát triển hợp nhất (IDE)</link>"
-
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"par_id3146795\n"
-"2\n"
-"help.text"
-msgid "This section describes the Integrated Development Environment for $[officename] Basic."
-msgstr "Phần này diễn tả Môi trường Phát triễn Hợp nhất cho $[officename] Basic."
+msgid "HasUnoInterfaces Function [Runtime]"
+msgstr "Hàm HasUnoInterfaces [Runtime]"
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"tit\n"
+"03104400.xhp\n"
+"bm_id3149987\n"
"help.text"
-msgid "Display Functions"
-msgstr "Hàm Hiển Thị"
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr "<bookmark_value>hàm HasUnoInterfaces</bookmark_value>"
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"hd_id3151384\n"
+"03104400.xhp\n"
+"hd_id3149987\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Hàm Hiển Thị\">Hàm Hiển Thị</link>"
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"Hàm HasUnoInterfaces [Runtime]\">Hàm HasUnoInterfaces [Runtime]</link>"
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"par_id3149346\n"
+"03104400.xhp\n"
+"par_id3151262\n"
"2\n"
"help.text"
-msgid "This section describes Runtime functions used to output information to the screen display."
-msgstr "Phần này diễn tả các Hàm Lúc Chạy được dùng để xuất thông tin ra màn hình."
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgstr "Thử nếu một đối tượng Uni Basic hỗ trợ một số giao diện Uno nào đó không."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"tit\n"
+"03104400.xhp\n"
+"par_id3154232\n"
+"3\n"
"help.text"
-msgid "IsError Function [Runtime]"
-msgstr "Hàm IsError [Runtime]"
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgstr "Trả về Đúng nếu hỗ trợ <emph>tất cả</emph> các giao diện Uno đã ghi rõ, không thì Sai."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"bm_id4954680\n"
+"03104400.xhp\n"
+"hd_id3150040\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>IsError function</bookmark_value>"
-msgstr "<bookmark_value>hàm IsError</bookmark_value>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1054E\n"
+"03104400.xhp\n"
+"par_id3155555\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Hàm IsError [Runtime]</link>"
+msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgstr "HasUnoInterfaces( oTest, Tên_giao_diện_Uno1 [, Tên_giao_diện_Uno2, ...])"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1055E\n"
+"03104400.xhp\n"
+"hd_id3153345\n"
+"6\n"
"help.text"
-msgid "Tests if a variable contains an error value."
-msgstr "Thử nếu một biến chứa một giá trị lỗi, hay không."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10561\n"
+"03104400.xhp\n"
+"par_id3148538\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Bool"
+msgstr "Bool"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10565\n"
+"03104400.xhp\n"
+"hd_id3159157\n"
+"8\n"
"help.text"
-msgid "IsError (Var)"
-msgstr "IsError (Biến)"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10568\n"
+"03104400.xhp\n"
+"par_id3155419\n"
+"9\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr "<emph>oTest:</emph> đối tượng Uno Basic cần thử."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1056C\n"
+"03104400.xhp\n"
+"par_id3149236\n"
+"10\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgstr "<emph> Tên_giao_diện_Uno :</emph> danh sách các tên giao diện Uno."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1056F\n"
+"03104400.xhp\n"
+"hd_id3147574\n"
+"11\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10573\n"
+"03104400.xhp\n"
+"par_id3149580\n"
+"12\n"
"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
-msgstr "<emph>Biến:</emph> bất cứ biến nào cần thử. Nếu biến chứa một giá trị lỗi, hàm trả về Đúng, không thì Sai."
+msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+msgstr "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
+"03104500.xhp\n"
"tit\n"
"help.text"
-msgid "GetSolarVersion Function [Runtime]"
-msgstr "Hàm GetSolarVersion [Runtime]"
+msgid "IsUnoStruct Function [Runtime]"
+msgstr "Hàm IsUnoStruct [Runtime]"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"bm_id3157898\n"
+"03104500.xhp\n"
+"bm_id3146117\n"
"help.text"
-msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
-msgstr "<bookmark_value>hàm GetSolarVersion</bookmark_value>"
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>hàm IsUnoStruct</bookmark_value>"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3157898\n"
+"03104500.xhp\n"
+"hd_id3146117\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"Hàm GetSolarVersion [Runtime]\">Hàm GetSolarVersion [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"Hàm IsUnoStruct [Runtime]\">Hàm IsUnoStruct [Runtime]</link>"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3152801\n"
+"03104500.xhp\n"
+"par_id3146957\n"
"2\n"
"help.text"
-msgid "Returns the internal number of the current $[officename] version."
-msgstr "Trả về số thứ tự nội bộ của phiên bản $[officename] hiện thời."
+msgid "Returns True if the given object is a Uno struct."
+msgstr "Trả về Đúng nếu đối tượng đã cho là một cấu trúc Uno."
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3153311\n"
+"03104500.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3155388\n"
+"03104500.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "s = GetSolarVersion"
-msgstr "s = GetSolarVersion"
+msgid "IsUnoStruct( Uno type )"
+msgstr "IsUnoStruct( Kiểu Uno )"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3149514\n"
+"03104500.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3148685\n"
+"03104500.xhp\n"
+"par_id3145315\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Bool"
+msgstr "Bool"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3143270\n"
+"03104500.xhp\n"
+"hd_id3145609\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
+"03104500.xhp\n"
"par_id3148947\n"
-"11\n"
-"help.text"
-msgid "MsgBox sSep,64,\"Version number of the solar technology\""
-msgstr "MsgBox sSep,64,\"Số thứ tự phiên bản của công nghệ mặt trời\""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoListener Function [Runtime]"
-msgstr "Hàm CreateUnoListener [Runtime]"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"bm_id3155150\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
-msgstr "<bookmark_value>hàm CreateUnoListener</bookmark_value>"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3155150\n"
-"53\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"Hàm CreateUnoListener [Runtime]\">Hàm CreateUnoListener [Runtime]</link>"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149346\n"
-"52\n"
-"help.text"
-msgid "Creates a Listener instance."
-msgstr "Tạo một thể hiện Listener (đối tượng nghe)."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153681\n"
-"51\n"
-"help.text"
-msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
-msgstr "Rất nhiều giao diện Uno cho phép bạn đăng ký đối tượng nghe trên một giao diện đối tượng nghe đặc biệt. Vì thế bạn có thể lắng nghe các sự kiện cụ thể, và gọi phương pháp lắng nghe thích hợp. Hàm CreateUnoListener đợi giao diện đối tượng nghe đã gọi, sau đó gửi cho giao diện một đối tượng được giao diện hỗ trợ. Đối tượng này thì được gửi cho phương pháp để đăng ký đối tượng nghe."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3148685\n"
-"50\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3143228\n"
-"49\n"
+"8\n"
"help.text"
-msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-msgstr "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgid "Uno type : A UnoObject"
+msgstr "Kiểu Uno : một UnoObject"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"hd_id3147574\n"
-"48\n"
+"03104500.xhp\n"
+"hd_id3156343\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154046\n"
-"47\n"
-"help.text"
-msgid "The following example is based on a Basic library object."
-msgstr "Thí dụ theo đây dựa vào một đối tượng thư viện Basic."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149294\n"
-"44\n"
-"help.text"
-msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
-msgstr "Phương pháp CreatenoListenUer cần thiết hai tham số. Tham số thứ nhất là một tiền tố, được diễn tả chi tiết bên dưới. Tham số thứ hai là tên có khả năng đầy đủ của giao diện đối tượng nghe cần dùng."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149670\n"
-"43\n"
-"help.text"
-msgid "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
-msgstr "Đối tượng nghe (Listener) phải được thêm vào đối tượng quảng bá Broadcaster Object. Làm như thế bằng cách gọi phương pháp thích hợp để thêm một đối tượng nghe. Các phương pháp này luôn luôn theo mẫu \"addFooListener\" mà \"Foo\" là kiểu giao diện đối tượng nghe (Listener Interface Type), không có \"X\". Trong thí dụ này, phương pháp addContainerListener được gọi để đăng ký XContainerListener:"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154940\n"
-"41\n"
-"help.text"
-msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
-msgstr "oLib = BasicLibraries.Library1 ' Library1 phải tồn tại."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150359\n"
-"40\n"
-"help.text"
-msgid "oLib.addContainerListener( oListener ) ' Register the listener"
-msgstr "oLib.addContainerListener( oListener ) ' Đăng ký đối tượng nghe"
-
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154138\n"
-"39\n"
+"03104500.xhp\n"
+"par_idN10638\n"
"help.text"
-msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
-msgstr "Đối tượng nghe đã được đăng ký. Khi một sự kiện xảy ra, đối tượng nghe tương ứng sẽ gọi phương pháp thích hợp từ giao diện com.sun.star.container.XContainerListener."
+msgid "' Instantiate a service"
+msgstr "' Instantiate a service"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3148922\n"
-"38\n"
+"03104500.xhp\n"
+"par_idN10644\n"
"help.text"
-msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
-msgstr "Tiền tố gọi đối tượng nghe (Listener) từ chương trình con Basic. Hệ thống Basic lúc chạy thì tìm các chương trình con hay hàm Basic với tên PrefixListenerMethode, và gọi nó khi được tìm. Không thì gặp một lỗi lúc chạy."
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150768\n"
-"37\n"
+"03104500.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "In this example, the Listener-Interface uses the following methods:"
-msgstr "Trong thí dụ này, giao diện đối tượng nghe (Listener-Interface) sử dụng những phương pháp theo đây:"
+msgid "' Instantiate a Property struct"
+msgstr "' Instantiate a Property struct"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"36\n"
+"03104500.xhp\n"
+"par_idN10653\n"
"help.text"
-msgid "disposing:"
-msgstr "disposing:"
+msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+msgstr "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3145173\n"
-"35\n"
+"03104500.xhp\n"
+"par_idN1065B\n"
"help.text"
-msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
-msgstr "Giao diện cơ bản đối tượng nghe (com.sun.star.lang.XEventListener): giao diện cơ bản cho tất cả các giao diện đối tượng nghe."
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3156212\n"
-"34\n"
+"03104600.xhp\n"
+"tit\n"
"help.text"
-msgid "elementInserted:"
-msgstr "elementInserted:"
+msgid "EqualUnoObjects Function [Runtime]"
+msgstr "Hàm EqualUnoObjects [Runtime]"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3159254\n"
-"33\n"
+"03104600.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr "Phương pháp của giao diện com.sun.star.container.XContainerListener"
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr "<bookmark_value>hàm EqualUnoObjects</bookmark_value>"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147287\n"
-"32\n"
+"03104600.xhp\n"
+"hd_id3149205\n"
+"1\n"
"help.text"
-msgid "elementRemoved:"
-msgstr "elementRemoved:"
+msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"Hàm EqualUnoObjects [Runtime]\">Hàm EqualUnoObjects [Runtime]</link>"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3146119\n"
-"31\n"
+"03104600.xhp\n"
+"par_id3145090\n"
+"2\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr "Phương pháp của giao diện com.sun.star.container.XContainerListener"
+msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgstr "Trả về Đúng nếu hai đối tượng Uno Basic đã ghi rõ có đại diện cùng một thể hiện đối tượng Uno."
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153951\n"
-"30\n"
+"03104600.xhp\n"
+"hd_id3148538\n"
+"3\n"
"help.text"
-msgid "elementReplaced:"
-msgstr "elementReplaced:"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154013\n"
-"29\n"
+"03104600.xhp\n"
+"par_id3150669\n"
+"4\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr "Phương pháp của giao diện com.sun.star.container.XContainerListener"
+msgid "EqualUnoObjects( oObj1, oObj2 )"
+msgstr "EqualUnoObjects( oObj1, oObj2 )"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147435\n"
-"28\n"
+"03104600.xhp\n"
+"hd_id3150984\n"
+"5\n"
"help.text"
-msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
-msgstr "Trong thí dụ này, tiền tố là « ContListener_ ». Những chương trình con theo đây thì phải được thực hiện trong mã Basic:"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3155411\n"
-"27\n"
+"03104600.xhp\n"
+"par_id3154285\n"
+"6\n"
"help.text"
-msgid "ContListener_disposing"
-msgstr "ContListener_disposing"
+msgid "Bool"
+msgstr "Bool"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3146923\n"
-"26\n"
+"03104600.xhp\n"
+"hd_id3145315\n"
+"7\n"
"help.text"
-msgid "ContListener_elementInserted"
-msgstr "ContListener_elementInserted"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147318\n"
-"25\n"
+"03104600.xhp\n"
+"par_id3156024\n"
+"8\n"
"help.text"
-msgid "ContListener_elementRemoved"
-msgstr "ContListener_elementRemoved"
+msgid "// Copy of objects -> same instance"
+msgstr "// Copy of objects -> same instance"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3152578\n"
-"24\n"
+"03104600.xhp\n"
+"par_id3154923\n"
+"9\n"
"help.text"
-msgid "ContListener_elementReplaced"
-msgstr "ContListener_elementReplaced"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150592\n"
-"23\n"
+"03104600.xhp\n"
+"par_id3147559\n"
+"10\n"
"help.text"
-msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
-msgstr "Có một kiểu cấu trúc sự kiện mà chứa thông tin về sự kiện cho mọi kiểu đối tượng nghe (Listener). Khi gọi một đối tượng nghe, một thể hiện của sự kiện này được gửi cho phương pháp dưới dạng một tham số. Đối tượng nghe Basic cũng có thể gọi những đối tượng sự kiện này, miễn là tham số thích hợp được gửi trong lời khai báo Sub. Ví dụ :"
+msgid "oIntro2 = oIntrospection"
+msgstr "oIntro2 = oIntrospection"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"21\n"
+"03104600.xhp\n"
+"par_id3150541\n"
+"11\n"
"help.text"
-msgid "MsgBox \"disposing\""
-msgstr "MsgBox \"disposing\""
+msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
+msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154098\n"
-"17\n"
+"03104600.xhp\n"
+"par_id3153525\n"
+"12\n"
"help.text"
-msgid "MsgBox \"elementInserted\""
-msgstr "MsgBox \"elementInserted\""
+msgid "// Copy of structs as value -> new instance"
+msgstr "// Copy of structs as value -> new instance"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153947\n"
+"03104600.xhp\n"
+"par_id3154366\n"
"13\n"
"help.text"
-msgid "MsgBox \"elementRemoved\""
-msgstr "MsgBox \"elementRemoved\""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148915\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"elementReplaced\""
-msgstr "MsgBox \"elementReplaced\""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3156056\n"
-"6\n"
-"help.text"
-msgid "You do not need to include the parameter of an event object if the object is not used:"
-msgstr "Bạn không cần bao gồm tham số của một đối tượng sự kiện nếu đối tượng đó không phải được dùng:"
+msgid "Dim Struct1 as new com.sun.star.beans.Property"
+msgstr "Dim Struct1 as new com.sun.star.beans.Property"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150042\n"
-"5\n"
+"03104600.xhp\n"
+"par_id3154348\n"
+"14\n"
"help.text"
-msgid "' Minimal implementation of Sub disposing"
-msgstr "' Thực hiện tối thiểu khả năng bỏ chương trình con"
+msgid "Struct2 = Struct1"
+msgstr "Struct2 = Struct1"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150940\n"
-"2\n"
+"03104600.xhp\n"
+"par_id3154125\n"
+"15\n"
"help.text"
-msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
-msgstr "Phương pháp lắng nghe <emph>luôn luôn</emph> phải được thực hiện để tránh lỗi lúc chạy Basic."
+msgid "print EqualUnoObjects( Struct1, Struct2 )"
+msgstr "print EqualUnoObjects( Struct1, Struct2 )"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
+"03104700.xhp\n"
"tit\n"
"help.text"
-msgid "Write Statement [Runtime]"
-msgstr "Câu lệnh Write [Runtime]"
+msgid "Erase Function [Runtime]"
+msgstr "Hàm Erase [Runtime]"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"bm_id3147229\n"
+"03104700.xhp\n"
+"bm_id624713\n"
"help.text"
-msgid "<bookmark_value>Write statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Write</bookmark_value>"
+msgid "<bookmark_value>Erase function</bookmark_value>"
+msgstr "<bookmark_value>hàm Erase</bookmark_value>"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3147229\n"
-"1\n"
+"03104700.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Câu lệnh Write [Runtime]\">Câu lệnh Write [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Hàm Erase [Runtime]</link>"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3154685\n"
-"2\n"
+"03104700.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "Writes data to a sequential file."
-msgstr "Ghi dữ liệu vào một tập tin dãy."
+msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
+msgstr "Xoá nội dung của phần tử mảng của các mảng có kích cỡ cố định, và thả bộ nhớ được chiếm bởi các mảng có kích cỡ biến đổi."
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"3\n"
+"03104700.xhp\n"
+"par_idN1055D\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3145785\n"
-"4\n"
+"03104700.xhp\n"
+"par_idN105E6\n"
"help.text"
-msgid "Write [#FileName], [Expressionlist]"
-msgstr "Write [#FileName], [Expressionlist]"
+msgid "Erase Arraylist"
+msgstr "Erase Danh_sách_mảng"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3151116\n"
-"5\n"
+"03104700.xhp\n"
+"par_idN105E9\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3153728\n"
-"6\n"
-"help.text"
-msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr "<emph>FileName:</emph> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin đã được đặt bởi câu lệnh Open đối với tập tin tương ứng."
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3146120\n"
-"7\n"
-"help.text"
-msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
-msgstr "<emph>Expressionlist:</emph> danh sách định giới bằng dấu phẩy, chứa các biến hoặc biểu thức mà bạn muốn nhập vào một tập tin."
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3150010\n"
-"8\n"
-"help.text"
-msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
-msgstr "Bỏ sót biểu thức thì câu lệnh <emph>Write</emph> (Ghi) phụ thêm một dòng rỗng vào tập tin."
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3163713\n"
-"9\n"
-"help.text"
-msgid "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
-msgstr "Để thêm một danh sách biểu thức vào một tập tin mới hoặc tập tin đã tồn tại, tập tin phải được mở ở chế độ <emph>Kết xuất</emph> hoặc <emph>Phụ thêm</emph>."
-
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3147428\n"
-"10\n"
+"03104700.xhp\n"
+"par_idN105ED\n"
"help.text"
-msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
-msgstr "Các chuỗi bạn ghi sẽ tự động được kẹp giữa hai dấu nháy kép và phân cách bằng dấu phẩy. Bạn không cần nhập các ký tự phân cách vào danh sách biểu thức."
+msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
+msgstr "<emph>Danh_sách_mảng</emph>: danh sách các mảng cần xoá."
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id1002838\n"
+"03110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
-msgstr "Mỗi câu lệnh <emph>Write</emph> (Ghi) thì xuất một ký hiệu kết thúc dòng dưới dạng mục nhập cuối cùng."
+msgid "Comparison Operators"
+msgstr "Toán tử So sánh"
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id6618854\n"
+"03110000.xhp\n"
+"hd_id3155555\n"
+"1\n"
"help.text"
-msgid "Numbers with decimal delimiters are converted according to the locale settings."
-msgstr "Con số có dấu tách thập phân được chuyển đổi tùy theo thiết lập miền địa phương."
+msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Toán tử So sánh\">Toán tử So sánh</link>"
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3151073\n"
-"11\n"
+"03110000.xhp\n"
+"par_id3153528\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "The available comparison operators are described here."
+msgstr "Ở đây thì diễn tả những toán tử so sánh sẵn sàng."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
+"03110100.xhp\n"
"tit\n"
"help.text"
-msgid "GetAttr Function [Runtime]"
-msgstr "Hàm GetAttr [Runtime]"
+msgid "Comparison Operators [Runtime]"
+msgstr "Toán tử So sánh [Runtime]"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"bm_id3150984\n"
+"03110100.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>GetAttr function</bookmark_value>"
-msgstr "<bookmark_value>hàm GetAttr</bookmark_value>"
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgstr "<bookmark_value>toán tử so sánh;%PRODUCTNAME Basic</bookmark_value><bookmark_value>toán tử;so sánh</bookmark_value>"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3150984\n"
+"03110100.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"Hàm GetAttr [Runtime]\">Hàm GetAttr [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Toán tử So sánh [Runtime]\">Toán tử So sánh [Runtime]</link>"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3154347\n"
+"03110100.xhp\n"
+"par_id3156042\n"
"2\n"
"help.text"
-msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
-msgstr "Trả về một mẫu bit mà nhận dạng kiểu tập tin, hoặc tên của một khối tin hoặc thư mục."
+msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
+msgstr "Toán tử so sánh thì so sánh một cặp biểu thức. Kết quả được trả về dạng một biểu thức lôgic mà quyết định nếu phép so sánh là Đúng (-1) hay Sai (0)."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3149457\n"
+"03110100.xhp\n"
+"hd_id3147291\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3150359\n"
+"03110100.xhp\n"
+"par_id3149177\n"
"4\n"
"help.text"
-msgid "GetAttr (Text As String)"
-msgstr "GetAttr (Text As String)"
+msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgstr "Kết quả = Biểu_thức1 { = | < | > | <= | >= } Biểu_thức2"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3151211\n"
+"03110100.xhp\n"
+"hd_id3145316\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3154909\n"
+"03110100.xhp\n"
+"par_id3147573\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgstr "<emph>Kết quả:</emph> biểu thức lôgic mà ghi rõ kết quả của phép so sánh (Đúng hay Sai)."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145172\n"
+"03110100.xhp\n"
+"par_id3148686\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp giá trị thuốc số hay chuỗi nào bạn muốn so sánh."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3151042\n"
+"03110100.xhp\n"
+"hd_id3147531\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "Comparison operators"
+msgstr "Toán tử so sánh"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3161831\n"
+"03110100.xhp\n"
+"par_id3147265\n"
"9\n"
"help.text"
-msgid "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
-msgstr "Hàm này xác định các thuộc tính cho một tập tin đã ghi rõ, và trả về mẫu bit có thể giúp bạn nhận dạng các thuộc tính tập tin này:"
+msgid "= : Equal to"
+msgstr "= : Bằng"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145364\n"
+"03110100.xhp\n"
+"par_id3154924\n"
"10\n"
"help.text"
-msgid "Value"
-msgstr "Giá trị"
+msgid "< : Less than"
+msgstr "< : Nhỏ hơn"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3147349\n"
+"03110100.xhp\n"
+"par_id3146795\n"
"11\n"
"help.text"
-msgid "0 : Normal files."
-msgstr "0 : Các tập tin bình thường."
+msgid "> : Greater than"
+msgstr "> : Lớn hơn"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3147434\n"
+"03110100.xhp\n"
+"par_id3150541\n"
"12\n"
"help.text"
-msgid "1 : Read-only files."
-msgstr "1 : Các tập tin chỉ-đọc."
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3159154\n"
-"15\n"
-"help.text"
-msgid "8 : Returns the name of the volume"
-msgstr "8 : Trả về tên của khối tin"
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3145271\n"
-"16\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "16 : Trả về chỉ tên của thư mục."
+msgid "<= : Less than or equal to"
+msgstr "<= : Nhỏ hơn hay bằng"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3153953\n"
-"17\n"
+"03110100.xhp\n"
+"par_id3150400\n"
+"13\n"
"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
-msgstr "32 : Tập tin đã thay đổi kể từ lần sao lưu cuối cùng (bit kho lưu)."
+msgid ">= : Greater than or equal to"
+msgstr ">= : Lớn hơn hay bằng"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3156444\n"
-"18\n"
+"03110100.xhp\n"
+"par_id3148797\n"
+"14\n"
"help.text"
-msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
-msgstr "Muốn biết nếu thuộc tính có một bit đã đặt thì dùng phương pháp truy vấn này:"
+msgid "<> : Not equal to"
+msgstr "<> : Không bằng"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3153094\n"
-"19\n"
+"03110100.xhp\n"
+"hd_id3154686\n"
+"15\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03020409.xhp
-#, fuzzy
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3155415\n"
-"21\n"
+"03110100.xhp\n"
+"par_id3154909\n"
+"18\n"
"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr "On Error Goto ErrorHandler REM Define target for error-handler"
+msgid "Dim sRoot As String ' Root directory for file in and output"
+msgstr "DIM sRoot As String REM ' Root directory for file in and output"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
+"03120000.xhp\n"
"tit\n"
"help.text"
-msgid "Select...Case Statement [Runtime]"
-msgstr "Câu lệnh Select...Case [Runtime]"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Select...Case</bookmark_value><bookmark_value>câu lệnh Case</bookmark_value>"
+msgid "Strings"
+msgstr "Chuỗi"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"hd_id3149416\n"
+"03120000.xhp\n"
+"hd_id3156153\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Câu lệnh Select...Case [Runtime]\">Câu lệnh Select...Case [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Chuỗi\">Chuỗi</link>"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3153896\n"
+"03120000.xhp\n"
+"par_id3159176\n"
"2\n"
"help.text"
-msgid "Defines one or more statement blocks depending on the value of an expression."
-msgstr "Xác định một hay nhiều khối câu lệnh phụ thuộc vào giá trị của một biểu thức."
+msgid "The following functions and statements validate and return strings."
+msgstr "Những hàm và câu lệnh theo đây đều thẩm tra và trả về chuỗi."
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"hd_id3147265\n"
+"03120000.xhp\n"
+"par_id3154285\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
-msgstr "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3150767\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3156281\n"
-"6\n"
-"help.text"
-msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
-msgstr "<emph>Điều_kiện</emph> : bất cứ biểu thức nào mà điều khiển nếu nên thực hiện khối câu lệnh nằm sau mệnh đề Case tương ứng."
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
-msgstr "<emph>Biểu_thức</emph> : bất cứ biểu thức nào tương thích với biểu thức kiểu Condition (điều kiện). Khối câu lệnh nằm sau mệnh đề Case (trường hợp) được thực hiện nếu <emph>Condition</emph> tương ứng với <emph>Biểu_thức</emph>."
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3153768\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152597\n"
-"14\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Đánh số từ 1 đến 5\""
+msgid "You can use strings to edit text within $[officename] Basic programs."
+msgstr "Bạn có thể sử dụng chuỗi để chỉnh sửa văn bản bên trong chương trình $[officename] Basic."
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3147349\n"
-"16\n"
+"03120100.xhp\n"
+"tit\n"
"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Đánh số từ 6 đến 8\""
+msgid "ASCII/ANSI Conversion in Strings"
+msgstr "Chuyển đổi ASCII/ANSI trong chuỗi"
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3152886\n"
-"18\n"
+"03120100.xhp\n"
+"hd_id3147443\n"
+"1\n"
"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Lớn hơn 8\""
+msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"Chuyển đổi ASCII/ANSI trong chuỗi\">Chuyển đổi ASCII/ANSI trong chuỗi</link>"
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3146975\n"
-"20\n"
+"03120100.xhp\n"
+"par_id3159201\n"
+"2\n"
"help.text"
-msgid "Print \"Out of range 1 to 10\""
-msgstr "Print \"Ở ngoại phạm vi 1 đến 10\""
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr "Những hàm theo đây có chuyển đổi chuỗi sang và từ mã ASCII hay ANSI."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertFromURL Function [Runtime]"
-msgstr "Hàm ConvertFromURL [Runtime]"
+msgid "Asc Function [Runtime]"
+msgstr "Hàm Asc [Runtime]"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"bm_id3153894\n"
+"03120101.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
-msgstr "<bookmark_value>hàm ConvertFromURL</bookmark_value>"
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr "<bookmark_value>hàm Asc</bookmark_value>"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3153894\n"
+"03120101.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"Hàm ConvertFromURL [Runtime]\">Hàm ConvertFromURL [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Hàm Asc [Runtime]\">Hàm Asc [Runtime]</link>"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3147226\n"
+"03120101.xhp\n"
+"par_id3151384\n"
"2\n"
"help.text"
-msgid "Converts a file URL to a system file name."
-msgstr "Chuyển đổi một địa chỉ URL kiểu tập tin sang một tên tập tin hệ thống."
+msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+msgstr "Trả về giá trị ASCII (mã tiêu chuẩn Mỹ để trao đổi thông tin) của ký tự thứ nhất theo một biểu thức chuỗi."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
+"03120101.xhp\n"
+"hd_id3155555\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3154142\n"
+"03120101.xhp\n"
+"par_id3143267\n"
"4\n"
"help.text"
-msgid "ConvertFromURL(filename)"
-msgstr "ConvertFromURL(tên_tập_tin)"
+msgid "Asc (Text As String)"
+msgstr "Asc (Text As String)"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3159157\n"
+"03120101.xhp\n"
+"hd_id3147242\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"par_id3150669\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
+"03120101.xhp\n"
+"hd_id3148473\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3156023\n"
+"03120101.xhp\n"
+"par_id3149415\n"
"8\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as a string."
-msgstr "<emph>Tên_tập_tin:</emph> một tên tập tin dạng chuỗi."
+msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
+msgstr "<emph>Chuỗi:</emph> bất cứ biểu thức chuỗi hợp lệ nào. Chỉ ký tự đầu tiên trong chuỗi này là thích hợp."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3154760\n"
+"03120101.xhp\n"
+"par_id3145609\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
+msgstr "Hãy dùng hàm Asc để thay thế phím bằng giá trị. Nếu hàm Asc gặp một chuỗi rỗng, thì $[officename] Basic thông báo một lỗi lúc chạy. Thêm vào các ký tự 7-bit ASCII (Mã 0-127), hàm Asc cũng có thể phát hiện mã phím không in được theo mã ASCII. Hàm này cũng có thể thao tác ký tự 16-bit Unicode."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3148664\n"
+"03120101.xhp\n"
+"hd_id3159413\n"
"10\n"
"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "url$ = ConvertToURL( systemFile$ )"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"par_id3150792\n"
"12\n"
"help.text"
-msgid "print url$"
-msgstr "print url$"
+msgid "Print ASC(\"A\") ' returns 65"
+msgstr "Print ASC(\"A\") REM trả về 65"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3154367\n"
+"03120101.xhp\n"
+"par_id3148797\n"
"13\n"
"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
+msgid "Print ASC(\"Z\") ' returns 90"
+msgstr "Print ASC(\"Z\") REM trả về 90"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3153194\n"
+"03120101.xhp\n"
+"par_id3163800\n"
"14\n"
"help.text"
-msgid "print systemFileAgain$"
-msgstr "print systemFileAgain$"
+msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
+msgstr "Print ASC(\"Las Vegas\") REM trả về 76, vì chỉ ký tự đầu tiên được xử lý."
-#: 03020408.xhp
+#: 03120101.xhp
msgctxt ""
-"03020408.xhp\n"
+"03120101.xhp\n"
+"par_idN1067B\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
"tit\n"
"help.text"
-msgid "FileLen-Function [Runtime]"
-msgstr "Hàm FileLen [Runtime]"
+msgid "Chr Function [Runtime]"
+msgstr "Hàm Chr [Runtime]"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"bm_id3153126\n"
+"03120102.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>FileLen function</bookmark_value>"
-msgstr "<bookmark_value>hàm FileLen</bookmark_value>"
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr "<bookmark_value>hàm Chr</bookmark_value>"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3153126\n"
+"03120102.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"Hàm FileLen [Runtime]\">Hàm FileLen [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Hàm Chr [Runtime]\">Hàm Chr [Runtime]</link>"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3145068\n"
+"03120102.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns the length of a file in bytes."
-msgstr "Trả về chiều dài của tập tin, theo byte."
+msgid "Returns the character that corresponds to the specified character code."
+msgstr "Trả về ký tự tương ứng với mã ký tự đã ghi rõ."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3159414\n"
+"03120102.xhp\n"
+"hd_id3149514\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3149656\n"
+"03120102.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "FileLen (Text As String)"
-msgstr "FileLen (Text As String)"
+msgid "Chr(Expression As Integer)"
+msgstr "Chr(Expression As Integer)"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3148798\n"
+"03120102.xhp\n"
+"hd_id3143228\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "GIá trị trả về:"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3156282\n"
+"03120102.xhp\n"
+"par_id3153824\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "String"
+msgstr "Chuỗi"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3150768\n"
+"03120102.xhp\n"
+"hd_id3148944\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3153193\n"
+"03120102.xhp\n"
+"par_id3149295\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
+msgstr "<emph>Biểu thức:</emph> các biến thuộc số mà đại ciện một giá trị 8-bit ASCII hợp lệ (0-255) hay một giá trị 16-bit Unicode."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3150439\n"
+"03120102.xhp\n"
+"par_id3159414\n"
"9\n"
"help.text"
-msgid "This function determines the length of a file. If the FileLen function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the Lof function."
-msgstr "Hàm này xác định chiều dài của tập tin. Hàm FileLen được gọi đối với một tập tin còn mở sẽ trả về chiều dài của tập tin trước khi mở. Để xác định chiều dài tư hiện thời của một tập tin đã mở, dùng hàm « Lof »."
+msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
+msgstr "Hãy sử dụng hàm <emph>Chr$</emph> để gửi các dãy điều khiển đặc biệt cho một máy in hay nguồn xuất khác. Bạn cũng có thể sử dụng nó để chèn dấu nháy kép vào một biểu thức chuỗi."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3163710\n"
+"03120102.xhp\n"
+"hd_id3154366\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDrive Statement [Runtime]"
-msgstr "Câu lệnh ChDrive [Runtime]"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>ChDrive statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh ChDrive</bookmark_value>"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3145068\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Câu lệnh ChDrive [Runtime]\">Câu lệnh ChDrive [Runtime]</link>"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Changes the current drive."
-msgstr "Chuyển đổi ổ đĩa đang dùng."
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Text As String"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3156423\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3145172\n"
-"6\n"
+"03120102.xhp\n"
+"par_id3154909\n"
+"12\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> bất cứ biểu thức văn bản nào mà chứa chữ hiệu ổ đĩa của ổ đĩa mới. Bạn cũng có thể dùng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Kiểu ghi URL\">Kiểu ghi URL</link>."
+msgid "' This example inserts quotation marks (ASCII value 34) in a string."
+msgstr "REM Mẫu thí dụ này chèn dấu nháy kép (giá trị ASCII 34) vào một chuỗi."
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3145785\n"
-"7\n"
+"03120102.xhp\n"
+"par_id3151380\n"
+"13\n"
"help.text"
-msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
-msgstr "Ổ đĩa phải được gán một chữ hoa. Dưới Windows, chữ được gán cho ổ đĩa bị hạn chế bởi thiết lập trong LASTDRV. Nếu đối số ổ đĩa là một chuỗi đa ký tự, chỉ chữ thứ nhất là thích hợp. Thử truy cập đến một ổ đĩa không tồn tại thì gặp một lỗi mà bạn có thể đáp ứng dùng câu lệnh OnError."
+msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgstr "MsgBox \"một \"+ Chr$(34)+\"chuyến dã ngoại\" + Chr$(34)+\" ngắn.\""
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"hd_id3153188\n"
-"8\n"
+"03120102.xhp\n"
+"par_id3145174\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "' The printout appears in the dialog as: A \"short\" trip."
+msgstr "REM Chuỗi in xuất hiện trong hộp thoại như Một \"chuyến dã ngoại\" ngắn."
-#: 03020402.xhp
-#, fuzzy
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3152576\n"
-"10\n"
+"03120102.xhp\n"
+"par_idN10668\n"
"help.text"
-msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
-msgstr "ChDrive \"D\" REM Only possible if a drive 'D' exists."
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
+"03120103.xhp\n"
"tit\n"
"help.text"
-msgid "Kill Statement [Runtime]"
-msgstr "Câu lệnh Kill [Runtime]"
+msgid "Str Function [Runtime]"
+msgstr "Hàm Str [Runtime]"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"bm_id3153360\n"
+"03120103.xhp\n"
+"bm_id3143272\n"
"help.text"
-msgid "<bookmark_value>Kill statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Kill</bookmark_value>"
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr "<bookmark_value>hàm Str</bookmark_value>"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3153360\n"
+"03120103.xhp\n"
+"hd_id3143272\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Câu lệnh Kill [Runtime]\">Câu lệnh Kill [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Hàm Str [Runtime]\">Hàm Str [Runtime]</link>"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3151211\n"
+"03120103.xhp\n"
+"par_id3155100\n"
"2\n"
"help.text"
-msgid "Deletes a file from a disk."
-msgstr "Xoá một tập tin khỏi một đĩa."
+msgid "Converts a numeric expression into a string."
+msgstr "Chuyển đổi một biểu thức thuộc số sang một chuỗi."
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
+"03120103.xhp\n"
+"hd_id3109850\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3154685\n"
+"03120103.xhp\n"
+"par_id3149497\n"
"4\n"
"help.text"
-msgid "Kill File As String"
-msgstr "Kill File As String"
+msgid "Str (Expression)"
+msgstr "Str (Biểu_thức)"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
+"03120103.xhp\n"
+"hd_id3150040\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3150440\n"
+"03120103.xhp\n"
+"par_id3146117\n"
"6\n"
"help.text"
-msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "String"
+msgstr "Chuỗi"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
+"03120103.xhp\n"
+"hd_id3155805\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03020410.xhp
-#, fuzzy
-msgctxt ""
-"03020410.xhp\n"
-"par_id3163710\n"
-"9\n"
-"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileDateTime Function [Runtime]"
-msgstr "Hàm FileDateTime [Runtime]"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>FileDateTime function</bookmark_value>"
-msgstr "<bookmark_value>hàm FileDateTime</bookmark_value>"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"Hàm FileDateTime [Runtime]\">Hàm FileDateTime [Runtime]</link>"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "Returns a string that contains the date and the time that a file was created or last modified."
-msgstr "Trả về một chuỗi chứa ngày và giờ tạo hoặc sửa đổi cuối cùng của một tập tin nào đó."
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3154685\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "FileDateTime (Text As String)"
-msgstr "FileDateTime (Text As String)"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3150448\n"
-"5\n"
-"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"par_id3159153\n"
-"6\n"
+"03120103.xhp\n"
+"par_id3149178\n"
+"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Văn bản:</emph> bất cứ biểu thức chuỗi mà chứa một đặc tả tập tin không mơ hồ (không chứa ký tự đại diện). Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "<emph>Expression: </emph>Any numeric expression."
+msgstr "<emph>Biểu_thức:</emph> bất cứ biểu thức thuộc số nào."
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"par_id3155306\n"
-"7\n"
+"03120103.xhp\n"
+"par_id3146958\n"
+"9\n"
"help.text"
-msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
-msgstr "Hàm này xác định thời gian xác định tạo hoặc sửa đổi cuối cùng cho một tập tin (dưới dạng « MM.DD.YYYY HH.MM.SS »)."
+msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
+msgstr "Hàm <emph>Str</emph> chuyển đổi một biến thuộc số, hay kết quả của một phép tính, sang một chuỗi. Số âm có dấu trừ đi trước. Số dương có dấu cách đi trước (thay cho dấu cộng)."
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"hd_id3146119\n"
-"8\n"
+"03120103.xhp\n"
+"hd_id3155419\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
+"03120104.xhp\n"
"tit\n"
"help.text"
-msgid "Option Explicit Statement [Runtime]"
-msgstr "Câu lệnh Option Explicit [Runtime]"
+msgid "Val Function [Runtime]"
+msgstr "Hàm Val [Runtime]"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"bm_id3145090\n"
+"03120104.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Option Explicit</bookmark_value>"
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr "<bookmark_value>hàm Val</bookmark_value>"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3145090\n"
+"03120104.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Câu lệnh Option Explicit [Runtime]\">Câu lệnh Option Explicit [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Hàm Val [Runtime]\">Hàm Val [Runtime]</link>"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3148538\n"
+"03120104.xhp\n"
+"par_id3153345\n"
"2\n"
"help.text"
-msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
-msgstr "Ghi rõ rằng mọi biến trong mã chương trình đều phải được khai báo dứt khoát dùng câu lệnh <emph>Dim</emph>."
+msgid "Converts a string to a numeric expression."
+msgstr "Chuyển đổi một chuỗi sang một biểu thức thuộc số."
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3149763\n"
+"03120104.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03103300.xhp
-#, fuzzy
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
+"03120104.xhp\n"
"par_id3149514\n"
"4\n"
"help.text"
-msgid "Option Explicit"
-msgstr "Option Explicit"
+msgid "Val (Text As String)"
+msgstr "Val (Text As String)"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3145315\n"
+"03120104.xhp\n"
+"hd_id3150669\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3145172\n"
+"03120104.xhp\n"
+"par_id3143228\n"
"6\n"
"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr "Câu lệnh này phải được thêm vào phía trước mã chương trình có thể thực hiện trong một mô-đun."
+msgid "Double"
+msgstr "Đôi"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
+"03120104.xhp\n"
+"hd_id3156024\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03103300.xhp
-#, fuzzy
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3145787\n"
-"12\n"
+"03120104.xhp\n"
+"par_id3154348\n"
+"8\n"
"help.text"
-msgid "For i% = 1 To 10 ' This results in a run-time error"
-msgstr "For i% = 1 to 10 REM Gây ra một lỗi lúc chạy"
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr "<emph>Chuỗi:</emph> chuỗi mà đại diện một số."
-#: 03020100.xhp
+#: 03120104.xhp
msgctxt ""
-"03020100.xhp\n"
-"tit\n"
+"03120104.xhp\n"
+"par_id3149670\n"
+"9\n"
"help.text"
-msgid "Opening and Closing Files"
-msgstr "Mở và Đóng Tập Tin"
+msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
+msgstr "Dùng hàm <emph>Val</emph>, bạn có thể chuyển đổi một chuỗi mà đại diện các số sang các biểu thức thuộc số. Hàm này đảo ngược hàm <emph>Str</emph>. Nếu chỉ một phần của chuỗi chứa số, chỉ những ký tự thích hợp đầu tiên của chuỗi được chuyển đổi. Nếu chuỗi không chứa số, thì hàm <emph>Val</emph> trả về giá trị 0."
-#: 03020100.xhp
+#: 03120104.xhp
msgctxt ""
-"03020100.xhp\n"
-"hd_id3152924\n"
-"1\n"
+"03120104.xhp\n"
+"hd_id3154365\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
-msgstr "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Mở và Đóng Tập tin\">Mở và Đóng Tập tin</link>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
+"03120105.xhp\n"
"tit\n"
"help.text"
-msgid "Right Function [Runtime]"
-msgstr "Hàm Right [Runtime]"
+msgid "CByte Function [Runtime]"
+msgstr "Hàm CByte [Runtime]"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"bm_id3153311\n"
+"03120105.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Right function</bookmark_value>"
-msgstr "<bookmark_value>hàm Right</bookmark_value>"
+msgid "<bookmark_value>CByte function</bookmark_value>"
+msgstr "<bookmark_value>hàm CByte</bookmark_value>"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3153311\n"
+"03120105.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Hàm Right [Runtime]\">Hàm Right [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"Hàm CByte [Runtime]\">Hàm CByte [Runtime]</link>"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3150984\n"
+"03120105.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Returns the rightmost \"n\" characters of a string expression."
-msgstr "Trả về « n » ký tự bên phải cùng của một biểu thức chuỗi."
+msgid "Converts a string or a numeric expression to the type Byte."
+msgstr "Chuyển đổi một chuỗi hay biểu thức thuộc số sang kiểu Byte."
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3149763\n"
+"03120105.xhp\n"
+"hd_id3149811\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Hàm Left\">Hàm Left</link>."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
+"03120105.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Cbyte( expression )"
+msgstr "Cbyte( biểu_thức )"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3153061\n"
+"03120105.xhp\n"
+"hd_id3145315\n"
"5\n"
"help.text"
-msgid "Right (Text As String, n As Long)"
-msgstr "Right (Text As String, n As Long)"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
+"03120105.xhp\n"
+"par_id3148473\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Byte"
+msgstr "Byte"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3156344\n"
+"03120105.xhp\n"
+"hd_id3147530\n"
"7\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3146795\n"
-"8\n"
-"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3153526\n"
-"9\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào có các ký tự bên phải cùng mà bạn muốn trả về."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3151211\n"
-"10\n"
-"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
-msgstr "<emph>n:</emph> biểu thức thuộc số mà xác định số các ký tự cần trả về. Nếu <emph>n</emph> = 0, thì trả về một chuỗi có chiều dài số không. Giá trị tối đa được phép là 65535."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3158410\n"
-"11\n"
-"help.text"
-msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
-msgstr "Mẫu thí dụ theo đây chuyển đổi một ngày tháng theo định dạng NNăm-Th-Ng sang định dạng ngày tháng Mỹ (Th/Ng/NNăm)."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03120307.xhp
-#, fuzzy
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3159252\n"
-"16\n"
+"03120105.xhp\n"
+"par_id3145068\n"
+"8\n"
"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Hãy nhập một ngày tháng theo định dạng quốc tế « NNăm-Th-Ng »\")"
+msgid "<emph>Expression:</emph> A string or a numeric expression."
+msgstr "<emph>Biểu_thức:</emph> một biểu thức kiểu chuỗi hay thuộc số."
#: 03120200.xhp
msgctxt ""
@@ -29771,4232 +31198,3390 @@ msgctxt ""
msgid "The following functions repeat the contents of strings."
msgstr "Những hàm theo đây lặp lại nội dung của chuỗi."
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
+"03120201.xhp\n"
"tit\n"
"help.text"
-msgid "\"/\" Operator [Runtime]"
-msgstr "Toán tử « / » [Runtime]"
+msgid "Space Function [Runtime]"
+msgstr "Hàm Space [Runtime]"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"bm_id3150669\n"
+"03120201.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử « / » (toán học)</bookmark_value>"
+msgid "<bookmark_value>Space function</bookmark_value>"
+msgstr "<bookmark_value>hàm Space</bookmark_value>"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3150669\n"
+"03120201.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">Toán tử « / » [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Hàm Space [Runtime]\">Hàm Space [Runtime]</link>"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3149670\n"
+"03120201.xhp\n"
+"par_id3154927\n"
"2\n"
"help.text"
-msgid "Divides two values."
-msgstr "Chia giá trị này cho giá trị khác."
+msgid "Returns a string that consists of a specified amount of spaces."
+msgstr "Trả về một chuỗi chứa một số dấu cách đã ghi rõ."
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3148946\n"
+"03120201.xhp\n"
+"hd_id3153394\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3153360\n"
+"03120201.xhp\n"
+"par_id3143267\n"
"4\n"
"help.text"
-msgid "Result = Expression1 / Expression2"
-msgstr "Kết quả = Biểu_thức1 / Biểu_thức2"
+msgid "Space (n As Long)"
+msgstr "Space (n As Long)"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3150359\n"
+"03120201.xhp\n"
+"hd_id3147242\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3154141\n"
+"03120201.xhp\n"
+"par_id3149233\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
-msgstr "<emph>Kết quả:</emph> bất cứ biểu thức thuộc số nào mà chứa kết quả của phép chia."
+msgid "String"
+msgstr "Chuỗi"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3150448\n"
+"03120201.xhp\n"
+"hd_id3156152\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn đặt trong phép chia."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3154684\n"
+"03120201.xhp\n"
+"par_id3143228\n"
"8\n"
"help.text"
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> biểu thức thuộc số mà xác định số dấu cách trong chuỗi đó. Giá trị tối đa cho phép cho n là 65535."
+
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"hd_id3154760\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
+"03120201.xhp\n"
+"par_id3154216\n"
+"18\n"
+"help.text"
+msgid "MsgBox sOut,0,\"Info:\""
+msgstr "msgBox sOut,0,\"Thông tin:\""
+
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
"tit\n"
"help.text"
-msgid "Erl Function [Runtime]"
-msgstr "Hàm Erl [Runtime]"
+msgid "String Function [Runtime]"
+msgstr "Hàm String [Runtime]"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"bm_id3157896\n"
+"03120202.xhp\n"
+"bm_id3147291\n"
"help.text"
-msgid "<bookmark_value>Erl function</bookmark_value>"
-msgstr "<bookmark_value>hàm Erl</bookmark_value>"
+msgid "<bookmark_value>String function</bookmark_value>"
+msgstr "<bookmark_value>hàm String</bookmark_value>"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3157896\n"
+"03120202.xhp\n"
+"hd_id3147291\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Hàm Erl [Runtime]\">Hàm Erl [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"Hàm String [Runtime]\">Hàm String [Runtime]</link>"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153394\n"
+"03120202.xhp\n"
+"par_id3147242\n"
"2\n"
"help.text"
-msgid "Returns the line number where an error occurred during program execution."
-msgstr "Trả về số thứ tự dòng trên đó lỗi xảy ra trong khi thực hiện chương trình."
+msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+msgstr "Tạo một chuỗi tùy theo ký tự đã ghi rõ, hay ký tự đầu tiên của một biểu thức chuỗi được gửi cho hàm."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3147574\n"
+"03120202.xhp\n"
+"hd_id3149516\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3146795\n"
+"03120202.xhp\n"
+"par_id3149233\n"
"4\n"
"help.text"
-msgid "Erl"
-msgstr "Erl"
+msgid "String (n As Long, {expression As Integer | character As String})"
+msgstr "String (n As Long, {expression As Integer | character As String})"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3147265\n"
+"03120202.xhp\n"
+"hd_id3143270\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3154924\n"
+"03120202.xhp\n"
+"par_id3147530\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "String"
+msgstr "Chuỗi"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3150792\n"
+"03120202.xhp\n"
+"hd_id3154923\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153771\n"
+"03120202.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "The Erl function only returns a line number, and not a line label."
-msgstr "Hàm <emph>Erl</emph> chỉ trả về một số thứ tự dòng, không phải một nhãn dòng."
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> biểu thức thuộc số mà ngụ ý số các ký tự cần trả về trong chuỗi. Giá trị n tối đa được phép là 65535."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3146921\n"
+"03120202.xhp\n"
+"par_id3148664\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03050100.xhp
-#, fuzzy
-msgctxt ""
-"03050100.xhp\n"
-"par_id3150010\n"
-"11\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Set up error handler"
-msgstr "on error goto ErrorHandler REM Thiết lập hàm quản lý lỗi"
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr "<emph>Biểu_thức:</emph> biểu thức thuộc số mà xác định mã ASCII của ký tự."
-#: 03050100.xhp
-#, fuzzy
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153188\n"
-"14\n"
+"03120202.xhp\n"
+"par_id3150359\n"
+"10\n"
"help.text"
-msgid "' Error caused by non-existent file"
-msgstr "REM Lỗi gây ra bởi tập tin không tồn tại"
+msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
+msgstr "<emph>Ký_tự:</emph> bất cứ ký tự đơn nào được dùng để xây dựng chuỗi trả về, hay bất cứ chuỗi nào của đó chỉ ký tự đầu tiên sẽ được dùng."
-#: 03050100.xhp
-#, fuzzy
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3155416\n"
-"21\n"
+"03120202.xhp\n"
+"hd_id3152920\n"
+"11\n"
"help.text"
-msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
-msgstr "MsgBox \"Lỗi \" & err & \": \" & error$ + chr(13) + \"Trên dòng : \" + Erl + chr(13) + Now , 16 ,\"Gặp lỗi\""
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
+"03120300.xhp\n"
"tit\n"
"help.text"
-msgid "Erase Function [Runtime]"
-msgstr "Hàm Erase [Runtime]"
+msgid "Editing String Contents"
+msgstr "Chỉnh Sửa Nội Dung Chuỗi"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
-"bm_id624713\n"
+"03120300.xhp\n"
+"bm_id7499008\n"
"help.text"
-msgid "<bookmark_value>Erase function</bookmark_value>"
-msgstr "<bookmark_value>hàm Erase</bookmark_value>"
+msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
+msgstr "<bookmark_value>dấu và trong StarBasic</bookmark_value>"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN10548\n"
+"03120300.xhp\n"
+"hd_id3153894\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Hàm Erase [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Chỉnh Sửa Nội Dung Chuỗi\">Chỉnh Sửa Nội Dung Chuỗi</link>"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN10558\n"
+"03120300.xhp\n"
+"par_id3149178\n"
+"2\n"
"help.text"
-msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
-msgstr "Xoá nội dung của phần tử mảng của các mảng có kích cỡ cố định, và thả bộ nhớ được chiếm bởi các mảng có kích cỡ biến đổi."
+msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+msgstr "Những hàm theo đây chỉnh sửa, định dạng và canh lề nội dung của chuỗi. Hãy dùng toán tử « & » để ghép nối các chuỗi."
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN1055D\n"
+"03120301.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Format Function [Runtime]"
+msgstr "Hàm Format [Runtime]"
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105E6\n"
+"03120301.xhp\n"
+"bm_id3153539\n"
"help.text"
-msgid "Erase Arraylist"
-msgstr "Erase Danh_sách_mảng"
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr "<bookmark_value>hàm Format</bookmark_value>"
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105E9\n"
+"03120301.xhp\n"
+"hd_id3153539\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Hàm Format [Runtime]\">Hàm Format [Runtime]</link>"
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105ED\n"
+"03120301.xhp\n"
+"par_id3156042\n"
+"2\n"
"help.text"
-msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
-msgstr "<emph>Danh_sách_mảng</emph>: danh sách các mảng cần xoá."
+msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgstr "Chuyển đổi một số sang một chuỗi, sau đó thì định dạng nó tùy theo định dạng bạn ghi rõ."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"tit\n"
+"03120301.xhp\n"
+"hd_id3145090\n"
+"4\n"
"help.text"
-msgid "Exp Function [Runtime]"
-msgstr "Hàm Exp [Runtime]"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"bm_id3150616\n"
+"03120301.xhp\n"
+"par_id3153527\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>Exp function</bookmark_value>"
-msgstr "<bookmark_value>hàm Exp</bookmark_value>"
+msgid "Format (Number [, Format As String])"
+msgstr "Format (Number [, Format As String])"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03120301.xhp\n"
+"hd_id3149178\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Hàm Exp [Runtime]\">Hàm Exp [Runtime]</link>"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3155555\n"
-"2\n"
+"03120301.xhp\n"
+"par_id3148474\n"
+"7\n"
"help.text"
-msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
-msgstr "Trả về cơ số của lôga tự nhiên (e = 2,718282) lấy lũy thừa."
+msgid "String"
+msgstr "Chuỗi"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3150984\n"
-"3\n"
+"03120301.xhp\n"
+"hd_id3159176\n"
+"8\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3145315\n"
-"4\n"
+"03120301.xhp\n"
+"par_id3149415\n"
+"9\n"
"help.text"
-msgid "Exp (Number)"
-msgstr "Exp (Số)"
+msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
+msgstr "<emph>Số</emph> : biểu thức thuộc số cần chuyển đổi sang một chuỗi được định dạng."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3154347\n"
-"5\n"
+"03120301.xhp\n"
+"par_id3147531\n"
+"10\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
+msgstr "<emph>Định dạng:</emph> chuỗi mà ghi rõ mã định dạng cho số. Không đưa ra <emph>Định dạng</emph> thì hàm <emph>Format</emph> chạy giống như hàm <emph>Str</emph>."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
-"6\n"
+"03120301.xhp\n"
+"hd_id3147561\n"
+"47\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Formatting Codes"
+msgstr "Mã định dạng"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03120301.xhp\n"
+"par_id3147265\n"
+"11\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "The following list describes the codes that you can use for formatting a number:"
+msgstr "Danh sách theo đây diễn tả những mã bạn có thể sử dụng để định dạng một số :"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3150793\n"
-"8\n"
+"03120301.xhp\n"
+"par_id3153380\n"
+"12\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
-msgstr "<emph>Số</emph>: bất cứ biểu thức thuộc số nào mà ghi rõ giá trị số mũ của e (cơ số của lôga tự nhiên). Số mũ này phải cả hai nhỏ hơn hay bằng với 88,02969 cho số chính xác đơn và nhỏ hơn hay bằng với 709,782712893 cho số chính xác đôi, vì $[officename] Basic trả về lỗi Bị Tràn đáp ứng số vượt quá giá trị đó."
+msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
+msgstr "<emph>0:</emph> Nếu <emph>Số</emph> có một chữ số ở vị trí của 0 trong mã định dạng, thì hiển thị chữ số đó ; không thì hiển thị một số không."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3156280\n"
-"9\n"
+"03120301.xhp\n"
+"par_id3151210\n"
+"13\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
+msgstr "Nếu <emph>Số</emph> có ít chữ số hơn số các số không trong mã định dạng (ở bên nào của dấu thập phân), thì hiển thị các số không đi trước hay đi sau. Nếu số có nhiều chữ số bên trái dấu thập phân hơn số các số không trong mã định dạng, thì hiển thị các chữ số thêm, không cần định dạng."
-#: 03080201.xhp
-#, fuzzy
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3159254\n"
-"13\n"
+"03120301.xhp\n"
+"par_id3151176\n"
+"14\n"
"help.text"
-msgid "Const b2=1.345e34"
-msgstr "const b2=1.345e34"
+msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
+msgstr "Số lần số trong số này được làm tròn tùy theo số các số không xuất hiện phía sau dấu thập phân trong mã <emph>Định dạng</emph>."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3161832\n"
+"03120301.xhp\n"
+"par_id3154123\n"
"15\n"
"help.text"
-msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
-msgstr "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Nhân với lôga\""
+msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
+msgstr "<emph>#:</emph> nếu <emph>Số</emph> chứa một chữ số ở vị trí của vật thế chỗ « # » trong mã <emph>Định dạng</emph>, thì hiển thị chữ số đó ; không thì không hiển thị gì ở vị trí này."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"tit\n"
+"03120301.xhp\n"
+"par_id3148452\n"
+"16\n"
"help.text"
-msgid "Macro"
-msgstr "Vĩ lệnh"
+msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
+msgstr "Ký hiệu này giống như số 0, nhưng không hiển thị các số không đi trước/sau nếu có nhiều ký tự # trong mã định dạng hơn số chữ số trong số đó. Chỉ hiển thị những chữ số liên quan của số đó."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"bm_id3153894\n"
+"03120301.xhp\n"
+"par_id3159150\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>events;linked to objects</bookmark_value>"
-msgstr "<bookmark_value>sự kiện;liên kết đến đối tượng</bookmark_value>"
+msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
+msgstr "<emph>.:</emph> vật thế chỗ thập phân quyết định số lần số bên trái và bên phải dấu cách thập phân."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3153894\n"
-"1\n"
+"03120301.xhp\n"
+"par_id3159252\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link>"
+msgid "If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
+msgstr "Nếu mã định dạng chứa chỉ # vật thế chỗ bên trái ký hiệu này, thì các số nhỏ hơn 1 sẽ bắt đầu với một dấu cách thập phân. Để luôn luôn hiển thị một số không đi trước với các số phân số, hãy dùng 0 làm vật thế chỗ cho chữ số thứ nhất bên trái dấu cách thập phân."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153748\n"
-"2\n"
+"03120301.xhp\n"
+"par_id3153368\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
-msgstr "<ahelp hid=\".\">Hãy chọn vĩ lệnh bạn muốn thực hiện một khi lựa chọn đồ họa, khung hay đối tượng OLE thích hợp.</ahelp> Phụ thuộc vào đối tượng được chọn, hàm này nằm hoặc trên thẻ <emph>Vĩ lệnh</emph> của hộp thoại <emph>Đối tượng</emph>, hoặc trong hộp thoại <emph>Gán vĩ lệnh</emph>."
+msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
+msgstr "<emph>%:</emph> nhân số với 100, và chèn dấu phân trăm (%) vào vị trí của số trong mã định dạng."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3150503\n"
-"3\n"
+"03120301.xhp\n"
+"par_id3149481\n"
+"20\n"
"help.text"
-msgid "Event"
-msgstr "Sự kiện"
+msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
+msgstr "<emph>E- E+ e- e+ :</emph> nếu mã định dạng chứa ít nhất một chữ số giữ chỗ (0 hay #) bên phải ký hiệu E-, E+, e-, hay e+, thì số được định dạng theo định dạng hoa học hay số mũ. Chữ E hay e được chèn vào giữa số chính và số mũ. Số các ký hiệu giữ chỗ cho chữ số bên phải ký hiệu thì quyết định số các chữ số trong số mũ."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149763\n"
-"4\n"
+"03120301.xhp\n"
+"par_id3149262\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_LB_EVENT\">Liệt kê các sự kiện thích hợp với những vĩ lệnh hiện thời được gán cho đối tượng đã chọn.</ahelp>"
+msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
+msgstr "Nếu số mũ là âm, một dấu trừ được hiển thị trực tiếp phía trước một số mũ với E-, E+, e-, e+. Nếu số mũ là dương, một dấu cộng chỉ được hiển thị phía trước số mũ với E+ hay e+."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150670\n"
+"03120301.xhp\n"
+"par_id3148617\n"
"23\n"
"help.text"
-msgid "The following table describes the macros and the events that can by linked to objects in your document:"
-msgstr "Bảng theo đây diễn tả những vĩ lệnh và sự kiện có thể được liên kết đến đối tượng trong tài liệu của bạn:"
+msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
+msgstr "Dấu cách hàng nghìn được hiển thị nếu mã định dạng chứa dấu tách nằm giữa hai ký tự giữ chỗ (0 hay #)."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153360\n"
+"03120301.xhp\n"
+"par_id3163713\n"
+"29\n"
+"help.text"
+msgid "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
+msgstr "Sử dụng một dấu chấm làm dấu cách hàng nghìn thì phụ thuộc vào thiết lập miền. Khi bạn gõ một số một cách trực tiếp vào mã nguồn Basic, lúc nào cũng cần phải sử dụng một dấu chấm làm dấu cách hàng nghìn. Ký tự thật được hiển thị làm dấu cách hàng nghìn phụ thuộc vào định dạng số trong thiết lập hệ thống của bạn."
+
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3152887\n"
"24\n"
"help.text"
-msgid "Event"
-msgstr "Sự kiện"
+msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
+msgstr "<emph>- + $ ( ) dấu_cách:</emph> Mỗi dấu cộng (+), dấu trừ (-), dấu đồng đô-la ($), dấu cách ( ) hay (dấu ngoặc) được nhập trực tiếp vào mã định dạng thì được hiển thị dưới dạng một ký tự nghĩa chữ."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154365\n"
+"03120301.xhp\n"
+"par_id3148576\n"
"25\n"
"help.text"
-msgid "Event trigger"
-msgstr "Bộ kích hoạt sự kiện"
+msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
+msgstr "Để hiển thị ký tự khác với những cái được liệt kê ở đây, bạn cần phải gõ gạch chéo ngược (\\) phía trước, hoặc \"bao quanh nó trong dấu nháy kép\"."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3159149\n"
+"03120301.xhp\n"
+"par_id3153139\n"
"26\n"
"help.text"
-msgid "OLE object"
-msgstr "Đối tượng OLE"
+msgid "\\ : The backslash displays the next character in the format code."
+msgstr "\\ : Gạch chéo ngược sẽ hiển thị ký tự kế tiếp trong mã định dạng."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148451\n"
+"03120301.xhp\n"
+"par_id3153366\n"
"27\n"
"help.text"
-msgid "Graphics"
-msgstr "Đồ họa"
+msgid "Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
+msgstr "Trong mã định dạng ký tự có nghĩa đặc biêt chỉ có thể được hiển thị dạng ký tự nghĩa chữ nếu nó có gạch chéo ngược đi trước. Gạch chéo ngược chính nó không phải được hiển thị, nếu bạn không gõ một gạch chéo ngược đôi (\\\\) để thoát nó trong mã định dạng."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3125863\n"
+"03120301.xhp\n"
+"par_id3155411\n"
"28\n"
"help.text"
-msgid "Frame"
-msgstr "Khung"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154216\n"
-"29\n"
-"help.text"
-msgid "AutoText"
-msgstr "Tốc ký"
+msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
+msgstr "Các ký tự phải có gạch chéo ngược đi trước trong mã định dạng để hiển thị dạng ký tự nghĩa chữ là những ký tự định dạng ngày tháng và thời gian (a, c, d, h, m, n, p, q, s, t, w, y, /, :), những ký tự định dạng số (#, 0, %, E, e, dấu phẩy, dấu chấm), và những ký tự định dạng chuỗi (@, &, <, >, !)."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145785\n"
+"03120301.xhp\n"
+"par_id3145749\n"
"30\n"
"help.text"
-msgid "ImageMap area"
-msgstr "Vùng sơ đồ ảnh"
+msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
+msgstr "Bạn cũng có thể sử dụng những định dạng số đã xác định sẵn mà theo đây. Mọi mã được đã xác định sẵn (trừ « Số chung ») đều trả về số dạng số thập phân có hai lần số."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153138\n"
+"03120301.xhp\n"
+"par_id3150113\n"
"31\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Siêu liên kết"
+msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+msgstr "Nếu bạn sử dụng định dạng xác định sẵn, tên của định dạng phải nằm giữa dấu nháy kép."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155306\n"
+"03120301.xhp\n"
+"hd_id3149377\n"
"32\n"
"help.text"
-msgid "Click object"
-msgstr "Nhấn vào đối tượng"
+msgid "Predefined format"
+msgstr "Định dạng xác định sẵn"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3152460\n"
+"03120301.xhp\n"
+"par_id3154730\n"
"33\n"
"help.text"
-msgid "Object is selected."
-msgstr "Đối tượng được chọn."
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgstr "<emph>Số chung:</emph> mỗi số được hiển thị dưới dạng đã nhập vào."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147348\n"
+"03120301.xhp\n"
+"par_id3153158\n"
"34\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
+msgstr "<emph>Tiền tệ:</emph> chèn một ký hiệu đô-la vào phía trước số, và đặt số âm giữa dấu ngoặc."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147426\n"
+"03120301.xhp\n"
+"par_id3154490\n"
"35\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
+msgstr "<emph>Cố định:</emph> hiển thị ít nhất một chữ số phía trước dấu cách thập phân."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153951\n"
+"03120301.xhp\n"
+"par_id3153415\n"
"36\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
+msgstr "<emph>Chuẩn:</emph> hiển thị số dùng dấu cách hàng nghìn."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150116\n"
+"03120301.xhp\n"
+"par_id3150715\n"
"37\n"
"help.text"
-msgid "Mouse over object"
-msgstr "Chuột trên đối tượng"
+msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+msgstr "<emph>Phần trăm:</emph> nhân số với 100, và phụ thêm một ký hiệu phần trăm vào số."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145253\n"
+"03120301.xhp\n"
+"par_id3153836\n"
"38\n"
"help.text"
-msgid "Mouse moves over the object."
-msgstr "Chuột đi ở trên đối tượng."
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgstr "<emph>Khoa học:</emph> hiển thị các số theo định dạng khoa học, v.d. 1.00E+03 = 1000)."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3144765\n"
+"03120301.xhp\n"
+"par_id3153707\n"
"39\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
+msgstr "Một mã định dạng có thể được chia ra ba phần định giới bằng dấu chấm phẩy. Phần thứ nhất xác định định dạng cho các giá trị dương, phần thứ hai cho các giá trị âm, và phần thứ ba cho số không. Nếu bạn chỉ ghi rõ một mã định dạng, nó sẽ áp dụng cho tất cả các số."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153418\n"
+"03120301.xhp\n"
+"hd_id3149019\n"
"40\n"
"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153948\n"
-"41\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145652\n"
-"42\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155066\n"
-"43\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155446\n"
-"44\n"
-"help.text"
-msgid "Trigger Hyperlink"
-msgstr "Kích hoạt siêu liên kết"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154756\n"
-"45\n"
+"03120301.xhp\n"
+"par_idN107A2\n"
"help.text"
-msgid "Hyperlink assigned to the object is clicked."
-msgstr "Siêu liên kết được gán cho đối tượng được nhấn vào."
+msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
+msgstr "REM Lúc nào cũng sử dụng một dấu cách thập phân khi bạn gõ số vào mã nguồn Basic."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150042\n"
+"03120301.xhp\n"
+"par_id3147339\n"
"46\n"
"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151252\n"
-"47\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147344\n"
-"48\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3146920\n"
-"49\n"
-"help.text"
-msgid "x"
-msgstr "x"
+msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+msgstr "REM Hiển thị (v.d.) 6,328.20 theo miền địa phương tiếng Anh, và 6.328,20 theo miền địa phương tiếng Việt."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3159333\n"
-"50\n"
+"03120302.xhp\n"
+"tit\n"
"help.text"
-msgid "Mouse leaves object"
-msgstr "Chuột rời đối tượng"
+msgid "LCase Function [Runtime]"
+msgstr "Hàm LCase [Runtime]"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147003\n"
-"51\n"
+"03120302.xhp\n"
+"bm_id3152363\n"
"help.text"
-msgid "Mouse moves off of the object."
-msgstr "Chuột đi ra đối tượng."
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr "<bookmark_value>hàm LCase</bookmark_value>"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151278\n"
-"52\n"
+"03120302.xhp\n"
+"hd_id3152363\n"
+"1\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"Hàm LCase [Runtime]\">Hàm LCase [Runtime]</link>"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145257\n"
-"53\n"
+"03120302.xhp\n"
+"par_id3145609\n"
+"2\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Converts all uppercase letters in a string to lowercase."
+msgstr "Chuyển đổi mọi chữ hoa trong một chuỗi sang chữ thường."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154122\n"
-"54\n"
+"03120302.xhp\n"
+"par_id3154347\n"
+"3\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
+msgstr "Xem thêm: hàm <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link>"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3156139\n"
-"55\n"
+"03120302.xhp\n"
+"hd_id3149456\n"
+"4\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149036\n"
-"56\n"
+"03120302.xhp\n"
+"par_id3150791\n"
+"5\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "LCase (Text As String)"
+msgstr "LCase (Text As String)"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150785\n"
-"57\n"
+"03120302.xhp\n"
+"hd_id3154940\n"
+"6\n"
"help.text"
-msgid "Graphics load successful"
-msgstr "Đồ họa đã được nạp."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153705\n"
-"58\n"
+"03120302.xhp\n"
+"par_id3144760\n"
+"7\n"
"help.text"
-msgid "Graphics are loaded successfully."
-msgstr "Đồ họa đã lãi được nạp thành công."
+msgid "String"
+msgstr "Chuỗi"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150343\n"
-"59\n"
+"03120302.xhp\n"
+"hd_id3151043\n"
+"8\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150202\n"
-"60\n"
+"03120302.xhp\n"
+"par_id3153193\n"
+"9\n"
"help.text"
-msgid "Graphics load terminated"
-msgstr "Việc nạp đồ họa bị kết thúc"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào cần chuyển đổi."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145584\n"
-"61\n"
+"03120302.xhp\n"
+"hd_id3148451\n"
+"10\n"
"help.text"
-msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
-msgstr "Tiến trình nạp đồ họa bị người dùng dừng (v.d. trong khi tải xuống trang Web)."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154259\n"
-"62\n"
+"03120302.xhp\n"
+"par_id3146121\n"
+"14\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Print LCase(sVar) ' Returns \"las vegas\""
+msgstr "Print LCase(sVar) REM trả về \"las vegas\""
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155089\n"
-"63\n"
+"03120302.xhp\n"
+"par_id3146986\n"
+"15\n"
"help.text"
-msgid "Graphics load faulty"
-msgstr "Việc nạp đồ họa bị lỗi"
+msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM trả về \"LAS VEGAS\""
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153307\n"
-"64\n"
+"03120303.xhp\n"
+"tit\n"
"help.text"
-msgid "Graphics not successfully loaded, for example, if a graphic was not found."
-msgstr "Đồ họa không nạp được, v.d. nếu không tìm thấy."
+msgid "Left Function [Runtime]"
+msgstr "Hàm Left [Runtime]"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148840\n"
-"65\n"
+"03120303.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<bookmark_value>Left function</bookmark_value>"
+msgstr "<bookmark_value>hàm Left</bookmark_value>"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154533\n"
-"66\n"
+"03120303.xhp\n"
+"hd_id3149346\n"
+"1\n"
"help.text"
-msgid "Input of alpha characters"
-msgstr "Nhập các ký tự alpha"
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Hàm Left [Runtime]\">Hàm Left [Runtime]</link>"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155266\n"
-"67\n"
+"03120303.xhp\n"
+"par_id3147242\n"
+"2\n"
"help.text"
-msgid "Text is entered from the keyboard."
-msgstr "Văn bản được gõ bằng bàn phím."
+msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgstr "Trả về số các ký tự bên trái cùng mà bạn ghi rõ của một biểu thức chuỗi."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3144768\n"
-"68\n"
+"03120303.xhp\n"
+"hd_id3156153\n"
+"3\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145659\n"
-"69\n"
+"03120303.xhp\n"
+"par_id3150771\n"
+"4\n"
"help.text"
-msgid "Input of non-alpha characters"
-msgstr "Nhập các ký tự khác alpha"
+msgid "Left (Text As String, n As Long)"
+msgstr "Left (Text As String, n As Long)"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151131\n"
-"70\n"
+"03120303.xhp\n"
+"hd_id3153824\n"
+"5\n"
"help.text"
-msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
-msgstr "Các ký tự không thể in được gõ bằng bàn phím, v.d. dấu cách tab và ký tự ngắt dòng."
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3159206\n"
-"71\n"
+"03120303.xhp\n"
+"par_id3147530\n"
+"6\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "String"
+msgstr "Chuỗi"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150405\n"
-"72\n"
+"03120303.xhp\n"
+"hd_id3148946\n"
+"7\n"
"help.text"
-msgid "Resize frame"
-msgstr "Đổi cỡ khung"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153972\n"
-"73\n"
+"03120303.xhp\n"
+"par_id3148552\n"
+"8\n"
"help.text"
-msgid "Frame is resized with the mouse."
-msgstr "Khung có kích cỡ được thay đổi bằng con chuột."
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào từ đó bạn muốn trả về các ký tự bên trái cùng."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3152873\n"
-"74\n"
+"03120303.xhp\n"
+"par_id3149456\n"
+"9\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> biểu thức thuộc số mà ghi rõ số các ký tự cần trả về. Nếu <emph>n</emph> = 0, thì trả về một chuỗi có chiều dài số không. Giá trị tối đa được phép là 65535."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148900\n"
-"75\n"
+"03120303.xhp\n"
+"par_id3150791\n"
+"10\n"
"help.text"
-msgid "Move frame"
-msgstr "Di chuyển khung"
+msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
+msgstr "Mẫu thí dụ theo đây chuyển đổi một ngày tháng theo định dạng NNăm.Th.Ng sang định dạng Th/Ng/NNăm."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154767\n"
-"76\n"
+"03120303.xhp\n"
+"hd_id3125863\n"
+"11\n"
"help.text"
-msgid "Frame is moved with the mouse."
-msgstr "Khung được di chuyển bằng con chuột."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155914\n"
-"77\n"
+"03120303.xhp\n"
+"par_id3150448\n"
+"15\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Hãy nhập một ngày tháng theo định dạng quốc tế « NNăm-Th-Ng »)"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153010\n"
-"78\n"
+"03120304.xhp\n"
+"tit\n"
"help.text"
-msgid "Before inserting AutoText"
-msgstr "Trước khi chèn tốc ký"
+msgid "LSet Statement [Runtime]"
+msgstr "Câu lệnh LSet [Runtime]"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147515\n"
-"79\n"
+"03120304.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "Before a text block is inserted."
-msgstr "Trước khi chèn một khối văn bản."
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh LSet</bookmark_value>"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151191\n"
-"80\n"
+"03120304.xhp\n"
+"hd_id3143268\n"
+"1\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"Hàm LSet [Runtime]\">Hàm LSet [Runtime]</link>"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150956\n"
-"81\n"
+"03120304.xhp\n"
+"par_id3155419\n"
+"2\n"
"help.text"
-msgid "After inserting AutoText"
-msgstr "Sau khi chèn tốc ký"
+msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
+msgstr "Sắp hàng một chuỗi theo bên trái của một biến chuỗi, hoặc sao chép một biến có kiểu do người dùng xác định vào một biến có kiểu do người dùng xác định khác."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147502\n"
-"82\n"
+"03120304.xhp\n"
+"hd_id3145317\n"
+"3\n"
"help.text"
-msgid "After a text block is inserted."
-msgstr "Sau khi chèn một khối văn bản."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147555\n"
-"83\n"
+"03120304.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "LSet Var As String = Text or LSet Var1 = Var2"
+msgstr "LSet Var As String = Text or LSet Var1 = Var2"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3153958\n"
+"03120304.xhp\n"
+"hd_id3143271\n"
"5\n"
"help.text"
-msgid "Macros"
-msgstr "Vĩ lệnh"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150432\n"
+"03120304.xhp\n"
+"par_id3145610\n"
"6\n"
"help.text"
-msgid "Choose the macro that you want to execute when the selected event occurs."
-msgstr "Hãy chọn vĩ lệnh bạn muốn thực hiện khi sự kiện đã chọn có xảy ra."
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147296\n"
-"84\n"
-"help.text"
-msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
-msgstr "Khung cho phép bạn liên kết sự kiện đến một hàm, để hàm đó quyết định nếu nó nên xử lý sự kiện, hay $[officename] Writer."
+msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+msgstr "<emph>Var:</emph> bất cứ biến Chuỗi nào mà chứa chuỗi cần canh lề theo bên trái."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3155587\n"
+"03120304.xhp\n"
+"par_id3154346\n"
"7\n"
"help.text"
-msgid "Category"
-msgstr "Phân loại"
+msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
+msgstr "<emph>Text:</emph> chuỗi cần canh lề theo bên trái của biến chuỗi."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154068\n"
+"03120304.xhp\n"
+"par_id3151054\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_GROUP\">Liệt kê các tài liệu và ứng dụng kiểu $[officename] còn mở. Nhấn vào thư mục vào đó bạn muốn lưu các vĩ lệnh.</ahelp>"
+msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
+msgstr "<emph>Var1:</emph> tên của biến có kiểu do người dùng xác định vào đó cần sao chép."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3149744\n"
+"03120304.xhp\n"
+"par_id3153361\n"
"9\n"
"help.text"
-msgid "Macro name"
-msgstr "Tên vĩ lệnh"
+msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+msgstr "<emph>Var2:</emph> tên của biến có kiểu do người dùng xác định từ đó cần sao chép."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151391\n"
+"03120304.xhp\n"
+"par_id3154686\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_MACROS\">Liệt kê các vĩ lệnh sẵn sàng. Nhấn vào vĩ lệnh bạn muốn gán cho đối tượng đã chọn.</ahelp>"
+msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
+msgstr "Nếu chuỗi ngắn hơn biến chuỗi, thì câu lệnh <emph>LSet</emph> canh lề chuỗi theo bên trái bên trong biến chuỗi. Bất cứ vị trí nào còn lại trong biến chuỗi được dấu cách thay thế. Nếu chuỗi dài hơn biến chuỗi, thì chỉ sao chép những ký tự bên trái cùng đến chiều dài của biến chuỗi đó. Dùng câu lệnh <emph>LSet</emph>, bạn cũng có thể sao chép một biến có kiểu do người dùng xác định vào một biến khác cùng kiểu."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3159260\n"
+"03120304.xhp\n"
+"hd_id3156282\n"
"11\n"
"help.text"
-msgid "Assign"
-msgstr "Gán"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147406\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
-msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Gán vĩ lệnh đã chọn cho sự kiện đã ghi rõ.</ahelp> Các mục nhập của vĩ lệnh đã gán sẽ được đặt sau sự kiện."
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150533\n"
-"15\n"
-"help.text"
-msgid "Remove"
-msgstr "Bỏ"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3166456\n"
-"16\n"
+"03120304.xhp\n"
+"par_id3152940\n"
+"18\n"
"help.text"
-msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
-msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Gỡ bỏ vĩ lệnh được gán cho mục đã chọn.</ahelp></variable>"
+msgid "' Align \"SBX\" within the 40-character reference string"
+msgstr "REM Sắp hàng « SBX » bên trong chuỗi tham chiếu có 40 ký tự."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3159126\n"
-"85\n"
+"03120304.xhp\n"
+"par_id3148647\n"
+"19\n"
"help.text"
-msgid "Macro selection"
-msgstr "Lựa chọn vĩ lệnh"
+msgid "' Replace asterisks with spaces"
+msgstr "REM Thay thế mỗi dấu sao bằng một dáu cách"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149149\n"
-"86\n"
+"03120304.xhp\n"
+"par_id3151075\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Lựa chọn vĩ lệnh bạn muốn gán.</ahelp>"
+msgid "' Left-align \"SBX\" within the 40-character reference string"
+msgstr "REM Canh lề trái « SBX » bên trong chuỗi tham chiếu có 40 ký tự"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
+"03120305.xhp\n"
"tit\n"
"help.text"
-msgid "Basics"
-msgstr "Thông tin Cơ bản"
+msgid "LTrim Function [Runtime]"
+msgstr "Hàm LTrim [Runtime]"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"bm_id4488967\n"
+"03120305.xhp\n"
+"bm_id3147574\n"
"help.text"
-msgid "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
-msgstr "<bookmark_value>quy tắc cơ bản</bookmark_value><bookmark_value>trình con</bookmark_value><bookmark_value>biến;toàn cục và lôgic</bookmark_value><bookmark_value>mô-đun;trình con và hàm</bookmark_value>"
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr "<bookmark_value>hàm LTrim</bookmark_value>"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3154927\n"
+"03120305.xhp\n"
+"hd_id3147574\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
-msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Thông tin Cơ bản\">Thông tin Cơ bản</link>"
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3156023\n"
-"14\n"
-"help.text"
-msgid "This section provides the fundamentals for working with $[officename] Basic."
-msgstr "Phần này diễn tả các thông tin cơ bản để làm việc với $[officename] Basic."
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"Hàm LTrim [Runtime]\">Hàm LTrim [Runtime]</link>"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3147560\n"
+"03120305.xhp\n"
+"par_id3145316\n"
"2\n"
"help.text"
-msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
-msgstr "Mã $[officename] Basic dựa vào các trình con và hàm mà được ghi rõ giữa các phần kiểu <emph>sub...end sub</emph> và <emph>function...end function</emph> (riêng từng cái). Mỗi Sub (trình con) hay Function (hàm) có khả năng gọi các trình con và hàm khác. Nếu bạn viết mã giống loài cho một trình con hay hàm, rất có thể sẽ dùng lại nó trong các chương trình khác. Xem thêm <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Thủ tục và Hàm\">Thủ tục và Hàm</link>."
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id314756320\n"
-"help.text"
-msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
-msgstr ""
+msgid "Removes all leading spaces at the start of a string expression."
+msgstr "Gỡ bỏ mọi dấu cách khỏi đầu của một biểu thức chuỗi."
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3150398\n"
+"03120305.xhp\n"
+"hd_id3154924\n"
"3\n"
"help.text"
-msgid "What is a Sub?"
-msgstr "Sub là gì?"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3148797\n"
+"03120305.xhp\n"
+"par_id3148552\n"
"4\n"
"help.text"
-msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
-msgstr "<emph>Sub</emph> là lời viết tắt của từ <emph>subroutine</emph> (trình con) mà được dùng để làm một công việc nào đó bên trong chương trình. Trình con được dùng để chia một công việc ra các thủ tục riêng. Chia một chương trình ra các thủ tục và thủ tục con thì cải tiến khả năng đọc mã nguồn và giảm lỗi. Một trình con có thể chấp nhận đối số làm tham số, nhưng không trả giá trị về trình con hay hàm đang gọi, chẳng hạn:"
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
-msgstr "Hành_động(Giá_trị_1,Giá_trị_2)"
+msgid "LTrim (Text As String)"
+msgstr "LTrim (Text As String)"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3156282\n"
+"03120305.xhp\n"
+"hd_id3156344\n"
"5\n"
"help.text"
-msgid "What is a Function?"
-msgstr "Hàm là gì?"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3156424\n"
+"03120305.xhp\n"
+"par_id3151056\n"
"6\n"
"help.text"
-msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
-msgstr "Về cơ bản thì một <emph>hàm</emph> là một trình con mà trả về một giá trị. Bạn có thể sử dụng một hàm ở bên phải của lời khai báo biến, hoặc ở các nơi khác thích hợp với biến, thí dụ :"
+msgid "String"
+msgstr "Chuỗi"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3146985\n"
+"03120305.xhp\n"
+"hd_id3150543\n"
"7\n"
"help.text"
-msgid "MySecondValue = myFunction(MyFirstValue)"
-msgstr "MySecondValue = myFunction(MyFirstValue)"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3153364\n"
+"03120305.xhp\n"
+"par_id3150792\n"
"8\n"
"help.text"
-msgid "Global and local variables"
-msgstr "Biến toàn cục và cục bộ"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào."
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3151112\n"
+"03120305.xhp\n"
+"par_id3125863\n"
"9\n"
"help.text"
-msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
-msgstr "Biến toàn cục thì hợp lệ cho tất cả các trình con và hàm đều nằm bên trong cùng một mô-đun. Chúng được khai báo ở đầu của mô-đun, trước khi bắt đầu trình con hay hàm đầu tiên."
+msgid "Use this function to remove spaces at the beginning of a string expression."
+msgstr "Hãy sử dụng hàm này để gỡ bỏ các dấu cách khỏi đầu của một biểu thức chuỗi."
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3154012\n"
+"03120305.xhp\n"
+"hd_id3145419\n"
"10\n"
"help.text"
-msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
-msgstr "Các biến được khai báo bên trong một trình con hay hàm thì hợp lệ chỉ bên trong trình con hay hàm đó. Biến kiểu này ghi đè lên biến toàn cục cùng tên và biến cục bộ cùng tên mà thuộc về trình con hay hàm cấp trên."
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150010\n"
-"11\n"
-"help.text"
-msgid "Structuring"
-msgstr "Cấu trúc"
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3153727\n"
-"12\n"
-"help.text"
-msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
-msgstr "Sau khi phân cách chương trình ra các trình con và các hàm, bạn có thể lưu những trình con và hàm này dưới dạng tập tin để dùng lại trong dự án khác. Mã $[officename] Basic hỗ trợ <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Mô-đun và Thư viện\">Mô-đun và Thư viện</link>. Trình con và hàm lúc nào cũng được chứa trong một mô-đun. Bạn có thể xác định mô-đun là toàn cục hoặc phần của tài liệu. Nhiều mô-đun cũng có thể được kết hợp để làm cùng một thư viện."
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3152578\n"
-"13\n"
-"help.text"
-msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
-msgstr "Bạn có thể sao chép hay di chuyển các trình con, hàm, mô-đun và/hoặc thư viện từ tập tin này sang tập tin khác, dùng hộp thoại <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link>."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
+"03120306.xhp\n"
"tit\n"
"help.text"
-msgid "FindPropertyObject Function [Runtime]"
-msgstr "Hàm FindPropertyObject [Runtime]"
+msgid "Mid Function, Mid Statement [Runtime]"
+msgstr "Hàm Mid, Câu lệnh Mid [Runtime]"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"bm_id3146958\n"
+"03120306.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
-msgstr "<bookmark_value>hàm FindPropertyObject</bookmark_value>"
+msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+msgstr "<bookmark_value>hàm Mid</bookmark_value><bookmark_value>câu lệnh Mid</bookmark_value>"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"hd_id3146958\n"
+"03120306.xhp\n"
+"hd_id3143268\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"Câu lệnh FindPropertyObject [Runtime]\">Câu lệnh FindPropertyObject [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Hàm Mid, Câu lệnh Mid [Runtime]\">Hàm Mid, Câu lệnh Mid [Runtime]</link>"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3154285\n"
+"03120306.xhp\n"
+"par_id3148473\n"
"2\n"
"help.text"
-msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
-msgstr "Cho phép đặt địa chỉ của đối tượng vào lúc chạy, dưới dạng một tham số chuỗi dùng tên đối tượng."
+msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
+msgstr "Trả về phần đã ghi rõ của một biểu thức chuỗi (<emph>hàm Mid</emph>), hoặc thay thế phần của một biểu thức chuỗi bằng một chuỗi khác (<emph>câu lệnh Mid</emph>)."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3147573\n"
+"03120306.xhp\n"
+"hd_id3154285\n"
"3\n"
"help.text"
-msgid "For instance, the command:"
-msgstr "Chẳng hạn, câu lệnh:"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3145610\n"
+"03120306.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MyObj.Prop1.Command = 5"
+msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
+msgstr "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3147265\n"
+"03120306.xhp\n"
+"hd_id3145068\n"
"5\n"
"help.text"
-msgid "corresponds to the following command block:"
-msgstr "tương ứng với khối câu lênh này:"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3153896\n"
+"03120306.xhp\n"
+"par_id3149295\n"
"6\n"
"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim ObjVar as Object"
+msgid "String (only by Function)"
+msgstr "Chuỗi (chỉ theo Hàm)"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3148664\n"
+"03120306.xhp\n"
+"hd_id3154347\n"
"7\n"
"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim ObjProp as Object"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3150792\n"
+"03120306.xhp\n"
+"par_id3148664\n"
"8\n"
"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "ObjName As String = \"Đối_tượng_tôi\""
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào cần sửa đổi."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3154365\n"
+"03120306.xhp\n"
+"par_id3150359\n"
"9\n"
"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "ObjVar = FindObject( ObjName As String )"
+msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
+msgstr "<emph>Start:</emph> biểu thức thuộc số mà ngụ ý vị trí ký tự bên trong chuỗi ở đó bắt đầu phần chuỗi bạn muốn thay thế hay trả về. Giá trị tối đa được phép là 65535."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3148453\n"
+"03120306.xhp\n"
+"par_id3148451\n"
"10\n"
"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "PropName As String = \"Thuộc_tính1\""
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
+msgstr "<emph>Length:</emph> biểu thức thuộc số mà trả về số các ký tự cần thay thế hay trả về. Giá trị tối đa được phép là 65535."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3150449\n"
+"03120306.xhp\n"
+"par_id3125864\n"
"11\n"
"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
+msgstr "Nếu tham số Length (chiều dài) trong <emph>hàm Mid</emph> bị bỏ sót, thì trả về tất cả các ký tự trong biểu thức chuỗi, từ vị trí bắt đầu đến kết thúc của chuỗi."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3159152\n"
+"03120306.xhp\n"
+"par_id3144762\n"
"12\n"
"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "ObjProp.Command = 5"
+msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
+msgstr "Nếu tham số Length (chiều dài) trong <emph>hàm Mid</emph> nhỏ hơn chiều dài của chuỗi văn bản cần thay thế, thì cắt ngắn chuỗi đó thành chiều dài đã ghi rõ."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3156214\n"
+"03120306.xhp\n"
+"par_id3150769\n"
"13\n"
"help.text"
-msgid "To dynamically create Names at run-time, use:"
-msgstr "Để tạo động các Tên vào lúc chạy, hãy dùng:"
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+msgstr "<emph>Text:</emph> chuỗi sẽ thay thế biểu thức chuỗi (<emph>câu lệnh Mid</emph>)."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3154686\n"
+"03120306.xhp\n"
+"hd_id3149560\n"
"14\n"
"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
-msgstr "\"TextEdit1\" to TextEdit5\" theo một vòng lặp để tạo năm tên."
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3147287\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3149560\n"
-"17\n"
-"help.text"
-msgid "FindPropertyObject( ObjVar, PropName As String )"
-msgstr "FindPropertyObject( ObjVar, PropName As String )"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"hd_id3150012\n"
+"03120306.xhp\n"
+"par_id3153189\n"
"18\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3109839\n"
-"19\n"
-"help.text"
-msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
-msgstr "<emph>ObjVar:</emph> biến đối tượng bạn muốn xác định động vào lúc chạy."
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3153363\n"
-"20\n"
-"help.text"
-msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
-msgstr "<emph>PropName:</emph> chuỗi mà ghi rõ tên của thuộc tính có địa chỉ bạn muốn đặt vào lúc chạy."
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Hãy nhập một ngày tháng theo định dạng quốc tế « NNăm-Th-Ng »)"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
+"03120307.xhp\n"
"tit\n"
"help.text"
-msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr "Câu lệnh On...GoSub; câu lệnh On...GoTo [Runtime]"
+msgid "Right Function [Runtime]"
+msgstr "Hàm Right [Runtime]"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"bm_id3153897\n"
+"03120307.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh On...GoSub</bookmark_value><bookmark_value>câu lệnh On...GoTo</bookmark_value>"
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr "<bookmark_value>hàm Right</bookmark_value>"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3153897\n"
+"03120307.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"Câu lệnh On...GoSub; câu lệnh On...GoTo [Runtime]\">Câu lệnh On...GoSub; câu lệnh On...GoTo [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Hàm Right [Runtime]\">Hàm Right [Runtime]</link>"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150359\n"
+"03120307.xhp\n"
+"par_id3150984\n"
"2\n"
"help.text"
-msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
-msgstr "Tách nhánh đến một của vài dòng mã chương trình đã ghi rõ, phụ thuộc vào giá trị của một biểu thức thuộc số nào đó."
+msgid "Returns the rightmost \"n\" characters of a string expression."
+msgstr "Trả về « n » ký tự bên phải cùng của một biểu thức chuỗi."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148798\n"
+"03120307.xhp\n"
+"par_id3149763\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Hàm Left\">Hàm Left</link>."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3154366\n"
+"03120307.xhp\n"
+"hd_id3145315\n"
"4\n"
"help.text"
-msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
-msgstr "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150769\n"
+"03120307.xhp\n"
+"par_id3153061\n"
"5\n"
"help.text"
-msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-msgstr "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgid "Right (Text As String, n As Long)"
+msgstr "Right (Text As String, n As Long)"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3156215\n"
+"03120307.xhp\n"
+"hd_id3145068\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3148673\n"
+"03120307.xhp\n"
+"par_id3156344\n"
"7\n"
"help.text"
-msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
-msgstr "<emph>NumExpression:</emph> bất cứ biểu thức thuộc số nào nằm giữa 0 và 255 mà xác định chương trình tách nhánh đến dòng mã nguồn nào. NumExpression là 0 thì không thực hiện câu lệnh. NumExpression lớn hơn 0 thì chương trình nhảy đến nhãn có vị trí tương ứng với biểu thức (1 = nhãn thứ nhất; 2 = nhãn thứ hai)."
+msgid "String"
+msgstr "Chuỗi"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3153194\n"
+"03120307.xhp\n"
+"hd_id3146795\n"
"8\n"
"help.text"
-msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
-msgstr "<emph>Nhãn:</emph> dòng đích tùy theo cấu trúc <emph> GoTo</emph> hay <emph>GoSub</emph>."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3156442\n"
+"03120307.xhp\n"
+"par_id3153526\n"
"9\n"
"help.text"
-msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
-msgstr "Quy ước <emph>GoTo</emph> hay <emph>GoSub</emph> là hợp lệ."
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào có các ký tự bên phải cùng mà bạn muốn trả về."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148645\n"
+"03120307.xhp\n"
+"par_id3151211\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
-
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153948\n"
-"21\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 1 to\" : Return"
-msgstr "sVar =sVar & \" Từ Con 1 đến : Return"
+msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> biểu thức thuộc số mà xác định số các ký tự cần trả về. Nếu <emph>n</emph> = 0, thì trả về một chuỗi có chiều dài số không. Giá trị tối đa được phép là 65535."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3153708\n"
-"23\n"
+"03120307.xhp\n"
+"par_id3158410\n"
+"11\n"
"help.text"
-msgid "sVar =sVar & \" From Sub 2 to\" : Return"
-msgstr "sVar =sVar & \" Từ Con 2 đến\" : Return"
+msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
+msgstr "Mẫu thí dụ theo đây chuyển đổi một ngày tháng theo định dạng NNăm-Th-Ng sang định dạng ngày tháng Mỹ (Th/Ng/NNăm)."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150321\n"
-"25\n"
+"03120307.xhp\n"
+"hd_id3156212\n"
+"12\n"
"help.text"
-msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
-msgstr "sVar =sVar & \" Nhãn 1\" : GoTo Ende"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3155764\n"
-"27\n"
+"03120307.xhp\n"
+"par_id3159252\n"
+"16\n"
"help.text"
-msgid "sVar =sVar & \" Label 2\""
-msgstr "sVar =sVar & \" Nhãn 2\""
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Hãy nhập một ngày tháng theo định dạng quốc tế « NNăm-Th-Ng »)"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
+"03120308.xhp\n"
"tit\n"
"help.text"
-msgid "String Function [Runtime]"
-msgstr "Hàm String [Runtime]"
+msgid "RSet Statement [Runtime]"
+msgstr "Câu lệnh RSet [Runtime]"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"bm_id3147291\n"
+"03120308.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>String function</bookmark_value>"
-msgstr "<bookmark_value>hàm String</bookmark_value>"
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh RSet</bookmark_value>"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3147291\n"
+"03120308.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"Hàm String [Runtime]\">Hàm String [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"Câu lệnh RSet [Runtime]\">Câu lệnh RSet [Runtime]</link>"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3147242\n"
+"03120308.xhp\n"
+"par_id3150503\n"
"2\n"
"help.text"
-msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
-msgstr "Tạo một chuỗi tùy theo ký tự đã ghi rõ, hay ký tự đầu tiên của một biểu thức chuỗi được gửi cho hàm."
+msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+msgstr "Canh lề một chuỗi theo bên phải bên trong một biến kiểu chuỗi, hoặc sao chép một kiểu biến do người dùng xác định vào một kiểu khác."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
+"03120308.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3149233\n"
+"03120308.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "String (n As Long, {expression As Integer | character As String})"
-msgstr "String (n As Long, {expression As Integer | character As String})"
+msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgstr "RSet Text As String = Text or RSet Variable1 = Variable2"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3143270\n"
+"03120308.xhp\n"
+"hd_id3156024\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3147530\n"
+"03120308.xhp\n"
+"par_id3148552\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "<emph>Text:</emph> Any string variable."
+msgstr "<emph>Text:</emph> bất cứ biến chuỗi nào."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
+"03120308.xhp\n"
+"par_id3154924\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr "<emph>Text</emph>: chuỗi cần canh lề theo bên phải trong biến chuỗi."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3154347\n"
+"03120308.xhp\n"
+"par_id3149456\n"
"8\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
-msgstr "<emph>n:</emph> biểu thức thuộc số mà ngụ ý số các ký tự cần trả về trong chuỗi. Giá trị n tối đa được phép là 65535."
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgstr "<emph>Variable1:</emph> biến do người dùng xác định là đích cho biến được sao chép."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3148664\n"
+"03120308.xhp\n"
+"par_id3153381\n"
"9\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
-msgstr "<emph>Biểu_thức:</emph> biểu thức thuộc số mà xác định mã ASCII của ký tự."
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgstr "<emph>Variable2:</emph> biến do người dùng xác định cần sao chép vào biến khác."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3150359\n"
+"03120308.xhp\n"
+"par_id3154140\n"
"10\n"
"help.text"
-msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
-msgstr "<emph>Ký_tự:</emph> bất cứ ký tự đơn nào được dùng để xây dựng chuỗi trả về, hay bất cứ chuỗi nào của đó chỉ ký tự đầu tiên sẽ được dùng."
+msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
+msgstr "Nếu chuỗi này nhỏ hơn biến chuỗi, hàm <emph>RSet</emph> sẽ canh lề chuỗi theo bên phải bên trong biến chuỗi. Bất cứ ký tự nào còn lại trong chuỗi được dấu cách thay thế. Còn nếu chuỗi này lớn hơn biến chuỗi, thì cắt ngắn các ký tự vượt quá chiều dài của biến, và chỉ những ký tự còn lại được sắp hàng theo bên phải bên trong biến chuỗi."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
+"03120308.xhp\n"
+"par_id3149202\n"
"11\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+msgstr "Bạn cũng có thể sử dụng câu lệnh <emph>RSet</emph> để gán các biến có một kiểu do người dùng xác định, cho một kiểu khác."
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"tit\n"
+"03120308.xhp\n"
+"par_id3151042\n"
+"12\n"
"help.text"
-msgid "IDE Overview"
-msgstr "Toàn cảnh IDE"
+msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
+msgstr "Mẫu thí dụ theo đây sử dụng hai câu lệnh <emph>RSet</emph> và <emph>LSet</emph> để sửa đổi cách canh lề bên trái và bên phải của một chuỗi."
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"hd_id3147291\n"
-"1\n"
+"03120308.xhp\n"
+"hd_id3154909\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
-msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"Toàn cảnh IDE\">Toàn cảnh IDE</link>"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3156344\n"
-"3\n"
+"03120308.xhp\n"
+"par_id3155856\n"
+"20\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
-msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Thanh công cụ Vĩ lệnh\"><emph>Thanh công cụ Vĩ lệnh</emph></link> trong IDE thì cung cấp các biểu tượng khác nhau để chỉnh sửa và thử chương trình."
+msgid "' Right-align \"SBX\" in a 40-character string"
+msgstr "REM Canh lề phải « SBX » trong một chuỗi có 40 ký tự"
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3151210\n"
-"4\n"
+"03120308.xhp\n"
+"par_id3152577\n"
+"21\n"
"help.text"
-msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
-msgstr "Trong <link href=\"text/sbasic/shared/01030200.xhp\" name=\"cửa sổ Sửa\"><emph>cửa sổ Sửa</emph></link>, đúng bên dưới thanh công cụ <emph>Vĩ lệnh</emph>, bạn có thể chỉnh sửa mã chương trình Basic. Cột bên trái được dùng để đặt các điểm ngắt trong mã chương trình."
+msgid "' Replace asterisks with spaces"
+msgstr "REM Thay thế mỗi dấu sao bằng một dáu cách"
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3154686\n"
-"5\n"
+"03120308.xhp\n"
+"par_id3145801\n"
+"32\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
-msgstr "<link href=\"text/sbasic/shared/01050100.xhp\" name=\"Theo dõi\"><emph>Cửa sổ Theo dõi</emph></link> nằm bên dưới cửa sổ <emph>Sửa</emph> bên trái, và hiển thị nội dung của các biến hoặc mảng trong một tiến trình bước đơn."
+msgid "' Left-align \"SBX\" in a 40-character string"
+msgstr "REM Canh lề trái « SBX » trong một chuỗi có 40 ký tự"
-#: 01030100.xhp
+#: 03120309.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3145787\n"
-"8\n"
+"03120309.xhp\n"
+"tit\n"
"help.text"
-msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
-msgstr "Cửa sổ <emph>Đống gọi</emph> bên phải cung cấp thông tin về đống gọi (call stack) chứa các trình con và hàm khi chạy một chương trình."
+msgid "RTrim Function [Runtime]"
+msgstr "Hàm RTrim [Runtime]"
-#: 01030100.xhp
+#: 03120309.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3147434\n"
-"6\n"
+"03120309.xhp\n"
+"bm_id3154286\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr "<bookmark_value>hàm RTrim</bookmark_value>"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"tit\n"
+"03120309.xhp\n"
+"hd_id3154286\n"
+"1\n"
"help.text"
-msgid "Watch Window"
-msgstr "Cửa sổ Quan sát"
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"Hàm RTrim [Runtime]\">Hàm RTrim [Runtime]</link>"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3149457\n"
-"1\n"
+"03120309.xhp\n"
+"par_id3153127\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
-msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">Quan sát Cửa sổ</link>"
+msgid "Deletes the spaces at the end of a string expression."
+msgstr "Xoá các dấu cách ở kết thúc của một biểu thức chuỗi."
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3154908\n"
-"9\n"
+"03120309.xhp\n"
+"par_id3153062\n"
+"3\n"
"help.text"
-msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
-msgstr "Cửa sổ <emph>Quan sát</emph> thì cho phép bạn quan sát giá trị của mỗi biến trong khi thực hiện một chương trình. Xác định biến trong hộp văn bản <emph>Quan sát</emph>. Nhấn vào <link href=\"text/sbasic/shared/02/11080000.xhp\">Bật quan sát</link> để thêm biến vào hộp liệt kê và hiển thị giá trị của nó."
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"Hàm LTrim\">Hàm LTrim</link>"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3145173\n"
+"03120309.xhp\n"
+"hd_id3154924\n"
"4\n"
"help.text"
-msgid "Watch"
-msgstr "Quan sát"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3155132\n"
+"03120309.xhp\n"
+"par_id3154347\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Nhập tên của biến có giá trị cần quan sát.</ahelp>"
+msgid "RTrim (Text As String)"
+msgstr "RTrim (Text As String)"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3148645\n"
+"03120309.xhp\n"
+"hd_id3149457\n"
"6\n"
"help.text"
-msgid "Remove Watch"
-msgstr "Bỏ quan sát"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3148576\n"
+"03120309.xhp\n"
+"par_id3153381\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Gỡ bỏ biến đã chọn khỏi danh sách các biến đã quan sát.</ahelp>"
-
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"par_id3147426\n"
-"help.text"
-msgid "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Biểu tượng</alt></image>"
+msgid "String"
+msgstr "Chuỗi"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3154012\n"
+"03120309.xhp\n"
+"hd_id3148798\n"
"8\n"
"help.text"
-msgid "Remove Watch"
-msgstr "Bỏ quan sát"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3154491\n"
-"10\n"
+"03120309.xhp\n"
+"par_id3151380\n"
+"9\n"
"help.text"
-msgid "Editing the Value of a Watched Variable"
-msgstr "Chỉnh sửa Giá trị của một Biến đã Quan sát"
+msgid "<emph>Text: </emph>Any string expression."
+msgstr "<emph>Text:</emph> bắt cứ biểu thức chuỗi nào."
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3156283\n"
-"11\n"
+"03120309.xhp\n"
+"hd_id3151041\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
-msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Hiển thị danh sách các biến đang quan sát. Nhấn chuột hai lần (tạm dừng một ít ở giữa) vào một mục nhập nào đó để chỉnh sửa giá trị của nó.</ahelp> Giá trị mới sẽ được lấy như là giá trị của biến đó cho chương trình."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
+"03120310.xhp\n"
"tit\n"
"help.text"
-msgid "Eof Function [Runtime]"
-msgstr "Hàm Eof [Runtime]"
+msgid "UCase Function [Runtime]"
+msgstr "Hàm UCase [Runtime]"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"bm_id3154598\n"
+"03120310.xhp\n"
+"bm_id3153527\n"
"help.text"
-msgid "<bookmark_value>Eof function</bookmark_value>"
-msgstr "<bookmark_value>hàm Eof</bookmark_value>"
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr "<bookmark_value>hàm UCase</bookmark_value>"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3154598\n"
+"03120310.xhp\n"
+"hd_id3153527\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Hàm Eof [Runtime]\">Hàm Eof [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"Hàm UCase [Runtime]\">Hàm UCase [Runtime]</link>"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3147182\n"
+"03120310.xhp\n"
+"par_id3155420\n"
"2\n"
"help.text"
-msgid "Determines if the file pointer has reached the end of a file."
-msgstr "Xác định nếu con trỏ đã tới kết thúc tập tin chưa."
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr "Chuyển đổi các chữ thường trong một chuỗi sang chữ hoa."
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
+"03120310.xhp\n"
+"par_id3150771\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr "Xem thêm: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"Hàm LCase\">Hàm LCase</link>"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3147399\n"
+"03120310.xhp\n"
+"par_id3149233\n"
"4\n"
"help.text"
-msgid "Eof (intexpression As Integer)"
-msgstr "Eof (intexpression As Integer)"
+msgid "<emph>Syntax</emph>:"
+msgstr "<emph>Cú pháp</emph>:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
+"03120310.xhp\n"
+"par_id3153061\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "UCase (Text As String)"
+msgstr "UCase (Text As String)"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3156027\n"
+"03120310.xhp\n"
+"par_id3159414\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>Return value</emph>:"
+msgstr "<emph>Giá trị trả về</emph>:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
+"03120310.xhp\n"
+"par_id3146795\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "String"
+msgstr "Chuỗi"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3153990\n"
+"03120310.xhp\n"
+"hd_id3149457\n"
"8\n"
"help.text"
-msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
-msgstr "<emph>Intexpression:</emph> bất cứ biểu thức số nguyên nào mà ước lượng thành số thứ tự của một tập tin còn mở."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3153527\n"
+"03120310.xhp\n"
+"par_id3150791\n"
"9\n"
"help.text"
-msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
-msgstr "Hãy dùng hàm EOF để tránh lỗi khi bạn thử đặt dữ liệu nhập đi qua kết thúc của tập tin. Khi bạn dùng câu lệnh Input (nhập liệu) hoặc Get (lấy) để đọc từ một tập tin, con trỏ tập tin được tiên tiến theo số byte được đọc. Khi tới kết thúc tập tin, hàm EOF trả về giá trị « True » (Đúng): -1."
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào cần chuyển đổi."
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
+"03120310.xhp\n"
+"hd_id3154125\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"20\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Strings"
-msgstr "Chuỗi"
-
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"hd_id3156153\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Chuỗi\">Chuỗi</link>"
-
-#: 03120000.xhp
+#: 03120310.xhp
msgctxt ""
-"03120000.xhp\n"
-"par_id3159176\n"
-"2\n"
+"03120310.xhp\n"
+"par_id3149204\n"
+"14\n"
"help.text"
-msgid "The following functions and statements validate and return strings."
-msgstr "Những hàm và câu lệnh theo đây đều thẩm tra và trả về chuỗi."
+msgid "Print LCase(sVar) ' returns \"las vegas\""
+msgstr "Print LCase(sVar) REM trả về \"las vegas\""
-#: 03120000.xhp
+#: 03120310.xhp
msgctxt ""
-"03120000.xhp\n"
-"par_id3154285\n"
-"3\n"
+"03120310.xhp\n"
+"par_id3156280\n"
+"15\n"
"help.text"
-msgid "You can use strings to edit text within $[officename] Basic programs."
-msgstr "Bạn có thể sử dụng chuỗi để chỉnh sửa văn bản bên trong chương trình $[officename] Basic."
+msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM trả về \"LAS VEGAS\""
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
+"03120311.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Toán tử Not [Runtime]"
+msgid "Trim Function [Runtime]"
+msgstr "Hàm Trim [Runtime]"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"bm_id3156024\n"
+"03120311.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử Not (lôgic)</bookmark_value>"
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr "<bookmark_value>hàm Trim</bookmark_value>"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3156024\n"
+"03120311.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Toán tử Not [Runtime]\">Toán tử Not [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Hàm Trim [Runtime]\">Hàm Trim [Runtime]</link>"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3159414\n"
+"03120311.xhp\n"
+"par_id3149177\n"
"2\n"
"help.text"
-msgid "Negates an expression by inverting the bit values."
-msgstr "Phủ định một biểu thức bằng cách đảo ngược các giá trị bit."
+msgid "Removes all leading and trailing spaces from a string expression."
+msgstr "Gỡ bỏ mọi dấu cách đi trước hay sau khỏi một biểu thức chuỗi."
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3149457\n"
+"03120311.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3150360\n"
+"03120311.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "Result = Not Expression"
-msgstr "Kết quả = không phải biểu thức"
+msgid "Trim( Text As String )"
+msgstr "Trim( Text As String )"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3151211\n"
+"03120311.xhp\n"
+"hd_id3155388\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3147228\n"
+"03120311.xhp\n"
+"par_id3143228\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
-msgstr "<emph>Kết quả:</emph> bất cứ biến thuộc số nào mà chứa kết quả của sự phủ định."
+msgid "String"
+msgstr "Chuỗi"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3154124\n"
+"03120311.xhp\n"
+"hd_id3145609\n"
"7\n"
"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to negate."
-msgstr "<emph>Biểu thức:</emph> bất cứ biểu thức nào bạn muốn phủ định."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3150868\n"
+"03120311.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
-msgstr "Khi một biểu thức Bun bị phủ định, giá trị Đúng trở thành Sai, và ngược lại."
-
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3145785\n"
-"9\n"
-"help.text"
-msgid "In a bitwise negation each individual bit is inverted."
-msgstr "Trong một sự phủ định theo vị trí bit, mỗi bit riêng bị đảo ngược."
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào."
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3153093\n"
+"03120311.xhp\n"
+"hd_id3148663\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03060400.xhp
-#, fuzzy
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3145749\n"
-"15\n"
+"03120312.xhp\n"
+"tit\n"
"help.text"
-msgid "vOut = Not vA ' Returns -11"
-msgstr "vOut = Not vA REM trả về -11"
+msgid "ConvertToURL Function [Runtime]"
+msgstr "Hàm ConvertToURL [Runtime]"
-#: 03060400.xhp
-#, fuzzy
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3148645\n"
-"16\n"
+"03120312.xhp\n"
+"bm_id3152801\n"
"help.text"
-msgid "vOut = Not(vC > vD) ' Returns -1"
-msgstr "vOut = Not(vC > vD) REM trả về -1"
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr "<bookmark_value>hàm ConvertToURL</bookmark_value>"
-#: 03060400.xhp
-#, fuzzy
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3156441\n"
-"17\n"
+"03120312.xhp\n"
+"hd_id3152801\n"
+"1\n"
"help.text"
-msgid "vOut = Not(vB > vA) ' Returns -1"
-msgstr "vOut = Not(vB > vA) REM trả về -1"
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"Hàm ConvertToURL [Runtime]\">Hàm ConvertToURL [Runtime]</link>"
-#: 03060400.xhp
-#, fuzzy
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3152596\n"
-"18\n"
+"03120312.xhp\n"
+"par_id3148538\n"
+"2\n"
"help.text"
-msgid "vOut = Not(vA > vB) ' Returns 0"
-msgstr "vOut = Not(vA > vB) REM trả về 0"
+msgid "Converts a system file name to a file URL."
+msgstr "Chuyển đổi một tên tập tin hệ thống sang một địa chỉ URL kiểu tập tin."
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"tit\n"
+"03120312.xhp\n"
+"hd_id3150669\n"
+"3\n"
"help.text"
-msgid "Sub Statement [Runtime]"
-msgstr "Câu lệnh Sub [Runtime]"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"bm_id3147226\n"
+"03120312.xhp\n"
+"par_id3154285\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Sub statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Sub</bookmark_value>"
+msgid "ConvertToURL(filename)"
+msgstr "ConvertToURL(tên_tập_tin)"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3147226\n"
-"1\n"
+"03120312.xhp\n"
+"hd_id3150984\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Câu lệnh Sub [Runtime]\">Câu lệnh Sub [Runtime]</link>"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3153311\n"
-"2\n"
+"03120312.xhp\n"
+"par_id3147530\n"
+"6\n"
"help.text"
-msgid "Defines a subroutine."
-msgstr "Xác định một chương trình con."
+msgid "String"
+msgstr "Chuỗi"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3149416\n"
-"3\n"
+"03120312.xhp\n"
+"hd_id3148550\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3147530\n"
-"5\n"
+"03120312.xhp\n"
+"par_id3148947\n"
+"8\n"
"help.text"
-msgid "statement block"
-msgstr "khối câu lệnh"
+msgid "<emph>Filename:</emph> A file name as string."
+msgstr "<emph>Tên_tập_tin:</emph> một tên tập tin dạng chuỗi."
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3153525\n"
+"03120312.xhp\n"
+"hd_id3153361\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
+"03120312.xhp\n"
"par_id3150792\n"
"10\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine ."
-msgstr "<emph>Name:</emph> tên của chương trình con."
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3154138\n"
+"03120312.xhp\n"
+"par_id3154365\n"
"11\n"
"help.text"
-msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
-msgstr "<emph>VarName:</emph> tham số cần gửi cho chương trình con."
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL( systemFile$ )"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3154908\n"
+"03120312.xhp\n"
+"par_id3151042\n"
"12\n"
"help.text"
-msgid "<emph>Type:</emph> Type-declaration key word."
-msgstr "<emph>Type:</emph> từ khoá khai báo kiểu."
-
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153770\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03090409.xhp
-#, fuzzy
-msgctxt ""
-"03090409.xhp\n"
-"par_idN1063F\n"
-"help.text"
-msgid "' some statements"
-msgstr "REM một số câu lệnh"
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "print url$"
+msgstr "print url$"
-#: 01020000.xhp
+#: 03120312.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"03120312.xhp\n"
+"par_id3154909\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
-msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Cú pháp\">Cú pháp</link>"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
-#: 01020000.xhp
+#: 03120312.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"03120312.xhp\n"
+"par_id3144762\n"
+"14\n"
"help.text"
-msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
-msgstr "Phần này diễn tả các phần tử cú pháp cơ bản của mã Basic của $[officename]. Để đọc mô tả chi tiết, xem Sổ Tay $[officename] Basic mà công bố riêng."
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
+"03120313.xhp\n"
"tit\n"
"help.text"
-msgid "Exit Statement [Runtime]"
-msgstr "Câu lệnh Exit [Runtime]"
+msgid "ConvertFromURL Function [Runtime]"
+msgstr "Hàm ConvertFromURL [Runtime]"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"bm_id3152924\n"
+"03120313.xhp\n"
+"bm_id3153894\n"
"help.text"
-msgid "<bookmark_value>Exit statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Exit</bookmark_value>"
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr "<bookmark_value>hàm ConvertFromURL</bookmark_value>"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3152924\n"
+"03120313.xhp\n"
+"hd_id3153894\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Câu lệnh Exit [Runtime]\">Câu lệnh Exit [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"Hàm ConvertFromURL [Runtime]\">Hàm ConvertFromURL [Runtime]</link>"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3153394\n"
+"03120313.xhp\n"
+"par_id3147226\n"
"2\n"
"help.text"
-msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
-msgstr "Thoát khỏi một câu lệnh <emph>Do...Loop</emph> hay <emph>For...Next</emph>, một hàm hay một chương trình con."
+msgid "Converts a file URL to a system file name."
+msgstr "Chuyển đổi một địa chỉ URL kiểu tập tin sang một tên tập tin hệ thống."
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3149763\n"
+"03120313.xhp\n"
+"hd_id3143267\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3159157\n"
+"03120313.xhp\n"
+"par_id3154142\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "xem Tham số"
+msgid "ConvertFromURL(filename)"
+msgstr "ConvertFromURL(tên_tập_tin)"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3148943\n"
+"03120313.xhp\n"
+"hd_id3159157\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3154760\n"
+"03120313.xhp\n"
+"par_id3150669\n"
"6\n"
"help.text"
-msgid "<emph>Exit Do</emph>"
-msgstr "<emph>Exit Do</emph>"
+msgid "String"
+msgstr "Chuỗi"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3147559\n"
+"03120313.xhp\n"
+"hd_id3143270\n"
"7\n"
"help.text"
-msgid "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
-msgstr "Chỉ hợp lệ bên trong một câu lệnh <emph>Do...Loop</emph> để thoát khỏi vòng lặp. Tiếp tục thực hiện chương trình với câu lệnh theo sau câu lệnh vòng lặp. Nếu các câu lệnh <emph>Do...Loop</emph> lồng nhau, điều khiển được truyền sang vòng lặp ở bậc trên theo một."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3150398\n"
+"03120313.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "<emph>Exit For</emph>"
-msgstr "<emph>Exit For</emph>"
+msgid "<emph>Filename:</emph> A file name as a string."
+msgstr "<emph>Tên_tập_tin:</emph> một tên tập tin dạng chuỗi."
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3148797\n"
+"03120313.xhp\n"
+"hd_id3154760\n"
"9\n"
"help.text"
-msgid "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
-msgstr "Chỉ hợp lệ bên trong một câu lệnh <emph>For...Next</emph> để thoát khỏi vòng lặp. Tiếp tục thực hiện chương trình với câu lệnh theo sau câu lệnh <emph>Next</emph>. Trong các câu lệnh lồng nhau, đối tượng được truyền sang vòng lặp ở bậc trên theo một."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3147229\n"
+"03120313.xhp\n"
+"par_id3148664\n"
"10\n"
"help.text"
-msgid "<emph>Exit Function</emph>"
-msgstr "<emph>Exit Function</emph>"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3154685\n"
+"03120313.xhp\n"
+"par_id3150541\n"
"11\n"
"help.text"
-msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
-msgstr "Thoát khỏi thủ tục <emph>Function</emph> ngay lập tức. Tiếp tục thực hiện chương trình với câu lệnh theo sau cuộc gọi hàm <emph>Function</emph>."
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL( systemFile$ )"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3155132\n"
+"03120313.xhp\n"
+"par_id3150792\n"
"12\n"
"help.text"
-msgid "<emph>Exit Sub</emph>"
-msgstr "<emph>Exit Sub</emph>"
+msgid "print url$"
+msgstr "print url$"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3149561\n"
+"03120313.xhp\n"
+"par_id3154367\n"
"13\n"
"help.text"
-msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
-msgstr "Thoát khỏi chương trình con ngay lập tức. Tiếp tục thực hiện chương trình với câu lệnh theo sau cuộc gọi <emph>Sub</emph>."
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3153143\n"
+"03120313.xhp\n"
+"par_id3153194\n"
"14\n"
"help.text"
-msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
-msgstr "Câu lệnh <emph>Exit</emph> không xác định kết thúc của một cấu trúc, và không nên bị nhầm lẫn sang câu lệnh <emph>End</emph>."
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3147348\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153158\n"
-"20\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr "For siStep = 0 to 10 REM Điền mảng bằng dữ liệu thử"
-
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153764\n"
-"31\n"
-"help.text"
-msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
-msgstr "REM LinSearch quét một danh sách TextArray:sList() tìm một mục nhập TextEntry:"
-
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148995\n"
-"32\n"
-"help.text"
-msgid "' Returns the index of the entry or 0 (Null)"
-msgstr "REM Trả về chỉ số của mục nhập, hay 0 (Rỗng)"
-
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149567\n"
-"35\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM sItem tìm thấy"
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
+"03120314.xhp\n"
"tit\n"
"help.text"
-msgid "Put Statement [Runtime]"
-msgstr "Câu lệnh Put [Runtime]"
+msgid "Split Function [Runtime]"
+msgstr "Hàm Split [Runtime]"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"bm_id3150360\n"
+"03120314.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Put statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Put</bookmark_value>"
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr "<bookmark_value>hàm Split</bookmark_value>"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3150360\n"
+"03120314.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Câu lệnh Put [Runtime]\">Câu lệnh Put [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Hàm Split [Runtime]\">Hàm Split [Runtime]</link>"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3154909\n"
+"03120314.xhp\n"
+"par_id3155805\n"
"2\n"
"help.text"
-msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
-msgstr "Ghi một bản ghi vào một tập tin tương đối, hoặc ghi một dãy byte vào một tập tin nhị phân."
+msgid "Returns an array of substrings from a string expression."
+msgstr "Trả về một mảng các chuỗi phụ từ một biểu thức chuỗi."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3156281\n"
+"03120314.xhp\n"
+"hd_id3149177\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
-msgstr "Xem thêm: câu lệnh <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link>"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3125863\n"
+"03120314.xhp\n"
+"par_id3153824\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Split (Text As String, delimiter, number)"
+msgstr "Split (Text As String, dấu_tách, số)"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155132\n"
+"03120314.xhp\n"
+"hd_id3149763\n"
"5\n"
"help.text"
-msgid "Put [#] FileNumber As Integer, [position], Variable"
-msgstr "Put [#] FileNumber As Integer, [position], Variable"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
+"03120314.xhp\n"
+"par_id3154285\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "String"
+msgstr "Chuỗi"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3146120\n"
+"03120314.xhp\n"
+"hd_id3145315\n"
"7\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
-msgstr "<emph>FileNumber:</emph> bất cứ biểu thức số nguyên nào mà xác định tập tin vào đó bạn muốn ghi."
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155411\n"
+"03120314.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
-msgstr "<emph>Position:</emph> Vị trí đối với các tập tin tương đối (tập tin truy cập ngẫu nhiên), số thứ tự của bản ghi bạn muốn ghi."
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3148576\n"
+"03120314.xhp\n"
+"par_id3147560\n"
"9\n"
"help.text"
-msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
-msgstr "Đối với tập tin nhị phân (truy cập nhị phân), vị trí của byte trong tập tin ở đó bạn muốn bắt đầu ghi."
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153729\n"
-"10\n"
-"help.text"
-msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
-msgstr "<emph>Variable:</emph> (Biến) tên của biến bạn muốn ghi vào tập tin."
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3146974\n"
-"11\n"
-"help.text"
-msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
-msgstr "Ghi chú về tập tin tương đối: nếu nội dung của biến này không tương ứng với chiều dài của bản ghi được ghi rõ trong mệnh đề <emph>Len</emph> của câu lệnh <emph>Open</emph>, khoảng cách giữa kết thúc của bản ghi mới ghi và bản ghi kế tiếp được đệm bằng dữ liệu đã tồn tại từ tập tin vào đó bạn đang ghi."
+msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
+msgstr "<emph>dấu_tách (tùy chọn):</emph> một chuỗi chứa một hay nhiều ký tự mà được dùng để định giới chuỗi văn bản (Text). Mặc định là ký tự dấu cách."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155855\n"
+"03120314.xhp\n"
+"par_id3145069\n"
"12\n"
"help.text"
-msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
-msgstr "Ghi chú về tập tin nhị phân: nội dung của các biến được ghi vào vị trí đã định, và con trỏ tập tin được chèn vào đúng phía sau byte cuối cùng. Không có khoảng cách nào giữa hai bản ghi."
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgstr "<emph>số (tùy chọn):</emph> số chuỗi phụ cần trả về."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3154491\n"
-"13\n"
+"03120314.xhp\n"
+"hd_id3150398\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154729\n"
-"16\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant type"
-msgstr "Dim sText As Variant REM Must be a variant type"
-
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156278\n"
-"22\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position To start writing"
-msgstr "Seek #iNumber,1 REM Position to start writing"
-
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153711\n"
-"23\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155446\n"
-"24\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154255\n"
-"25\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr "Put #iNumber,,\"This is new text\""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3159102\n"
-"37\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
+"03120315.xhp\n"
"tit\n"
"help.text"
-msgid "FileExists Function [Runtime]"
-msgstr "Câu lệnh FileExists [Runtime]"
+msgid "Join Function [Runtime]"
+msgstr "Hàm Join [Runtime]"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"bm_id3148946\n"
+"03120315.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>FileExists function</bookmark_value>"
-msgstr "<bookmark_value>hàm FileExists</bookmark_value>"
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr "<bookmark_value>hàm Join</bookmark_value>"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3148946\n"
+"03120315.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"Hàm FileExists [Runtime]\">Hàm FileExists [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Hàm Join [Runtime]\">Hàm Join [Runtime]</link>"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3153361\n"
+"03120315.xhp\n"
+"par_id3149670\n"
"2\n"
"help.text"
-msgid "Determines if a file or a directory is available on the data medium."
-msgstr "Xác định nếu một tập tin hoặc thư mục có sẵn trong vật chứa dữ liệu."
+msgid "Returns a string from a number of substrings in a string array."
+msgstr "Trả về một chuỗi từ một số các chuỗi phụ trong một mảng chuỗi."
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3150447\n"
+"03120315.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3154685\n"
+"03120315.xhp\n"
+"par_id3156344\n"
"4\n"
"help.text"
-msgid "FileExists(FileName As String | DirectoryName As String)"
-msgstr "FileExists(FileName As String | DirectoryName As String)"
+msgid "Join (Text As String Array, delimiter)"
+msgstr "Join (Text As String Array, dấu_tách)"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3154126\n"
+"03120315.xhp\n"
+"hd_id3150400\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3150769\n"
+"03120315.xhp\n"
+"par_id3150359\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "String"
+msgstr "Chuỗi"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3153770\n"
+"03120315.xhp\n"
+"hd_id3148798\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3147349\n"
-"8\n"
-"help.text"
-msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "FileName | DirectoryName: bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Organizing Libraries and Modules"
-msgstr "Tổ chức các Thư viện và Mô-đun"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"bm_id3148797\n"
-"help.text"
-msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
-msgstr "<bookmark_value>thư viện;tổ chức</bookmark_value><bookmark_value>mô-đun;tổ chức</bookmark_value><bookmark_value>sao chép;mô-đun</bookmark_value><bookmark_value>thêm thư viện</bookmark_value><bookmark_value>xoá;thư viện/mô-đun/hộp thoại</bookmark_value><bookmark_value>hộp thoại;tổ chức</bookmark_value><bookmark_value>di chuyển;mô-đun</bookmark_value><bookmark_value>tổ chức;mô-đun/thư viện/hộp thoại</bookmark_value><bookmark_value>thay tên mô-đun và hộp thoại</bookmark_value>"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3148797\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
-msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Tổ chức các Mô-đun và Thư viện</link></variable>"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3150868\n"
-"4\n"
-"help.text"
-msgid "Organizing Libraries"
-msgstr "Tổ chức các Thư viện"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3125864\n"
-"5\n"
-"help.text"
-msgid "Creating a New Library"
-msgstr "Tạo một Thư viện Mới"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3152576\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
-
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153726\n"
+"03120315.xhp\n"
+"par_id3145171\n"
"8\n"
"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
+msgid "<emph>Text:</emph> A string array."
+msgstr "<emph>Text:</emph> một mảng văn bản."
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3149664\n"
+"03120315.xhp\n"
+"par_id3154908\n"
"9\n"
"help.text"
-msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
-msgstr "Chọn tới vị trí ở đó bạn muốn đính thư viện trong danh sách các <emph>Vị trí</emph>. Chọn <emph>Vĩ lệnh và Hộp thoại %PRODUCTNAME</emph> thì thư viện sẽ thuộc về ứng dụng $[officename] và sẵn sàng cho mọi tài liệu. Chọn một tài liệu thì thư viện sẽ được đính kèm tài liệu đó và chỉ sẵn sàng từ đó."
+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>dấu tách (tùy chọn):</emph> một ký tự chuỗi được dùng để phân cách các chuỗi phụ trong chuỗi kết quả. Dấu tách mặc định là ký tự khoảng trống. Nếu dấu tách là một chuỗi có chiều dài số không « », thì các chuỗi phụ được ghép nối, không định giới."
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153365\n"
+"03120315.xhp\n"
+"hd_id3154218\n"
"10\n"
"help.text"
-msgid "Click <emph>New</emph> and insert a name to create a new library."
-msgstr "Nhấn vào nút <emph>Mới</emph>, sau đó chèn một tên để tạo một thư viện mới."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147394\n"
-"48\n"
-"help.text"
-msgid "Import a Library"
-msgstr ""
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3153157\n"
-"49\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146972\n"
-"50\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
-
-#: 01030400.xhp
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3145640\n"
-"51\n"
-"help.text"
-msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
-msgstr "Chọn tới vị trí bạn muốn phụ thêm thư viện trong danh sách các <emph>Vị trí</emph>. Chọn mục <emph>Vĩ lệnh và Hộp thoại %PRODUCTNAME</emph> thì thư viện này sẽ thuộc về ứng dụng $[officename] và sẵn sàng cho mọi tài liệu. Chọn một tài liệu thì thư viện sẽ được phụ thêm vào tài liệu đó, và chỉ sẵn sàng từ đó."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01030400.xhp
-#, fuzzy
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3154253\n"
-"52\n"
+"03120400.xhp\n"
+"tit\n"
"help.text"
-msgid "Click <emph>Import...</emph> and select an external library to import."
-msgstr "Nhấn vào nút <emph>Phụ thêm</emph> và chọn một thư viện bên ngoài để phụ thêm."
+msgid "Editing String Length"
+msgstr "Chình sửa Chiều dài Chuỗi"
-#: 01030400.xhp
-#, fuzzy
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3154705\n"
-"53\n"
+"03120400.xhp\n"
+"hd_id3155150\n"
+"1\n"
"help.text"
-msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
-msgstr "Chọn tất cả những thư viện cần phụ thêm trong hộp thoại <emph>Phụ thêm Thư viện</emph>. Hộp thoại này hiển thị tất cả các thư viện nằm trong tập tin đã chọn."
+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=\"Chình sửa Chiều dài Chuỗi\">Chình sửa Chiều dài Chuỗi</link>"
-#: 01030400.xhp
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3163807\n"
-"54\n"
+"03120400.xhp\n"
+"par_id3159201\n"
+"2\n"
"help.text"
-msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
-msgstr "Muốn chèn thư viện chỉ dưới dạng tham chiếu thì bật tùy chọn <emph>Chèn dạng tham chiếu (chỉ-đọc)</emph>. Thư viện chỉ-đọc cũng có các chức năng đầy đủ, còn không thể được sửa đổi trong IDE Basic."
+msgid "The following functions determine string lengths and compare strings."
+msgstr "Các hàm sau quyết định chiều dài chuỗi, và so sánh các chuỗi khác nhau."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3145228\n"
-"55\n"
+"03120401.xhp\n"
+"tit\n"
"help.text"
-msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
-msgstr "Bật tùy chọn <emph>Thay thế các thư viện đã có</emph> nếu bạn muốn các thư viện cùng tên đã tồn tại bị ghi đè."
+msgid "InStr Function [Runtime]"
+msgstr "Hàm InStr [Runtime]"
-#: 01030400.xhp
-#, fuzzy
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147004\n"
-"56\n"
+"03120401.xhp\n"
+"bm_id3155934\n"
"help.text"
-msgid "Click <emph>OK</emph> to import the library."
-msgstr "Nhấn vào nút <emph>OK</emph> để phụ thêm thư viện."
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr "<bookmark_value>hàm InStr</bookmark_value>"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3159099\n"
-"17\n"
+"03120401.xhp\n"
+"hd_id3155934\n"
+"1\n"
"help.text"
-msgid "Export a Library"
-msgstr ""
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"Hàm InStr [Runtime]\">Hàm InStr [Runtime]</link>"
-#: 01030400.xhp
-#, fuzzy
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147005\n"
-"70\n"
+"03120401.xhp\n"
+"par_id3153990\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+msgid "Returns the position of a string within another string."
+msgstr "Trả về vị trí của một chuỗi bên trong chuỗi khác."
-#: 01030400.xhp
-#, fuzzy
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147006\n"
-"71\n"
+"03120401.xhp\n"
+"par_id3147303\n"
+"3\n"
"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
+msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+msgstr "Hàm <emph>InStr</emph> trả về vị trí ở đó đã tìm mục tương ứng. Không tìm thấy thì hàm trả về 0."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147007\n"
-"72\n"
+"03120401.xhp\n"
+"hd_id3145090\n"
+"4\n"
"help.text"
-msgid "In the <emph>Location</emph> list you specify where your library is stored. Select the library that you want to export. Note that you cannot export the <emph>Standard</emph> library."
-msgstr ""
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147008\n"
-"73\n"
+"03120401.xhp\n"
+"par_id3146957\n"
+"5\n"
"help.text"
-msgid "Click <emph>Export...</emph>"
-msgstr ""
+msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+msgstr "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147009\n"
-"74\n"
+"03120401.xhp\n"
+"hd_id3148538\n"
+"6\n"
"help.text"
-msgid "Choose whether you want to export the library as an extension or as a basic library."
-msgstr ""
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 01030400.xhp
-#, fuzzy
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147010\n"
-"75\n"
+"03120401.xhp\n"
+"par_id3149763\n"
+"7\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>Bỏ</emph>."
+msgid "Integer"
+msgstr "Số nguyên"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147011\n"
-"76\n"
+"03120401.xhp\n"
+"hd_id3148473\n"
+"8\n"
"help.text"
-msgid "Select where you want your library exported."
-msgstr ""
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 01030400.xhp
-#, fuzzy
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147012\n"
-"77\n"
+"03120401.xhp\n"
+"par_id3153126\n"
+"9\n"
"help.text"
-msgid "Click <emph>Save</emph> to export the library."
-msgstr "Nhấn vào nút <emph>OK</emph> để phụ thêm thư viện."
+msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
+msgstr "<emph>Start:</emph> một biểu thức thuộc số mà đánh dấu vị trí trong một chuỗi ở đó đã bắt đầu tìm kiếm chuỗi phụ đã ghi rõ. Bỏ sót tham số này thì bắt đầu tìm kiếm ở ký tự đầu tiên của chuỗi. Giá trị tối đa được phép là 65535."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3159100\n"
-"17\n"
+"03120401.xhp\n"
+"par_id3145609\n"
+"10\n"
"help.text"
-msgid "Deleting a Library"
-msgstr "Xoá một Thư viện"
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr "<emph>Text1:</emph> biểu thức chuỗi trong đó cần tìm kiếm."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150086\n"
-"18\n"
+"03120401.xhp\n"
+"par_id3147559\n"
+"11\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr "<emph>Text2:</emph> biểu thức chuỗi cần tìm."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3146808\n"
-"57\n"
+"03120401.xhp\n"
+"par_id3154758\n"
+"12\n"
"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Nhấn vào thẻ <emph>Thư viện</emph>."
+msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
+msgstr "<emph>Compare:</emph> biểu thức thuộc số còn tùy chọn mà xác định kiểu phép so sánh. Giá trị của tham số này có thể là 0 hay 1. Giá trị mặc định 1 ghi rõ một phép so sánh văn bản mà không phân biệt chữ hoa/thường. Giá trị 0 ghi rõ một phép so sánh nhị phân mà phân biệt chữ hoa/thường."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3158212\n"
-"58\n"
+"03120401.xhp\n"
+"par_id3153361\n"
+"13\n"
"help.text"
-msgid "Select the library to be deleted from the list."
-msgstr "Chọn thư viện cần xoá khỏi danh sách."
+msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
+msgstr "Để tránh lỗi lúc chạy, không đặt tham số Compare nếu tham số trả về đầu tiên bị bỏ qua."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150361\n"
-"20\n"
+"03120401.xhp\n"
+"hd_id3154366\n"
+"14\n"
"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Nhắp vào nút <emph>Xoá</emph>."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3152986\n"
+"03120401.xhp\n"
+"par_id3144760\n"
"19\n"
"help.text"
-msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
-msgstr "Xoá một thư viện thì xoá hẳn tất cả các mô-đun đã tồn tại và các trình con và hàm tương ứng."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3148868\n"
-"59\n"
-"help.text"
-msgid "You cannot delete the default library named \"Standard\"."
-msgstr "Không thể xoá thư viện mặc định « Chuẩn » (Standard)."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146869\n"
-"60\n"
-"help.text"
-msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
-msgstr "Nếu bạn xoá một thư viện đã được chèn dạng tham chiếu, chỉ tham chiếu bị xoá, không phải thư viện chính nó."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147070\n"
-"21\n"
-"help.text"
-msgid "Organizing Modules and Dialogs"
-msgstr "Tổ chức các Mô-đun và Hộp thoại"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3155265\n"
-"61\n"
-"help.text"
-msgid "Creating a New Module or Dialog"
-msgstr "Tạo một Mô-đun hoặc Hộp thoại Mới"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3154537\n"
-"62\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146781\n"
-"63\n"
-"help.text"
-msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Nhấn vào thẻ <emph>Mô-đun</emph> hoặc <emph>Hộp thoại</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3159206\n"
-"64\n"
-"help.text"
-msgid "Select the library where the module will be inserted and click <emph>New</emph>."
-msgstr "Chọn thư viện vào đó cần chèn mô-đun, sau đó nhấn vào nút <emph>Mới</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3152389\n"
-"65\n"
-"help.text"
-msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
-msgstr "Nhập tên cho mô-đun hoặc hộp thoại, sau đó nhấn vào nút <emph>OK</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3152872\n"
-"25\n"
-"help.text"
-msgid "Renaming a Module or Dialog"
-msgstr "Thay tên của một Mô-đun hoặc Hộp thoại"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3159230\n"
-"66\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3150046\n"
-"67\n"
-"help.text"
-msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
-msgstr "Nhấn hai lần vào mô-đun có tên cần thay đổi, cũng tạm dừng giữa hai cú nhấn. Nhập tên mới."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3153801\n"
-"27\n"
-"help.text"
-msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
-msgstr "Trong IDE Basic, nhấn-phải vào tên của mô-đun hoặc hộp thoại trong các thẻ ở dưới màn hình, chọn lệnh <emph>Thay tên</emph>, sau đó gõ tên mới."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3155526\n"
-"28\n"
-"help.text"
-msgid "Press Enter to confirm your changes."
-msgstr "Bấm phím <item type=\"keycode\">Enter</item> để xác nhận các thay đổi."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3146963\n"
-"29\n"
-"help.text"
-msgid "Deleting a Module or Dialog"
-msgstr "Xoá một Mô-đun hoặc Hộp thoại"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147547\n"
-"68\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3150958\n"
-"69\n"
-"help.text"
-msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Nhấn vào thẻ <emph>Mô-đun</emph> hoặc <emph>Hộp thoại</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3149870\n"
-"30\n"
-"help.text"
-msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
-msgstr "Chọn mô-đun hoặc hộp thoại cần xoá khỏi danh sách. Nhấn đôi vào một mục nhập để hiển thị các mục phụ, nếu cần."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147248\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Nhắp vào cái <emph>Xoá</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3151339\n"
-"31\n"
-"help.text"
-msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
-msgstr "Xoá hẳn một mô-đun thì cũng xoá tất cả các trình con và hàm đã tồn tại trong mô-đun đó."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3151392\n"
-"33\n"
-"help.text"
-msgid "Organizing Projects among Documents or Templates"
-msgstr "Tổ chức Dự án trong các Tài liệu hoặc Mẫu"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3156400\n"
-"36\n"
-"help.text"
-msgid "Moving or copying modules between documents, templates and the application."
-msgstr "Di chuyển hoặc sao chép mô-đun giữa các tài liệu, các mẫu và ứng dụng."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146819\n"
-"37\n"
-"help.text"
-msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
-msgstr "Mở tất cả các tài liệu hoặc mẫu trong chúng bạn muốn di chuyển hoặc sao chép những mô-đun hoặc hộp thoại."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3149319\n"
-"38\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Mở mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</emph> rồi nhấn vào <emph>Bộ tổ chức</emph> hoặc nhấn vào biểu tượng <emph>Chọn mô-đun</emph> trong IDE Basic để mở hộp thoại <emph>Bộ tổ chức Vĩ lệnh</emph>."
+msgid "sInput = \"Office\""
+msgstr "sInput = \"Office\""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3145637\n"
-"39\n"
+"03120401.xhp\n"
+"par_id3154125\n"
+"20\n"
"help.text"
-msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
-msgstr "Để di chuyển một mô-đun hoặc hộp thoại sang một tài liệu khác, nhấn vào đối tượng tương ứng trong danh sách, sau đó kéo nó vào vị trí đã muốn. Một đường theo chiều ngang thì ngụ ý vị trí đích của đối tượng hiện thời trong khi kéo. Ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo, để sao chép đối tượng thay vì di chuyển nó."
+msgid "iPos = Instr(sInput,\"c\")"
+msgstr "iPos = Instr(sInput,\"c\")"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
+"03120402.xhp\n"
"tit\n"
"help.text"
-msgid "CurDir Function [Runtime]"
-msgstr "Hàm CurDir [Runtime]"
+msgid "Len Function [Runtime]"
+msgstr "Hàm Len [Runtime]"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"bm_id3153126\n"
+"03120402.xhp\n"
+"bm_id3154136\n"
"help.text"
-msgid "<bookmark_value>CurDir function</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh CurDir</bookmark_value>"
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr "<bookmark_value>hàm Len</bookmark_value>"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3153126\n"
+"03120402.xhp\n"
+"hd_id3154136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020403.xhp\">Hàm CurDir [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Hàm Len [Runtime]\">Hàm Len [Runtime]</link>"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3156343\n"
+"03120402.xhp\n"
+"par_id3147576\n"
"2\n"
"help.text"
-msgid "Returns a variant string that represents the current path of the specified drive."
-msgstr "Trả về một chuỗi biến thể mà đại diện đường dẫn hiện thời của ổ đĩa đã ghi rõ."
+msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
+msgstr "Trả về số các ký tự trong một chuỗi, hoặc số các byte cần thiết để cất giữ một biến."
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3149457\n"
+"03120402.xhp\n"
+"hd_id3159177\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3153381\n"
+"03120402.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "CurDir [(Text As String)]"
-msgstr "CurDir [(Text As String)]"
+msgid "Len (Text As String)"
+msgstr "Len (Text As String)"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3154366\n"
+"03120402.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3156281\n"
+"03120402.xhp\n"
+"par_id3143270\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Long"
+msgstr "Dài"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3156423\n"
+"03120402.xhp\n"
+"hd_id3147531\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Tham số :"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3153193\n"
+"03120402.xhp\n"
+"par_id3147265\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ một ổ đĩa đã tồn tại (v.d. « C » đại diện phân vùng thứ nhất của đĩa cứng thứ nhất)."
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào hoặc một biến kiểu khác."
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3155133\n"
+"03120402.xhp\n"
+"hd_id3153360\n"
"9\n"
"help.text"
-msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
-msgstr "Chưa ghi rõ ổ đĩa hoặc ổ đĩa là chuỗi chiều dài số không thì hàm CurDir trả về đường dẫn đến ổ đĩa hiện thời. $[officename] Basic trả về lỗi nếu mô tả ổ đĩa có cú pháp sai, ổ đĩa không tồn tại, hoặc chữ hiệu ổ đĩa xảy ra phía sau chữ được xác định bằng câu lệnh Lastdrive trong tập tin cấu hình CONFIG.SYS."
-
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "This function is not case-sensitive."
-msgstr "Hàm này không phân biệt chữ hoa/thường."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3155411\n"
-"11\n"
+"03120402.xhp\n"
+"par_id3156214\n"
+"13\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "MsgBox Len(sText) REM Returns 9"
+msgstr "MsgBox Len(sText) REM trả về 9"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
+"03120403.xhp\n"
"tit\n"
"help.text"
-msgid "Log Function [Runtime]"
-msgstr "Hàm Log [Runtime]"
+msgid "StrComp Function [Runtime]"
+msgstr "Hàm StrComp [Runtime]"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"bm_id3149416\n"
+"03120403.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Log function</bookmark_value>"
-msgstr "<bookmark_value>hàm Log</bookmark_value>"
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr "<bookmark_value>hàm StrComp</bookmark_value>"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3149416\n"
+"03120403.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Hàm Log [Runtime]\">Hàm Log [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"Hàm StrComp [Runtime]\">Hàm StrComp [Runtime]</link>"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3145066\n"
+"03120403.xhp\n"
+"par_id3155805\n"
"2\n"
"help.text"
-msgid "Returns the natural logarithm of a number."
-msgstr "Trả về lôga tự nhiên của một số."
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr "So sánh hai chuỗi và trả về một giá trị số nguyên đại diện kết quả so sánh."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3159414\n"
+"03120403.xhp\n"
+"hd_id3153345\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3154760\n"
+"03120403.xhp\n"
+"par_id3150503\n"
"4\n"
"help.text"
-msgid "Log (Number)"
-msgstr "Log (Số)"
+msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgstr "StrComp (Text1 As String, Text2 As String[, Compare])"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3149457\n"
+"03120403.xhp\n"
+"hd_id3147574\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
+"03120403.xhp\n"
+"par_id3156152\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3151211\n"
+"03120403.xhp\n"
+"hd_id3150984\n"
"7\n"
"help.text"
-msgid "Parameters:"
+msgid "Parameter:"
msgstr "Tham số :"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3151041\n"
+"03120403.xhp\n"
+"par_id3153061\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
-msgstr "<emph>Số:</emph> bất cứ biểu thức thuộc số nào cho đó bạn muốn tính lôga tự nhiên."
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr "<emph>Text1:</emph> bất cứ biểu thức chuỗi nào."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3150869\n"
+"03120403.xhp\n"
+"par_id3147560\n"
"9\n"
"help.text"
-msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
-msgstr "Lôga tự nhiên là lôga của cơ số e. Cơ số e là một hằng số có giá trị xấp xỉ 2,718282..."
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr "<emph>Text2:</emph> bất cứ biểu thức chuỗi nào."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3153968\n"
+"03120403.xhp\n"
+"par_id3146796\n"
"10\n"
"help.text"
-msgid "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
-msgstr "Bạn có thể tính lôga với bất cứ cơ số nào (n) cho bất cứ số nào (x), bằng cách chia lôga tự nhiên của x cho lôga tự nhiên của n, như theo đây:"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145420\n"
-"11\n"
-"help.text"
-msgid "Log n(x) = Log(x) / Log(n)"
-msgstr "Log n(x) = Log(x) / Log(n)"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3155131\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3149262\n"
-"18\n"
-"help.text"
-msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
-msgstr "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Nhân với hàm lôga\""
-
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "IIf Statement [Runtime]"
-msgstr "Câu lệnh IIf [Runtime]"
+msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
+msgstr "<emph>Compare:</emph> tham số tùy chọn này đặt phương pháp so sánh. Nếu Compare=1, thì phép so sánh chuỗi có phân biệt chữ hoa/thường. Compare=0 thì không phân biệt chữ hoa/thường."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"bm_id3155420\n"
+"03120403.xhp\n"
+"hd_id3154940\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>IIf statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh IIf</bookmark_value>"
+msgid "Return value"
+msgstr "Giá trị trả về"
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3155420\n"
-"1\n"
+"03120403.xhp\n"
+"par_id3150358\n"
+"27\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Câu lệnh IIf [Runtime]\">Câu lệnh IIf [Runtime]</link>"
+msgid "If Text1 < Text2 the function returns -1"
+msgstr "Nếu Text1 < Text2 thì hàm trả về -1"
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3145610\n"
-"2\n"
+"03120403.xhp\n"
+"par_id3151043\n"
+"28\n"
"help.text"
-msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
-msgstr "Trả về một của hai kết quả hàm có thể làm, phụ thuộc vào giá trị lôgic của biểu thức đã tính."
+msgid "If Text1 = Text2 the function returns 0"
+msgstr "Nếu Text1 = Text2 thì hàm trả về 0"
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3159413\n"
-"3\n"
+"03120403.xhp\n"
+"par_id3158410\n"
+"29\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "If Text1 > Text2 the function returns 1"
+msgstr "Nếu Text1 > Text2 thì hàm trả về 1"
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3147560\n"
-"4\n"
+"03120403.xhp\n"
+"hd_id3153968\n"
+"18\n"
"help.text"
-msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-msgstr "IIf (Biểu_thức, Biểu_thức_Đúng, Biểu_thức_Sai)"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"5\n"
+"03130000.xhp\n"
+"tit\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Other Commands"
+msgstr "Các lệnh khác"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3153381\n"
-"6\n"
+"03130000.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
-msgstr "<emph>Biểu_thức</emph> : bất cứ biểu thức nào bạn muốn ước tính. Nếu biểu thức tính là <emph>Đúng</emph> thì hàm trả về kết quả của Biểu_thức_Đúng; không thì nó trả về kết quả của Biểu_thức_Sai."
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Các lệnh khác\">Các lệnh khác</link>"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3150870\n"
-"7\n"
+"03130000.xhp\n"
+"par_id3153312\n"
+"2\n"
"help.text"
-msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
-msgstr "<emph>Biểu_thức_Đúng, Biểu_thức_Sai</emph> : bất cặp cứ biểu thức nào, một của chúng sẽ được trả về làm kết quả của hàm, phụ thuộc vào sự ước tính lôgic."
+msgid "This is a list of the functions and the statements that are not included in the other categories."
+msgstr "Đây là một danh sách các hàm và câu lệnh đều không nằm trong phân loại khác."
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
+"03130100.xhp\n"
"tit\n"
"help.text"
-msgid "Switch Function [Runtime]"
-msgstr "Hàm Switch [Runtime]"
+msgid "Beep Statement [Runtime]"
+msgstr "Câu lệnh Beep [Runtime]"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"bm_id3148554\n"
+"03130100.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "<bookmark_value>Switch function</bookmark_value>"
-msgstr "<bookmark_value>hàm Switch</bookmark_value>"
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Beep</bookmark_value>"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3148554\n"
+"03130100.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Hàm Switch [Runtime]\">Hàm Switch [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Câu lệnh Beep [Runtime]\">Câu lệnh Beep [Runtime]</link>"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3148522\n"
+"03130100.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
-msgstr "Ước tính danh sách các đối số, mỗi đồ là một biểu thức với một giá trị theo sau. Hàm Switch trả về một giá trị liên quan đến biểu thức được hàm này gửi."
+msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
+msgstr "Kêu bíp qua loa của máy tính. Giọng này phụ thuộc vào hệ thống: bạn không thể sửa đổi âm lượng hay cao độ."
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3154863\n"
+"03130100.xhp\n"
+"hd_id3153990\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3155934\n"
+"03130100.xhp\n"
+"par_id3147291\n"
"4\n"
"help.text"
-msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
-msgstr "Switch (Biểu_thức1, Giá_trị1[, Biểu_thức2, Giá_trị2[..., Biểu_thức_n, Giá_trị_n]])"
+msgid "Beep"
+msgstr "Beep"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3149119\n"
+"03130100.xhp\n"
+"hd_id3148538\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153894\n"
-"6\n"
-"help.text"
-msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
-msgstr "Hàm <emph>Switch</emph> ước tính những biểu thức từ trái sang phải, sau đó trả về giá trị được gán cho biểu thức hàm. Không đưa ra biểu thức và giá trị làm cặp thì gặp một lỗi lúc chạy."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153990\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression:</emph> The expression that you want to evaluate."
-msgstr "<emph>Biểu thức:</emph> biểu thức cần ước tính."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153394\n"
-"8\n"
-"help.text"
-msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
-msgstr "<emph>Giá trị:</emph> giá trị nên trả về nếu biểu thức là Đúng."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153346\n"
-"9\n"
-"help.text"
-msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
-msgstr "Trong mẫu thí dụ theo đây, hàm <emph>Switch</emph> gán giới tính thích hợp cho tên được gửi cho hàm:"
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3159157\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"13\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr "sGender = GetGenderIndex( \"Tuấn\" )"
-
-#: 03090410.xhp
+#: 03130500.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3153361\n"
-"18\n"
+"03130500.xhp\n"
+"tit\n"
"help.text"
-msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
-msgstr "GetGenderIndex = Switch(sName = \"Nguyệt\", \"nữ\", sName = \"Tuấn\", \"nam\")"
+msgid "Shell Function [Runtime]"
+msgstr "Hàm Shell [Runtime]"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"tit\n"
+"03130500.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "QBColor Function [Runtime]"
-msgstr "Hàm QBColor [Runtime]"
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr "<bookmark_value>hàm Shell</bookmark_value>"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3149670\n"
+"03130500.xhp\n"
+"hd_id3150040\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"Hàm QBColor [Runtime]\">Hàm QBColor [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Hàm Shell [Runtime]\">Hàm Shell [Runtime]</link>"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150359\n"
+"03130500.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
-msgstr "Trả về mã màu <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> của màu, được gửi qua dạng giá trị màu thông qua một hệ thống lập trình cũ dựa vào MS-DOS."
-
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Starts another application and defines the respective window style, if necessary."
+msgstr "Khởi chạy một ứng dụng khác và xác định kiểu dáng cửa sổ tương ứng, nếu cần thiết."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3151042\n"
+"03130500.xhp\n"
+"hd_id3153345\n"
"4\n"
"help.text"
-msgid "QBColor (ColorNumber As Integer)"
-msgstr "QBColor (ColorNumber As Integer)"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3145172\n"
+"03130500.xhp\n"
+"par_id3147576\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
+msgstr "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154685\n"
+"03130500.xhp\n"
+"hd_id3149235\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "Parameter"
+msgstr "Tham số"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
+"03130500.xhp\n"
+"hd_id3154306\n"
+"23\n"
+"help.text"
+msgid "Pathname"
+msgstr "Pathname"
+
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3155419\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
+msgid "Complete path and program name of the program that you want to start."
+msgstr "Toàn bộ đường dẫn và tên chương trình của trình cần khởi chạy."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3161832\n"
-"8\n"
+"03130500.xhp\n"
+"hd_id3150771\n"
+"24\n"
"help.text"
-msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
-msgstr "<emph>ColorNumber</emph>: bất cứ biểu thức số nguyên nào mà ghi rõ giá trị màu của màu được gửi qua từ một hệ thống lập trình cũ dựa vào MS-DOS."
+msgid "Windowstyle"
+msgstr "Windowstyle"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3147318\n"
-"9\n"
+"03130500.xhp\n"
+"par_id3145609\n"
+"8\n"
"help.text"
-msgid "<emph>ColorNumber</emph> can be assigned the following values:"
-msgstr "<emph>ColorNumber</emph> (số hiệu màu) có thể được gán những con số này:"
+msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
+msgstr "Biểu thức số nguyên còn tùy chọn mà ghi rõ kiểu dáng của cửa sổ trong đó chương trình được thực hiện. Những giá trị theo đây có thể tính:"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3152576\n"
-"10\n"
+"03130500.xhp\n"
+"par_id3148663\n"
+"25\n"
"help.text"
-msgid "0 : Black"
-msgstr "0 : Màu đen"
+msgid "0"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146975\n"
-"11\n"
+"03130500.xhp\n"
+"par_id3153360\n"
+"10\n"
"help.text"
-msgid "1 : Blue"
-msgstr "1 : Màu xanh"
+msgid "The focus is on the hidden program window."
+msgstr "Tiêu điểm ở cửa sổ chương trình bị ẩn."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3151116\n"
-"12\n"
+"03130500.xhp\n"
+"par_id3154123\n"
+"26\n"
"help.text"
-msgid "2 : Green"
-msgstr "2 : Màu lục"
+msgid "1"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3155412\n"
-"13\n"
+"03130500.xhp\n"
+"par_id3144760\n"
+"11\n"
"help.text"
-msgid "3 : Cyan"
-msgstr "3 : Màu xanh lá mạ"
+msgid "The focus is on the program window in standard size."
+msgstr "Tiêu điểm ở cửa sổ chương trình theo kích cỡ tiêu chuẩn."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3155306\n"
-"14\n"
+"03130500.xhp\n"
+"par_id3156422\n"
+"27\n"
"help.text"
-msgid "4 : Red"
-msgstr "4 : Màu đỏ"
+msgid "2"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3153364\n"
-"15\n"
+"03130500.xhp\n"
+"par_id3148451\n"
+"12\n"
"help.text"
-msgid "5 : Magenta"
-msgstr "5 : Màu đỏ tươi"
+msgid "The focus is on the minimized program window."
+msgstr "Tiêu điểm ở cửa sổ chương trình bị thu nhỏ."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146119\n"
-"16\n"
+"03130500.xhp\n"
+"par_id3149561\n"
+"28\n"
"help.text"
-msgid "6 : Yellow"
-msgstr "6 : Màu vàng"
+msgid "3"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154730\n"
-"17\n"
+"03130500.xhp\n"
+"par_id3146921\n"
+"13\n"
"help.text"
-msgid "7 : White"
-msgstr "7 : Màu trắng"
+msgid "focus is on the maximized program window."
+msgstr "Tiêu điểm ở cửa sổ chương trình đã phóng to."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3153877\n"
-"18\n"
+"03130500.xhp\n"
+"par_id3149481\n"
+"29\n"
"help.text"
-msgid "8 : Gray"
-msgstr "8 : Màu xám"
+msgid "4"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3147124\n"
-"19\n"
+"03130500.xhp\n"
+"par_id3155854\n"
+"14\n"
"help.text"
-msgid "9 : Light Blue"
-msgstr "9 : Màu xanh nhạt"
+msgid "Standard size program window, without focus."
+msgstr "Cửa sổ chương trình có kích cỡ tiêu chuẩn, không có tiêu điểm."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3145646\n"
-"20\n"
+"03130500.xhp\n"
+"par_id3145271\n"
+"30\n"
"help.text"
-msgid "10 : Light Green"
-msgstr "10 : Màu lục nhạt"
+msgid "6"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3149958\n"
-"21\n"
+"03130500.xhp\n"
+"par_id3152938\n"
+"15\n"
"help.text"
-msgid "11 : Light Cyan"
-msgstr "11 : Màu xanh lá mạ nhạt"
+msgid "Minimized program window, focus remains on the active window."
+msgstr "Cửa sổ chương trình bị thu nhỏ, tiêu điểm còn lại ở cửa sổ đang hoạt động."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154943\n"
-"22\n"
+"03130500.xhp\n"
+"par_id3146119\n"
+"31\n"
"help.text"
-msgid "12 : Light Red"
-msgstr "12 : Màu đỏ nhạt"
+msgid "10"
+msgstr "10"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150715\n"
-"23\n"
+"03130500.xhp\n"
+"par_id3151112\n"
+"16\n"
"help.text"
-msgid "13 : Light Magenta"
-msgstr "13 : Màu đỏ tươi nhạt"
+msgid "Full-screen display."
+msgstr "Hiển thị trên toàn màn hình."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146970\n"
-"24\n"
+"03130500.xhp\n"
+"hd_id3150419\n"
+"33\n"
"help.text"
-msgid "14 : Light Yellow"
-msgstr "14 : Màu vàng nhạt"
+msgid "Param"
+msgstr "Param"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150750\n"
-"25\n"
+"03130500.xhp\n"
+"par_id3149412\n"
+"17\n"
"help.text"
-msgid "15 : Bright White"
-msgstr "15 : Màu trắng sáng"
+msgid "Any string expression that specifies the command line that want to pass."
+msgstr "Bất cứ biểu thức chuỗi nào mà ghi rõ dòng lệnh cần gửi cho hàm."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146914\n"
-"26\n"
+"03130500.xhp\n"
+"hd_id3148456\n"
+"32\n"
"help.text"
-msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
-msgstr "Hàm này được dùng chỉ để chuyển đổi sang các ứng dụng BASIC cũ dựa vào MS-DOS mà dùng các mã màu trên. Hàm này trả về một giá trị số nguyên dài ngụ ý màu cần dùng trong IDE $[officename]."
+msgid "bSync"
+msgstr "bSync"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"27\n"
+"03130500.xhp\n"
+"par_id3154096\n"
+"18\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
+msgstr "Nếu giá trị này được đặt thành <emph>true</emph> (đúng), thì lệnh <emph>Shell</emph> và tất cả các công việc $[officename] sẽ đợi đến khi tiến trình trình bao chạy xong. Còn nếu giá trị này được đặt thành <emph>false</emph> (sai), thì trình bao trả về trực tiếp. Giá trị mặc định là <emph>false</emph>."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3149566\n"
-"33\n"
+"03130500.xhp\n"
+"hd_id3154270\n"
+"19\n"
"help.text"
-msgid "MsgBox stext,0,\"Color \" & iColor"
-msgstr "MsgBox stext,0,\"Color \" & iColor"
+msgid "Example"
+msgstr "Ví dụ :"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
+"03130600.xhp\n"
"tit\n"
"help.text"
-msgid "WeekDay Function [Runtime]"
-msgstr "Hàm WeekDay [Runtime]"
+msgid "Wait Statement [Runtime]"
+msgstr "Câu lệnh Wait [Runtime]"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"bm_id3153127\n"
+"03130600.xhp\n"
+"bm_id3154136\n"
"help.text"
-msgid "<bookmark_value>WeekDay function</bookmark_value>"
-msgstr "<bookmark_value>hàm WeekDay</bookmark_value>"
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Wait</bookmark_value>"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3153127\n"
+"03130600.xhp\n"
+"hd_id3154136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"Hàm WeekDay [Runtime]\">Hàm WeekDay [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Câu lệnh Wait [Runtime]\">Câu lệnh Wait [Runtime]</link>"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3146795\n"
+"03130600.xhp\n"
+"par_id3149236\n"
"2\n"
"help.text"
-msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "Trả về số tương ứng với ngày của tuần được đại diện bởi một số ngày dãy được tạo ra bằng hàm DateSerial hoặc DateValue."
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgstr "Gián đoạn tiến trình thực hiện chương trình được khoảng thời gian bạn ghi rõ (theo mili-giây)."
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3145068\n"
+"03130600.xhp\n"
+"hd_id3143229\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3149655\n"
+"03130600.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "WeekDay (Number)"
-msgstr "WeekDay (Số)"
+msgid "Wait millisec"
+msgstr "Wait mili-giây"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3148799\n"
+"03130600.xhp\n"
+"hd_id3148943\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Parameters:"
+msgstr "Tham số :"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154125\n"
+"03130600.xhp\n"
+"par_id3154924\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgstr "<emph>mili-giây:</emph> biểu thức thuộc số mà chứa khoảng thời gian (theo mili-giây) cần đợi trước khi thực hiện lại chương trình."
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3150768\n"
+"03130600.xhp\n"
+"hd_id3150541\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3151042\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
-msgstr "<emph>Số:</emph> biểu thức số nguyên mà chứa số ngày dãy được dùng để xác định hôm của tuần (1-7)."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3159254\n"
-"9\n"
+"03130600.xhp\n"
+"par_id3156214\n"
+"13\n"
"help.text"
-msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
-msgstr "Mẫu thí dụ theo đây xác định hôm của tuần, dùng hàm WeekDay khi bạn nhập một ngày tháng."
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Nhịp\" ,0,\"Đã tạm dừng được\""
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3148616\n"
-"10\n"
+"03130700.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "GetSystemTicks Function [Runtime]"
+msgstr "Hàm GetSystemTicks [Runtime]"
-#: 03030105.xhp
-#, fuzzy
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3148576\n"
-"13\n"
+"03130700.xhp\n"
+"bm_id3147143\n"
"help.text"
-msgid "' Return And display the day of the week"
-msgstr "REM Trả về và hiển thị hôm của tuần"
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr "<bookmark_value>hàm GetSystemTicks</bookmark_value>"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3151117\n"
-"16\n"
+"03130700.xhp\n"
+"hd_id3147143\n"
+"1\n"
"help.text"
-msgid "sDay=\"Sunday\""
-msgstr "sDay=\"Chủ Nhật\""
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"Hàm GetSystemTicks [Runtime]\">Hàm GetSystemTicks [Runtime]</link>"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153952\n"
-"18\n"
+"03130700.xhp\n"
+"par_id3153750\n"
+"2\n"
"help.text"
-msgid "sDay=\"Monday\""
-msgstr "sDay=\"Thứ Hai\""
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
+msgstr "Trả về số các nhịp đồng hồ hệ thống được hệ điều hành cung cấp. Bạn có thể sử dụng hàm này để tối ưu hoá một số tiến trình nào đó."
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153157\n"
-"20\n"
+"03130700.xhp\n"
+"hd_id3153311\n"
+"3\n"
"help.text"
-msgid "sDay=\"Tuesday\""
-msgstr "sDay=\"Thứ Ba\""
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154942\n"
-"22\n"
+"03130700.xhp\n"
+"par_id3147242\n"
+"4\n"
"help.text"
-msgid "sDay=\"Wednesday\""
-msgstr "sDay=\"Thứ Tư\""
+msgid "GetSystemTicks()"
+msgstr "GetSystemTicks()"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3155416\n"
-"24\n"
+"03130700.xhp\n"
+"hd_id3149233\n"
+"5\n"
"help.text"
-msgid "sDay=\"Thursday\""
-msgstr "sDay=\"Thứ Năm\""
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154015\n"
-"26\n"
+"03130700.xhp\n"
+"par_id3149762\n"
+"6\n"
"help.text"
-msgid "sDay=\"Friday\""
-msgstr "sDay=\"Thứ Sáu\""
+msgid "Long"
+msgstr "Dài"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153707\n"
-"28\n"
+"03130700.xhp\n"
+"hd_id3156152\n"
+"7\n"
"help.text"
-msgid "sDay=\"Saturday\""
-msgstr "sDay=\"Thứ Bảy\""
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030105.xhp
-#, fuzzy
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3148993\n"
-"30\n"
+"03130700.xhp\n"
+"par_id3154938\n"
+"13\n"
"help.text"
-msgid "MsgBox \"\" + sDay,64,\"Today Is\""
-msgstr "msgbox \"\" + sDay,64,\"Hôm nay là hôm\""
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Nhịp\" ,0,\"Đã tạm dừng được\""
#: 03130800.xhp
msgctxt ""
@@ -34057,7 +34642,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
#: 03130800.xhp
msgctxt ""
@@ -34104,3528 +34689,2608 @@ msgctxt ""
msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
msgstr "MsgBox \"'\" & sTemp & \"'\" ,64,\"Thư mục tập tin tạm thời:\""
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Input/Output Functions"
-msgstr "Hàm Vào/Ra Tập tin"
-
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"Hàm Vào/Ra Tập tin\">Hàm Vào/Ra Tập tin</link>"
-
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
+"03131000.xhp\n"
"tit\n"
"help.text"
-msgid "Error Function [Runtime]"
-msgstr "Hàm Error [Runtime]"
+msgid "GetSolarVersion Function [Runtime]"
+msgstr "Hàm GetSolarVersion [Runtime]"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"bm_id3159413\n"
+"03131000.xhp\n"
+"bm_id3157898\n"
"help.text"
-msgid "<bookmark_value>Error function</bookmark_value>"
-msgstr "<bookmark_value>hàm Error</bookmark_value>"
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr "<bookmark_value>hàm GetSolarVersion</bookmark_value>"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3159413\n"
+"03131000.xhp\n"
+"hd_id3157898\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Hàm Error [Runtime]\">Hàm Error [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"Hàm GetSolarVersion [Runtime]\">Hàm GetSolarVersion [Runtime]</link>"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3148663\n"
+"03131000.xhp\n"
+"par_id3152801\n"
"2\n"
"help.text"
-msgid "Returns the error message that corresponds to a given error code."
-msgstr "Trả về thông điệp lỗi tương ứng với mã lỗi đã cho."
+msgid "Returns the internal number of the current $[officename] version."
+msgstr "Trả về số thứ tự nội bộ của phiên bản $[officename] hiện thời."
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3153379\n"
+"03131000.xhp\n"
+"hd_id3153311\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3154366\n"
+"03131000.xhp\n"
+"par_id3155388\n"
"4\n"
"help.text"
-msgid "Error (Expression)"
-msgstr "Error (Biểu thức)"
+msgid "s = GetSolarVersion"
+msgstr "s = GetSolarVersion"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3145173\n"
+"03131000.xhp\n"
+"hd_id3149514\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3154125\n"
+"03131000.xhp\n"
+"par_id3148685\n"
"6\n"
"help.text"
msgid "String"
msgstr "Chuỗi"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3150869\n"
+"03131000.xhp\n"
+"hd_id3143270\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3153193\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
-msgstr "<emph>Biểu thức</emph>: bất cứ biểu thức thuộc số nào mà chứa mã lỗi của thông điệp lỗi bạn muốn trả về."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3159254\n"
-"9\n"
+"03131000.xhp\n"
+"par_id3148947\n"
+"11\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 "Không đưa ra tham số thì hàm Error trả về thông điệp lỗi của lỗi mới đây xảy ra trong khi thực hiện chương trình."
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
+msgstr "MsgBox sSep,64,\"Số thứ tự phiên bản của công nghệ mặt trời\""
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
+"03131300.xhp\n"
"tit\n"
"help.text"
-msgid "RmDir Statement [Runtime]"
-msgstr "Câu lệnh RmDir [Runtime]"
+msgid "TwipsPerPixelX Function [Runtime]"
+msgstr "Hàm TwipsPerPixelX [Runtime]"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"bm_id3148947\n"
+"03131300.xhp\n"
+"bm_id3153539\n"
"help.text"
-msgid "<bookmark_value>RmDir statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh RmDir</bookmark_value>"
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr "<bookmark_value>hàm TwipsPerPixelX</bookmark_value>"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3148947\n"
+"03131300.xhp\n"
+"hd_id3153539\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"Câu lệnh RmDir [Runtime]\">Câu lệnh RmDir [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"Hàm TwipsPerPixelX [Runtime]\">Hàm TwipsPerPixelX [Runtime]</link>"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3149457\n"
+"03131300.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Deletes an existing directory from a data medium."
-msgstr "Xoá một thư mục đã tồn tại khỏi một vật chứa dữ liệu."
+msgid "Returns the number of twips that represent the width of a pixel."
+msgstr "Trả về số các twip đại diện chiều dài của một điểm ảnh."
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3153361\n"
+"03131300.xhp\n"
+"hd_id3153527\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3154367\n"
+"03131300.xhp\n"
+"par_id3151110\n"
"4\n"
"help.text"
-msgid "RmDir Text As String"
-msgstr "RmDir Text As String"
+msgid "n = TwipsPerPixelX"
+msgstr "n = TwipsPerPixelX"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
+"03131300.xhp\n"
+"hd_id3150669\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3151042\n"
+"03131300.xhp\n"
+"par_id3150503\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi mà ghi rõ tên và đường dẫn của thư mục cần xoá. Bạn cũng có thể sử dụng <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3153192\n"
+"03131300.xhp\n"
+"hd_id3159176\n"
"7\n"
"help.text"
-msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
-msgstr "Chưa xác định đường dẫn thì <emph>Câu lệnh RmDir</emph> tìm kiếm thư mục cần xoá theo đường dẫn hiện thời. Không tìm thấy thì hiển thị một thông điệp lỗi."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"8\n"
+"03131300.xhp\n"
+"par_id3153061\n"
+"9\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Kích cỡ điểm ảnh\""
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
+"03131400.xhp\n"
"tit\n"
"help.text"
-msgid "Loc Function [Runtime]"
-msgstr "Câu lệnh Loc [Runtime]"
+msgid "TwipsPerPixelY Function [Runtime]"
+msgstr "Hàm TwipsPerPixelY [Runtime]"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"bm_id3148663\n"
+"03131400.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "<bookmark_value>Loc function</bookmark_value>"
-msgstr "<bookmark_value>hàm Loc</bookmark_value>"
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr "<bookmark_value>hàm TwipsPerPixelY</bookmark_value>"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3148663\n"
+"03131400.xhp\n"
+"hd_id3150040\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=\"Hàm Loc [Runtime]\">Hàm Loc [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"Hàm TwipsPerPixelY [Runtime]\">Hàm TwipsPerPixelY [Runtime]</link>"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3154138\n"
+"03131400.xhp\n"
+"par_id3154186\n"
"2\n"
"help.text"
-msgid "Returns the current position in an open file."
-msgstr "Trả về vị trí hiện tại trong một tập tin còn mở."
+msgid "Returns the number of twips that represent the height of a pixel."
+msgstr "Trả về số các twip đại diện chiều cao của một điểm ảnh."
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3156422\n"
+"03131400.xhp\n"
+"hd_id3145090\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3150768\n"
+"03131400.xhp\n"
+"par_id3153681\n"
"4\n"
"help.text"
-msgid "Loc(FileNumber)"
-msgstr "Loc(FileNumber)"
+msgid "n = TwipsPerPixelY"
+msgstr "n = TwipsPerPixelY"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3150440\n"
+"03131400.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgstr "GIá trị trả về:"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3152578\n"
+"03131400.xhp\n"
+"par_id3154306\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3152462\n"
+"03131400.xhp\n"
+"hd_id3149235\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3153363\n"
-"8\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
-msgstr "<emph>FileNumber:</emph> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin được đặt bởi câu lệnh Open cho tập tin tương ứng."
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3154320\n"
-"9\n"
-"help.text"
-msgid "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
-msgstr "Nếu hàm « Loc » được dùng cho một tập tin truy cập ngẫu nhiên còn mở, nó trả về số thứ tự của bản ghi được đọc/ghi cuối cùng,"
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3151115\n"
-"10\n"
-"help.text"
-msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
-msgstr "Đối với một tập tin dãy, hàm « Loc » trả về vị trí trong một tập tin được chia cho 128. Đối với tập tin nhị phân, trả về vị trí của byte được đọc/ghi cuối cùng."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefErr Statement [Runtime]"
-msgstr "Câu lệnh DefErr [Runtime]"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"bm_id8177739\n"
-"help.text"
-msgid "<bookmark_value>DefErr statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefErr</bookmark_value>"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Câu lệnh DefErr [Runtime]</link>"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1058D\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefErr</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1059B\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt kiểu dữ liệu mặc định."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "<emph>DefErr:</emph> lỗi"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B7\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03101120.xhp
-#, fuzzy
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tế cho các kiểu biến:"
-
-#: 03101120.xhp
-#, fuzzy
+#: 03131400.xhp
msgctxt ""
-"03101120.xhp\n"
-"par_idN105D9\n"
+"03131400.xhp\n"
+"par_id3154142\n"
+"9\n"
"help.text"
-msgid "eErr=Error ' eErr is an implicit error variable"
-msgstr "eErr=Error REM eErr là một biến lỗi ngầm"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Kích cỡ điểm ảnh\""
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
+"03131500.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Toán tử Imp [Runtime]"
+msgid "CreateUnoStruct Function [Runtime]"
+msgstr "Hàm CreateUnoStruct [Runtime]"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"bm_id3156024\n"
+"03131500.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử Imp (lôgic)</bookmark_value>"
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>hàm CreateUnoStruct</bookmark_value>"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"hd_id3156024\n"
+"03131500.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Toán tử Imp [Runtime]\">Toán tử Imp [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"Hàm CreateUnoStruct [Runtime]\">Hàm CreateUnoStruct [Runtime]</link>"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3148947\n"
+"03131500.xhp\n"
+"par_id3150713\n"
"2\n"
"help.text"
-msgid "Performs a logical implication on two expressions."
-msgstr "Thực hiện phép tất suy với hai biểu thức."
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgstr "<ahelp hid=\".\">Tạo một thể hiện của một kiểu cấu trúc Uno.</ahelp>"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"hd_id3148664\n"
+"03131500.xhp\n"
+"par_id3147226\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Use the following structure for your statement:"
+msgstr "Hãy sử dụng cấu trúc theo đây cho câu lệnh của bạn:"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3149656\n"
+"03131500.xhp\n"
+"par_id3149177\n"
"4\n"
"help.text"
-msgid "Result = Expression1 Imp Expression2"
-msgstr "Result = Biểu_thức1 Imp Biểu_thức2"
+msgid "Dim oStruct as new com.sun.star.beans.Property"
+msgstr "Dim oStruct as new com.sun.star.beans.Property"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"hd_id3151212\n"
+"03131500.xhp\n"
+"hd_id3156153\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3154910\n"
+"03131500.xhp\n"
+"par_id3155341\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
-msgstr "<emph>Kết quả:</emph> bất cứ giá trị thuộc số nào mà chứa kết quả của phép tất suy."
+msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgstr "oStruct = CreateUnoStruct( Uno type name )"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3156281\n"
+"03131500.xhp\n"
+"hd_id3145316\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ biểu thức nào bạn muốn tính bằng toán tử Imp."
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3150440\n"
-"8\n"
-"help.text"
-msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
-msgstr "Nếu bạn dùng toán tử Imp trong biểu thức Bun, giá trị FALSE (SAI) chỉ được trả về nếu biểu thức thứ nhất tính đến TRUE (ĐÚNG) và biểu thức thứ hai tính đến FALSE."
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3163710\n"
-"9\n"
-"help.text"
-msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
-msgstr "Nếu bạn dùng toán tử Imp trong biểu thức kiểu bit, một bit bị xoá khỏi kết quả nếu bit tương ứng được đặt trong biểu thức thứ nhất và bit tương ứng bị xoá trong biểu thức thứ hai."
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3147318\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3145750\n"
-"15\n"
-"help.text"
-msgid "vOut = A > B Imp B > C ' returns -1"
-msgstr "vOut = A > B Imp B > C REM trả về -1"
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3156441\n"
-"16\n"
-"help.text"
-msgid "vOut = B > A Imp B > C ' returns -1"
-msgstr "vOut = B > A Imp B > C REM trả về -1"
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3152596\n"
-"17\n"
-"help.text"
-msgid "vOut = A > B Imp B > D ' returns 0"
-msgstr "vOut = A > B Imp B > D REM trả về 0"
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154942\n"
-"18\n"
-"help.text"
-msgid "vOut = (B > D Imp B > A) ' returns -1"
-msgstr "vOut = (B > D Imp B > A) REM trả về -1"
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154492\n"
-"19\n"
-"help.text"
-msgid "vOut = B Imp A ' returns -1"
-msgstr "vOut = B Imp A REM trả về -1"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVar Function [Runtime]"
-msgstr "Hàm CVar [Runtime]"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"bm_id2338633\n"
-"help.text"
-msgid "<bookmark_value>CVar function</bookmark_value>"
-msgstr "<bookmark_value>hàm CVar</bookmark_value>"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Hàm CVar [Runtime]</link>"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression."
-msgstr "Chuyển đổi một biểu thức kiểu chuỗi hay thuộc số sang một biểu thức kiểu hay biến đổi."
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVar(Expression)"
-msgstr "CVar(Biểu_thức)"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr "Biến thế."
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
-
-#: 03100070.xhp
+#: 03131500.xhp
msgctxt ""
-"03100070.xhp\n"
-"par_idN10570\n"
+"03131500.xhp\n"
+"par_id3149762\n"
+"8\n"
"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Biểu_thức: bất cứ biểu thức kiểu chuỗi hay thuộc số cần chuyển đổi."
+msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
+"03131600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Toán tử Mod [Runtime]"
+msgid "CreateUnoService Function [Runtime]"
+msgstr "Hàm CreateUnoService [Runtime]"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"bm_id3150669\n"
+"03131600.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>toán tử MOD (toán học)</bookmark_value>"
+msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgstr "<bookmark_value>hàm CreateUnoService</bookmark_value>"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3150669\n"
+"03131600.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Toán tử Mod [Runtime]\">Toán tử Mod [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"Hàm CreateUnoService [Runtime]\">Hàm CreateUnoService [Runtime]</link>"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3148686\n"
+"03131600.xhp\n"
+"par_id3152924\n"
"2\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Trả về phần dự nguyên của một phép chia."
+msgid "Instantiates a Uno service with the ProcessServiceManager."
+msgstr "Khởi tạo một dịch vụ Uno với bộ quản lý dịch vụ tiến trình (ProcessServiceManager)."
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3146795\n"
+"03131600.xhp\n"
+"hd_id3152801\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3147560\n"
+"03131600.xhp\n"
+"par_id3153346\n"
"4\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Kết quả = Biểu_thức1 MOD Biểu_thức2"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3149657\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3153380\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3154365\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145172\n"
-"8\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Kết quả:</emph> bất cứ biến thuộc số nào mà chứa kết quả của phép MOD."
+msgid "oService = CreateUnoService( Uno service name )"
+msgstr "oService = CreateUnoService( Uno service name )"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3151042\n"
-"9\n"
+"03131600.xhp\n"
+"par_idN1060F\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Biểu_thức1, Biểu_thức2:</emph> bất cứ cặp biểu thức thuộc số nào bạn muốn đặt trong phép chia."
+msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+msgstr "Để tìm thấy danh sách các dịch vụ sẵn sàng, hãy thâm địa chỉ: http://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3147287\n"
-"10\n"
+"03131600.xhp\n"
+"hd_id3151111\n"
+"5\n"
"help.text"
-msgid "Example:"
+msgid "Examples:"
msgstr "Thí dụ :"
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3161832\n"
-"12\n"
-"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM trả về 0"
-
-#: 03070600.xhp
-#, fuzzy
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3146922\n"
-"13\n"
+"03131600.xhp\n"
+"par_id3154046\n"
+"6\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM trả về 4"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-#: 03070600.xhp
-#, fuzzy
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3145273\n"
-"14\n"
+"03131600.xhp\n"
+"bm_id8334604\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM trả về 0"
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgstr "<bookmark_value>filepicker;dịch vụ API</bookmark_value>"
-#: 03070600.xhp
-#, fuzzy
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3150011\n"
-"15\n"
+"03131600.xhp\n"
+"par_idN10625\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM trả về 2"
+msgid "The following code uses a service to open a file open dialog:"
+msgstr "Mã theo đây sử dụng một dịch vụ để mở một hộp thoại kiểu mở tập tin:"
-#: 03070600.xhp
-#, fuzzy
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3149483\n"
-"16\n"
+"03131600.xhp\n"
+"par_idN1062B\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM trả về 5"
+msgid "fName = FileOpenDialog (\"Please select a file\")"
+msgstr "fName = FileOpenDialog (\"Hãy chọn một tập tin\")"
-#: 03070600.xhp
-#, fuzzy
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3151114\n"
-"17\n"
+"03131600.xhp\n"
+"par_idN10630\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM trả về 0.5"
+msgid "Print \"file chosen: \"+fName"
+msgstr "print \"tập tin đã chọn: \"+fName"
-#: 03020406.xhp
+#: 03131700.xhp
msgctxt ""
-"03020406.xhp\n"
+"03131700.xhp\n"
"tit\n"
"help.text"
-msgid "FileCopy Statement [Runtime]"
-msgstr "Câu lệnh FileCopy [Runtime]"
+msgid "GetProcessServiceManager Function [Runtime]"
+msgstr "Hàm GetProcessServiceManager [Runtime]"
-#: 03020406.xhp
+#: 03131700.xhp
msgctxt ""
-"03020406.xhp\n"
-"bm_id3154840\n"
+"03131700.xhp\n"
+"bm_id3153255\n"
"help.text"
-msgid "<bookmark_value>FileCopy statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh FileCopy</bookmark_value>"
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr "<bookmark_value>hàm GetProcessServiceManager</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-#: 03020406.xhp
+#: 03131700.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3154840\n"
+"03131700.xhp\n"
+"hd_id3153255\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Câu lệnh FileCopy [Runtime]\">Câu lệnh FileCopy [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"Hàm GetProcessServiceManager [Runtime]\">Hàm GetProcessServiceManager [Runtime]</link>"
-#: 03020406.xhp
+#: 03131700.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3149497\n"
+"03131700.xhp\n"
+"par_id3156414\n"
"2\n"
"help.text"
-msgid "Copies a file."
-msgstr "Sao chép một tập tin."
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgstr "Trả về ProcessServiceManager (ServiceManager Uno trung tâm)."
-#: 03020406.xhp
+#: 03131700.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3147443\n"
+"03131700.xhp\n"
+"par_id3145136\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr "Hàm này cần thiết khi bạn muốn khởi tạo một dịch vụ dùng CreateInstanceWithArguments."
-#: 03020406.xhp
+#: 03131700.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3146957\n"
+"03131700.xhp\n"
+"hd_id3153681\n"
"4\n"
"help.text"
-msgid "FileCopy TextFrom As String, TextTo As String"
-msgstr "FileCopy TextFrom As String, TextTo As String"
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3153825\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3155390\n"
-"6\n"
-"help.text"
-msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>TextFrom:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ tên của tập tin bạn muốn sao chép. Biểu thức này có thể chứa (tùy chọn) thông tin về đường dẫn và ổ đĩa. Bạn cũng có thể nhập đường dẫn theo <link href=\"text/sbasic/shared/00000002.xhp\" name=\"kiểu ghi URL\">kiểu ghi URL</link>."
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3150669\n"
-"7\n"
-"help.text"
-msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
-msgstr "<emph>TextTo:</emph> bất cứ biểu thức chuỗi nào mà ghi rõ nơi vào đó bạn muốn sao chép tập tin nguồn. Biểu thức này có thể chứa ổ đĩa đích đến, đường dẫn và tên tập tin, hoặc đường dẫn kiểu ghi địa chỉ URL."
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3150791\n"
-"8\n"
-"help.text"
-msgid "You can only use the FileCopy statement to copy files that are not opened."
-msgstr "Bạn chỉ có thể sử dụng câu lệnh FileCopy để sao chép tập tin không mở."
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3125863\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefInt Statement [Runtime]"
-msgstr "Câu lệnh DefInt [Runtime]"
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefInt statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefInt</bookmark_value>"
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3149811\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"Câu lệnh DefInt [Runtime]\">Câu lệnh DefInt [Runtime]</link>"
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3149762\n"
-"2\n"
-"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu thì đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3148686\n"
-"3\n"
-"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
-
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3156344\n"
+"03131700.xhp\n"
+"par_id3151110\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3147560\n"
+"03131700.xhp\n"
+"hd_id3149516\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt một kiểu dữ liệu mặc định."
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3150398\n"
+"03131700.xhp\n"
+"par_id3143270\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3154365\n"
+"03131700.xhp\n"
+"par_id3153825\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Từ khoá :</emph> kiểu biến mặc định"
+msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3125863\n"
+"03131700.xhp\n"
+"par_id3148473\n"
"9\n"
"help.text"
-msgid "<emph>DefInt:</emph> Integer"
-msgstr "<emph>DefInt:</emph> số nguyên"
+msgid "this is the same as the following statement:"
+msgstr "tương đương với câu lệnh theo đây:"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3154123\n"
+"03131700.xhp\n"
+"par_id3145609\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03101500.xhp
-#, fuzzy
-msgctxt ""
-"03101500.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types"
-msgstr "REM Xác định tiền tố cho các kiểu biến:"
-
-#: 03101500.xhp
-#, fuzzy
-msgctxt ""
-"03101500.xhp\n"
-"par_id3153728\n"
-"22\n"
-"help.text"
-msgid "iCount=200 ' iCount is an implicit integer variable"
-msgstr "iCount=200 REM iCount là một biến số nguyên ngầm"
+msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
+"03131800.xhp\n"
"tit\n"
"help.text"
-msgid "Seek Function [Runtime]"
-msgstr "Hàm Seek [Runtime]"
+msgid "CreateUnoDialog Function [Runtime]"
+msgstr "Hàm CreateUnoDialog [Runtime]"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"bm_id3154367\n"
+"03131800.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "<bookmark_value>Seek function</bookmark_value>"
-msgstr "<bookmark_value>hàm Seek</bookmark_value>"
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr "<bookmark_value>hàm CreateUnoDialog</bookmark_value>"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3154367\n"
+"03131800.xhp\n"
+"hd_id3150040\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=\"Hàm Seek [Runtime]\">Hàm Seek [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"Hàm CreateUnoDialog [Runtime]\">Hàm CreateUnoDialog [Runtime]</link>"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3156280\n"
+"03131800.xhp\n"
+"par_id3154186\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 "Trả về vị trí ở đó cần đọc/ghi kế tiếp trong một tập tin được mở bởi câu lệnh Open."
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgstr "Tạo một đối tượng Uno Basic mà đại diện một điều khiển hộp thoại Uno trong khi chạy Basic."
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3153194\n"
+"03131800.xhp\n"
+"par_id3153750\n"
"3\n"
"help.text"
-msgid "For random access files, the Seek function returns the number of the next record to be read."
-msgstr "Đối với các tập tin truy cập ngẫu nhiên, hàm Seek trả về số thứ tự của bản ghi kế tiếp cần đọc."
+msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
+msgstr "Hộp thoại được định nghĩa trong thư viện hộp thoại. Để hiển thị một hộp thoại, một hộp thoại « động » phải được tạo từ thư viện."
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3161831\n"
+"03131800.xhp\n"
+"par_id3153681\n"
"4\n"
"help.text"
-msgid "For all other files, the function returns the byte position at which the next operation is to occur."
-msgstr "Đối với các tập tin khác, hàm trả về vị trí byte ở đó thao tác kế tiếp sẽ xảy ra."
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ví dụ\">Ví dụ</link>."
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3155854\n"
+"03131800.xhp\n"
+"hd_id3154286\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 "Xem thêm: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3152460\n"
+"03131800.xhp\n"
+"par_id3159176\n"
"6\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "CreateUnoDialog( oDlgDesc )"
+msgstr "CreateUnoDialog( oDlgDesc )"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3145365\n"
+"03131800.xhp\n"
+"hd_id3143270\n"
"7\n"
"help.text"
-msgid "Seek (FileNumber)"
-msgstr "Seek (FileNumber)"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3148575\n"
+"03131800.xhp\n"
+"par_id3159157\n"
"8\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "' Get dialog description from the dialog library"
+msgstr "' Lấy mô tả hộp thoại từ thư viện hộp thoại"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3159156\n"
+"03131800.xhp\n"
+"par_id3149234\n"
"9\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3149665\n"
+"03131800.xhp\n"
+"par_id3154923\n"
"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "' generate \"live\" dialog"
+msgstr "' tạo hộp thoại « động »"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3148645\n"
+"03131800.xhp\n"
+"par_id3149670\n"
"11\n"
"help.text"
-msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
-msgstr "<emph>FileNumber:</emph> số thứ tự kênh dữ liệu được dùng trong câu lệnh Open."
+msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
+msgstr "oDlgControl = CreateUnoDialog( oDlgDesc )"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
+"03131800.xhp\n"
+"par_id3148550\n"
+"12\n"
+"help.text"
+msgid "' display \"live\" dialog"
+msgstr "' hiển thị hộp thoại « động »"
+
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3154072\n"
+"13\n"
+"help.text"
+msgid "oDlgControl.execute"
+msgstr "oDlgControl.execute"
+
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
"tit\n"
"help.text"
-msgid "Minute Function [Runtime]"
-msgstr "Hàm Minute [Runtime]"
+msgid "GlobalScope [Runtime]"
+msgstr "Hàm GlobalScope [Runtime]"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"bm_id3155419\n"
+"03131900.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>Minute function</bookmark_value>"
-msgstr "<bookmark_value>hàm Minute</bookmark_value>"
+msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+msgstr "<bookmark_value>hàm GlobalScope</bookmark_value><bookmark_value>hệ thống thư viện</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3155419\n"
+"03131900.xhp\n"
+"hd_id3150682\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=\"Hàm Minute [Runtime]\">Hàm Minute [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"Hàm GlobalScope [Runtime]\">Hàm GlobalScope [Runtime]</link>"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3156344\n"
+"03131900.xhp\n"
+"par_id3153345\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 "Trả về phút của giờ tương ứng với giá trị thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>."
+msgid "Basic source code and dialogs are organized in a library system."
+msgstr "Cả mã nguồn và hộp thoại Basic đều được tổ chức theo một hệ thống thư viện."
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3154758\n"
+"03131900.xhp\n"
+"par_id3145315\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "The LibraryContainer contains libraries"
+msgstr "LibraryContainer (thì) chứa thư viện."
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3149656\n"
+"03131900.xhp\n"
+"par_id3149514\n"
"4\n"
"help.text"
-msgid "Minute (Number)"
-msgstr "Minute (Số)"
+msgid "Libraries can contain modules and dialogs"
+msgstr "Thư viện lần lượt có thể chứa mô-đun và hộp thoại."
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3148798\n"
+"03131900.xhp\n"
+"hd_id3143271\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "In Basic:"
+msgstr "Bằng mã Basic:"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3150449\n"
+"03131900.xhp\n"
+"par_id3153061\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgstr "Đối tượng thư viện LibraryContainer được gọi như là <emph>BasicLibraries</emph>."
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3153193\n"
+"03131900.xhp\n"
+"hd_id3154346\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "In dialogs:"
+msgstr "Trong hộp thoại:"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3153969\n"
+"03131900.xhp\n"
+"par_id3148663\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>Số:</emph> biểu thức số chứa giá trị thời gian dãy được dùng để trả về giá trị phút."
+msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
+msgstr "Đối tượng thư viện LibraryContainer được gọi như là <emph>DialogLibraries</emph>."
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3150869\n"
+"03131900.xhp\n"
+"par_id3150543\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 "Hàm này là mặt đối lập của hàm <emph>TimeSerial</emph>. Nó trả về phút của giá trị thời gian dãy được tạo bởi hàm <emph>TimeSerial</emph> hay <emph>TimeValue</emph>. Ví dụ, biểu thức:"
+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 "Cả hai đối tượng thư viện LibraryContainer tồn tại ở mức ứng dụng và bên trong mọi tài liệu. Trong mã Basic của tài liệu, các đối tượng thư viện của tài liệu đó được tự động dùng. Muốn gọi các đối tượng thư viện toàn cục từ bên trong một tài liệu, thì bạn cần phải sử dụng từ khoá <emph>GlobalScope</emph> (phạm vi toàn cục)."
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3149262\n"
+"03131900.xhp\n"
+"hd_id3148920\n"
"10\n"
"help.text"
-msgid "Print Minute(TimeSerial(12,30,41))"
-msgstr "In ra Minute(TimeSerial(12:30:41))"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3148576\n"
+"03131900.xhp\n"
+"par_id3149203\n"
"11\n"
"help.text"
-msgid "returns the value 30."
-msgstr "trả về giá trị 30."
+msgid "GlobalScope"
+msgstr "GlobalScope"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3150010\n"
+"03131900.xhp\n"
+"hd_id3154685\n"
"12\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3159154\n"
+"03131900.xhp\n"
+"par_id3154124\n"
"13\n"
"help.text"
-msgid "Sub ExampleMinute"
-msgstr "Sub ExampleMinute"
+msgid "Example in the document Basic"
+msgstr "Ví dụ trong mã Basic của tài liệu"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3146119\n"
+"03131900.xhp\n"
+"par_id3158408\n"
"14\n"
"help.text"
-msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
-msgstr "MsgBox \"Phút hiện thời là \"& Minute(Now)& \".\""
+msgid "' calling Dialog1 in the document library Standard"
+msgstr "' đang gọi hộp thoại Dialog1 trong thư viện tài liệu tiêu chuẩn Standard"
-#: 03030202.xhp
-#, fuzzy
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3153726\n"
+"03131900.xhp\n"
+"par_id3125865\n"
"15\n"
"help.text"
-msgid "end sub"
-msgstr "end sub"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Base Statement [Runtime]"
-msgstr "Câu lệnh Option Base [Runtime]"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"bm_id3155805\n"
-"help.text"
-msgid "<bookmark_value>Option Base statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Option Base</bookmark_value>"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3155805\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Câu lệnh Option Base [Runtime]\">Câu lệnh Option Base [Runtime]</link>"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"par_id3147242\n"
-"2\n"
-"help.text"
-msgid "Defines the default lower boundary for arrays as 0 or 1."
-msgstr "Xác định giới hạn dưới mặc định cho mảng là 0 hay 1."
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150771\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Option Base { 0 | 1}"
-msgstr "Option Base { 0 | 1}"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3145315\n"
-"5\n"
+"03131900.xhp\n"
+"par_id3154910\n"
+"16\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "' calling Dialog2 in the application library Library1"
+msgstr "' đang gọi hộp thoại Dialog2 trong thư viện ứng dụng Library1"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"par_id3147229\n"
-"6\n"
+"03131900.xhp\n"
+"par_id3156424\n"
+"17\n"
"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr "Câu lệnh này phải được thêm vào phía trước mã có thể thực hiện trong một mô-đun."
+msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-#: 03103200.xhp
+#: 03132000.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
-"7\n"
+"03132000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "CreateUnoListener Function [Runtime]"
+msgstr "Hàm CreateUnoListener [Runtime]"
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"tit\n"
+"03132000.xhp\n"
+"bm_id3155150\n"
"help.text"
-msgid "Sqr Function [Runtime]"
-msgstr "Hàm Sqr [Runtime]"
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
+msgstr "<bookmark_value>hàm CreateUnoListener</bookmark_value>"
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"bm_id3156027\n"
+"03132000.xhp\n"
+"hd_id3155150\n"
+"53\n"
"help.text"
-msgid "<bookmark_value>Sqr function</bookmark_value>"
-msgstr "<bookmark_value>hàm Sqr</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"Hàm CreateUnoListener [Runtime]\">Hàm CreateUnoListener [Runtime]</link>"
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03132000.xhp\n"
+"par_id3149346\n"
+"52\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Hàm Sqr [Runtime]\">Hàm Sqr [Runtime]</link>"
+msgid "Creates a Listener instance."
+msgstr "Tạo một thể hiện Listener (đối tượng nghe)."
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3147226\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3153681\n"
+"51\n"
"help.text"
-msgid "Calculates the square root of a numeric expression."
-msgstr "Tính căn bậc hai của một biểu thức thuộc số."
+msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
+msgstr "Rất nhiều giao diện Uno cho phép bạn đăng ký đối tượng nghe trên một giao diện đối tượng nghe đặc biệt. Vì thế bạn có thể lắng nghe các sự kiện cụ thể, và gọi phương pháp lắng nghe thích hợp. Hàm CreateUnoListener đợi giao diện đối tượng nghe đã gọi, sau đó gửi cho giao diện một đối tượng được giao diện hỗ trợ. Đối tượng này thì được gửi cho phương pháp để đăng ký đối tượng nghe."
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3143267\n"
-"3\n"
+"03132000.xhp\n"
+"hd_id3148685\n"
+"50\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3149415\n"
-"4\n"
-"help.text"
-msgid "Sqr (Number)"
-msgstr "Sqr (Số)"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr "Đôi"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3147265\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3149457\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
-msgstr "<emph>Số</emph>: bất cứ biểu thức thuộc số nào cho đó bạn muốn tính căn bậc hai."
-
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3154365\n"
-"9\n"
+"03132000.xhp\n"
+"par_id3143228\n"
+"49\n"
"help.text"
-msgid "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
-msgstr "Căn bậc hai là con số bạn tính theo chính nó để được một số khác, v.d. căn bậc hai của 36 là 6."
+msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgstr "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3153192\n"
-"10\n"
+"03132000.xhp\n"
+"hd_id3147574\n"
+"48\n"
"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSystemTicks Function [Runtime]"
-msgstr "Hàm GetSystemTicks [Runtime]"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
-msgstr "<bookmark_value>hàm GetSystemTicks</bookmark_value>"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3147143\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"Hàm GetSystemTicks [Runtime]\">Hàm GetSystemTicks [Runtime]</link>"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3153750\n"
-"2\n"
-"help.text"
-msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
-msgstr "Trả về số các nhịp đồng hồ hệ thống được hệ điều hành cung cấp. Bạn có thể sử dụng hàm này để tối ưu hoá một số tiến trình nào đó."
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3153311\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3147242\n"
-"4\n"
-"help.text"
-msgid "GetSystemTicks()"
-msgstr "GetSystemTicks()"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3149233\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr "Dài"
-
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3156152\n"
-"7\n"
+"03132000.xhp\n"
+"par_id3154046\n"
+"47\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "The following example is based on a Basic library object."
+msgstr "Thí dụ theo đây dựa vào một đối tượng thư viện Basic."
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3154938\n"
-"13\n"
+"03132000.xhp\n"
+"par_id3149294\n"
+"44\n"
"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr "MsgBox \"\" & lTick & \" Nhịp\" ,0,\"Đã tạm dừng được\""
+msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
+msgstr "Phương pháp CreatenoListenUer cần thiết hai tham số. Tham số thứ nhất là một tiền tố, được diễn tả chi tiết bên dưới. Tham số thứ hai là tên có khả năng đầy đủ của giao diện đối tượng nghe cần dùng."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"tit\n"
+"03132000.xhp\n"
+"par_id3149670\n"
+"43\n"
"help.text"
-msgid "If...Then...Else Statement [Runtime]"
-msgstr "Câu lệnh If...Then...Else [Runtime]"
+msgid "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
+msgstr "Đối tượng nghe (Listener) phải được thêm vào đối tượng quảng bá Broadcaster Object. Làm như thế bằng cách gọi phương pháp thích hợp để thêm một đối tượng nghe. Các phương pháp này luôn luôn theo mẫu \"addFooListener\" mà \"Foo\" là kiểu giao diện đối tượng nghe (Listener Interface Type), không có \"X\". Trong thí dụ này, phương pháp addContainerListener được gọi để đăng ký XContainerListener:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"bm_id3154422\n"
+"03132000.xhp\n"
+"par_id3154940\n"
+"41\n"
"help.text"
-msgid "<bookmark_value>If statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh If</bookmark_value>"
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+msgstr "oLib = BasicLibraries.Library1 ' Library1 phải tồn tại."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"03132000.xhp\n"
+"par_id3150359\n"
+"40\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"Câu lệnh Nếu...Thì...Không thì [Runtime]\">Câu lệnh Nếu...Thì...Không thì [Runtime]</link>"
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
+msgstr "oLib.addContainerListener( oListener ) ' Đăng ký đối tượng nghe"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3155555\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3154138\n"
+"39\n"
"help.text"
-msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
-msgstr "Xác định một hay nhiều khối câu lệnh sẽ chỉ thực hiện nếu một điều kiện đã cho là Đúng."
+msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
+msgstr "Đối tượng nghe đã được đăng ký. Khi một sự kiện xảy ra, đối tượng nghe tương ứng sẽ gọi phương pháp thích hợp từ giao diện com.sun.star.container.XContainerListener."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3146957\n"
-"3\n"
+"03132000.xhp\n"
+"par_id3148922\n"
+"38\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
+msgstr "Tiền tố gọi đối tượng nghe (Listener) từ chương trình con Basic. Hệ thống Basic lúc chạy thì tìm các chương trình con hay hàm Basic với tên PrefixListenerMethode, và gọi nó khi được tìm. Không thì gặp một lỗi lúc chạy."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153126\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3150768\n"
+"37\n"
"help.text"
-msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
-msgstr ""
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr "Trong thí dụ này, giao diện đối tượng nghe (Listener-Interface) sử dụng những phương pháp theo đây:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3123476\n"
+"03132000.xhp\n"
+"par_id3151176\n"
+"36\n"
"help.text"
-msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
-msgstr ""
+msgid "disposing:"
+msgstr "disposing:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3155419\n"
-"5\n"
+"03132000.xhp\n"
+"par_id3145173\n"
+"35\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr "Giao diện cơ bản đối tượng nghe (com.sun.star.lang.XEventListener): giao diện cơ bản cho tất cả các giao diện đối tượng nghe."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153062\n"
-"6\n"
+"03132000.xhp\n"
+"par_id3156212\n"
+"34\n"
"help.text"
-msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
-msgstr "Câu lệnh <emph>If...Then</emph> (Nếu...Thì) thực hiện các khối chương trình phụ thuộc vào những điều kiện đã cho. Khi $[officename] Basic gặp một câu lệnh <emph>If</emph> (Nếu), điều kiện được thử. Điều kiện là Đúng thì thực hiện tất cả các câu lệnh theo sau, đến câu lệnh <emph>Else</emph> (Không thì) hay <emph>ElseIf</emph> (Không nếu). Nếu điều kiện là Sai, và một câu lệnh <emph>ElseIf</emph> theo sau, thì $[officename] Basic thử điều kiện kế tiếp: Đúng thì nó thực hiện những câu lệnh theo sau ; Sai thì nó tiếp tục lại với câu lệnh kế tiếp kiểu <emph>ElseIf</emph> hay <emph>Else</emph>. Câu lệnh nằm sau <emph>Else</emph> được thực hiện chỉ nếu không có điều kiện đã thử trước là Đúng. Một khi thử tất cả các điều kiện, và thực hiện những câu lệnh tương ứng, chương trình tiếp tục lại với câu lệnh nằm sau <emph>EndIf</emph>."
+msgid "elementInserted:"
+msgstr "elementInserted:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153192\n"
-"7\n"
+"03132000.xhp\n"
+"par_id3159254\n"
+"33\n"
"help.text"
-msgid "You can nest multiple <emph>If...Then</emph> statements."
-msgstr "Bạn có thể lồng nhau nhiều câu lệnh kiểu <emph>If...Then</emph> (Nếu...Thì)."
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Phương pháp của giao diện com.sun.star.container.XContainerListener"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154684\n"
-"8\n"
+"03132000.xhp\n"
+"par_id3147287\n"
+"32\n"
"help.text"
-msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
-msgstr "Các câu lệnh kiểu <emph>Else</emph> (Không thì) và <emph>ElseIf</emph> (Không nếu) vẫn còn tùy chọn."
+msgid "elementRemoved:"
+msgstr "elementRemoved:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3152939\n"
-"9\n"
+"03132000.xhp\n"
+"par_id3146119\n"
+"31\n"
"help.text"
-msgid "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
-msgstr "Bạn có thể sử dụng toán tử <emph>GoTo</emph> (đi tới) và <emph>GoSub</emph> (đi tới hàm phụ?) để nhảy ra một khối câu lệnh kiểu <emph>If...Then</emph> (Nếu...thì), nhưng không phải để nhảy vào một cấu trúc <emph>If...Then</emph>."
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Phương pháp của giao diện com.sun.star.container.XContainerListener"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
+"03132000.xhp\n"
"par_id3153951\n"
-"10\n"
+"30\n"
"help.text"
-msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
-msgstr "Mẫu ví dụ theo đây cho bạn nhập ngày hết hạn của một sản phẩm, và quyết định nếu sản phẩm đã hết hạn dùng chưa."
+msgid "elementReplaced:"
+msgstr "elementReplaced:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3152576\n"
-"11\n"
+"03132000.xhp\n"
+"par_id3154013\n"
+"29\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Phương pháp của giao diện com.sun.star.container.XContainerListener"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154490\n"
-"16\n"
+"03132000.xhp\n"
+"par_id3147435\n"
+"28\n"
"help.text"
-msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
-msgstr "sDate = InputBox(\"Nhập ngày hết hạn dùng (Th.Ng.NNĂM)\")"
+msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
+msgstr "Trong thí dụ này, tiền tố là « ContListener_ ». Những chương trình con theo đây thì phải được thực hiện trong mã Basic:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3155601\n"
-"21\n"
+"03132000.xhp\n"
+"par_id3155411\n"
+"27\n"
"help.text"
-msgid "MsgBox \"The expiration date has passed\""
-msgstr "MsgBox \"Đã hết hạn\""
+msgid "ContListener_disposing"
+msgstr "ContListener_disposing"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3146912\n"
-"23\n"
+"03132000.xhp\n"
+"par_id3146923\n"
+"26\n"
"help.text"
-msgid "MsgBox \"The expiration date has not yet passed\""
-msgstr "MsgBox \"Chưa hết hạn dùng\""
+msgid "ContListener_elementInserted"
+msgstr "ContListener_elementInserted"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154754\n"
+"03132000.xhp\n"
+"par_id3147318\n"
"25\n"
"help.text"
-msgid "MsgBox \"The expiration date is today\""
-msgstr "MsgBox \"Ngày hết hạn là hôm nay\""
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Space Function [Runtime]"
-msgstr "Hàm Space [Runtime]"
+msgid "ContListener_elementRemoved"
+msgstr "ContListener_elementRemoved"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"bm_id3150499\n"
+"03132000.xhp\n"
+"par_id3152578\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>Space function</bookmark_value>"
-msgstr "<bookmark_value>hàm Space</bookmark_value>"
+msgid "ContListener_elementReplaced"
+msgstr "ContListener_elementReplaced"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3150499\n"
-"1\n"
+"03132000.xhp\n"
+"par_id3150592\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Hàm Space [Runtime]\">Hàm Space [Runtime]</link>"
+msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
+msgstr "Có một kiểu cấu trúc sự kiện mà chứa thông tin về sự kiện cho mọi kiểu đối tượng nghe (Listener). Khi gọi một đối tượng nghe, một thể hiện của sự kiện này được gửi cho phương pháp dưới dạng một tham số. Đối tượng nghe Basic cũng có thể gọi những đối tượng sự kiện này, miễn là tham số thích hợp được gửi trong lời khai báo Sub. Ví dụ :"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3154927\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3153876\n"
+"21\n"
"help.text"
-msgid "Returns a string that consists of a specified amount of spaces."
-msgstr "Trả về một chuỗi chứa một số dấu cách đã ghi rõ."
+msgid "MsgBox \"disposing\""
+msgstr "MsgBox \"disposing\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3153394\n"
-"3\n"
+"03132000.xhp\n"
+"par_id3154098\n"
+"17\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "MsgBox \"elementInserted\""
+msgstr "MsgBox \"elementInserted\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3143267\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3153947\n"
+"13\n"
"help.text"
-msgid "Space (n As Long)"
-msgstr "Space (n As Long)"
+msgid "MsgBox \"elementRemoved\""
+msgstr "MsgBox \"elementRemoved\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3147242\n"
-"5\n"
+"03132000.xhp\n"
+"par_id3148915\n"
+"9\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "MsgBox \"elementReplaced\""
+msgstr "MsgBox \"elementReplaced\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3149233\n"
+"03132000.xhp\n"
+"par_id3156056\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3143228\n"
-"8\n"
-"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
-msgstr "<emph>n:</emph> biểu thức thuộc số mà xác định số dấu cách trong chuỗi đó. Giá trị tối đa cho phép cho n là 65535."
+msgid "You do not need to include the parameter of an event object if the object is not used:"
+msgstr "Bạn không cần bao gồm tham số của một đối tượng sự kiện nếu đối tượng đó không phải được dùng:"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3154760\n"
-"9\n"
+"03132000.xhp\n"
+"par_id3150042\n"
+"5\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "' Minimal implementation of Sub disposing"
+msgstr "' Thực hiện tối thiểu khả năng bỏ chương trình con"
-#: 03120201.xhp
-#, fuzzy
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3154216\n"
-"18\n"
+"03132000.xhp\n"
+"par_id3150940\n"
+"2\n"
"help.text"
-msgid "MsgBox sOut,0,\"Info:\""
-msgstr "msgBox sOut,0,\"Thông tin:\""
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgstr "Phương pháp lắng nghe <emph>luôn luôn</emph> phải được thực hiện để tránh lỗi lúc chạy Basic."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
+"03132100.xhp\n"
"tit\n"
"help.text"
-msgid "DateSerial Function [Runtime]"
-msgstr "Hàm DateSerial [Runtime]"
+msgid "GetGuiType Function [Runtime]"
+msgstr "Hàm GetGuiType [Runtime]"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"bm_id3157896\n"
+"03132100.xhp\n"
+"bm_id3147143\n"
"help.text"
-msgid "<bookmark_value>DateSerial function</bookmark_value>"
-msgstr "<bookmark_value>hàm DateSerial</bookmark_value>"
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
+msgstr "<bookmark_value>hàm GetGuiType</bookmark_value>"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3157896\n"
+"03132100.xhp\n"
+"hd_id3155310\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"Hàm DateSerial [Runtime]\">Hàm DateSerial [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"Hàm GetGuiType [Runtime]\">Hàm GetGuiType [Runtime]</link>"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3143267\n"
+"03132100.xhp\n"
+"par_id3152459\n"
"2\n"
"help.text"
-msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
-msgstr "Trả về một giá trị <emph>Ngày tháng</emph> cho một năm, tháng hoặc ngày cụ thể."
+msgid "Returns a numerical value that specifies the graphical user interface."
+msgstr "Trả về một giá trị thuộc số mà ghi rõ giao diện người dùng đồ họa."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3147264\n"
+"03132100.xhp\n"
+"par_id3153323\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+msgstr "Hàm thực thi này chỉ được cung cấp để tương thích ngược với các phiên bản cũ. Giá trị trả về không được định nghĩa trong môi trường khách-chủ."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3149670\n"
+"03132100.xhp\n"
+"hd_id3154894\n"
"4\n"
"help.text"
-msgid "DateSerial (year, month, day)"
-msgstr "DateSerial (năm, tháng, ngày)"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3150792\n"
+"03132100.xhp\n"
+"par_id3147143\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "GetGUIType()"
+msgstr "GetGUIType()"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3150398\n"
+"03132100.xhp\n"
+"hd_id3149346\n"
"6\n"
"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "Return value:"
+msgstr "GIá trị trả về:"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3154141\n"
+"03132100.xhp\n"
+"par_id3153748\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Integer"
+msgstr "Số nguyên"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3147229\n"
+"03132100.xhp\n"
+"hd_id3149177\n"
"8\n"
"help.text"
-msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
-msgstr "<emph>Year:</emph> biểu thức số nguyên mà ngụ ý một năm. Tất cả các giá trị nằm giữa 0 và 99 được đọc là năm 1900-1999. Đối với nằm ở ngoại phạm vi này, bạn cần phải nhập cả bốn chữ số."
+msgid "Return values:"
+msgstr "Giá trị trả về:"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3156280\n"
+"03132100.xhp\n"
+"par_id3147242\n"
"9\n"
"help.text"
-msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
-msgstr "<emph>Tháng:</emph> biểu thức số nguyên mà ngụ ý tháng của năm đã ghi rõ. Phạm vi hợp lệ là 1-12."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151043\n"
-"10\n"
-"help.text"
-msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
-msgstr ""
+msgid "1: Windows"
+msgstr "1: Windows"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3161832\n"
+"03132100.xhp\n"
+"par_id3156152\n"
"11\n"
"help.text"
-msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
-msgstr "<emph>Hàm DateSerial</emph> trả về số ngày nằm giữa ngày 30, tháng 12/1899 và ngày đã cho. Bạn có thể sử dụng hàm này để tính hiệu của hai ngày tháng."
+msgid "4: UNIX"
+msgstr "4: UNIX"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3155306\n"
+"03132100.xhp\n"
+"hd_id3148685\n"
"12\n"
"help.text"
-msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
-msgstr "<emph>Hàm DateSerial</emph> trả về kiểu dữ liệu Biến Thể (Variant) với VarType 7 (Ngày). Giá trị này được cất giữ nội bộ dưới dạng một giá trị Đôi (Double), do đó khi ngày tháng đã cho là 1900-01-01, giá trị đã trả về là 1. Giá trị âm tương ứng với ngày trước ngày 30, tháng 12, 1899 (không Negative values correspond to dates before December 30, 1899 (không kể cả)."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3152576\n"
-"13\n"
-"help.text"
-msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
-msgstr "Nếu bạn xác định một ngày tháng nằm ở ngoại phạm vi hợp lệ, $[officename] Basic trả về một thông điệp lỗi."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3149481\n"
-"14\n"
-"help.text"
-msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
-msgstr "Dù bạn xác định <emph>hàm DateValue</emph> dưới dạng một chuỗi chứa ngày tháng, <emph>hàm DateSerial</emph> ước tính mỗi thành phần (năm, tháng, ngày) là một biểu thức thuộc số riêng."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3155411\n"
-"15\n"
-"help.text"
msgid "Example:"
msgstr "Thí dụ :"
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3154942\n"
-"help.text"
-msgid "MsgBox lDate ' returns 23476"
-msgstr "msgbox lDate REM returns 23476"
-
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151074\n"
-"help.text"
-msgid "MsgBox sDate ' returns 04/09/1964"
-msgstr "msgbox sDate REM returns 04/09/1964"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Statement [Runtime]"
-msgstr "Câu lệnh Seek [Runtime]"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Seek statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Seek</bookmark_value>"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3159413\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Câu lệnh Seek [Runtime]\">Câu lệnh Seek [Runtime]</link>"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3153381\n"
-"2\n"
-"help.text"
-msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
-msgstr "Đặt vị trí kế tiếp để đọc/viết trong một tập tin được mở bằng câu lệnh Open."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id2100589\n"
-"help.text"
-msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
-msgstr "Đối với các tập tin truy cập ngẫu nhiên, câu lệnh Seek đặt số thứ tự của bản ghi kế tiếp sẽ được truy cập."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id5444807\n"
-"help.text"
-msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
-msgstr "Đối với các tập tin khác, câu lệnh tìm nơi Seek đặt vị trí byte ở đó thao tác sẽ xảy ra."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3156280\n"
-"5\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3145273\n"
-"7\n"
-"help.text"
-msgid "Seek[#FileNumber], Position (As Long)"
-msgstr "Seek[#FileNumber], Position (As Long)"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3154321\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3153952\n"
-"9\n"
-"help.text"
-msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
-msgstr "<emph>FileNumber:</emph> số thứ tự kênh dữ liệu được dùng trong câu lệnh Open (Mở)."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3145366\n"
-"10\n"
-"help.text"
-msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
-msgstr "<emph>Position:</emph> Vị trí ở đó sẽ tiếp tục đọc/ghi. Vị trí nằm trong khoảng từ 1 đến 2.147.483.647. Tùy theo kiểu tập tin, vị trí ngụ ý số thứ tự của bản ghi (tập tin ở chế độ ngẫu nhiên) hoặc vị trí byte (tập tin ở chế độ Nhị phân, Xuất, Phụ thêm hoặc Nhập liệu). Byte thứ nhất trong một tập tin là vị trí 1, byte thứ hai là vị trí 2, v.v."
-
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
+"03132200.xhp\n"
"tit\n"
"help.text"
-msgid "TimeValue Function [Runtime]"
-msgstr "Hàm TimeValue [Runtime]"
+msgid "ThisComponent Statement [Runtime]"
+msgstr "Câu lệnh ThisComponent [Runtime]"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"bm_id3149670\n"
+"03132200.xhp\n"
+"bm_id3155342\n"
"help.text"
-msgid "<bookmark_value>TimeValue function</bookmark_value>"
-msgstr "<bookmark_value>hàm TimeValue</bookmark_value>"
+msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+msgstr "<bookmark_value>thuộc tính ThisComponent</bookmark_value><bookmark_value>thành phần;đặt địa chỉ</bookmark_value>"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3149670\n"
+"03132200.xhp\n"
+"hd_id3155342\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Hàm TimeValue [Runtime]\">Hàm TimeValue [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"Câu lệnh ThisComponent [Runtime]\">Câu lệnh ThisComponent [Runtime]</link>"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3153361\n"
+"03132200.xhp\n"
+"par_id3154923\n"
"2\n"
"help.text"
-msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
-msgstr "Tính một giá trị thời gian dãy từ giờ, phút và giây đã ghi rõ (các tham số được gửi dạng chuỗi) mà đại diện thời gian theo một giá trị thuộc số riêng lẻ. Giá trị này có thể được dùng để tính hiệu số giữa hai thời gian."
+msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
+msgstr "Đặt địa chỉ của thành phần hoạt động để đọc và đặt các thuộc tính về nó. Câu lệnh ThisComponent được dùng từ mã Basic của tài liệu, mà nó đại diện tài liệu chứa mã Basic đó. Kiểu đối tượng được ThisComponent truy cập thì phụ thuộc vào kiểu tài liệu."
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3154138\n"
+"03132200.xhp\n"
+"hd_id3154346\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3156282\n"
+"03132200.xhp\n"
+"par_id3151056\n"
"4\n"
"help.text"
-msgid "TimeValue (Text As String)"
-msgstr "TimeValue (Text As String)"
+msgid "ThisComponent"
+msgstr "ThisComponent"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3153969\n"
+"03132200.xhp\n"
+"hd_id3154940\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156424\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3145172\n"
+"03132200.xhp\n"
+"par_id3154123\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145786\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
-msgstr "<emph>Văn bản</emph>: bất cứ biểu thức chuỗi nào mà chứa thời gian bạn muốn tính theo định dạng « GG:PP:gg »."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3152578\n"
-"9\n"
-"help.text"
-msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
-msgstr "Hãy dùng hàm <emph>TimeValue</emph> để chuyển đổi bất cứ thời gian nào sang một giá trị riêng lẻ, để tính hiệu số thời gian."
+msgid "' updates the \"Table of Contents\" in a text doc"
+msgstr "REM cập nhật Mục Lục trong một tài liệu văn bản"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3163710\n"
+"03132200.xhp\n"
+"par_id3153194\n"
"10\n"
"help.text"
-msgid "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
-msgstr "Hàm <emph> TimeValue </emph> trả về kiểu Biến thể có VarType 7 (Ngày), và cất giữ giá trị này theo một số chính xác đôi giữa 0 và 0.9999999999."
+msgid "index = allindexes.getByName(\"Table of Contents1\")"
+msgstr "index = allindexes.getByName(\"Mục Lục 1\")"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3151117\n"
+"03132200.xhp\n"
+"par_id3156422\n"
"11\n"
"help.text"
-msgid "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
-msgstr "Khác với hàm <emph>DateSerial</emph> hay <emph>DateValue</emph>, trong chúng giá trị ngày tháng dãy có kết quả là số ngày tương đối với một ngày tháng cố định, bạn có thể tính với các giá trị được hàm <emph>TimeValue</emph> trả về, nhưng vẫn không thể ước tính chúng."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3147426\n"
-"12\n"
-"help.text"
-msgid "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
-msgstr "Trong hàm <emph>TimeSerial</emph>, bạn có thể gửi mỗi tham số riêng (giờ, phút, giây) dạng một biểu thức thuộc số riêng. Đối với hàm <emph>TimeValue</emph>, tuy nhiên, bạn có thể gửi một chuỗi dạng tham số chứa thời gian."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145271\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3149378\n"
-"33\n"
-"help.text"
-msgid "a1 = \"start time\""
-msgstr "a1 = \"giờ bắt đầu\""
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145800\n"
-"34\n"
-"help.text"
-msgid "b1 = \"end time\""
-msgstr "b1 = \"giờ kết thúc\""
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151074\n"
-"35\n"
-"help.text"
-msgid "c1 = \"total time\""
-msgstr "c1 = \"tổng thời gian\""
+msgid "' use the default name for Table of Contents and a 1"
+msgstr "REM dùng tên mặc định cho Mục Lục và phụ thêm số 1"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
+"03132300.xhp\n"
"tit\n"
"help.text"
-msgid "StrComp Function [Runtime]"
-msgstr "Hàm StrComp [Runtime]"
+msgid "CreateUnoValue Function [Runtime]"
+msgstr "Hàm CreateUnoValue [Runtime]"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"bm_id3156027\n"
+"03132300.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>StrComp function</bookmark_value>"
-msgstr "<bookmark_value>hàm StrComp</bookmark_value>"
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr "<bookmark_value>hàm CreateUnoValue</bookmark_value>"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3156027\n"
+"03132300.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"Hàm StrComp [Runtime]\">Hàm StrComp [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"Hàm CreateUnoValue [Runtime]\">Hàm CreateUnoValue [Runtime]</link>"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3155805\n"
+"03132300.xhp\n"
+"par_id3147291\n"
"2\n"
"help.text"
-msgid "Compares two strings and returns an integer value that represents the result of the comparison."
-msgstr "So sánh hai chuỗi và trả về một giá trị số nguyên đại diện kết quả so sánh."
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
+msgstr "Trả về một đối tượng mà đại diện một giá trị kiểu chặt chẽ tham chiếu đến hệ thống kiểu Uno."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153345\n"
+"03132300.xhp\n"
+"par_id3143267\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+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 "Đối tượng này được tự động chuyển đổi sang bất cứ kiểu tương ứng nào khi được gửi cho Uno. Kiểu phải được ghi rõ theo tên kiểu Uno có khả năng đầy đủ."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3150503\n"
+"03132300.xhp\n"
+"par_id3153626\n"
"4\n"
"help.text"
-msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
-msgstr "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
+msgstr "Giao diện API của $[officename] thường dùng kiểu Any (bất kỳ). Nó là bộ phận tương ứng với kiểu Variant (biến thế) được biết từ các môi trường khác. Kiểu Any giữ một kiểu Uno tùy ý, và được dùng trong các giao diện Uno chung."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3147574\n"
+"03132300.xhp\n"
+"hd_id3147560\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Syntax:"
+msgstr "Cú pháp:"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
+"03132300.xhp\n"
+"par_id3154760\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) để được một dãy byte"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3150984\n"
+"03132300.xhp\n"
+"par_id3150541\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Tham số :"
+msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
+msgstr "Nếu CreateUnoValue không thể được chuyển đổi sang kiểu Uno đã ghi rõ, thì gặp lỗi. Để chuyển đổi, dùng dịch vụ TypeConverter."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3153061\n"
+"03132300.xhp\n"
+"par_id3153524\n"
"8\n"
"help.text"
-msgid "<emph>Text1:</emph> Any string expression"
-msgstr "<emph>Text1:</emph> bất cứ biểu thức chuỗi nào."
+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 "Hàm này dự định để sử dụng trong trường hợp mà cơ chế chuyển đổi kiểu Basic sang Uno mặc định không còn đủ. Đây có thể xảy ra khi bạn thử truy cập đến giao diện chung dựa vào kiểu Any (bất kỳ), v.d. « XPropertySet::setPropertyValue( Name, Value ) » hay « X???Container::insertBy???( ???, Value ) », từ $[officename] Basic. Lúc chạy, Basic không nhận ra các kiểu này vì chúng chỉ được định nghĩa trong dịch vụ tương ứng."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3147560\n"
+"03132300.xhp\n"
+"par_id3154366\n"
"9\n"
"help.text"
-msgid "<emph>Text2:</emph> Any string expression"
-msgstr "<emph>Text2:</emph> bất cứ biểu thức chuỗi nào."
+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 "Trong trường hợp kiểu này, $[officename] Basic chọn kiểu tương ứng tốt nhất với kiểu Basic cần chuyển đổi. Tuy nhiên, nếu kiểu không đúng được chọn, một lỗi sẽ xảy ra. Bạn nên sử dụng hàm CreateUnoValue() để tạo một giá trị cho kiểu Uno không rõ."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3146796\n"
+"03132300.xhp\n"
+"par_id3150769\n"
"10\n"
"help.text"
-msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
-msgstr "<emph>Compare:</emph> tham số tùy chọn này đặt phương pháp so sánh. Nếu Compare=1, thì phép so sánh chuỗi có phân biệt chữ hoa/thường. Compare=0 thì không phân biệt chữ hoa/thường."
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3154940\n"
-"13\n"
-"help.text"
-msgid "Return value"
-msgstr "Giá trị trả về"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3150358\n"
-"27\n"
-"help.text"
-msgid "If Text1 < Text2 the function returns -1"
-msgstr "Nếu Text1 < Text2 thì hàm trả về -1"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3151043\n"
-"28\n"
-"help.text"
-msgid "If Text1 = Text2 the function returns 0"
-msgstr "Nếu Text1 = Text2 thì hàm trả về 0"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3158410\n"
-"29\n"
-"help.text"
-msgid "If Text1 > Text2 the function returns 1"
-msgstr "Nếu Text1 > Text2 thì hàm trả về 1"
+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 "Bạn cũng có thể sử dụng hàm này để gửi giá trị khác Any, nhưng ứng xử này không phải khuyến khích. Nếu Basic đã biết kiểu đích, dùng hàm CreateUnoValue() sẽ chỉ dẫn tới thao tác chuyển đổi thêm nữa mà làm cho mã Basic thực hiện chậm."
-#: 03120403.xhp
+#: 03132400.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153968\n"
-"18\n"
+"03132400.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "CreateObject Function [Runtime]"
+msgstr "Hàm CreateObject [Runtime]"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"tit\n"
+"03132400.xhp\n"
+"bm_id659810\n"
"help.text"
-msgid "Len Function [Runtime]"
-msgstr "Hàm Len [Runtime]"
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
+msgstr "<bookmark_value>hàm CreateObject</bookmark_value>"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"bm_id3154136\n"
+"03132400.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "<bookmark_value>Len function</bookmark_value>"
-msgstr "<bookmark_value>hàm Len</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">hàm CreateObject [Runtime]</link>"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3154136\n"
-"1\n"
+"03132400.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Hàm Len [Runtime]\">Hàm Len [Runtime]</link>"
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Tạo một đối tượng UNO. Dưới Windows, cũng có thể tạo đối tượng OLE.</ahelp>"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3147576\n"
-"2\n"
+"03132400.xhp\n"
+"par_idN1059F\n"
"help.text"
-msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
-msgstr "Trả về số các ký tự trong một chuỗi, hoặc số các byte cần thiết để cất giữ một biến."
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr "Phương pháp này tạo thể hiện có kiểu được gửi dưới dạng tham số."
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3159177\n"
-"3\n"
+"03132400.xhp\n"
+"par_idN105A2\n"
"help.text"
msgid "Syntax:"
msgstr "Cú pháp:"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3150669\n"
-"4\n"
+"03132400.xhp\n"
+"par_idN105A6\n"
"help.text"
-msgid "Len (Text As String)"
-msgstr "Len (Text As String)"
+msgid "oObj = CreateObject( type )"
+msgstr "oObj = CreateObject( type )"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3148473\n"
-"5\n"
+"03132400.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"6\n"
+"03132500.xhp\n"
+"tit\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "GetDefaultContext Function [Runtime]"
+msgstr "Hàm GetDefaultContext [Runtime]"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3147531\n"
-"7\n"
+"03132500.xhp\n"
+"bm_id4761192\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr "<bookmark_value>hàm GetDefaultContext</bookmark_value>"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3147265\n"
-"8\n"
+"03132500.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression or a variable of another type."
-msgstr "<emph>Text:</emph> bất cứ biểu thức chuỗi nào hoặc một biến kiểu khác."
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">Hàm GetDefaultContext [Runtime]</link>"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3153360\n"
-"9\n"
+"03132500.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
+msgstr "Trả về ngữ cảnh mặc định của bộ tạo dịch vụ tiến trình, nếu có ; không thì trả về tham chiếu rỗng."
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3156214\n"
-"13\n"
+"03132500.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "MsgBox Len(sText) REM Returns 9"
-msgstr "MsgBox Len(sText) REM trả về 9"
+msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
+msgstr "Hàm lúc chạy này trả về ngữ cảnh thành phần mặc định cần dùng, nếu có khởi tạo dịch vụ thông qua XmultiServiceFactory. Xem chương <item type=\"literal\">Professional UNO</item> (UNO chuyên nghiệp) trong <item type=\"literal\">Developer's Guide</item> (Sổ tay Nhà phát triển) ở địa chỉ <link href=\"http://api.openoffice.org\">api.openoffice.org</link> để tìm thêm thông tin."
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
+"05060700.xhp\n"
"tit\n"
"help.text"
-msgid "Wait Statement [Runtime]"
-msgstr "Câu lệnh Wait [Runtime]"
+msgid "Macro"
+msgstr "Vĩ lệnh"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"bm_id3154136\n"
+"05060700.xhp\n"
+"bm_id3153894\n"
"help.text"
-msgid "<bookmark_value>Wait statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Wait</bookmark_value>"
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr "<bookmark_value>sự kiện;liên kết đến đối tượng</bookmark_value>"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3154136\n"
+"05060700.xhp\n"
+"hd_id3153894\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Câu lệnh Wait [Runtime]\">Câu lệnh Wait [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link>"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3149236\n"
+"05060700.xhp\n"
+"par_id3153748\n"
"2\n"
"help.text"
-msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
-msgstr "Gián đoạn tiến trình thực hiện chương trình được khoảng thời gian bạn ghi rõ (theo mili-giây)."
+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=\".\">Hãy chọn vĩ lệnh bạn muốn thực hiện một khi lựa chọn đồ họa, khung hay đối tượng OLE thích hợp.</ahelp> Phụ thuộc vào đối tượng được chọn, hàm này nằm hoặc trên thẻ <emph>Vĩ lệnh</emph> của hộp thoại <emph>Đối tượng</emph>, hoặc trong hộp thoại <emph>Gán vĩ lệnh</emph>."
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3143229\n"
+"05060700.xhp\n"
+"hd_id3150503\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Event"
+msgstr "Sự kiện"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3150669\n"
+"05060700.xhp\n"
+"par_id3149763\n"
"4\n"
"help.text"
-msgid "Wait millisec"
-msgstr "Wait mili-giây"
+msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_LB_EVENT\">Liệt kê các sự kiện thích hợp với những vĩ lệnh hiện thời được gán cho đối tượng đã chọn.</ahelp>"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3148943\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3150670\n"
+"23\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgstr "Bảng theo đây diễn tả những vĩ lệnh và sự kiện có thể được liên kết đến đối tượng trong tài liệu của bạn:"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3154924\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3153360\n"
+"24\n"
"help.text"
-msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
-msgstr "<emph>mili-giây:</emph> biểu thức thuộc số mà chứa khoảng thời gian (theo mili-giây) cần đợi trước khi thực hiện lại chương trình."
+msgid "Event"
+msgstr "Sự kiện"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3150541\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3154365\n"
+"25\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Event trigger"
+msgstr "Bộ kích hoạt sự kiện"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3156214\n"
-"13\n"
+"05060700.xhp\n"
+"par_id3159149\n"
+"26\n"
"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr "MsgBox \"\" & lTick & \" Nhịp\" ,0,\"Đã tạm dừng được\""
+msgid "OLE object"
+msgstr "Đối tượng OLE"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3148451\n"
+"27\n"
"help.text"
-msgid "Color Functions"
-msgstr "Hàm Màu"
+msgid "Graphics"
+msgstr "Đồ họa"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"hd_id3157896\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3125863\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Hàm Màu\">Hàm Màu</link>"
+msgid "Frame"
+msgstr "Khung"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"par_id3155555\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3154216\n"
+"29\n"
"help.text"
-msgid "This section describes Runtime functions used to define colors."
-msgstr "Phần này diễn tả các hàm lúc chạy được dùng để xác định màu sắc."
+msgid "AutoText"
+msgstr "Tốc ký"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3145785\n"
+"30\n"
"help.text"
-msgid "GetGuiType Function [Runtime]"
-msgstr "Hàm GetGuiType [Runtime]"
+msgid "ImageMap area"
+msgstr "Vùng sơ đồ ảnh"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"bm_id3147143\n"
+"05060700.xhp\n"
+"par_id3153138\n"
+"31\n"
"help.text"
-msgid "<bookmark_value>GetGuiType function</bookmark_value>"
-msgstr "<bookmark_value>hàm GetGuiType</bookmark_value>"
+msgid "Hyperlink"
+msgstr "Siêu liên kết"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3155310\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3155306\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"Hàm GetGuiType [Runtime]\">Hàm GetGuiType [Runtime]</link>"
+msgid "Click object"
+msgstr "Nhấn vào đối tượng"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3152459\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3152460\n"
+"33\n"
"help.text"
-msgid "Returns a numerical value that specifies the graphical user interface."
-msgstr "Trả về một giá trị thuộc số mà ghi rõ giao diện người dùng đồ họa."
+msgid "Object is selected."
+msgstr "Đối tượng được chọn."
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3153323\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3147348\n"
+"34\n"
"help.text"
-msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
-msgstr "Hàm thực thi này chỉ được cung cấp để tương thích ngược với các phiên bản cũ. Giá trị trả về không được định nghĩa trong môi trường khách-chủ."
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3154894\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3147426\n"
+"35\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3147143\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3153951\n"
+"36\n"
"help.text"
-msgid "GetGUIType()"
-msgstr "GetGUIType()"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3149346\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3150116\n"
+"37\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Mouse over object"
+msgstr "Chuột trên đối tượng"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3153748\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3145253\n"
+"38\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Mouse moves over the object."
+msgstr "Chuột đi ở trên đối tượng."
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3149177\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3144765\n"
+"39\n"
"help.text"
-msgid "Return values:"
-msgstr "Giá trị trả về:"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3147242\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3153418\n"
+"40\n"
"help.text"
-msgid "1: Windows"
-msgstr "1: Windows"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3156152\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3153948\n"
+"41\n"
"help.text"
-msgid "4: UNIX"
-msgstr "4: UNIX"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3148685\n"
-"12\n"
+"05060700.xhp\n"
+"par_id3145652\n"
+"42\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3155066\n"
+"43\n"
"help.text"
-msgid "Err Function [Runtime]"
-msgstr "Hàm Err [Runtime]"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"bm_id3156343\n"
+"05060700.xhp\n"
+"par_id3155446\n"
+"44\n"
"help.text"
-msgid "<bookmark_value>Err function</bookmark_value>"
-msgstr "<bookmark_value>hàm Err</bookmark_value>"
+msgid "Trigger Hyperlink"
+msgstr "Kích hoạt siêu liên kết"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3156343\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3154756\n"
+"45\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Hàm Err [Runtime]\">Hàm Err [Runtime]</link>"
+msgid "Hyperlink assigned to the object is clicked."
+msgstr "Siêu liên kết được gán cho đối tượng được nhấn vào."
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3150541\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3150042\n"
+"46\n"
"help.text"
-msgid "Returns an error code that identifies the error that occurred during program execution."
-msgstr "Trả về một mã lỗi mà nhận diện lỗi đã xảy ra trong khi thực hiện chương trình."
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3149656\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3151252\n"
+"47\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3154123\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3147344\n"
+"48\n"
"help.text"
-msgid "Err"
-msgstr "Err"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3147229\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3146920\n"
+"49\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3150869\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3159333\n"
+"50\n"
"help.text"
-msgid "Integer"
-msgstr "Số nguyên"
+msgid "Mouse leaves object"
+msgstr "Chuột rời đối tượng"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3153193\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3147003\n"
+"51\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Mouse moves off of the object."
+msgstr "Chuột đi ra đối tượng."
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3149561\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3151278\n"
+"52\n"
"help.text"
-msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
-msgstr "Hàm <emph>Err</emph> được dùng trong câu lệnh quản lý lỗi để quyết định lỗi đã xảy ra và hành động sửa chữa tương ứng."
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3147317\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3145257\n"
+"53\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
-#, fuzzy
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3147426\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3154122\n"
+"54\n"
"help.text"
-msgid "On Error Goto ErrorHandler REM Set up error handler"
-msgstr "on error goto ErrorHandler REM Thiết lập hàm quản lý lỗi"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3149481\n"
-"14\n"
+"05060700.xhp\n"
+"par_id3156139\n"
+"55\n"
"help.text"
-msgid "REM Error occurs due to non-existent file"
-msgstr "REM Lỗi xảy ra do tập tin không tồn tại"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3145646\n"
-"21\n"
+"05060700.xhp\n"
+"par_id3149036\n"
+"56\n"
"help.text"
-msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
-msgstr "MsgBox \"Lỗi \" & Err & \": \" & Error$ + chr(13) + \"Ở dòng : \" + Erl + chr(13) + Now , 16 ,\"gặp lỗi\""
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3150785\n"
+"57\n"
"help.text"
-msgid "FindObject Function [Runtime]"
-msgstr "Hàm FindObject [Runtime]"
+msgid "Graphics load successful"
+msgstr "Đồ họa đã được nạp."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"bm_id3145136\n"
+"05060700.xhp\n"
+"par_id3153705\n"
+"58\n"
"help.text"
-msgid "<bookmark_value>FindObject function</bookmark_value>"
-msgstr "<bookmark_value>hàm FindObject</bookmark_value>"
+msgid "Graphics are loaded successfully."
+msgstr "Đồ họa đã lãi được nạp thành công."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3150343\n"
+"59\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"Hàm FindObject [Runtime]\">Hàm FindObject [Runtime]</link>"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3155341\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3150202\n"
+"60\n"
"help.text"
-msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
-msgstr "Cho phép đặt địa chỉ của một đối tượng vào lúc chạy dưới dạng một tham số chuỗi qua tên đối tượng."
+msgid "Graphics load terminated"
+msgstr "Việc nạp đồ họa bị kết thúc"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150669\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3145584\n"
+"61\n"
"help.text"
-msgid "For example, the following command:"
-msgstr "Ví dụ, câu lệnh này:"
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr "Tiến trình nạp đồ họa bị người dùng dừng (v.d. trong khi tải xuống trang Web)."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3148473\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3154259\n"
+"62\n"
"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MyObj.Prop1.Command = 5"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3156023\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3155089\n"
+"63\n"
"help.text"
-msgid "corresponds to the command block:"
-msgstr "tương ứng với khối câu lệnh:"
+msgid "Graphics load faulty"
+msgstr "Việc nạp đồ họa bị lỗi"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3153896\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3153307\n"
+"64\n"
"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim ObjVar as Object"
+msgid "Graphics not successfully loaded, for example, if a graphic was not found."
+msgstr "Đồ họa không nạp được, v.d. nếu không tìm thấy."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154760\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3148840\n"
+"65\n"
"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim ObjProp as Object"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3145069\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3154533\n"
+"66\n"
"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "ObjName As String = \"Đối_tượng_tôi\""
+msgid "Input of alpha characters"
+msgstr "Nhập các ký tự alpha"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154939\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3155266\n"
+"67\n"
"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "ObjVar = FindObject( ObjName As String )"
+msgid "Text is entered from the keyboard."
+msgstr "Văn bản được gõ bằng bàn phím."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150793\n"
-"10\n"
+"05060700.xhp\n"
+"par_id3144768\n"
+"68\n"
"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "PropName As String = \"Thuộc_tính1\""
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154141\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3145659\n"
+"69\n"
"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgid "Input of non-alpha characters"
+msgstr "Nhập các ký tự khác alpha"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3156424\n"
-"12\n"
+"05060700.xhp\n"
+"par_id3151131\n"
+"70\n"
"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "ObjProp.Command = 5"
+msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgstr "Các ký tự không thể in được gõ bằng bàn phím, v.d. dấu cách tab và ký tự ngắt dòng."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3145420\n"
-"13\n"
+"05060700.xhp\n"
+"par_id3159206\n"
+"71\n"
"help.text"
-msgid "This allows names to be dynamically created at run-time. For example:"
-msgstr "Đây cho phép tên được tạo động vào lúc chạy. Chẳng hạn:"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3153104\n"
-"14\n"
+"05060700.xhp\n"
+"par_id3150405\n"
+"72\n"
"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
-msgstr "\"TextEdit1\" to TextEdit5\" theo vòng lặp để tạo năm tên điều khiển."
+msgid "Resize frame"
+msgstr "Đổi cỡ khung"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150767\n"
-"15\n"
+"05060700.xhp\n"
+"par_id3153972\n"
+"73\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-msgstr "Xem thêm: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgid "Frame is resized with the mouse."
+msgstr "Khung có kích cỡ được thay đổi bằng con chuột."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3150868\n"
-"16\n"
+"05060700.xhp\n"
+"par_id3152873\n"
+"74\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3151042\n"
-"17\n"
+"05060700.xhp\n"
+"par_id3148900\n"
+"75\n"
"help.text"
-msgid "FindObject( ObjName As String )"
-msgstr "FindObject( ObjName As String )"
+msgid "Move frame"
+msgstr "Di chuyển khung"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3159254\n"
-"18\n"
+"05060700.xhp\n"
+"par_id3154767\n"
+"76\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Frame is moved with the mouse."
+msgstr "Khung được di chuyển bằng con chuột."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150439\n"
-"19\n"
+"05060700.xhp\n"
+"par_id3155914\n"
+"77\n"
"help.text"
-msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
-msgstr "<emph>ObjName:</emph> một chuỗi mà ghi rõ tên của đối tượng có địa chỉ bạn muốn đặt vào lúc chạy."
+msgid "x"
+msgstr ""
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3153010\n"
+"78\n"
"help.text"
-msgid "Lof Function [Runtime]"
-msgstr "Hàm Lof [Runtime]"
+msgid "Before inserting AutoText"
+msgstr "Trước khi chèn tốc ký"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"bm_id3156024\n"
+"05060700.xhp\n"
+"par_id3147515\n"
+"79\n"
"help.text"
-msgid "<bookmark_value>Lof function</bookmark_value>"
-msgstr "<bookmark_value>hàm Lof</bookmark_value>"
+msgid "Before a text block is inserted."
+msgstr "Trước khi chèn một khối văn bản."
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3156024\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3151191\n"
+"80\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Hàm Lof [Runtime]\">Hàm Lof [Runtime]</link>"
+msgid "x"
+msgstr ""
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3146794\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3150956\n"
+"81\n"
"help.text"
-msgid "Returns the size of an open file in bytes."
-msgstr "Trả về kích cỡ theo byte của một tập tin còn mở."
+msgid "After inserting AutoText"
+msgstr "Sau khi chèn tốc ký"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3147502\n"
+"82\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "After a text block is inserted."
+msgstr "Sau khi chèn một khối văn bản."
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150359\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3147555\n"
+"83\n"
"help.text"
-msgid "Lof (FileNumber)"
-msgstr "Lof (FileNumber)"
+msgid "x"
+msgstr ""
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
+"05060700.xhp\n"
+"hd_id3153958\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Giá trị trả về:"
+msgid "Macros"
+msgstr "Vĩ lệnh"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3147230\n"
+"05060700.xhp\n"
+"par_id3150432\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dài"
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr "Hãy chọn vĩ lệnh bạn muốn thực hiện khi sự kiện đã chọn có xảy ra."
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
+"05060700.xhp\n"
+"par_id3147296\n"
+"84\n"
+"help.text"
+msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
+msgstr "Khung cho phép bạn liên kết sự kiện đến một hàm, để hàm đó quyết định nếu nó nên xử lý sự kiện, hay $[officename] Writer."
+
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3155587\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Category"
+msgstr "Phân loại"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150869\n"
+"05060700.xhp\n"
+"par_id3154068\n"
"8\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
-msgstr "<emph>FileNumber:</emph> bất cứ biểu thức thuộc số nào mà chứa số thứ tự tập tin được ghi rõ trong câu lệnh Open."
+msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_GROUP\">Liệt kê các tài liệu và ứng dụng kiểu $[officename] còn mở. Nhấn vào thư mục vào đó bạn muốn lưu các vĩ lệnh.</ahelp>"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3147349\n"
+"05060700.xhp\n"
+"hd_id3149744\n"
"9\n"
"help.text"
-msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
-msgstr "Để giành được chiều dài của một tập tin chưa mở, dùng hàm <emph>FileLen</emph>."
+msgid "Macro name"
+msgstr "Tên vĩ lệnh"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
+"05060700.xhp\n"
+"par_id3151391\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
-
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"13\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
+msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_MACROS\">Liệt kê các vĩ lệnh sẵn sàng. Nhấn vào vĩ lệnh bạn muốn gán cho đối tượng đã chọn.</ahelp>"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"19\n"
+"05060700.xhp\n"
+"hd_id3159260\n"
+"11\n"
"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
+msgid "Assign"
+msgstr "Gán"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"20\n"
+"05060700.xhp\n"
+"par_id3147406\n"
+"12\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with 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\">Gán vĩ lệnh đã chọn cho sự kiện đã ghi rõ.</ahelp> Các mục nhập của vĩ lệnh đã gán sẽ được đặt sau sự kiện."
-#: 03020303.xhp
-#, fuzzy
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"21\n"
+"05060700.xhp\n"
+"hd_id3150533\n"
+"15\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Remove"
+msgstr "Bỏ"
-#: 03020303.xhp
-#, fuzzy
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"22\n"
+"05060700.xhp\n"
+"par_id3166456\n"
+"16\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of 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\">Gỡ bỏ vĩ lệnh được gán cho mục đã chọn.</ahelp></variable>"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"31\n"
+"05060700.xhp\n"
+"hd_id3159126\n"
+"85\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
+msgid "Macro selection"
+msgstr "Lựa chọn vĩ lệnh"
-#: 03020303.xhp
-#, fuzzy
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"34\n"
+"05060700.xhp\n"
+"par_id3149149\n"
+"86\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+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\">Lựa chọn vĩ lệnh bạn muốn gán.</ahelp>"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
+"keys.xhp\n"
"tit\n"
"help.text"
-msgid "Call Statement [Runtime]"
-msgstr "Câu lệnh Call [Runtime]"
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr "Phím tắt trong IDE Basic"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"bm_id3154422\n"
+"keys.xhp\n"
+"bm_id3154760\n"
"help.text"
-msgid "<bookmark_value>Call statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Call</bookmark_value>"
+msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
+msgstr "<bookmark_value>bàn phím;trong IDE</bookmark_value><bookmark_value>phím tắt;IDE Basic</bookmark_value><bookmark_value>IDE;phím tắt</bookmark_value>"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3154422\n"
+"keys.xhp\n"
+"hd_id3154760\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Câu lệnh Call [Runtime]\">Câu lệnh Call [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Phím tắt trong IDE Basic\">Phím tắt trong IDE Basic</link>"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3153394\n"
+"keys.xhp\n"
+"par_id3149655\n"
"2\n"
"help.text"
-msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
-msgstr "Truyền điều khiển của chương trình sang một chương trình con, một hàm hay một thủ tục DLL."
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgstr "Trong giao diện IDE Basic, bạn có thể sử dụng những phím tắt theo đây:"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
+"keys.xhp\n"
+"par_id3154908\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Action"
+msgstr "Hành vi"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3150984\n"
+"keys.xhp\n"
+"par_id3153192\n"
"4\n"
"help.text"
-msgid "[Call] Name [Parameter]"
-msgstr "[Call] Tên [Tham_số]"
+msgid "Keyboard shortcut"
+msgstr "Phím tắt"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
+"keys.xhp\n"
+"par_id3159254\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
+msgstr "Chạy lại mã kể từ dòng đầu, hay từ điểm ngắt hiện thời, nếu chương trình vừa dừng ở đó."
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3148473\n"
+"keys.xhp\n"
+"par_id3163712\n"
"6\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
-msgstr "<emph>Tên:</emph> tên của chương trình con, hàm hay DLL bạn muốn gọi."
+msgid "F5"
+msgstr "F5"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3148946\n"
+"keys.xhp\n"
+"par_id3150010\n"
"7\n"
"help.text"
-msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
-msgstr "<emph>Tham số :</emph> các tham số cần gửi cho thủ tục. Kiểu và số các tham số thì phụ thuộc vào thủ tục đang thực hiện."
+msgid "Stop"
+msgstr "Stop"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3154216\n"
+"keys.xhp\n"
+"par_id3154319\n"
"8\n"
"help.text"
-msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
-msgstr "Một từ khoá vẫn tùy chọn khi bạn gọi một thủ tục. Nếu một hàm được thực hiện dưới dạng một biểu thức, thì các tham số phải nằm trong dấu ngoặc trong câu lệnh. Nếu một DLL được gọi, trước tiên nó phải được xác định trong <emph>Declare-Statement</emph> (câu lệnh khai báo)."
-
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Ví dụ :"
+msgid "Shift+F5"
+msgstr "Shift+F5"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"tit\n"
+"keys.xhp\n"
+"par_id3151073\n"
+"11\n"
"help.text"
-msgid "Beep Statement [Runtime]"
-msgstr "Câu lệnh Beep [Runtime]"
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
+msgstr "Bắt đầu <link href=\"text/sbasic/shared/01050100.xhp\" name=\"theo dõi\">theo dõi</link> biến dưới con trỏ."
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"bm_id3143284\n"
+"keys.xhp\n"
+"par_id3154731\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>Beep statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Beep</bookmark_value>"
+msgid "F7"
+msgstr "F7"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"hd_id3143284\n"
-"1\n"
+"keys.xhp\n"
+"par_id3148455\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Câu lệnh Beep [Runtime]\">Câu lệnh Beep [Runtime]</link>"
+msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
+msgstr "Bước đơn qua mỗi câu lệnh, bắt đầu ở dòng đầu hay ở câu lệnh vừa dừng chương trình chạy."
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"par_id3159201\n"
-"2\n"
+"keys.xhp\n"
+"par_id3150716\n"
+"14\n"
"help.text"
-msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-msgstr "Kêu bíp qua loa của máy tính. Giọng này phụ thuộc vào hệ thống: bạn không thể sửa đổi âm lượng hay cao độ."
+msgid "F8"
+msgstr "F8"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"3\n"
+"keys.xhp\n"
+"par_id3156275\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
+msgstr "Bước đơn giống như với F8, nhưng một cuộc gọi hàm được thấy chỉ là <emph>một</emph> câu lệnh."
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"par_id3147291\n"
-"4\n"
+"keys.xhp\n"
+"par_id3153764\n"
+"16\n"
"help.text"
-msgid "Beep"
-msgstr "Beep"
+msgid "Shift+F8"
+msgstr "Shift+F8"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"5\n"
+"keys.xhp\n"
+"par_id3150323\n"
+"17\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+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 "Đặt hay gỡ bỏ một <link href=\"text/sbasic/shared/01030300.xhp\" name=\"điểm ngắt\">điểm ngắt</link> ở dòng hiện tại, hoặc tất cả các điểm ngắt trong phần hiện tại."
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"tit\n"
+"keys.xhp\n"
+"par_id3147339\n"
+"18\n"
"help.text"
-msgid "DefCur Statement [Runtime]"
-msgstr "Câu lệnh DefCur [Runtime]"
+msgid "F9"
+msgstr "F9"
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"bm_id9555345\n"
+"keys.xhp\n"
+"par_id3153963\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>DefCur statement</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh DefCur</bookmark_value>"
+msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
+msgstr "Bật/tắt điểm ngắt ở dòng hiện tại, hoặc tất cả các điểm ngắt trong phần hiện tại."
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN1057D\n"
+"keys.xhp\n"
+"par_id3155175\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Câu lệnh DefCur [Runtime]</link>"
+msgid "Shift+F9"
+msgstr "Shift+F9"
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN1058D\n"
+"keys.xhp\n"
+"par_id3154702\n"
+"21\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
-msgstr "Không ghi rõ ký tự hay từ khoá mà khai báo kiểu, thì câu lệnh <emph>DefCur</emph> đặt kiểu biến mặc định, tùy theo một phạm vi chữ."
+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 "Vĩ lệnh đang chạy có thể được dừng bằng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, hay từ bên ngoài của giao diện Basic. Nếu bạn đang ở trong giao diện của Basic và vĩ lệnh ngừng tại một điểm dừng, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q sẽ ngừng việc thực thi của vĩ lệnh, nhưng điều này chỉ có thể nhận thấy rõ nếu bạn bấm tiếp F5, F8, hay Shift+F8."
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10590\n"
+"main0211.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Cú pháp:"
+msgid "Macro Toolbar"
+msgstr "Thanh công cụ Vĩ lệnh"
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10594\n"
+"main0211.xhp\n"
+"bm_id3150543\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Phạm_vi_ký_tự1[, Phạm_vi_ký_tự2[,...]]"
+msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgstr "<bookmark_value>thanh công cụ; IDE Basic</bookmark_value><bookmark_value>thanh công cụ Vĩ lệnh</bookmark_value>"
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10597\n"
+"main0211.xhp\n"
+"hd_id3150543\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Tham số :"
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Thanh công cụ Vĩ lệnh\">Thanh công cụ Vĩ lệnh</link>"
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN1059B\n"
+"main0211.xhp\n"
+"par_id3147288\n"
+"2\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Phạm_vi_ký_tự :</emph> các chữ mà ghi rõ phạm vi các biến cho chúng bạn muốn đặt kiểu dữ liệu mặc định."
+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>Thanh công cụ Vĩ lệnh</emph> chứa các chức năng để tạo, chỉnh sửa và chạy vĩ lệnh.</ahelp>"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105A2\n"
+"main0601.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> từ khoá mà xác định kiểu biến mặc định:"
+msgid "$[officename] Basic Help"
+msgstr "Trợ giúp $[officename] Basic"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105A9\n"
+"main0601.xhp\n"
+"hd_id3154232\n"
+"1\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Từ_khoá:</emph> kiểu biến mặc định"
+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=\"Trợ giúp $[officename] Basic\">Trợ giúp %PRODUCTNAME Basic</link>"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105B0\n"
+"main0601.xhp\n"
+"par_id3153894\n"
+"4\n"
"help.text"
-msgid "<emph>DefCur:</emph> Currency"
-msgstr "<emph>DefCur:</emph> tiền tệ"
+msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
+msgstr ""
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105B7\n"
+"main0601.xhp\n"
+"par_id3147226\n"
+"10\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
+msgstr ""
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105BB\n"
+"main0601.xhp\n"
+"hd_id3146957\n"
+"9\n"
"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM Xác định tiền tố cho các kiểu biến:"
+msgid "Working with %PRODUCTNAME Basic"
+msgstr "Làm việc với %PRODUCTNAME Basic"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105D9\n"
+"main0601.xhp\n"
+"hd_id3148473\n"
+"7\n"
"help.text"
-msgid "cCur=Currency REM cCur is an implicit currency variable"
-msgstr "cCur=Currency REM cCur là một biến tiền tệ ngầm"
+msgid "Help about the Help"
+msgstr "Trợ giúp về Trợ giúp"
diff --git a/source/vi/helpcontent2/source/text/sbasic/shared/01.po b/source/vi/helpcontent2/source/text/sbasic/shared/01.po
index 94ed74826c5..97d82be4485 100644
--- a/source/vi/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/vi/helpcontent2/source/text/sbasic/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-04-05 23:26+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,201 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Phụ thêm thư viện"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"bm_id3150502\n"
-"help.text"
-msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
-msgstr "<bookmark_value>thư viện; thêm</bookmark_value><bookmark_value>chèn; thư viện Basic</bookmark_value>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Phụ thêm thư viện"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3154840\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
-msgstr "<ahelp hid=\".\">Tìm thư viện Basic <item type=\"productname\">%PRODUCTNAME</item> bạn muốn thêm vào danh sách hiện thời, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "File name:"
-msgstr "Tên tập tin:"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3147102\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
-msgstr "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Gõ tên hay đường dẫn đến thư viện bạn muốn phụ thêm.</ahelp> Cũng có thể chọn thư viện trong danh sách."
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147291\n"
-"5\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147226\n"
-"7\n"
-"help.text"
-msgid "Insert as reference (read-only)"
-msgstr "Chèn dạng tham chiếu (chỉ đọc)"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3155892\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Thêm thư viện đã chọn theo định dạng tập tin chỉ đọc (không thể ghi vào hay thay đổi bằng bất cứ cách nào). Thư viện này được nạp lại mỗi lần bạn khởi chạy chương trình <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3145071\n"
-"9\n"
-"help.text"
-msgid "Replace existing libraries"
-msgstr "Thay thế thư viện đã có"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3149812\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Thay thế một thư viện cùng tên với thư viện hiện thời.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Change Password"
-msgstr "Đổi mật khẩu"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3159399\n"
-"1\n"
-"help.text"
-msgid "Change Password"
-msgstr "Đổi mật khẩu"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3150276\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
-msgstr "<ahelp hid=\"HID_PASSWORD\">Bảo vệ thư viện đã chọn bằng mật khẩu.</ahelp> Bạn có thể gõ mật khẩu mới, hoặc thay đổi mật khẩu hiện thời."
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3154285\n"
-"3\n"
-"help.text"
-msgid "Old password"
-msgstr "Mật khẩu cũ"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153665\n"
-"4\n"
-"help.text"
-msgid "Password"
-msgstr "Mật khẩu"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3155628\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Gõ mật khẩu hiện thời cho thư viện đã chọn.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153126\n"
-"6\n"
-"help.text"
-msgid "New password"
-msgstr "Mật khẩu mới"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153628\n"
-"7\n"
-"help.text"
-msgid "Password"
-msgstr "Mật khẩu"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3159413\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Gõ một mật khẩu mới cho thư viện đã chọn.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3148947\n"
-"9\n"
-"help.text"
-msgid "Confirm"
-msgstr "Xác nhận"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3149457\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Gõ lần nữa mật khẩu mới cho thư viện đã chọn.</ahelp>"
-
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -272,7 +77,6 @@ msgid "Macro from / Save macro in"
msgstr "Vĩ lệnh từ / Lưu vĩ lệnh vào"
#: 06130000.xhp
-#, fuzzy
msgctxt ""
"06130000.xhp\n"
"par_id3153190\n"
@@ -381,7 +185,6 @@ msgid "Organizer"
msgstr "Tổ chức"
#: 06130000.xhp
-#, fuzzy
msgctxt ""
"06130000.xhp\n"
"par_id3148405\n"
@@ -614,3 +417,198 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Hãy tìm thư viện Basic $[officename] bạn muốn thêm vào danh sách hiện thời, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Change Password"
+msgstr "Đổi mật khẩu"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3159399\n"
+"1\n"
+"help.text"
+msgid "Change Password"
+msgstr "Đổi mật khẩu"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3150276\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+msgstr "<ahelp hid=\"HID_PASSWORD\">Bảo vệ thư viện đã chọn bằng mật khẩu.</ahelp> Bạn có thể gõ mật khẩu mới, hoặc thay đổi mật khẩu hiện thời."
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3154285\n"
+"3\n"
+"help.text"
+msgid "Old password"
+msgstr "Mật khẩu cũ"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153665\n"
+"4\n"
+"help.text"
+msgid "Password"
+msgstr "Mật khẩu"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3155628\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Gõ mật khẩu hiện thời cho thư viện đã chọn.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153126\n"
+"6\n"
+"help.text"
+msgid "New password"
+msgstr "Mật khẩu mới"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153628\n"
+"7\n"
+"help.text"
+msgid "Password"
+msgstr "Mật khẩu"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3159413\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Gõ một mật khẩu mới cho thư viện đã chọn.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3148947\n"
+"9\n"
+"help.text"
+msgid "Confirm"
+msgstr "Xác nhận"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3149457\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Gõ lần nữa mật khẩu mới cho thư viện đã chọn.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Phụ thêm thư viện"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"bm_id3150502\n"
+"help.text"
+msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
+msgstr "<bookmark_value>thư viện; thêm</bookmark_value><bookmark_value>chèn; thư viện Basic</bookmark_value>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3150502\n"
+"1\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Phụ thêm thư viện"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3154840\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\".\">Tìm thư viện Basic <item type=\"productname\">%PRODUCTNAME</item> bạn muốn thêm vào danh sách hiện thời, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3149119\n"
+"3\n"
+"help.text"
+msgid "File name:"
+msgstr "Tên tập tin:"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3147102\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Gõ tên hay đường dẫn đến thư viện bạn muốn phụ thêm.</ahelp> Cũng có thể chọn thư viện trong danh sách."
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147291\n"
+"5\n"
+"help.text"
+msgid "Options"
+msgstr "Tùy chọn"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147226\n"
+"7\n"
+"help.text"
+msgid "Insert as reference (read-only)"
+msgstr "Chèn dạng tham chiếu (chỉ đọc)"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3155892\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Thêm thư viện đã chọn theo định dạng tập tin chỉ đọc (không thể ghi vào hay thay đổi bằng bất cứ cách nào). Thư viện này được nạp lại mỗi lần bạn khởi chạy chương trình <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3145071\n"
+"9\n"
+"help.text"
+msgid "Replace existing libraries"
+msgstr "Thay thế thư viện đã có"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3149812\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Thay thế một thư viện cùng tên với thư viện hiện thời.</ahelp>"
diff --git a/source/vi/helpcontent2/source/text/sbasic/shared/02.po b/source/vi/helpcontent2/source/text/sbasic/shared/02.po
index 1963830bbed..c14eaf9bc46 100644
--- a/source/vi/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/vi/helpcontent2/source/text/sbasic/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-04-13 00:21+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,145 +15,134 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
+"11010000.xhp\n"
"tit\n"
"help.text"
-msgid "Save Source As"
-msgstr "Lưu nguồn dạng"
+msgid "Library"
+msgstr "Thư viện"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"hd_id3149497\n"
+"11010000.xhp\n"
+"hd_id3151100\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Lưu nguồn dạng\">Lưu nguồn dạng</link>"
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Thư viện\">Thư viện</link>"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3147261\n"
-"3\n"
+"11010000.xhp\n"
+"par_id3154136\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:SaveBasicAs\">Lưu mã nguồn của vĩ lệnh Basic đã chọn.</ahelp>"
+msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
+msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Hãy chọn thư viện bạn muốn chỉnh sửa.</ahelp> Mô-đun thứ nhất của thư viện bạn chọn sẽ được hiển thị trong IDE Basic."
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3145071\n"
+"11010000.xhp\n"
+"par_id3149095\n"
"help.text"
-msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Biểu tượng</alt></image>"
+msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
+msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">Thư viện Hộp Liệt kê</alt></image>"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3151110\n"
-"2\n"
+"11010000.xhp\n"
+"par_id3147654\n"
+"3\n"
"help.text"
-msgid "Save Source As"
-msgstr "Lưu nguồn dạng"
+msgid "Library List Box"
+msgstr "Thư viện Hộp Liệt kê"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
+"11020000.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Source Text"
-msgstr "Chèn văn bản nguồn"
+msgid "Compile"
+msgstr "Biên dịch"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"hd_id3154044\n"
+"11020000.xhp\n"
+"hd_id3148983\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Chèn văn bản nguồn\">Chèn văn bản nguồn</link>"
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Biên dịch\">Biên dịch</link>"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3150702\n"
+"11020000.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
-msgstr "<ahelp hid=\".uno:LoadBasic\">Mở văn bản nguồn Basic trong cửa sổ IDE Basic.</ahelp>"
-
-#: 11140000.xhp
-msgctxt ""
-"11140000.xhp\n"
-"par_id3150445\n"
-"3\n"
-"help.text"
-msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
-msgstr "Để con trỏ vào mã ở vị trí vào đó bạn muốn chèn văn bản nguồn, sau đó nhấn vào biểu tượng <emph>Chèn văn bản nguồn</emph>. Tìm tập tin chứa văn bản nguồn Basic bạn muốn chèn, sau đó nhấn vào nút <emph>Mở</emph>."
+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\">Biên dịch vĩ lệnh Basic.</ahelp> Bạn cần phải biên dịch vĩ lệnh sau khi thay đổi, hoặc nếu vĩ lệnh dùng bước kiểu đơn hay thủ tục."
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3145136\n"
+"11020000.xhp\n"
+"par_id3156426\n"
"help.text"
-msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Biểu tượng</alt></image>"
+msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Biểu tượng</alt></image>"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3145346\n"
-"4\n"
+"11020000.xhp\n"
+"par_id3149399\n"
+"3\n"
"help.text"
-msgid "Insert source text"
-msgstr "Chèn văn bản nguồn"
+msgid "Compile"
+msgstr "Biên dịch"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
+"11030000.xhp\n"
"tit\n"
"help.text"
-msgid "Export Dialog"
-msgstr ""
+msgid "Run"
+msgstr "Chạy"
-#: 11190000.xhp
-#, fuzzy
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"hd_id3156183\n"
+"11030000.xhp\n"
+"hd_id3153255\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Chạy\">Chạy</link>"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3152363\n"
+"11030000.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:RunBasic\">Chạy vĩ lệnh thứ nhất của mô-đun hiện thời.</ahelp>"
-#: 11190000.xhp
-#, fuzzy
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3143267\n"
+"11030000.xhp\n"
+"par_id3156410\n"
"help.text"
-msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Biểu tượng</alt></image>"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3145383\n"
+"11030000.xhp\n"
+"par_id3154750\n"
"3\n"
"help.text"
-msgid "Export Dialog"
-msgstr ""
+msgid "Run"
+msgstr "Chạy"
#: 11040000.xhp
msgctxt ""
@@ -190,7 +179,6 @@ msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><sw
msgstr "<ahelp hid=\".uno:BasicStop\">Không chạy vĩ lệnh hiện thời.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> Cũng có thể bấm tổ hợp phím Shift+Ctrl+Q.</defaultinline></switchinline>"
#: 11040000.xhp
-#, fuzzy
msgctxt ""
"11040000.xhp\n"
"par_id3146797\n"
@@ -207,6 +195,311 @@ msgctxt ""
msgid "Stop"
msgstr "Dừng"
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Single Step"
+msgstr "Bước đơn"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"hd_id3155934\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Bước đơn\">Bước đơn</link>"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3146117\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepInto\">Chạy vĩ lệnh và dừng nó sau lệnh kế tiếp.</ahelp>"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3152801\n"
+"4\n"
+"help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "Bạn có thể sử dụng lệnh này cùng với lệnh <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Theo dõi</link> để gỡ lỗi."
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3157958\n"
+"help.text"
+msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Biểu tượng</alt></image>"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3147573\n"
+"3\n"
+"help.text"
+msgid "Single Step"
+msgstr "Bước đơn"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3149235\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Hàm bước thủ tục\">Hàm bước thủ tục</link>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Bước thủ tục"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"hd_id3148520\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Bước thủ tục\">Bước thủ tục</link>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3152363\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOver\">Chạy vĩ lệnh và dừng nó sau thủ tục kế tiếp.</ahelp>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153394\n"
+"4\n"
+"help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "Bạn có thể sử dụng lệnh này cùng với lệnh <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Theo dõi</link> để gỡ lỗi."
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3147576\n"
+"help.text"
+msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Biểu tượng</alt></image>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3154307\n"
+"3\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Bước thủ tục"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153562\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Hàm bước đơn\">Hàm bước đơn</link>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Điểm ngắt"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"hd_id3154863\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Điểm ngắt\">Điểm ngắt</link>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3155364\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Chèn một điểm ngắt vào dòng chương trình.</ahelp>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149346\n"
+"4\n"
+"help.text"
+msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
+msgstr "Điểm ngắt được chèn vào vị trí của con trỏ. Hãy dùng điểm ngắt để gián đoạn chương trình đúng trước khi lỗi xảy ra. Vậy bạn có thể gỡ lỗi chương trình bằng cách chạy nó trong chế độ <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Bước đơn\">Bước đơn</link> đến khi lỗi xảy ra. Cũng có thể sử dụng biểu tượng <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Theo dõi</link> để kiểm tra nội dung của các biến liên quan."
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3156346\n"
+"help.text"
+msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Biểu tượng</alt></image>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149416\n"
+"3\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Điểm ngắt"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Bật theo dõi"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"hd_id3154863\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Bật theo dõi\">Bật theo dõi</link>"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3093440\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddWatch\">Nhấn vào biểu tượng này để xem các biến trong vĩ lệnh. Nội dung của biến được hiển thị trong cửa sổ riêng.</ahelp>"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3147399\n"
+"6\n"
+"help.text"
+msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
+msgstr "Nhấn vào tên biến để chọn nó, sau đó nhấn vào biểu tượng <emph>Bật theo dõi</emph>. Giá trị được gán cho biến được hiển thị bên cạnh tên nó. Giá trị này được cập nhật liên tục."
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3155892\n"
+"help.text"
+msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Biểu tượng</alt></image>"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3150276\n"
+"3\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Bật theo dõi"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3159158\n"
+"4\n"
+"help.text"
+msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
+msgstr "Để dòng theo dõi biến, chọn biến đó trong cửa sổ Theo dõi, sau đó nhấn vào biểu tượng <emph>Bỏ theo dõi</emph>."
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Phân loại Đối tượng"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3153255\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Phân loại Đối tượng\">Phân loại Đối tượng</link>"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3151384\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> pane, where you can view Basic objects.</ahelp>"
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3147576\n"
+"15\n"
+"help.text"
+msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Double click the name of a module or dialog to load and display that module or dialog."
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Biểu tượng</alt></image>"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3154515\n"
+"3\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Phân loại Đối tượng"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3146794\n"
+"13\n"
+"help.text"
+msgid "Window Area"
+msgstr "Vùng Cửa sổ"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3149655\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double click its name.</ahelp>"
+msgstr ""
+
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -250,48 +543,48 @@ msgctxt ""
msgid "Macros"
msgstr "Vĩ lệnh"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
+"11110000.xhp\n"
"tit\n"
"help.text"
-msgid "Step Out"
-msgstr "Bước ra"
+msgid "Modules"
+msgstr "Mô-đun"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"hd_id3148983\n"
+"11110000.xhp\n"
+"hd_id3148520\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Bước ra\">Bước ra</link>"
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Mô-đun\">Mô-đun</link>"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3157898\n"
+"11110000.xhp\n"
+"par_id3156414\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Nhảy về hàm trước trong vĩ lệnh hiện thời.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Nhấn vào đây để mở hộp thoại <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Tổ chức Vĩ lệnh</emph></link>.</ahelp>"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3156410\n"
+"11110000.xhp\n"
+"par_id3157958\n"
"help.text"
-msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Biểu tượng</alt></image>"
+msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Biểu tượng</alt></image>"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3158421\n"
+"11110000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Step Out"
-msgstr "Bước ra"
+msgid "Modules"
+msgstr "Mô-đun"
#: 11120000.xhp
msgctxt ""
@@ -336,309 +629,329 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Tìm dấu ngoặc"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
+"11140000.xhp\n"
"tit\n"
"help.text"
-msgid "Modules"
-msgstr "Mô-đun"
+msgid "Insert Source Text"
+msgstr "Chèn văn bản nguồn"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"hd_id3148520\n"
+"11140000.xhp\n"
+"hd_id3154044\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Mô-đun\">Mô-đun</link>"
+msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Chèn văn bản nguồn\">Chèn văn bản nguồn</link>"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3156414\n"
+"11140000.xhp\n"
+"par_id3150702\n"
"2\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Nhấn vào đây để mở hộp thoại <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Tổ chức Vĩ lệnh</emph></link>.</ahelp>"
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+msgstr "<ahelp hid=\".uno:LoadBasic\">Mở văn bản nguồn Basic trong cửa sổ IDE Basic.</ahelp>"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3157958\n"
+"11140000.xhp\n"
+"par_id3150445\n"
+"3\n"
"help.text"
-msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Biểu tượng</alt></image>"
+msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
+msgstr "Để con trỏ vào mã ở vị trí vào đó bạn muốn chèn văn bản nguồn, sau đó nhấn vào biểu tượng <emph>Chèn văn bản nguồn</emph>. Tìm tập tin chứa văn bản nguồn Basic bạn muốn chèn, sau đó nhấn vào nút <emph>Mở</emph>."
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3145383\n"
-"3\n"
+"11140000.xhp\n"
+"par_id3145136\n"
"help.text"
-msgid "Modules"
-msgstr "Mô-đun"
+msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Biểu tượng</alt></image>"
-#: 11060000.xhp
+#: 11140000.xhp
msgctxt ""
-"11060000.xhp\n"
+"11140000.xhp\n"
+"par_id3145346\n"
+"4\n"
+"help.text"
+msgid "Insert source text"
+msgstr "Chèn văn bản nguồn"
+
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
"tit\n"
"help.text"
-msgid "Procedure Step"
-msgstr "Bước thủ tục"
+msgid "Save Source As"
+msgstr "Lưu nguồn dạng"
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"hd_id3148520\n"
+"11150000.xhp\n"
+"hd_id3149497\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Bước thủ tục\">Bước thủ tục</link>"
+msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Lưu nguồn dạng\">Lưu nguồn dạng</link>"
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3152363\n"
+"11150000.xhp\n"
+"par_id3147261\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveBasicAs\">Lưu mã nguồn của vĩ lệnh Basic đã chọn.</ahelp>"
+
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"par_id3145071\n"
+"help.text"
+msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Biểu tượng</alt></image>"
+
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"par_id3151110\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepOver\">Chạy vĩ lệnh và dừng nó sau thủ tục kế tiếp.</ahelp>"
+msgid "Save Source As"
+msgstr "Lưu nguồn dạng"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3153394\n"
-"4\n"
+"11160000.xhp\n"
+"tit\n"
"help.text"
-msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
-msgstr "Bạn có thể sử dụng lệnh này cùng với lệnh <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Theo dõi</link> để gỡ lỗi."
+msgid "Step Out"
+msgstr "Bước ra"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3147576\n"
+"11160000.xhp\n"
+"hd_id3148983\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
-msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Bước ra\">Bước ra</link>"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3154307\n"
-"3\n"
+"11160000.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "Procedure Step"
-msgstr "Bước thủ tục"
+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\">Nhảy về hàm trước trong vĩ lệnh hiện thời.</ahelp>"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3153562\n"
-"6\n"
+"11160000.xhp\n"
+"par_id3156410\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Hàm bước đơn\">Hàm bước đơn</link>"
+msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Biểu tượng</alt></image>"
-#: 11090000.xhp
+#: 11160000.xhp
msgctxt ""
-"11090000.xhp\n"
-"tit\n"
+"11160000.xhp\n"
+"par_id3158421\n"
+"3\n"
"help.text"
-msgid "Object Catalog"
-msgstr "Phân loại Đối tượng"
+msgid "Step Out"
+msgstr "Bước ra"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3153255\n"
-"1\n"
+"11170000.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Phân loại Đối tượng\">Phân loại Đối tượng</link>"
+msgid "Manage Breakpoints"
+msgstr "Quản lý Điểm ngắt"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3151384\n"
-"2\n"
+"11170000.xhp\n"
+"hd_id3156183\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialog, where you can view Basic objects.</ahelp>"
-msgstr "<ahelp hid=\".uno:ObjectCatalog\">Mở hộp thoại <emph>Đối tượng</emph>, trong đó bạn có thể xem các đối tượng Basic.</ahelp>"
+msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Quản lý Điểm ngắt\">Quản lý Điểm ngắt</link>"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3147576\n"
-"15\n"
+"11170000.xhp\n"
+"par_id3152363\n"
+"2\n"
"help.text"
-msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Click the name of a module or dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
-msgstr "Nhấn đôi vào tên của hàm hay lời thay thế (sub) để nạp mô-đun chứa nó, và để định vị con trỏ. Nhấn vào tên của mô-đun hay hộp thoại, sau đó nhấn vào biểu tượng <emph>Hiện</emph> để nạp và hiển thị mô-đun/hộp thoại đó."
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại để quản lý các điểm ngắt.</ahelp>"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3148538\n"
+"11170000.xhp\n"
+"par_id3143267\n"
"help.text"
-msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Biểu tượng</alt></image>"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3154515\n"
+"11170000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Object Catalog"
-msgstr "Phân loại Đối tượng"
+msgid "Manage Breakpoints"
+msgstr "Quản lý Điểm ngắt"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3155388\n"
+"11170000.xhp\n"
+"par_id3154897\n"
"4\n"
"help.text"
-msgid "Show"
-msgstr "Hiện"
+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=\"Hộp thoại Quản lý Điểm ngắt\">Hộp thoại <emph>Quản lý Điểm ngắt</emph></link>"
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3155630\n"
-"5\n"
+"11180000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialog of a selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Hiển thị văn bản nguồn hay hộp thoại của đối tượng đã chọn.</ahelp>"
+msgid "Import Dialog"
+msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3153126\n"
+"11180000.xhp\n"
+"hd_id3156183\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Chạy\">Chạy</link>"
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3147560\n"
-"6\n"
+"11180000.xhp\n"
+"par_id3152363\n"
+"2\n"
"help.text"
-msgid "Show"
-msgstr "Hiện"
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3146794\n"
-"13\n"
+"11180000.xhp\n"
+"par_id0929200903505211\n"
"help.text"
-msgid "Window Area"
-msgstr "Vùng Cửa sổ"
+msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
+msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3149655\n"
-"14\n"
+"11180000.xhp\n"
+"par_id0929200903505360\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double-click its name or select the name and click the <emph>Show</emph> icon.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Hiển thị ô xem phân cấp các thư viện vĩ lệnh, mô-đun và thư viện $[officename] hiện thời. Để hiển thị nội dung của mục trong cửa sổ, nhấn đôi vào tên nó hay chọn tên rồi nhấn vào biểu tượng <emph>Hiện</emph>.</ahelp>"
+msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
+msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"tit\n"
+"11180000.xhp\n"
+"par_id0929200903505320\n"
"help.text"
-msgid "Breakpoint"
-msgstr "Điểm ngắt"
+msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
+msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"hd_id3154863\n"
-"1\n"
+"11180000.xhp\n"
+"par_id0929200903505383\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Điểm ngắt\">Điểm ngắt</link>"
+msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
+msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3155364\n"
-"2\n"
+"11180000.xhp\n"
+"par_id0929200903505340\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
-msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Chèn một điểm ngắt vào dòng chương trình.</ahelp>"
+msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
+msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3149346\n"
-"4\n"
+"11180000.xhp\n"
+"par_id0929200903505367\n"
"help.text"
-msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
-msgstr "Điểm ngắt được chèn vào vị trí của con trỏ. Hãy dùng điểm ngắt để gián đoạn chương trình đúng trước khi lỗi xảy ra. Vậy bạn có thể gỡ lỗi chương trình bằng cách chạy nó trong chế độ <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Bước đơn\">Bước đơn</link> đến khi lỗi xảy ra. Cũng có thể sử dụng biểu tượng <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Theo dõi</link> để kiểm tra nội dung của các biến liên quan."
+msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
+msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3156346\n"
+"11180000.xhp\n"
+"par_id3143267\n"
"help.text"
-msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Biểu tượng</alt></image>"
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3149416\n"
+"11180000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Breakpoint"
-msgstr "Điểm ngắt"
+msgid "Import Dialog"
+msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
+"11190000.xhp\n"
"tit\n"
"help.text"
-msgid "Compile"
-msgstr "Biên dịch"
+msgid "Export Dialog"
+msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"hd_id3148983\n"
+"11190000.xhp\n"
+"hd_id3156183\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Biên dịch\">Biên dịch</link>"
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Chạy\">Chạy</link>"
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3159201\n"
+"11190000.xhp\n"
+"par_id3152363\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
-msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Biên dịch vĩ lệnh Basic.</ahelp> Bạn cần phải biên dịch vĩ lệnh sau khi thay đổi, hoặc nếu vĩ lệnh dùng bước kiểu đơn hay thủ tục."
+msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
+msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3156426\n"
+"11190000.xhp\n"
+"par_id3143267\n"
"help.text"
-msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Biểu tượng</alt></image>"
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3149399\n"
+"11190000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Compile"
-msgstr "Biên dịch"
+msgid "Export Dialog"
+msgstr ""
#: 20000000.xhp
msgctxt ""
@@ -1407,356 +1720,3 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
msgstr "<ahelp hid=\".\">Thêm một điều khiển cây mà có thể hiển thị danh sách phân cấp. Bạn có thể điền vào danh sách qua chương trình, dùng cuộc gọi API (XtreeControl).</ahelp>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Library"
-msgstr "Thư viện"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"hd_id3151100\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Thư viện\">Thư viện</link>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3154136\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
-msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Hãy chọn thư viện bạn muốn chỉnh sửa.</ahelp> Mô-đun thứ nhất của thư viện bạn chọn sẽ được hiển thị trong IDE Basic."
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3149095\n"
-"help.text"
-msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
-msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">Thư viện Hộp Liệt kê</alt></image>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3147654\n"
-"3\n"
-"help.text"
-msgid "Library List Box"
-msgstr "Thư viện Hộp Liệt kê"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Import Dialog"
-msgstr ""
-
-#: 11180000.xhp
-#, fuzzy
-msgctxt ""
-"11180000.xhp\n"
-"hd_id3156183\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Chạy\">Chạy</link>"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id3152363\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505211\n"
-"help.text"
-msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505360\n"
-"help.text"
-msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505320\n"
-"help.text"
-msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505383\n"
-"help.text"
-msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505340\n"
-"help.text"
-msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505367\n"
-"help.text"
-msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
-msgstr ""
-
-#: 11180000.xhp
-#, fuzzy
-msgctxt ""
-"11180000.xhp\n"
-"par_id3143267\n"
-"help.text"
-msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Biểu tượng</alt></image>"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Import Dialog"
-msgstr ""
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Single Step"
-msgstr "Bước đơn"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"hd_id3155934\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Bước đơn\">Bước đơn</link>"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3146117\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepInto\">Chạy vĩ lệnh và dừng nó sau lệnh kế tiếp.</ahelp>"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3152801\n"
-"4\n"
-"help.text"
-msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
-msgstr "Bạn có thể sử dụng lệnh này cùng với lệnh <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Theo dõi</link> để gỡ lỗi."
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3157958\n"
-"help.text"
-msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Biểu tượng</alt></image>"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3147573\n"
-"3\n"
-"help.text"
-msgid "Single Step"
-msgstr "Bước đơn"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3149235\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Hàm bước thủ tục\">Hàm bước thủ tục</link>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run"
-msgstr "Chạy"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"hd_id3153255\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Chạy\">Chạy</link>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
-msgstr "<ahelp hid=\".uno:RunBasic\">Chạy vĩ lệnh thứ nhất của mô-đun hiện thời.</ahelp>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3156410\n"
-"help.text"
-msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Biểu tượng</alt></image>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3154750\n"
-"3\n"
-"help.text"
-msgid "Run"
-msgstr "Chạy"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Bật theo dõi"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"hd_id3154863\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Bật theo dõi\">Bật theo dõi</link>"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3093440\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
-msgstr "<ahelp hid=\".uno:AddWatch\">Nhấn vào biểu tượng này để xem các biến trong vĩ lệnh. Nội dung của biến được hiển thị trong cửa sổ riêng.</ahelp>"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3147399\n"
-"6\n"
-"help.text"
-msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
-msgstr "Nhấn vào tên biến để chọn nó, sau đó nhấn vào biểu tượng <emph>Bật theo dõi</emph>. Giá trị được gán cho biến được hiển thị bên cạnh tên nó. Giá trị này được cập nhật liên tục."
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3155892\n"
-"help.text"
-msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Biểu tượng</alt></image>"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3150276\n"
-"3\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Bật theo dõi"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3159158\n"
-"4\n"
-"help.text"
-msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
-msgstr "Để dòng theo dõi biến, chọn biến đó trong cửa sổ Theo dõi, sau đó nhấn vào biểu tượng <emph>Bỏ theo dõi</emph>."
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Quản lý Điểm ngắt"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"hd_id3156183\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Quản lý Điểm ngắt\">Quản lý Điểm ngắt</link>"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3152363\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại để quản lý các điểm ngắt.</ahelp>"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3143267\n"
-"help.text"
-msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Biểu tượng</alt></image>"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Quản lý Điểm ngắt"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3154897\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Hộp thoại Quản lý Điểm ngắt\">Hộp thoại <emph>Quản lý Điểm ngắt</emph></link>"
diff --git a/source/vi/helpcontent2/source/text/scalc.po b/source/vi/helpcontent2/source/text/scalc.po
index 76bc54c866b..e2a256ede48 100644
--- a/source/vi/helpcontent2/source/text/scalc.po
+++ b/source/vi/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,573 +15,313 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"tit\n"
-"help.text"
-msgid "Status Bar"
-msgstr "Thanh trạng thái"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id3151385\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Thanh trạng thái\">Thanh trạng thái</link>"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id3149669\n"
-"2\n"
-"help.text"
-msgid "The <emph>Status Bar</emph> displays information about the current sheet."
-msgstr "<emph>Thanh trạng thái</emph> hiển thị thông tin về bảng tính hiện có."
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id0821200911024321\n"
-"help.text"
-msgid "Digital Signature"
-msgstr "Chữ kí số"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id0821200911024344\n"
-"help.text"
-msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
-msgstr "Cũng xem <link href=\"text/shared/guide/digital_signatures.xhp\">Các chữ kí số</link>."
-
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
+"main0000.xhp\n"
"tit\n"
"help.text"
-msgid "Data"
-msgstr "Dữ liệu"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Chào mừng dùng Trợ giúp của $[officename] Calc"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153254\n"
+"main0000.xhp\n"
+"hd_id3147338\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
-msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Dữ liệu\">Dữ liệu</link>"
-
-#: main0112.xhp
-#, fuzzy
-msgctxt ""
-"main0112.xhp\n"
-"par_id3147264\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
-msgstr "<ahelp hid=\".\">Dùng những câu lệnh nằm trong trình đơn <emph>Dữ liệu </emph> để chỉnh sửa dữ liệu của bảng tính hiện tại. Cũng có thể xác định phạm vi, sắp xếp và lọc dữ liệu, tính kết quả, phác thảo dữ liệu, và mở DataPilot.</ahelp>"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Chào mừng dùng Trợ giúp của $[officename] Calc"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3150400\n"
+"main0000.xhp\n"
+"hd_id3153965\n"
"3\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
-msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Xác định phạm vị\">Xác định phạm vị</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
-msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Chọn phạm vị\">Chọn phạm vị</link>"
+msgid "How to Work With $[officename] Calc"
+msgstr "Làm việc với $[officename] Calc như thế nào"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153726\n"
+"main0000.xhp\n"
+"par_id3147004\n"
"5\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
-msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sắp xếp\">Sắp xếp</link>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Dánh sách hàm theo phân loại\">Danh sách hàm theo phân loại</link>"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153142\n"
+"main0000.xhp\n"
+"hd_id3154659\n"
"6\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
-msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Tổng phụ\">Tổng phụ</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3151073\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
-msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Độ hợp lệ\">Độ hợp lệ</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3145254\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
-msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Đa thao tác\">Đa thao tác</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id1387066\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Văn bản sang Cột</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3150717\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
-msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Kết hợp\">Kết hợp</link>"
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "Trình đơn, thanh công cụ và phím của $[officename] Calc"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3154754\n"
-"9\n"
+"main0000.xhp\n"
+"hd_id3150883\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
-msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Cập nhật phạm vị\">Cập nhật phạm vị</link>"
+msgid "Help about the Help"
+msgstr "Cách dùng phần Trợ giúp"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
+"main0100.xhp\n"
"tit\n"
"help.text"
-msgid "Tools"
-msgstr "Công cụ"
+msgid "Menus"
+msgstr "Trình đơn"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3150769\n"
+"main0100.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Công cụ\">Công cụ</link>"
+msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Trình đơn\">Trình đơn</link></variable>"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
-"par_id3150440\n"
+"main0100.xhp\n"
+"par_id3154760\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
-msgstr "<ahelp hid=\".\">Trình đơn <emph>Công cụ</emph> chứa các câu lệnh để kiểm tra chính tả, tìm thấy dấu vết của tham chiếu tới bảng tính, tìm lỗi và xác định kịch bản.</ahelp>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
-msgstr "Bạn cũng có khả năng tạo và gán vĩ lệnh, cấu hình hình thức và cảm nhận của các thanh công cụ, trình đơn, bàn phím, và đặt các tùy chọn mặc định cho mỗi ứng dụng $[officename]."
-
-#: 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=\"Tìm mục đích\">Tìm mục đích</link>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3155768\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
-msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Kịch bản\">Kịch bản</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=\"Tự động sửa lỗi\">Tùy chọn cho sửa lỗi tự động</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=\"Tùy biến\">Tùy biến</link>"
+msgid "The following menu commands are available for spreadsheets."
+msgstr "Những lệnh trình đơn này khả dụng cho bảng tính."
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
+"main0101.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] Calc Features"
-msgstr "Tính năng $[officename] Calc"
+msgid "File"
+msgstr "Tập tin"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154758\n"
+"main0101.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"Tính năng $[officename] Calc\">Tính năng $[officename] Calc</link></variable>"
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Tập tin\">Tập tin</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149457\n"
+"main0101.xhp\n"
+"par_id3151112\n"
"2\n"
"help.text"
-msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
-msgstr "$[officename] Calc là một ứng dụng bảng tính cho bạn có thể sử dụng để tính, phân tích và quản lý dữ liệu. Cũng có khả năng nhập khẩu và sửa đổi bảng tính kiểu MS Excel."
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgstr "<ahelp hid=\".\">Các lệnh này áp dụng cho tài liệu hiện tại, mở một tài liệu mới, hoặc đóng ứng dụng này.</ahelp>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148797\n"
+"main0101.xhp\n"
+"hd_id3154684\n"
"4\n"
"help.text"
-msgid "Calculations"
-msgstr "Phép tính"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Mở\">Mở</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3145172\n"
+"main0101.xhp\n"
+"hd_id3147434\n"
"5\n"
"help.text"
-msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
-msgstr "$[officename] Calc có sẵn nhiều <link href=\"text/scalc/01/04060100.xhp\" name=\"hàm\">hàm</link>, gồm các hàm kiểu thống kê và ngân hàng, mà bạn có thể sử dụng để thực hiện phép tính phức tạp với dữ liệu."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3145271\n"
-"6\n"
-"help.text"
-msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
-msgstr "Bạn có thể dùng liên kết <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Trợ lý hàm</link> để giúp đỡ bạn tạo hàm riêng."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3152596\n"
-"13\n"
-"help.text"
-msgid "What-If Calculations"
-msgstr "Phép tính « Nếu-thì »"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Lưu dạng\">Lưu dạng</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3156444\n"
-"14\n"
+"main0101.xhp\n"
+"hd_id3147396\n"
+"11\n"
"help.text"
-msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
-msgstr "Một tính năng hữu ích là khả năng xem ngay tức khắc kết quả của thay đổi được làm với một đoạn hàm chứa vài đoạn khác nhau. Chẳng hạn, bạn có thể xem kết quả khi thay đổi chu kỳ trong phép khoản vay có tác động lãi xuất hay số lượng trả lại. Hơn nữa, bạn có thể quản lý bảng lớn bằng cách sử dụng những kịch bản định sẵn khác nhau."
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Phiên bản\">Phiên bản</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148576\n"
+"main0101.xhp\n"
+"hd_id3149400\n"
"7\n"
"help.text"
-msgid "Database Functions"
-msgstr "Chức năng cơ sở dữ liệu"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154011\n"
-"8\n"
-"help.text"
-msgid "Use spreadsheets to arrange, store, and filter your data."
-msgstr "Dùng bảng tính để sắp xếp, cất giữ, và lọc dữ liệu."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154942\n"
-"25\n"
-"help.text"
-msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
-msgstr "$[officename] Calc cho bạn có khả năng kéo thả bảng từ cơ sở dữ liệu, hoặc dùng bảng tính như là nguồn dữ liệu để tạo thư mẫu trong $[officename] Writer."
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Thuộc tính\">Thuộc tính</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3145800\n"
+"main0101.xhp\n"
+"hd_id3155445\n"
"9\n"
"help.text"
-msgid "Arranging Data"
-msgstr "Sắp xếp dữ liệu"
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"In\">In</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3154490\n"
+"main0101.xhp\n"
+"hd_id3147339\n"
"10\n"
"help.text"
-msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
-msgstr "Vài cú nhấn chuột có thể sắp xếp lại bảng tính để hiển thị hay ẩn phạm vị dữ liệu khác nhau, hoặc định dạng phạm vị tùy theo điều kiện đặc biệt, hoặc tính nhanh tổng phụ và số tổng."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3155601\n"
-"16\n"
-"help.text"
-msgid "Dynamic Charts"
-msgstr "Đồ thị động"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3149121\n"
-"17\n"
-"help.text"
-msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
-msgstr "$[officename] Calc cho bạn có khả năng hiển thị dữ liệu bảng tính dùng đồ thị động sẽ tự động cập nhật khi dữ liệu thay đổi."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3153707\n"
-"18\n"
-"help.text"
-msgid "Opening and Saving Microsoft Files"
-msgstr "Mở và lưu tập tin Microsoft"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3157867\n"
-"19\n"
-"help.text"
-msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
-msgstr "Dùng những bộ lọc $[officename] để chuyển đổi tập tin Excel, hoặc mở và lưu theo nhiều <link href=\"text/shared/00/00000020.xhp\" name=\"định dạng\">định dạng</link> khác nhau."
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Thiết lập máy in\">Thiết lập máy in</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
+"main0102.xhp\n"
"tit\n"
"help.text"
-msgid "Text Formatting Bar"
-msgstr "Thanh định dạng văn bản"
+msgid "Edit"
+msgstr "Sửa"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3156330\n"
+"main0102.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
-msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Thanh định dạng văn bản\">Thanh định dạng văn bản</link>"
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Sửa\">Sửa</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"par_id3151112\n"
+"main0102.xhp\n"
+"par_id3154758\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">Thanh <emph>Định dạng văn bản</emph> được hiển thị khi con trỏ bên trong đối tượng văn bản, như khung văn bản hay đối tượng vẽ. Nó chứa các lệnh định dạng và canh lề.</ahelp>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3148575\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Màu phông\">Màu phông</link>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3154944\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Giãn cách dòng: 1\">Giãn cách dòng: 1</link>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3146969\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Giãn cách dòng: 1.5\">Giãn cách dòng: 1.5</link>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3153711\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Giãn cách dòng: 2\">Giãn cách dòng: 2</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">Trình đơn này chứa các lệnh để chỉnh sửa nội dung của tài liệu hiện tại.</ahelp>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3147345\n"
-"11\n"
+"main0102.xhp\n"
+"hd_id3146119\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề trái\">Canh bên trái</link>"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Dán đặc biệt\">Dán đặc biệt</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155337\n"
+"main0102.xhp\n"
+"hd_id3153728\n"
"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"ở Giữa\">Canh giữa</link>"
+msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
+msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"So sánh tài liệu\">So sánh tài liệu</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3147001\n"
-"13\n"
+"main0102.xhp\n"
+"hd_id3154492\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề phải\">Canh bên phải</link>"
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Tìm và thay thế\">Tìm và thay thế</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155115\n"
-"14\n"
+"main0102.xhp\n"
+"hd_id3150715\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh đều\">Canh đều</link>"
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Đầu/chân trang\">Đầu & chân trang</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3150202\n"
-"15\n"
+"main0102.xhp\n"
+"hd_id3149018\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Chỉ số Trên\">Chỉ số trên</link>"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Xoá nội dung\">Xoá nội dung</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155531\n"
-"16\n"
+"main0102.xhp\n"
+"hd_id3156384\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Chỉ số dưới\">Chỉ số dưới</link>"
+msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
+msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Xoá ô\">Xoá ô</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3145387\n"
-"17\n"
+"main0102.xhp\n"
+"hd_id3146919\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Ký tự\">Ký tự</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Liên kết\">Liên kết</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3153067\n"
-"18\n"
+"main0102.xhp\n"
+"hd_id3148488\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Đoạn văn\">Đoạn văn</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Sơ đồ ảnh\">Sơ đồ ảnh</link>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
+"main0103.xhp\n"
"tit\n"
"help.text"
-msgid "Drawing Object Properties Bar"
-msgstr "Thanh thuộc tính đối tượng vẽ"
+msgid "View"
+msgstr "Xem"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3154346\n"
+"main0103.xhp\n"
+"hd_id3151112\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
-msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Thanh thuộc tính đối tượng vẽ\">Thanh thuộc tính đối tượng vẽ</link>"
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Xem\">Xem</link>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"par_id3149656\n"
+"main0103.xhp\n"
+"par_id3149456\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">Thanh <emph>Thuộc tính đối tượng vẽ</emph> chứa các lệnh định dạng và canh lề cho những đối tượng bạn chọn trong trang tính.</ahelp>"
-
-#: main0203.xhp
-msgctxt ""
-"main0203.xhp\n"
-"hd_id3145748\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Kiểu đường\">Kiểu đường</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Trình đơn này chứa các lệnh để điều khiển cách hiển thị tài liệu trên màn hình.</ahelp>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3151073\n"
-"4\n"
+"main0103.xhp\n"
+"par_idN105AB\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Bề rộng dòng\">Bề rộng đường</link>"
+msgid "Normal"
+msgstr "Chuẩn"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3153417\n"
-"5\n"
+"main0103.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Màu dòng\">Màu đường</link>"
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị chế độ Xem chuẩn của bảng tính.</ahelp>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3147338\n"
-"6\n"
+"main0103.xhp\n"
+"hd_id3125863\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Màu nền\">Màu nền</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Thu/Phóng\">Thu/Phóng</link>"
#: main0104.xhp
msgctxt ""
@@ -698,89 +438,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Khung nổi\">Khung nổi</link>"
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tools Bar"
-msgstr "Thanh công cụ"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"hd_id3143268\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
-msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_id3151112\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Dùng thanh Công cụ để truy cập các lệnh thường dùng.</ahelp>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN10610\n"
-"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
-msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Điều khiển\">Điều khiển</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"hd_id3154730\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
-msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Chọn sắc thái\">Chọn sắc thái</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN10690\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Lọc cấp cao\">Lọc cấp cao</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106A8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
-msgstr "<link href=\"text/scalc/01/12090100.xhp\">Bắt đầu</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106C0\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
-msgstr "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Chuyển đổi Euro\">Chuyển đổi Euro</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106D8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\">Xác định</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106F0\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Tìm mục đích\">Tìm mục đích</link>"
-
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -879,284 +536,234 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Biểu mẫu\">Biểu mẫu</link>"
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"tit\n"
-"help.text"
-msgid "Window"
-msgstr "Cửa sổ"
-
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"hd_id3154758\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Cửa sổ\">Cửa sổ</link>"
-
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"par_id3150398\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\">Chứa các câu lệnh để thao tác và hiển thị cửa sổ tài liệu.</ahelp>"
-
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
+"main0106.xhp\n"
"tit\n"
"help.text"
-msgid "Page Preview Bar"
-msgstr "Thanh xem thử trang"
+msgid "Tools"
+msgstr "Công cụ"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3156023\n"
+"main0106.xhp\n"
+"hd_id3150769\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
-msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Thanh xem thử trang\">Thanh xem thử trang</link>"
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Công cụ\">Công cụ</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id3148663\n"
+"main0106.xhp\n"
+"par_id3150440\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">Thanh <emph>Xem thử trang</emph> được hiển thị khi bạn chọn mục trình đơn <emph>Tập tin > Xem thử trang</emph>.</ahelp>"
-
-#: main0210.xhp
-msgctxt ""
-"main0210.xhp\n"
-"hd_id3147393\n"
-"3\n"
-"help.text"
-msgid "Full Screen"
-msgstr ""
+msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
+msgstr "<ahelp hid=\".\">Trình đơn <emph>Công cụ</emph> chứa các câu lệnh để kiểm tra chính tả, tìm thấy dấu vết của tham chiếu tới bảng tính, tìm lỗi và xác định kịch bản.</ahelp>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460828\n"
+"main0106.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
-msgstr ""
+msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
+msgstr "Bạn cũng có khả năng tạo và gán vĩ lệnh, cấu hình hình thức và cảm nhận của các thanh công cụ, trình đơn, bàn phím, và đặt các tùy chọn mặc định cho mỗi ứng dụng $[officename]."
-#: main0210.xhp
-#, fuzzy
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147394\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3149122\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
-msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Trang\">Trang</link>"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Tìm mục đích\">Tìm mục đích</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147494\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3155768\n"
+"6\n"
"help.text"
-msgid "Margins"
-msgstr ""
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Kịch bản\">Kịch bản</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460929\n"
+"main0106.xhp\n"
+"hd_id3154015\n"
+"9\n"
"help.text"
-msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
-msgstr ""
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Tự động sửa lỗi\">Tùy chọn cho sửa lỗi tự động</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3245494\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3150086\n"
+"8\n"
"help.text"
-msgid "Scaling Factor"
-msgstr ""
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Tùy biến\">Tùy biến</link>"
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460939\n"
+"main0107.xhp\n"
+"tit\n"
"help.text"
-msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
-msgstr ""
+msgid "Window"
+msgstr "Cửa sổ"
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147395\n"
-"3\n"
+"main0107.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "Close Preview"
-msgstr ""
+msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
+msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Cửa sổ\">Cửa sổ</link>"
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460829\n"
+"main0107.xhp\n"
+"par_id3150398\n"
+"2\n"
"help.text"
-msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
-msgstr ""
+msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
+msgstr "<ahelp hid=\".uno:WindowList\">Chứa các câu lệnh để thao tác và hiển thị cửa sổ tài liệu.</ahelp>"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
+"main0112.xhp\n"
"tit\n"
"help.text"
-msgid "View"
-msgstr "Xem"
+msgid "Data"
+msgstr "Dữ liệu"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"hd_id3151112\n"
+"main0112.xhp\n"
+"hd_id3153254\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Xem\">Xem</link>"
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Dữ liệu\">Dữ liệu</link>"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"par_id3149456\n"
+"main0112.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Trình đơn này chứa các lệnh để điều khiển cách hiển thị tài liệu trên màn hình.</ahelp>"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AB\n"
-"help.text"
-msgid "Normal"
-msgstr "Chuẩn"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị chế độ Xem chuẩn của bảng tính.</ahelp>"
+msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\">Dùng những câu lệnh nằm trong trình đơn <emph>Dữ liệu </emph> để chỉnh sửa dữ liệu của bảng tính hiện tại. Cũng có thể xác định phạm vi, sắp xếp và lọc dữ liệu, tính kết quả, phác thảo dữ liệu, và mở DataPilot.</ahelp>"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"hd_id3125863\n"
+"main0112.xhp\n"
+"hd_id3150400\n"
"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Thu/Phóng\">Thu/Phóng</link>"
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
+msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Xác định phạm vị\">Xác định phạm vị</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"tit\n"
+"main0112.xhp\n"
+"hd_id3125863\n"
+"4\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Chọn phạm vị\">Chọn phạm vị</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3156023\n"
-"1\n"
+"main0112.xhp\n"
+"hd_id3153726\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Sửa\">Sửa</link>"
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sắp xếp\">Sắp xếp</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"par_id3154758\n"
-"2\n"
+"main0112.xhp\n"
+"hd_id3153142\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr "<ahelp hid=\".\">Trình đơn này chứa các lệnh để chỉnh sửa nội dung của tài liệu hiện tại.</ahelp>"
+msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
+msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Tổng phụ\">Tổng phụ</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3146119\n"
-"3\n"
+"main0112.xhp\n"
+"hd_id3151073\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Dán đặc biệt\">Dán đặc biệt</link>"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Độ hợp lệ\">Độ hợp lệ</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3153728\n"
-"12\n"
+"main0112.xhp\n"
+"hd_id3145254\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
-msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"So sánh tài liệu\">So sánh tài liệu</link>"
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Đa thao tác\">Đa thao tác</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3154492\n"
-"4\n"
+"main0112.xhp\n"
+"hd_id1387066\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Tìm và thay thế\">Tìm và thay thế</link>"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Văn bản sang Cột</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3150715\n"
-"5\n"
+"main0112.xhp\n"
+"hd_id3150717\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
-msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Đầu/chân trang\">Đầu & chân trang</link>"
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Kết hợp\">Kết hợp</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3149018\n"
-"6\n"
+"main0112.xhp\n"
+"hd_id3154754\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
-msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Xoá nội dung\">Xoá nội dung</link>"
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Cập nhật phạm vị\">Cập nhật phạm vị</link>"
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3156384\n"
-"7\n"
+"main0200.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
-msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Xoá ô\">Xoá ô</link>"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3146919\n"
-"10\n"
+"main0200.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Liên kết\">Liên kết</link>"
+msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link></variable>"
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3148488\n"
-"11\n"
+"main0200.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Sơ đồ ảnh\">Sơ đồ ảnh</link>"
+msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgstr "Trình đơn phụ này liệt kê các thanh công cụ sẵn sàng khi xử lý bảng tính.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
#: main0202.xhp
msgctxt ""
@@ -1384,84 +991,201 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Canh lề nội dung của ô cân đối cả bên trái và phải.</ahelp>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
+"main0203.xhp\n"
"tit\n"
"help.text"
-msgid "Welcome to the $[officename] Calc Help"
-msgstr "Chào mừng dùng Trợ giúp của $[officename] Calc"
+msgid "Drawing Object Properties Bar"
+msgstr "Thanh thuộc tính đối tượng vẽ"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3147338\n"
+"main0203.xhp\n"
+"hd_id3154346\n"
"1\n"
"help.text"
-msgid "Welcome to the $[officename] Calc Help"
-msgstr "Chào mừng dùng Trợ giúp của $[officename] Calc"
+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=\"Thanh thuộc tính đối tượng vẽ\">Thanh thuộc tính đối tượng vẽ</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3153965\n"
+"main0203.xhp\n"
+"par_id3149656\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">Thanh <emph>Thuộc tính đối tượng vẽ</emph> chứa các lệnh định dạng và canh lề cho những đối tượng bạn chọn trong trang tính.</ahelp>"
+
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3145748\n"
"3\n"
"help.text"
-msgid "How to Work With $[officename] Calc"
-msgstr "Làm việc với $[officename] Calc như thế nào"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Kiểu đường\">Kiểu đường</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"par_id3147004\n"
-"5\n"
+"main0203.xhp\n"
+"hd_id3151073\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Dánh sách hàm theo phân loại\">Danh sách hàm theo phân loại</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Bề rộng dòng\">Bề rộng đường</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3154659\n"
-"6\n"
+"main0203.xhp\n"
+"hd_id3153417\n"
+"5\n"
"help.text"
-msgid "$[officename] Calc Menus, Toolbars, and Keys"
-msgstr "Trình đơn, thanh công cụ và phím của $[officename] Calc"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Màu dòng\">Màu đường</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3150883\n"
-"4\n"
+"main0203.xhp\n"
+"hd_id3147338\n"
+"6\n"
"help.text"
-msgid "Help about the Help"
-msgstr "Cách dùng phần Trợ giúp"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Màu nền\">Màu nền</link>"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
+"main0205.xhp\n"
"tit\n"
"help.text"
-msgid "Menus"
-msgstr "Trình đơn"
+msgid "Text Formatting Bar"
+msgstr "Thanh định dạng văn bản"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
-"hd_id3156023\n"
+"main0205.xhp\n"
+"hd_id3156330\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Trình đơn\">Trình đơn</link></variable>"
+msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Thanh định dạng văn bản\">Thanh định dạng văn bản</link>"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
-"par_id3154760\n"
+"main0205.xhp\n"
+"par_id3151112\n"
"2\n"
"help.text"
-msgid "The following menu commands are available for spreadsheets."
-msgstr "Những lệnh trình đơn này khả dụng cho bảng tính."
+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\">Thanh <emph>Định dạng văn bản</emph> được hiển thị khi con trỏ bên trong đối tượng văn bản, như khung văn bản hay đối tượng vẽ. Nó chứa các lệnh định dạng và canh lề.</ahelp>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3148575\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Màu phông\">Màu phông</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3154944\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Giãn cách dòng: 1\">Giãn cách dòng: 1</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3146969\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Giãn cách dòng: 1.5\">Giãn cách dòng: 1.5</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153711\n"
+"10\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Giãn cách dòng: 2\">Giãn cách dòng: 2</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147345\n"
+"11\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề trái\">Canh bên trái</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155337\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"ở Giữa\">Canh giữa</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147001\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề phải\">Canh bên phải</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155115\n"
+"14\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh đều\">Canh đều</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3150202\n"
+"15\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Chỉ số Trên\">Chỉ số trên</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155531\n"
+"16\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Chỉ số dưới\">Chỉ số dưới</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3145387\n"
+"17\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Ký tự\">Ký tự</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153067\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Đoạn văn\">Đoạn văn</link>"
#: main0206.xhp
msgctxt ""
@@ -1489,111 +1213,150 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">Dùng thanh này để nhập công thức.</ahelp>"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
+"main0208.xhp\n"
"tit\n"
"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "Status Bar"
+msgstr "Thanh trạng thái"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
-"hd_id3154758\n"
+"main0208.xhp\n"
+"hd_id3151385\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link></variable>"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Thanh trạng thái\">Thanh trạng thái</link>"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
-"par_id3148798\n"
+"main0208.xhp\n"
+"par_id3149669\n"
"2\n"
"help.text"
-msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-msgstr "Trình đơn phụ này liệt kê các thanh công cụ sẵn sàng khi xử lý bảng tính.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr "<emph>Thanh trạng thái</emph> hiển thị thông tin về bảng tính hiện có."
-#: main0101.xhp
+#: main0208.xhp
msgctxt ""
-"main0101.xhp\n"
+"main0208.xhp\n"
+"hd_id0821200911024321\n"
+"help.text"
+msgid "Digital Signature"
+msgstr "Chữ kí số"
+
+#: main0208.xhp
+msgctxt ""
+"main0208.xhp\n"
+"par_id0821200911024344\n"
+"help.text"
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgstr "Cũng xem <link href=\"text/shared/guide/digital_signatures.xhp\">Các chữ kí số</link>."
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
"tit\n"
"help.text"
-msgid "File"
-msgstr "Tập tin"
+msgid "Page Preview Bar"
+msgstr "Thanh xem thử trang"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
+"main0210.xhp\n"
"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Tập tin\">Tập tin</link>"
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Thanh xem thử trang\">Thanh xem thử trang</link>"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"par_id3151112\n"
+"main0210.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
-msgstr "<ahelp hid=\".\">Các lệnh này áp dụng cho tài liệu hiện tại, mở một tài liệu mới, hoặc đóng ứng dụng này.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">Thanh <emph>Xem thử trang</emph> được hiển thị khi bạn chọn mục trình đơn <emph>Tập tin > Xem thử trang</emph>.</ahelp>"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3154684\n"
-"4\n"
+"main0210.xhp\n"
+"hd_id3147393\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Mở\">Mở</link>"
+msgid "Full Screen"
+msgstr "Toàn màn hình"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147434\n"
-"5\n"
+"main0210.xhp\n"
+"par_id460828\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Lưu dạng\">Lưu dạng</link>"
+msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
+msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147396\n"
-"11\n"
+"main0210.xhp\n"
+"hd_id3147394\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Phiên bản\">Phiên bản</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Trang\">Trang</link>"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149400\n"
-"7\n"
+"main0210.xhp\n"
+"hd_id3147494\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Thuộc tính\">Thuộc tính</link>"
+msgid "Margins"
+msgstr "Lề"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3155445\n"
-"9\n"
+"main0210.xhp\n"
+"par_id460929\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"In\">In</link>"
+msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
+msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147339\n"
-"10\n"
+"main0210.xhp\n"
+"hd_id3245494\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Thiết lập máy in\">Thiết lập máy in</link>"
+msgid "Scaling Factor"
+msgstr ""
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460939\n"
+"help.text"
+msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
+msgstr ""
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3147395\n"
+"3\n"
+"help.text"
+msgid "Close Preview"
+msgstr ""
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460829\n"
+"help.text"
+msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
+msgstr ""
#: main0214.xhp
msgctxt ""
@@ -1620,3 +1383,238 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">The <emph>Picture</emph> bar is displayed when you insert or select a picture in a sheet.</ahelp>"
msgstr "<ahelp hid=\".\">Thanh <emph>Ảnh</emph> được hiển thị khi bạn chèn hay chọn ảnh trong bảng tính.</ahelp>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools Bar"
+msgstr "Thanh công cụ"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3143268\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_id3151112\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Dùng thanh Công cụ để truy cập các lệnh thường dùng.</ahelp>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN10610\n"
+"help.text"
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Điều khiển\">Điều khiển</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3154730\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Chọn sắc thái\">Chọn sắc thái</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN10690\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Lọc cấp cao\">Lọc cấp cao</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106A8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
+msgstr "<link href=\"text/scalc/01/12090100.xhp\">Bắt đầu</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106C0\n"
+"help.text"
+msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
+msgstr "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Chuyển đổi Euro\">Chuyển đổi Euro</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106D8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\">Xác định</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106F0\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Tìm mục đích\">Tìm mục đích</link>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Calc Features"
+msgstr "Tính năng $[officename] Calc"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3154758\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"Tính năng $[officename] Calc\">Tính năng $[officename] Calc</link></variable>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149457\n"
+"2\n"
+"help.text"
+msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
+msgstr "$[officename] Calc là một ứng dụng bảng tính cho bạn có thể sử dụng để tính, phân tích và quản lý dữ liệu. Cũng có khả năng nhập khẩu và sửa đổi bảng tính kiểu MS Excel."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148797\n"
+"4\n"
+"help.text"
+msgid "Calculations"
+msgstr "Phép tính"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145172\n"
+"5\n"
+"help.text"
+msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
+msgstr "$[officename] Calc có sẵn nhiều <link href=\"text/scalc/01/04060100.xhp\" name=\"hàm\">hàm</link>, gồm các hàm kiểu thống kê và ngân hàng, mà bạn có thể sử dụng để thực hiện phép tính phức tạp với dữ liệu."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145271\n"
+"6\n"
+"help.text"
+msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
+msgstr "Bạn có thể dùng liên kết <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Trợ lý hàm</link> để giúp đỡ bạn tạo hàm riêng."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3152596\n"
+"13\n"
+"help.text"
+msgid "What-If Calculations"
+msgstr "Phép tính « Nếu-thì »"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156444\n"
+"14\n"
+"help.text"
+msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
+msgstr "Một tính năng hữu ích là khả năng xem ngay tức khắc kết quả của thay đổi được làm với một đoạn hàm chứa vài đoạn khác nhau. Chẳng hạn, bạn có thể xem kết quả khi thay đổi chu kỳ trong phép khoản vay có tác động lãi xuất hay số lượng trả lại. Hơn nữa, bạn có thể quản lý bảng lớn bằng cách sử dụng những kịch bản định sẵn khác nhau."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148576\n"
+"7\n"
+"help.text"
+msgid "Database Functions"
+msgstr "Chức năng cơ sở dữ liệu"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154011\n"
+"8\n"
+"help.text"
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr "Dùng bảng tính để sắp xếp, cất giữ, và lọc dữ liệu."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154942\n"
+"25\n"
+"help.text"
+msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
+msgstr "$[officename] Calc cho bạn có khả năng kéo thả bảng từ cơ sở dữ liệu, hoặc dùng bảng tính như là nguồn dữ liệu để tạo thư mẫu trong $[officename] Writer."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3145800\n"
+"9\n"
+"help.text"
+msgid "Arranging Data"
+msgstr "Sắp xếp dữ liệu"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154490\n"
+"10\n"
+"help.text"
+msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
+msgstr "Vài cú nhấn chuột có thể sắp xếp lại bảng tính để hiển thị hay ẩn phạm vị dữ liệu khác nhau, hoặc định dạng phạm vị tùy theo điều kiện đặc biệt, hoặc tính nhanh tổng phụ và số tổng."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3155601\n"
+"16\n"
+"help.text"
+msgid "Dynamic Charts"
+msgstr "Đồ thị động"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149121\n"
+"17\n"
+"help.text"
+msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
+msgstr "$[officename] Calc cho bạn có khả năng hiển thị dữ liệu bảng tính dùng đồ thị động sẽ tự động cập nhật khi dữ liệu thay đổi."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153707\n"
+"18\n"
+"help.text"
+msgid "Opening and Saving Microsoft Files"
+msgstr "Mở và lưu tập tin Microsoft"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3157867\n"
+"19\n"
+"help.text"
+msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+msgstr "Dùng những bộ lọc $[officename] để chuyển đổi tập tin Excel, hoặc mở và lưu theo nhiều <link href=\"text/shared/00/00000020.xhp\" name=\"định dạng\">định dạng</link> khác nhau."
diff --git a/source/vi/helpcontent2/source/text/scalc/00.po b/source/vi/helpcontent2/source/text/scalc/00.po
index 01afcff8f27..982aa8adb2a 100644
--- a/source/vi/helpcontent2/source/text/scalc/00.po
+++ b/source/vi/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,842 +15,287 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
+"00000004.xhp\n"
"tit\n"
"help.text"
-msgid "Window Menu"
-msgstr "Trình đơn Cửa sổ"
+msgid "To access this function..."
+msgstr "Để truy cập hàm này..."
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"hd_id3155628\n"
+"00000004.xhp\n"
+"hd_id3155535\n"
"1\n"
"help.text"
-msgid "Window Menu"
-msgstr "Trình đơn Cửa sổ"
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr "<variable id=\"wie\">Để truy cập hàm này... </variable>"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3147335\n"
-"2\n"
+"00000004.xhp\n"
+"par_idN1056E\n"
"help.text"
-msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
-msgstr "<variable id=\"fete\">Chọn <emph>Cửa sổ > Xẻ</emph></variable>"
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr "<variable id=\"moreontop\">Diễn giải thêm ở phía trên cùng của trang.</variable>"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3153663\n"
-"3\n"
+"00000004.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
-msgstr "<variable id=\"fefix\">Chọn <emph>Cửa sổ > Đông</emph></variable>"
+msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
+msgstr "<variable id=\"optional\">Trong các hàm của Calc %PRODUCTNAME , các thông số được đánh dấu như là « tùy chọn » có thể bỏ qua chỉ khi nào đằng sau nó không còn tham số nào nữa. Ví dụ, một hàm có 4 tham số, trong đó 2 tham số cuối được đánh dấu « tùy chọn », bạn có thể bỏ qua tham số thứ 4 hoặc cả hai tham số 3 và 4, nhưng bạn không thể bỏ chỉ mỗi tham số thứ 3.</variable>"
-#: 00000412.xhp
+#: 00000004.xhp
msgctxt ""
-"00000412.xhp\n"
+"00000004.xhp\n"
+"par_id9751884\n"
+"help.text"
+msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
+msgstr "<variable id=\"codes\">Mã sau 127 có thể phụ thuộc vào sự ánh xạ ký tự của hệ điều hành riêng (v.d. iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), thì có lẽ không phải di động.</variable>"
+
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
"tit\n"
"help.text"
-msgid "Data Menu"
-msgstr "Trình đơn Dữ liệu"
+msgid "Edit Menu"
+msgstr "Trình đơn Sửa"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"hd_id3145136\n"
+"00000402.xhp\n"
+"hd_id3147303\n"
"1\n"
"help.text"
-msgid "Data Menu"
-msgstr "Trình đơn Dữ liệu"
+msgid "Edit Menu"
+msgstr "Trình đơn Sửa"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id8366954\n"
+"00000402.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
-msgstr "<variable id=\"text2columns\">Chọn <emph>Dữ liệu > Văn bản sang Cột</emph></variable>"
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgstr "<variable id=\"kopffuss\">Chọn<emph>Sửa > Đầu/Chân trang</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3147399\n"
+"00000402.xhp\n"
+"par_id3159233\n"
"3\n"
"help.text"
-msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
-msgstr "<variable id=\"dbrbf\">Chọn <emph>Dữ liệu > Xác định phạm vi</emph></variable>"
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+msgstr "<variable id=\"bkopfzeile\">Chọn thẻ <emph>Sửa > Đầu/Chân trang > Đầu/Chân trang</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145345\n"
+"00000402.xhp\n"
+"par_id3150443\n"
"4\n"
"help.text"
-msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
-msgstr "<variable id=\"dbrba\">Chọn <emph>Dữ liệu > Chọn phạm vi</emph></variable>"
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgstr "<variable id=\"bausfullen\">Chọn <emph>Sửa > Điền</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150443\n"
+"00000402.xhp\n"
+"par_id3143267\n"
"5\n"
"help.text"
-msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
-msgstr "<variable id=\"dnsrt\">Chọn <emph>Dữ liệu > Sắp xếp</emph></variable>"
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgstr "<variable id=\"bausunten\">Chọn <emph>Sửa > Điền > Xuống</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3148491\n"
+"00000402.xhp\n"
+"par_id3153880\n"
"6\n"
"help.text"
-msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
-msgstr "Chọn <emph>Dữ liệu > Sắp xếp > (thẻ) Tiêu chí sắp xếp</emph>"
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr "<variable id=\"bausrechts\">Chọn <emph>Sửa > Điền > Sang phải</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3154516\n"
+"00000402.xhp\n"
+"par_id3151245\n"
"7\n"
"help.text"
-msgid "On Standard bar, click"
-msgstr "Trên thanh Tiêu chuẩn, nhấn vào"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148663\n"
-"help.text"
-msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Biểu tượng</alt></image>"
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "<variable id=\"bausoben\">Chọn <emph>Sửa > Điền > Lên</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150767\n"
+"00000402.xhp\n"
+"par_id3145068\n"
"8\n"
"help.text"
-msgid "Sort Ascending"
-msgstr "Sắp tăng dần"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153969\n"
-"help.text"
-msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
-msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Biểu tượng</alt></image>"
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "<variable id=\"bauslinks\">Chọn <emph>Sửa > Điền > Sang trái</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145364\n"
+"00000402.xhp\n"
+"par_id3150400\n"
"9\n"
"help.text"
-msgid "Sort Descending"
-msgstr "Sắp giảm dần"
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "<variable id=\"baustab\">Chọn <emph>Sửa > Điền > Trang tính</emph></variable>"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3146984\n"
+"00000402.xhp\n"
+"par_id3154910\n"
"10\n"
"help.text"
-msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
-msgstr "<variable id=\"dnstot\">Chọn <emph>Dữ liệu > Sắp xếp > (thẻ) Tùy chọn</emph></variable>"
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgstr "<variable id=\"bausreihe\">Chọn <emph>Sửa > Điền > Chuỗi</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3155308\n"
+"00000402.xhp\n"
+"par_id3154123\n"
"11\n"
"help.text"
-msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
-msgstr "<variable id=\"dnftr\">Chọn <emph>Dữ liệu > Lọc</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148646\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
-msgstr "Chọn <emph>Dữ liệu > Lọc > Tự động Lọc</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151113\n"
-"13\n"
-"help.text"
-msgid "On Tools bar or Table Data bar, click"
-msgstr "Trên thanh Công cụ hoặc thanh Dữ liệu Bảng, nhấn vào"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3145799\n"
-"help.text"
-msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Biểu tượng</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149401\n"
-"14\n"
-"help.text"
-msgid "AutoFilter"
-msgstr "Tự động lọc"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3156278\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
-msgstr "<variable id=\"dnfspz\">Chọn <emph>Dữ liệu > Lọc > Lọc cấp cao</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153764\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
-msgstr "Chọn <emph>Dữ liệu > Lọc > Lọc chuẩn > (nút) Nhiều>></emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155444\n"
-"19\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
-msgstr "Chọn <emph>Dữ liệu > Lọc > Lọc cấp cao > (nút) Nhiều>></emph>"
+msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgstr "Chọn <emph>Sửa > Xoá nội dung</emph>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3156382\n"
+"00000402.xhp\n"
+"par_id3145785\n"
"20\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
-msgstr "Chọn <emph>Dữ liệu > Lọc > Bỏ bộ lọc</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155961\n"
-"48\n"
-"help.text"
-msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
-msgstr "Trên thanh Dữ liệu Bảng, nhắp <emph>Bỏ Bộ lọc/Sắp xếp</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148485\n"
-"help.text"
-msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Biểu tượng</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149207\n"
-"49\n"
-"help.text"
-msgid "Remove Filter/Sort"
-msgstr "Bỏ bộ lọc/Sắp xếp"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3152778\n"
-"21\n"
-"help.text"
-msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
-msgstr "<variable id=\"dnaftas\">Chọn <emph>Dữ liệu > Lọc > Ẩn tự động lọc</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3166424\n"
-"22\n"
-"help.text"
-msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
-msgstr "<variable id=\"dntegs\">Chọn <emph>Dữ liệu > Tổng phụ</emph></variable>"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154574\n"
-"23\n"
-"help.text"
-msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
-msgstr "<variable id=\"dntezd\">Chọn <emph>Dữ liệu > Tổng phụ > (các thẻ) Nhóm thứ 1, thứ 2, thứ 3</emph> </variable>"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151277\n"
-"24\n"
-"help.text"
-msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
-msgstr "<variable id=\"dntopi\">Chọn <emph>Dữ liệu > Tổng phụ > (thẻ) Tùy chọn</emph> </variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3145133\n"
-"25\n"
-"help.text"
-msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
-msgstr "<variable id=\"datengueltig\">Chọn <emph>Dữ liệu > Tính hợp lệ</emph></variable>"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3152992\n"
-"26\n"
-"help.text"
-msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
-msgstr "<variable id=\"datengueltigwerte\">Trình đơn <emph>Dữ liệu > Tính hợp lệ > (thẻ) Tiêu chí</emph> </variable>"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150367\n"
-"27\n"
-"help.text"
-msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
-msgstr "<variable id=\"datengueltigeingabe\">Chọn <emph>Dữ liệu > Tính hợp lệ > (thẻ) Trợ giúp nhập liệu</emph> </variable>"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154486\n"
-"28\n"
-"help.text"
-msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
-msgstr "<variable id=\"datengueltigfehler\">Chọn <emph>Dữ liệu > Tính hợp lệ > (thẻ) Cảnh giác lỗi</emph> </variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146978\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
-msgstr "<variable id=\"dnmfo\">Chọn <emph>Dữ liệu > Nhiều thao tác</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155809\n"
-"30\n"
-"help.text"
-msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
-msgstr "<variable id=\"dnksd\">Chọn <emph>Dữ liệu > Kết hợp</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148701\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
-msgstr "<variable id=\"dngld\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153815\n"
-"32\n"
-"help.text"
-msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
-msgstr "<variable id=\"dngda\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Ẩn chi tiết</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3159223\n"
-"33\n"
-"help.text"
-msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
-msgstr "<variable id=\"dngde\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Hiện chi tiết</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146870\n"
-"34\n"
-"help.text"
-msgid "Choose <emph>Data - Group and Outline - Group</emph>"
-msgstr "Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Nhóm lại</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3144507\n"
-"51\n"
-"help.text"
-msgid "F12"
-msgstr "F12"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3144772\n"
-"35\n"
-"help.text"
-msgid "On <emph>Tools</emph> bar, click"
-msgstr "Trên thanh <emph>Công cụ</emph>, nhấn vào"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149438\n"
-"help.text"
-msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Biểu tượng</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150214\n"
-"36\n"
-"help.text"
-msgid "Group"
-msgstr "Nhóm lại"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146781\n"
-"37\n"
-"help.text"
-msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
-msgstr "Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Rã nhóm</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150892\n"
-"52\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155097\n"
-"38\n"
-"help.text"
-msgid "On <emph>Tools</emph> bar, click"
-msgstr "Trên thanh <emph>Công cụ</emph>, nhấn vào"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150048\n"
-"help.text"
-msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Biểu tượng</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153555\n"
-"39\n"
-"help.text"
-msgid "Ungroup"
-msgstr "Rã nhóm"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153008\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
-msgstr "<variable id=\"dnglagl\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Tự động Phác thảo</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154709\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
-msgstr "<variable id=\"dnglef\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Bỏ</emph></variable>"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id1774346\n"
-"help.text"
-msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
-msgstr "<variable id=\"dngdrill\">Chọn mục trình đơn <emph>Dữ liệu > Nhóm lại và Phác thảo > Hiện chi tiết</emph> (cho một số bảng DataPilot).</variable>"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155759\n"
-"42\n"
-"help.text"
-msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
-msgstr "<variable id=\"dndtpt\">Chọn <emph>Dữ liệu > DataPilot</emph></variable>"
+msgid "Backspace"
+msgstr ""
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3154625\n"
-"43\n"
+"00000402.xhp\n"
+"par_id3150011\n"
+"12\n"
"help.text"
-msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
-msgstr "<variable id=\"dndpa\">Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph></variable>"
+msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+msgstr "<variable id=\"bzelo\">Chọn <emph>Sửa > Xoá các ô</emph></variable>"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3147558\n"
-"53\n"
+"00000402.xhp\n"
+"par_id3153951\n"
+"13\n"
"help.text"
-msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
-msgstr "<variable id=\"dndq\">Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>; trong hộp thoại Chọn Nguồn bật tùy chọn <emph>Nguồn dữ liệu được đăng ký trong $[officename]</emph>. </variable>"
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgstr "Chọn <emph>Sửa > Trang tính > Xoá</emph>"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3153297\n"
-"50\n"
+"00000402.xhp\n"
+"par_id3155306\n"
+"18\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
-msgstr "Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>; trong hộp thoại Chọn Nguồn bật tùy chọn <emph>Vùng chọn hiện có</emph>."
+msgid "Open context menu for a sheet tab"
+msgstr "Mở trình đơn ngữ cảnh cho một thẻ trang tính"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145118\n"
-"54\n"
+"00000402.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
-msgstr "Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>; trong hộp thoại Chọn Nguồn bật tùy chọn <emph>Nguồn dữ liệu được đăng ký trong $[officename]</emph>, nhấn vào nút <emph>OK</emph> để xem hộp thoại <emph>Chọn nguồn dữ liệu</emph>."
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgstr "Chọn <emph>Sửa > Bảng > Chuyển/Chép</emph>"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3153294\n"
-"44\n"
+"00000402.xhp\n"
+"par_id3148645\n"
+"19\n"
"help.text"
-msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
-msgstr "<variable id=\"dndpak\">Chọn <emph>Dữ liệu > DataPilot > Cập nhật</emph></variable>"
+msgid "Open context menu for a sheet tab"
+msgstr "Mở trình đơn ngữ cảnh cho một thẻ trang tính"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3151344\n"
-"45\n"
+"00000402.xhp\n"
+"par_id3153093\n"
+"15\n"
"help.text"
-msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
-msgstr "<variable id=\"dndploe\">Chọn <emph>Dữ liệu > DataPilot > Xoá</emph></variable>"
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgstr "<variable id=\"bmaumloe\">Chọn <emph>Sửa > Xoá chỗ ngắt tự làm</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150397\n"
-"46\n"
+"00000402.xhp\n"
+"par_id3153191\n"
+"16\n"
"help.text"
-msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
-msgstr "<variable id=\"dndakt\">Chọn <emph>Dữ liệu > Cập nhật phạm vi</emph></variable>"
+msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+msgstr "<variable id=\"bzeilum\">Chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt hàng</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_idN10B8F\n"
+"00000402.xhp\n"
+"par_id3145645\n"
+"17\n"
"help.text"
-msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
-msgstr "<variable id=\"grouping\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Nhóm lại</emph>.</variable>"
+msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+msgstr "<variable id=\"bspaum\">Chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt cột</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
+"00000403.xhp\n"
"tit\n"
"help.text"
-msgid "Format Menu"
-msgstr "Trình đơn Định dạng"
+msgid "View Menu"
+msgstr "Trình đơn Xem"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"hd_id3150769\n"
+"00000403.xhp\n"
+"hd_id3145673\n"
"1\n"
"help.text"
-msgid "Format Menu"
-msgstr "Trình đơn Định dạng"
+msgid "View Menu"
+msgstr "Trình đơn Xem"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3154685\n"
+"00000403.xhp\n"
+"par_id3150275\n"
"2\n"
"help.text"
-msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
-msgstr "<variable id=\"fozelle\">Chọn <emph>Định dạng > Các ô</emph></variable>"
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+msgstr "<variable id=\"aspze\">Chọn <emph>Xem > Đầu Cột/Hàng</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3153194\n"
+"00000403.xhp\n"
+"par_id3154514\n"
"3\n"
"help.text"
-msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
-msgstr "<variable id=\"fozelstz\">Chọn <emph>Định dạng > Các ô > Bảo vệ ô</emph> </variable>"
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgstr "<variable id=\"awehe\">Chọn <emph>Xem > Tô sáng GIá trị</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3155854\n"
+"00000403.xhp\n"
+"par_id3148947\n"
"4\n"
"help.text"
-msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
-msgstr "<variable id=\"fozei\">Chọn <emph>Định dạng > Hàng</emph></variable>"
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
+msgstr "<variable id=\"rechenleiste\">Chọn <emph>Xem ? Thanh công cụ > Thanh Công thức</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3150012\n"
+"00000403.xhp\n"
+"par_id3148663\n"
"5\n"
"help.text"
-msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
-msgstr "<variable id=\"fozeiophoe\">Chọn <emph>Định dạng > Hàng > Bề cao tối ưu</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148645\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Hide</emph>"
-msgstr "Chọn <emph>Định dạng > Hàng > Ẩn</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153728\n"
-"7\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Hide</emph>"
-msgstr "Chọn <emph>Định dạng > Cột > Ẩn</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3151114\n"
-"8\n"
-"help.text"
-msgid "Choose <emph>Format - Sheet - Hide</emph>"
-msgstr "Chọn <emph>Định dạng > Bảng > Ẩn</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148576\n"
-"9\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Show</emph>"
-msgstr "Chọn <emph>Định dạng > Hàng > Hiện</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156286\n"
-"10\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Show</emph>"
-msgstr "Chọn <emph>Định dạng > Cột > Hiện</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145645\n"
-"11\n"
-"help.text"
-msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
-msgstr "<variable id=\"fospa\">Chọn <emph>Định dạng > Cột</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145252\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Optimal Width</emph>"
-msgstr "Chọn <emph>Định dạng > Cột > Bề rộng tối ưu</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3146971\n"
-"36\n"
-"help.text"
-msgid "Double-click right column separator in column headers"
-msgstr "Nhắp kép cạnh ngăn cột bên phải trong dòng tựa cột"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3147362\n"
-"15\n"
-"help.text"
-msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
-msgstr "<variable id=\"fot\">Chọn <emph>Định dạng > Bảng</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3163805\n"
-"16\n"
-"help.text"
-msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
-msgstr "<variable id=\"fotu\">Chọn <emph>Định dạng > Bảng > Thay tên</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155333\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
-msgstr "<variable id=\"fotenb\">Chọn <emph>Định dạng > Bảng > Hiện</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_idN1077A\n"
-"help.text"
-msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
-msgstr "<variable id=\"foste\">Chọn <emph>Định dạng > Trang</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155508\n"
-"25\n"
-"help.text"
-msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
-msgstr "<variable id=\"fostel\">Chọn <emph>Định dạng > Trang > (thẻ) Trang tính</emph> </variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3150883\n"
-"26\n"
-"help.text"
-msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
-msgstr "<variable id=\"fodrbe\">Chọn <emph>Định dạng > Phạm vi in</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156448\n"
-"27\n"
-"help.text"
-msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
-msgstr "<variable id=\"fodrfe\">Chọn <emph>Định dạng > Phạm vi in > Xác định</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156290\n"
-"35\n"
-"help.text"
-msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
-msgstr "<variable id=\"fodrhin\">Chọn <emph>Định dạng > Phạm vi in > Thêm</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155812\n"
-"28\n"
-"help.text"
-msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
-msgstr "<variable id=\"fodbah\">Chọn <emph>Định dạng > Phạm vi in > Gỡ bỏ</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153307\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
-msgstr "<variable id=\"fodbbe\">Chọn <emph>Định dạng > Phạm vi in > Sửa</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153916\n"
-"31\n"
-"help.text"
-msgid "Choose <emph>Format - AutoFormat</emph>"
-msgstr "Chọn <emph>Định dạng > Tự động Định dạng</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154532\n"
-"32\n"
-"help.text"
-msgid "On the Tools bar, click"
-msgstr "Trên thanh Công cụ, nhấn vào"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3149332\n"
-"help.text"
-msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Biểu tượng</alt></image>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154060\n"
-"33\n"
-"help.text"
-msgid "AutoFormat"
-msgstr "Tự động Định dạng"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154618\n"
-"34\n"
-"help.text"
-msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
-msgstr "<variable id=\"bedingte\">Chọn <emph>Định dạng > Định dạng có điều kiện</emph></variable>"
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+msgstr "<variable id=\"seumvo\">Chọn <emph>Xem > Xem thử ngắt trang</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1258,58 +703,263 @@ msgctxt ""
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr "<variable id=\"einabesch\">Chọn <emph>Chèn > Tên > Nhãn</emph></variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
+"00000405.xhp\n"
"tit\n"
"help.text"
-msgid "View Menu"
-msgstr "Trình đơn Xem"
+msgid "Format Menu"
+msgstr "Trình đơn Định dạng"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"hd_id3145673\n"
+"00000405.xhp\n"
+"hd_id3150769\n"
"1\n"
"help.text"
-msgid "View Menu"
-msgstr "Trình đơn Xem"
+msgid "Format Menu"
+msgstr "Trình đơn Định dạng"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3150275\n"
+"00000405.xhp\n"
+"par_id3154685\n"
"2\n"
"help.text"
-msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
-msgstr "<variable id=\"aspze\">Chọn <emph>Xem > Đầu Cột/Hàng</emph></variable>"
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "<variable id=\"fozelle\">Chọn <emph>Định dạng > Các ô</emph></variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3154514\n"
+"00000405.xhp\n"
+"par_id3153194\n"
"3\n"
"help.text"
-msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
-msgstr "<variable id=\"awehe\">Chọn <emph>Xem > Tô sáng GIá trị</emph></variable>"
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+msgstr "<variable id=\"fozelstz\">Chọn <emph>Định dạng > Các ô > Bảo vệ ô</emph> </variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3148947\n"
+"00000405.xhp\n"
+"par_id3155854\n"
"4\n"
"help.text"
-msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
-msgstr "<variable id=\"rechenleiste\">Chọn <emph>Xem ? Thanh công cụ > Thanh Công thức</emph></variable>"
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "<variable id=\"fozei\">Chọn <emph>Định dạng > Hàng</emph></variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3148663\n"
+"00000405.xhp\n"
+"par_id3150012\n"
"5\n"
"help.text"
-msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
-msgstr "<variable id=\"seumvo\">Chọn <emph>Xem > Xem thử ngắt trang</emph></variable>"
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+msgstr "<variable id=\"fozeiophoe\">Chọn <emph>Định dạng > Hàng > Bề cao tối ưu</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148645\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr "Chọn <emph>Định dạng > Hàng > Ẩn</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153728\n"
+"7\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr "Chọn <emph>Định dạng > Cột > Ẩn</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3151114\n"
+"8\n"
+"help.text"
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr "Chọn <emph>Định dạng > Bảng > Ẩn</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148576\n"
+"9\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr "Chọn <emph>Định dạng > Hàng > Hiện</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156286\n"
+"10\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr "Chọn <emph>Định dạng > Cột > Hiện</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145645\n"
+"11\n"
+"help.text"
+msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
+msgstr "<variable id=\"fospa\">Chọn <emph>Định dạng > Cột</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145252\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr "Chọn <emph>Định dạng > Cột > Bề rộng tối ưu</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3146971\n"
+"36\n"
+"help.text"
+msgid "Double-click right column separator in column headers"
+msgstr "Nhắp kép cạnh ngăn cột bên phải trong dòng tựa cột"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3147362\n"
+"15\n"
+"help.text"
+msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+msgstr "<variable id=\"fot\">Chọn <emph>Định dạng > Bảng</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3163805\n"
+"16\n"
+"help.text"
+msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+msgstr "<variable id=\"fotu\">Chọn <emph>Định dạng > Bảng > Thay tên</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155333\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+msgstr "<variable id=\"fotenb\">Chọn <emph>Định dạng > Bảng > Hiện</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_idN1077A\n"
+"help.text"
+msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
+msgstr "<variable id=\"foste\">Chọn <emph>Định dạng > Trang</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155508\n"
+"25\n"
+"help.text"
+msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
+msgstr "<variable id=\"fostel\">Chọn <emph>Định dạng > Trang > (thẻ) Trang tính</emph> </variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3150883\n"
+"26\n"
+"help.text"
+msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
+msgstr "<variable id=\"fodrbe\">Chọn <emph>Định dạng > Phạm vi in</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156448\n"
+"27\n"
+"help.text"
+msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
+msgstr "<variable id=\"fodrfe\">Chọn <emph>Định dạng > Phạm vi in > Xác định</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156290\n"
+"35\n"
+"help.text"
+msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
+msgstr "<variable id=\"fodrhin\">Chọn <emph>Định dạng > Phạm vi in > Thêm</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155812\n"
+"28\n"
+"help.text"
+msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
+msgstr "<variable id=\"fodbah\">Chọn <emph>Định dạng > Phạm vi in > Gỡ bỏ</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153307\n"
+"29\n"
+"help.text"
+msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
+msgstr "<variable id=\"fodbbe\">Chọn <emph>Định dạng > Phạm vi in > Sửa</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153916\n"
+"31\n"
+"help.text"
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr "Chọn <emph>Định dạng > Tự động Định dạng</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154532\n"
+"32\n"
+"help.text"
+msgid "On the Tools bar, click"
+msgstr "Trên thanh Công cụ, nhấn vào"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3149332\n"
+"help.text"
+msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Biểu tượng</alt></image>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154060\n"
+"33\n"
+"help.text"
+msgid "AutoFormat"
+msgstr "Tự động Định dạng"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154618\n"
+"34\n"
+"help.text"
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+msgstr "<variable id=\"bedingte\">Chọn <emph>Định dạng > Định dạng có điều kiện</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1560,231 +1210,567 @@ msgctxt ""
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr "<variable id=\"autoeingabe\">Chọn <emph>Công cụ > Nội dung ô > Tự động Nhập</emph></variable>"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
+"00000407.xhp\n"
"tit\n"
"help.text"
-msgid "To access this function..."
-msgstr "Để truy cập hàm này..."
+msgid "Window Menu"
+msgstr "Trình đơn Cửa sổ"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"hd_id3155535\n"
+"00000407.xhp\n"
+"hd_id3155628\n"
"1\n"
"help.text"
-msgid "<variable id=\"wie\">To access this function... </variable>"
-msgstr "<variable id=\"wie\">Để truy cập hàm này... </variable>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
-msgstr "<variable id=\"moreontop\">Diễn giải thêm ở phía trên cùng của trang.</variable>"
+msgid "Window Menu"
+msgstr "Trình đơn Cửa sổ"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_idN105AF\n"
+"00000407.xhp\n"
+"par_id3147335\n"
+"2\n"
"help.text"
-msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
-msgstr "<variable id=\"optional\">Trong các hàm của Calc %PRODUCTNAME , các thông số được đánh dấu như là « tùy chọn » có thể bỏ qua chỉ khi nào đằng sau nó không còn tham số nào nữa. Ví dụ, một hàm có 4 tham số, trong đó 2 tham số cuối được đánh dấu « tùy chọn », bạn có thể bỏ qua tham số thứ 4 hoặc cả hai tham số 3 và 4, nhưng bạn không thể bỏ chỉ mỗi tham số thứ 3.</variable>"
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "<variable id=\"fete\">Chọn <emph>Cửa sổ > Xẻ</emph></variable>"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id9751884\n"
+"00000407.xhp\n"
+"par_id3153663\n"
+"3\n"
"help.text"
-msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
-msgstr "<variable id=\"codes\">Mã sau 127 có thể phụ thuộc vào sự ánh xạ ký tự của hệ điều hành riêng (v.d. iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), thì có lẽ không phải di động.</variable>"
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "<variable id=\"fefix\">Chọn <emph>Cửa sổ > Đông</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
+"00000412.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Menu"
-msgstr "Trình đơn Sửa"
+msgid "Data Menu"
+msgstr "Trình đơn Dữ liệu"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"hd_id3147303\n"
+"00000412.xhp\n"
+"hd_id3145136\n"
"1\n"
"help.text"
-msgid "Edit Menu"
-msgstr "Trình đơn Sửa"
+msgid "Data Menu"
+msgstr "Trình đơn Dữ liệu"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155555\n"
-"2\n"
+"00000412.xhp\n"
+"par_id8366954\n"
"help.text"
-msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
-msgstr "<variable id=\"kopffuss\">Chọn<emph>Sửa > Đầu/Chân trang</emph></variable>"
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgstr "<variable id=\"text2columns\">Chọn <emph>Dữ liệu > Văn bản sang Cột</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159233\n"
+"00000412.xhp\n"
+"par_id3147399\n"
"3\n"
"help.text"
-msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
-msgstr "<variable id=\"bkopfzeile\">Chọn thẻ <emph>Sửa > Đầu/Chân trang > Đầu/Chân trang</emph></variable>"
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "<variable id=\"dbrbf\">Chọn <emph>Dữ liệu > Xác định phạm vi</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150443\n"
+"00000412.xhp\n"
+"par_id3145345\n"
"4\n"
"help.text"
-msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
-msgstr "<variable id=\"bausfullen\">Chọn <emph>Sửa > Điền</emph></variable>"
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgstr "<variable id=\"dbrba\">Chọn <emph>Dữ liệu > Chọn phạm vi</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3143267\n"
+"00000412.xhp\n"
+"par_id3150443\n"
"5\n"
"help.text"
-msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
-msgstr "<variable id=\"bausunten\">Chọn <emph>Sửa > Điền > Xuống</emph></variable>"
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgstr "<variable id=\"dnsrt\">Chọn <emph>Dữ liệu > Sắp xếp</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153880\n"
+"00000412.xhp\n"
+"par_id3148491\n"
"6\n"
"help.text"
-msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
-msgstr "<variable id=\"bausrechts\">Chọn <emph>Sửa > Điền > Sang phải</emph></variable>"
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr "Chọn <emph>Dữ liệu > Sắp xếp > (thẻ) Tiêu chí sắp xếp</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151245\n"
+"00000412.xhp\n"
+"par_id3154516\n"
"7\n"
"help.text"
-msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
-msgstr "<variable id=\"bausoben\">Chọn <emph>Sửa > Điền > Lên</emph></variable>"
+msgid "On Standard bar, click"
+msgstr "Trên thanh Tiêu chuẩn, nhấn vào"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145068\n"
+"00000412.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Biểu tượng</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150767\n"
"8\n"
"help.text"
-msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
-msgstr "<variable id=\"bauslinks\">Chọn <emph>Sửa > Điền > Sang trái</emph></variable>"
+msgid "Sort Ascending"
+msgstr "Sắp tăng dần"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150400\n"
-"9\n"
+"00000412.xhp\n"
+"par_id3153969\n"
"help.text"
-msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
-msgstr "<variable id=\"baustab\">Chọn <emph>Sửa > Điền > Trang tính</emph></variable>"
+msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
+msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Biểu tượng</alt></image>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154910\n"
-"10\n"
+"00000412.xhp\n"
+"par_id3145364\n"
+"9\n"
"help.text"
-msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
-msgstr "<variable id=\"bausreihe\">Chọn <emph>Sửa > Điền > Chuỗi</emph></variable>"
+msgid "Sort Descending"
+msgstr "Sắp giảm dần"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154123\n"
-"11\n"
+"00000412.xhp\n"
+"par_id3146984\n"
+"10\n"
"help.text"
-msgid "Choose <emph>Edit - Delete Contents</emph>"
-msgstr "Chọn <emph>Sửa > Xoá nội dung</emph>"
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgstr "<variable id=\"dnstot\">Chọn <emph>Dữ liệu > Sắp xếp > (thẻ) Tùy chọn</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145785\n"
-"20\n"
+"00000412.xhp\n"
+"par_id3155308\n"
+"11\n"
"help.text"
-msgid "Backspace"
-msgstr ""
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "<variable id=\"dnftr\">Chọn <emph>Dữ liệu > Lọc</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150011\n"
+"00000412.xhp\n"
+"par_id3148646\n"
"12\n"
"help.text"
-msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
-msgstr "<variable id=\"bzelo\">Chọn <emph>Sửa > Xoá các ô</emph></variable>"
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
+msgstr "Chọn <emph>Dữ liệu > Lọc > Tự động Lọc</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153951\n"
+"00000412.xhp\n"
+"par_id3151113\n"
"13\n"
"help.text"
-msgid "Choose <emph>Edit – Sheet - Delete</emph>"
-msgstr "Chọn <emph>Sửa > Trang tính > Xoá</emph>"
+msgid "On Tools bar or Table Data bar, click"
+msgstr "Trên thanh Công cụ hoặc thanh Dữ liệu Bảng, nhấn vào"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155306\n"
-"18\n"
+"00000412.xhp\n"
+"par_id3145799\n"
"help.text"
-msgid "Open context menu for a sheet tab"
-msgstr "Mở trình đơn ngữ cảnh cho một thẻ trang tính"
+msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Biểu tượng</alt></image>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3146119\n"
+"00000412.xhp\n"
+"par_id3149401\n"
"14\n"
"help.text"
-msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
-msgstr "Chọn <emph>Sửa > Bảng > Chuyển/Chép</emph>"
+msgid "AutoFilter"
+msgstr "Tự động lọc"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148645\n"
+"00000412.xhp\n"
+"par_id3156278\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+msgstr "<variable id=\"dnfspz\">Chọn <emph>Dữ liệu > Lọc > Lọc cấp cao</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153764\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+msgstr "Chọn <emph>Dữ liệu > Lọc > Lọc chuẩn > (nút) Nhiều>></emph>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155444\n"
"19\n"
"help.text"
-msgid "Open context menu for a sheet tab"
-msgstr "Mở trình đơn ngữ cảnh cho một thẻ trang tính"
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr "Chọn <emph>Dữ liệu > Lọc > Lọc cấp cao > (nút) Nhiều>></emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153093\n"
-"15\n"
+"00000412.xhp\n"
+"par_id3156382\n"
+"20\n"
"help.text"
-msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
-msgstr "<variable id=\"bmaumloe\">Chọn <emph>Sửa > Xoá chỗ ngắt tự làm</emph></variable>"
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
+msgstr "Chọn <emph>Dữ liệu > Lọc > Bỏ bộ lọc</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153191\n"
-"16\n"
+"00000412.xhp\n"
+"par_id3155961\n"
+"48\n"
"help.text"
-msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
-msgstr "<variable id=\"bzeilum\">Chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt hàng</emph></variable>"
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr "Trên thanh Dữ liệu Bảng, nhắp <emph>Bỏ Bộ lọc/Sắp xếp</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145645\n"
-"17\n"
+"00000412.xhp\n"
+"par_id3148485\n"
"help.text"
-msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
-msgstr "<variable id=\"bspaum\">Chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt cột</emph></variable>"
+msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Biểu tượng</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149207\n"
+"49\n"
+"help.text"
+msgid "Remove Filter/Sort"
+msgstr "Bỏ bộ lọc/Sắp xếp"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152778\n"
+"21\n"
+"help.text"
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
+msgstr "<variable id=\"dnaftas\">Chọn <emph>Dữ liệu > Lọc > Ẩn tự động lọc</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3166424\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+msgstr "<variable id=\"dntegs\">Chọn <emph>Dữ liệu > Tổng phụ</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154574\n"
+"23\n"
+"help.text"
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
+msgstr "<variable id=\"dntezd\">Chọn <emph>Dữ liệu > Tổng phụ > (các thẻ) Nhóm thứ 1, thứ 2, thứ 3</emph> </variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151277\n"
+"24\n"
+"help.text"
+msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
+msgstr "<variable id=\"dntopi\">Chọn <emph>Dữ liệu > Tổng phụ > (thẻ) Tùy chọn</emph> </variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145133\n"
+"25\n"
+"help.text"
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+msgstr "<variable id=\"datengueltig\">Chọn <emph>Dữ liệu > Tính hợp lệ</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152992\n"
+"26\n"
+"help.text"
+msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigwerte\">Trình đơn <emph>Dữ liệu > Tính hợp lệ > (thẻ) Tiêu chí</emph> </variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150367\n"
+"27\n"
+"help.text"
+msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigeingabe\">Chọn <emph>Dữ liệu > Tính hợp lệ > (thẻ) Trợ giúp nhập liệu</emph> </variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154486\n"
+"28\n"
+"help.text"
+msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigfehler\">Chọn <emph>Dữ liệu > Tính hợp lệ > (thẻ) Cảnh giác lỗi</emph> </variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146978\n"
+"29\n"
+"help.text"
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+msgstr "<variable id=\"dnmfo\">Chọn <emph>Dữ liệu > Nhiều thao tác</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155809\n"
+"30\n"
+"help.text"
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+msgstr "<variable id=\"dnksd\">Chọn <emph>Dữ liệu > Kết hợp</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148701\n"
+"31\n"
+"help.text"
+msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
+msgstr "<variable id=\"dngld\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153815\n"
+"32\n"
+"help.text"
+msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
+msgstr "<variable id=\"dngda\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Ẩn chi tiết</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3159223\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+msgstr "<variable id=\"dngde\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Hiện chi tiết</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146870\n"
+"34\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>"
+msgstr "Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Nhóm lại</emph>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3144507\n"
+"51\n"
+"help.text"
+msgid "F12"
+msgstr "F12"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3144772\n"
+"35\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Trên thanh <emph>Công cụ</emph>, nhấn vào"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149438\n"
+"help.text"
+msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Biểu tượng</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150214\n"
+"36\n"
+"help.text"
+msgid "Group"
+msgstr "Nhóm lại"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146781\n"
+"37\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr "Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Rã nhóm</emph>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150892\n"
+"52\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155097\n"
+"38\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Trên thanh <emph>Công cụ</emph>, nhấn vào"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150048\n"
+"help.text"
+msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Biểu tượng</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153555\n"
+"39\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Rã nhóm"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153008\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
+msgstr "<variable id=\"dnglagl\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Tự động Phác thảo</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154709\n"
+"41\n"
+"help.text"
+msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
+msgstr "<variable id=\"dnglef\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Bỏ</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id1774346\n"
+"help.text"
+msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
+msgstr "<variable id=\"dngdrill\">Chọn mục trình đơn <emph>Dữ liệu > Nhóm lại và Phác thảo > Hiện chi tiết</emph> (cho một số bảng DataPilot).</variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155759\n"
+"42\n"
+"help.text"
+msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
+msgstr "<variable id=\"dndtpt\">Chọn <emph>Dữ liệu > DataPilot</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154625\n"
+"43\n"
+"help.text"
+msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
+msgstr "<variable id=\"dndpa\">Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3147558\n"
+"53\n"
+"help.text"
+msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
+msgstr "<variable id=\"dndq\">Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>; trong hộp thoại Chọn Nguồn bật tùy chọn <emph>Nguồn dữ liệu được đăng ký trong $[officename]</emph>. </variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153297\n"
+"50\n"
+"help.text"
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
+msgstr "Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>; trong hộp thoại Chọn Nguồn bật tùy chọn <emph>Vùng chọn hiện có</emph>."
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145118\n"
+"54\n"
+"help.text"
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
+msgstr "Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>; trong hộp thoại Chọn Nguồn bật tùy chọn <emph>Nguồn dữ liệu được đăng ký trong $[officename]</emph>, nhấn vào nút <emph>OK</emph> để xem hộp thoại <emph>Chọn nguồn dữ liệu</emph>."
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153294\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
+msgstr "<variable id=\"dndpak\">Chọn <emph>Dữ liệu > DataPilot > Cập nhật</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151344\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
+msgstr "<variable id=\"dndploe\">Chọn <emph>Dữ liệu > DataPilot > Xoá</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150397\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+msgstr "<variable id=\"dndakt\">Chọn <emph>Dữ liệu > Cập nhật phạm vi</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_idN10B8F\n"
+"help.text"
+msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
+msgstr "<variable id=\"grouping\">Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Nhóm lại</emph>.</variable>"
diff --git a/source/vi/helpcontent2/source/text/scalc/01.po b/source/vi/helpcontent2/source/text/scalc/01.po
index fadeed86ed0..ef737091160 100644
--- a/source/vi/helpcontent2/source/text/scalc/01.po
+++ b/source/vi/helpcontent2/source/text/scalc/01.po
@@ -1,206 +1,20 @@
-#
+#. extracted from helpcontent2/source/text/scalc/01
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
-"PO-Revision-Date: 2012-07-04 18:58+0200\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2012-12-10 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Link to External Data"
-msgstr "Liên kết đến dữ liệu bên ngoài"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3153192\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Tìm tập tin chứa dữ liệu cần chèn.</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
-msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Dữ liệu bên ngoài\"> Liên kết đến dữ liệu bên ngoài</link>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3149262\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">Chèn dữ liệu từ một tập tin kiểu HTML, Calc hay Excel vào trang tính hiện tại dưới dạng một liên kết. Dữ liệu phải nằm bên trong một phạm vi đặt tên.</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3146984\n"
-"5\n"
-"help.text"
-msgid "URL of external data source."
-msgstr "URL của nguồn dữ liệu bên ngoài"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3145366\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Hãy nhập địa chỉ URL hay tên tập tin mà chứa dữ liệu bạn muốn chèn vào, sau đó bấm phím <item type=\"keycode\">Enter</item>.</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3145251\n"
-"7\n"
-"help.text"
-msgid "Available tables/ranges"
-msgstr "Bảng/Phạm vị sẵn sàng"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3147397\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Hãy lựa chọn bảng hay phạm vi dữ liệu bạn muốn chèn.</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3154492\n"
-"9\n"
-"help.text"
-msgid "Update every"
-msgstr "Cập nhật mỗi"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3154017\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
-msgstr "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Nhập số các giây cần đợi trước khi dữ liệu bên ngoài được nạp lại vào tài liệu hiện tại.</ahelp>"
-
-#: func_minute.xhp
-#, fuzzy
-msgctxt ""
-"func_minute.xhp\n"
-"tit\n"
-"help.text"
-msgid "MINUTE"
-msgstr "MINUTE"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"bm_id3149803\n"
-"help.text"
-msgid "<bookmark_value>MINUTE function</bookmark_value>"
-msgstr "<bookmark_value>hàm MINUTE</bookmark_value>"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3149803\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
-msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">Hàm MINUTE</link></variable>"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148988\n"
-"67\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
-msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">Tính phần phút của một giá trị thời gian nội bộ.</ahelp> Số phút được trả về dưới dạng một số nằm giữa 0 và 59."
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3154343\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148660\n"
-"69\n"
-"help.text"
-msgid "MINUTE(Number)"
-msgstr "MINUTE(Số)"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3154611\n"
-"70\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
-msgstr "<emph>Số</emph> là một giá trị thời gian kiểu thập phân, từ đó cần trả về phần phút."
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3145374\n"
-"71\n"
-"help.text"
-msgid "Examples"
-msgstr "Ví dụ"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148463\n"
-"72\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
-msgstr "<item type=\"input\">=MINUTE(8.999)</item> trả về 58"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3149419\n"
-"73\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
-msgstr "<item type=\"input\">=MINUTE(8.9999)</item> trả về 59"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3144755\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
-msgstr "<item type=\"input\">=MINUTE(NOW())</item> trả về giá trị phút hiện thời."
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1355146911.0\n"
#: 01120000.xhp
msgctxt ""
@@ -266,6154 +80,1913 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Thanh đối tượng xem thử trang\">Thanh đối tượng xem thử trang</link>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
+"02110000.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "Navigator"
+msgstr "Bộ điều hướng"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"bm_id3147228\n"
+"02110000.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
-msgstr "<bookmark_value>sắp xếp; các tùy chọn về phạm vi cơ sở dữ liệu</bookmark_value><bookmark_value>sắp xếp;ngôn ngữ Châu Á</bookmark_value><bookmark_value>ngôn ngữ Châu Á;sắp xếp</bookmark_value><bookmark_value>các quy tắc sắp xếp sổ điện thoại</bookmark_value><bookmark_value>thuật toán sắp xếp tự nhiên</bookmark_value>"
+msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
+msgstr "<bookmark_value>Bộ điều hướng;cho trang tính</bookmark_value><bookmark_value>duyệt;trong bảng tính</bookmark_value><bookmark_value>hiển thị; tên kịch bản</bookmark_value><bookmark_value>kịch bản;hiển thị tên</bookmark_value>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147228\n"
+"02110000.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
-msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
+msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
+msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3153770\n"
+"02110000.xhp\n"
+"par_id3156422\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\">Đặt thêm tùy chọn sắp xếp.</ahelp>"
+msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
+msgstr "<ahelp hid=\".uno:Navigator\">Bật và tắt Bộ điều hướng.</ahelp> Bộ điều hướng là một <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"cửa sổ neo được\">cửa sổ neo được</link>."
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3146976\n"
-"3\n"
+"02110000.xhp\n"
+"par_id3145271\n"
+"40\n"
"help.text"
-msgid "Case Sensitivity"
-msgstr "Phân biệt chữ hoa/thường"
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgstr "Chọn lệnh <emph>Hiển thị > Bộ điều hướng</emph> để mở Bộ điều hướng."
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3153091\n"
+"02110000.xhp\n"
+"hd_id3159155\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\">Sắp xếp trước tiên theo chữ hoa, sau đó thì theo chữ thường. Đối với các ngôn ngữ Châu Á dùng chữ viết ghi ý, chương trình áp dụng các quy tắc đặc biệt.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_idN10637\n"
-"help.text"
-msgid "Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
-msgstr "Ghi chú về các ngôn ngữ Châu Á dùng chữ viết ghi ý: bật tùy chọn <emph>Phân biệt chữ hoa/thường</emph> để áp dụng chức năng đối chiếu đa cấp. Đối chiếu đa cấp thì các mục nhập trước tiên được so sánh theo dạng nguyên thuỷ, bỏ qua chữ hoa/thường hay dấu phụ. Một khi tìm các mục ước tính là trung thì phân biệt theo dấu phụ (so sánh cấp thứ hai). Vẫn còn ước tính là trùng thì phân biệt theo chữ hoa/thường, độ rộng ký tự và khác biệt tiếng Nhật Kana (so sánh cấp thứ ba)."
+msgid "Column"
+msgstr "Cột"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3155856\n"
+"02110000.xhp\n"
+"par_id3146984\n"
"5\n"
"help.text"
-msgid "Range contains column/row labels"
-msgstr "Phạm vi chứa nhãn cột/hàng"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Nhập chữ cái đánh dấu cột. Nhấn Enter để đặt lại vị trí con trỏ ô về cột được nhập trong cùng một hàng.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3154014\n"
+"02110000.xhp\n"
+"hd_id3147126\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\">Bỏ sót hàng đầu hay cột đầu khỏi lựa chọn để sắp xếp.</ahelp> Thiết lập <emph>Hướng</emph> ở dưới hộp thoại thì xác định tên và chức năng của hộp chọn này."
+msgid "Row"
+msgstr "Hàng"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147436\n"
+"02110000.xhp\n"
+"par_id3149958\n"
"7\n"
"help.text"
-msgid "Include formats"
-msgstr "Bao gồm định dạng"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Nhập vào một số hàng. Nhấn Enter để đặt lại vị trí con trỏ ô tới hàng đã nhập trong cột đang làm việc.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3149377\n"
+"02110000.xhp\n"
+"hd_id3150717\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Bảo tồn định dạng hiện thời của ô bảng.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3147438\n"
-"help.text"
-msgid "Enable natural sort"
-msgstr ""
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3149378\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
-msgstr ""
+msgid "Data Range"
+msgstr "Phạm vi dữ liệu"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3153878\n"
+"02110000.xhp\n"
+"par_id3150752\n"
"10\n"
"help.text"
-msgid "Copy sort results to:"
-msgstr "Chép kết quả sắp xếp vào :"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3156286\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Sao chép danh sách đã sắp xếp vào phạm vi ô bạn ghi rõ.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Xác định phạm vi dữ liệu hiện thời được đánh dấu bằng vị trí của con trỏ ô.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3153418\n"
-"12\n"
+"02110000.xhp\n"
+"par_id3159264\n"
"help.text"
-msgid "Sort results"
-msgstr "Kết quả sắp xếp"
+msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Biểu tượng</alt></image>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155602\n"
-"13\n"
+"02110000.xhp\n"
+"par_id3146919\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\">Hãy lựa chọn một <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\">phạm vi ô</link> trong đó bạn muốn hiển thị danh sách đã sắp xếp, hoặc nhập một phạm vi ô vào hộp nhập liệu.</ahelp>"
+msgid "Data Range"
+msgstr "Phạm vi dữ liệu"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3153707\n"
+"02110000.xhp\n"
+"hd_id3148488\n"
"14\n"
"help.text"
-msgid "Sort results"
-msgstr "Kết quả sắp xếp"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3145642\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\">Nhập phạm vi ô trong đó bạn muốn hiển thị danh sách đã sắp xếp, hoặc chọn một phạm vi đặt tên trong danh sách.</ahelp>"
+msgid "Start"
+msgstr "Bắt đầu"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3155445\n"
+"02110000.xhp\n"
+"par_id3150086\n"
"16\n"
"help.text"
-msgid "Custom sort order"
-msgstr "Thứ tự sắp xếp riêng"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3156385\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Nhấn vào đây, sau đó chọn thứ tự sắp xếp riêng đã muốn.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3154704\n"
-"18\n"
-"help.text"
-msgid "Custom sort order"
-msgstr "Thứ tự sắp xếp riêng"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Chuyển tới ô ở đầu phạm vi dữ liệu hiện thời mà bạn có thể tô sáng bằng cách bấm nút <emph>Phạm vi dữ liệu</emph>.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155962\n"
-"19\n"
+"02110000.xhp\n"
+"par_id3152994\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
-msgstr ""
+msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3150394\">Biểu tượng</alt></image>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3149257\n"
-"28\n"
+"02110000.xhp\n"
+"par_id3154372\n"
+"15\n"
"help.text"
-msgid "Language"
-msgstr "Ngôn ngữ"
+msgid "Start"
+msgstr "Bắt đầu"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147004\n"
-"29\n"
+"02110000.xhp\n"
+"hd_id3146982\n"
+"17\n"
"help.text"
-msgid "Language"
-msgstr "Ngôn ngữ"
+msgid "End"
+msgstr "Kết thúc"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3150787\n"
-"32\n"
+"02110000.xhp\n"
+"par_id3152985\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Hãy lựa chọn ngôn ngữ cho các quy tắc ngôn ngữ.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Chuyển tới ô nằm cuối phạm vi dữ liệu hiện thời mà bạn có thể tô sáng bằng nút <emph>Phạm vi Dữ liệu</emph>.</ahelp>"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3150344\n"
-"30\n"
+"02110000.xhp\n"
+"par_id3159170\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+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_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Biểu tượng</alt></image>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155113\n"
-"33\n"
+"02110000.xhp\n"
+"par_id3147072\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Hãy lựa chọn một tùy chọn sắp xếp cho ngôn ngữ đó.</ahelp> Chẳng hạn, bật tùy chọn « sổ điện thoại » cho tiếng Đức để bao gồm dấu hai chấm ở trên khi sắp xếp."
+msgid "End"
+msgstr "Kết thúc"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3152580\n"
+"02110000.xhp\n"
+"hd_id3150107\n"
"20\n"
"help.text"
-msgid "Direction"
-msgstr "Hướng"
+msgid "Toggle"
+msgstr "Bật/tắt"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3154201\n"
+"02110000.xhp\n"
+"par_id3159098\n"
"22\n"
"help.text"
-msgid "Top to Bottom (Sort Rows)"
-msgstr "Trên xuống dưới (sắp xếp cột)"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3166430\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sắp xếp các hàng theo những giá trị trong các cột hoạt động của phạm vi đã chọn.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3145588\n"
-"24\n"
-"help.text"
-msgid "Left to Right (Sort Columns)"
-msgstr "Trái sang phải (sắp xếp cột)"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3154370\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\">Sắp xếp các cột theo những giá trị trong các cột hoạt động của phạm vi đã chọn.</ahelp>"
-
-#: 12030200.xhp
-#, fuzzy
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3156290\n"
-"26\n"
-"help.text"
-msgid "Data area"
-msgstr "Vùng dữ liệu"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3156446\n"
-"27\n"
-"help.text"
-msgid "Displays the cell range that you want to sort."
-msgstr "Hiển thị phạm vi ô cần sắp xếp."
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh Range"
-msgstr "Cập nhật phạm vi"
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"bm_id3153662\n"
-"help.text"
-msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
-msgstr "<bookmark_value>phạm vi cơ sở dữ liệu; cập nhật</bookmark_value>"
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"hd_id3153662\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
-msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Cập nhật phạm vị\">Cập nhật phạm vị</link>"
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"par_id3153088\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
-msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Cập nhật một phạm vi dữ liệu mà được chèn từ một cơ sở dữ liệu bên ngoài. Dữ liệu trên trang tính được cập nhật để tương ứng với dữ liệu trong cơ sở dữ liệu ngoài.</ahelp></variable>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Bật/tắt phần hiển thị nội dung. Chỉ có các thành phần được chọn trong Bộ điều hướng và các thành phần bên dưới nó là sẽ được hiển thị.</ahelp> Bấm vào biểu tượng thêm lần nữa để hiển thị lại tất cả các thành phần."
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"par_id3152869\n"
"help.text"
-msgid "Hide AutoFilter"
-msgstr "Ẩn lọc tự động"
+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_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149814\">Biểu tượng</alt></image>"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"bm_id3150276\n"
+"02110000.xhp\n"
+"par_id3159229\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
-msgstr "<bookmark_value>phạm vi cơ sở dữ liệu; ẩn lọc tự động</bookmark_value>"
+msgid "Toggle"
+msgstr "Bật/tắt"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"hd_id3150276\n"
-"1\n"
+"02110000.xhp\n"
+"hd_id3149381\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Ẩn lọc tự động\">Ẩn lọc tự động</link>"
+msgid "Contents"
+msgstr "Nội dung"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"par_id3156326\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3150051\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Ẩn các nút lọc tự động trong phạm vi ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Cho phép bạn ẩn/hiện nội dung.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"par_id3155597\n"
"help.text"
-msgid "Insert Sheet"
-msgstr "Chèn bảng"
+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_id3155386\" src=\"sc/res/page.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155386\">Biểu tượng</alt></image>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"bm_id4522232\n"
+"02110000.xhp\n"
+"par_id3150955\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>sheets;creating</bookmark_value>"
-msgstr "<bookmark_value>bảng;tạo</bookmark_value>"
+msgid "Contents"
+msgstr "Nội dung"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155629\n"
-"1\n"
+"02110000.xhp\n"
+"hd_id3147244\n"
+"23\n"
"help.text"
-msgid "Insert Sheet"
-msgstr "Chèn bảng"
+msgid "Scenarios"
+msgstr "Kịch bản"
-#: 04050000.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3147264\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3153955\n"
+"25\n"
"help.text"
-msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
-msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Đặt các tuỳ chọn dùng khi chèn một bảng mới vào tài liệu.</ahelp> Bạn có thể tạo một bảng mới, hoặc chèn một bảng có sẵn trong một tập tin khác. </variable>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Hiển thị tất cả các kịch bản đã có. Bấm đúp vào một tên kịch bản để áp dụng.</ahelp> Kết quả sẽ hiển thị trong bảng. Để biết thêm, hãy chọn <link href=\"text/scalc/01/06050000.xhp\" name=\"Công cụ > Kịch bản\"><emph>Công cụ > Kịch bản</emph></link>."
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154684\n"
-"19\n"
+"02110000.xhp\n"
+"par_id3148745\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
+msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3156281\n"
-"20\n"
+"02110000.xhp\n"
+"par_id3166466\n"
+"24\n"
"help.text"
-msgid "Specifies where the new sheet is to be inserted into your document."
-msgstr "Chèn thêm một bảng mới vào trong tài liệu của bạn."
+msgid "Scenarios"
+msgstr "Kịch bản"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154123\n"
-"21\n"
+"02110000.xhp\n"
+"par_idN10A6C\n"
"help.text"
-msgid "Before current sheet"
-msgstr "Trước bảng hiện thời"
+msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
+msgstr "Nếu Bộ điều hướng hiển thị các kịch bản thì bạn có thể dùng các lệnh dưới đây khi bấm chuột phải vào tên kịch bản:"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3145787\n"
-"22\n"
+"02110000.xhp\n"
+"par_idN10A77\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Inserts a new sheet directly before the current sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Chèn một bảng mới ở trước bảng hiện thời.</ahelp>"
+msgid "Delete"
+msgstr "Xoá"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155414\n"
-"23\n"
+"02110000.xhp\n"
+"par_idN10A7B\n"
"help.text"
-msgid "After current sheet"
-msgstr "Sau bảng hiện thời"
+msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Xoá các kịch bản đã chọn.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3145271\n"
-"24\n"
+"02110000.xhp\n"
+"par_idN10A92\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Inserts a new sheet directly after the current sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Chèn một bảng mới ở sau bảng hiện thời.</ahelp>"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3147428\n"
-"25\n"
+"02110000.xhp\n"
+"par_idN10A96\n"
"help.text"
-msgid "Sheet"
-msgstr "Bảng"
+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\">Mở hộp thoại <link href=\"text/scalc/01/06050000.xhp\">Sửa kịch bản</link> để sửa các thuộc tính của kịch bản.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3154012\n"
+"02110000.xhp\n"
+"hd_id3150037\n"
"26\n"
"help.text"
-msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
-msgstr "Chèn thêm một bảng mới hoặc một bảng đang có vào trong tài liệu."
+msgid "Drag Mode"
+msgstr "Chế độ kéo"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3147350\n"
-"3\n"
+"02110000.xhp\n"
+"par_id3157876\n"
+"28\n"
"help.text"
-msgid "New sheet"
-msgstr "Bảng mới"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Mở một trình đơn con để chọn chế độ kéo. Bạn đặt hành động nào sẽ được thực thi khi kéo và thả một đối tượng từ Bộ điều hướng vào trong tài liệu. Tuỳ theo chế độ bạn dùng, một biểu tượng loại siêu liên kết, liên kết hoặc bản sao sẽ xuất hiện.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3149262\n"
-"4\n"
+"02110000.xhp\n"
+"par_id3149947\n"
"help.text"
-msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
-msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Tạo một bảng mới. Nhập tên bảng vào trong trường <emph>Tên</emph>. Bạn có thể dùng các chữ cái, số, khoảng trống và dấu gạch chân.</ahelp>"
+msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155757\">Biểu tượng</alt></image>"
-#: 04050000.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155418\n"
+"02110000.xhp\n"
+"par_id3150656\n"
"27\n"
"help.text"
-msgid "No. of sheets"
-msgstr "Số bảng"
+msgid "Drag Mode"
+msgstr "Chế độ kéo"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3148457\n"
-"28\n"
+"02110000.xhp\n"
+"hd_id3149009\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Specifies the number of sheets to be created.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Đặt số bảng cần tạo.</ahelp>"
+msgid "Insert as Hyperlink"
+msgstr "Chèn dạng siêu liên kết"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149379\n"
-"7\n"
+"02110000.xhp\n"
+"par_id3146938\n"
+"30\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+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\">Chèn một siêu liên kết khi bạn kéo và thả một đối tượng từ Bộ điều hướng vào trong tài liệu.</ahelp> Sau này bạn vẫn có thể bấm vào siêu liên kết vừa tạo để đặt con trỏ và xem các đối tượng mà nó trỏ tới."
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3150718\n"
-"8\n"
+"02110000.xhp\n"
+"par_id3880733\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Xin nhập tên của bảng mới.</ahelp>"
+msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
+msgstr "Nếu bạn chèn một siêu liên kết vào trong tài liệu đang mở, bạn cần phải lưu tài liệu lại trước khi dùng siêu liên kết đó."
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155066\n"
-"9\n"
+"02110000.xhp\n"
+"hd_id3154682\n"
+"31\n"
"help.text"
-msgid "From File"
-msgstr "Từ tập tin"
+msgid "Insert as Link"
+msgstr "Chèn dạng liên kết"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3153714\n"
-"10\n"
+"02110000.xhp\n"
+"par_id3150746\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Inserts a sheet from an existing file into the current document.</ahelp>"
-msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Chèn một bảng từ một tập tin sẵn có vào trong tài liệu hiện thời.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Tạo liên kết khi bạn kéo và thả một đối tượng từ Bộ điều hướngvào trong tài liệu.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149020\n"
-"15\n"
+"02110000.xhp\n"
+"hd_id3145824\n"
+"33\n"
"help.text"
-msgid "Browse"
-msgstr "Duyệt"
+msgid "Insert as Copy"
+msgstr "Chèn dạng bản sao"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3159267\n"
-"16\n"
+"02110000.xhp\n"
+"par_id3147471\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Opens a dialog for selecting a file.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Mở hộp thoại chọn tập tin.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Tạo một bản sao khi bạn kéo và thả một đối tượng từ Bộ điều hướng vào trong tài liệu.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149255\n"
-"29\n"
+"02110000.xhp\n"
+"hd_id3147423\n"
+"38\n"
"help.text"
-msgid "Available Sheets"
-msgstr "Bảng có sẵn"
+msgid "Objects"
+msgstr "Đối tượng"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3155336\n"
-"30\n"
+"02110000.xhp\n"
+"par_id3150700\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">Nếu bạn chọn một tập tin bằng nút <emph>Duyệt</emph>, bảng chứa trong đó sẽ được hiển thị trong hộp danh sách. Đường dẫn của tập tin sẽ được hiển thị bên dưới hộp này. Chọn trong hộp danh sách bảng mà bạn muốn chèn thêm.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Hiển thị mọi đối tượng trong tài liệu của bạn.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3145791\n"
-"17\n"
+"02110000.xhp\n"
+"hd_id3150860\n"
+"35\n"
"help.text"
-msgid "Link"
-msgstr "Liên kết"
+msgid "Documents"
+msgstr "Tài liệu"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3152580\n"
-"18\n"
+"02110000.xhp\n"
+"par_id3153929\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Chọn mục này để chèn bảng theo kiểu liên kết, thay vì chép nội dung bảng vào trong tài liệu. Khi nội dung bảng gốc thay đổi, các liên kết tới nó sẽ được cập nhật lại.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Hiển thị tên của mọi tài liệu đang mở.</ahelp> Để chuyển tới một cửa sổ đang mở khác từ trong Bộ điều hướng, hãy ấn vào tên tài liệu. Trạng thái (hoạt động, không hoạt động) của tài liệu sẽ được đặt trong ngoặc sau phần tên. Bạn có thể chuyển tới tài liệu hoạt động từ trình đơn <emph>Cửa sổ</emph>."
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
+"02120000.xhp\n"
"tit\n"
"help.text"
-msgid "Protecting Sheet"
-msgstr "Bảo vệ Trang tính"
+msgid "Headers & Footers"
+msgstr "Phần đầu và phần chân"
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"hd_id3153087\n"
+"02120000.xhp\n"
+"hd_id3145251\n"
"1\n"
"help.text"
-msgid "Protecting Sheet"
-msgstr "Bảo vệ Trang tính"
+msgid "Headers & Footers"
+msgstr "Phần đầu và phần chân"
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3148664\n"
+"02120000.xhp\n"
+"par_id3151073\n"
"2\n"
"help.text"
-msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
-msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Bảo vệ các ô trong trang tính hiện thời khỏi sửa đổi.</ahelp></variable> Chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph> để mở hộp thoại <emph>Bảo vệ trang tính</emph> trong đó bạn ghi rõ có nên bảo vệ trang tính, dùng mật khẩu hay không."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149664\n"
-"5\n"
-"help.text"
-msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
-msgstr "Để bảo vệ các ô khỏi sửa đổi thêm nữa, bạn cần phải bật tùy chọn <emph>Bảo vệ</emph> trên trang thẻ <link href=\"text/scalc/01/05020600.xhp\" name=\"Định dạng > Các ô > Bảo vệ ô\"><emph>Định dạng > Các ô > Bảo vệ ô</emph></link>, hoặc trong trình đơn ngữ cảnh <emph>Định dạng các ô</emph>."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154490\n"
-"8\n"
-"help.text"
-msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
-msgstr "Trên một trang tính đã bao vệ, bạn cũng có thể thiết lập ô hay phạm vi ô mà không phải được bảo vệ, bằng cách sử dụng mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph> và <emph>Định dạng > Các ô > Bảo vệ ô</emph>:"
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149123\n"
-"16\n"
-"help.text"
-msgid "Select the cells that will be unprotected"
-msgstr "Hãy lựa chọn những ô không nên được bảo vệ"
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3150329\n"
-"17\n"
-"help.text"
-msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
-msgstr "Chọn <emph>Định dạng > Các ô > Bảo vệ ô</emph>. Tắt tùy chọn <emph>Bảo vệ</emph>, sau đó bấm nút <emph>OK</emph>."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3156384\n"
-"18\n"
-"help.text"
-msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
-msgstr "Dùng mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>, kích hoạt chức năng bảo vệ cho trang tính đó. Kể từ lúc này, chỉ phạm vi ô bạn đã chọn trong bước 1 có thể được chỉnh sửa."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149566\n"
-"9\n"
-"help.text"
-msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
-msgstr "Để thay đổi về sau một vùng không được bảo vệ sang một vùng được bảo vệ, hãy lựa chọn phạm vi đó. Sau đó, trên trang thẻ <emph>Định dạng > Các ô > Bảo vệ ô</emph>, bật tùy chọn <emph>Bảo vệ</emph>. Cuối cùng, chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>. Phạm vi chỉnh sửa được về trước giờ này được bảo vệ."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3153964\n"
-"10\n"
-"help.text"
-msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
-msgstr "Chức năng bảo vệ trang tính cũng ảnh hưởng đến trình đơn ngữ cảnh của thẻ trang tính ở dưới màn hình. Tuy nhiên, không thể chọn lệnh <emph>Xoá</emph> hay <emph>Chuyển/Chép</emph>."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3150301\n"
-"19\n"
-"help.text"
-msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
-msgstr "Nếu một trang tính được bảo vệ, bạn không thể sửa đổi hay xoá Kiểu dáng Ô nào."
+msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
+msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Cho phép bạn đặt và định dạng phần đầu và phần chân của trang.</ahelp></variable>"
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3154656\n"
+"02120000.xhp\n"
+"par_id3153415\n"
"3\n"
"help.text"
-msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
-msgstr "Một trang tính hay phạm vi ô mà được bảo vệ thì không còn sửa đổi được lại đến khi chức năng bảo vệ này bị tắt. Để tắt bảo vệ, hãy chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>. Chưa đặt mật khẩu bảo vệ thì chức năng bảo vệ trang tính bị tắt ngay lập tức. Đặt mật khẩu thì việc này mở hộp thoại <emph>Hủy bảo vệ</emph>, trong đó bạn cần phải nhập mật khẩu."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149815\n"
-"11\n"
-"help.text"
-msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
-msgstr "Một khi lưu được thì trang tính được bảo vệ chỉ có thể được lưu lại bằng cách sử dụng câu lệnh <emph>Tập tin > Lưu dạng</emph>."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id3150206\n"
-"4\n"
-"help.text"
-msgid "Password (optional)"
-msgstr "Mật khẩu (không bắt buộc)"
-
-#: 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\">Cho phép nhập mật khẩu bảo vệ trang tính đó khỏi thay đổi nếu không được phép.</ahelp>"
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3148700\n"
-"12\n"
-"help.text"
-msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
-msgstr "Có thể bảo vệ hoàn toàn dữ liệu bằng cách kết hợp cả hai tùy chọn dưới mục trình đơn <emph>Công cụ > Bảo vệ tài liệu</emph>, gồm có bảo vệ bằng mật khẩu. Để cấm mở tài liệu bằng cách nào cả, trong hộp thoại <emph>Lưu</emph> bật tùy chọn <emph>Lưu bằng mật khẩu</emph> trước khi bấm nút <emph>Lưu</emph>."
+msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
+msgstr "Hộp thoại<emph> Đầu/Chân trang </emph>chứa các thẻ để bạn đặt phần đầu và phần chân trang. Ngoài ra còn chia ra các thẻ để bạn chỉnh phần đầu và chân của trang phải và trang trái một cách riêng rẽ, nếu tuỳ chọn <emph>Cùng nội dung bên trái/phải</emph> không được chọn trong hộp thoại <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Kiểu dáng trang</link>."
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
+"02120100.xhp\n"
"tit\n"
"help.text"
-msgid "Trace Dependents"
-msgstr "Tìm vết phụ thuộc"
+msgid "Header/Footer"
+msgstr "Phần Đầu/Chân"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"bm_id3153252\n"
+"02120100.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; tìm vết phụ thuộc</bookmark_value>"
+msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
+msgstr "<bookmark_value>kiểu dáng trang;phần đầu</bookmark_value><bookmark_value>kiểu dáng trang;phần chân</bookmark_value><bookmark_value>phần đầu;xác định</bookmark_value><bookmark_value>phần chân;xác định</bookmark_value><bookmark_value>tên tập tin trong phần đầu/chân</bookmark_value><bookmark_value>thay đổi;ngày tháng tự động</bookmark_value><bookmark_value>ngày tháng;tự động cập nhật</bookmark_value><bookmark_value>tự động cập nhật ngày tháng</bookmark_value>"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"hd_id3153252\n"
+"02120100.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
-msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Tìm vết phụ thuộc\">Tìm vết phụ thuộc</link>"
+msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Phần đầu/chân\">Phần đầu/chân</link>"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"par_id3156024\n"
+"02120100.xhp\n"
+"par_id3150768\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Vẽ các mũi tên tìm vết đến ô hoạt động từ các công thức phụ thuộc vào giá trị trong ô hoạt động.</ahelp>"
-
-#: 06030300.xhp
-msgctxt ""
-"06030300.xhp\n"
-"par_id3148948\n"
-"4\n"
-"help.text"
-msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
-msgstr "Vùng chứa tất cả các ô được dùng nhau cùng với ô hoạt động trong cùng một công thức thì được tô sáng bằng một khung màu xanh."
+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\">Đặt hoặc định dạng một phần đầu hay phần chân cho một Kiểu dáng Trang.</ahelp>"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"par_id3151112\n"
+"02120100.xhp\n"
+"hd_id3145748\n"
"3\n"
"help.text"
-msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
-msgstr "Hàm này chạy theo cấp, Ví dụ, nếu một cấp vết đã được kích hoạt để hiển thị các tiền lệ (hay phụ thuộc) thì bạn có thể thấy cấp phụ thuộc kế tiếp bằng cách kích hoạt chức năng <emph>Tìm vết</emph> lần nữa."
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Multiple Operations"
-msgstr "Đa thao tác"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"hd_id3153381\n"
-"1\n"
-"help.text"
-msgid "Multiple Operations"
-msgstr "Đa thao tác"
+msgid "Left Area"
+msgstr "Vùng trái"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3154140\n"
-"2\n"
+"02120100.xhp\n"
+"par_id3147434\n"
+"4\n"
"help.text"
-msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
-msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\" visibility=\"visible\">Áp dụng cùng một công thức cho các ô khác nhau, nhưng với các giá trị tham số khác nhau.</ahelp></variable>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">Nhập văn bản sẽ xuất hiện bên trái phần đầu hoặc phần chân.</ahelp>"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3152598\n"
+"02120100.xhp\n"
+"hd_id3148648\n"
"5\n"
"help.text"
-msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
-msgstr "Hộp <emph>Hàng</emph> hay <emph>Cột</emph> phải chứa một tham chiếu đến ô đầu tiên của phạm vi đã chọn."
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"par_id3154011\n"
-"16\n"
-"help.text"
-msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
-msgstr "Nếu bạn xuất ra MS Excel một bảng tính chứa nhiều thao tác, vị trí của mỗi ô chứa một công thức phải được xác định đầy đủ tương đối với phạm vi dữ liệu."
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"hd_id3156441\n"
-"3\n"
-"help.text"
-msgid "Defaults"
-msgstr "Mặc định"
+msgid "Center Area"
+msgstr "Vùng giữa"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3154492\n"
+"02120100.xhp\n"
+"par_id3163710\n"
"6\n"
"help.text"
-msgid "Formulas"
-msgstr "Công thức"
+msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Nhập văn bản sẽ xuất hiện bên trái phần đầu hoặc phần chân.</ahelp>"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3151073\n"
+"02120100.xhp\n"
+"hd_id3154942\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Hãy nhập tham chiếu ô cho mỗi ô chứa một công thức bạn muốn dùng trong phép đa thao tác.</ahelp>"
+msgid "Right Area"
+msgstr "Vùng phải"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3154729\n"
+"02120100.xhp\n"
+"par_id3147126\n"
"8\n"
"help.text"
-msgid "Row"
-msgstr "Hàng"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"par_id3148456\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Hãy nhập tham chiếu ô nhập liệu cần dùng làm biến cho các hàng trong bảng dữ liệu.</ahelp>"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"hd_id3150718\n"
-"14\n"
-"help.text"
-msgid "Column"
-msgstr "Cột"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"par_id3150327\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Nhập tham chiếu ô nhập liêu cần dùng làm biến cho các cột trong bảng dữ liệu.</ahelp>"
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"tit\n"
-"help.text"
-msgid "TODAY"
-msgstr "TODAY"
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"bm_id3145659\n"
-"help.text"
-msgid "<bookmark_value>TODAY function</bookmark_value>"
-msgstr "<bookmark_value>hàm TODAY</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">Nhập văn bản xuất hiện ở bên phải phần đầu và phần chân.</ahelp>"
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"hd_id3145659\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
-msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">Hàm TODAY</link></variable>"
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"par_id3153759\n"
-"30\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
-msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">Trả về ngày tháng hiện thời của hệ thống trên máy tính đó.</ahelp> Giá trị được cập nhật khi bạn mở lại tài liệu hay sửa đổi giá trị của tài liệu."
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"hd_id3154051\n"
-"31\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3153154\n"
-"32\n"
+"02120100.xhp\n"
+"par_idN10811\n"
"help.text"
-msgid "TODAY()"
-msgstr "TODAY()"
+msgid "Header/Footer"
+msgstr "Phần Đầu/Chân"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3154741\n"
-"33\n"
+"02120100.xhp\n"
+"par_idN10815\n"
"help.text"
-msgid "TODAY is a function without arguments."
-msgstr "Hàm TODAY không chấp nhận đối số."
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn một phần đầu hoặc phần chân định sẵn từ danh sách.</ahelp>"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"hd_id3153627\n"
-"34\n"
+"02120100.xhp\n"
+"hd_id3154729\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "Text attributes"
+msgstr "Thuộc tính Văn bản"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3156106\n"
-"35\n"
+"02120100.xhp\n"
+"par_id3150717\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
-msgstr "<item type=\"input\">TODAY()</item> trả về ngày tháng hiện thời của máy tính trên máy tính đó."
+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\">Mở một hộp thoại để gán các định dạng cho văn bản mới hoặc đã chọn.</ahelp> Hộp thoại <emph>Thuộc tính văn bản </emph>có các thẻ là <link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Hiệu ứng phông\">Hiệu ứng phông</link> và <link href=\"text/shared/01/05020500.xhp\" name=\"Vị trí phông\">Vị trí phông</link>."
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"tit\n"
+"02120100.xhp\n"
+"par_id3159266\n"
"help.text"
-msgid "Financial Functions Part One"
-msgstr "Hàm Tài Chính (Phần 1)"
+msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3156386\">Biểu tượng</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3143284\n"
+"02120100.xhp\n"
+"par_id3155336\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
-msgstr "<bookmark_value>hàm tài chính</bookmark_value><bookmark_value>hàm;hàm tài chính</bookmark_value><bookmark_value>Trợ lý hàm;tài chính</bookmark_value><bookmark_value>sự thanh toán, tham khảo: khấu hao</bookmark_value>"
+msgid "Text Attributes"
+msgstr "Thuộc tính Văn bản"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3143284\n"
-"1\n"
+"02120100.xhp\n"
+"hd_id3145792\n"
+"11\n"
"help.text"
-msgid "Financial Functions Part One"
-msgstr "Hàm Tài Chính (Phần 1)"
+msgid "File Name"
+msgstr "Tên tập tin"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149095\n"
-"2\n"
+"02120100.xhp\n"
+"par_id3150206\n"
+"12\n"
"help.text"
-msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
-msgstr "<variable id=\"finanztext\">Phân loại này chứa các hàm tài chính toán học của <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+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\">Chèn một ô trống cho tên tập tin trong vùng được chọn.</ahelp> Bấm vào để chèn tiêu đề. Bấm và giữ chuột để chọn cả tiêu đề, tên tập tin hoặc đường dẫn/tên tập tin từ trình đơn con. Nếu bạn chưa gán tiêu đề (xem <emph>Tập tin - Thuộc tính</emph>) thì tên tập tin sẽ được chèn vào."
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3153366\n"
+"02120100.xhp\n"
+"par_id3150369\n"
"help.text"
-msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
-msgstr "<bookmark_value>hàm AMORDEGRC</bookmark_value><bookmark_value>khấu hao;sự thanh toán hạ</bookmark_value>"
+msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.222inch\" height=\"0.1665inch\"><alt id=\"alt_id3150518\">Biểu tượng</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3153366\n"
-"359\n"
+"02120100.xhp\n"
+"par_id3154487\n"
+"26\n"
"help.text"
-msgid "AMORDEGRC"
-msgstr "AMORDEGRC"
+msgid "File Name"
+msgstr "Tên tập tin"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147434\n"
-"360\n"
+"02120100.xhp\n"
+"hd_id3155812\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Tính số tiền khấu hao cho một thời kỳ trả hết theo sự thanh toán hạ.</ahelp> Không giống như hàm AMORLINC, ở đây thì dùng một hệ số khấu hao mà không phụ thuộc vào kỳ hạn có thể khấu hao."
+msgid "Sheet Name"
+msgstr "Tên bảng"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3155855\n"
-"361\n"
+"02120100.xhp\n"
+"par_id3148842\n"
+"14\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Chèn một ô trống trong phần đầu/chân để ta thay tên bảng hiện thời vào đó.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147427\n"
-"362\n"
+"02120100.xhp\n"
+"par_id3146870\n"
"help.text"
-msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-msgstr "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Biểu tượng</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147125\n"
-"363\n"
+"02120100.xhp\n"
+"par_id3147071\n"
+"27\n"
"help.text"
-msgid "<emph>Cost</emph> is the acquisition costs."
-msgstr "<emph>Cost</emph> (Giá) là giá sở hữu."
+msgid "Sheet Name"
+msgstr "Tên bảng"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151074\n"
-"364\n"
+"02120100.xhp\n"
+"hd_id3144768\n"
+"15\n"
"help.text"
-msgid "<emph>DatePurchased</emph> is the date of acquisition."
-msgstr "<emph>DatePurchased</emph> là ngày tháng mua."
+msgid "Page"
+msgstr "Trang"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3144765\n"
-"365\n"
+"02120100.xhp\n"
+"par_id3154960\n"
+"16\n"
"help.text"
-msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
-msgstr "<emph>FirstPeriod</emph> (kỳ đầu) là ngày tháng kết thúc thời kỳ thanh toán đầu tiên."
+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\">Chèn một ô trống vào trong phần đầu/chân trang để đánh số trang. Nhờ vậy tài liệu sẽ được đánh số trang liền mạch.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3156286\n"
-"366\n"
+"02120100.xhp\n"
+"par_id3151304\n"
"help.text"
-msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
-msgstr "<emph>Salvage</emph> là giá trị thanh lý của tài sản vốn ở kết thúc của kỳ hạn có thể khấu hao."
+msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155386\">Biểu tượng</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153415\n"
-"367\n"
+"02120100.xhp\n"
+"par_id3150048\n"
+"28\n"
"help.text"
-msgid "<emph>Period</emph> is the settlement period to be considered."
-msgstr "<emph>Period</emph> (Kỳ) là thời kỳ thanh toán cần tính."
+msgid "Page"
+msgstr "Trang"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155064\n"
-"368\n"
+"02120100.xhp\n"
+"hd_id3146962\n"
+"17\n"
"help.text"
-msgid "<emph>Rate</emph> is the rate of depreciation."
-msgstr "<emph>Rate</emph> (Tỷ lệ) là tỷ lệ khấu hao."
+msgid "Pages"
+msgstr "Trang"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3153765\n"
+"02120100.xhp\n"
+"par_id3153812\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
-msgstr "<bookmark_value>hàm AMORLINC</bookmark_value><bookmark_value>khấu hao;sự thanh toán thẳng</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Chèn một ô trống vào trong phần đầu/chân trang để chứa tổng số trang của tài liệu.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3153765\n"
-"369\n"
+"02120100.xhp\n"
+"par_id3149315\n"
"help.text"
-msgid "AMORLINC"
-msgstr "AMORLINC"
+msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155757\">Biểu tượng</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159264\n"
-"370\n"
+"02120100.xhp\n"
+"par_id3147499\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Tính khấu hao trong một thời kỳ thanh toán dưới dạng thanh toán tuyến tính.</ahelp>"
+msgid "Pages"
+msgstr "Trang"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3150044\n"
-"371\n"
+"02120100.xhp\n"
+"hd_id3149050\n"
+"19\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Date"
+msgstr "Ngày"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147363\n"
-"372\n"
+"02120100.xhp\n"
+"par_id3153960\n"
+"20\n"
"help.text"
-msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-msgstr "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+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\">Chèn một ô trống vào trong phần đầu/chân trang để chứa ngày hiện tại, xuất hiện trong tất cả các trang.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146920\n"
-"373\n"
+"02120100.xhp\n"
+"par_id3147299\n"
"help.text"
-msgid "<emph>Cost</emph> means the acquisition costs."
-msgstr "<emph>Cost</emph> (Giá) có nghĩa là giá sở hữu."
+msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3150394\">Biểu tượng</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3163807\n"
-"374\n"
+"02120100.xhp\n"
+"par_id3150540\n"
+"30\n"
"help.text"
-msgid "<emph>DatePurchased</emph> is the date of acquisition."
-msgstr "<emph>DatePurchased</emph> là ngày tháng mua."
+msgid "Date"
+msgstr "Ngày"
-#: 04060103.xhp
+#: 02120100.xhp
+#, fuzzy
msgctxt ""
-"04060103.xhp\n"
-"par_id3148488\n"
-"375\n"
+"02120100.xhp\n"
+"hd_id3147610\n"
+"21\n"
"help.text"
-msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
-msgstr "<emph>FirstPeriod</emph> (kỳ đầu) là ngày tháng kết thúc thời kỳ thanh toán đầu tiên."
+msgid "Time"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThời gian"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149530\n"
-"376\n"
+"02120100.xhp\n"
+"par_id3145638\n"
+"22\n"
"help.text"
-msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
-msgstr "<emph>Salvage</emph> là giá trị thanh lý của tài sản vốn ở kết thúc của kỳ hạn có thể khấu hao."
+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\">Chèn một ô trống trong phần đầu/chân trang để chứa thời điểm hiện tại, xuất hiện trong tất cả các trang.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148633\n"
-"377\n"
+"02120100.xhp\n"
+"par_id3153122\n"
"help.text"
-msgid "<emph>Period</emph> is the settlement period to be considered."
-msgstr "<emph>Period</emph> (Kỳ) là thời kỳ thanh toán cần tính."
+msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3146884\">Biểu tượng</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
+#, fuzzy
msgctxt ""
-"04060103.xhp\n"
-"par_id3150982\n"
-"378\n"
+"02120100.xhp\n"
+"par_id3157904\n"
+"31\n"
"help.text"
-msgid "<emph>Rate</emph> is the rate of depreciation."
-msgstr "<emph>Rate</emph> (Tỷ lệ) là tỷ lệ khấu hao."
+msgid "Time"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThời gian"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3145257\n"
+"02140000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ACCRINT function</bookmark_value>"
-msgstr "<bookmark_value>hàm ACCRINT</bookmark_value>"
+msgid "Fill"
+msgstr "Điền"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3145257\n"
-"335\n"
+"02140000.xhp\n"
+"bm_id8473769\n"
"help.text"
-msgid "ACCRINT"
-msgstr "ACCRINT"
+msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
+msgstr "<bookmark_value>điền;danh sách chọn</bookmark_value><bookmark_value>danh sách chọn;điền ô</bookmark_value>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3151276\n"
+"02140000.xhp\n"
+"hd_id3153876\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
-msgstr "<bookmark_value>tiền lãi để dồn lại;tiền trả định kỳ</bookmark_value>"
+msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
+msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Điền\">Điền</link>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151276\n"
-"336\n"
+"02140000.xhp\n"
+"par_id3156285\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Tính tiền lãi để dồn lại trong trường hợp trả tiền định kỳ.</ahelp>"
+msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+msgstr "<ahelp hid=\".\">Tự động điền nội dung cho các ô.</ahelp>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3152581\n"
-"337\n"
+"02140000.xhp\n"
+"par_id3147343\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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 "Trong các trình đơn ngữ cảnh của $[officename] Calc có lệnh <link href=\"text/scalc/01/02140000.xhp\" name=\"các tuỳ chọn khác\">tuỳ chọn bổ sung</link> để điền các ô."
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159092\n"
-"338\n"
+"02140000.xhp\n"
+"hd_id3149207\n"
+"7\n"
"help.text"
-msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
-msgstr "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
+msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Bảng\">Bảng</link>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150519\n"
-"339\n"
+"02140000.xhp\n"
+"hd_id3155111\n"
+"8\n"
"help.text"
-msgid "<emph>Issue</emph> is the issue date of the security."
-msgstr "<emph>Issue</emph> (Cấp) là ngày tháng đã cấp chứng khoán."
+msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Hàng\">Dãy</link>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155376\n"
-"340\n"
+"02140000.xhp\n"
+"par_id3152994\n"
+"3\n"
"help.text"
-msgid "<emph>FirstInterest</emph> is the first interest date of the security."
-msgstr "<emph>FirstInterest</emph> là ngày trả tiền lãi thứ nhất của chứng khoán."
+msgid "<emph>Filling cells using context menus:</emph>"
+msgstr "<emph>Điền các ô thông qua trình đơn ngữ cảnh:</emph>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3166431\n"
-"341\n"
+"02140000.xhp\n"
+"par_id3145384\n"
+"4\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
-msgstr "<emph>Settlement</emph> là ngày vào đó sẽ tính tiền lãi để dồn lại đến điểm thời đó."
+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 "Mở <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"trình đơn ngữ cảnh\">trình đơn ngữ cảnh</link> khi đặt vị trí trong một ô và chọn <emph>Danh sách chọn</emph>."
-#: 04060103.xhp
-#, fuzzy
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154486\n"
-"342\n"
+"02140000.xhp\n"
+"par_id3156450\n"
+"5\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
-msgstr "<emph>Tỷ_lệ</emph> là lãi suất danh nghĩa hàng năm (lãi suất trái phiếu)."
+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\">Một hộp danh sách chứa tất cả các văn bản tìm được trong cột hiện thời sẽ được hiển thị.</ahelp> Văn bản trong danh sách sẽ được xếp theo thứ tự abc. Các mục xuất hiện nhiều lần sẽ được gộp thành 1."
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3156445\n"
-"343\n"
+"02140000.xhp\n"
+"par_id3148699\n"
+"6\n"
"help.text"
-msgid "<emph>Par</emph> is the par value of the security."
-msgstr "<emph>Par</emph> là giá trị danh nghĩa của chứng khoán."
+msgid "Click one of the listed entries to copy it to the cell."
+msgstr "Bấm vào một trong các mục để chép nó vào ô."
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149406\n"
-"344\n"
+"02140100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "Down"
+msgstr "Xuống"
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3148699\n"
-"345\n"
+"02140100.xhp\n"
+"hd_id3150792\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Xuống\">Xuống</link>"
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148599\n"
-"346\n"
+"02140100.xhp\n"
+"par_id3153969\n"
+"2\n"
"help.text"
-msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
-msgstr "Một chứng khoán được cấp vào ngày 2001-02-28. Ngày trả tiền lãi thứ nhất đã được đặt thành 2001-05-01. Lãi suất là 0.1 hoặc 10%, và giá trị danh nghĩa là 1000 đơn vị tiền tệ. Tiền lãi được trả mỗi sáu tháng (tần số là 2). Cơ bản là phương pháp Mỹ (0). Bao nhiêu tiền lãi đã tích lũy?"
+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\">Điền nội dung của ô đầu tiên trong một phạm vi có ít nhất 2 hàng được chọn vào tất cả các ô trong phạm vi.</ahelp>"
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148840\n"
-"347\n"
+"02140100.xhp\n"
+"par_id3145787\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
-msgstr "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> trả về 16.94444."
+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 "Nếu phạm vi đã chọn chỉ có 1 cột, nội dung của ô đầu tiên sẽ được chép cho tất cả các ô còn lại. Nếu có vài cột được chọn, nội dung của ô đầu tiên tương ứng sẽ được sao chép xuống."
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3151240\n"
+"02140200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
-msgstr "<bookmark_value>hàm ACCRINTM</bookmark_value><bookmark_value>tiền lãi tích lũy;tiền trả chỉ một lần</bookmark_value>"
+msgid "Right"
+msgstr "Bên Phải"
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3151240\n"
-"348\n"
+"02140200.xhp\n"
+"hd_id3153896\n"
+"1\n"
"help.text"
-msgid "ACCRINTM"
-msgstr "ACCRINTM"
+msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Bên phải\">Bên phải</link>"
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3157981\n"
-"349\n"
+"02140200.xhp\n"
+"par_id3153361\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Tính tiền lãi để dồn lại của một chứng khoán trong trường hợp trả chỉ một lần vào ngày thanh toán.</ahelp>"
+msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Điền nội dung của ô ngoài cùng bên trái trong phạm vi vào các ô còn lại trong phạm vi đó.</ahelp>"
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3159097\n"
-"350\n"
+"02140200.xhp\n"
+"par_id3154684\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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 "Nếu một phạm vi chỉ có một hàng được chọn, nội dung của ô ngoài cùng bên trái sẽ được chép sang các ô còn lại. Nếu bạn đã chọn  một vài hàng, mỗi ô ngoài cùng bên trái sẽ được chép sang các ô còn lại bên phải nó."
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147074\n"
-"351\n"
+"02140300.xhp\n"
+"tit\n"
"help.text"
-msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
-msgstr "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
+msgid "Up"
+msgstr "Lên"
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3144773\n"
-"352\n"
+"02140300.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "<emph>Issue</emph> is the issue date of the security."
-msgstr "<emph>Issue</emph> (Cấp) là ngày tháng đã cấp chứng khoán."
+msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
+msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Lên\">Lên</link>"
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154956\n"
-"353\n"
+"02140300.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
-msgstr "<emph>Settlement</emph> là ngày vào đó sẽ tính tiền lãi để dồn lại đến điểm thời đó."
+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\">Điền nội dung ô dưới cùng trong phạm vi được chọn vào các ô khác cùng phạm vi.</ahelp>"
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153972\n"
-"354\n"
+"02140300.xhp\n"
+"par_id3150447\n"
+"3\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
-msgstr "<emph>Rate</emph> (Tỷ lệ) là lãi suất danh nghĩa hàng năm (lãi suất trái phiếu)."
+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 "Nếu phạm vi đã chọn chỉ có 1 cột, nội dung của ô dưới cùng sẽ được chép sang các ô khác. Nếu có nhiều cột được chọn, nội dung của các ô dưới cùng sẽ được chép sang các ô được chọn ở trên nó."
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159204\n"
-"355\n"
+"02140400.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Par</emph> is the par value of the security."
-msgstr "<emph>Par</emph> là giá trị danh nghĩa của chứng khoán."
+msgid "Left"
+msgstr "Trái"
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3155384\n"
-"356\n"
+"02140400.xhp\n"
+"hd_id3153896\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Trái\">Trái</link>"
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154541\n"
-"357\n"
+"02140400.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
-msgstr "Một chứng khoán được cấp vào ngày 2001-04-01. Ngày đến hạn thanh toán được đặt thành 2001-06-15. Lãi suất là 0,1 hoặc 10%, và giá trị danh nghĩa là 1000 đơn vị tiền tệ. Cơ bản của phép tính hàng ngày/năm là kết toán hàng ngày (3). Bao nhiêu tiền lãi đã dồn lại?"
+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\">Điền nội dung các ô ngoài cùng bên phải vào các ô khác trong cùng phạm vi.</ahelp>"
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149128\n"
-"358\n"
+"02140400.xhp\n"
+"par_id3156280\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
-msgstr "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> trả về 20.54795."
+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 "Nếu phạm vi được chọn chỉ có 1 hàng, nội dung của ô ngoài cùng bên phải sẽ được chép sang các ô khác. Nếu có nhiều hàng, các ô ngoài cùng bên phải sẽ được chép sang các ô bên trái chúng."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3145753\n"
+"02140500.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
-msgstr "<bookmark_value>hàm RECEIVED</bookmark_value><bookmark_value>số tiền được nhận cho chứng khoán lãi suất cố định</bookmark_value>"
+msgid "Fill Sheet"
+msgstr "Điền bảng"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3145753\n"
-"390\n"
+"02140500.xhp\n"
+"hd_id3153897\n"
+"1\n"
"help.text"
-msgid "RECEIVED"
-msgstr "RECEIVED"
+msgid "Fill Sheet"
+msgstr "Điền bảng"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150051\n"
-"391\n"
+"02140500.xhp\n"
+"par_id3150791\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Tính số tiền đã nhận mà được trả đối với một chứng khoán lãi suất cố định vào một điểm thời nào đó.</ahelp>"
+msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
+msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Đặt các tuỳ chọn để chuyển dữ liệu trên bảng tính hoặc phạm vi trong một bảng tính.</ahelp></variable>"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3149385\n"
-"392\n"
+"02140500.xhp\n"
+"par_id3150767\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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 "Khác với việc chép một vùng vào trong bảng nháp, bạn có thể lọc một số thông tin và tính các giá trị. Lệnh này chỉ thực hiện được khi bạn chọn 2 bảng trong tài liệu. Để chọn nhiều bảng, hãy bấm vào thẻ tên bảng khi giữ <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> hoặc Shift."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145362\n"
-"393\n"
+"02140500.xhp\n"
+"hd_id3155131\n"
+"4\n"
"help.text"
-msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
-msgstr "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
+msgid "Filling a Sheet"
+msgstr ""
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154654\n"
-"394\n"
+"02140500.xhp\n"
+"par_id3146119\n"
+"5\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+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 "Để chọn toàn bộ các bảng, hãy bấm vào hộp màu xám nằm ở góc trên bên trái của bảng. Bạn cũng có thể chọn một vùng trong bảng để chép riêng vùng đó."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153011\n"
-"395\n"
+"02140500.xhp\n"
+"par_id3153726\n"
+"6\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+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 "Nhấn <switchinline select=\"sys\"> <caseinline select=\"MAC\">Cmd</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> và bấm vào thẻ của bảng công tác vào đó bạn muốn chèn nội dung."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155525\n"
-"396\n"
+"02140500.xhp\n"
+"par_id3147436\n"
+"7\n"
"help.text"
-msgid "<emph>Investment</emph> is the purchase sum."
-msgstr "<emph>Investment</emph> (Đầu tư) là giá mua."
+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 "Chọn lệnh <emph>Sửa > Điền > Bảng</emph>. Trong hộp thoại hiện lên, hãy đánh dấu kiểm trong mục <emph>Số</emph> (hoặc <emph>Dán tất cả</emph>) nếu bạn muốn kết hợp các phép toán với giá trị. Bạn cũng có thể chọn các phép toán mình muốn trong hộp thoại này."
-#: 04060103.xhp
-#, fuzzy
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155760\n"
-"397\n"
+"02140500.xhp\n"
+"par_id3154942\n"
+"8\n"
"help.text"
-msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
-msgstr "<emph>Hạ_giá</emph> là hệ số bớt giá (theo phần trăm) khi mua chứng khoán."
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3154710\n"
-"398\n"
+"02140500.xhp\n"
+"par_id3156283\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+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 "Hộp thoại này cũng có những mẹo trợ giúp bổ sung, tương tự như hộp thoại <link href=\"text/shared/01/02070000.xhp\" name=\"Dán nội dung\">Dán nội dung</link>."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154735\n"
-"399\n"
+"02140600.xhp\n"
+"tit\n"
"help.text"
-msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
-msgstr "Ngày tháng thanh toán: 1999-02-15, ngày tháng đến hạn thanh toán: 1999-05-15, tiền đầu tư : 1000 đơn vị tiền tệ, bớt giá: 5,75%, cơ bản: kết toán hàng ngày/360 = 2."
+msgid "Fill Series"
+msgstr "Điền chuỗi"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146108\n"
-"400\n"
+"02140600.xhp\n"
+"hd_id3148664\n"
+"1\n"
"help.text"
-msgid "The amount received on the maturity date is calculated as follows:"
-msgstr "Số tiền được nhận vào ngày đến hạn thanh toán được tính như sau :"
+msgid "Fill Series"
+msgstr "Điền chuỗi"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147246\n"
-"401\n"
+"02140600.xhp\n"
+"par_id3148797\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
-msgstr "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> trả về 1014.420266."
+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\">Tự động tạo các chuỗi giá trị với các tuỳ chọn trong hộp thoại này. Hãy đặt các tuỳ chọn như hướng, độ tăng/giảm, đơn vị thời gian và kiểu chuỗi.</ahelp></variable>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3147556\n"
+"02140600.xhp\n"
+"par_id3146976\n"
+"41\n"
"help.text"
-msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
-msgstr "<bookmark_value>hàm PV</bookmark_value><bookmark_value>giá trị hiện tại</bookmark_value><bookmark_value>tính;giá trị hiện tại</bookmark_value>"
+msgid "Before filling a series, first select the cell range."
+msgstr "Hãy chọn phạm vi ô trước khi điền một chuỗi số."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3147556\n"
+"02140600.xhp\n"
+"par_id3145748\n"
"3\n"
"help.text"
-msgid "PV"
-msgstr "PV"
+msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
+msgstr "Để tự động tiếp tục một chuỗi dùng luật giả định, hãy chọn mục <emph>Tự động điền</emph> sau khi mở hộp thoại <emph>Điền chuỗi</emph>."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153301\n"
+"02140600.xhp\n"
+"hd_id3147435\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BW\">Trả về giá trị hiện tại của một đầu tư kết quả do một dãy các sự trả tiền định kỳ.</ahelp>"
+msgid "Direction"
+msgstr "Hướng"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146099\n"
+"02140600.xhp\n"
+"par_id3154729\n"
"5\n"
"help.text"
-msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
-msgstr "Hãy dùng hàm này để tính số tiền cần đầu tư theo một tỷ lệ cố định hôm nay, để nhận được một số tiền cố định (một niên khoán) trong một số thời kỳ đã ghi rõ. Bạn cũng có thể xác định bao nhiêu tiền sẽ còn lại ở kết thúc của thời ký đó. Cũng nên ghi rõ nếu tiền sẽ được trả ở đầu hoặc cuối của mỗi thời kỳ."
+msgid "Determines the direction of series creation."
+msgstr "Xác định hướng tạo ra chuỗi số."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153334\n"
+"02140600.xhp\n"
+"hd_id3145253\n"
"6\n"
"help.text"
-msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
-msgstr "Hãy nhập các giá trị này dưới dạng số, biểu thức hoặc tham chiếu. Nếu, chẳng hạn, tiền lãi được trả hàng năm tại 8%, còn bạn muốn đặt một thág là kỳ, nhập « 8%/12 » vào dưới <emph>Tần số</emph> và %PRODUCTNAME Calc sẽ tự động tính hệ số đúng."
+msgid "Down"
+msgstr "Xuống"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3147407\n"
+"02140600.xhp\n"
+"par_id3155418\n"
"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Tạo một chuỗi hướng xuống trong phạm vi ô đã chọn đối với cột dùng độ tăng giảm đã định cho tới khi đến giá trị cuối.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150395\n"
+"02140600.xhp\n"
+"hd_id3155738\n"
"8\n"
"help.text"
-msgid "PV(Rate; NPer; Pmt; FV; Type)"
-msgstr "PV(Rate; NPer; Pmt; FV; Type)"
+msgid "Right"
+msgstr "Bên Phải"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151341\n"
+"02140600.xhp\n"
+"par_id3149402\n"
"9\n"
"help.text"
-msgid "<emph>Rate</emph> defines the interest rate per period."
-msgstr "<emph>Rate</emph> (tỷ lệ) xác định lãi suất trong mỗi kỳ."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Tạo một chuỗi chạy từ trái sang phải trong phạm vi ô đã chọn, dùng độ tăng giảm đã định, cho tới khi đạt giá trị cuối.</ahelp>"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153023\n"
+"02140600.xhp\n"
+"hd_id3146972\n"
"10\n"
"help.text"
-msgid "<emph>NPer</emph> is the total number of periods (payment period)."
-msgstr "<emph>NPer</emph> là tổng số kỳ (thời kỳ trả)."
+msgid "Up"
+msgstr "Lên"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146323\n"
+"02140600.xhp\n"
+"par_id3153711\n"
"11\n"
"help.text"
-msgid "<emph>Pmt</emph> is the regular payment made per period."
-msgstr "<emph>Pmt</emph> là số tiền được trả định kỳ, trong mỗi thời kỳ."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Tạo một chuỗi hướng lên trên trong phạm vi ô đã chọn, dùng độ tăng giảm đã cho, tới khi đạt đến giá trị cuối.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150536\n"
+"02140600.xhp\n"
+"hd_id3153764\n"
"12\n"
"help.text"
-msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
-msgstr "<emph>FV</emph>, tùy chọn, xác định giá trị tương lai còn lại sau lần cuối cùng trả tiền."
+msgid "Left"
+msgstr "Trái"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146883\n"
+"02140600.xhp\n"
+"par_id3156382\n"
"13\n"
"help.text"
-msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
-msgstr "<emph>Type</emph> (Kiểu) là tùy chọn, và biểu hiện ngày đến hạn trả tiền. « Type=1 » có nghĩa là đến hạn ở đầu của thời kỳ, còn « Type=0 » (mặc định) nghĩa là đến hạn ở kết thúc của thời kỳ."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_idN10B13\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Tạo một chuỗi chạy từ phải sang trái trong phạm vi ô đã chọn, dùng độ tăng giảm được cho, tới khi đạt đến giá trị cuối.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3150037\n"
+"02140600.xhp\n"
+"hd_id3147344\n"
"14\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Series Type"
+msgstr "Kiểu chuỗi"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145225\n"
+"02140600.xhp\n"
+"par_id3149257\n"
"15\n"
"help.text"
-msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
-msgstr "Hãy tính giá trị hiện tại của một đầu tư, nếu 500 đơn vị tiền tệ được trả hàng tháng và lãi suất hàng năm là 8%. Thời kỳ trả là 48 tháng, và 20.000 đơn vị tiền tệ nên còn lại ở kết thúc thời kỳ trả."
+msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
+msgstr "Đặt kiểu chuỗi. Chọn giữa <emph>Cấp số cộng, Cấp số nhân, Ngày tháng</emph> và <emph>Tự động điền</emph>."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155907\n"
+"02140600.xhp\n"
+"hd_id3148488\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
-msgstr "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35.019,37 đơn vị tiền tệ. Dưới các điều kiện đặt tên, bạn phải gửi 35.019,37 đơn vị tiền tệ vào hôm nay, nếu bạn muốn nhận được 500 đơn vị tiền tệ hàng tháng trong khoảng 48 tháng và có 20.000 đơn vị tiền tệ còn lại ở kết thúc. Kiểm tra chéo thì (48×500)+20.000=44.000 đơn vị tiền tệ. Hiệu giữa số tiền này và 35.000 đơn vị tiền tệ được gửi thì đại diện tiền lãi đã trả."
+msgid "Linear"
+msgstr "Tuyến"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149150\n"
+"02140600.xhp\n"
+"par_id3159238\n"
"17\n"
"help.text"
-msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
-msgstr "Nếu bạn nhập tham chiếu vào công thức, thay cho các giá trị này, bạn có thể tính bất cứ số nào kịch bản « Nếu-thì ». Ghi chú : tham chiếu đến hằng phải được xác định dưới dạng tham chiếu tuyệt đối. Các mẫu thí dụ về kiểu công việc này nằm dưới các hàm khấu hao."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Tạo một cấp số cộng với công sai được cho và một giá trị cuối.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3152978\n"
+"02140600.xhp\n"
+"hd_id3149210\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
-msgstr "<bookmark_value>tính;khấu hao</bookmark_value><bookmark_value>hàm SYD</bookmark_value><bookmark_value>khấu hao;hạ cấp số cộng</bookmark_value><bookmark_value>khấu hao hạ cấp số cộng</bookmark_value>"
+msgid "Growth"
+msgstr "Cấp số nhân"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3152978\n"
+"02140600.xhp\n"
+"par_id3150364\n"
"19\n"
"help.text"
-msgid "SYD"
-msgstr "SYD"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Tạo một cấp số nhân với công bội được cho và một giá trị cuối.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148732\n"
+"02140600.xhp\n"
+"hd_id3149528\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DIA\">Trả bề tỷ lệ khấu hao hạ cấp số cộng.</ahelp>"
+msgid "Date"
+msgstr "Ngày"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149886\n"
+"02140600.xhp\n"
+"par_id3150887\n"
"21\n"
"help.text"
-msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
-msgstr "Hãy dùng hàm này để tính số tiền khấu hao trong một thời kỳ của tổng kỳ hạn khấu hao của một đối tượng. Phương pháp khấu hao giảm cấp số cộng thì giảm số tiền khấu hao từ kỳ này đến kỳ kia theo một số tiền cố định."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Tạo một chuỗi ngày tháng dùng độ tăng giảm được cho và một ngày cuối.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3149431\n"
+"02140600.xhp\n"
+"hd_id3150202\n"
"22\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "AutoFill"
+msgstr "Tự động điền vào"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150483\n"
+"02140600.xhp\n"
+"par_id3156288\n"
"23\n"
"help.text"
-msgid "SYD(Cost; Salvage; Life; Period)"
-msgstr "SYD(Cost; Salvage; Life; Period)"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146879\n"
+"02140600.xhp\n"
+"par_id3155811\n"
"24\n"
"help.text"
-msgid "<emph>Cost</emph> is the initial cost of an asset."
-msgstr "<emph>Giá</emph> là giá đầu tiên của một tài sản."
+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 "Chức năng Tự động điền sẽ điền nốt chuỗi giá trị bằng mẫu được cho. Chuỗi 1,3,5 sẽ được điền tiếp với các giá trị 7,9,11,13, v.v... Cách các chuỗi ngày tháng và thời gian sẽ được viết tiếp sẽ phụ thuộc từng trường hợp; ví dụ, sau 01.01.99 và 15.01.99, các giá trị được điền tiếp theo sẽ cách nhau 14 ngày."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147423\n"
+"02140600.xhp\n"
+"hd_id3148700\n"
"25\n"
"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
-msgstr "<emph>Salvage</emph> (giá trị thanh lý) là giá trị của một tài sản sau khi khấu hao."
+msgid "Unit of Time"
+msgstr "Đơn vị thời gian"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151229\n"
+"02140600.xhp\n"
+"par_id3153308\n"
"26\n"
"help.text"
-msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
-msgstr "<emph>Life</emph> (Kỳ hạn) là thời kỳ trong đó một tài sản bị khấu hao."
+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 "Trong phần này bạn có thể đặt đơn vị thời gian mình muốn dùng. Phần này chỉ hoạt động nếu tuỳ chọn <emph>Ngày tháng</emph> đã được chọn trong phần <emph>Kiểu chuỗi</emph>."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147473\n"
+"02140600.xhp\n"
+"hd_id3148868\n"
"27\n"
"help.text"
-msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
-msgstr "<emph>Period</emph> (Thời kỳ) xác định thời kỳ trong đó cần tính khấu hao."
+msgid "Day"
+msgstr "Ngày"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3148434\n"
+"02140600.xhp\n"
+"par_id3148605\n"
"28\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo ra một chuỗi gồm đủ 7 ngày trong tuần.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149688\n"
+"02140600.xhp\n"
+"hd_id3144771\n"
"29\n"
"help.text"
-msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
-msgstr "Một hệ thống ảnh động định giá đầu tiên 50.000 đơn vị tiền tệ sẽ bị khấu hao hàng năm trong 5 năm sau. Giá trị thanh lý sẽ là 10.000 đơn vị tiền tệ. Tính khấu hao trong năm thứ nhất."
+msgid "Weekday"
+msgstr "Ngày làm"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150900\n"
+"02140600.xhp\n"
+"par_id3150108\n"
"30\n"
"help.text"
-msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
-msgstr "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 đơn vị tiền tệ. Số tiền khấu hao trong năm thứ nhất là 13,333.33 đơn vị tiền tệ."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo ra chuỗi chỉ có 5 ngày, bỏ qua Thứ bảy và Chủ nhật.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146142\n"
+"02140600.xhp\n"
+"hd_id3154957\n"
"31\n"
"help.text"
-msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
-msgstr "Để xem toàn cảnh các tỷ lệ khấu hao trong mỗi thời kỳ, tốt nhất khi xác định một bảng khấu hao. Bằng cách nhập vào các công thức khấu hao khác nhau có sẵn cạnh nhau trong <item type=\"productname\">%PRODUCTNAME</item> Calc, bạn có thể thấy dạng khấu hao nào là thích hợp nhất. Hãy nhập bảng như sau :"
+msgid "Month"
+msgstr "Tháng"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155258\n"
+"02140600.xhp\n"
+"par_id3149126\n"
"32\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "<emph>Mode</emph>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo ra một chuỗi ngày có các tháng liên tiếp nhau.</ahelp>"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154558\n"
+"02140600.xhp\n"
+"hd_id3152870\n"
"33\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "<emph>Mode</emph>"
+msgid "Year"
+msgstr "Năm"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3152372\n"
+"02140600.xhp\n"
+"par_id3151300\n"
"34\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "<emph>Mode</emph>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo chuỗi các ngày có các năm liên tiếp nhau.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149949\n"
+"02140600.xhp\n"
+"hd_id3154762\n"
"35\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "<emph>Mode</emph>"
+msgid "Start Value"
+msgstr "Giá trị đầu"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145123\n"
+"02140600.xhp\n"
+"par_id3149381\n"
"36\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "<emph>Mode</emph>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Đặt giá trị bắt đầu cho chuỗi.</ahelp> Dùng giá trị số, ngày tháng hoặc thời gian."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149504\n"
+"02140600.xhp\n"
+"hd_id3153013\n"
"37\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "End Value"
+msgstr "Giá trị cuối"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153778\n"
+"02140600.xhp\n"
+"par_id3153487\n"
"38\n"
"help.text"
-msgid "<item type=\"input\">Initial Cost</item>"
-msgstr "<item type=\"input\">195</item>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Đặt giá trị cuối cho chuỗi số..</ahelp> Dùng số, ngày tháng hoặc thời gian."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159083\n"
+"02140600.xhp\n"
+"hd_id3149312\n"
"39\n"
"help.text"
-msgid "<item type=\"input\">Salvage Value</item>"
-msgstr "<item type=\"input\">195</item>"
+msgid "Increment"
+msgstr "Tăng/Giảm dần"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150002\n"
+"02140600.xhp\n"
+"par_id3154739\n"
"40\n"
"help.text"
-msgid "<item type=\"input\">Useful Life</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153006\n"
-"41\n"
-"help.text"
-msgid "<item type=\"input\">Time Period</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154505\n"
-"42\n"
-"help.text"
-msgid "<item type=\"input\">Deprec. SYD</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150336\n"
-"43\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155926\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">50,000 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153736\n"
-"45\n"
-"help.text"
-msgid "<item type=\"input\">10,000 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150131\n"
-"46\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148766\n"
-"47\n"
-"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159136\n"
-"48\n"
-"help.text"
-msgid "<item type=\"input\">13,333.33 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3151018\n"
-"49\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148397\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146907\n"
-"51\n"
-"help.text"
-msgid "<item type=\"input\">10,666.67 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147356\n"
-"52\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150267\n"
-"53\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">183</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145628\n"
-"54\n"
-"help.text"
-msgid "<item type=\"input\">8,000.00 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149004\n"
-"55\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153545\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154634\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">5,333.33 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147537\n"
-"58\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155085\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3158413\n"
-"60\n"
-"help.text"
-msgid "<item type=\"input\">2,666.67 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154866\n"
-"61\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155404\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148431\n"
-"63\n"
-"help.text"
-msgid "<item type=\"input\">0.00 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156261\n"
-"64\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3083286\n"
-"65\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3083443\n"
-"67\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154815\n"
-"68\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145082\n"
-"70\n"
-"help.text"
-msgid "10"
-msgstr "10"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156307\n"
-"71\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147564\n"
-"73\n"
-"help.text"
-msgid "11"
-msgstr "11"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146856\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150880\n"
-"76\n"
-"help.text"
-msgid "12"
-msgstr "12"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145208\n"
-"77\n"
-"help.text"
-msgid "13"
-msgstr "13"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156113\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">>0</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153625\n"
-"79\n"
-"help.text"
-msgid "<item type=\"input\">Total</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3151297\n"
-"80\n"
-"help.text"
-msgid "<item type=\"input\">40,000.00 currency units</item>"
-msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149979\n"
-"81\n"
-"help.text"
-msgid "The formula in E2 is as follows:"
-msgstr "Ô E2 chứa công thức này:"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155849\n"
-"82\n"
-"help.text"
-msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
-msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156124\n"
-"83\n"
-"help.text"
-msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
-msgstr "Công thức này được nhân đôi trong cột E, đến ô E11 (chọn ô E2, sau đó kéo chuột xuống tới góc dưới bên phải)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147270\n"
-"84\n"
-"help.text"
-msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
-msgstr "Ô E13 chứa công thức được dùng để kiểm tra tổng số các số tiền khấu hao. Nó dùng hàm SUMIF vì các giá trị âm trong phạm vi ô E8:E11 không nên được tính. Điều kiện >0 nằm trong ô A13. Công thưc trong ô E13 là:"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152811\n"
-"85\n"
-"help.text"
-msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
-msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155998\n"
-"86\n"
-"help.text"
-msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
-msgstr "Sau đó thì xem khấu hao trong khoảng 10 năm, hoặc theo giá trị thanh lý 1 đơn vị tiền tệ, hoặc nhập một giá mua đầu tiên khác, v.v."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3155104\n"
-"help.text"
-msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
-msgstr "<bookmark_value>hàm DISC</bookmark_value><bookmark_value>sự cho phép</bookmark_value><bookmark_value>tiền bớt</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3155104\n"
-"379\n"
-"help.text"
-msgid "DISC"
-msgstr "DISC"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153891\n"
-"380\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">Tính tiền bớt theo phần trăm của một chứng khoán.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153982\n"
-"381\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-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)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156014\n"
-"383\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154304\n"
-"384\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159180\n"
-"385\n"
-"help.text"
-msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
-msgstr "<emph>Price</emph> là giá của chứng khoán cho mỗi 100 đơn vị tiền tệ giá trị danh nghĩa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147253\n"
-"386\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
-msgstr "<emph>Redemption</emph> (sự trả hết) là giá trị trả hết của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151174\n"
-"387\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155902\n"
-"388\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
-msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn thanh toán là 2001-11-15. Giá (giá mua) là 97, giá trị đáo hạn là 100. Dùng phép tính kết toán hàng ngày (cơ bản 3), bao cao là sự thanh toán (tiền bớt)?"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152797\n"
-"389\n"
-"help.text"
-msgid "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
-msgstr "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> trả về khoảng 0.0372 hay 3.72 phần trăm."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3154695\n"
-"help.text"
-msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
-msgstr "<bookmark_value>hàm DURATION_ADD</bookmark_value><bookmark_value>các hàm Microsoft Excel</bookmark_value><bookmark_value>thời lượng;chứng khoán lãi suất cố định</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154695\n"
-"402\n"
-"help.text"
-msgid "DURATION_ADD"
-msgstr "DURATION_ADD"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145768\n"
-"403\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Tính thời lượng của một chứng khoán lãi suất cố định, theo năm.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153904\n"
-"404\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153373\n"
-"405\n"
-"help.text"
-msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
-msgstr "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155397\n"
-"406\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148558\n"
-"407\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153096\n"
-"408\n"
-"help.text"
-msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
-msgstr "<emph>Coupon</emph> (Phiếu lãi) là lãi suất trái phiếu hàng năm (lãi suất danh nghĩa)."
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154594\n"
-"409\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>Lợi</emph> là tổng lợi tức hàng năm của chứng khoán."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149906\n"
-"410\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3146995\n"
-"411\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148834\n"
-"412\n"
-"help.text"
-msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
-msgstr "Một chứng khoán được mua vào ngày 2001-00-01; ngày đến hạn thanh toán là 2006-01-01. Lãi suất danh nghĩa là 8%. Lợi tức là 9,0%. Tiền lãi được trả mỗi nửa năm (tần số là 2). Dùng phép tính tiền lãi kết toán hàng ngày (cơ bản 3), thời lượng đã sửa đổi là bao lâu?"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154902\n"
-"413\n"
-"help.text"
-msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-msgstr "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3159147\n"
-"help.text"
-msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
-msgstr "<bookmark_value>lãi suất ròng hàng năm</bookmark_value><bookmark_value>tính;lãi suất ròng hàng năm</bookmark_value><bookmark_value>lãi suất ròng hàng năm</bookmark_value><bookmark_value>hàm EFFECTIVE</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3159147\n"
-"88\n"
-"help.text"
-msgid "EFFECTIVE"
-msgstr "EFFECTIVE"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154204\n"
-"89\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Trả về lãi xuất ròng hàng năm đối với một lãi suất danh nghĩa.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145417\n"
-"90\n"
-"help.text"
-msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
-msgstr "Tiền lãi danh nghĩa thì đại diện tiền lãi phải trả ở kết thúc của một thời kỳ tính. Tiền lãi hiệu dụng sẽ tăng tùy theo số lần trả tiên. Tức là tiền lãi thường được trả một phần mỗi lần (v.d. hàng tháng hoặc hàng quý) trước khi kết thúc của thời kỳ tính."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3150510\n"
-"91\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148805\n"
-"92\n"
-"help.text"
-msgid "EFFECTIVE(Nom; P)"
-msgstr "EFFECTIVE(Nom; P)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149768\n"
-"93\n"
-"help.text"
-msgid "<emph>Nom</emph> is the nominal interest."
-msgstr "<emph>Nom</emph> là tiền lãi danh nghĩa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149334\n"
-"94\n"
-"help.text"
-msgid "<emph>P</emph> is the number of interest payment periods per year."
-msgstr "<emph>P</emph> là số lần trả tiền lãi trong mỗi năm."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154223\n"
-"95\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3144499\n"
-"96\n"
-"help.text"
-msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
-msgstr "Nếu lãi suất danh nghĩa hàng năm là 9,75%, và xác định bốn thời kỳ tính tiền lãi, lãi suất thật (tỷ lệ hiệu dụng) là gì?"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150772\n"
-"97\n"
-"help.text"
-msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% Lãi suất hàng năm hiệu dụng thì là 10.11%."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3147241\n"
-"help.text"
-msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
-msgstr "<bookmark_value>lãi suất hiệu dụng</bookmark_value><bookmark_value>hàm EFFECT_ADD</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3147241\n"
-"414\n"
-"help.text"
-msgid "EFFECT_ADD"
-msgstr "EFFECT_ADD"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147524\n"
-"415\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Tính lãi suất hàng năm hiệu dụng dựa vào lãi suất danh nghĩa và số lần trả tiền lãi trong mỗi năm.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3155364\n"
-"416\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155118\n"
-"417\n"
-"help.text"
-msgid "EFFECT_ADD(NominalRate; NPerY)"
-msgstr "EFFECT_ADD(NominalRate; NPerY)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148907\n"
-"418\n"
-"help.text"
-msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
-msgstr "<emph>NominalRate</emph> là lãi suất danh nghĩa hàng năm."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154274\n"
-"419\n"
-"help.text"
-msgid "<emph>NPerY </emph>is the number of interest payments per year."
-msgstr "<emph>NPerY</emph> là số lần trả tiền lãi trong mỗi năm."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149156\n"
-"420\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3158426\n"
-"421\n"
-"help.text"
-msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
-msgstr "Tính lãi suất hàng năm khi có lãi suất danh nghĩa 5,25% và trả hàng quý."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148927\n"
-"422\n"
-"help.text"
-msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
-msgstr "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> trả về 0.053543 hoặc 5.3534%."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3149998\n"
-"help.text"
-msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
-msgstr "<bookmark_value>calculating;khấu hao hạ cấp số cộng</bookmark_value><bookmark_value>khấu hao hạ cấp số cộng</bookmark_value><bookmark_value>khấu hao;hạ cấp số cộng</bookmark_value><bookmark_value>hàm DDB</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149998\n"
-"99\n"
-"help.text"
-msgid "DDB"
-msgstr "DDB"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159190\n"
-"100\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GDA\">Trả về khấu hao của một tài sản trong một thời kỳ đã ghi rõ, dùng phương pháp giảm cấp số cộng.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152361\n"
-"101\n"
-"help.text"
-msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
-msgstr "Hãy dùng dạng khấu hao này nếu bạn cần thiết một giá trị khấu hao đầu tiên cao hơn như trái ngược với phương pháp khấu hao tuyến tính. Giá trị khấu hao cứ giảm sau mỗi kỳ, và thường được dùng đối với các tài sản mất giá trong một thời gian ngắn sau khi mua (v.d. chiếc xe, máy tính). Lưu ý: giá trị sổ sách không bao giờ bằng không theo cách tính này."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3156038\n"
-"102\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-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)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153237\n"
-"104\n"
-"help.text"
-msgid "<emph>Cost</emph> fixes the initial cost of an asset."
-msgstr "<emph>Cost</emph> (Chi phí) xác định giá mua đầu tiên của một tài sản."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149787\n"
-"105\n"
-"help.text"
-msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
-msgstr "<emph>Salvage</emph> (Giá trị thanh lý) xác định giá trị của một tài sản ở kết thúc của kỳ hạn."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152945\n"
-"106\n"
-"help.text"
-msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
-msgstr "<emph>Life</emph> là số kỳ thời gian (ví dụ, năm hay quý) xác định tài sản dùng được bao lâu."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149736\n"
-"107\n"
-"help.text"
-msgid "<emph>Period</emph> states the period for which the value is to be calculated."
-msgstr "<emph>Period</emph> trạng thái từng kì của giá trị sẽ được tính."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150243\n"
-"108\n"
-"help.text"
-msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
-msgstr "<emph>Factor</emph> (hệ số), tùy chọn, là hệ số theo đó giảm khấu hao. Không nhập giá trị thì hệ số mặc định là 2."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3159274\n"
-"109\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152882\n"
-"110\n"
-"help.text"
-msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
-msgstr "Một hệ thống máy tính được mua với giá trị đầu tiên 75.000 đơn vị tiền tệ. Nó sẽ bị khấu hao hàng tháng trong kỳ hạn 5 năm. Giá trị cuối cùng sẽ là 1 đơn vị tiền tệ. Hệ số là 2."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154106\n"
-"111\n"
-"help.text"
-msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
-msgstr "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1.721,81 đơn vị tiền tệ. Vì vậy, khấu hao giảm đôi trong tháng thứ nhất sau khi mua là 1.721,81 đơn vị tiền tệ."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3149962\n"
-"help.text"
-msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
-msgstr "<bookmark_value>tính;khấu hao hạ cấp số nhân</bookmark_value><bookmark_value>khấu hao hạ cấp số nhân</bookmark_value><bookmark_value>khấu hao;hạ cấp số nhân</bookmark_value><bookmark_value>hàm DB</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149962\n"
-"113\n"
-"help.text"
-msgid "DB"
-msgstr "DB"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148989\n"
-"114\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the double-declining balance method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GDA2\">Trả về khấu hao của một tài sản trong một thời kỳ đã ghi rõ, dùng phương pháp kết toán giảm đôi.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156213\n"
-"115\n"
-"help.text"
-msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
-msgstr "Dạng khấu hao này được dùng nếu bạn muốn có một giá trị khấu hao cao hơn ở đầu của khoảng khấu hao (như trái ngược với khấu hao tuyến tính). Giá trị khấu hao bị giảm trong từng kỳ khấu hao theo khấu hao đã bị trừ khỏi giá đầu tiên."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149807\n"
-"116\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153349\n"
-"117\n"
-"help.text"
-msgid "DB(Cost; Salvage; Life; Period; Month)"
-msgstr "DB(Cost; Salvage; Life; Period; Month)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148462\n"
-"118\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial cost of an asset."
-msgstr "<emph>Giá</emph> là giá đầu tiên của một tài sản."
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148658\n"
-"119\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "<emph>Thanh_lý</emph> là giá trị của một tài sản khi kết thúc thời kỳ khấu hao."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145371\n"
-"120\n"
-"help.text"
-msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
-msgstr "<emph>Life</emph> (đời sống) xác định thời kỳ trong đó một tài sản bị khấu hao."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154608\n"
-"121\n"
-"help.text"
-msgid "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
-msgstr "<emph>Period</emph> (Kỳ) là chiều dài của mỗi thời kỳ. Chiều dài phải được nhập theo cùng một đơn vị ngày tháng với thời kỳ khấu hao."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150829\n"
-"122\n"
-"help.text"
-msgid "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
-msgstr "<emph>Month</emph> (Tháng), tùy chọn, biểu hiện số tháng trong năm khấu hao thứ nhất. Không xác định riêng thì giá trị mặc định là 12."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151130\n"
-"123\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156147\n"
-"124\n"
-"help.text"
-msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
-msgstr "Một hệ thống máy tính có giá đầu tiên 25.000 đơn vị tiền tệ sẽ bị khấu hao trong một khoảng ba năm. Giá trị thanh lý sẽ là 1.000 đơn vị tiền tệ. Mỗi kỳ là 30 ngày."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149513\n"
-"125\n"
-"help.text"
-msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
-msgstr "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1.075,00 đơn vị tiền tệ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159242\n"
-"126\n"
-"help.text"
-msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
-msgstr "Khấu hao giảm cố định của hệ thống máy tính đã mua là 1.075,00 đơn vị tiền tệ."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3153948\n"
-"help.text"
-msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
-msgstr "<bookmark_value>hàm IRR</bookmark_value><bookmark_value>tính;tỷ suất lợi tức nội bộ, tiền trả định kỳ</bookmark_value><bookmark_value>tỷ suất lợi tức nội bộ;tiền trả định kỳ</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153948\n"
-"128\n"
-"help.text"
-msgid "IRR"
-msgstr "IRR"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3143282\n"
-"129\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
-msgstr "<ahelp hid=\"HID_FUNC_IKV\">Tính tỷ suất lợi tức nội bộ của một đầu tư nào đó.</ahelp> Các giá trị đại diện giá trị luồng tiền mặt sau mỗi khoảng thời gian: ít nhất một giá trị phải là số âm (tiền trả), và ít nhất một giá trị phải là số dương (lợi tức)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3150599\n"
-"130\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155427\n"
-"131\n"
-"help.text"
-msgid "IRR(Values; Guess)"
-msgstr "IRR(Values; Guess)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3144758\n"
-"132\n"
-"help.text"
-msgid "<emph>Values</emph> represents an array containing the values."
-msgstr "<emph>Values</emph> (các giá trị) đại diện một mảng chứa các giá trị."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149233\n"
-"133\n"
-"help.text"
-msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
-msgstr "<emph>Guess</emph> (đoán), tùy chọn, là giá trị ước lượng. Một phương pháp lặp đi lặp lại được dùng để tính tỷ suất lợi tức nội bộ. Nếu có thể cung cấp vài giá trị thì nên cung cấp một ước lượng ban đầu để cho phép lặp lại."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151258\n"
-"134\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150630\n"
-"135\n"
-"help.text"
-msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
-msgstr "Giả sử nội dung ô là A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> và A4=<item type=\"input\">1000</item>, công thức <item type=\"input\">=IRR(A1:A4)</item> trả về kết quả 80,24%."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3151012\n"
-"help.text"
-msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
-msgstr "<bookmark_value>tính; lãi suất cho phần trả mỗi lần thanh toán chưa thay đổi</bookmark_value><bookmark_value>lãi suất cho phần trả mỗi lần thanh toán chưa thay đổi</bookmark_value><bookmark_value>hàm ISPMT</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151012\n"
-"314\n"
-"help.text"
-msgid "ISPMT"
-msgstr "ISPMT"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148693\n"
-"315\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">Tính cấp tiền lãi cho các phần trả thanh toán mỗi lần.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154661\n"
-"316\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146070\n"
-"317\n"
-"help.text"
-msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
-msgstr "ISPMT(Rate; Period; TotalPeriods; Invest)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148672\n"
-"318\n"
-"help.text"
-msgid "<emph>Rate</emph> sets the periodic interest rate."
-msgstr "<emph>Rate</emph> (tỷ lệ) đặt lãi suất định kỳ."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145777\n"
-"319\n"
-"help.text"
-msgid "<emph>Period</emph> is the number of installments for calculation of interest."
-msgstr "<emph>Period</emph> (kỳ) là số phần trả mỗi lần để tính tiền lãi."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153678\n"
-"320\n"
-"help.text"
-msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
-msgstr "<emph>TotalPeriods</emph> là tổng số kỳ cần trả tiền mỗi lần."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159390\n"
-"321\n"
-"help.text"
-msgid "<emph>Invest</emph> is the amount of the investment."
-msgstr "<emph>Invest</emph> là số tiền đã đầu tư."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3156162\n"
-"322\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149558\n"
-"323\n"
-"help.text"
-msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
-msgstr "Đối với một số tiền tin dụng 120.000 đơn vị tiền tệ trong thời kỳ 2 năm và phần trả mỗi tháng, tại lãi suất hàng năm 12%, tính số tiền lãi sau 1,5 năm."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150949\n"
-"324\n"
-"help.text"
-msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
-msgstr "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 đơn vị tiền tệ. Tiền lãi hàng tháng sau 1,5 năm là 300 đơn vị tiền tệ."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146812\n"
-"426\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Tiếp tới Hàn Tài Chính Phần 2\">Hàm Tài Chính (Phần 2)</link>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154411\n"
-"427\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
-msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Tiếp tới Hàm Tài Chính Phần 3\">Hàm Tài Chính (Phần 3)</link>"
+msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
+msgstr "Ô \"Tăng/giảm dần\" chỉ định giá trị cần cộng thêm vào mỗi phần tử trong chuỗi số.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Đặt giá trị bước để tăng các phần tử trong chuỗi lên.</ahelp> Các mục này chỉ được tạo ra nếu kiểu chuỗi cấp số cộng, cấp số nhân hoặc ngày tháng được chọn."
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
+"02150000.xhp\n"
"tit\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part Two"
-msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 2"
+msgid "Deleting Contents"
+msgstr "Xoá nội dung"
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3145074\n"
+"02150000.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
-msgstr "<bookmark_value>số ảo trong hàm phân tích</bookmark_value><bookmark_value>số phức trong hàm phân tích</bookmark_value>"
+msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
+msgstr "<bookmark_value>xoá; nội dung ô</bookmark_value><bookmark_value>ô; xoá nội dung</bookmark_value><bookmark_value>bảng tính; xoá nội dung ô</bookmark_value><bookmark_value>nội dung ô; xoá</bookmark_value>"
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3154659\n"
+"02150000.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part Two"
-msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 2"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151242\n"
-"174\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
-msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Thống kê Phân loại\">Thống kê Phân loại</link>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148869\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Hàm phân tích Phần 1\">Hàm phân tích Phần 1</link>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147072\n"
-"240\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
-msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Trở về Toàn cảnh\">Trở về Toàn cảnh</link>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3154959\n"
-"help.text"
-msgid "<bookmark_value>IMABS function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMABS</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154959\n"
-"44\n"
-"help.text"
-msgid "IMABS"
-msgstr "IMABS"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149895\n"
-"45\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">Kết quả là giá trị tuyệt đối của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155382\n"
-"46\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151302\n"
-"47\n"
-"help.text"
-msgid "IMABS(\"ComplexNumber\")"
-msgstr "IMABS(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153974\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
-msgstr "<variable id=\"complex\"><emph>Số_phức</emph> là một số phức được nhập dưới dạng « x+yi » hay « x+yj ».</variable>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149697\n"
-"49\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143222\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
-msgstr "<item type=\"input\">=IMABS(\"5+12j\")</item> trả về 13."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3145357\n"
-"help.text"
-msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMAGINARY</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145357\n"
-"51\n"
-"help.text"
-msgid "IMAGINARY"
-msgstr "IMAGINARY"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146965\n"
-"52\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">Kết quả là hệ số ảo của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153555\n"
-"53\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155522\n"
-"54\n"
-"help.text"
-msgid "IMAGINARY(\"ComplexNumber\")"
-msgstr "IMAGINARY(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3151193\n"
-"56\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155592\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
-msgstr "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> trả về 3."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3146106\n"
-"help.text"
-msgid "<bookmark_value>IMPOWER function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMPOWER</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146106\n"
-"58\n"
-"help.text"
-msgid "IMPOWER"
-msgstr "IMPOWER"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147245\n"
-"59\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">Kết quả là số mũ số nguyên của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150954\n"
-"60\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147501\n"
-"61\n"
-"help.text"
-msgid "IMPOWER(\"ComplexNumber\"; Number)"
-msgstr "IMPOWER(\"Số_phức\"; Số)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155743\n"
-"63\n"
-"help.text"
-msgid "<emph>Number</emph> is the exponent."
-msgstr "<emph>Số</emph> là số mũ."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149048\n"
-"64\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151393\n"
-"65\n"
-"help.text"
-msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
-msgstr "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> trả về -5+12i."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148748\n"
-"help.text"
-msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMARGUMENT</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148748\n"
-"66\n"
-"help.text"
-msgid "IMARGUMENT"
-msgstr "IMARGUMENT"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151341\n"
-"67\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">Kết quả là đối số (góc φ) của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150533\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156402\n"
-"69\n"
-"help.text"
-msgid "IMARGUMENT(\"ComplexNumber\")"
-msgstr "IMARGUMENT(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153019\n"
-"71\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159125\n"
-"72\n"
-"help.text"
-msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
-msgstr "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> trả về 0.927295."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3149146\n"
-"help.text"
-msgid "<bookmark_value>IMCOS function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMCOS</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149146\n"
-"73\n"
-"help.text"
-msgid "IMCOS"
-msgstr "IMCOS"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149725\n"
-"74\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">Kết quả là cosin của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3159116\n"
-"75\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147415\n"
-"76\n"
-"help.text"
-msgid "IMCOS(\"ComplexNumber\")"
-msgstr "IMCOS(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3152980\n"
-"78\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3157901\n"
-"79\n"
-"help.text"
-msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
-msgstr "<item type=\"input\">=IMCOS(\"3+4j\")</item> trả về -27.03-3.85i (đã làm tròn)."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3150024\n"
-"help.text"
-msgid "<bookmark_value>IMDIV function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMDIV</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150024\n"
-"80\n"
-"help.text"
-msgid "IMDIV"
-msgstr "IMDIV"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145825\n"
-"81\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">Kết quả là thương của hai số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150465\n"
-"82\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146942\n"
-"83\n"
-"help.text"
-msgid "IMDIV(\"Numerator\"; \"Denominator\")"
-msgstr "IMDIV(\"Tử_số\"; \"Mẫu_số\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150741\n"
-"84\n"
-"help.text"
-msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
-msgstr "<emph>Tử_số</emph>, <emph>Mẫu_số</emph> là hai số phức được nhập dưới dạng « x+yi » hay « x+yj »."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3151229\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148440\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
-msgstr "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> trả về 5+12i."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3153039\n"
-"help.text"
-msgid "<bookmark_value>IMEXP function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMEXP</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153039\n"
-"87\n"
-"help.text"
-msgid "IMEXP"
-msgstr "IMEXP"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3144741\n"
-"88\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">Kết quả là lũy thừa e và số phức.</ahelp> Hằng số e có giá trị xấp xỉ 2.71828182845904."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145591\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154810\n"
-"90\n"
-"help.text"
-msgid "IMEXP(\"ComplexNumber\")"
-msgstr "IMEXP(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148581\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149253\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
-msgstr "<item type=\"input\">=IMEXP(\"1+j\") </item>trả về 1.47+2.29j (đã làm tròn)."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3149955\n"
-"help.text"
-msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMCONJUGATE</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149955\n"
-"94\n"
-"help.text"
-msgid "IMCONJUGATE"
-msgstr "IMCONJUGATE"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155263\n"
-"95\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">Kết quả là phần bù phức được liên hợp với một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148750\n"
-"96\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153082\n"
-"97\n"
-"help.text"
-msgid "IMCONJUGATE(\"ComplexNumber\")"
-msgstr "IMCONJUGATE(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153326\n"
-"99\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149688\n"
-"100\n"
-"help.text"
-msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
-msgstr "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> trả về 1-j."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3150898\n"
-"help.text"
-msgid "<bookmark_value>IMLN function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMLN</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150898\n"
-"101\n"
-"help.text"
-msgid "IMLN"
-msgstr "IMLN"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146853\n"
-"102\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">Trả về lôga tự nhiên (dựa vào hằng số e) của một số phức.</ahelp> Hằng số e có giá trị xấp xỉ 2,71828182845904."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150008\n"
-"103\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155954\n"
-"104\n"
-"help.text"
-msgid "IMLN(\"ComplexNumber\")"
-msgstr "IMLN(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153565\n"
-"106\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153736\n"
-"107\n"
-"help.text"
-msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
-msgstr "<item type=\"input\">=IMLN(\"1+j\")</item> trả về 0.35+0.79j (đã làm tròn)."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155929\n"
-"help.text"
-msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMLOG10</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155929\n"
-"108\n"
-"help.text"
-msgid "IMLOG10"
-msgstr "IMLOG10"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149882\n"
-"109\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">Kết quả là lôga chung (dựa và cơ số 10) của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154327\n"
-"110\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150128\n"
-"111\n"
-"help.text"
-msgid "IMLOG10(\"ComplexNumber\")"
-msgstr "IMLOG10(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149003\n"
-"113\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151021\n"
-"114\n"
-"help.text"
-msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
-msgstr "<item type=\"input\">=IMLOG10(\"1+j\")</item> trả về 0.15+0.34j (đã làm tròn)."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155623\n"
-"help.text"
-msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMLOG2</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155623\n"
-"115\n"
-"help.text"
-msgid "IMLOG2"
-msgstr "IMLOG2"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150932\n"
-"116\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">Kết quả là lôga nhị phân của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153046\n"
-"117\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145355\n"
-"118\n"
-"help.text"
-msgid "IMLOG2(\"ComplexNumber\")"
-msgstr "IMLOG2(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148768\n"
-"120\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149536\n"
-"121\n"
-"help.text"
-msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
-msgstr "<item type=\"input\">=IMLOG2(\"1+j\")</item> trả về 0.50+1.13j (đã làm tròn)."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3145626\n"
-"help.text"
-msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMPRODUCT</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145626\n"
-"122\n"
-"help.text"
-msgid "IMPRODUCT"
-msgstr "IMPRODUCT"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153545\n"
-"123\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">Kết quả là tích đến 29 số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149388\n"
-"124\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149027\n"
-"125\n"
-"help.text"
-msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
-msgstr "IMPRODUCT(\"Số_phức\"; \"Số_phức1\"; ...)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153228\n"
-"127\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155815\n"
-"128\n"
-"help.text"
-msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
-msgstr "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> trả về 27+11j."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3147539\n"
-"help.text"
-msgid "<bookmark_value>IMREAL function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMREAL</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147539\n"
-"129\n"
-"help.text"
-msgid "IMREAL"
-msgstr "IMREAL"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155372\n"
-"130\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">Kết quả là hệ số thật của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154951\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153927\n"
-"132\n"
-"help.text"
-msgid "IMREAL(\"ComplexNumber\")"
-msgstr "IMREAL(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155409\n"
-"134\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155986\n"
-"135\n"
-"help.text"
-msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
-msgstr "<item type=\"input\">=IMREAL(\"1+3j\")</item> trả về 1."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148431\n"
-"help.text"
-msgid "<bookmark_value>IMSIN function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMSIN</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148431\n"
-"136\n"
-"help.text"
-msgid "IMSIN"
-msgstr "IMSIN"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152591\n"
-"137\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">Kết quả là sin của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149822\n"
-"138\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150387\n"
-"139\n"
-"help.text"
-msgid "IMSIN(\"ComplexNumber\")"
-msgstr "IMSIN(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150613\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154310\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
-msgstr "<item type=\"input\">=IMSIN(\"3+4j\")</item> trả về 3.85+27.02j (đã làm tròn)."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3163826\n"
-"help.text"
-msgid "<bookmark_value>IMSUB function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMSUB</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3163826\n"
-"143\n"
-"help.text"
-msgid "IMSUB"
-msgstr "IMSUB"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149277\n"
-"144\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">Kết quả là hiệu của hai số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149264\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149710\n"
-"146\n"
-"help.text"
-msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
-msgstr "IMSUB(\"Số_phức1\"; \"Số_phức2\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155833\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150963\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
-msgstr "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> trả về 8+j."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3156312\n"
-"help.text"
-msgid "<bookmark_value>IMSUM function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMSUM</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156312\n"
-"150\n"
-"help.text"
-msgid "IMSUM"
-msgstr "IMSUM"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153215\n"
-"151\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">Kết quả là tổng đến 29 số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156095\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152930\n"
-"153\n"
-"help.text"
-msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
-msgstr "IMSUM(\"Số_phức1\"; \"Số_phức2\"; ...)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154640\n"
-"155\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147081\n"
-"156\n"
-"help.text"
-msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
-msgstr "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> trả về 18+7j."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3147570\n"
-"help.text"
-msgid "<bookmark_value>IMSQRT function</bookmark_value>"
-msgstr "<bookmark_value>hàm IMSQRT</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147570\n"
-"167\n"
-"help.text"
-msgid "IMSQRT"
-msgstr "IMSQRT"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156131\n"
-"168\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">Kết quả là căn bậc hai của một số phức.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145202\n"
-"169\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150760\n"
-"170\n"
-"help.text"
-msgid "IMSQRT(\"ComplexNumber\")"
-msgstr "IMSQRT(\"Số_phức\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147268\n"
-"172\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152807\n"
-"173\n"
-"help.text"
-msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
-msgstr "<item type=\"input\">=IMSQRT(\"3+4i\")</item> trả về 2+1i."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3154054\n"
-"help.text"
-msgid "<bookmark_value>COMPLEX function</bookmark_value>"
-msgstr "<bookmark_value>hàm COMPLEX</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154054\n"
-"157\n"
-"help.text"
-msgid "COMPLEX"
-msgstr "COMPLEX"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156111\n"
-"158\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">Kết quả là một số phức được trả về từ một hệ số thực và một hệ số ảo.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154744\n"
-"159\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155999\n"
-"160\n"
-"help.text"
-msgid "COMPLEX(RealNum; INum; Suffix)"
-msgstr "COMPLEX(Số_thực; Ảo; Hậu_tố)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153626\n"
-"161\n"
-"help.text"
-msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
-msgstr "<emph>Số_phức</emph> là hệ số thực của số phức."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149135\n"
-"162\n"
-"help.text"
-msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
-msgstr "<emph>Ảo</emph> là hệ số ảo của số phức."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155849\n"
-"163\n"
-"help.text"
-msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
-msgstr "<emph>Hậu_tố</emph> là hai tùy chọn: « i » hay « j »."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145659\n"
-"164\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143229\n"
-"165\n"
-"help.text"
-msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
-msgstr "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> trả về 3+4j."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155103\n"
-"help.text"
-msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm OCT2BIN</bookmark_value><bookmark_value>chuyển đổi;số bát phân sang số nhị phân</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155103\n"
-"217\n"
-"help.text"
-msgid "OCT2BIN"
-msgstr "OCT2BIN"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146898\n"
-"218\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">Kết quả là số nhị phân cho số bát phân được nhập vào.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146088\n"
-"219\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154303\n"
-"220\n"
-"help.text"
-msgid "OCT2BIN(Number; Places)"
-msgstr "OCT2BIN(Số; Lần_số)"
-
-#: 04060116.xhp
-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>Số</emph> là số bát phân. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153984\n"
-"222\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147493\n"
-"223\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147260\n"
-"224\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
-msgstr "<item type=\"input\">=OCT2BIN(3;3)</item> trả về 011."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3152791\n"
-"help.text"
-msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm OCT2DEC</bookmark_value><bookmark_value>chuyển đổi;số bát phân sang số thập phân</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3152791\n"
-"225\n"
-"help.text"
-msgid "OCT2DEC"
-msgstr "OCT2DEC"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149199\n"
-"226\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">Kết quả là số thập phân cho số bát phân được nhập vào.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3159337\n"
-"227\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153902\n"
-"228\n"
-"help.text"
-msgid "OCT2DEC(Number)"
-msgstr "OCT2DEC(Số)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155326\n"
-"229\n"
-"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là số bát phân. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154698\n"
-"230\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154930\n"
-"231\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
-msgstr "<item type=\"input\">=OCT2DEC(144)</item> trả về 100."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155391\n"
-"help.text"
-msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm OCT2HEX</bookmark_value><bookmark_value>chuyển đổi;số bát phân sang số thập lục</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155391\n"
-"232\n"
-"help.text"
-msgid "OCT2HEX"
-msgstr "OCT2HEX"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148831\n"
-"233\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">Kết quả là số thập lục cho số bát phân được nhập vào.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146988\n"
-"234\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150523\n"
-"235\n"
-"help.text"
-msgid "OCT2HEX(Number; Places)"
-msgstr "OCT2HEX(Số; Lần_số)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159162\n"
-"236\n"
-"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là số bát phân. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145420\n"
-"237\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150504\n"
-"238\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148802\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
-msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> trả về 0064."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
-msgstr "<bookmark_value>hàm CONVERT_ADD</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"175\n"
-"help.text"
-msgid "CONVERT_ADD"
-msgstr "CONVERT_ADD"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"176\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Chuyển đổi một giá trị từ một đơn vị đo sang giá trị tương ứng theo một đơn vị đo khác.</ahelp> Hãy nhập những đơn vị đo một cách trực tiếp dưới dạng văn bản, nằm giữa dấu nháy kép hay dưới dạng một tham chiếu. Nếu bạn nhập những đơn vị đo vào ô, chúng phải tương ứng chính xác với danh sách theo đây, mà phân biệt chữ hoa/thường. Ví dụ, để nhập một l chữ thường (đại diện đơn vị đo lít) vào ô, bạn cần phải gõ một dấu lược « ' », phía trước chữ « l »."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"177\n"
-"help.text"
-msgid "Property"
-msgstr "Thuộc tính"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"178\n"
-"help.text"
-msgid "Units"
-msgstr "Đơn vị"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"179\n"
-"help.text"
-msgid "Weight"
-msgstr "Cân nặng"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"180\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"181\n"
-"help.text"
-msgid "Length"
-msgstr "Độ dài"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"182\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr ""
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"183\n"
-"help.text"
-msgid "Time"
-msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThời gian"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"184\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"185\n"
-"help.text"
-msgid "Pressure"
-msgstr "Áp suất"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"186\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"187\n"
-"help.text"
-msgid "Force"
-msgstr "Lực"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"188\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"189\n"
-"help.text"
-msgid "Energy"
-msgstr "Năng lượng"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"190\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"191\n"
-"help.text"
-msgid "Power"
-msgstr "Năng xuất"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"192\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"193\n"
-"help.text"
-msgid "Field strength"
-msgstr "Cường độ trường"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"194\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"195\n"
-"help.text"
-msgid "Temperature"
-msgstr "Nhiệt độ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"196\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"197\n"
-"help.text"
-msgid "Volume"
-msgstr "Thể tích"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"198\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"199\n"
-"help.text"
-msgid "Area"
-msgstr "Diện tích"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"200\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"201\n"
-"help.text"
-msgid "Speed"
-msgstr "Tốc độ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"202\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"201\n"
-"help.text"
-msgid "Information"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"202\n"
-"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"203\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"204\n"
-"help.text"
-msgid "Prefix"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr ""
+msgid "Deleting Contents"
+msgstr "Xoá nội dung"
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
+"02150000.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "10^-21"
-msgstr ""
+msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
+msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Đặt nội dung cần xoá khỏi ô đang làm việc hoặc phạm vi các ô đã chọn.</ahelp></variable> Áp dụng lên tất cả các bảng nếu nhiều bảng được chọn."
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
+"02150000.xhp\n"
+"par_id3159154\n"
+"21\n"
"help.text"
-msgid "y (yocto)"
+msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
msgstr ""
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
+"02150000.xhp\n"
+"par_id3145367\n"
+"22\n"
"help.text"
-msgid "10^-24"
+msgid "Pressing Delete deletes content without calling the dialog or changing formats."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr "Các đơn vị thông tin \"bit\" và \"byte\" có thể được dẫn trước bởi một trong các tiền tố IEC 60027-2 / IEEE 1541:"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr "ki kibi 1024"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr "Mi mebi 1048576"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr "Gi gibi 1073741824"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr "Ti tebi 1099511627776"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr "Pi pebi 1125899906842620"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr "Ei exbi 1152921504606850000"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr "Zi zebi 1180591620717410000000"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr "Yi yobi 1208925819614630000000000"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146125\n"
-"209\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"210\n"
-"help.text"
-msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr "CONVERT_ADD(Số; \"Từ_đơn_vị\"; \"Đến_đơn_vị\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"211\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "<emph>Số</emph> là số cần chuyển đổi."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"212\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>Từ_đơn_vị</emph> là đơn vị từ đó cần chuyển đổi."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"213\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>ToUnit</emph> là đơn vị mà phép chuyển đổi thực hiện. Các đơn vị phải cùng loại."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156270\n"
-"214\n"
-"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"215\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\")</item> trả về (làm tròn thành hai lần số) 10.14. 10 HP bằng 10.14 PS."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"216\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
-msgstr "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\")</item> trả về (làm tròn thành hai lần số) 6.21. 10 kilômet bằng 6.21 lý. Chữ k là ký tự tiền tố được phép cho thừa số 10³."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3147096\n"
-"help.text"
-msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
-msgstr "<bookmark_value>hàm FACTDOUBLE</bookmark_value><bookmark_value>giai thừa;số tăng dần theo hai</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147096\n"
-"36\n"
-"help.text"
-msgid "FACTDOUBLE"
-msgstr "FACTDOUBLE"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151309\n"
-"37\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Trả về giai thừa đôi của một số.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154666\n"
-"38\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155121\n"
-"39\n"
-"help.text"
-msgid "FACTDOUBLE(Number)"
-msgstr "FACTDOUBLE(Số)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158440\n"
-"40\n"
-"help.text"
-msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
-msgstr "Trả về <emph>Số</emph><emph>!!</emph>, giai thừa đôi của <emph>Số</emph>, mà <emph>Số</emph> là một số nguyên lớn hơn hay bằng 0."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2480849\n"
-"help.text"
-msgid "For even numbers FACTDOUBLE(n) returns:"
-msgstr "Đối với các số chẵn, hàm FACTDOUBLE(n) trả về:"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id4181951\n"
-"help.text"
-msgid "2*4*6*8* ... *n"
-msgstr "2*4*6*8* ... *n"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2927335\n"
-"help.text"
-msgid "For odd numbers FACTDOUBLE(n) returns:"
-msgstr "Đối với các số lẻ, hàm FACTDOUBLE(n) trả về:"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2107303\n"
-"help.text"
-msgid "1*3*5*7* ... *n"
-msgstr "1*3*5*7* ... *n"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id4071779\n"
-"help.text"
-msgid "FACTDOUBLE(0) returns 1 by definition."
-msgstr "FACTDOUBLE(0) trả về 1 theo định nghĩa."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154622\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id7844477\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
-msgstr "<item type=\"input\">=FACTDOUBLE(5)</item> trả về 15."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154116\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
-msgstr "<item type=\"input\">=FACTDOUBLE(6)</item> trả về 48."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id6478469\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
-msgstr "<item type=\"input\">=FACTDOUBLE(0)</item> trả về 1."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"hd_id2794274\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id6776940\n"
-"help.text"
-msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
-msgstr "Hộp thoại <emph>Tùy chọn</emph> cho <link href=\"text/scalc/01/solver.xhp\">Bộ giải</link> được dùng để đặt một số tùy chọn nào đó."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id393993\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Lựa chọn một cơ chế giải. Hộp liệt kê này bị tắt nếu chỉ có một cơ chế giải được cài đặt. Cơ chế giải bổ sung có thể được cài đặt dạng phần mở rộng.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id5871761\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cấu hình bộ giải hiện thời.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id6531266\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nếu mục nhập hiện thời trong hộp liệt kê <emph>Thiết lập</emph> cho phép chỉnh sửa giá trị, bạn có thể nhấn nút <emph>Sửa</emph>. Một hộp thoại xuất hiện, bạn có thể sửa đổi giá trị này.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id3912778\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập hay thay đổi giá trị.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id3163853\n"
-"help.text"
-msgid "Use the Options dialog to configure the current solver engine."
-msgstr "Hãy sử dụng hộp thoại <emph>Tùy chọn</emph> để cấu hình cơ chế giải hiện thời."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id121158\n"
-"help.text"
-msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
-msgstr "Bạn có dịp cài đặt thêm cơ chế giải dưới dạng phần mở rộng, nếu công bố. Hãy mở <emph>Công cụ > Bộ Quản lý Phần mở rộng</emph> và duyệt tới địa chỉ Web cung cấp các phần mở rộng (Extensions) tìm các phần mở rộng thích hợp."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id3806878\n"
-"help.text"
-msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
-msgstr "Trong hộp liệt kê, hãy lựa chọn cơ chế giải cần dùng và cấu hình. Hộp này bị tắt nếu chỉ có một cơ chế giải được cài đặt."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id130619\n"
-"help.text"
-msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
-msgstr "Trong hộp <emph>Thiết lập</emph>, hãy kiểm tra tất cả các thiết lập bạn muốn sử dụng cho thao tác tìm mục đích hiện thời. Nếu tùy chọn đang chỉnh sửa cũng cung cấp thêm tùy chọn, thì nút <emph>Sửa</emph> được bật lên. Nhấn vào nút <emph>Sửa</emph> để mở một hộp thoại trong đó bạn có thể sửa đổi giá trị này."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id9999694\n"
-"help.text"
-msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
-msgstr "Bấm nút <emph>OK</emph> để đồng ý với các thay đổi vừa mới làm, và để trở về hộp thoại <link href=\"text/scalc/01/solver.xhp\">Bộ giải</link>."
-
-#: 05080400.xhp
-msgctxt ""
-"05080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add"
-msgstr "Thêm"
-
-#: 05080400.xhp
-msgctxt ""
-"05080400.xhp\n"
-"hd_id3149457\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
-msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Thêm\">Thêm</link>"
-
-#: 05080400.xhp
-msgctxt ""
-"05080400.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
-msgstr "<ahelp hid=\".uno:AddPrintArea\">Thêm vùng chọn hiện thời vào các vùng in đã xác định.</ahelp>"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Styles and Formatting"
-msgstr "Kiểu dáng và Định dạng"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"bm_id3150447\n"
-"help.text"
-msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
-msgstr "<bookmark_value>Đặt kiểu dáng, xem cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>định dạng; cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>đặt định dạng; cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>xô sơn để áp dụng kiểu dáng</bookmark_value>"
-
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3150447\n"
-"1\n"
+"02150000.xhp\n"
+"par_id3153951\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Kiểu dáng và Định dạng\">Kiểu dáng và Định dạng</link>"
+msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
+msgstr "Dùng nút <emph>Cắt</emph> trên thanh <emph>Chuẩn</emph> để xoá nội dung mà không làm hộp thoại xuất hiện."
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147434\n"
-"2\n"
+"02150000.xhp\n"
+"hd_id3148575\n"
+"3\n"
"help.text"
-msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
-msgstr "Hãy sử dụng cửa sổ <emph>Kiểu dáng và Định dạng</emph> để gán kiểu dáng cho đối tượng và phần văn bản. Bạn có khả năng cập nhật kiểu dáng, sửa đổi kiểu dáng đã có, hay tạo kiểu dáng mới."
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
+"02150000.xhp\n"
"par_id3149665\n"
-"30\n"
-"help.text"
-msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
-msgstr "<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"cửa sổ neo được\">Cửa sổ neo được</link> <emph>Kiểu dáng và định dạng</emph> có thể ở dạng mở trong khi soạn thảo tài liệu."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3150012\n"
-"36\n"
-"help.text"
-msgid "How to apply a cell style:"
-msgstr "Áp dụng một kiểu dáng ô như thế nào :"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3159155\n"
-"37\n"
-"help.text"
-msgid "Select the cell or cell range."
-msgstr "Hãy lựa chọn ô hay phạm vi ô."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3145749\n"
-"38\n"
-"help.text"
-msgid "Double-click the style in the Styles and Formatting window."
-msgstr "Nhấn đôi vào kiểu dáng trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153877\n"
"4\n"
"help.text"
-msgid "Cell Styles"
-msgstr "Kiểu dáng ô"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3145801\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
-msgstr "<ahelp hid=\".uno:ParaStyle\">Hiển thị danh sách các Kiểu dáng Ô cho chức năng <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"định dạng ô gián tiếp\">định dạng ô gián tiếp</link>.</ahelp>"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3150751\n"
-"help.text"
-msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153714\">Biểu tượng</alt></image>"
+msgid "This area lists the options for deleting contents."
+msgstr "Phần này liệt kê các tuỳ chọn để xoá nội dung."
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3154255\n"
+"02150000.xhp\n"
+"hd_id3146975\n"
"5\n"
"help.text"
-msgid "Cell Styles"
-msgstr "Kiểu dáng Ô"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153963\n"
-"7\n"
-"help.text"
-msgid "Page Styles"
-msgstr "Kiểu dáng Trang"
+msgid "Delete All"
+msgstr "Xóa tất cả"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147003\n"
-"9\n"
+"02150000.xhp\n"
+"par_id3154729\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
-msgstr "<ahelp hid=\".uno:PageStyle\">Hiển thị các Kiểu dáng Trang sẵn sàng cho chức năng định dạng trang gián tiếp.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Deletes all content from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Xoá tất cả nội dung có trong phạm vi các ô đã chọn.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3159100\n"
+"02150000.xhp\n"
+"hd_id3156286\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149814\">Biểu tượng</alt></image>"
+msgid "Text"
+msgstr "Văn bản"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3150361\n"
+"02150000.xhp\n"
+"par_id3154015\n"
"8\n"
"help.text"
-msgid "Page Styles"
-msgstr "Kiểu dáng Trang"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3150202\n"
-"10\n"
-"help.text"
-msgid "Fill Format Mode"
-msgstr "Chế độ Định dạng Điền"
+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\">Chỉ xoá văn bản. Định dạng, công thức, số và ngày tháng sẽ không bị ảnh hưởng.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3155531\n"
-"12\n"
+"02150000.xhp\n"
+"hd_id3153840\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Bật/tắt chế độ <emph>Định dạng Điền</emph>. Hãy dùng xô sơn để gán Kiểu dáng được chọn trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>.</ahelp>"
+msgid "Numbers"
+msgstr "Số"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3155087\n"
+"02150000.xhp\n"
+"par_id3148405\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153068\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/numbers\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/numbers\">Chỉ xoá các giá trị số. Các định dạng và công thức sẽ được giữ nguyên.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3156198\n"
+"02150000.xhp\n"
+"hd_id3155764\n"
"11\n"
"help.text"
-msgid "Fill Format Mode"
-msgstr "Chế độ Định dạng Điền"
+msgid "Date & time"
+msgstr "Ngày và Giờ"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3148870\n"
-"13\n"
+"02150000.xhp\n"
+"par_id3149567\n"
+"12\n"
"help.text"
-msgid "How to apply a new style with the paint can:"
-msgstr "Áp dụng một kiểu dáng mới dùng xô sơn như thế nào :"
+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\">Xoá ngày tháng và giá trị thời gian. Định dạng, văn bản và công thức sẽ vẫn được giữ nguyên.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145078\n"
-"27\n"
+"02150000.xhp\n"
+"hd_id3154703\n"
+"13\n"
"help.text"
-msgid "Select the desired style from the Styles and Formatting window."
-msgstr "Hãy lựa chọn kiểu dáng đã muốn trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>."
+msgid "Formulas"
+msgstr "Công thức"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3159098\n"
-"28\n"
+"02150000.xhp\n"
+"par_id3148485\n"
+"14\n"
"help.text"
-msgid "Click the <emph>Fill Format Mode</emph> icon."
-msgstr "Nhấn vào biểu tượng <emph>Chế độ Định dạng Điền</emph>."
+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\">Xoá các công thức. Văn bản, số, định dạng, ngày tháng và thời gian sẽ được giữ nguyên.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3148609\n"
+"02150000.xhp\n"
+"hd_id3150300\n"
"15\n"
"help.text"
-msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
-msgstr "Nhấn vào một ô nào đó để định dạng nó, hoặc kéo con chuột qua một phạm vi nào đó để định dạng toàn bộ phạm vi đó. Lặp lại hành động này cho các ô và phạm vi khác."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3149438\n"
-"29\n"
-"help.text"
-msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
-msgstr "Nhấn lại vào biểu tượng <emph>Chế độ Định dạng Điền</emph> để ra khỏi chế độ này."
+msgid "Comments"
+msgstr "Ghi chú"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3153975\n"
+"02150000.xhp\n"
+"par_id3154658\n"
"16\n"
"help.text"
-msgid "New Style from Selection"
-msgstr "Kiểu dáng mới từ vùng chọn"
+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\">Xoá ghi chú đã thêm vào ô. Tất cả các thành phần khác đều giữ nguyên.</ahelp>"
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3149499\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
-msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Tạo một kiểu dáng mới dựa vào định dạng của một đối tượng đã chọn.</ahelp> Gán một tên cho kiểu dáng này trong hộp thoại <link href=\"text/shared/01/05140100.xhp\" name=\"Tạo kiểu dáng\">Tạo kiểu dáng</link>."
-
-#: 05100000.xhp
-#, fuzzy
-msgctxt ""
-"05100000.xhp\n"
-"par_id3150050\n"
-"help.text"
-msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\">Biểu tượng</alt></image>"
-
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3146963\n"
+"02150000.xhp\n"
+"hd_id3155112\n"
"17\n"
"help.text"
-msgid "New Style from Selection"
-msgstr "Kiểu dáng mới từ vùng chọn"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153813\n"
-"19\n"
-"help.text"
-msgid "Update Style"
-msgstr "Cập nhật Kiểu dáng"
+msgid "Formats"
+msgstr "Định dạng"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3154707\n"
-"21\n"
+"02150000.xhp\n"
+"par_id3146134\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Cập nhật Kiểu dáng được chọn trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>, bằng định dạng hiện thời của đối tượng đã chọn.</ahelp>"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/formats\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/formats\">Xoá các thuộc tính định dạng được áp dụng vào các ô. Nội dung của các ô sẽ được giữ nguyên.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145118\n"
+"02150000.xhp\n"
+"hd_id3150088\n"
+"19\n"
"help.text"
-msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\">Biểu tượng</alt></image>"
+msgid "Objects"
+msgstr "Đối tượng"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147501\n"
+"02150000.xhp\n"
+"par_id3152990\n"
"20\n"
"help.text"
-msgid "Update Style"
-msgstr "Cập nhật Kiểu dáng"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/objects\">Deletes objects. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/objects\">Xoá các đối tượng. Tất cả nội dung của ô sẽ được giữ nguyên.</ahelp>"
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_idN109BE\n"
-"help.text"
-msgid "Style List"
-msgstr "Danh sách Kiểu dáng"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_idN109C2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">Hiển thị danh sách các kiểu dáng từ phân loại kiểu dáng đã chọn.</ahelp>"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_idN109D1\n"
-"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
-msgstr "Trong <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"trình đơn trình đơn ngữ cảnh\">trình đơn trình đơn ngữ cảnh</link>, bạn có thể chọn các lệnh để tạo một kiểu dáng mới, xoá một kiểu dáng do người dùng xác định, hay thay đổi kiểu dáng đã chọn."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3149053\n"
-"24\n"
-"help.text"
-msgid "Style Groups"
-msgstr "Nhóm Kiểu dáng"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3147299\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Liệt kê các nhóm kiểu dáng sẵn sàng.</ahelp>"
-
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
+"02160000.xhp\n"
"tit\n"
"help.text"
-msgid "Creating Names"
-msgstr "Tạo tên"
+msgid "Delete Cells"
+msgstr "Xoá ô"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"bm_id3147264\n"
+"02160000.xhp\n"
+"bm_id3153726\n"
"help.text"
-msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
-msgstr "<bookmark_value>phạm vi ô;tự động tạo tên</bookmark_value><bookmark_value>tên; cho phạm vi ô</bookmark_value>"
+msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; xoá ô bảng</bookmark_value><bookmark_value>cột; xoá</bookmark_value><bookmark_value>hàng; xoá</bookmark_value><bookmark_value>bảng tính; xoá ô bảng</bookmark_value><bookmark_value>xoá;ô bảng/hàng/cột</bookmark_value>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3147264\n"
+"02160000.xhp\n"
+"hd_id3153726\n"
"1\n"
"help.text"
-msgid "Creating Names"
-msgstr "Tạo tên"
+msgid "Delete Cells"
+msgstr "Xoá ô"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153969\n"
+"02160000.xhp\n"
+"par_id3154490\n"
"2\n"
"help.text"
-msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
-msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Cho phép bạn tự động đặt tên cho nhiều phạm vi ô.</ahelp></variable>"
-
-#: 04070300.xhp
-msgctxt ""
-"04070300.xhp\n"
-"par_id3156280\n"
-"13\n"
-"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Hãy lựa chọn vùng chứa tất cả các phạm vi cho chúng cần đặt tên. Sau đó, chọn lệnh <emph>Chèn > Tên > Tạo</emph>. Lệnh này mở hộp thoại <emph>Tạo tên</emph>, trong đó bạn có thể bật những tùy chọn đặt tên thích hợp."
+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\">Xoá hoàn toàn các ô, hàng hoặc cột được chọn. Các ô dưới hoặc bên phải sẽ thế chỗ cho các ô bị xoá.</ahelp></variable> Lưu ý là các tuỳ chọn lúc xoá các ô sẽ được lưu và nạp lại trong lần gọi sau."
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3151116\n"
+"02160000.xhp\n"
+"hd_id3149121\n"
"3\n"
"help.text"
-msgid "Create names from"
-msgstr "Tạo tên từ"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3152597\n"
+"02160000.xhp\n"
+"par_id3150751\n"
"4\n"
"help.text"
-msgid "Defines which part of the spreadsheet is to be used for creating the name."
-msgstr "Xác định phần nào của bảng tính cần dùng để tạo tên."
+msgid "This area contains options for specifying how sheets are displayed after deleting cells."
+msgstr "Phần này chứa các tuỳ chọn để chỉ định cách các bảng được hiển thị như thế nào sau khi xoá các ô."
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3153729\n"
+"02160000.xhp\n"
+"hd_id3155767\n"
"5\n"
"help.text"
-msgid "Top row"
-msgstr "Hàng đầu"
+msgid "Shift cells up"
+msgstr "Dời ô lên trên"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3149263\n"
+"02160000.xhp\n"
+"par_id3153714\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Tạo các tên phạm vi từ hàng đầu của phạm vi đã chọn.</ahelp> Mỗi cột nhận một tên và tham chiếu riêng."
+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\">Dịch các ô nằm bên dưới vào chỗ các ô vừa bị xoá.</ahelp>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3146984\n"
+"02160000.xhp\n"
+"hd_id3156382\n"
"7\n"
"help.text"
-msgid "Left Column"
-msgstr "Cột trái"
+msgid "Shift cells left"
+msgstr "Dời ô sang trái"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153190\n"
+"02160000.xhp\n"
+"par_id3154702\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Tạo các tên phạm vi từ những mục nhập trong cột thứ nhất của phạm vi trang tính đã chọn.</ahelp> Mỗi hàng nhận một tên và tham chiếu riêng."
+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\">Dịch các ô bên phải vào thế chỗ cho các ô vừa bị xoá.</ahelp>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3156284\n"
+"02160000.xhp\n"
+"hd_id3146918\n"
"9\n"
"help.text"
-msgid "Bottom row"
-msgstr "Hàng cuối"
+msgid "Delete entire row(s)"
+msgstr "Xoá toàn bộ hàng"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3147124\n"
+"02160000.xhp\n"
+"par_id3148487\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Tạo những tên phạm vi từ các mục nhập trên hàng cuối cùng trong phạm vi trang tính đã chọn.</ahelp> Mỗi cột nhận một tên và tham chiếu ô riêng."
+msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRows\">Sau khi chọn ít nhất 1 ô, xoá toàn bộ hàng tương ứng khỏi bảng.</ahelp>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3154731\n"
+"02160000.xhp\n"
+"hd_id3155114\n"
"11\n"
"help.text"
-msgid "Right Column"
-msgstr "Cột phải"
+msgid "Delete entire column(s)"
+msgstr "Xoá toàn bộ cột"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153158\n"
+"02160000.xhp\n"
+"par_id3150086\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Tạo những tên phạm vi từ các mục nhập trong cột cuối cùng trong phạm vi trang tính đã chọn.</ahelp> Mỗi hàng nhận một tên và tham chiếu ô riêng."
+msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumns\">Sau khi chọn ít nhất 1 ô, xoá toàn bộ cột tương ứng ra khỏi bảng.</ahelp>"
+
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3166424\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Xoá nội dung\">Xoá nội dung</link>"
#: 02170000.xhp
-#, fuzzy
msgctxt ""
"02170000.xhp\n"
"tit\n"
@@ -6430,7 +2003,6 @@ msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sh
msgstr "<bookmark_value>bảng tính; xoá</bookmark_value><bookmark_value>trang tính; xoá</bookmark_value><bookmark_value>xoá; bảng tính</bookmark_value>"
#: 02170000.xhp
-#, fuzzy
msgctxt ""
"02170000.xhp\n"
"hd_id3156424\n"
@@ -6493,4650 +2065,3523 @@ msgctxt ""
msgid "Cancels the dialog. No delete is performed."
msgstr "Huỷ bỏ hộp thoại. Không thực hiện xoá."
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
+"02180000.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "Move or Copy a Sheet"
+msgstr "Di chuyển hay sao chép một bảng"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"bm_id3154758\n"
+"02180000.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
-msgstr "<bookmark_value>tổng phụ; tùy chọn sắp xếp</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; di chuyển</bookmark_value><bookmark_value>bảng tính; sao chép</bookmark_value><bookmark_value>di chuyển; bảng tính</bookmark_value><bookmark_value>sao chép; bảng tính</bookmark_value>"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3154758\n"
+"02180000.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
+msgid "Move or Copy a Sheet"
+msgstr "Di chuyển hay sao chép một bảng"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3154124\n"
+"02180000.xhp\n"
+"par_id3154686\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Hãy ghi rõ thiết lập để tính và hiển thị tổng phụ.</ahelp>"
+msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
+msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Di chuyển hoặc chép một bảng tới vị trí khác trong tài liệu hoặc sang một tài liệu khác.</ahelp></variable>"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3156422\n"
+"02180000.xhp\n"
+"par_id2282479\n"
+"help.text"
+msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr "Khi bạn chép và dán các ô có <link href=\"text/scalc/01/04060102.xhp\">giá trị ngày tháng</link> giữa các bảng tính khác nhau, cả 2 tài liệu bảng tính phải được đặt cùng 1 ngày tháng gốc. Nếu ngày tháng gốc khác đi, ngày tháng hiển thị trên 2 bảng tính sẽ khác nhau!"
+
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"hd_id3163710\n"
"3\n"
"help.text"
-msgid "Page break between groups"
-msgstr "Ngắt trang giữa các nhóm"
+msgid "To Document"
+msgstr "Vào tài liệu"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3147317\n"
+"02180000.xhp\n"
+"par_id3148645\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Chèn một trang mới vào phía mỗi nhóm dữ liệu đã tính tổng phụ.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Hiện nơi cần chuyển hoặc chép bảng hiện thời sang.</ahelp> Chọn <emph>Tài liệu mới</emph> nếu bạn muốn tạo một tài liệu mới để chuyển hoặc chép bảng tính sang đó."
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3146985\n"
+"02180000.xhp\n"
+"hd_id3154012\n"
"5\n"
"help.text"
-msgid "Case sensitive"
-msgstr "Phân biệt chữ hoa/thường"
+msgid "Insert Before"
+msgstr "Chèn phía trước"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3153190\n"
+"02180000.xhp\n"
+"par_id3145366\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Tính lại các tổng phụ khi bạn thay đổi chữ hoa/thường của một nhãn dữ liệu.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">Bảng hiện thời được di chuyển hoặc sao chép tới trước bảng đã chọn.</ahelp> Tuỳ chọn <emph>di chuyển đến vị trí cuối</emph> sẽ đặt bảng hiện tại ở cuối."
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3151119\n"
+"02180000.xhp\n"
+"hd_id3153726\n"
"7\n"
"help.text"
-msgid "Pre-sort area according to groups"
-msgstr "Sắp xếp sẵn vùng tùy theo nhóm"
+msgid "Copy"
+msgstr "Chép"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3149664\n"
+"02180000.xhp\n"
+"par_id3144764\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sắp xếp vùng bạn đã chọn trong hộp <emph>Nhóm lại theo</emph> của các thẻ Nhóm tùy theo những cột bạn đã chọn.</ahelp>"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3153951\n"
-"9\n"
-"help.text"
-msgid "Sort"
-msgstr "Sắp xếp"
-
-#: 12050200.xhp
-#, fuzzy
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3145252\n"
-"11\n"
-"help.text"
-msgid "Include formats"
-msgstr "Bao gồm định dạng"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3147125\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Cũng tính các thuộc tính định dạng trong khi sắp xếp.</ahelp>"
-
-#: 12050200.xhp
-#, fuzzy
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3155418\n"
-"13\n"
-"help.text"
-msgid "Custom sort order"
-msgstr "Thứ tự sắp xếp riêng"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3149400\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Theo một thứ tự sắp xếp riêng bạn đã xác định dưới mục trình đơn <emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > Danh sách Sắp xếp</emph>.</ahelp>"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3149121\n"
-"15\n"
-"help.text"
-msgid "Ascending"
-msgstr "Tăng dần"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Chỉ định bảng cần được chép. Nếu bỏ dấu kiểm của tuỳ chọn này, bảng sẽ được di chuyển thay vì sao chép lại.</ahelp> Đây là tuỳ chọn mặc định."
-#: 12050200.xhp
+#: 02190000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3155068\n"
-"16\n"
+"02190000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sắp xếp từ giá trị nhỏ nhất lên giá trị lớn nhất. Bạn có thể xác định các quy tắc sắp xếp dưới mục trình đơn <emph>Dữ liệu > Sắp xếp > Tùy chọn</emph>. Bạn cũng có thể xác định giá trị mặc định dưới <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>.</ahelp>"
+msgid "Delete Manual Breaks"
+msgstr "Xoá chỗ ngắt tự làm"
-#: 12050200.xhp
+#: 02190000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3155443\n"
-"17\n"
+"02190000.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "Descending"
-msgstr "Giảm dần"
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Xoá chỗ ngắt tự làm\">Xoá chỗ ngắt tự làm</link>"
-#: 12050200.xhp
+#: 02190000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3153766\n"
-"18\n"
+"02190000.xhp\n"
+"par_id3154365\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sắp xếp từ giá trị lớn nhất xuống giá trị nhỏ nhất. Bạn có thể xác định các quy tắc sắp xếp dưới mục trình đơn <emph>Dữ liệu > Sắp xếp > Tùy chọn</emph>. Bạn cũng có thể xác định giá trị mặc định dưới <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kiểu chỗ ngắt tự làm mà bạn muốn xoá.</ahelp>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
+"02190100.xhp\n"
"tit\n"
"help.text"
-msgid "Add-in for Programming in $[officename] Calc"
-msgstr "Phần bổ trợ để lập trình trong $[officename] Calc"
+msgid "Row Break"
+msgstr "Ngắt cột"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"bm_id3151076\n"
+"02190100.xhp\n"
+"bm_id3156326\n"
"help.text"
-msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
-msgstr "<bookmark_value>lập trình; phần bổ trợ</bookmark_value><bookmark_value>thư viện chia sẻ; lập trình</bookmark_value><bookmark_value>hàm DLL bên ngoài</bookmark_value><bookmark_value>hàm; DLL bổ trợ của $[officename] Calc</bookmark_value><bookmark_value>phần bổ trợ; để lập trình</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; xoá ngắt hàng</bookmark_value><bookmark_value>xoá;ngắt hàng tự làm</bookmark_value><bookmark_value>ngắt hàng; xoá</bookmark_value>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3151076\n"
+"02190100.xhp\n"
+"hd_id3156326\n"
"1\n"
"help.text"
-msgid "Add-in for Programming in $[officename] Calc"
-msgstr "Phần bổ trợ để lập trình trong $[officename] Calc"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147001\n"
-"220\n"
-"help.text"
-msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
-msgstr "Phương pháp mở rộng Calc bằng cách dùng Phần bổ trợ mà được diễn tả sau đây đã cũ. Những giao diện vẫn còn hợp lệ và được hỗ trợ, để đảm bảo tương thích với các Phần bổ trợ đã có, nhưng để lập trình Phần bổ trợ mới, bạn nên sử dụng các <link href=\"text/shared/guide/integratinguno.xhp\" name=\"hàm API\">hàm API</link> mới."
+msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Ngắt hàng\">Ngắt hàng</link>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150361\n"
+"02190100.xhp\n"
+"par_id3154366\n"
"2\n"
"help.text"
-msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
-msgstr "$[officename] Calc có thể được mở rộng dùng Phần bổ trợ, các mô-đun lập trình bên ngoài mà cung cấp các hàm thêm để thao tác bảng tính. Các hàm thêm này được liêt kê trong <emph>Trợ lý Hàm</emph>, trong phần loại <emph>Phần bổ trợ</emph>. Nếu bạn muốn lập trình một Phần bổ trợ, bạn có thể tìm biết ở đây những hàm nào phải được xuất bởi <switchinline select=\"sys\"><caseinline select=\"UNIX\">thư viện chia sẻ</caseinline><defaultinline>DLL bên ngoài</defaultinline></switchinline> để gắn Phần bổ trợ vào một cách thành công."
+msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRowbreak\">Xoá ngắt hàng bên trên ô đang làm việc.</ahelp>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149211\n"
+"02190100.xhp\n"
+"par_id3151041\n"
"3\n"
"help.text"
-msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
-msgstr "$[officename] tìm kiếm qua thư mục Phần bổ trợ được xác định trong cấu hình để tìm một <switchinline select=\"sys\"><caseinline select=\"UNIX\">thư viện chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline> thích hợp. Để được $[officename] nhận ra, <switchinline select=\"sys\"><caseinline select=\"UNIX\">thư viện chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline> phải có một số thuộc tính nào đó, như được giải thích sau đây. Thông tin này cho phép bạn lập trình Phần bổ trợ riêng cho <emph>Trợ lý Hàm</emph> của $[officename] Calc."
+msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
+msgstr "Đặt con trỏ vào một ô ngay bên dưới ngắt hàng (một đường nằm ngang) và chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt hàng</emph>. Đường ngắt hàng đã có sẽ bị xoá đi."
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3146981\n"
-"4\n"
+"02190200.xhp\n"
+"tit\n"
"help.text"
-msgid "The Add-In Concept"
-msgstr "Ý niệm Phần bổ trợ"
+msgid "Column Break"
+msgstr "Ngắt cột"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156292\n"
-"5\n"
+"02190200.xhp\n"
+"bm_id3151384\n"
"help.text"
-msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
-msgstr "Mỗi thư viện Bổ trợ thì cung cấp vài hàm khác nhau. Một số hàm được sử dụng cho mục đích quản trị. Bạn có thể chọn gần bất cứ tên nào cho hàm riêng. Tuy nhiên, hàm này cũng phải tùy theo một số quy tắc nào đó về gửi tham số. Những quy ước chính xác về đặt tên và gọi hàm sẽ biến đổi trên các nền tảng khác nhau."
+msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; xoá chỗ ngắt hàng</bookmark_value><bookmark_value>xoá;chỗ ngắt hàng thủ công</bookmark_value><bookmark_value>chỗ ngắt hàng; xoá</bookmark_value>"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3152890\n"
-"6\n"
+"02190200.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
-msgstr "Các hàm của <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ </caseinline><defaultinline>DLL bổ trợ</defaultinline></switchinline>"
+msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Ngắt cột\">Ngắt cột</link>"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148837\n"
-"7\n"
+"02190200.xhp\n"
+"par_id3154124\n"
+"2\n"
"help.text"
-msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
-msgstr "Ít nhất là hai hàm quản trị <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> và <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> phải tồn tại. Sử dụng hai hàm này, có thể quyết định các hàm, kiểu tham số và giá trị trả về. Đối với giá trị trả về, hai kiểu Double (Đôi) và String (Chuỗi) được hỗ trợ. Đối với tham số, những vùng ô <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> và <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> đều được hỗ trợ."
+msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">Xoá một ngắt cột tự làm nằm bên trái của ô đang làm việc.</ahelp>"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148604\n"
-"8\n"
+"02190200.xhp\n"
+"par_id3145173\n"
+"3\n"
"help.text"
-msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
-msgstr "Tham số được gửi dùng tham chiếu. Vì thế, cơ bản có thể thay đổi các giá trị này. Tuy nhiên, thay đổi này không phải được hỗ trợ trong $[officename] Calc vì nó không có ích trong bảng tính."
+msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
+msgstr "Đặt con trỏ trong ô nằm bên phải ngắt cột (một đường nằm dọc) và chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt cột</emph>. Đường ngắt cột sẽ bị xoá đi."
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150112\n"
-"9\n"
+"02200000.xhp\n"
+"tit\n"
"help.text"
-msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
-msgstr "Thư viện có thể được nạp lại trong khi chạy, và các nội dung thư viện có thể được phân tích bởi những hàm quản trị. Đối với mỗi hàm, thông tin sẵn sàng về số đếm và kiểu của tham số, các tên hàm bên trong/ngoài, và một số thứ tự để quản trị."
+msgid "Sheet"
+msgstr "Bảng"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155269\n"
-"10\n"
+"02200000.xhp\n"
+"hd_id3146794\n"
+"1\n"
"help.text"
-msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
-msgstr "Những hàm được gọi đồng bộ và trả về kết quả ngay lập tức. Cũng có thể là hàm thời gian thực (hàm không đồng bộ); tuy nhiên, hàm như vậy không được giải thích chi tiết vì tính phức tạp."
+msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Bảng\">Bảng</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3145077\n"
-"11\n"
+"02200000.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "General information about the interface"
-msgstr "Thông tin chung vê giao diện"
+msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Các lệnh sửa toàn bộ bảng.</ahelp>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146776\n"
-"12\n"
+"02200000.xhp\n"
+"hd_id3150792\n"
+"3\n"
"help.text"
-msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
-msgstr "Số tối đa các tham số trong một hàm Bổ trợ được gắn vào $[officename] Calc là 16: một giá trị trả về và nhiều nhất 15 tham số nhập vào hàm."
+msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
+msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Di chuyển/Sao chép\">Chuyển/Chép</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149899\n"
-"13\n"
+"02200000.xhp\n"
+"hd_id3153968\n"
+"4\n"
"help.text"
-msgid "The data types are defined as follows:"
-msgstr "Những kiểu dữ liệu được xác định như theo đây:"
+msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
+msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Chọn\">Chọn</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151302\n"
-"14\n"
+"02200000.xhp\n"
+"hd_id3163708\n"
+"5\n"
"help.text"
-msgid "<emph>Data types</emph>"
-msgstr "<emph>Kiểu dữ liệu</emph>"
+msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Xoá\">Xoá</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3143222\n"
-"15\n"
+"02200000.xhp\n"
+"hd_id3163733308\n"
"help.text"
-msgid "<emph>Definition</emph>"
-msgstr "<emph>Định nghĩa</emph>"
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Dữ kiện\">Dữ kiện</link>"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149384\n"
-"16\n"
+"02210000.xhp\n"
+"tit\n"
"help.text"
-msgid "CALLTYPE"
-msgstr "CALLTYPE"
+msgid "Selecting Sheets"
+msgstr "Chọn bảng"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146963\n"
-"17\n"
+"02210000.xhp\n"
+"hd_id3156023\n"
+"5\n"
"help.text"
-msgid "Under Windows: FAR PASCAL (_far _pascal)"
-msgstr "Dưới Windows: FAR PASCAL (_far _pascal)"
+msgid "Selecting Sheets"
+msgstr "Chọn bảng"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153809\n"
-"18\n"
+"02210000.xhp\n"
+"par_id3147265\n"
+"1\n"
"help.text"
-msgid "Other: default (operating system specific default)"
-msgstr "Khác: mặc định (giá trị mặc định đặc trưng cho hệ điều hành)"
+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\">Chọn nhiều bảng.</ahelp></variable>"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154734\n"
-"19\n"
+"02210000.xhp\n"
+"hd_id3125863\n"
+"2\n"
"help.text"
-msgid "USHORT"
-msgstr "USHORT"
+msgid "Selected Sheets"
+msgstr "Bảng đã chọn"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155760\n"
-"20\n"
+"02210000.xhp\n"
+"par_id3153969\n"
+"3\n"
"help.text"
-msgid "2 Byte unsigned Integer"
-msgstr "Số nguyên không dấu 2 byte"
+msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
+msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Liệt kê các bảng đang có trong tài liệu hiện thời. Để chọn một bảng, nhấn mũi tên lên xuống để di chuyển tới 1 bảng trong danh sách. Để chọn thêm 1 bảng nữa, giữ phím Ctrl trong khi nhấn phím mũi tên rồi nhấn phím cách. Để chọn nhiều bảng liên tiếp nhau, giữ Shift và dùng các phím mũi tên. </ahelp>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145320\n"
-"21\n"
+"03070000.xhp\n"
+"tit\n"
"help.text"
-msgid "DOUBLE"
-msgstr "DOUBLE"
+msgid "Column & Row Headers"
+msgstr "Phần đầu Cột và Hàng"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150956\n"
-"22\n"
+"03070000.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "8 byte platform-dependent format"
-msgstr "Định dạng phụ thuộc vào nền tảng 8-byte"
+msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; hiển thị phần đầu của cột/hàng</bookmark_value><bookmark_value>hiển thị; phần đầu của cột/hàng</bookmark_value>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146097\n"
-"23\n"
+"03070000.xhp\n"
+"hd_id3156024\n"
+"1\n"
"help.text"
-msgid "Paramtype"
-msgstr "Paramtype"
+msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
+msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Phần đầu của cột và hàng\">Phần đầu cột/hàng</link>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150432\n"
-"24\n"
+"03070000.xhp\n"
+"par_id3147230\n"
+"2\n"
"help.text"
-msgid "Platform-dependent like int"
-msgstr "Phu thuộc vào nền tăng như số nguyên"
+msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
+msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Hiển thị phần đầu của cột và của hàng.</ahelp>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153955\n"
-"25\n"
+"03070000.xhp\n"
+"par_id3156280\n"
+"4\n"
"help.text"
-msgid "PTR_DOUBLE =0 pointer to a double"
-msgstr "PTR_DOUBLE =0 con trỏ chỉ tới một đôi"
+msgid "To hide the column and row headers unmark this menu entry."
+msgstr "Để ẩn đi phần đầu cột và hàng, hãy bỏ dấu kiểm của mục này."
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159262\n"
-"26\n"
+"03070000.xhp\n"
+"par_id3156441\n"
+"3\n"
"help.text"
-msgid "PTR_STRING =1 pointer to a zero-terminated string"
-msgstr "PTR_STRING =1 con trỏ chỉ tới một chuỗi chấm dứt bằng số không"
+msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
+msgstr ""
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148747\n"
-"27\n"
+"03080000.xhp\n"
+"tit\n"
"help.text"
-msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
-msgstr "PTR_DOUBLE_ARR =2 con trỏ chỉ tới một mảng đôi"
+msgid "Value Highlighting"
+msgstr "Tô sáng giá trị"
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147406\n"
-"28\n"
+"03080000.xhp\n"
+"bm_id3151384\n"
"help.text"
-msgid "PTR_STRING_ARR =3 pointer to a string array"
-msgstr "PTR_STRING_ARR =3 con trỏ chỉ tới một mảng chuỗi"
+msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; tô sáng giá trị</bookmark_value><bookmark_value>giá trị;tô sáng</bookmark_value><bookmark_value>tô sáng; giá trị trong bảng</bookmark_value>"
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151392\n"
-"29\n"
+"03080000.xhp\n"
+"hd_id3151384\n"
"help.text"
-msgid "PTR_CELL_ARR =4 pointer to a cell array"
-msgstr "PTR_CELL_ARR =4 con trỏ chỉ tới một mảng ô"
+msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Tô sáng giá trị\">Tô sáng giá trị</link>"
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153028\n"
-"30\n"
+"03080000.xhp\n"
+"par_id3154366\n"
"help.text"
-msgid "NONE =5"
-msgstr "NONE =5"
+msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
+msgstr ""
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3156396\n"
-"31\n"
+"03080000.xhp\n"
+"par_id3125863\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+msgid "To remove the highlighting, unmark the menu entry."
+msgstr "Để xoá bỏ phần tô sáng, hãy bỏ dấu kiểm của mục này."
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153019\n"
-"32\n"
+"03080000.xhp\n"
+"par_id3145785\n"
"help.text"
-msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
-msgstr "Theo đây có mô tả về những hàm này, mà được gọi như là <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
+msgstr ""
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150038\n"
-"33\n"
+"03080000.xhp\n"
+"par_id3153188\n"
"help.text"
-msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
-msgstr "Cho tất cả các hàm <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline>, thông tin sau đây áp dụng:"
+msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
+msgstr "Nếu bật chức năng này, các màu mà bạn đặt trong tài liệu sẽ không được hiển thị. Khi bạn tắt chức năng này, các màu do bạn chọn sẽ lại hiện lên."
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3157876\n"
-"34\n"
+"03090000.xhp\n"
+"tit\n"
"help.text"
-msgid "void CALLTYPE fn(out, in1, in2, ...)"
-msgstr "void CALLTYPE fn(out, in1, in2, ...)"
+msgid "Formula Bar"
+msgstr "Thanh Công thức"
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147616\n"
-"35\n"
+"03090000.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "Output: Resulting value"
-msgstr "Kết xuất: giá trị kết quả"
+msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
+msgstr "<bookmark_value>thanh công thức; bảng tính</bookmark_value><bookmark_value>bảng tính; thanh công thức</bookmark_value>"
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159119\n"
-"36\n"
+"03090000.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
-msgstr "Nhập vào : bất cứ số kiểu nào (đôi&, ký_tự*, đôi*, ký_tự**, Vùng ô), mà <link href=\"text/scalc/01/04060112.xhp\" name=\"Vùng ô\">Vùng ô</link> là một mảng có kiểu mảng đôi, mảng chuỗi hay mảng ô."
+msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Thanh Công thức\">Thanh Công thức</link>"
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3150653\n"
-"37\n"
+"03090000.xhp\n"
+"par_id3156423\n"
+"2\n"
"help.text"
-msgid "GetFunctionCount()"
-msgstr "GetFunctionCount()"
+msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
+msgstr "<ahelp hid=\".uno:InputLineVisible\">Hiển thị hoặc ẩn đi thanh Công thức, dùng để nhập và sửa các công thức.</ahelp> Thanh Công thức là công cụ cực kỳ quan trọng khi làm việc với các bảng tính."
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152981\n"
-"38\n"
+"03090000.xhp\n"
+"par_id3154686\n"
+"4\n"
"help.text"
-msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
-msgstr "Trả về số hàm không có các hàm quản trị của tham số tham chiếu. Mỗi hàm có một số thứ tự duy nhất nằm giữa 0 và nCount-1. Số này sẽ cần thiết về sau cho hai hàm <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> và <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link>."
+msgid "To hide the Formula Bar, unmark the menu item."
+msgstr "Để ẩn đi thanh Công thức, hãy bỏ chọn mục này."
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150742\n"
-"39\n"
+"03090000.xhp\n"
+"par_id3145787\n"
+"3\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Cú pháp</emph>"
+msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
+msgstr "Nếu thanh công thức bị ẩn đi, bạn vẫn có thể sửa các ô bằng cách bật chế độ sửa với phím F2. Sau khi sửa các ô, hãy chấp nhận các thay đổi bằng cách nhấn Enter, hoặc xoá công thức bằng cách nhấn Esc. Nhấn Esc để thoát khỏi chế độ sửa."
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148728\n"
-"40\n"
+"03100000.xhp\n"
+"tit\n"
"help.text"
-msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
-msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+msgid "Page Break Preview"
+msgstr "Xem thử ngắt trang"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154677\n"
-"41\n"
+"03100000.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "<emph>Tham số</emph>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem thử ngắt trang\">Xem thử ngắt trang</link>"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146940\n"
-"42\n"
+"03100000.xhp\n"
+"par_id3150792\n"
+"2\n"
"help.text"
-msgid "USHORT &nCount:"
-msgstr "USHORT &nCount:"
+msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
+msgstr "<ahelp hid=\".uno:PagebreakMode\">Hiển thị các chỗ ngắt trang và vùng in ra trong bảng. Chọn lệnh <emph>Xem > Chuẩn</emph> để tắt chế độ này.</ahelp>"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149893\n"
-"43\n"
+"03100000.xhp\n"
+"par_id3153877\n"
+"13\n"
"help.text"
-msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
-msgstr "Kết xuất: tham chiếu đến một biến, mà nên chứa số các hàm Bổ trợ. Ví dụ, nếu phần bổ trợ cung cấp 5 hàm cho $[officename] Calc, thì nCount=5."
+msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
+msgstr "Trình đơn ngữ cảnh của ô xem thử chỗ ngắt trang chứa các chức năng để chỉnh sửa các ngắt trang, gồm có các tùy chọn sau:"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3147476\n"
-"44\n"
+"03100000.xhp\n"
+"hd_id3154731\n"
+"14\n"
"help.text"
-msgid "GetFunctionData()"
-msgstr "GetFunctionData()"
+msgid "Delete All Manual Breaks"
+msgstr "Xoá mọi chỗ ngắt tự làm"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154841\n"
-"45\n"
+"03100000.xhp\n"
+"par_id3149400\n"
+"15\n"
"help.text"
-msgid "Determines all the important information about an Add-In function."
-msgstr "Quyết định tất cả thông tin quan trọng về một hàm Bổ trợ."
+msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Xoá tất cả các ngắt trang đã tạo trong bảng hiện thời.</ahelp>"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148888\n"
-"46\n"
+"03100000.xhp\n"
+"hd_id3155067\n"
+"18\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Cú pháp</emph>"
+msgid "Add Print Range"
+msgstr "Thêm phạm vi in"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148434\n"
-"47\n"
+"03100000.xhp\n"
+"par_id3155764\n"
+"19\n"
"help.text"
-msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
-msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+msgid "Adds the selected cells to print ranges."
+msgstr "Thêm các ô được chọn vào vùng in."
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149253\n"
-"48\n"
+"04010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "<emph>Tham số</emph>"
+msgid "Manual Break"
+msgstr "Chỗ ngắt tự làm"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149686\n"
-"49\n"
+"04010000.xhp\n"
+"bm_id3153192\n"
"help.text"
-msgid "USHORT& nNo:"
-msgstr "USHORT& nNo:"
+msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; chèn chỗ ngắt</bookmark_value><bookmark_value>chèn; ngắt</bookmark_value><bookmark_value>ngắt trang; chèn vào bảng tính</bookmark_value>"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149949\n"
-"50\n"
+"04010000.xhp\n"
+"hd_id3153192\n"
+"1\n"
"help.text"
-msgid "Input: Function number between 0 and nCount-1, inclusively."
-msgstr "Nhập vào : số thứ tự hàm nằm giữa 0 và nCount-1, kể cả."
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Chỗ ngắt tự làm\">Chỗ ngắt tự làm</link>"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149546\n"
-"51\n"
+"04010000.xhp\n"
+"par_id3125864\n"
+"2\n"
"help.text"
-msgid "char* pFuncName:"
-msgstr "char* pFuncName:"
+msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Lệnh này chèn các ngắt hàng hoặc cột tự làm vào bảng để đảm bảo rằng dữ liệu được in ra như ý bạn muốn. Bạn có thể chèn vào một ngắt trang nằm ngang phía trên, hoặc một ngắt trang nằm dọc ở bên trái của ô đang làm việc.</ahelp>"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148579\n"
-"52\n"
+"04010000.xhp\n"
+"par_id3155133\n"
+"3\n"
"help.text"
-msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
-msgstr "Kết xuất: tên hàm như được lập trình viên thấy, như nó được đặt tên trong <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline>. Tên này không quyết định tên được dùng trong <emph>Trợ lý Hàm</emph>."
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
+msgstr "Chọn <link href=\"text/scalc/01/02190000.xhp\" name=\"Sửa > Xoá chỗ ngắt tự làm\">Sửa > Xoá chỗ ngắt tự làm</link> để xoá các chỗ ngắt bạn đã tạo ra."
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153935\n"
-"53\n"
+"04010100.xhp\n"
+"tit\n"
"help.text"
-msgid "USHORT& nParamCount:"
-msgstr "USHORT& nParamCount:"
+msgid "Row Break"
+msgstr "Ngắt cột"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150142\n"
-"54\n"
+"04010100.xhp\n"
+"bm_id3153821\n"
"help.text"
-msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
-msgstr "Kết xuất: số tham số trong hàm Bổ trợ. Số này phải lớn hơn 0, vì lúc nào cũng có một giá trị kết quả; giá trị tối đa là 16."
+msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
+msgstr "<bookmark_value>bảng; chèn ngắt hàng</bookmark_value><bookmark_value>ngắt hàng; chèn</bookmark_value><bookmark_value>chèn; ngắt hàng tự làm</bookmark_value><bookmark_value>ngắt hàng tự làm</bookmark_value>"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145143\n"
-"55\n"
+"04010100.xhp\n"
+"hd_id3153821\n"
+"1\n"
"help.text"
-msgid "Paramtype* peType:"
-msgstr "Paramtype* peType:"
+msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Ngắt hàng</link>"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148750\n"
-"56\n"
+"04010100.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
-msgstr "Kết xuất: con trỏ chỉ tới một mảng chứa chính xác 16 biến có kiểu Paramtype. Những nParamCount mục nhập đầu tiên được điền bằng kiểu tham số thích hợp."
+msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertRowBreak\">Chèn vào một ngắt hàng (ngắt trang theo chiều ngang) ở phía trên ô đã chọn.</ahelp>"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153078\n"
-"57\n"
+"04010100.xhp\n"
+"par_id3156422\n"
+"3\n"
"help.text"
-msgid "char* pInternalName:"
-msgstr "char* pInternalName:"
+msgid "The manual row break is indicated by a dark blue horizontal line."
+msgstr "Ngắt hàng tự tạo được biểu diễn bằng một đường xanh đậm nằm ngang."
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155261\n"
-"58\n"
+"04010200.xhp\n"
+"tit\n"
"help.text"
-msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
-msgstr "Kết xuất: tên hàm như được người dùng thấy, như nó xuất hiện trong <emph>Trợ lý Hàm</emph>. Chữ có thể có dấu hai chấm ỡ trên."
+msgid "Column Break"
+msgstr "Ngắt cột"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153327\n"
-"59\n"
+"04010200.xhp\n"
+"bm_id3155923\n"
"help.text"
-msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
-msgstr "Hai tham số pFuncName và pInternalName là mảng ký tự, mà được thực hiện với kích cỡ 256 trong $[officename] Calc."
+msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; chèn ngắt cột</bookmark_value><bookmark_value>ngắt cột; chèn</bookmark_value><bookmark_value>chèn; ngắt cột tự làm</bookmark_value><bookmark_value>ngắt cột tự làm</bookmark_value>"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3148567\n"
-"60\n"
+"04010200.xhp\n"
+"hd_id3155923\n"
+"1\n"
"help.text"
-msgid "GetParameterDescription()"
-msgstr "GetParameterDescription()"
+msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Ngắt cột</link>"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153000\n"
-"61\n"
+"04010200.xhp\n"
+"par_id3150447\n"
+"2\n"
"help.text"
-msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
-msgstr "Cung cấp một mô tả ngắn về hàm Bổ trợ và các tham số của nó. Tùy chọn, hàm này cũng có thể được sử dụng để hiển thị một mô tả về hàm và tham số trong <emph>Trợ lý Hàm</emph>."
+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\">Chèn một ngắt cột (ngắt trang theo chiều dọc) sang bên trái ô đang làm việc.</ahelp>"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154501\n"
-"62\n"
+"04010200.xhp\n"
+"par_id3145171\n"
+"3\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Cú pháp</emph>"
+msgid "The manual column break is indicated by a dark blue vertical line."
+msgstr "Ngắt cột tự làm được biểu diễn bằng 1 đường nằm dọc màu xanh đậm."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153564\n"
-"63\n"
+"04020000.xhp\n"
+"tit\n"
"help.text"
-msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
-msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+msgid "Insert Cells"
+msgstr "Chèn các ô"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3157995\n"
-"64\n"
+"04020000.xhp\n"
+"bm_id3156023\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "<emph>Tham số</emph>"
+msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; chèn ô</bookmark_value><bookmark_value>ô; chèn</bookmark_value><bookmark_value>chèn; ô</bookmark_value>"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155925\n"
-"65\n"
+"04020000.xhp\n"
+"hd_id3156023\n"
+"1\n"
"help.text"
-msgid "USHORT& nNo:"
-msgstr "USHORT& nNo:"
+msgid "Insert Cells"
+msgstr "Chèn các ô"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149883\n"
-"66\n"
+"04020000.xhp\n"
+"par_id3150542\n"
+"2\n"
"help.text"
-msgid "Input: Number of the function in the library; between 0 and nCount-1."
-msgstr "Nhập vào : số thứ tự của hàm trong thư viện; giữa 0 và nCount-1."
+msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
+msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Mở hộp thoại <emph> Chèn ô </emph> để chèn các ô mới theo một số cách được chọn.</ahelp></variable> Bạn có thể xoá các ô bằng cách chọn <link href=\"text/scalc/01/02160000.xhp\" name=\"Sửa > Xoá ô\"><emph>Sửa > Xoá ô</emph></link>."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154326\n"
-"67\n"
+"04020000.xhp\n"
+"hd_id3153768\n"
+"3\n"
"help.text"
-msgid "USHORT& nParam:"
-msgstr "USHORT& nParam:"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159139\n"
-"68\n"
+"04020000.xhp\n"
+"par_id3149262\n"
+"4\n"
"help.text"
-msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
-msgstr "Nhập vào : Chỉ định cho tham số nào mà mô tả được đưa ra; các tham số bắt đầu ở 1. Nếu nParam là 0, thì mô tả chính nó nên được cung cấp trong pDesc; trong trường hợp này, pName không có nghĩa."
+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 "Phần này chứa các tuỳ chọn cho phép bạn chèn các ô vào trong bảng. Số lượng và vị trí của ô chèn vào được đặt bằng cách chọn trước một phạm vi các ô trong bảng."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147374\n"
-"69\n"
+"04020000.xhp\n"
+"hd_id3146120\n"
+"5\n"
"help.text"
-msgid "char* pName:"
-msgstr "char* pName:"
+msgid "Shift cells down"
+msgstr "Dời ô xuống"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145245\n"
-"70\n"
+"04020000.xhp\n"
+"par_id3152596\n"
+"6\n"
"help.text"
-msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
-msgstr "Kết xuất: lấy tên hay kiểu của tham số, v.d. từ « Số », « Chuỗi », « Ngày » v.v. Thực hiện trong $[officename] Calc như char[256]."
+msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Di chuyển nội dung của phạm vi đã chọn xuống dưới để nhường chỗ cho các ô mới chèn vào.</ahelp></variable>"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151020\n"
-"71\n"
+"04020000.xhp\n"
+"hd_id3147434\n"
+"7\n"
"help.text"
-msgid "char* pDesc:"
-msgstr "char* pDesc:"
+msgid "Shift cells right"
+msgstr "Dời ô sang phải"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148389\n"
-"72\n"
+"04020000.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
-msgstr "Kết xuất: lấy mô tả của tham số, v.d. « Giá trị ở đó cần tính vũ trụ. » Thực hiện trong $[officename] Calc như char[256]."
+msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Di chuyển nội dung phạm vi được chọn sang phải để nhường chỗ cho các ô mới chèn vào.</ahelp></variable>"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145303\n"
-"73\n"
+"04020000.xhp\n"
+"hd_id3153877\n"
+"9\n"
"help.text"
-msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
-msgstr "pName và pDesc là mảng ký tự, được thực hiện trong $[officename] Calc với kích cỡ 256. Ghi chú rằng sức chứa sẵn sàng trong <emph>Trợ lý Hàm</emph> bị hạn chế, và 256 ký tự không thể được dùng hoàn toàn."
+msgid "Entire row"
+msgstr "Toàn bộ hàng"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3148874\n"
-"76\n"
+"04020000.xhp\n"
+"par_id3155417\n"
+"10\n"
"help.text"
-msgid "Cell areas"
-msgstr "Vùng ô"
+msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
+msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Chèn thêm một hàng. Vị trí của hàng được quyết định bởi vùng bạn chọn trên bảng.</ahelp></variable> Số hàng được chèn tuỳ thuộc vào số hàng đang được chọn. Nội dung hiện có trên các hàng được chọn sẽ được dịch xuống dưới, nhường chỗ cho các hàng thêm vào."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150265\n"
-"77\n"
+"04020000.xhp\n"
+"hd_id3146971\n"
+"11\n"
"help.text"
-msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
-msgstr "Những bảng theo đây chứa thông tin về những cấu trúc dữ liệu nào phải được cung cấp bởi một mô-đun chương trình bên ngoài để gửi vùng ô cho hàm. $[officename] Calc phân biệt ba mảng khác nhau, phụ thuộc vào kiểu dữ liệu."
+msgid "Entire column"
+msgstr "Toàn bộ cột"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3156060\n"
-"78\n"
+"04020000.xhp\n"
+"par_id3155068\n"
+"12\n"
"help.text"
-msgid "Double Array"
-msgstr "Mảng Đôi"
+msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
+msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Chèn thêm cột. Số cột được chèn vào được quyết định bởi số cột đang được chọn. </ahelp></variable> Nội dung ban đầu của các cột sẽ được dịch sang phải, nhường chỗ cho các cột mới thêm vào."
-#: 04060112.xhp
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149540\n"
-"79\n"
+"04030000.xhp\n"
+"tit\n"
"help.text"
-msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
-msgstr "Như một tham số, một vùng ô có giá trị kiểu Số/Đôi có thể được gửi cho hàm. Một mảng đôi trong $[officename] Calc được định nghĩa như theo đây:"
+msgid "Rows"
+msgstr "Hàng"
-#: 04060112.xhp
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149388\n"
-"80\n"
+"04030000.xhp\n"
+"bm_id3150541\n"
"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "<emph>Bù</emph>"
+msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; chèn hàng</bookmark_value><bookmark_value>hàng; chèn</bookmark_value><bookmark_value>chèn; hàng</bookmark_value>"
-#: 04060112.xhp
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154636\n"
-"81\n"
+"04030000.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "<emph>Tên</emph>"
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Hàng\">Hàng</link>"
-#: 04060112.xhp
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153228\n"
-"82\n"
+"04030000.xhp\n"
+"par_id3150767\n"
+"2\n"
"help.text"
-msgid "<emph>Description</emph>"
-msgstr "<emph>Mô tả</emph>"
+msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
+msgstr "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Chèn một hàng mới nằm trên ô đang làm việc.</ahelp> Số hàng được chèn tương ứng với số hàng đang được chọn. Các hàng đã có sẽ được dịch xuống dưới."
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150685\n"
-"83\n"
+"04040000.xhp\n"
+"tit\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Columns"
+msgstr "Cột"
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154869\n"
-"84\n"
+"04040000.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "Col1"
-msgstr "Cột1"
+msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; chèn cột</bookmark_value><bookmark_value>chèn; cột</bookmark_value><bookmark_value>cột; chèn</bookmark_value>"
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147541\n"
-"85\n"
+"04040000.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr "Số thứ tự cột ở góc trên bên trái vùng ô. Đánh số từ 0."
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Cột\">Cột</link>"
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149783\n"
-"86\n"
+"04040000.xhp\n"
+"par_id3150791\n"
+"2\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
+msgstr "<ahelp hid=\".uno:InsertColumns\">Chèn một cột mới sang bên trái của ô đang làm việc.</ahelp> Số cột chèn thêm vào tương ứng với số cột đang được chọn. Các cột đang có sẽ được dịch sang phải."
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155986\n"
-"87\n"
+"04050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Row1"
-msgstr "Hàng1"
+msgid "Insert Sheet"
+msgstr "Chèn bảng"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147483\n"
-"88\n"
+"04050000.xhp\n"
+"bm_id4522232\n"
"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự hàng ở góc trên bên trái vùng ô. Đánh số từ 0."
+msgid "<bookmark_value>sheets;creating</bookmark_value>"
+msgstr "<bookmark_value>bảng;tạo</bookmark_value>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153721\n"
-"89\n"
+"04050000.xhp\n"
+"hd_id3155629\n"
+"1\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Insert Sheet"
+msgstr "Chèn bảng"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154317\n"
-"90\n"
+"04050000.xhp\n"
+"par_id3147264\n"
+"2\n"
"help.text"
-msgid "Tab1"
-msgstr "Bảng1"
+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\">Đặt các tuỳ chọn dùng khi chèn một bảng mới vào tài liệu.</ahelp> Bạn có thể tạo một bảng mới, hoặc chèn một bảng có sẵn trong một tập tin khác. </variable>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149820\n"
-"91\n"
+"04050000.xhp\n"
+"hd_id3154684\n"
+"19\n"
"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự bảng ở góc trên bên trái vùng ô. Đánh số từ 0."
+msgid "Position"
+msgstr "Vị trí"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3163820\n"
-"92\n"
+"04050000.xhp\n"
+"par_id3156281\n"
+"20\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Specifies where the new sheet is to be inserted into your document."
+msgstr "Chèn thêm một bảng mới vào trong tài liệu của bạn."
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149710\n"
-"93\n"
+"04050000.xhp\n"
+"hd_id3154123\n"
+"21\n"
"help.text"
-msgid "Col2"
-msgstr "Cột2"
+msgid "Before current sheet"
+msgstr "Trước bảng hiện thời"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154819\n"
-"94\n"
+"04050000.xhp\n"
+"par_id3145787\n"
+"22\n"
"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr "Số thứ tự cột ở góc dưới bên phải vùng ô. Đánh số từ 0."
+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\">Chèn một bảng mới ở trước bảng hiện thời.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145083\n"
-"95\n"
+"04050000.xhp\n"
+"hd_id3155414\n"
+"23\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "After current sheet"
+msgstr "Sau bảng hiện thời"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156310\n"
-"96\n"
+"04050000.xhp\n"
+"par_id3145271\n"
+"24\n"
"help.text"
-msgid "Row2"
-msgstr "Hàng2"
+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\">Chèn một bảng mới ở sau bảng hiện thời.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150968\n"
-"97\n"
+"04050000.xhp\n"
+"hd_id3147428\n"
+"25\n"
"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự hàng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+msgid "Sheet"
+msgstr "Bảng"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156133\n"
-"98\n"
+"04050000.xhp\n"
+"par_id3154012\n"
+"26\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
+msgstr "Chèn thêm một bảng mới hoặc một bảng đang có vào trong tài liệu."
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153218\n"
-"99\n"
+"04050000.xhp\n"
+"hd_id3147350\n"
+"3\n"
"help.text"
-msgid "Tab2"
-msgstr "Bảng2"
+msgid "New sheet"
+msgstr "Bảng mới"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147086\n"
-"100\n"
+"04050000.xhp\n"
+"par_id3149262\n"
+"4\n"
"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự bảng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+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\">Tạo một bảng mới. Nhập tên bảng vào trong trường <emph>Tên</emph>. Bạn có thể dùng các chữ cái, số, khoảng trống và dấu gạch chân.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151270\n"
-"101\n"
+"04050000.xhp\n"
+"hd_id3155418\n"
+"27\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "No. of sheets"
+msgstr "Số bảng"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152934\n"
-"102\n"
+"04050000.xhp\n"
+"par_id3148457\n"
+"28\n"
"help.text"
-msgid "Count"
-msgstr "Đếm"
+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\">Đặt số bảng cần tạo.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145202\n"
-"103\n"
+"04050000.xhp\n"
+"hd_id3149379\n"
+"7\n"
"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr "Số các phần tử theo sau. Ô rỗng không phải được đếm hay gửi cho hàm."
+msgid "Name"
+msgstr "Tên"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150879\n"
-"104\n"
+"04050000.xhp\n"
+"par_id3150718\n"
+"8\n"
"help.text"
-msgid "14"
-msgstr "14"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Specifies the name of the new sheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Xin nhập tên của bảng mới.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156002\n"
-"105\n"
+"04050000.xhp\n"
+"hd_id3155066\n"
+"9\n"
"help.text"
-msgid "Col"
-msgstr "Cột"
+msgid "From File"
+msgstr "Từ tập tin"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147276\n"
-"106\n"
+"04050000.xhp\n"
+"par_id3153714\n"
+"10\n"
"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr "Số thứ tự cột của phần tử. Đánh số từ 0."
+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\">Chèn một bảng từ một tập tin sẵn có vào trong tài liệu hiện thời.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151295\n"
-"107\n"
+"04050000.xhp\n"
+"hd_id3149020\n"
+"15\n"
"help.text"
-msgid "16"
-msgstr "16"
+msgid "Browse"
+msgstr "Duyệt"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150261\n"
-"108\n"
+"04050000.xhp\n"
+"par_id3159267\n"
+"16\n"
"help.text"
-msgid "Row"
-msgstr "Hàng"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Opens a dialog for selecting a file.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Mở hộp thoại chọn tập tin.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155851\n"
-"109\n"
+"04050000.xhp\n"
+"hd_id3149255\n"
+"29\n"
"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr "Số thứ tự hàng của phần tử. Đánh số từ 0."
+msgid "Available Sheets"
+msgstr "Bảng có sẵn"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153150\n"
-"110\n"
+"04050000.xhp\n"
+"par_id3155336\n"
+"30\n"
"help.text"
-msgid "18"
-msgstr "18"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">Nếu bạn chọn một tập tin bằng nút <emph>Duyệt</emph>, bảng chứa trong đó sẽ được hiển thị trong hộp danh sách. Đường dẫn của tập tin sẽ được hiển thị bên dưới hộp này. Chọn trong hộp danh sách bảng mà bạn muốn chèn thêm.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153758\n"
-"111\n"
+"04050000.xhp\n"
+"hd_id3145791\n"
+"17\n"
"help.text"
-msgid "Tab"
-msgstr "Bảng"
+msgid "Link"
+msgstr "Liên kết"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150154\n"
-"112\n"
+"04050000.xhp\n"
+"par_id3152580\n"
+"18\n"
"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr "Số thứ tự bảng của phần tử. Đánh số từ 0."
+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\">Chọn mục này để chèn bảng theo kiểu liên kết, thay vì chép nội dung bảng vào trong tài liệu. Khi nội dung bảng gốc thay đổi, các liên kết tới nó sẽ được cập nhật lại.</ahelp>"
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149289\n"
-"113\n"
+"04050100.xhp\n"
+"tit\n"
"help.text"
-msgid "20"
-msgstr "20"
+msgid "Sheet from file"
+msgstr "Bảng từ tập tin"
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156010\n"
-"114\n"
+"04050100.xhp\n"
+"par_idN105C1\n"
"help.text"
-msgid "Error"
-msgstr "Lỗi"
+msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+msgstr "<link href=\"text/scalc/01/04050100.xhp\">Bảng từ tập tin</link>"
-#: 04060112.xhp
-#, fuzzy
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159181\n"
-"115\n"
+"04050100.xhp\n"
+"par_idN105D1\n"
"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr "Số thứ tự lỗi, mà giá trị 0 được định nghĩa là « không có lỗi ». Nếu phần tử thuộc về một ô công thưc, thì giá trị được công thức quyết định."
+msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr "<ahelp hid=\"26275\">Chèn một bảng từ một tập tin bảng tính khác.</ahelp>"
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147493\n"
-"116\n"
+"04050100.xhp\n"
+"par_idN105F7\n"
"help.text"
-msgid "22"
-msgstr "22"
+msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
+msgstr "Dùng hộp thoại <link href=\"text/shared/01/01020000.xhp\">Tập tin > Mở</link> để chọn bảng tính."
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149200\n"
-"117\n"
+"04050100.xhp\n"
+"par_idN10609\n"
"help.text"
-msgid "Value"
-msgstr "Giá trị"
+msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
+msgstr "Trong hộp thoại <link href=\"text/scalc/01/04050000.xhp\">Chèn bảng</link>, chọn bảng mà bạn cần chèn thêm."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151174\n"
-"118\n"
+"04060000.xhp\n"
+"tit\n"
"help.text"
-msgid "8 byte IEEE variable of type double/floating point"
-msgstr "Biến IEEE 8-byte có kiểu chấm động/đôi."
+msgid "Function Wizard"
+msgstr "Trợ lý Hàm"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154688\n"
-"119\n"
+"04060000.xhp\n"
+"bm_id3147426\n"
"help.text"
-msgid "30"
-msgstr "30"
+msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
+msgstr "<bookmark_value>chèn hàm; Trợ lý Hàm</bookmark_value><bookmark_value>hàm;Trợ lý Hàm</bookmark_value><bookmark_value>Trợ lý; hàm</bookmark_value>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159337\n"
-"120\n"
+"04060000.xhp\n"
+"hd_id3147426\n"
+"1\n"
"help.text"
-msgid "..."
-msgstr "..."
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Hàm\">Trợ lý Hàm</link>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155388\n"
-"121\n"
+"04060000.xhp\n"
+"par_id3145271\n"
+"2\n"
"help.text"
-msgid "Next element"
-msgstr "Phần tử sau"
+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\">Mở <emph>Trợ lý Hàm</emph> để tạo các công thức bằng các chức năng tương tác.</ahelp></variable> Trước khi mở phần Trợ lý, bạn phải chọn một ô hoặc một phạm vi các ô cần thêm công thức."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3154935\n"
-"122\n"
+"04060000.xhp\n"
+"par_id8007446\n"
"help.text"
-msgid "String Array"
-msgstr "Mảng chuỗi"
+msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
+msgstr "Bạn có thể tải toàn bộ đặc tả ODFF (Công thức Định dạng Tài liệu Mở) xuống địa chỉ Web của <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link>."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153105\n"
-"123\n"
+"04060000.xhp\n"
+"par_id3159153\n"
+"60\n"
"help.text"
-msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
-msgstr "Một vùng ô, mà chứa giá trị kiểu dữ liệu Văn bản và được gửi cho hàm dưới dạng một mảng chuỗi. Một mảng chuỗi trong $[officename] Calc được định nghĩa như theo đây:"
+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 "Hộp thoại <emph>Trợ lý Hàm</emph> có 2 thẻ: <emph>Hàm</emph> được dùng để tạo công thức, và <emph>Cấu trúc</emph> để kiểm tra cách xây dựng công thức."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149908\n"
-"124\n"
+"04060000.xhp\n"
+"hd_id3154490\n"
+"3\n"
"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "<emph>Bù</emph>"
+msgid "Functions Tab"
+msgstr "Thẻ Hàm"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159165\n"
-"125\n"
+"04060000.xhp\n"
+"par_id3149378\n"
+"5\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "<emph>Tên</emph>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Danh sách hàm theo phân loại\">Dánh sách hàm theo phân loại</link>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159150\n"
-"126\n"
+"04060000.xhp\n"
+"hd_id3154730\n"
+"36\n"
"help.text"
-msgid "<emph>Description</emph>"
-msgstr "<emph>Mô tả</emph>"
+msgid "Category"
+msgstr "Loại"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149769\n"
-"127\n"
+"04060000.xhp\n"
+"par_id3153417\n"
+"37\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Liệt kê tất cả các loại chứa các hàm khác nhau. Chọn một loại để xem các hàm chứa trong đó, được liệt kê trong danh sách bên dưới.</ahelp> Chọn « Tất cả » để xem tất cả các hàm có trong các loại, được liệt kê theo vần abc. Chọn « Dùng cuối » để liệt kê các hàm bạn vừa mới sử dụng trước đó. </variable>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150509\n"
-"128\n"
+"04060000.xhp\n"
+"hd_id3150749\n"
+"6\n"
"help.text"
-msgid "Col1"
-msgstr "Cột1"
+msgid "Function"
+msgstr "Hàm"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148447\n"
-"129\n"
+"04060000.xhp\n"
+"par_id3155445\n"
+"7\n"
"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr "Số thứ tự cột ở góc trên bên trái vùng ô. Đánh số từ 0."
+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\">Hiển thị các hàm nằm trong loại được chọn. Bấm đúp vào một hàm để chọn nó.</ahelp> Bấm chuột 1 lần để hiển thị mô tả chức năng cho hàm."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145418\n"
-"130\n"
+"04060000.xhp\n"
+"hd_id3159264\n"
+"8\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Array"
+msgstr "Mảng"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147512\n"
-"131\n"
+"04060000.xhp\n"
+"par_id3149566\n"
+"9\n"
"help.text"
-msgid "Row1"
-msgstr "Hàng1"
+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\">Chèn hàm được chọn vào trong phạm vi các ô dưới dạng một công thức mảng.</ahelp> Các công thức mảng hoạt động trên nhiều ô. Mỗi một ô trong mảng chứa công thức, không giống như chép lại công thức mà giống như một công thức chung được chia sẻ bởi tất cả các ô trong ma trận."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147235\n"
-"132\n"
+"04060000.xhp\n"
+"par_id3155959\n"
+"61\n"
"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự hàng ở góc trên bên trái vùng ô. Đánh số từ 0."
+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 "Tuỳ chọn <emph>Mảng</emph> tương đương với khi bạn dùng <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter để nhập và xác nhận lại công thức trong bảng. Công thức chèn vào có dạng một công thức ma trận, biểu diễn bởi cặp ngoặc nhọn { }."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155362\n"
-"133\n"
+"04060000.xhp\n"
+"par_id3152993\n"
+"40\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "The maximum size of an array range is 128 by 128 cells."
+msgstr "Kích thước tối đa của một phạm vi mảng là 128 × 128 ô."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151051\n"
-"134\n"
+"04060000.xhp\n"
+"hd_id3150367\n"
+"41\n"
"help.text"
-msgid "Tab1"
-msgstr "Bảng1"
+msgid "Argument Input Fields"
+msgstr "Các trường tham số"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148923\n"
-"135\n"
+"04060000.xhp\n"
+"par_id3145587\n"
+"15\n"
"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự bảng ở góc trên bên trái vùng ô. Đánh số từ 0."
+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 "Khi bạn bấm đúp chuột vào một hàm, bên phải hộp thoại sẽ có thêm các trường tham số cho hàm đó. Để chọn một ô để dùng làm tham số cho hàm, hãy bấm trực tiếp lên ô hoặc kéo phạm vi cần dùng trong bảng khi giữ chuột. Bạn cũng có thể nhập trực tiếp các giá trị số hay tham chiếu tới ô hay phạm vi vào các trường tương ứng trong hộp thoại. Khi nhập <link href=\"text/scalc/01/04060102.xhp\" name=\"nội dung ngày tháng\">nội dung ngày tháng</link>, hãy chú ý là bạn phải chọn đúng định dạng ngày tháng mà mình cần. Nhấn OK để chèn kết quả vào trong bảng tính."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149158\n"
-"136\n"
+"04060000.xhp\n"
+"hd_id3149408\n"
+"18\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Function Result"
+msgstr "Kết quả hàm"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3166437\n"
-"137\n"
+"04060000.xhp\n"
+"par_id3155809\n"
+"19\n"
"help.text"
-msgid "Col2"
-msgstr "Cột2"
+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 "Ngay sau khi bạn nhập các tham số cho hàm, kết quả của công thức sẽ được tính. Ô xem trước này báo cho bạn biết kết quả có được khi thực hiện công thức với các tham số đã cho. Nếu các tham số bị lỗi, ô này sẽ hiển thị <link href=\"text/scalc/05/02140000.xhp\" name=\"mã lỗi\">mã lỗi</link> tương ứng."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149788\n"
-"138\n"
+"04060000.xhp\n"
+"par_id3148700\n"
+"23\n"
"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr "Số thứ tự cột ở góc dưới bên phải vùng ô. Đánh số từ 0."
+msgid "The required arguments are indicated by names in bold print."
+msgstr "Tên của các tham số cần phải có sẽ được in đậm."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3166450\n"
-"139\n"
+"04060000.xhp\n"
+"hd_id3153064\n"
+"22\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "f(x) (depending on the selected function)"
+msgstr "f(x) (tuỳ thuộc vào hàm được chọn)"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152877\n"
-"140\n"
+"04060000.xhp\n"
+"par_id3157980\n"
+"24\n"
"help.text"
-msgid "Row2"
-msgstr "Hàng2"
+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\">Cho phép bạn mở một <emph>Trợ lý Hàm</emph> cấp thấp hơn để lồng một hàm khác vào hàm đang tạo, thay vì một giá trị hay một tham chiếu.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152949\n"
-"141\n"
+"04060000.xhp\n"
+"hd_id3145076\n"
+"25\n"
"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự hàng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
+msgstr "Tham số/Đối số/Tham chiếu ô (tuỳ thuộc vào hàm được chọn)"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159270\n"
-"142\n"
+"04060000.xhp\n"
+"par_id3159097\n"
+"26\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">Số trường văn bản được hiển thị sẽ tùy thuộc vào hàm đang chọn. Nhập các tham số theo cách trực tiếp vào trường tham số, hoặc bấm chuột vào một ô trong bảng.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154107\n"
-"143\n"
+"04060000.xhp\n"
+"hd_id3154957\n"
+"51\n"
"help.text"
-msgid "Tab2"
-msgstr "Bảng2"
+msgid "Result"
+msgstr "Kết quả"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153747\n"
-"144\n"
+"04060000.xhp\n"
+"par_id3150211\n"
+"52\n"
"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự bảng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+msgid "Displays the calculation result or an error message."
+msgstr "Hiển thị kết quả tính toán được, hoặc một thông báo lỗi."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149924\n"
-"145\n"
+"04060000.xhp\n"
+"hd_id3151304\n"
+"43\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "Formula"
+msgstr "Công thức"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154858\n"
-"146\n"
+"04060000.xhp\n"
+"par_id3149898\n"
+"44\n"
"help.text"
-msgid "Count"
-msgstr "Đếm"
+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\">Hiển thị công thức đã tạo ra. Bạn có thể gõ trực tiếp hoặc dùng Trợ lý Hàm để tạo công thức.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148621\n"
-"147\n"
+"04060000.xhp\n"
+"hd_id3153249\n"
+"45\n"
"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr "Số các phần tử theo sau. Ô rỗng không phải được đếm hay gửi cho hàm."
+msgid "Back"
+msgstr "Lùi"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148467\n"
-"148\n"
+"04060000.xhp\n"
+"par_id3152869\n"
+"53\n"
"help.text"
-msgid "14"
-msgstr "14"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Chọn lùi dần các thành phần đang có trong công thức.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151126\n"
-"149\n"
+"04060000.xhp\n"
+"par_id3146966\n"
+"56\n"
"help.text"
-msgid "Col"
-msgstr "Cột"
+msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
+msgstr "Để chọn một hàm đơn thay vì một hàm phức bao gồm nhiều hàm bên trong, bấm đúp chuột lên hàm xuất hiện trong cửa sổ công thức."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154334\n"
-"150\n"
+"04060000.xhp\n"
+"hd_id3155762\n"
+"54\n"
"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr "Số thứ tự cột của phần tử. Đánh số từ 0."
+msgid "Next"
+msgstr "Tiếp"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149416\n"
-"151\n"
+"04060000.xhp\n"
+"par_id3149316\n"
+"55\n"
"help.text"
-msgid "16"
-msgstr "16"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Di chuyển tới thành phần kế tiếp bên trong công thức.</ahelp> Nút này cho phép bạn gán các hàm vào trong công thức. Nếu bạn chọn một hàm và bấm nút <emph>Kế </emph>, hàm được chọn sẽ được thêm vào trong cửa sổ công thức."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150631\n"
-"152\n"
+"04060000.xhp\n"
+"par_id3159262\n"
+"57\n"
"help.text"
-msgid "Row"
-msgstr "Hàng"
+msgid "Double-click a function in the selection window to transfer it to the formula window."
+msgstr "Bấm đúp chuột lên một hàm trong cửa sổ chọn để chuyển hàm đó vào trong cửa sổ công thức."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150424\n"
-"153\n"
+"04060000.xhp\n"
+"hd_id3148745\n"
+"58\n"
"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr "Số thứ tự hàng của phần tử. Đánh số từ 0."
+msgid "Cancel"
+msgstr "Thôi"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154797\n"
-"154\n"
+"04060000.xhp\n"
+"par_id3147402\n"
+"59\n"
"help.text"
-msgid "18"
-msgstr "18"
+msgid "Closes the dialog without implementing the formula."
+msgstr "Đóng hộp thoại mà không triển khai công thức."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3143274\n"
-"155\n"
+"04060000.xhp\n"
+"hd_id3150534\n"
+"32\n"
"help.text"
-msgid "Tab"
-msgstr "Bảng"
+msgid "OK"
+msgstr "OK"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149513\n"
-"156\n"
+"04060000.xhp\n"
+"par_id3153029\n"
+"33\n"
"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr "Số thứ tự bảng của phần tử. Đánh số từ 0."
+msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+msgstr "Kết thúc <emph>Trợ lý Hàm</emph>, và chuyển công thức đã tạo vào các ô được chọn."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145306\n"
-"157\n"
+"04060000.xhp\n"
+"par_id3156400\n"
+"34\n"
"help.text"
-msgid "20"
-msgstr "20"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Danh sách hàm theo phân loại\">Dánh sách hàm theo phân loại</link>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153948\n"
-"158\n"
+"04060000.xhp\n"
+"hd_id3147610\n"
+"47\n"
"help.text"
-msgid "Error"
-msgstr "Lỗi"
+msgid "Structure tab"
+msgstr "Thẻ Cấu trúc"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153534\n"
-"159\n"
+"04060000.xhp\n"
+"par_id3153122\n"
+"48\n"
"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr "Số thứ tự lỗi, mà giá trị được định nghĩa là « không có lỗi ». Nếu phần tử thuộc về một ô công thức, thì giá trị lỗi được công thức quyết định."
+msgid "On this page, you can view the structure of the function."
+msgstr "Trong thẻ này, bạn có thể xem cấu trúc của hàm."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153311\n"
-"160\n"
+"04060000.xhp\n"
+"par_id3149350\n"
+"4\n"
"help.text"
-msgid "22"
-msgstr "22"
+msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
+msgstr "Nếu bạn khởi động <emph>Trợ lý Hàm</emph> trong khi con trỏ ô được đặt trong một ô đã có một hàm từ trước, thì thẻ <emph>Cấu trúc</emph> sẽ được mở và biểu diễn các thành phần của công thức đang có."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148695\n"
-"161\n"
+"04060000.xhp\n"
+"hd_id3149014\n"
+"49\n"
"help.text"
-msgid "Len"
-msgstr "Dài"
+msgid "Structure"
+msgstr "Cấu trúc"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152769\n"
-"162\n"
+"04060000.xhp\n"
+"par_id3150481\n"
+"50\n"
"help.text"
-msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
-msgstr "Chiều dài của chuỗi theo sau, gồm có byte số không đóng. Nếu chiều dài gồm có byte số không đóng bằng với một giá trị lẻ, thì một byte số không thứ hai được thêm vào chuỗi để làm một giá trị chẵn. Vì thế, « Dài » được tníh dùng ((StrLen+2)&~1)."
+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\">Biểu diễn cấu trúc cây của hàm hiện có.</ahelp> Bạn có thể ẩn hoặc hiện các tham số của hàm bằng cách bấm lên dấu công hoặc dấu trừ nằm trước tham số đó."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153772\n"
-"163\n"
+"04060000.xhp\n"
+"par_id3148886\n"
+"63\n"
"help.text"
-msgid "24"
-msgstr "24"
+msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
+msgstr "Các dấu chấm màu xanh tương ứng với các tham số hợp lệ. Các chấm đỏ tương ứng với kiểu dữ liệu nhập vào không hợp lệ. Ví dụ, nếu bạn dùng hàm SUM nhưng lại cho tham số dạng văn bản thì tham số này sẽ được tô sáng bằng màu đỏ, vì hàm SUM chỉ cho phép ta nhập giá trị số."
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153702\n"
-"164\n"
+"04060100.xhp\n"
+"tit\n"
"help.text"
-msgid "String"
-msgstr "Chuỗi"
+msgid "Functions by Category"
+msgstr "Hàm được phân loại"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154474\n"
-"165\n"
+"04060100.xhp\n"
+"bm_id3148575\n"
"help.text"
-msgid "String with closing zero byte"
-msgstr "Chuỗi có byte số không đóng"
+msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
+msgstr "<bookmark_value>hàm;liệt kê theo loại</bookmark_value><bookmark_value>các loại hàm</bookmark_value><bookmark_value>danh sách hàm</bookmark_value>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156269\n"
-"166\n"
+"04060100.xhp\n"
+"hd_id3154944\n"
+"16\n"
"help.text"
-msgid "24+Len"
-msgstr "24+Dài"
+msgid "Functions by Category"
+msgstr "Hàm được phân loại"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154825\n"
-"167\n"
+"04060100.xhp\n"
+"par_id3149378\n"
+"2\n"
"help.text"
-msgid "..."
-msgstr "..."
+msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
+msgstr "Phần này mô tả các hàm của $[officename] Calc. Các hàm trong Calc được tổ chức thành nhiều loại bên trong Trợ lý Hàm."
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147097\n"
-"168\n"
+"04060100.xhp\n"
+"par_id0120200910234570\n"
"help.text"
-msgid "Next element"
-msgstr "Phần tử sau"
+msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
+msgstr ""
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3159091\n"
-"169\n"
+"04060100.xhp\n"
+"hd_id3146972\n"
+"3\n"
"help.text"
-msgid "Cell Array"
-msgstr "Mảng ô"
+msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Cơ sở dữ liệu\">Cơ sở dữ liệu</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156140\n"
-"170\n"
+"04060100.xhp\n"
+"hd_id3155443\n"
+"4\n"
"help.text"
-msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
-msgstr "Mảng ô được dùng để gọi vùng ô chứa văn bản cũng như số. Một mảng ô trong $[officename] Calc được xác định như theo đây:"
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Ngày và Giờ\">Ngày và Giờ</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154664\n"
-"171\n"
+"04060100.xhp\n"
+"hd_id3147339\n"
+"5\n"
"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "<emph>Bù</emph>"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Tài chính\">Tài chính</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154566\n"
-"172\n"
+"04060100.xhp\n"
+"hd_id3153963\n"
+"6\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "<emph>Tên</emph>"
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
+msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Thông tin\">Thông tin</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146073\n"
-"173\n"
+"04060100.xhp\n"
+"hd_id3146316\n"
+"7\n"
"help.text"
-msgid "<emph>Description</emph>"
-msgstr "<emph>Mô tả</emph>"
+msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Lôgic\">Lôgic</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154117\n"
-"174\n"
+"04060100.xhp\n"
+"hd_id3148485\n"
+"8\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Toán học\">Toán học</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150988\n"
-"175\n"
+"04060100.xhp\n"
+"hd_id3150363\n"
+"9\n"
"help.text"
-msgid "Col1"
-msgstr "Cột1"
+msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Ma trận\">Mảng</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146783\n"
-"176\n"
+"04060100.xhp\n"
+"hd_id3150208\n"
+"10\n"
"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr "Số thứ tự cột ở góc trên bên trái vùng ô. Đánh số từ 0."
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Thống kê\">Thống kê</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153666\n"
-"177\n"
+"04060100.xhp\n"
+"hd_id3166428\n"
+"11\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
+msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Bảng tính\">Bảng tính</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149560\n"
-"178\n"
+"04060100.xhp\n"
+"hd_id3145585\n"
+"12\n"
"help.text"
-msgid "Row1"
-msgstr "Hàng1"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Văn bản\">Văn bản</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156156\n"
-"179\n"
+"04060100.xhp\n"
+"hd_id3156449\n"
+"13\n"
"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự hàng ở góc trên bên trái vùng ô. Đánh số từ 0."
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Bổ sung\">Bổ sung</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150408\n"
-"180\n"
+"04060100.xhp\n"
+"par_id3150715\n"
+"14\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Toán từ\">Toán tử</link> cũng có."
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150593\n"
-"181\n"
+"04060100.xhp\n"
+"par_id0902200809540918\n"
"help.text"
-msgid "Tab1"
-msgstr "Bảng1"
+msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
+msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150357\n"
-"182\n"
+"04060101.xhp\n"
+"tit\n"
"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự bảng ở góc trên bên trái vùng ô. Đánh số từ 0"
+msgid "Database Functions"
+msgstr "Các hàm cơ sở dữ liệu"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146912\n"
-"183\n"
+"04060101.xhp\n"
+"bm_id3148946\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
+msgstr "<bookmark_value>Trợ lý hàm;cơ sở dữ liệu</bookmark_value><bookmark_value>hàm;hàm cơ sở dữ liệu</bookmark_value><bookmark_value>cơ sở dữ liệu;hàm trong $[officename] Calc</bookmark_value>"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153352\n"
-"184\n"
+"04060101.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "Col2"
-msgstr "Cột2"
+msgid "Database Functions"
+msgstr "Các hàm cơ sở dữ liệu"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155893\n"
-"185\n"
+"04060101.xhp\n"
+"par_id3145173\n"
+"2\n"
"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr "Số thứ tự cột ở góc dưới bên phải vùng ô. Đánh số từ 0."
+msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
+msgstr "<variable id=\"datenbanktext\">Phần này nói về các hàm dùng với dữ liệu được tổ chức thành các hàng tương ứng với các bản ghi. </variable>"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150827\n"
+"04060101.xhp\n"
+"par_id3154016\n"
"186\n"
"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148406\n"
-"187\n"
-"help.text"
-msgid "Row2"
-msgstr "Hàng2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150673\n"
-"188\n"
-"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự hàng ở góc dưới bên phải vùng ô. Đánh số từ 0."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155864\n"
-"189\n"
-"help.text"
-msgid "10"
-msgstr "10"
+msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
+msgstr "Phân loại <emph>Cơ sở dữ liệu</emph> có thể bị nhầm lẫn với một cơ sở dữ liệu được tích hợp trong $[officename]. Tuy nhiên, không có sự liên hệ nào giữa một cơ sở dữ liệu trong $[officename] và phân loại <emph>Cơ sở dữ liệu</emph> của $[officename] Calc cả."
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153197\n"
+"04060101.xhp\n"
+"hd_id3150329\n"
"190\n"
"help.text"
-msgid "Tab2"
-msgstr "Bảng2"
+msgid "Example Data:"
+msgstr "Dữ liệu ví dụ:"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149329\n"
+"04060101.xhp\n"
+"par_id3153713\n"
"191\n"
"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Số thứ tự bảng ở góc dưới bên phải vùng ô. Đánh số từ 0."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147360\n"
-"192\n"
-"help.text"
-msgid "12"
-msgstr "12"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154520\n"
-"193\n"
-"help.text"
-msgid "Count"
-msgstr "Đếm"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150647\n"
-"194\n"
-"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr "Số các phần tử theo sau. Ô rỗng không phải được đếm hay gửi cho hàm."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149747\n"
-"195\n"
-"help.text"
-msgid "14"
-msgstr "14"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147579\n"
-"196\n"
-"help.text"
-msgid "Col"
-msgstr "Cột"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154188\n"
-"197\n"
-"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr "Số thứ tự cột của phần tử. Đánh số từ 0."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159209\n"
-"198\n"
-"help.text"
-msgid "16"
-msgstr "16"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153265\n"
-"199\n"
-"help.text"
-msgid "Row"
-msgstr "Hàng"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150095\n"
-"200\n"
-"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr "Số thứ tự hàng của phần tử. Đánh số từ 0."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151276\n"
-"201\n"
-"help.text"
-msgid "18"
-msgstr "18"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149177\n"
-"202\n"
-"help.text"
-msgid "Tab"
-msgstr "Bảng"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3146925\n"
-"203\n"
-"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr "Số thứ tự bảng của phần tử. Đánh số từ 0."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150488\n"
-"204\n"
-"help.text"
-msgid "20"
-msgstr "20"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149441\n"
-"205\n"
-"help.text"
-msgid "Error"
-msgstr "Lỗi"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156048\n"
-"206\n"
-"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr "Số thứ tự lỗi, mà giá trị 0 được định nghĩa là « không có lỗi ». Nếu phần tử thuộc về một ô công thức, thì giá trị lỗi được công thức quyết định."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3163813\n"
-"207\n"
-"help.text"
-msgid "22"
-msgstr "22"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159102\n"
-"208\n"
-"help.text"
-msgid "Type"
-msgstr "Kiểu"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149581\n"
-"209\n"
-"help.text"
-msgid "Type of cell content, 0 == Double, 1 == String"
-msgstr "Kiểu nội dung: 0 == Đôi, 1 == Chuỗi"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155182\n"
-"210\n"
-"help.text"
-msgid "24"
-msgstr "24"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153291\n"
-"211\n"
-"help.text"
-msgid "Value or Len"
-msgstr "Giá trị hay Dài"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148560\n"
-"212\n"
-"help.text"
-msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
-msgstr "Nếu kiểu == 0: biến IEEE 8-byte có kiểu chấm động/đôi"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148901\n"
-"213\n"
-"help.text"
-msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
-msgstr "Nếu kiểu == 1: chiều dài của chuỗi theo sau, gồm có byte số không đóng. Nếu chiều dài gồm có byte số không đóng bằng với một giá trị lẻ, thì một byte số không đóng thứ hai được thêm vào chuỗi để tạo một giá trị chẵn. Vì thế, chiều Dài được tính dùng ((StrLen+2)&~1)."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3145215\n"
-"214\n"
-"help.text"
-msgid "26 if type==1"
-msgstr "26 nếu kiểu == 1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155143\n"
-"215\n"
-"help.text"
-msgid "String"
-msgstr "Chuỗi"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149298\n"
-"216\n"
-"help.text"
-msgid "If type == 1: String with closing zero byte"
-msgstr "Nếu kiểu == 1: chuỗi có byte số không đóng"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151322\n"
-"217\n"
-"help.text"
-msgid "32 or 26+Len"
-msgstr "32 or 26+Dài"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3163722\n"
-"218\n"
-"help.text"
-msgid "..."
-msgstr "..."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151059\n"
-"219\n"
-"help.text"
-msgid "Next element"
-msgstr "Phần tử sau"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Four"
-msgstr "Hàm Thống Kê Phần 4"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3153415\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
-msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Hàm Thống Kê Phần 4\">Hàm Thống Kê Phần 4</link></variable>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3154511\n"
-"help.text"
-msgid "<bookmark_value>MAX function</bookmark_value>"
-msgstr "<bookmark_value>hàm MAX</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3154511\n"
-"2\n"
-"help.text"
-msgid "MAX"
-msgstr "MAX"
+msgid "The following data will be used in some of the function description examples:"
+msgstr "Các dữ liệu sau sẽ được dùng làm ví dụ để mô tả các chức năng của hàm:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153709\n"
+"04060101.xhp\n"
+"par_id3155766\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MAX\">Trả về giá trị tối đa của một danh sách các đối số..</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id9282509\n"
-"help.text"
-msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
-msgstr "Trả về 0 nếu không gặp giá trị thuộc số hay lỗi trong (những) phạm vi ô được gửi cho hàm dưới dạng tham chiếu ô. Ô kiểu văn bản bị bỏ qua bởi hai hàm MIN() (tiểu) và MAX() (đại).Những hàm MINA() và MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi. Gửi một chuỗi nghĩa chữ cho hàm MIN() hay MAX(), v.d. « MIN(\"chuỗi\") », vẫn còn gây ra lỗi."
+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 "Trong phạm vi A1:E10 ta sẽ liệt kê các em nhỏ được mời đi dự tiệc sinh nhật của Joe. Các thông tin sẽ được sắp xếp như sau: cột A là tên của em nhỏ, B là lớp, sau đó là tuổi, khoảng cách tới trường (tính bằng mét) và cân nặng (tính bằng kg)."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154256\n"
+"04060101.xhp\n"
+"par_id3145232\n"
"4\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "A"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147340\n"
+"04060101.xhp\n"
+"par_id3146316\n"
"5\n"
"help.text"
-msgid "MAX(Number1; Number2; ...Number30)"
-msgstr "MAX(Số1; Số2; ...; Số30)"
+msgid "B"
+msgstr ""
-#: 04060184.xhp
-#, fuzzy
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149568\n"
+"04060101.xhp\n"
+"par_id3150297\n"
"6\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
+msgid "C"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153963\n"
+"04060101.xhp\n"
+"par_id3150344\n"
"7\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "D"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147343\n"
+"04060101.xhp\n"
+"par_id3150785\n"
"8\n"
"help.text"
-msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> trả về giá trị lớn nhất của danh sách đó."
+msgid "E"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148485\n"
+"04060101.xhp\n"
+"par_id3150090\n"
"9\n"
"help.text"
-msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAX(A1:B100)</item> trả về giá trị lớn nhất của danh sách đó."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3166426\n"
-"help.text"
-msgid "<bookmark_value>MAXA function</bookmark_value>"
-msgstr "<bookmark_value>hàm MAXA</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3166426\n"
-"139\n"
-"help.text"
-msgid "MAXA"
-msgstr "MAXA"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150363\n"
-"140\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MAXA\">Trả về giá trị tối đa của một danh sách các đối số. Khác với hàm MAX, bạn có thể nhập chuỗi văn bản vào hàm này. Giá trị của chuỗi văn bản là 0.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id7689443\n"
-"help.text"
-msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
-msgstr "Hàm MINA() hay MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3150516\n"
-"141\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3166431\n"
-"142\n"
-"help.text"
-msgid "MAXA(Value1; Value2; ... Value30)"
-msgstr "MAXA(Giá_trị1; Giá_trị2; ... Giá_trị30)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150202\n"
-"143\n"
-"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
-msgstr "<emph>Giá_trị1; Giá_trị2; ... Giá_trị30</emph> là đến 30 giá trị hay phạm vi. Chuỗi văn bản có giá trị 0."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3156290\n"
-"144\n"
-"help.text"
-msgid "Example"
-msgstr "Ví dụ"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3156446\n"
-"145\n"
-"help.text"
-msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Chuỗi\")</item> trả về giá trị lớn nhất của danh sách đó."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149404\n"
-"146\n"
-"help.text"
-msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAXA(A1:B100)</item> trả về giá trị lớn nhất của danh sách đó."
+msgid "1"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153820\n"
+"04060101.xhp\n"
+"par_id3152992\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>MEDIAN function</bookmark_value>"
-msgstr "<bookmark_value>hàm MEDIAN</bookmark_value>"
+msgid "<item type=\"input\">Name</item>"
+msgstr "<item type=\"input\">Name</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153820\n"
+"04060101.xhp\n"
+"par_id3155532\n"
"11\n"
"help.text"
-msgid "MEDIAN"
-msgstr "MEDIAN"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "<item type=\"input\">Grade</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151241\n"
+"04060101.xhp\n"
+"par_id3156448\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">Trả về trung vị của một tập hợp các số. Trong một tập hợp chứa một số giá trị lẻ, trung vị sẽ là số ở chính giữa tập hợp, và trong một tập hợp chứa số giá trị chẵn, trung vị sẽ là trung bình của hai giá trị ở chính giữa tập hợp.</ahelp>"
+msgid "<item type=\"input\">Age</item>"
+msgstr "<item type=\"input\">Age</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3148871\n"
+"04060101.xhp\n"
+"par_id3154486\n"
"13\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "<item type=\"input\">Distance to School</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155264\n"
+"04060101.xhp\n"
+"par_id3152899\n"
"14\n"
"help.text"
-msgid "MEDIAN(Number1; Number2; ...Number30)"
-msgstr "MEDIAN(Số1; Số2; ...; Số30)"
+msgid "<item type=\"input\">Weight</item>"
+msgstr "<item type=\"input\">Weight</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150109\n"
+"04060101.xhp\n"
+"par_id3153816\n"
"15\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
-msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị hay phạm vi mà đại diện một mẫu. Mỗi số cũng có thể bị thay thế bởi một tham chiếu."
+msgid "2"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3144506\n"
+"04060101.xhp\n"
+"par_id3151240\n"
"16\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">Andy</item>"
+msgstr "<item type=\"input\">Andy</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145078\n"
+"04060101.xhp\n"
+"par_id3156016\n"
"17\n"
"help.text"
-msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
-msgstr "đối với một số lẻ: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> trả về 9 là số trung vị."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149126\n"
-"165\n"
-"help.text"
-msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
-msgstr "Đối với một số chẵn: <item type=\"input\">=MEDIAN(1;5;9;20)</item> rtrả về trung bình của hai giá trị ở giữa (5 và 9), thì 7."
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3154541\n"
+"04060101.xhp\n"
+"par_id3145073\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>MIN function</bookmark_value>"
-msgstr "<bookmark_value>hàm MIN</bookmark_value>"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154541\n"
+"04060101.xhp\n"
+"par_id3154956\n"
"19\n"
"help.text"
-msgid "MIN"
-msgstr "MIN"
+msgid "<item type=\"input\">150</item>"
+msgstr "<item type=\"input\">150</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3143222\n"
+"04060101.xhp\n"
+"par_id3153976\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MIN\">Trả về giá trị tối thiểu của một danh sách các đối số.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id2301400\n"
-"help.text"
-msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
-msgstr "Trả về 0 nếu không gặp giá trị thuộc số hay lỗi trong (những) phạm vi ô được gửi cho hàm dưới dạng tham chiếu ô. Ô văn bản bị bỏ qua bởi hai hàm MIN() (tiểu) và MAX() (đại). Hai hàm MINA() và MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi. Gửi một đối số chuỗi nghĩa chữ cho hàm MIN() hay MAX(), e.g. « MIN(\"chuỗi\") », vẫn còn gây ra lỗi."
+msgid "<item type=\"input\">40</item>"
+msgstr "<item type=\"input\">40</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154651\n"
+"04060101.xhp\n"
+"par_id3150894\n"
"21\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "3"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146964\n"
+"04060101.xhp\n"
+"par_id3152870\n"
"22\n"
"help.text"
-msgid "MIN(Number1; Number2; ...Number30)"
-msgstr "MIN(Số1; Số2; ...; Số30)"
+msgid "<item type=\"input\">Betty</item>"
+msgstr "<item type=\"input\">Betty</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153486\n"
+"04060101.xhp\n"
+"par_id3149692\n"
"23\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155523\n"
+"04060101.xhp\n"
+"par_id3154652\n"
"24\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154734\n"
+"04060101.xhp\n"
+"par_id3149381\n"
"25\n"
"help.text"
-msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
-msgstr "<item type=\"input\">=MIN(A1:B100)</item> trả về giá trị nhỏ nhất của danh sách đó."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3147504\n"
-"help.text"
-msgid "<bookmark_value>MINA function</bookmark_value>"
-msgstr "<bookmark_value>hàm MINA</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3147504\n"
-"148\n"
-"help.text"
-msgid "MINA"
-msgstr "MINA"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147249\n"
-"149\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MINA\">Trả về giá trị tối thiểu của một danh sách các đối số. Ở đây bạn cũng có thể nhập chuỗi văn bản. Giá trị của chuỗi văn bản là 0.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id4294564\n"
-"help.text"
-msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
-msgstr "Hai hàm MINA() và MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3150435\n"
-"150\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153336\n"
-"151\n"
-"help.text"
-msgid "MINA(Value1; Value2; ... Value30)"
-msgstr "MINA(Số1; Số2; ...; Số30)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3146098\n"
-"152\n"
-"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
-msgstr "<emph>Giá_trị1; Giá_trị2; ... Giá_trị30</emph> là đến 30 giá trị hay phạm vi. Chuỗi văn bản có giá trị 0."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3148743\n"
-"153\n"
-"help.text"
-msgid "Example"
-msgstr "Ví dụ"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147401\n"
-"154\n"
-"help.text"
-msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
-msgstr "<item type=\"input\">=MINA(1;\"Text\";20)</item> trả về 0."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147295\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
-msgstr "<item type=\"input\">=MINA(A1:B100)</item> trả về giá trị nhỏ nhất của danh sách đó."
+msgid "<item type=\"input\">1000</item>"
+msgstr "<item type=\"input\">1000</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3166465\n"
+"04060101.xhp\n"
+"par_id3153812\n"
+"26\n"
"help.text"
-msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
-msgstr "<bookmark_value>hàm AVEDEV</bookmark_value><bookmark_value>trung bình;hàm thống kê</bookmark_value>"
+msgid "<item type=\"input\">42</item>"
+msgstr "<item type=\"input\">42</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3166465\n"
+"04060101.xhp\n"
+"par_id3146965\n"
"27\n"
"help.text"
-msgid "AVEDEV"
-msgstr "AVEDEV"
+msgid "4"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150373\n"
+"04060101.xhp\n"
+"par_id3155596\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
-msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">Trả về trung bình của những độ lệch tuyệt đối điểm dữ liệu khỏi trung bình.</ahelp> Hiển thị truyền bá trong một tập hợp dữ liệu."
+msgid "<item type=\"input\">Charles</item>"
+msgstr "<item type=\"input\">Charles</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3150038\n"
+"04060101.xhp\n"
+"par_id3147244\n"
"29\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145636\n"
+"04060101.xhp\n"
+"par_id3149871\n"
"30\n"
"help.text"
-msgid "AVEDEV(Number1; Number2; ...Number30)"
-msgstr "AVEDEV(Số1; Số2; ...; Số30)"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3157871\n"
+"04060101.xhp\n"
+"par_id3155752\n"
"31\n"
"help.text"
-msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
-msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị hay phạm vi mà đại diện một mẫu. Mỗi số cũng có thể bị thay thế bằng một tham chiếu."
+msgid "<item type=\"input\">300</item>"
+msgstr "<item type=\"input\">300</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3149725\n"
+"04060101.xhp\n"
+"par_id3149052\n"
"32\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">51</item>"
+msgstr "<item type=\"input\">51</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153122\n"
+"04060101.xhp\n"
+"par_id3146097\n"
"33\n"
"help.text"
-msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
-msgstr "<item type=\"input\">=AVEDEV(A1:A50)</item>"
+msgid "5"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3145824\n"
+"04060101.xhp\n"
+"par_id3147296\n"
+"34\n"
"help.text"
-msgid "<bookmark_value>AVERAGE function</bookmark_value>"
-msgstr "<bookmark_value>hàm AVERAGE</bookmark_value>"
+msgid "<item type=\"input\">Daniel</item>"
+msgstr "<item type=\"input\">Daniel</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3145824\n"
+"04060101.xhp\n"
+"par_id3150393\n"
"35\n"
"help.text"
-msgid "AVERAGE"
-msgstr "AVERAGE"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150482\n"
+"04060101.xhp\n"
+"par_id3145236\n"
"36\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">Trả về trung bình của các đối số.</ahelp>"
+msgid "<item type=\"input\">11</item>"
+msgstr "<item type=\"input\">11</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3146943\n"
+"04060101.xhp\n"
+"par_id3150534\n"
"37\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">1200</item>"
+msgstr "<item type=\"input\">1200</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154679\n"
+"04060101.xhp\n"
+"par_id3150375\n"
"38\n"
"help.text"
-msgid "AVERAGE(Number1; Number2; ...Number30)"
-msgstr "AVERAGE(Số1; Số2; ...; Số30)"
+msgid "<item type=\"input\">48</item>"
+msgstr "<item type=\"input\">48</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150741\n"
+"04060101.xhp\n"
+"par_id3159121\n"
"39\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
-msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
+msgid "6"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153039\n"
+"04060101.xhp\n"
+"par_id3150456\n"
"40\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">Eva</item>"
+msgstr "<item type=\"input\">Eva</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151232\n"
+"04060101.xhp\n"
+"par_id3146886\n"
"41\n"
"help.text"
-msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
-msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3148754\n"
-"help.text"
-msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
-msgstr "<bookmark_value>hàm AVERAGEA</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3148754\n"
-"157\n"
-"help.text"
-msgid "AVERAGEA"
-msgstr "AVERAGEA"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3145138\n"
-"158\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Trả về trung bình của các đối số. Giá trị của một chuỗi văn bản là 0.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3153326\n"
-"159\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149734\n"
-"160\n"
-"help.text"
-msgid "AVERAGEA(Value1; Value2; ... Value30)"
-msgstr "AVERAGEA(Giá_trị1; Giá_trị2; ...; Giá_trị30)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3155260\n"
-"161\n"
-"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
-msgstr "<emph>Giá_trị1; Giá_trị2; ... Giá_trị30</emph> là đến 30 giá trị hay phạm vi. Chuỗi văn bản có giá trị 0."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149504\n"
-"162\n"
-"help.text"
-msgid "Example"
-msgstr "Ví dụ"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150864\n"
-"163\n"
-"help.text"
-msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
-msgstr "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153933\n"
+"04060101.xhp\n"
+"par_id3149945\n"
+"42\n"
"help.text"
-msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
-msgstr "<bookmark_value>hàm MODE</bookmark_value><bookmark_value>giá trị chung nhất</bookmark_value>"
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153933\n"
+"04060101.xhp\n"
+"par_id3157904\n"
"43\n"
"help.text"
-msgid "MODE"
-msgstr "MODE"
+msgid "<item type=\"input\">650</item>"
+msgstr "<item type=\"input\">650</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153085\n"
+"04060101.xhp\n"
+"par_id3149352\n"
"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
-msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Trả về giá trị chung nhất trong một tập hợp dữ liệu.</ahelp> Có vài giá trị với cùng một tần số thì nó trả về giá trị nhỏ nhất. Một lỗi xảy ra khi một giá trị không xuất hiện hai lần."
+msgid "<item type=\"input\">33</item>"
+msgstr "<item type=\"input\">33</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153003\n"
+"04060101.xhp\n"
+"par_id3150028\n"
"45\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "7"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155950\n"
+"04060101.xhp\n"
+"par_id3145826\n"
"46\n"
"help.text"
-msgid "MODE(Number1; Number2; ...Number30)"
-msgstr "MODE(Số1; Số2; ...; Số30)"
+msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
+msgstr "<item type=\"input\">F</item><item type=\"input\">thứ bậc</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150337\n"
+"04060101.xhp\n"
+"par_id3150743\n"
"47\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153571\n"
+"04060101.xhp\n"
+"par_id3154844\n"
"48\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153733\n"
+"04060101.xhp\n"
+"par_id3148435\n"
"49\n"
"help.text"
-msgid "<item type=\"input\">=MODE(A1:A50)</item>"
-msgstr "<item type=\"input\">=MODE(A1:A50)</item>"
+msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgstr "<item type=\"input\">3</item><item type=\"input\">00</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3149879\n"
+"04060101.xhp\n"
+"par_id3148882\n"
+"50\n"
"help.text"
-msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>hàm NEGBINOMDIST</bookmark_value><bookmark_value>phân bố nhị thức âm</bookmark_value>"
+msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgstr "<item type=\"input\">4</item><item type=\"input\">2</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3149879\n"
+"04060101.xhp\n"
+"par_id3150140\n"
"51\n"
"help.text"
-msgid "NEGBINOMDIST"
-msgstr "NEGBINOMDIST"
+msgid "8"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155437\n"
+"04060101.xhp\n"
+"par_id3146137\n"
"52\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Trả về phân bố nhị thức âm.</ahelp>"
+msgid "<item type=\"input\">Greta</item>"
+msgstr "<item type=\"input\">Greta</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3145351\n"
+"04060101.xhp\n"
+"par_id3148739\n"
"53\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150935\n"
+"04060101.xhp\n"
+"par_id3148583\n"
"54\n"
"help.text"
-msgid "NEGBINOMDIST(X; R; SP)"
-msgstr "NEGBINOMDIST(X; R; SP)"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153044\n"
+"04060101.xhp\n"
+"par_id3154556\n"
"55\n"
"help.text"
-msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
-msgstr "<emph>X</emph> đại diện giá trị được trả về cho phép thử không thành công."
+msgid "<item type=\"input\">200</item>"
+msgstr "<item type=\"input\">200</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151018\n"
+"04060101.xhp\n"
+"par_id3155255\n"
"56\n"
"help.text"
-msgid "<emph>R</emph> represents the value returned for successful tests."
-msgstr "<emph>R</emph> đại diện giá trị được trả về cho phép thử thành công."
+msgid "<item type=\"input\">36</item>"
+msgstr "<item type=\"input\">36</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148878\n"
+"04060101.xhp\n"
+"par_id3145141\n"
"57\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of the success of an attempt."
-msgstr "<emph>SP</emph> là xác suất thành công của một phép thử."
+msgid "9"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3149539\n"
+"04060101.xhp\n"
+"par_id3153078\n"
"58\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">Harry</item>"
+msgstr "<item type=\"input\">Harry</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148770\n"
+"04060101.xhp\n"
+"par_id3149955\n"
"59\n"
"help.text"
-msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
-msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> trả về 0,25."
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3155516\n"
+"04060101.xhp\n"
+"par_id3150005\n"
+"60\n"
"help.text"
-msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
-msgstr "<bookmark_value>hàm NORMINV</bookmark_value><bookmark_value>phân bố chuẩn;nghịch đảo</bookmark_value>"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155516\n"
+"04060101.xhp\n"
+"par_id3155951\n"
"61\n"
"help.text"
-msgid "NORMINV"
-msgstr "NORMINV"
+msgid "<item type=\"input\">1200</item>"
+msgstr "<item type=\"input\">1200</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154634\n"
+"04060101.xhp\n"
+"par_id3145169\n"
"62\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Trả về nghịch đảo của phân bố chuẩn tích lũy.</ahelp>"
+msgid "<item type=\"input\">44</item>"
+msgstr "<item type=\"input\">44</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153227\n"
+"04060101.xhp\n"
+"par_id3153571\n"
"63\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "10"
+msgstr "10"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147534\n"
+"04060101.xhp\n"
+"par_id3148761\n"
"64\n"
"help.text"
-msgid "NORMINV(Number; Mean; StDev)"
-msgstr "NORMINV(Số; TBình; Lệch)"
+msgid "<item type=\"input\">Irene</item>"
+msgstr "<item type=\"input\">Irene</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154950\n"
+"04060101.xhp\n"
+"par_id3149877\n"
"65\n"
"help.text"
-msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
-msgstr "<emph>Số</emph> đại diện giá trị xác suất được dùng để quyết định phân bố chuẩn ngược."
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150690\n"
+"04060101.xhp\n"
+"par_id3154327\n"
"66\n"
"help.text"
-msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
-msgstr "<emph>TBình</emph> đại diện giá trị trung bình trong phân bố chuẩn."
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148594\n"
+"04060101.xhp\n"
+"par_id3155435\n"
"67\n"
"help.text"
-msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
-msgstr "<emph>Lệch</emph> đại diện độ lệch chuẩn của phân bố chuẩn."
+msgid "<item type=\"input\">1000</item>"
+msgstr "<item type=\"input\">1000</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155822\n"
+"04060101.xhp\n"
+"par_id3145353\n"
"68\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">42</item>"
+msgstr "<item type=\"input\">42</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153921\n"
+"04060101.xhp\n"
+"par_id3150662\n"
"69\n"
"help.text"
-msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
-msgstr "<item type=\"input\">=NORMINV(0.9;63;5)</item> trả về 69,41. Nếu quả trứng trung bình cân nặng 63g với độ lệch chuẩn 5, thì có xác suất 90% rằng trứng không nặng hơn 69,41g."
+msgid "11"
+msgstr "11"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153722\n"
+"04060101.xhp\n"
+"par_id3150568\n"
+"70\n"
"help.text"
-msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
-msgstr "<bookmark_value>hàm NORMDIST</bookmark_value><bookmark_value>hàm mật độ</bookmark_value>"
+msgid "12"
+msgstr "12"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153722\n"
+"04060101.xhp\n"
+"par_id3149393\n"
"71\n"
"help.text"
-msgid "NORMDIST"
-msgstr "NORMDIST"
+msgid "13"
+msgstr "13"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150386\n"
+"04060101.xhp\n"
+"par_id3153544\n"
"72\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Trả về hàm mật độ hay phân bố chuẩn tích lũy.</ahelp>"
+msgid "<item type=\"input\">Name</item>"
+msgstr "<item type=\"input\">Name</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3083282\n"
+"04060101.xhp\n"
+"par_id3158414\n"
"73\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "<item type=\"input\">Grade</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150613\n"
+"04060101.xhp\n"
+"par_id3152820\n"
"74\n"
"help.text"
-msgid "NORMDIST(Number; Mean; StDev; C)"
-msgstr "NORMDIST(Số; TBình; Lệch; C)"
+msgid "<item type=\"input\">Age</item>"
+msgstr "<item type=\"input\">Age</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149820\n"
+"04060101.xhp\n"
+"par_id3154866\n"
"75\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị của phân bố dựa vào đó cần tính phân bố chuẩn."
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "<item type=\"input\">Distance to School</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146063\n"
+"04060101.xhp\n"
+"par_id3150471\n"
"76\n"
"help.text"
-msgid "<emph>Mean</emph> is the mean value of the distribution."
-msgstr "<emph>TBình</emph> là giá trị trung bình của phân bố."
+msgid "<item type=\"input\">Weight</item>"
+msgstr "<item type=\"input\">Weight</item>"
-#: 04060184.xhp
-#, fuzzy
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156295\n"
+"04060101.xhp\n"
+"par_id3153920\n"
"77\n"
"help.text"
-msgid "<emph>StDev</emph> is the standard deviation of the distribution."
-msgstr "<emph>Lệch</emph> là độ lệch chuẩn của phân bố."
+msgid "14"
+msgstr "14"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145080\n"
+"04060101.xhp\n"
+"par_id3148429\n"
"78\n"
"help.text"
-msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
-msgstr "<emph>C</emph> = 0 thì tính hàm mật độ ; <emph>C</emph> = 1 thì tính phân bố."
+msgid "<item type=\"input\">>600</item>"
+msgstr "<item type=\"input\">>600</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152972\n"
+"04060101.xhp\n"
+"par_id3152588\n"
"79\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "15"
+msgstr "15"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149283\n"
+"04060101.xhp\n"
+"par_id3083286\n"
"80\n"
"help.text"
-msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
-msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> trả về 0,01."
+msgid "16"
+msgstr "16"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149448\n"
+"04060101.xhp\n"
+"par_id3163823\n"
"81\n"
"help.text"
-msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
-msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> trả về 0,01."
+msgid "<item type=\"input\">DCOUNT</item>"
+msgstr "<item type=\"input\">DCOUNT</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3152934\n"
+"04060101.xhp\n"
+"par_id3145083\n"
+"82\n"
"help.text"
-msgid "<bookmark_value>PEARSON function</bookmark_value>"
-msgstr "<bookmark_value>hàm PEARSON</bookmark_value>"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152934\n"
+"04060101.xhp\n"
+"par_id3149282\n"
"83\n"
"help.text"
-msgid "PEARSON"
-msgstr "PEARSON"
+msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
+msgstr "Công thức ở ô B16 là « =DCOUNT(A1:E10;0;A13:E14) »"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153216\n"
+"04060101.xhp\n"
+"hd_id3150962\n"
+"192\n"
+"help.text"
+msgid "Database Function Parameters:"
+msgstr "Các tham số cho hàm của CSDL:"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3155837\n"
"84\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">Trả về hệ số tương quan mômen tích Pearson « r ».</ahelp>"
+msgid "The following items are the parameter definitions for all database functions:"
+msgstr "Các mục sau sẽ được dùng làm tham số cho tất cả các hàm CSDL:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3147081\n"
+"04060101.xhp\n"
+"par_id3149453\n"
"85\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Database</emph> is the cell range defining the database."
+msgstr "<emph>Cơ sở dữ liệu</emph> là phạm vi ô được đặt làm cơ sở dữ liệu."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156133\n"
+"04060101.xhp\n"
+"par_id3151272\n"
"86\n"
"help.text"
-msgid "PEARSON(Data1; Data2)"
-msgstr "PEARSON(Dữ_liệu1; Dữ_liệu2)"
+msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
+msgstr "<emph>DatabaseField</emph> đặt cột trong đó hàm hoạt động sau khi tiêu chí tìm kiếm của tham số đầu tiên được áp dụng và đã chọn các hàng dữ liệu. Việc này không liên quan đến tiêu chí tìm kiếm. Dùng số 0 để chỉ toàn bộ phạm vi dữ liệu. <variable id=\"quotes\">Để tham chiếu một cột thông qua tên của phần đầu cột, hãy đặt dấu ngoặc kép xung quanh tên của phần đầu cột. </variable>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151272\n"
+"04060101.xhp\n"
+"par_id3147083\n"
"87\n"
"help.text"
-msgid "<emph>Data1</emph> represents the array of the first data set."
-msgstr "<emph>Dữ_liệu1</emph> đại diện mảng của tập hợp dữ liệu thứ nhất."
+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> là phạm vi các ô chứa tiêu chí tìm kiếm. Nếu bạn viết một vài tiêu chí tìm kiếm trong 1 hàng, chúng sẽ được hợp lại bằng toán tử AND (và). Nếu bạn viết các tiêu chí trong các hàng khác nhau, chúng sẽ được hợp lại bằng toán tử OR (hoặc). Các ô không có gì sẽ bị bỏ qua."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153279\n"
+"04060101.xhp\n"
+"par_id3151188\n"
+"188\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
+msgstr ""
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3882869\n"
+"help.text"
+msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
+msgstr ""
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3150882\n"
+"help.text"
+msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
+msgstr "<bookmark_value>hàm DCOUNT</bookmark_value><bookmark_value>đếm hàng;với giá trị số</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3150882\n"
"88\n"
"help.text"
-msgid "<emph>Data2</emph> represents the array of the second data set."
-msgstr "<emph>Dữ_liệu2</emph> đại diện mảng của tập hợp dữ liệu thứ hai."
+msgid "DCOUNT"
+msgstr "DCOUNT"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3147567\n"
+"04060101.xhp\n"
+"par_id3156133\n"
"89\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT đếm số dòng (hay số bản ghi) trong CSDL thoả mãn điều kiện tìm kiếm và chứa các giá trị số.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151187\n"
+"04060101.xhp\n"
+"hd_id3156099\n"
"90\n"
"help.text"
-msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
-msgstr "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> trả về hệ số tương quan Pearson của cả hai tập hợp dữ liệu."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3152806\n"
+"04060101.xhp\n"
+"par_id3153218\n"
+"91\n"
"help.text"
-msgid "<bookmark_value>PHI function</bookmark_value>"
-msgstr "<bookmark_value>hàm PHI</bookmark_value>"
+msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
+msgstr "DCOUNT(Database; DatabaseField; SearchCriteria)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152806\n"
+"04060101.xhp\n"
+"par_id3153273\n"
+"187\n"
+"help.text"
+msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+msgstr "Đối với tham số « DatabaseField », bạn có thể nhập một ô đã ghi rõ cột, hoặc nhập số 0 để đại diện toàn bộ cơ sở dữ liệu. Tham số không thể là rỗng. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3154743\n"
"92\n"
"help.text"
-msgid "PHI"
-msgstr "PHI"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150254\n"
+"04060101.xhp\n"
+"par_id3153623\n"
"93\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PHI\">Trả về các giá trị của hàm phân bố cho một phân bố chuẩn tiêu chuẩn.</ahelp>"
+msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
+msgstr "Trong thí dụ trên (xin hãy cuộn lên), muốn biết mấy đứa trẻ cần phải đi trường học xa hơn 600 mét. Kết quả sẽ được cất giữ trong ô B16. Đặt con trỏ vào ô B16. Nhập công thức <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> vào ô B16. <emph>Trợ lý Hàm</emph> có thể giúp bạn nhập phạm vi dữ liệu."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154748\n"
+"04060101.xhp\n"
+"par_id3149142\n"
"94\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
+msgstr "<emph>Database</emph> là phạm vi dữ liệu cần ước lượng, bao gồm các phần đầu: trong trường hợp này « A1:E10 ». <emph>DatabaseField</emph> ghi rõ cột cho các tiêu chuẩn tìm kiếm: trong trường hợp này, toàn bộ cơ sở dữ liệu. <emph>SearchCriteria</emph> là phạm vi vào đó bạn có thể nhập các tham số tìm kiếm: trong trường hợp này « A13:E14 »."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149976\n"
+"04060101.xhp\n"
+"par_id3145652\n"
"95\n"
"help.text"
-msgid "PHI(Number)"
-msgstr "PHI(Số)"
+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 "Để tìm xem bao nhiêu đứa trẻ trong lớp 2 lớn hơn 7 tuổi, xoá mục nhập « >600 » trong ô D14 và nhập <item type=\"input\">2</item> vào ô B14 dưới Grade (Lớp), và nhập <item type=\"input\">>7</item> vào ô C14 ở bên phải. Kết quả là 2. Có hai đứa trẻ trong lớp 2 lớn hơn 7 tuổi. Vì cả hai tiêu chuẩn đều nằm trong cùng một hàng, chúng được kết nối với nhau bằng toán tử AND (và)."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156108\n"
-"96\n"
+"04060101.xhp\n"
+"bm_id3156123\n"
"help.text"
-msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
-msgstr "<emph>Số</emph> đại diện giá trị dựa vào đó tính phân bố chuẩn tiêu chuẩn."
+msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgstr "<bookmark_value>hàm DCOUNTA</bookmark_value><bookmark_value>bản ghi;đếm trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>đếm hàng;dùng giá trị kiểu số hoặc chữ và số</bookmark_value>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153621\n"
+"04060101.xhp\n"
+"hd_id3156123\n"
"97\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "DCOUNTA"
+msgstr "DCOUNTA"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155849\n"
+"04060101.xhp\n"
+"par_id3156110\n"
"98\n"
"help.text"
-msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
-msgstr "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">Hàm DCOUNTA đếm số hàng (bản ghi) trong một cơ sở dữ liệu thỏa các điều kiện tìm kiếm đã xác định và chứa giá trị kiểu số hoặc chữ và số.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3143236\n"
+"04060101.xhp\n"
+"hd_id3143228\n"
"99\n"
"help.text"
-msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
-msgstr "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149286\n"
+"04060101.xhp\n"
+"par_id3146893\n"
"100\n"
"help.text"
-msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
-msgstr "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
+msgstr "DCOUNTA(Database; DatabaseField; SearchCriteria)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153985\n"
+"04060101.xhp\n"
+"hd_id3149751\n"
+"101\n"
"help.text"
-msgid "<bookmark_value>POISSON function</bookmark_value>"
-msgstr "<bookmark_value>hàm POISSON</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153985\n"
+"04060101.xhp\n"
+"par_id3153982\n"
"102\n"
"help.text"
-msgid "POISSON"
-msgstr "POISSON"
+msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
+msgstr "Trong mẫu thí dụ trên (xin hãy cuộn lên), bạn có thể tìm kiếm số đứa trẻ có tên bắt đầu với chữ E hoặc xếp sau E trong bảng chữ cái. Chỉnh sửa công thức trong ô B16 để hiển thị <item type=\"input\">=DCOUNTA(A1:E10;\"Tuổi\";A13:E14)</item>. Xoá các tiêu chuẩn tìm kiếm cũ, và nhập <item type=\"input\">>=E</item> dưới \"Tên\" trong trường A14. Kết quả là 5. Bây giờ nếu bạn xoá tất cả các giá trị số cho Greta trong hàng 8, kết quả thay đổi thành 4. Hàng 8 không còn được đếm lại vì nó không chứa giá trị. Tên \"Greta\" là chữ, không phải một giá trị số. Lưu ý: tham số \"DatabaseField\" (trường cơ sở dữ liệu) cần phải trỏ tới một cột chứa giá trị."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154298\n"
-"103\n"
+"04060101.xhp\n"
+"bm_id3147256\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Trả về phân bố Poisson.</ahelp>"
+msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>Hàm DGET </bookmark_value><bookmark_value>nội dung ô;tìm kiếm trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tìm kiếm;nội dung ô trong cơ sở dữ liệu Calc</bookmark_value>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3159183\n"
+"04060101.xhp\n"
+"hd_id3147256\n"
"104\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "DGET"
+msgstr "DGET"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146093\n"
+"04060101.xhp\n"
+"par_id3152801\n"
"105\n"
"help.text"
-msgid "POISSON(Number; Mean; C)"
-msgstr "POISSON(Số; TBình; C)"
+msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
+msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">Hàm DGET trả về nội dung của ô đã tham chiếu trong một cơ sở dữ liệu mà tương ứng với tiêu chuẩn tìm kiếm đã ghi rõ.</ahelp> Trong trường hợp gặp lỗi, hàm trả về hoặc « #VALUE! » (không tìm thấy hàng), hoặc « Err502 » (tìm thấy nhiều hơn một ô)."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147253\n"
+"04060101.xhp\n"
+"hd_id3159344\n"
"106\n"
"help.text"
-msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
-msgstr "<emph>Số</emph> đại diện giá trị dựa vào đó tính phân bố Poisson."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151177\n"
+"04060101.xhp\n"
+"par_id3154696\n"
"107\n"
"help.text"
-msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
-msgstr "<emph>TBình</emph> đại diện giá trị ở giữa của phân bố Poisson."
+msgid "DGET(Database; DatabaseField; SearchCriteria)"
+msgstr "DGET(Database; DatabaseField; SearchCriteria)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149200\n"
+"04060101.xhp\n"
+"hd_id3153909\n"
"108\n"
"help.text"
-msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
-msgstr "<emph>C</emph> (tùy chọn) = 0 hoặc False sẽ tính hàm mật độ; <emph>C</emph> = 1 hoặc True sẽ tính hàm phân bố. Nếu bỏ trống, giá trị mặc định True sẽ được chèn vào khi bạn lưu tài liệu, nhằm tương thích tốt nhất với các chương trình khác và các phiên bản cũ hơn của %PRODUCTNAME."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3159347\n"
+"04060101.xhp\n"
+"par_id3155388\n"
"109\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+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 "Trong mẫu thí dụ trên (xin hãy cuộn lên), muốn xác định lớp học của đứa trẻ có tên trong ô A14. Công thức được nhập vào ô B16 và khác một ít với các mẫu thí dụ trước vì chỉ một cột (một trường cơ sở dữ liệu) có thể được nhập cho tham số <emph>DatabaseField</emph>. Nhập công thức này:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150113\n"
+"04060101.xhp\n"
+"par_id3153096\n"
"110\n"
"help.text"
-msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
-msgstr "<item type=\"input\">=POISSON(60;50;1)</item> trả về 0,93."
+msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153100\n"
+"04060101.xhp\n"
+"par_id3150524\n"
+"111\n"
"help.text"
-msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
-msgstr "<bookmark_value>hàm PERCENTILE</bookmark_value>"
+msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
+msgstr "Nhập tên <item type=\"input\">Frank</item> vào ô A14 thì bạn thấy kết quả 2, vì Frank học lớp 2. Nhâp « <item type=\"input\">Age</item> » (Tuổi) thay cho « Grade » (Lớp) thì bạn thấy Frank có mấy tuổi."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153100\n"
+"04060101.xhp\n"
+"par_id3148833\n"
"112\n"
"help.text"
-msgid "PERCENTILE"
-msgstr "PERCENTILE"
+msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
+msgstr "Hoặc nhập giá trị <item type=\"input\">11</item> chỉ vào ô C14, và xoá các mục nhập khác trong hàng này. Chỉnh sửa công thức trong ô B16 như sau :"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154940\n"
+"04060101.xhp\n"
+"par_id3149912\n"
"113\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
-msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">Trả về phân vị alpha của các giá trị ngày tháng trong một mảng.</ahelp> Một phân vị thì trả về giá trị trình độ cho một chuỗi dữ liệu mà chạy từ giá trị nhỏ nhất (Alpha=0) đến giá trị lớn nhất (alpha=1) của một chuỗi dữ liệu. Đối với <item type=\"literal\">Alpha</item> = 25%, phân vị nghĩa là tứ phân vị; <item type=\"literal\">Alpha</item> = 50% là MEDIAN (trung vị)."
+msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3150531\n"
+"04060101.xhp\n"
+"par_id3148813\n"
"114\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
+msgstr "Thay cho lớp, tên được truy vận. Phép giải xuất hiện ngay: Daniel là đứa trẻ duy nhất có 11 tuổi."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148813\n"
+"04060101.xhp\n"
+"bm_id3149766\n"
+"help.text"
+msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
+msgstr "<bookmark_value>Hàm DMAX</bookmark_value><bookmark_value>giá trị lớn nhất trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tìm kiếm;giá trị lớn nhất trong cột</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3149766\n"
"115\n"
"help.text"
-msgid "PERCENTILE(Data; Alpha)"
-msgstr "PERCENTILE(Dữ_liệu; Alpha)"
+msgid "DMAX"
+msgstr "DMAX"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153054\n"
+"04060101.xhp\n"
+"par_id3154903\n"
"116\n"
"help.text"
-msgid "<emph>Data</emph> represents the array of data."
-msgstr "<emph>Dữ_liệu</emph> đại diện mảng dữ liệu."
+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\">Hàm DMAX trả về giá trị lớn nhất của một ô (trường) trong một cơ sở dữ liệu (mọi bản ghi) thỏa các tiêu chuẩn tìm kiếm đã xác định.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154212\n"
+"04060101.xhp\n"
+"hd_id3150771\n"
"117\n"
"help.text"
-msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
-msgstr "<emph>Alpha</emph> đại diện phần trăm của trình độ giữa 0 và 1."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154290\n"
+"04060101.xhp\n"
+"par_id3159157\n"
"118\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "DMAX(Database; DatabaseField; SearchCriteria)"
+msgstr "DMAX(Database; DatabaseField; SearchCriteria)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3159147\n"
+"04060101.xhp\n"
+"hd_id3145420\n"
"119\n"
"help.text"
-msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
-msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> đại diện giá trị trong tập hợp dữ liệu, mà bằng với 10% trình độ dữ liệu trong phạm vi ô A1:A50."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3148807\n"
+"04060101.xhp\n"
+"par_id3148442\n"
+"120\n"
"help.text"
-msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
-msgstr "<bookmark_value>hàm PERCENTRANK</bookmark_value>"
+msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Đối với mẫu thí dụ trên, để tìm biết cân nặng của đứa trẻ nặng nhất trong mỗi lớp (xin hãy cuộn lên), nhập công thức này vào ô B16:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3148807\n"
+"04060101.xhp\n"
+"par_id3148804\n"
"121\n"
"help.text"
-msgid "PERCENTRANK"
-msgstr "PERCENTRANK"
+msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153573\n"
+"04060101.xhp\n"
+"par_id3150510\n"
"122\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Trả về hạng phần trăm của một giá trị trong một mẫu.</ahelp>"
+msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
+msgstr "Dưới Grade (Lớp), nhập <item type=\"input\">1, 2, 3,</item> v.v., cái này sau cái kia. Một khi nhập một số lớp thì chương trình hiển thị cân nặng của đứa trẻ nặng nhất."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3147512\n"
+"04060101.xhp\n"
+"bm_id3159141\n"
+"help.text"
+msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
+msgstr "<bookmark_value>hàm DMIN</bookmark_value><bookmark_value>giá trị tối thiểu trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tìm kiếm;giá trị tối thiểu trong cột</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3159141\n"
"123\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "DMIN"
+msgstr "DMIN"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147238\n"
+"04060101.xhp\n"
+"par_id3154261\n"
"124\n"
"help.text"
-msgid "PERCENTRANK(Data; Value)"
-msgstr "PERCENTRANK(Dữ_liệu; Giá_trị)"
+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\">Hàm DMIN trả về nội dung tối thiểu của một ô (trường) trong một cơ sở dữ liệu mà tương ứng với tiêu chuẩn tìm kiếm đã ghi rõ.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154266\n"
+"04060101.xhp\n"
+"hd_id3147238\n"
"125\n"
"help.text"
-msgid "<emph>Data</emph> represents the array of data in the sample."
-msgstr "<emph>Dữ_liệu</emph> đại diện mảng dữ liệu trong mẫu."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148475\n"
+"04060101.xhp\n"
+"par_id3148479\n"
"126\n"
"help.text"
-msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
-msgstr "<emph>Giá_trị</emph> đại diện giá trị cho đó cần xác định hạng phân vị."
+msgid "DMIN(Database; DatabaseField; SearchCriteria)"
+msgstr "DMIN(Database; DatabaseField; SearchCriteria)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155364\n"
+"04060101.xhp\n"
+"hd_id3151050\n"
"127\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149163\n"
+"04060101.xhp\n"
+"par_id3148925\n"
"128\n"
"help.text"
-msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
-msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> trả về hạng phần trăm của giá trị 50 từ tổng số tất cả các giá trị nằm trong phạm vi ô A1:A50. Nếu 50 nằm ở ngoại tổng số này, một thông điệp lỗi sẽ xuất hiện."
+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 "Để tìm khoảng cách trường hợp mà ngắn nhất cho các đứa trẻ trong mỗi lớp trong mẫu thí dụ trên (xin hãy cuộn lên), nhập công thức này vào ô B16:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3166442\n"
+"04060101.xhp\n"
+"par_id3149161\n"
+"129\n"
"help.text"
-msgid "<bookmark_value>QUARTILE function</bookmark_value>"
-msgstr "<bookmark_value>hàm QUARTILE</bookmark_value>"
+msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3166442\n"
+"04060101.xhp\n"
+"par_id3148917\n"
"130\n"
"help.text"
-msgid "QUARTILE"
-msgstr "QUARTILE"
+msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
+msgstr "Trong hàng 14, dưới « Grade » (Lớp), nhập <item type=\"input\">1, 2, 3,</item> v.v., cái này sau cái kia. Kết quả là khoảng cách trường học mà ngắn nhất cho mỗi lớp."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146958\n"
+"04060101.xhp\n"
+"bm_id3154274\n"
+"help.text"
+msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>hàm DAVERAGE</bookmark_value><bookmark_value>số trung bình;trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tính;số trung bình trong cơ sở dữ liệu Calc</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3154274\n"
"131\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Trả về tứ phân vị của một tập hợp dữ liệu.</ahelp>"
+msgid "DAVERAGE"
+msgstr "DAVERAGE"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152942\n"
+"04060101.xhp\n"
+"par_id3166453\n"
"132\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Hàm DAVERAGE trả về trị trung bình của giá trị của tất cả các ô (trường) nằm trong tất cả các hàng (bản ghi cơ sở dữ liệu) thỏa các tiêu chuẩn tìm kiếm đã xác định.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153684\n"
+"04060101.xhp\n"
+"hd_id3146955\n"
"133\n"
"help.text"
-msgid "QUARTILE(Data; Type)"
-msgstr "QUARTILE(Dữ_liệu; Kiểu)"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153387\n"
+"04060101.xhp\n"
+"par_id3150710\n"
"134\n"
"help.text"
-msgid "<emph>Data</emph> represents the array of data in the sample."
-msgstr "<emph>Dữ_liệu</emph> đại diện mảng dữ liệu trong mẫu."
+msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgstr "DAVERAGE(Database; DatabaseField; SearchCriteria)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155589\n"
+"04060101.xhp\n"
+"hd_id3152943\n"
"135\n"
"help.text"
-msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
-msgstr "<emph>Kiểu</emph> đại diện kiểu tứ phân vị. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% và 4 = MAX.)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149103\n"
-"136\n"
-"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3159276\n"
-"137\n"
-"help.text"
-msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
-msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> trả về giá trị của đó 50% trình độ tương ứng với những giá trị dưới lên trên trong phạm vi ô A1:A50."
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"tit\n"
+"04060101.xhp\n"
+"par_id3149104\n"
+"136\n"
"help.text"
-msgid "Operators in $[officename] Calc"
-msgstr "Toán tử trong $[officename] Calc"
+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 "Để tìm cân nặng trung bình của tất cả các đứa trẻ cùng tuổi trong mẫu thí dụ trên (xin hãy cuộn lên) thì nhập công thức này vào ô B16:"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"bm_id3156445\n"
+"04060101.xhp\n"
+"par_id3153688\n"
+"137\n"
"help.text"
-msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
-msgstr "<bookmark_value>công thức; toán tử</bookmark_value><bookmark_value>toán tử; hàm công thức</bookmark_value><bookmark_value>dấu chia, xem thêm toán tử</bookmark_value><bookmark_value>dấu nhân, xem thêm toán tử</bookmark_value><bookmark_value>dấu trừ, xem thêm toán tử</bookmark_value><bookmark_value>dấu cộng, xem thêm toán tử</bookmark_value><bookmark_value>toán tử văn bản</bookmark_value><bookmark_value>phép so sánh;toán tử trong Calc</bookmark_value><bookmark_value>toán tử số học</bookmark_value><bookmark_value>toán tử tham chiếu</bookmark_value>"
+msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3156445\n"
-"1\n"
+"04060101.xhp\n"
+"par_id3155587\n"
+"138\n"
"help.text"
-msgid "Operators in $[officename] Calc"
-msgstr "Toán tử trong $[officename] Calc"
+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 "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item> v.v., cái này sau cái kia. Kết quả là cân nặng trung bình của tất cả các đứa trẻ cùng tuổi."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3155812\n"
-"2\n"
+"04060101.xhp\n"
+"bm_id3159269\n"
"help.text"
-msgid "You can use the following operators in $[officename] Calc:"
-msgstr "Trong $[officename] Calc, bạn có thể sử dụng những toán tử theo đây:"
+msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>hàm DPRODUCT</bookmark_value><bookmark_value>phép nhân;các nội dung ô trong cơ sở dữ liệu Calc</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3153066\n"
-"3\n"
+"04060101.xhp\n"
+"hd_id3159269\n"
+"139\n"
"help.text"
-msgid "Arithmetical Operators"
-msgstr "Toán tử Số học"
+msgid "DPRODUCT"
+msgstr "DPRODUCT"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3148601\n"
-"4\n"
+"04060101.xhp\n"
+"par_id3152879\n"
+"140\n"
"help.text"
-msgid "These operators return numerical results."
-msgstr "Những toán tử này trả về kết quả số học."
+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\">Hàm DPRODUCT thì nhân tất cả các ô của một phạm vi dữ liệu trong đó nội dung ô tương ứng với tiêu chuẩn tìm kiếm.</ahelp>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3144768\n"
-"5\n"
+"04060101.xhp\n"
+"hd_id3149966\n"
+"141\n"
"help.text"
-msgid "Operator"
-msgstr "Toán tử"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157982\n"
-"6\n"
+"04060101.xhp\n"
+"par_id3154854\n"
+"142\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
+msgstr "DPRODUCT(Database; DatabaseField; SearchCriteria)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3159096\n"
-"7\n"
+"04060101.xhp\n"
+"hd_id3149802\n"
+"143\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149126\n"
-"8\n"
-"help.text"
-msgid "+ (Plus)"
-msgstr "+ (dấu cộng)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150892\n"
-"9\n"
-"help.text"
-msgid "Addition"
-msgstr "Phép cộng"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153247\n"
-"10\n"
-"help.text"
-msgid "1+1"
-msgstr "1+1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159204\n"
-"11\n"
-"help.text"
-msgid "- (Minus)"
-msgstr "- (dấu trừ)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145362\n"
-"12\n"
-"help.text"
-msgid "Subtraction"
-msgstr "Phép trừ"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153554\n"
-"13\n"
-"help.text"
-msgid "2-1"
-msgstr "2-1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153808\n"
-"14\n"
-"help.text"
-msgid "- (Minus)"
-msgstr "- (dấu trừ)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3151193\n"
-"15\n"
-"help.text"
-msgid "Negation"
-msgstr "Phủ định"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154712\n"
-"16\n"
-"help.text"
-msgid "-5"
-msgstr "-5"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149873\n"
-"17\n"
-"help.text"
-msgid "* (asterisk)"
-msgstr "* (dấu sao)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3147504\n"
-"18\n"
-"help.text"
-msgid "Multiplication"
-msgstr "Phép nhân"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149055\n"
-"19\n"
-"help.text"
-msgid "2*2"
-msgstr "2*2"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3151341\n"
-"20\n"
-"help.text"
-msgid "/ (Slash)"
-msgstr "/ (gạch chéo)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159260\n"
-"21\n"
-"help.text"
-msgid "Division"
-msgstr "Phép chia"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153027\n"
-"22\n"
-"help.text"
-msgid "9/3"
-msgstr "9/3"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156396\n"
-"23\n"
-"help.text"
-msgid "% (Percent)"
-msgstr "% (dấu phần trăm)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150372\n"
-"24\n"
-"help.text"
-msgid "Percent"
-msgstr "Phần trăm"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145632\n"
-"25\n"
-"help.text"
-msgid "15%"
-msgstr "15%"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149722\n"
-"26\n"
-"help.text"
-msgid "^ (Caret)"
-msgstr "^ (dấu mũ)"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3159127\n"
-"27\n"
+"04060101.xhp\n"
+"par_id3148986\n"
+"144\n"
"help.text"
-msgid "Exponentiation"
-msgstr "Phép mũ hoá"
+msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
+msgstr "Đối với mẫu thí dụ tiệc sinh nhật trên (xin hãy cuộn lên), không thể áp dụng hàm này một cách có ích."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157873\n"
-"28\n"
+"04060101.xhp\n"
+"bm_id3148462\n"
"help.text"
-msgid "3^2"
-msgstr "3^2"
+msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
+msgstr "<bookmark_value>hàm STDEV</bookmark_value><bookmark_value>độ lệch chuẩn trong thống kê;dựa vào một mẫu phân bố</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3152981\n"
-"29\n"
+"04060101.xhp\n"
+"hd_id3148462\n"
+"145\n"
"help.text"
-msgid "Comparative operators"
-msgstr "Toán tử So sánh"
+msgid "DSTDEV"
+msgstr "DSTDEV"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157902\n"
-"30\n"
+"04060101.xhp\n"
+"par_id3154605\n"
+"146\n"
"help.text"
-msgid "These operators return either true or false."
-msgstr "Những toán tử này trả về hoặc Đúng hoặc Sai."
+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\">Hàm DSTDEV tính độ lệch chuẩn của một dân số dựa vào một mẫu, dùng những số trong một cột cơ sở dữ liệu tương ứng với các điều kiện đã cho.</ahelp> Các bản ghi được xem như là một mẫu dữ liệu. Nghĩa là những đứa trẻ trong ví dụ đại diện cho một mặt cắt của tất cả các đứa trẻ. Lưu ý rằng không thể thu được một kết quả đại diện từ một mẫu nhỏ hơn một nghìn."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149889\n"
-"31\n"
+"04060101.xhp\n"
+"hd_id3149427\n"
+"147\n"
"help.text"
-msgid "Operator"
-msgstr "Toán tử"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3150743\n"
-"32\n"
+"04060101.xhp\n"
+"par_id3148661\n"
+"148\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgstr "DSTDEV(Database; DatabaseField; SearchCriteria)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3146877\n"
-"33\n"
+"04060101.xhp\n"
+"hd_id3153945\n"
+"149\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148888\n"
-"34\n"
-"help.text"
-msgid "= (equal sign)"
-msgstr "= (dấu bằng)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154845\n"
-"35\n"
-"help.text"
-msgid "Equal"
-msgstr "Bằng"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154546\n"
-"36\n"
-"help.text"
-msgid "A1=B1"
-msgstr "A1=B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154807\n"
-"37\n"
-"help.text"
-msgid "> (Greater than)"
-msgstr "> (lớn hơn)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148580\n"
-"38\n"
-"help.text"
-msgid "Greater than"
-msgstr "Lớn hơn"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145138\n"
-"39\n"
-"help.text"
-msgid "A1>B1"
-msgstr "A1>B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149507\n"
-"40\n"
-"help.text"
-msgid "< (Less than)"
-msgstr "< (nhỏ hơn)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150145\n"
-"41\n"
-"help.text"
-msgid "Less than"
-msgstr "Nhỏ hơn"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150901\n"
-"42\n"
-"help.text"
-msgid "A1<B1"
-msgstr "A1<B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153078\n"
-"43\n"
-"help.text"
-msgid ">= (Greater than or equal to)"
-msgstr ">= (lớn hơn hay bằng)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150866\n"
-"44\n"
-"help.text"
-msgid "Greater than or equal to"
-msgstr "Lớn hơn hay bằng"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153111\n"
-"45\n"
-"help.text"
-msgid "A1>=B1"
-msgstr "A1>=B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153004\n"
-"46\n"
-"help.text"
-msgid "<= (Less than or equal to)"
-msgstr "<= (nhỏ hơn hay bằng)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150335\n"
-"47\n"
-"help.text"
-msgid "Less than or equal to"
-msgstr "Nhỏ hơn hay bằng"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3148760\n"
-"48\n"
+"04060101.xhp\n"
+"par_id3149934\n"
+"150\n"
"help.text"
-msgid "A1<=B1"
-msgstr "A1<=B1"
+msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
+msgstr "Để tìm độ lệch chuẩn của cân nặng của tất cả các đứa trẻ cùng tuổi trong mẫu thí dụ (xin hãy cuộn lên), nhập công thức này vào ô B16:"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157994\n"
-"49\n"
+"04060101.xhp\n"
+"par_id3150630\n"
+"151\n"
"help.text"
-msgid "<> (Inequality)"
-msgstr "<> (bất đẳng thức)"
+msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3150019\n"
-"50\n"
+"04060101.xhp\n"
+"par_id3153536\n"
+"152\n"
"help.text"
-msgid "Inequality"
-msgstr "Bất đẳng thức"
+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 "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item> v.v., cái này sau cái kia. Kết quả là độ lệch chuẩn của cân nặng của tất cả các đứa trẻ cùng tuổi này."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149878\n"
-"51\n"
+"04060101.xhp\n"
+"bm_id3150429\n"
"help.text"
-msgid "A1<>B1"
-msgstr "A1<>B1"
+msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+msgstr "<bookmark_value>Hàm DSTDEVP </bookmark_value><bookmark_value>độ lệch chuẩn trong cơ sở dữ liệu;trên cơ sở dân số</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3145241\n"
-"52\n"
+"04060101.xhp\n"
+"hd_id3150429\n"
+"153\n"
"help.text"
-msgid "Text operators"
-msgstr "Toán tử Văn bản"
+msgid "DSTDEVP"
+msgstr "DSTDEVP"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3155438\n"
-"53\n"
+"04060101.xhp\n"
+"par_id3145598\n"
+"154\n"
"help.text"
-msgid "The operator combines separate texts into one text."
-msgstr "Toán tử gộp lại vài đoạn văn bản thành một văn bản."
+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\">Hàm DSTDEVP tính độ lệch chuẩn của một dân số dựa vào tất cả các ô của một phạm vi dữ liệu thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp> Các bản ghi trong ví dụ được xử lý như là toàn bộ dân số."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3150566\n"
-"54\n"
+"04060101.xhp\n"
+"hd_id3145307\n"
+"155\n"
"help.text"
-msgid "Operator"
-msgstr "Toán tử"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3153048\n"
-"55\n"
+"04060101.xhp\n"
+"par_id3149484\n"
+"156\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+msgstr "DSTDEVP(Database; DatabaseField; SearchCriteria)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149001\n"
-"56\n"
+"04060101.xhp\n"
+"hd_id3153322\n"
+"157\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148769\n"
-"57\n"
-"help.text"
-msgid "& (And)"
-msgstr "& (và)"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"bm_id3157975\n"
+"04060101.xhp\n"
+"par_id3155431\n"
+"158\n"
"help.text"
-msgid "<bookmark_value>text concatenation AND</bookmark_value>"
-msgstr "<bookmark_value>ghép nối văn bản dùng toán tử AND (và)</bookmark_value>"
+msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgstr "Để tìm độ lệch chuẩn của cân nặng cho tất cả các đứa trẻ cùng tuổi ở tiệc sinh nhật của Joe (xin hãy cuộn lên), nhập công thức này vào ô B16:"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157975\n"
-"58\n"
+"04060101.xhp\n"
+"par_id3148411\n"
+"159\n"
"help.text"
-msgid "text concatenation AND"
-msgstr "ghép nối văn bản dùng toán tử AND (và)"
+msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157993\n"
-"59\n"
+"04060101.xhp\n"
+"par_id3143271\n"
+"160\n"
"help.text"
-msgid "\"Sun\" & \"day\" is \"Sunday\""
-msgstr "\"Chủ\" & \"Nhật\" thì \"Chủ Nhật\""
+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 "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item>, v.v., cái này sau cái kia. Kết quả là độ lệch chuẩn của cân nặng cho tất cả các trẻ con cùng tuổi cho ta đã kiểm tra cân nặng."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3153550\n"
-"60\n"
+"04060101.xhp\n"
+"bm_id3154794\n"
"help.text"
-msgid "Reference operators"
-msgstr "Toán tử Tham chiếu"
+msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>hàm DSUM</bookmark_value><bookmark_value>tính;tổng trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tổng;các ô trong cơ sở dữ liệu Calc</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149024\n"
-"61\n"
+"04060101.xhp\n"
+"hd_id3154794\n"
+"161\n"
"help.text"
-msgid "These operators return a cell range of zero, one or more cells."
-msgstr "Những toán tử này trả về một phạm vi ô chứa số không, một hay nhiều ô."
+msgid "DSUM"
+msgstr "DSUM"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id2324900\n"
+"04060101.xhp\n"
+"par_id3149591\n"
+"162\n"
"help.text"
-msgid "Range has the highest precedence, then intersection, and then finally union."
-msgstr "Phạm vi có quyền đi trước cao nhất, sau đó giao, và cuối cùng hợp."
+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\">Hàm DSUM trả về tổng của tất cả các ô trong một trường cơ sở dữ liệu nào đó trong tất cả các hàng (bản ghi) thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3158416\n"
-"62\n"
+"04060101.xhp\n"
+"hd_id3146128\n"
+"163\n"
"help.text"
-msgid "Operator"
-msgstr "Toán tử"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3152822\n"
-"63\n"
+"04060101.xhp\n"
+"par_id3150989\n"
+"164\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "DSUM(Database; DatabaseField; SearchCriteria)"
+msgstr "DSUM(Database; DatabaseField; SearchCriteria)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3154949\n"
-"64\n"
+"04060101.xhp\n"
+"hd_id3159079\n"
+"165\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156257\n"
-"65\n"
-"help.text"
-msgid ": (Colon)"
-msgstr ": (dấu hai chấm)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153924\n"
-"66\n"
-"help.text"
-msgid "Range"
-msgstr "Phạm vi"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148432\n"
-"67\n"
-"help.text"
-msgid "A1:C108"
-msgstr "A1:C108"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3152592\n"
-"68\n"
-"help.text"
-msgid "! (Exclamation point)"
-msgstr "! (dấu chấm than)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"bm_id3150606\n"
-"help.text"
-msgid "<bookmark_value>intersection operator</bookmark_value>"
-msgstr "<bookmark_value>toán tử giao</bookmark_value>"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150606\n"
-"69\n"
-"help.text"
-msgid "Intersection"
-msgstr "Giao"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3083445\n"
-"70\n"
-"help.text"
-msgid "SUM(A1:B6!B5:C12)"
-msgstr "SUM(A1:B6!B5:C12)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150385\n"
-"71\n"
-"help.text"
-msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
-msgstr "Tính tổng số tất cả các ô trong giao ; trong mẫu thí dụ này, kết quả là tổng số hai ô B5 và B6."
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id4003723\n"
-"help.text"
-msgid "~ (Tilde)"
-msgstr "~ (dấu ngã)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id838953\n"
-"help.text"
-msgid "Concatenation or union"
-msgstr "Ghép nối hay hợp"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id2511978\n"
+"04060101.xhp\n"
+"par_id3152766\n"
+"166\n"
"help.text"
-msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
-msgstr "Nhận hai tham chiếu và trả về một danh sách tham chiếu là sự ghép nối tham chiếu bên trái và tham chiếu bên phải (theo thứ tự đó). Mục nhập đôi thì được tham chiếu hai lần. Xem ghi chú bên dưới bảng này."
+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 "Để tìm biết chiều dài của tổ hợp các khoảng cách đi trường hợp của tất các đứa trẻ ở tiệc sinh nhật của Joe (xin hãy cuộn lên) thì nhập công thức này vào ô B16:"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id181890\n"
+"04060101.xhp\n"
+"par_id3151312\n"
+"167\n"
"help.text"
-msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
-msgstr "Ghép nối tham chiếu dùng dấu ngã là một toán tử mới, giới thiệu trong OpenOffice.org 3.0 và StarOffice 9. Khi một công thức chứa dấu ngã đã có trong một tài liệu được mở bằng phiên bản cũ của phần mềm này, một lỗi được trả về. Một danh sách tham chiếu không được phép bên trong một biểu thức kiểu mảng."
+msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"tit\n"
+"04060101.xhp\n"
+"par_id3150596\n"
+"168\n"
"help.text"
-msgid "WEEKDAY"
-msgstr "WEEKDAY"
+msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
+msgstr "Nhập <item type=\"input\">2</item> vào hàng 14 dưới « Grade ». Vậy chương trình hiển thị tổng (1950) các khoảng cách đi trường học của tất cả các đứa trẻ học lớp 2."
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"bm_id3154925\n"
+"04060101.xhp\n"
+"bm_id3155614\n"
"help.text"
-msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
-msgstr "<bookmark_value>hàm WEEKDAY</bookmark_value>"
+msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
+msgstr "<bookmark_value>hàm DVAR</bookmark_value><bookmark_value>phương sai;trên cơ sở mẫu đã lấy</bookmark_value>"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3154925\n"
-"136\n"
+"04060101.xhp\n"
+"hd_id3155614\n"
+"170\n"
"help.text"
-msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
-msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">Hàm WEEKDAY</link></variable>"
+msgid "DVAR"
+msgstr "DVAR"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"par_id3154228\n"
-"137\n"
+"04060101.xhp\n"
+"par_id3154418\n"
+"171\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
-msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Trả về hôm của tuần đối với giá trị ngày tháng đã cho.</ahelp> Hôm được trả về dưới dạng một số nguyên nằm giữa 1 (hôm Chủ Nhật) và 7 (hôm Thứ Bảy) nếu không có kiểu, hay ghi rõ kiểu=1. Nếu kiểu=2, thì đánh số bắt đầu từ hôm Thứ Hai là 1; nếu kiểu=3, thì đánh số bắt đầu từ hôm Thứ Hai là 0."
+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\">Hàm DVAR trả về phương sai của tất cả các ô của một trường cơ sở dữ liệu trong tất cả các bản ghi thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp> Những bản ghi trong ví dụ được xử lý như là một mẫu dữ liệu. Không thể thu được một kết quả đại diện từ một dân số nhỏ hơn một nghìn."
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3147217\n"
-"138\n"
+"04060101.xhp\n"
+"hd_id3154825\n"
+"172\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3149033\n"
-"139\n"
-"help.text"
-msgid "WEEKDAY(Number; Type)"
-msgstr "WEEKDAY(Số; Kiểu)"
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3149046\n"
-"140\n"
-"help.text"
-msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
-msgstr "<emph>Số</emph> là một giá trị ngày tháng dạng thập phân, cho đó cần trả về hôm của tuần."
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3154394\n"
-"141\n"
-"help.text"
-msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
-msgstr "<emph>Kiểu</emph> xác định kiểu phép tính. Đối với Kiểu=1, các hôm trong tuần được đếm bắt đầu từ Hôm Chủ Nhật (đây là mặc định ngay cả khi không đưa ra tham số Kiểu). Đối với Kiểu=2, các hôm trong tuần được đếm bắt đầu từ Hôm Thứ Hai là 1. Đối với kiểu=3, các hôm trong tuần được đếm bắt đầu từ Hôm Thứ Hai là 0."
-
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"par_id3156188\n"
-"142\n"
+"04060101.xhp\n"
+"par_id3156138\n"
+"173\n"
"help.text"
-msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
-msgstr ""
+msgid "DVAR(Database; DatabaseField; SearchCriteria)"
+msgstr "DVAR(Database; DatabaseField; SearchCriteria)"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3153836\n"
-"143\n"
+"04060101.xhp\n"
+"hd_id3151257\n"
+"174\n"
"help.text"
-msgid "Examples"
+msgid "Example"
msgstr "Ví dụ"
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3150317\n"
-"144\n"
-"help.text"
-msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr "=WEEKDAY(\"2000-06-14\") trả về 4 (không đưa ra tham số Kiểu thì dùng số đếm tiêu chuẩn. Đếm tiêu chuẩn bắt đầu từ Hôm Chủ Nhật là ngày số 1. Ngày 15, tháng 6/2000 là một hôm Thứ Tư, thì là ngày số 4)."
-
-#: 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) trả về 3 (tham số Kiểu là 2, thì hôm Thứ Hai là ngày số 1. Ngày 24, tháng 7/1996 là một hôm Thứ Tư, thì là ngày số 3)."
-
-#: 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) trả về 4 (tham số Kiểu là 1, thì hôm Chủ Nhật là ngày số 1. Ngày 24, tháng 7/1996 là một hôm Thứ Tư, thì là ngày số 4)."
-
-#: 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()) trả về số của hôm hiện thời."
-
-#: 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 "Để cấu tạo một hàm ngụ ý nếu một ngày trong ô A1 là một ngày làm việc hay không, hãy sử dụng hai hàm IF và WEEKDAY như theo đây: <br/>IF(WEEKDAY(A1;2)<6;\"Ngày làm việc\";\"Cuối tuần\")"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Kết hợp theo"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3151210\n"
-"1\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Kết hợp theo"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3125864\n"
-"2\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Kết hợp theo"
-
-#: 12070100.xhp
-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 "Hãy dùng phần này nếu các phạm vi ô bạn muốn kết hợp vẫn còn chứa nhãn. Bạn chỉ cần phải bật tùy chọn này nếu các phạm vi kết hợp chứa các nhãn tương tự, và dữ liệu được sắp đặt khác nhau."
-
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3153968\n"
-"4\n"
+"04060101.xhp\n"
+"par_id3153701\n"
+"175\n"
"help.text"
-msgid "Row labels"
-msgstr "Nhãn hàng"
+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 "Để tìm biết độ lệch của cân nặng của tất cả các đứa trẻ cùng tuổi trong mẫu thí dụ trên (xin hãy cuộn lên), nhập công thức này vào ô B16:"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3150441\n"
-"5\n"
+"04060101.xhp\n"
+"par_id3153676\n"
+"176\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Dùng các nhãn hàng để sắp đặt dữ liệu đã kết hợp.</ahelp>"
+msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3146976\n"
-"6\n"
+"04060101.xhp\n"
+"par_id3153798\n"
+"177\n"
"help.text"
-msgid "Column labels"
-msgstr "Nhãn cột"
+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 "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item> v.v., cái này sau cái kia. Bạn sẽ thấy kết quả là độ lệch của các giá trị cân nặng cho tất cả các đứa trẻ cùng tuổi này."
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3155411\n"
-"7\n"
+"04060101.xhp\n"
+"bm_id3153880\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Dùng các nhãn cột để sắp đặt dữ liệu đã kết hợp.</ahelp>"
+msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
+msgstr "<bookmark_value>hàm DVARP</bookmark_value><bookmark_value>độphương sai;dựa vào dân số</bookmark_value>"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3153191\n"
-"12\n"
+"04060101.xhp\n"
+"hd_id3153880\n"
+"178\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "DVARP"
+msgstr "DVARP"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3159154\n"
-"8\n"
+"04060101.xhp\n"
+"par_id3155119\n"
+"179\n"
"help.text"
-msgid "Link to source data"
-msgstr "Liên kết đến dữ liệu nguồn"
+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\">Hàm DVARP tính phương sai của tất cả các giá trị ô trong một trường cơ sở dữ liệu trong tất cả các bản ghi thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp> Những bản ghi trong ví dụ được xử lý như là toàn bộ dân số."
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3146986\n"
-"9\n"
+"04060101.xhp\n"
+"hd_id3145774\n"
+"180\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Liên kết dữ liệu trong phạm vi kết hợp tới dữ liệu nguồn, và tự động cập nhật kết quả của tiến trình kết hợp khi dữ liệu nguồn bị thay đổi.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3163708\n"
-"10\n"
+"04060101.xhp\n"
+"par_id3153776\n"
+"181\n"
"help.text"
-msgid "More <<"
-msgstr "Nhiều <<"
+msgid "DVARP(Database; DatabaseField; SearchCriteria)"
+msgstr "DVARP(Database; DatabaseField; SearchCriteria)"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3151118\n"
-"11\n"
+"04060101.xhp\n"
+"hd_id3151110\n"
+"182\n"
"help.text"
-msgid "Hides the additional options."
-msgstr "Ẩn các tùy chọn bổ sung."
+msgid "Example"
+msgstr "Ví dụ"
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"tit\n"
+"04060101.xhp\n"
+"par_id3147099\n"
+"183\n"
"help.text"
-msgid "Define"
-msgstr "Định nghĩa"
+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 "Để tìm phương sai của cân nặng của tất cả các đứa trẻ cùng tuổi ở tiệc sinh nhật của Joe (xin hãy cuộn lên), nhập công thức này vào ô B16:"
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"hd_id3145673\n"
-"1\n"
+"04060101.xhp\n"
+"par_id3147322\n"
+"184\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
-msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Định nghĩa\">Định nghĩa</link>"
+msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"par_id3153896\n"
-"2\n"
+"04060101.xhp\n"
+"par_id3146902\n"
+"185\n"
"help.text"
-msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
-msgstr "<ahelp hid=\".uno:DefinePrintArea\">Xác định một ô hoạt động hay vùng ô đã chọn làm phạm vi in.</ahelp>"
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
+msgstr "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item>, v.v., cái này sau cái kia. Kết quả là phương sai của các giá trị cân nặng cho tất cả các đứa trẻ cùng tuổi này mà đến tiệc sinh nhật của Joe."
#: 04060102.xhp
msgctxt ""
@@ -11344,7 +5789,6 @@ msgid "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id6354457\n"
@@ -11512,6076 +5956,2200 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row"
-msgstr "Hàng"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3147228\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
-msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Hàng\">Hàng</link>"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt chiều cao của hàng, và hiện thị hay ẩn các hàng đã chọn.</ahelp>"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3155132\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
-msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Bề cao\">Bề cao</link>"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3155854\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
-msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Bề cao tối ưu\">Bề cao tối ưu</link>"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"tit\n"
-"help.text"
-msgid "DAYS"
-msgstr "DAYS"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"bm_id3151328\n"
-"help.text"
-msgid "<bookmark_value>DAYS function</bookmark_value>"
-msgstr "<bookmark_value>hàm DAYS</bookmark_value>"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3151328\n"
-"116\n"
-"help.text"
-msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
-msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">Hàm DAYS</link></variable>"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3155139\n"
-"117\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
-msgstr "<ahelp hid=\"HID_FUNC_TAGE\">Tính hiệu của hai giá trị ngày tháng.</ahelp> Kết quả trả về số các ngày nằm giữa hai ngày tháng."
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3155184\n"
-"118\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3149578\n"
-"119\n"
-"help.text"
-msgid "DAYS(Date2; Date1)"
-msgstr "DAYS(Ngày2; Ngày1)"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3151376\n"
-"120\n"
-"help.text"
-msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
-msgstr "<emph>Ngày1</emph> là ngày bắt đầu, <emph>Ngày2</emph> là ngày kết thúc. Nếu <emph>Ngày2</emph> sớm hơn <emph>Ngày1</emph> thì kết quả là một số âm."
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3151001\n"
-"121\n"
-"help.text"
-msgid "Examples"
-msgstr "Ví dụ"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3159101\n"
-"123\n"
-"help.text"
-msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
-msgstr "=DAYS(\"2010-01-01\"; NOW()) trả về số các ngày từ hôm nay đến ngày 1, tháng 1/2010."
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3163720\n"
-"172\n"
-"help.text"
-msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
-msgstr "=DAYS(\"1990-10-10\";\"1980-10-10\") trả về 3652 ngày."
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split"
-msgstr "Xẻ"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"hd_id3163800\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
-msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Xẻ\">Xẻ</link>"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3150084\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Chia cửa sổ hiện tại ở góc trên bên trái ô được chọn.</ahelp>"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3154910\n"
-"3\n"
-"help.text"
-msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
-msgstr "Bạn cũng có thể sử dụng con chuột để chia cửa sổ theo chiều ngang hay dọc. Để làm như thế, kéo vào cửa sổ đường thẳng màu đen đậm nằm bên trên thanh cuộn dọc hay bên phải thanh cuộn ngang. Một đường thẳng màu đen đậm sẽ ngụ ý cửa sổ bị chia ở đâu."
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3149263\n"
-"4\n"
-"help.text"
-msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
-msgstr "Một cửa sổ bị xẻ có các thanh cuộn riêng trong mỗi phần; trái lại, <link href=\"text/scalc/01/07090000.xhp\" name=\"phần cửa sổ cố định\">phần cửa sổ cố định</link> không có khả năng cuộn."
-
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
+"04060103.xhp\n"
"tit\n"
"help.text"
-msgid "AutoOutline"
-msgstr "Tự động Phác thảo"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
-msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"Tự động Phác thảo\">Tự động Phác thảo</link>"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145069\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoOutline\">Nếu phạm vi đã chọn chứa công thức hay tham chiếu, $[officename] tự động phác thảo vùng chọn.</ahelp>"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3148798\n"
-"10\n"
-"help.text"
-msgid "For example, consider the following table:"
-msgstr "Chẳng hạn, xem bảng theo đây:"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3154123\n"
-"11\n"
-"help.text"
-msgid "January"
-msgstr "Tháng Giêng"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3154011\n"
-"12\n"
-"help.text"
-msgid "February"
-msgstr "Tháng Hai"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3152460\n"
-"13\n"
-"help.text"
-msgid "March"
-msgstr "Tháng Ba"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "1st Quarter"
-msgstr "Quý 1"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3155854\n"
-"15\n"
-"help.text"
-msgid "April"
-msgstr "Tháng Tư"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3148575\n"
-"16\n"
-"help.text"
-msgid "May"
-msgstr "Tháng Năm"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145271\n"
-"17\n"
-"help.text"
-msgid "June"
-msgstr "Tháng Sáu"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145648\n"
-"18\n"
-"help.text"
-msgid "2nd Quarter"
-msgstr "Quý 2"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3153876\n"
-"19\n"
-"help.text"
-msgid "100"
-msgstr "100"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145251\n"
-"20\n"
-"help.text"
-msgid "120"
-msgstr "120"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3149400\n"
-"21\n"
-"help.text"
-msgid "130"
-msgstr "130"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3150328\n"
-"22\n"
-"help.text"
-msgid "350"
-msgstr "350"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3155443\n"
-"23\n"
-"help.text"
-msgid "100"
-msgstr "100"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3153713\n"
-"24\n"
-"help.text"
-msgid "100"
-msgstr "100"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3156385\n"
-"25\n"
-"help.text"
-msgid "200"
-msgstr "200"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145230\n"
-"26\n"
-"help.text"
-msgid "400"
-msgstr "400"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3147363\n"
-"27\n"
-"help.text"
-msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
-msgstr "Mỗi ô cho quý 1 và 2 chứa một công thức tổng ba ô bên trái. Nếu bạn áp dụng chức năng <emph>Tự động Phác thảo</emph>, bảng này được nhóm lại theo hai quý."
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3146918\n"
-"9\n"
-"help.text"
-msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
-msgstr "Để gỡ bỏ phác thảo, lựa chọn bảng, sau đó chọn mục trình đơn <link href=\"text/scalc/01/12080600.xhp\" name=\"Dữ liệu > Nhóm lại và Phác thảo > Bỏ\">Dữ liệu > Nhóm lại và Phác thảo > Bỏ</link>."
+msgid "Financial Functions Part One"
+msgstr "Hàm Tài Chính (Phần 1)"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "Conditional Formatting"
-msgstr "Định dạng có điều kiện"
+msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
+msgstr "<bookmark_value>hàm tài chính</bookmark_value><bookmark_value>hàm;hàm tài chính</bookmark_value><bookmark_value>Trợ lý hàm;tài chính</bookmark_value><bookmark_value>sự thanh toán, tham khảo: khấu hao</bookmark_value>"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3155132\n"
+"04060103.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "Conditional Formatting"
-msgstr "Định dạng có điều kiện"
+msgid "Financial Functions Part One"
+msgstr "Hàm Tài Chính (Phần 1)"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3163710\n"
+"04060103.xhp\n"
+"par_id3149095\n"
"2\n"
"help.text"
-msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
-msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Chọn mục <emph>Định dạng có Điều kiện</emph> để xác định các kiểu dáng định dạng phụ thuộc vào một số điều kiện nào đó.</ahelp></variable> Nếu một kiểu dáng đã được gán cho một ô, nó sẽ không thay đổi. Kiểu dáng được nhập vào đây thì được ước tính. Bạn có thể nhập ba điều kiện mà truy vấn nội dung của các giá trị hay công thức trong ô. Các điều kiện này được ước tính theo thứ tự 1-3. Nếu điều kiện 1 tương ứng với điều kiện, thì kiểu dáng đã xác định sẽ được dùng. Không thì điều kiện 2 được ước tính, và kiểu dáng đã xác định của nó được dùng. Nếu kiểu dáng này không tương ứng, thì điều kiện 3 được ước tính lần lượt."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id2414014\n"
-"help.text"
-msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr "Để áp dụng định dạng có điều kiện, trước tiên bạn cần phải hiệu lực chức năng <emph>Tự động Tính</emph>. Hãy chọn lệnh <emph>Công cụ > Nội dung ô > Tự động Tính</emph> (bật được thì bạn thấy một dấu kiểm bên cạnh câu lệnh đó)."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"bm_id3153189\n"
-"help.text"
-msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
-msgstr "<bookmark_value>định dạng có điều kiện; điều kiện</bookmark_value>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3153189\n"
-"18\n"
-"help.text"
-msgid "Condition 1/2/3"
-msgstr "Điều kiện 1/2/3"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3149413\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Đánh dấu trong hộp tương ứng với mỗi điều kiện, và nhập điều kiện tương ứng.</ahelp> Để đóng hộp thoại này, bấm nút <emph>OK</emph>."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3147394\n"
-"5\n"
-"help.text"
-msgid "Cell Value / Formula"
-msgstr "Giá trị/Công thức ô"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3155602\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Ghi rõ nếu một định dạng theo điều kiện có phụ thuộc vào một giá trị ô hay công thức ô.</ahelp> Nếu bạn chọn một công thức làm tham chiếu, hộp <emph>Điều kiện Giá trị Ô</emph> được hiển thị bên phải trường <emph>Giá trị/Công thức ô</emph>. Nếu điều kiện là « Công thức là », hãy nhập một tham chiếu ô. Nếu tham chiếu ô khác với số không, điều kiện tương ứng được."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3153709\n"
-"7\n"
-"help.text"
-msgid "Cell Value Condition"
-msgstr "Điều kiện Giá trị Ô"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3153764\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Hãy chọn một điều kiện cho định dạng cần áp dụng cho các ô đã chọn.</ahelp>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3156384\n"
-"9\n"
-"help.text"
-msgid "Cell Style"
-msgstr "Kiểu dáng ô"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3145228\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Hãy chọn kiểu dáng cần áp dụng nếu điều kiện đã chọn có tương ứng được.</ahelp>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id0509200913175331\n"
-"help.text"
-msgid "New Style"
-msgstr "Kiểu dáng mới"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id0509200913175368\n"
-"help.text"
-msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
-msgstr "<ahelp hid=\".\">Nếu bạn chưa chỉ định dùng một kiếu dáng, bạn có thể nhắp \"Kiểu dáng mới\" để mở trang Tổ chức của hộp thoại Kiểu dáng ô. Chỉ định một kiểu dáng mới rồi nhấn OK.</ahelp>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3146316\n"
-"11\n"
-"help.text"
-msgid "Parameter field"
-msgstr "Trường tham số"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3155114\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Hãy nhập một tham chiếu, giá trị hay công thức.</ahelp> Hãy nhập một tham chiếu, giá trị hay công thức vào trường tham số, hoặc vào cả hai trường tham số nếu bạn đã chọn một điều kiện cần thiết hai tham số. Bạn cũng có thể nhập công thức chức tham chiếu tương đối."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3145257\n"
-"13\n"
-"help.text"
-msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
-msgstr "Một khi xác định các tham số, điều kiện hoàn tất. Nó có thể xuất hiện dưới dạng:"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3150784\n"
-"14\n"
-"help.text"
-msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
-msgstr "Giá trị ô là 0, kích cỡ ô là Giá trị rỗng. (Trước tiên, bạn cần phải xác định một kiểu dáng ô, để có khả năng gán nó cho một điều kiện.)"
+msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+msgstr "<variable id=\"finanztext\">Phân loại này chứa các hàm tài chính toán học của <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3150365\n"
-"15\n"
+"04060103.xhp\n"
+"bm_id3153366\n"
"help.text"
-msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
-msgstr "Giá trị ô nằm giữa $B$20 và $B$21: Kiểu dáng ô là Kết quả. (Hai giới hạn giá trị tương ứng phải nằm trong ô B20 và B21.)"
+msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+msgstr "<bookmark_value>hàm AMORDEGRC</bookmark_value><bookmark_value>khấu hao;sự thanh toán hạ</bookmark_value>"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3152992\n"
-"16\n"
+"04060103.xhp\n"
+"hd_id3153366\n"
+"359\n"
"help.text"
-msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
-msgstr "Công thức là « SUM($A$1:$A$5)=10 »: Kiểu dáng ô là Kết quả. (Những ô đã chọn sẽ được định dạng theo kiểu dáng Kết quả nếu tổng nội dung trong phạm vi ô A1 đến A5 bằng với 10.)"
+msgid "AMORDEGRC"
+msgstr "AMORDEGRC"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_idN107E1\n"
+"04060103.xhp\n"
+"par_id3147434\n"
+"360\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Tính số tiền khấu hao cho một thời kỳ trả hết theo sự thanh toán hạ.</ahelp> Không giống như hàm AMORLINC, ở đây thì dùng một hệ số khấu hao mà không phụ thuộc vào kỳ hạn có thể khấu hao."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"hd_id3155855\n"
+"361\n"
"help.text"
-msgid "Show Details"
-msgstr "Hiện chi tiết"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"bm_id3153561\n"
+"04060103.xhp\n"
+"par_id3147427\n"
+"362\n"
"help.text"
-msgid "<bookmark_value>tables; showing details</bookmark_value>"
-msgstr "<bookmark_value>bảng; hiển thị chi tiết</bookmark_value>"
+msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"hd_id3153561\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3147125\n"
+"363\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
-msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Hiện chi tiết\">Hiện chi tiết</link>"
+msgid "<emph>Cost</emph> is the acquisition costs."
+msgstr "<emph>Cost</emph> (Giá) là giá sở hữu."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id3153822\n"
-"2\n"
+"04060103.xhp\n"
+"par_id3151074\n"
+"364\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowDetail\">Hiển thị chi tiết về hàng/cột đã nhóm lại mà chứa con trỏ. Để hiển thị tất cả các hàng/cột đã nhóm lại, lựa chọn bảng phác thảo, sau đó chọn lệnh này.</ahelp>"
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr "<emph>DatePurchased</emph> là ngày tháng mua."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id3155922\n"
-"3\n"
+"04060103.xhp\n"
+"par_id3144765\n"
+"365\n"
"help.text"
-msgid "To hide a selected group, choose <emph>Data -Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
-msgstr "Để ẩn một nhóm đã chọn, hãy chọn mục trình đơn <emph>Dữ liệu > Phác thảo ></emph> <link href=\"text/scalc/01/12080100.xhp\" name=\"Ẩn chi tiết\"><emph>Ẩn chi tiết</emph></link>."
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "<emph>FirstPeriod</emph> (kỳ đầu) là ngày tháng kết thúc thời kỳ thanh toán đầu tiên."
-#: 12080200.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id6036561\n"
+"04060103.xhp\n"
+"par_id3156286\n"
+"366\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
-msgstr "<link href=\"text/scalc/01/12080700.xhp\">Câu lệnh <emph>Hiện chi tiết</emph> trong bảng DataPilot</link>"
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "<emph>Salvage</emph> là giá trị thanh lý của tài sản vốn ở kết thúc của kỳ hạn có thể khấu hao."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"par_id3153415\n"
+"367\n"
"help.text"
-msgid "Statistical Functions Part Three"
-msgstr "Hàm Thống Kê Phần 3"
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr "<emph>Period</emph> (Kỳ) là thời kỳ thanh toán cần tính."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3166425\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3155064\n"
+"368\n"
"help.text"
-msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
-msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Hàm Thống Kê Phần 3\">Hàm Thống Kê Phần 3</link></variable>"
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr "<emph>Rate</emph> (Tỷ lệ) là tỷ lệ khấu hao."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3149530\n"
+"04060103.xhp\n"
+"bm_id3153765\n"
"help.text"
-msgid "<bookmark_value>LARGE function</bookmark_value>"
-msgstr "<bookmark_value>hàm LARGE</bookmark_value>"
+msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
+msgstr "<bookmark_value>hàm AMORLINC</bookmark_value><bookmark_value>khấu hao;sự thanh toán thẳng</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3149530\n"
-"2\n"
+"04060103.xhp\n"
+"hd_id3153765\n"
+"369\n"
"help.text"
-msgid "LARGE"
-msgstr "LARGE"
+msgid "AMORLINC"
+msgstr "AMORLINC"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150518\n"
-"3\n"
+"04060103.xhp\n"
+"par_id3159264\n"
+"370\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">Trả về giá trị lớn nhất thứ Rank_c trong một tập hợp dữ liệu.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Tính khấu hao trong một thời kỳ thanh toán dưới dạng thanh toán tuyến tính.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3152990\n"
-"4\n"
+"04060103.xhp\n"
+"hd_id3150044\n"
+"371\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3154372\n"
-"5\n"
-"help.text"
-msgid "LARGE(Data; RankC)"
-msgstr "LARGE(Dữ_liệu; RankC)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3152986\n"
-"6\n"
-"help.text"
-msgid "<emph>Data</emph> is the cell range of data."
-msgstr "<emph>Dữ_liệu</emph> là phạm vi ô của dữ liệu."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3156448\n"
-"7\n"
-"help.text"
-msgid "<emph>RankC</emph> is the ranking of the value."
-msgstr "<emph>RankC</emph> là bậc của giá trị."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3152889\n"
-"8\n"
-"help.text"
-msgid "Example"
-msgstr "Ví dụ"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148702\n"
-"9\n"
-"help.text"
-msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
-msgstr "<item type=\"input\">=LARGE(A1:C50;2)</item> cho giá trị lớn nhất nhì trong phạm vi ô A1:C50."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3154532\n"
-"help.text"
-msgid "<bookmark_value>SMALL function</bookmark_value>"
-msgstr "<bookmark_value>hàm SMALL</bookmark_value>"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154532\n"
-"11\n"
+"04060103.xhp\n"
+"par_id3147363\n"
+"372\n"
"help.text"
-msgid "SMALL"
-msgstr "SMALL"
+msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3157981\n"
-"12\n"
+"04060103.xhp\n"
+"par_id3146920\n"
+"373\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Trả về giá trị nhỏ nhất thứ Rank_c trong một tập hợp dữ liệu.</ahelp>"
+msgid "<emph>Cost</emph> means the acquisition costs."
+msgstr "<emph>Cost</emph> (Giá) có nghĩa là giá sở hữu."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154957\n"
-"13\n"
+"04060103.xhp\n"
+"par_id3163807\n"
+"374\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr "<emph>DatePurchased</emph> là ngày tháng mua."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153974\n"
-"14\n"
+"04060103.xhp\n"
+"par_id3148488\n"
+"375\n"
"help.text"
-msgid "SMALL(Data; RankC)"
-msgstr "SMALL(Dữ_liệu; RankC)"
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "<emph>FirstPeriod</emph> (kỳ đầu) là ngày tháng kết thúc thời kỳ thanh toán đầu tiên."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154540\n"
-"15\n"
+"04060103.xhp\n"
+"par_id3149530\n"
+"376\n"
"help.text"
-msgid "<emph>Data</emph> is the cell range of data."
-msgstr "<emph>Dữ_liệu</emph> là phạm vi các ô chứa dữ liệu."
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "<emph>Salvage</emph> là giá trị thanh lý của tài sản vốn ở kết thúc của kỳ hạn có thể khấu hao."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155094\n"
-"16\n"
+"04060103.xhp\n"
+"par_id3148633\n"
+"377\n"
"help.text"
-msgid "<emph>RankC</emph> is the rank of the value."
-msgstr "<emph>RankC</emph> là bậc của giá trị."
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr "<emph>Period</emph> (Kỳ) là thời kỳ thanh toán cần tính."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153247\n"
-"17\n"
+"04060103.xhp\n"
+"par_id3150982\n"
+"378\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr "<emph>Rate</emph> (Tỷ lệ) là tỷ lệ khấu hao."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3149897\n"
-"18\n"
+"04060103.xhp\n"
+"bm_id3145257\n"
"help.text"
-msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
-msgstr "<item type=\"input\">=SMALL(A1:C50;2)</item> cho giá trị nhỏ nhất nhì trong phạm vi ô A1:C50."
+msgid "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr "<bookmark_value>hàm ACCRINT</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3153559\n"
+"04060103.xhp\n"
+"hd_id3145257\n"
+"335\n"
"help.text"
-msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
-msgstr "<bookmark_value>hàm CONFIDENCE</bookmark_value>"
+msgid "ACCRINT"
+msgstr "ACCRINT"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153559\n"
-"20\n"
+"04060103.xhp\n"
+"bm_id3151276\n"
"help.text"
-msgid "CONFIDENCE"
-msgstr "CONFIDENCE"
+msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+msgstr "<bookmark_value>tiền lãi để dồn lại;tiền trả định kỳ</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153814\n"
-"21\n"
+"04060103.xhp\n"
+"par_id3151276\n"
+"336\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Trả về khoảng tin cậy (1-alpha) cho một phân bố chuẩn.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Tính tiền lãi để dồn lại trong trường hợp trả tiền định kỳ.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3149315\n"
-"22\n"
+"04060103.xhp\n"
+"hd_id3152581\n"
+"337\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3147501\n"
-"23\n"
-"help.text"
-msgid "CONFIDENCE(Alpha; StDev; Size)"
-msgstr "CONFIDENCE(Alpha; Lệch; Cỡ)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149872\n"
-"24\n"
-"help.text"
-msgid "<emph>Alpha</emph> is the level of the confidence interval."
-msgstr "<emph>Alpha</emph> là cấp của khoảng tin cậy."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145324\n"
-"25\n"
-"help.text"
-msgid "<emph>StDev</emph> is the standard deviation for the total population."
-msgstr "<emph>Lệch</emph> là độ lệch chuẩn cho tổng dân số."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153075\n"
-"26\n"
-"help.text"
-msgid "<emph>Size</emph> is the size of the total population."
-msgstr "<emph>Cỡ</emph> là kích cỡ của tổng dân số."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150435\n"
-"27\n"
-"help.text"
-msgid "Example"
-msgstr "Ví dụ"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153335\n"
-"28\n"
-"help.text"
-msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
-msgstr "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> trả về 0,29."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3148746\n"
+"04060103.xhp\n"
+"par_id3159092\n"
+"338\n"
"help.text"
-msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
-msgstr "<bookmark_value>hàm CORREL</bookmark_value><bookmark_value>hệ số tương quan</bookmark_value>"
+msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
+msgstr "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3148746\n"
-"30\n"
+"04060103.xhp\n"
+"par_id3150519\n"
+"339\n"
"help.text"
-msgid "CORREL"
-msgstr "CORREL"
+msgid "<emph>Issue</emph> is the issue date of the security."
+msgstr "<emph>Issue</emph> (Cấp) là ngày tháng đã cấp chứng khoán."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3147299\n"
-"31\n"
+"04060103.xhp\n"
+"par_id3155376\n"
+"340\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KORREL\">Trả về hệ số tương quan giữa hai tập hợp dữ liệu.</ahelp>"
+msgid "<emph>FirstInterest</emph> is the first interest date of the security."
+msgstr "<emph>FirstInterest</emph> là ngày trả tiền lãi thứ nhất của chứng khoán."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3156397\n"
-"32\n"
+"04060103.xhp\n"
+"par_id3166431\n"
+"341\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "<emph>Settlement</emph> là ngày vào đó sẽ tính tiền lãi để dồn lại đến điểm thời đó."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153023\n"
-"33\n"
+"04060103.xhp\n"
+"par_id3154486\n"
+"342\n"
"help.text"
-msgid "CORREL(Data1; Data2)"
-msgstr "CORREL(Dữ_liệu1; Dữ_liệu2)"
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "<emph>Tỷ_lệ</emph> là lãi suất danh nghĩa hàng năm (lãi suất trái phiếu)."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150036\n"
-"34\n"
+"04060103.xhp\n"
+"par_id3156445\n"
+"343\n"
"help.text"
-msgid "<emph>Data1</emph> is the first data set."
-msgstr "<emph>Dữ_liệu1</emph> là tập hợp dữ liệu thứ nhất."
+msgid "<emph>Par</emph> is the par value of the security."
+msgstr "<emph>Par</emph> là giá trị danh nghĩa của chứng khoán."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153021\n"
-"35\n"
+"04060103.xhp\n"
+"par_id3149406\n"
+"344\n"
"help.text"
-msgid "<emph>Data2</emph> is the second data set."
-msgstr "<emph>Dữ_liệu2</emph> là tập hợp dữ liệu thứ hai."
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3149720\n"
-"36\n"
+"04060103.xhp\n"
+"hd_id3148699\n"
+"345\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149941\n"
-"37\n"
-"help.text"
-msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
-msgstr "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> tính hệ số tương quan để đo tương quan tuyến tính của hai tập hợp dữ liệu."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3150652\n"
-"help.text"
-msgid "<bookmark_value>COVAR function</bookmark_value>"
-msgstr "<bookmark_value>hàm COVAR</bookmark_value>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150652\n"
-"39\n"
-"help.text"
-msgid "COVAR"
-msgstr "COVAR"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3146875\n"
-"40\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Trả về hiệp phương sai của tích độ lệch cặp.</ahelp>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3149013\n"
-"41\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3150740\n"
-"42\n"
-"help.text"
-msgid "COVAR(Data1; Data2)"
-msgstr "COVAR(Dữ_liệu1; Dữ_liệu2)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145827\n"
-"43\n"
-"help.text"
-msgid "<emph>Data1</emph> is the first data set."
-msgstr "<emph>Dữ_liệu1</emph> là tập hợp dữ liệu thứ nhất."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3150465\n"
-"44\n"
-"help.text"
-msgid "<emph>Data2</emph> is the second data set."
-msgstr "<emph>Dữ_liệu2</emph> là tập hợp dữ liệu thứ hai."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154677\n"
-"45\n"
+"04060103.xhp\n"
+"par_id3148599\n"
+"346\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+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 "Một chứng khoán được cấp vào ngày 2001-02-28. Ngày trả tiền lãi thứ nhất đã được đặt thành 2001-05-01. Lãi suất là 0.1 hoặc 10%, và giá trị danh nghĩa là 1000 đơn vị tiền tệ. Tiền lãi được trả mỗi sáu tháng (tần số là 2). Cơ bản là phương pháp Mỹ (0). Bao nhiêu tiền lãi đã tích lũy?"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3144748\n"
-"46\n"
+"04060103.xhp\n"
+"par_id3148840\n"
+"347\n"
"help.text"
-msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
-msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
+msgstr "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> trả về 16.94444."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3147472\n"
+"04060103.xhp\n"
+"bm_id3151240\n"
"help.text"
-msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
-msgstr "<bookmark_value>hàm CRITBINOM</bookmark_value>"
+msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
+msgstr "<bookmark_value>hàm ACCRINTM</bookmark_value><bookmark_value>tiền lãi tích lũy;tiền trả chỉ một lần</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3147472\n"
-"48\n"
+"04060103.xhp\n"
+"hd_id3151240\n"
+"348\n"
"help.text"
-msgid "CRITBINOM"
-msgstr "CRITBINOM"
+msgid "ACCRINTM"
+msgstr "ACCRINTM"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3149254\n"
-"49\n"
+"04060103.xhp\n"
+"par_id3157981\n"
+"349\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Trả về giá trị nhỏ nhất cho đó phân bố nhị thức tích lũy nhỏ hơn hoặc bằng với một giá trị tiêu chuẩn.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Tính tiền lãi để dồn lại của một chứng khoán trong trường hợp trả chỉ một lần vào ngày thanh toán.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153930\n"
-"50\n"
+"04060103.xhp\n"
+"hd_id3159097\n"
+"350\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148586\n"
-"51\n"
-"help.text"
-msgid "CRITBINOM(Trials; SP; Alpha)"
-msgstr "CRITBINOM(Thử; SP; Alpha)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145593\n"
-"52\n"
-"help.text"
-msgid "<emph>Trials</emph> is the total number of trials."
-msgstr "<emph>Thử</emph> là tổng số phép thử."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153084\n"
-"53\n"
-"help.text"
-msgid "<emph>SP</emph> is the probability of success for one trial."
-msgstr "<emph>SP</emph> là xác suất thành công cho một phép thử."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149726\n"
-"54\n"
-"help.text"
-msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
-msgstr "<emph>Alpha</emph> là xác suất ngưỡng cần tới hay vượt quá."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3148752\n"
-"55\n"
-"help.text"
-msgid "Example"
-msgstr "Ví dụ"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148740\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
-msgstr "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> trả về 44."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3155956\n"
-"help.text"
-msgid "<bookmark_value>KURT function</bookmark_value>"
-msgstr "<bookmark_value>hàm KURT</bookmark_value>"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3155956\n"
-"58\n"
+"04060103.xhp\n"
+"par_id3147074\n"
+"351\n"
"help.text"
-msgid "KURT"
-msgstr "KURT"
+msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
+msgstr "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153108\n"
-"59\n"
+"04060103.xhp\n"
+"par_id3144773\n"
+"352\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KURT\">Trả về độ nhọn của một tập hợp dữ liệu (cần thiết ít nhất 4 giá trị).</ahelp>"
+msgid "<emph>Issue</emph> is the issue date of the security."
+msgstr "<emph>Issue</emph> (Cấp) là ngày tháng đã cấp chứng khoán."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3150334\n"
-"60\n"
+"04060103.xhp\n"
+"par_id3154956\n"
+"353\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "<emph>Settlement</emph> là ngày vào đó sẽ tính tiền lãi để dồn lại đến điểm thời đó."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154508\n"
-"61\n"
+"04060103.xhp\n"
+"par_id3153972\n"
+"354\n"
"help.text"
-msgid "KURT(Number1; Number2; ...Number30)"
-msgstr "KURT(Số1; Số2; ...; Số30)"
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
+msgstr "<emph>Rate</emph> (Tỷ lệ) là lãi suất danh nghĩa hàng năm (lãi suất trái phiếu)."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3145167\n"
-"62\n"
+"04060103.xhp\n"
+"par_id3159204\n"
+"355\n"
"help.text"
-msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
-msgstr "Số1, Số2, ...Số30 là đến 30 đối số thuộc số mà đại diện một mẫu phân bố ngẫu nhiên."
+msgid "<emph>Par</emph> is the par value of the security."
+msgstr "<emph>Par</emph> là giá trị danh nghĩa của chứng khoán."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3158000\n"
-"63\n"
+"04060103.xhp\n"
+"hd_id3155384\n"
+"356\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3150016\n"
-"64\n"
-"help.text"
-msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
-msgstr "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3150928\n"
-"help.text"
-msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
-msgstr "<bookmark_value>hàm LOGINV</bookmark_value><bookmark_value>nghịch đảo của phân bố chuẩn lôga</bookmark_value>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150928\n"
-"66\n"
-"help.text"
-msgid "LOGINV"
-msgstr "LOGINV"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145297\n"
-"67\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Trả về nghịch đảo của phân bố chuẩn lôga.</ahelp>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3151016\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153049\n"
-"69\n"
-"help.text"
-msgid "LOGINV(Number; Mean; StDev)"
-msgstr "LOGINV(Số; TBình; Lệch)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148390\n"
-"70\n"
-"help.text"
-msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố chuẩn lôga ngược."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149538\n"
-"71\n"
-"help.text"
-msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
-msgstr "<emph>TBình</emph> là trung bình số học của phân bố chuẩn lôga."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145355\n"
-"72\n"
-"help.text"
-msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
-msgstr "<emph>Lệch</emph> là độ lệch chuẩn của phân bố chuẩn lôga."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3148768\n"
-"73\n"
+"04060103.xhp\n"
+"par_id3154541\n"
+"357\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+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 "Một chứng khoán được cấp vào ngày 2001-04-01. Ngày đến hạn thanh toán được đặt thành 2001-06-15. Lãi suất là 0,1 hoặc 10%, và giá trị danh nghĩa là 1000 đơn vị tiền tệ. Cơ bản của phép tính hàng ngày/năm là kết toán hàng ngày (3). Bao nhiêu tiền lãi đã dồn lại?"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155623\n"
-"74\n"
+"04060103.xhp\n"
+"par_id3149128\n"
+"358\n"
"help.text"
-msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
-msgstr "<item type=\"input\">=LOGINV(0.05;0;1)</item> trả về 0,19."
+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> trả về 20.54795."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3158417\n"
+"04060103.xhp\n"
+"bm_id3145753\n"
"help.text"
-msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
-msgstr "<bookmark_value>hàm LOGNORMDIST</bookmark_value><bookmark_value>phân bố chuẩn lôga tích lũy</bookmark_value>"
+msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+msgstr "<bookmark_value>hàm RECEIVED</bookmark_value><bookmark_value>số tiền được nhận cho chứng khoán lãi suất cố định</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3158417\n"
-"76\n"
+"04060103.xhp\n"
+"hd_id3145753\n"
+"390\n"
"help.text"
-msgid "LOGNORMDIST"
-msgstr "LOGNORMDIST"
+msgid "RECEIVED"
+msgstr "RECEIVED"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154953\n"
-"77\n"
+"04060103.xhp\n"
+"par_id3150051\n"
+"391\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Trả về phân bố chuẩn lôga tích lũy.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Tính số tiền đã nhận mà được trả đối với một chứng khoán lãi suất cố định vào một điểm thời nào đó.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3150474\n"
-"78\n"
+"04060103.xhp\n"
+"hd_id3149385\n"
+"392\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150686\n"
-"79\n"
+"04060103.xhp\n"
+"par_id3145362\n"
+"393\n"
"help.text"
-msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
-msgstr "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
+msgstr "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154871\n"
-"80\n"
+"04060103.xhp\n"
+"par_id3154654\n"
+"394\n"
"help.text"
-msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố chuẩn lôga."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155820\n"
-"81\n"
+"04060103.xhp\n"
+"par_id3153011\n"
+"395\n"
"help.text"
-msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
-msgstr "<emph>TBình</emph> là giá trị trung bình của phân bố chuẩn lôga."
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155991\n"
-"82\n"
+"04060103.xhp\n"
+"par_id3155525\n"
+"396\n"
"help.text"
-msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
-msgstr "<emph>Lệch</emph> là độ lệch chuẩn của phân bố chuẩn lôga."
+msgid "<emph>Investment</emph> is the purchase sum."
+msgstr "<emph>Investment</emph> (Đầu tư) là giá mua."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155992\n"
+"04060103.xhp\n"
+"par_id3155760\n"
+"397\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
-msgstr "<emph>Cumulative</emph> (tùy chọn): =0 tính hàm mật độ. Cumulative = 1 tính hàm phân bố."
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr "<emph>Hạ_giá</emph> là hệ số bớt giá (theo phần trăm) khi mua chứng khoán."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153178\n"
-"83\n"
+"04060103.xhp\n"
+"hd_id3154710\n"
+"398\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149778\n"
-"84\n"
-"help.text"
-msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
-msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> trả về 0,01."
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Names"
-msgstr "Tên"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3153951\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Tên\">Tên</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"par_id3145801\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
-msgstr "<ahelp hid=\".\">Cho phép bạn đặt tên cho mỗi phần riêng của tài liệu bảng tính.</ahelp> Bằng cách đặt tên cho mỗi phần riêng, bạn có thể dễ dàng <link href=\"text/scalc/01/02110000.xhp\" name=\"điều hướng\">điều hướng</link> qua các tài liệu bảng tính và tìm thông tin cụ thể."
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3153878\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Xác định\">Xác định</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3146969\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Chèn\">Chèn</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3155764\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
-msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Áp dụng\">Áp dụng</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3156382\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
-msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Nhãn\">Nhãn</link>"
-
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"par_id3154735\n"
+"399\n"
"help.text"
-msgid "Show Sheet"
-msgstr "Hiện trang tính"
+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 "Ngày tháng thanh toán: 1999-02-15, ngày tháng đến hạn thanh toán: 1999-05-15, tiền đầu tư : 1000 đơn vị tiền tệ, bớt giá: 5,75%, cơ bản: kết toán hàng ngày/360 = 2."
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"bm_id3148946\n"
+"04060103.xhp\n"
+"par_id3146108\n"
+"400\n"
"help.text"
-msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
-msgstr "<bookmark_value>trang tính; hiển thị</bookmark_value><bookmark_value>hiển thị; trang tính</bookmark_value>"
+msgid "The amount received on the maturity date is calculated as follows:"
+msgstr "Số tiền được nhận vào ngày đến hạn thanh toán được tính như sau :"
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3147246\n"
+"401\n"
"help.text"
-msgid "Show Sheet"
-msgstr "Hiện trang tính"
+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> trả về 1014.420266."
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"par_id3148799\n"
-"2\n"
+"04060103.xhp\n"
+"bm_id3147556\n"
"help.text"
-msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
-msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Hiển thị các trang tính đã bị ẩn trước bởi lệnh <emph>Ẩn</emph>.</ahelp></variable> Lựa chọn chỉ một trang tính trước khi gọi lệnh này. Trang tính hiện tại luôn luôn được chọn. Muốn chọn một trang tính khác với trang tính hiện tại thì bạn có thể bỏ chọn nó bằng cách ấn giữ phím <switchinline select=\"sys\"> <caseinline select=\"MAC\">Cmd</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> trong khi nhấn vào thẻ trang tính tương ứng ở dưới cửa sổ."
+msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
+msgstr "<bookmark_value>hàm PV</bookmark_value><bookmark_value>giá trị hiện tại</bookmark_value><bookmark_value>tính;giá trị hiện tại</bookmark_value>"
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"hd_id3151112\n"
+"04060103.xhp\n"
+"hd_id3147556\n"
"3\n"
"help.text"
-msgid "Hidden sheets"
-msgstr "Trang tính ẩn"
+msgid "PV"
+msgstr "PV"
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"par_id3145273\n"
+"04060103.xhp\n"
+"par_id3153301\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Hiển thị danh sách các trang tính bị ẩn trong tài liệu bảng tính của bạn.</ahelp> Để hiển thị một trang tính nào đó, nhấn vào mục nhập tương ứng trong danh sách, sau đó xác nhận với nút <emph>OK</emph>."
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cell Contents"
-msgstr "Nội dung ô"
-
-#: 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=\"Nội dung ô\">Nội dung ô</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 "Mở một trình đơn con chứa các câu lệnh để tính bảng và kích hoạt chức năng Tự động Nhập."
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select Source"
-msgstr "Chọn nguồn"
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"hd_id3153663\n"
-"1\n"
-"help.text"
-msgid "Select Source"
-msgstr "Chọn nguồn"
-
-#: 12090100.xhp
-#, fuzzy
-msgctxt ""
-"12090100.xhp\n"
-"par_id3145119\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataDataPilotRun\">Mở một hộp thoại trong đó bạn có thể lựa chọn nguồn cho bảng DataPilot, sau đó thì tạo bảng riêng.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BW\">Trả về giá trị hiện tại của một đầu tư kết quả do một dãy các sự trả tiền định kỳ.</ahelp>"
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3154760\n"
+"04060103.xhp\n"
+"par_id3146099\n"
"5\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+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 "Hãy dùng hàm này để tính số tiền cần đầu tư theo một tỷ lệ cố định hôm nay, để nhận được một số tiền cố định (một niên khoán) trong một số thời kỳ đã ghi rõ. Bạn cũng có thể xác định bao nhiêu tiền sẽ còn lại ở kết thúc của thời ký đó. Cũng nên ghi rõ nếu tiền sẽ được trả ở đầu hoặc cuối của mỗi thời kỳ."
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3150543\n"
+"04060103.xhp\n"
+"par_id3153334\n"
"6\n"
"help.text"
-msgid "Select a data source for the pivot table."
-msgstr "Lựa chọn một nguồn dữ liệu cho bảng DataPilot."
+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 "Hãy nhập các giá trị này dưới dạng số, biểu thức hoặc tham chiếu. Nếu, chẳng hạn, tiền lãi được trả hàng năm tại 8%, còn bạn muốn đặt một thág là kỳ, nhập « 8%/12 » vào dưới <emph>Tần số</emph> và %PRODUCTNAME Calc sẽ tự động tính hệ số đúng."
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3148799\n"
+"04060103.xhp\n"
+"hd_id3147407\n"
"7\n"
"help.text"
-msgid "Current Selection"
-msgstr "Vùng chọn hiện thời"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3125865\n"
+"04060103.xhp\n"
+"par_id3150395\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Sử dụng những ô đã chọn làm nguồn dữ liệu cho bảng DataPilot.</ahelp>"
-
-#: 12090100.xhp
-#, fuzzy
-msgctxt ""
-"12090100.xhp\n"
-"par_id3150011\n"
-"13\n"
-"help.text"
-msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
-msgstr "Các cột dữ liệu trong bảng DataPilot sử dụng cùng một định dạng số với hàng dữ liệu thứ nhất trong vùng chọn hiện thời."
+msgid "PV(Rate; NPer; Pmt; FV; Type)"
+msgstr "PV(Rate; NPer; Pmt; FV; Type)"
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3147348\n"
+"04060103.xhp\n"
+"par_id3151341\n"
"9\n"
"help.text"
-msgid "Data source registered in $[officename]"
-msgstr "Nguồn dữ liệu được đăng ký với $[officename]"
+msgid "<emph>Rate</emph> defines the interest rate per period."
+msgstr "<emph>Rate</emph> (tỷ lệ) xác định lãi suất trong mỗi kỳ."
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3145271\n"
+"04060103.xhp\n"
+"par_id3153023\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">Sử dụng một bảng hay truy vấn trong một cơ sở dữ liệu được đăng ký với $[officename] làm nguồn dữ liệu cho bảng DataPilot.</ahelp>"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "<emph>NPer</emph> là tổng số kỳ (thời kỳ trả)."
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3146119\n"
+"04060103.xhp\n"
+"par_id3146323\n"
"11\n"
"help.text"
-msgid "External source/interface"
-msgstr "Nguồn/giao diện bên ngoài"
+msgid "<emph>Pmt</emph> is the regular payment made per period."
+msgstr "<emph>Pmt</emph> là số tiền được trả định kỳ, trong mỗi thời kỳ."
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3145647\n"
+"04060103.xhp\n"
+"par_id3150536\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramData\">Mở hộp thoại <emph>Bảng Dữ liệu</emph>, trong đó bạn có thể chỉnh sửa dữ liệu của đồ thị.</ahelp>"
-
-#: 12090100.xhp
-#, fuzzy
-msgctxt ""
-"12090100.xhp\n"
-"par_idN10670\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Hộp thoại DataPilot\">Hộp thoại DataPilot</link>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Pivot Table"
-msgstr "Xẻ bảng"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"bm_id2306894\n"
-"help.text"
-msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
-msgstr "<bookmark_value>hàm DataPilot;hiện chi tiết</bookmark_value><bookmark_value>hàm DataPilot;tìm thêm chi tiết</bookmark_value>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3149165\n"
-"1\n"
-"help.text"
-msgid "Pivot Table"
-msgstr "Xẻ bảng"
+msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
+msgstr "<emph>FV</emph>, tùy chọn, xác định giá trị tương lai còn lại sau lần cuối cùng trả tiền."
-#: 12090102.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"par_id3155922\n"
+"04060103.xhp\n"
+"par_id3146883\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataPilotExec\">Ghi rõ bố trí của bảng được DataPilot tạo.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3148798\n"
-"34\n"
-"help.text"
-msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
-msgstr "DataPilot hiển thị các trường dữ liệu dưới dạng các nút mà bạn có thể kéo và thả để định nghĩa bảng DataPilot."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3154908\n"
-"18\n"
-"help.text"
-msgid "Layout"
-msgstr "Bố trí"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3150768\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
-msgstr "<ahelp hid=\"HID_SC_DPLAY_SELECT\">Để xác định bố trí của một bảng DataPilot, kéo và thả các nút trường dữ liệu vào vùng kiểu <emph>Trường Trang, Trường Hàng, Trường Cột</emph> và <emph>Trường Dữ liệu</emph>.</ahelp> Bạn cũng có thể sử dụng chức năng kéo và thả để sắp đặt lại các trường dữ liệu trên một bảng DataPilot."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3147229\n"
-"20\n"
-"help.text"
-msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
-msgstr "$[officename] tự động thêm một phụ đề vào mỗi nút được kéo vào vùng <emph>Trường Dữ liệu</emph>. Phụ đề chứa tên của trường dữ liệu, cũng như công thức đã tạo dữ liệu đó."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145749\n"
-"21\n"
-"help.text"
-msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
-msgstr "Để thay đổi hàm được trường dữ liệu dùng, nhấn đôi vào một nút trong vùng <emph>Trường dữ liệu</emph> để mở hộp thoại <link href=\"text/scalc/01/12090105.xhp\" name=\"Trường dữ liệu\">Trường dữ liệu</link>. Bạn cũng có thể nhấn đôi vào nút trong vùng <emph>Trường hàng</emph> hay <emph>Trường cột</emph>."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3149260\n"
-"28\n"
-"help.text"
-msgid "Remove"
-msgstr "Bỏ"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3150010\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
-msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Gỡ bỏ khỏi bố trí bảng trường dữ liệu đã chọn.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3145273\n"
-"26\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3146120\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
-msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Mở hộp thoại <link href=\"text/scalc/01/12090105.xhp\" name=\"Trường Dữ liệu\"><emph>Trường Dữ liệu</emph></link>, trong đó bạn có thể thay đổi hàm liên quan đến trường đã chọn.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3154944\n"
-"22\n"
-"help.text"
-msgid "More"
-msgstr "Nhiều"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145647\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Hiển thị hay ẩn thêm tùy chọn về xác định một bảng DataPilot.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3151073\n"
-"2\n"
-"help.text"
-msgid "Result"
-msgstr "Kết quả"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3155417\n"
-"3\n"
-"help.text"
-msgid "Specify the settings for displaying the results of the pivot table."
-msgstr "Ghi rõ thiết lập để hiển thị kết quả của bảng DataPilot."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id0509200913025625\n"
-"help.text"
-msgid "Selection from"
-msgstr "Chọn từ"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id0509200913025615\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn vùng mà chứa dữ liệu cho bảng datapilot hiện tại.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3155603\n"
-"4\n"
-"help.text"
-msgid "Results to"
-msgstr "Kết quả tới"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3153838\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Lựa chọn vùng trong đó bạn muốn hiển thị kết quả của bảng DataPilot.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3155961\n"
-"6\n"
-"help.text"
-msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
-msgstr "Nếu vùng được chọn đã chứa dữ liệu, chức năng DataPilot sẽ ghi đè lên dữ liệu đó. Để ngăn cản mất dữ liệu đã có, hãy cho phép DataPilot tự động lựa chọn vùng để hiển thị kết quả."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3147364\n"
-"7\n"
-"help.text"
-msgid "Ignore empty rows"
-msgstr "Bỏ qua hàng rỗng"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3154022\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Bỏ qua các trường trống trong nguồn dữ liệu.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3155114\n"
-"9\n"
-"help.text"
-msgid "Identify categories"
-msgstr "Nhận ra phân loại"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145257\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Tự động gán hàng không có nhãn cho phân loại cao thứ nhì như hàng trên.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3149207\n"
-"14\n"
-"help.text"
-msgid "Total columns"
-msgstr "Tổng số cột"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3166426\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Tính và hiển thị tổng số tổng quát của phép tính cột.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3150364\n"
-"16\n"
-"help.text"
-msgid "Total rows"
-msgstr "Tổng số hàng"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3152583\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Tính và hiển thị tổng số tổng quát của phép tính hàng.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10897\n"
-"help.text"
-msgid "Add filter"
-msgstr "Thêm bộ lọc"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_idN1089B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm một nút <emph>Lọc</emph> vào các bảng DataPilot dựa vào dữ liệu của cơ sở dữ liệu.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108B2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Lọc</emph>.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108C9\n"
-"help.text"
-msgid "Enable drill to details"
-msgstr "Bật hiện chi tiết"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108CD\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này và nhấn đôi vào một nhãn mục trên bảng để hiển thị hay ẩn chi tiết về mục đó. Tắt tùy chọn này và nhấn đôi vào một ô bảng để chỉnh sửa nội dung của ô đó.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108DC\n"
-"help.text"
-msgid "To examine details inside a pivot table"
-msgstr "Để thấy chi tiết bên trong một bảng DataPilot"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108E0\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Làm một của những hành động này:"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108E6\n"
-"help.text"
-msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
-msgstr "Hãy lựa chọn một phạm vi các ô, và chọn mục trình đơn <emph>Dữ liệu > Nhóm lại và Phác thảo > Hiện chi tiết</emph>."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108EE\n"
-"help.text"
-msgid "Double-click a field in the table."
-msgstr "Nhấn đôi vào một trường trên bảng."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108F1\n"
-"help.text"
-msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
-msgstr "Nếu bạn nhấn đôi vào một trường có các trường kề nhau cùng cấp, hộp thoại <emph>Hiện chi tiết</emph> sẽ mở :"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10900\n"
-"help.text"
-msgid "Show Detail"
-msgstr "Hiện chi tiết"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10904\n"
-"help.text"
-msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
-msgstr "<ahelp hid=\".\">Hãy chọn trường về đó bạn muốn xem chi tiết.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3149817\n"
-"35\n"
-"help.text"
-msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
-msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"Phím tắt DataPilot\">Phím tắt DataPilot</link>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column & Row Headers"
-msgstr "Phần đầu Cột và Hàng"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; hiển thị phần đầu của cột/hàng</bookmark_value><bookmark_value>hiển thị; phần đầu của cột/hàng</bookmark_value>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"hd_id3156024\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
-msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Phần đầu của cột và hàng\">Phần đầu cột/hàng</link>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3147230\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
-msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Hiển thị phần đầu của cột và của hàng.</ahelp>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3156280\n"
-"4\n"
-"help.text"
-msgid "To hide the column and row headers unmark this menu entry."
-msgstr "Để ẩn đi phần đầu cột và hàng, hãy bỏ dấu kiểm của mục này."
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3156441\n"
-"3\n"
-"help.text"
-msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Define Label Range"
-msgstr "Xác định phạm vi nhãn"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
-msgstr "<bookmark_value>trang tính; xác định phạm vi nhãn</bookmark_value><bookmark_value>phạm vi nhãn trên trang tính</bookmark_value>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
-msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Xác định phạm vi nhãn</link></variable>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3150868\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
-msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Mở một hộp thoại trong đó bạn có thể xác định một phạm vi nhãn.</ahelp></variable>"
+msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
+msgstr "<emph>Type</emph> (Kiểu) là tùy chọn, và biểu hiện ngày đến hạn trả tiền. « Type=1 » có nghĩa là đến hạn ở đầu của thời kỳ, còn « Type=0 » (mặc định) nghĩa là đến hạn ở kết thúc của thời kỳ."
-#: 04070400.xhp
+#: 04060103.xhp
msgctxt ""
-"04070400.xhp\n"
-"par_id3155411\n"
-"13\n"
+"04060103.xhp\n"
+"par_idN10B13\n"
"help.text"
-msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
-msgstr "Nội dung ô của một phạm vi nhãn có thể được sử dụng giống như tên trong công thức — $[officename] nhận ra tên như vậy bằng cùng một cách với nhận ra các tên đã xác định sẵn của ngày của tuần và tháng. Các tên này được tự động điền nốt khi được gõ vào một công thức. Hơn nữa, những tên được phạm vi nhãn xác định có cấp ưu tiên cao hơn những tên được xác định bởi phạm vi được tự động tạo."
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-#: 04070400.xhp
+#: 04060103.xhp
msgctxt ""
-"04070400.xhp\n"
-"par_id3147435\n"
+"04060103.xhp\n"
+"hd_id3150037\n"
"14\n"
"help.text"
-msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
-msgstr "Bạn có thể đặt phạm vi nhãn mà chứa cùng một tập hợp nhãn trên các trang tính khác nhau. $[officename] trước tiên tìm kiếm qua các phạm vi nhãn trên trang tính hiện tại, mà không tìm thấy thì tìm kiếm qua các trang tính khác trong tài liệu đó."
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3145801\n"
-"3\n"
-"help.text"
-msgid "Range"
-msgstr "Phạm vi"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154731\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Hiển thị tham chiếu ô của mỗi phạm vi nhãn.</ahelp> Để gỡ bỏ một phạm vi nhãn khỏi hộp liệt kê, lựa chọn nó, sau đó bấm nút <emph>Xoá</emph>."
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3149121\n"
-"5\n"
-"help.text"
-msgid "Contains column labels"
-msgstr "Chứa nhãn cột"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3150330\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Bao gồm các nhãn cột trong phạm vi nhãn hiện thời.</ahelp>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3149020\n"
-"7\n"
-"help.text"
-msgid "Contains row labels"
-msgstr "Chức nhãn hàng"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154754\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Bao gồm các nhãn hàng trong phạm vi nhãn hiện thời.</ahelp>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3159264\n"
-"11\n"
-"help.text"
-msgid "For data range"
-msgstr "Cho phạm vi dữ liệu"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154703\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Đặt phạm vi dữ liệu cho đó phạm vi nhãn đã chọn vẫn còn là hợp lệ. Để sửa đổi phạm vi dữ liệu này, nhấn vào trang tính và lựa chọn một phạm vi khác bằng con chuột.</ahelp>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3145789\n"
-"9\n"
-"help.text"
-msgid "Add"
-msgstr "Thêm"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3147005\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Thêm vào phạm vi nhãn hiện thời vào danh sách.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Two"
-msgstr "Hàm Thống Kê Phần 2"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3154372\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
-msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Hàm Thống Kê Phần 2\">Hàm Thống Kê Phần 2</link></variable>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3145388\n"
-"help.text"
-msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
-msgstr "<bookmark_value>hàm FINV</bookmark_value><bookmark_value>phân bố xác suất F ngược</bookmark_value>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3145388\n"
-"2\n"
-"help.text"
-msgid "FINV"
-msgstr "FINV"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155089\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
-msgstr "<ahelp hid=\"HID_FUNC_FINV\">Trả về nghịch đảo của phân bố xác suất F.</ahelp> Phân bố F được dùng cho phép thử F để đặt quan hệ giữa hai tập hợp dữ liệu khác nhau."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3153816\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153068\n"
-"5\n"
-"help.text"
-msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
-msgstr "FINV(Số; Bậc_tự_do1; Bậc_tự_do2)"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3146866\n"
-"6\n"
-"help.text"
-msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố F ngược."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153914\n"
-"7\n"
-"help.text"
-msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
-msgstr "<emph>Bậc_tự_do1</emph> là số các bậc tự do trong tử số của phân bố F."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3148607\n"
-"8\n"
-"help.text"
-msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
-msgstr "<emph>Bậc_tự_do2</emph> là số các bậc tự do trong mẫu số của phân bố F."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3156021\n"
-"9\n"
-"help.text"
msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3145073\n"
-"10\n"
-"help.text"
-msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
-msgstr "<item type=\"input\">=FINV(0.5;5;10)</item> trả về 0.93."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3150888\n"
-"help.text"
-msgid "<bookmark_value>FISHER function</bookmark_value>"
-msgstr "<bookmark_value>hàm FISHER</bookmark_value>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3150888\n"
-"12\n"
-"help.text"
-msgid "FISHER"
-msgstr "FISHER"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155384\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FISHER\">Trả về phép biến đổi Fisher cho x, và tạo một hàm gần phân bố chuẩn.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3149898\n"
-"14\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgstr "Ví dụ"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3143220\n"
+"04060103.xhp\n"
+"par_id3145225\n"
"15\n"
"help.text"
-msgid "FISHER(Number)"
-msgstr "FISHER(Số)"
+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 "Hãy tính giá trị hiện tại của một đầu tư, nếu 500 đơn vị tiền tệ được trả hàng tháng và lãi suất hàng năm là 8%. Thời kỳ trả là 48 tháng, và 20.000 đơn vị tiền tệ nên còn lại ở kết thúc thời kỳ trả."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159228\n"
+"04060103.xhp\n"
+"par_id3155907\n"
"16\n"
"help.text"
-msgid "<emph>Number</emph> is the value to be transformed."
-msgstr "<emph>Số</emph> là giá trị cần chuyển dạng."
+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 đơn vị tiền tệ. Dưới các điều kiện đặt tên, bạn phải gửi 35.019,37 đơn vị tiền tệ vào hôm nay, nếu bạn muốn nhận được 500 đơn vị tiền tệ hàng tháng trong khoảng 48 tháng và có 20.000 đơn vị tiền tệ còn lại ở kết thúc. Kiểm tra chéo thì (48×500)+20.000=44.000 đơn vị tiền tệ. Hiệu giữa số tiền này và 35.000 đơn vị tiền tệ được gửi thì đại diện tiền lãi đã trả."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154763\n"
+"04060103.xhp\n"
+"par_id3149150\n"
"17\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+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 "Nếu bạn nhập tham chiếu vào công thức, thay cho các giá trị này, bạn có thể tính bất cứ số nào kịch bản « Nếu-thì ». Ghi chú : tham chiếu đến hằng phải được xác định dưới dạng tham chiếu tuyệt đối. Các mẫu thí dụ về kiểu công việc này nằm dưới các hàm khấu hao."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149383\n"
-"18\n"
+"04060103.xhp\n"
+"bm_id3152978\n"
"help.text"
-msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
-msgstr "<item type=\"input\">=FISHER(0.5)</item> trả về 0.55."
+msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
+msgstr "<bookmark_value>tính;khấu hao</bookmark_value><bookmark_value>hàm SYD</bookmark_value><bookmark_value>khấu hao;hạ cấp số cộng</bookmark_value><bookmark_value>khấu hao hạ cấp số cộng</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3155758\n"
+"04060103.xhp\n"
+"hd_id3152978\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
-msgstr "<bookmark_value>hàm FISHERINV</bookmark_value><bookmark_value>nghịch đảo của phép biến đổi Fisher</bookmark_value>"
+msgid "SYD"
+msgstr "SYD"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155758\n"
+"04060103.xhp\n"
+"par_id3148732\n"
"20\n"
"help.text"
-msgid "FISHERINV"
-msgstr "FISHERINV"
+msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DIA\">Trả bề tỷ lệ khấu hao hạ cấp số cộng.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154734\n"
+"04060103.xhp\n"
+"par_id3149886\n"
"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">Trả về nghịch đảo của phép biến đổi Fisher cho x, và tạo một hàm gần vơi một phân bố chuẩn.</ahelp>"
+msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
+msgstr "Hãy dùng hàm này để tính số tiền khấu hao trong một thời kỳ của tổng kỳ hạn khấu hao của một đối tượng. Phương pháp khấu hao giảm cấp số cộng thì giảm số tiền khấu hao từ kỳ này đến kỳ kia theo một số tiền cố định."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155755\n"
+"04060103.xhp\n"
+"hd_id3149431\n"
"22\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146108\n"
+"04060103.xhp\n"
+"par_id3150483\n"
"23\n"
"help.text"
-msgid "FISHERINV(Number)"
-msgstr "FISHERINV(Số)"
+msgid "SYD(Cost; Salvage; Life; Period)"
+msgstr "SYD(Cost; Salvage; Life; Period)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145115\n"
+"04060103.xhp\n"
+"par_id3146879\n"
"24\n"
"help.text"
-msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
-msgstr "<emph>Số</emph> là giá trị cần chuyển dạng ngược."
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Giá</emph> là giá đầu tiên của một tài sản."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155744\n"
+"04060103.xhp\n"
+"par_id3147423\n"
"25\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
+msgstr "<emph>Salvage</emph> (giá trị thanh lý) là giá trị của một tài sản sau khi khấu hao."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150432\n"
+"04060103.xhp\n"
+"par_id3151229\n"
"26\n"
"help.text"
-msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
-msgstr "<item type=\"input\">=FISHERINV(0.5)</item> trả về 0.46."
+msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+msgstr "<emph>Life</emph> (Kỳ hạn) là thời kỳ trong đó một tài sản bị khấu hao."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3151390\n"
+"04060103.xhp\n"
+"par_id3147473\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>FTEST function</bookmark_value>"
-msgstr "<bookmark_value>hàm FTEST</bookmark_value>"
+msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
+msgstr "<emph>Period</emph> (Thời kỳ) xác định thời kỳ trong đó cần tính khấu hao."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3151390\n"
+"04060103.xhp\n"
+"hd_id3148434\n"
"28\n"
"help.text"
-msgid "FTEST"
-msgstr "FTEST"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150534\n"
+"04060103.xhp\n"
+"par_id3149688\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Trả về kết quả của một phép thử F.</ahelp>"
+msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
+msgstr "Một hệ thống ảnh động định giá đầu tiên 50.000 đơn vị tiền tệ sẽ bị khấu hao hàng năm trong 5 năm sau. Giá trị thanh lý sẽ là 10.000 đơn vị tiền tệ. Tính khấu hao trong năm thứ nhất."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3166466\n"
+"04060103.xhp\n"
+"par_id3150900\n"
"30\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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 đơn vị tiền tệ. Số tiền khấu hao trong năm thứ nhất là 13,333.33 đơn vị tiền tệ."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153024\n"
+"04060103.xhp\n"
+"par_id3146142\n"
"31\n"
"help.text"
-msgid "FTEST(Data1; Data2)"
-msgstr "FTEST(Dữ_liệu1; Dữ_liệu2)"
+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 "Để xem toàn cảnh các tỷ lệ khấu hao trong mỗi thời kỳ, tốt nhất khi xác định một bảng khấu hao. Bằng cách nhập vào các công thức khấu hao khác nhau có sẵn cạnh nhau trong <item type=\"productname\">%PRODUCTNAME</item> Calc, bạn có thể thấy dạng khấu hao nào là thích hợp nhất. Hãy nhập bảng như sau :"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150032\n"
+"04060103.xhp\n"
+"par_id3155258\n"
"32\n"
"help.text"
-msgid "<emph>Data1</emph> is the first record array."
-msgstr "<emph>Dữ_liệu1</emph> là mảng bản ghi thứ nhất."
+msgid "<emph>A</emph>"
+msgstr "<emph>Mode</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153018\n"
+"04060103.xhp\n"
+"par_id3154558\n"
"33\n"
"help.text"
-msgid "<emph>Data2</emph> is the second record array."
-msgstr "<emph>Dữ_liệu2</emph> là mảng bản ghi thứ hai."
+msgid "<emph>B</emph>"
+msgstr "<emph>Mode</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153123\n"
+"04060103.xhp\n"
+"par_id3152372\n"
"34\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>C</emph>"
+msgstr "<emph>Mode</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159126\n"
+"04060103.xhp\n"
+"par_id3149949\n"
"35\n"
"help.text"
-msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
-msgstr "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> tính nếu hai tập hợp dữ liệu khác với nhau về phương sai, và trả về xác suất rằng cả hai tập hợp có thể thuộc về cùng một tổng dân số."
+msgid "<emph>D</emph>"
+msgstr "<emph>Mode</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3150372\n"
+"04060103.xhp\n"
+"par_id3145123\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>FDIST function</bookmark_value>"
-msgstr "<bookmark_value>hàm FDIST</bookmark_value>"
+msgid "<emph>E</emph>"
+msgstr "<emph>Mode</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150372\n"
+"04060103.xhp\n"
+"par_id3149504\n"
"37\n"
"help.text"
-msgid "FDIST"
-msgstr "FDIST"
+msgid "1"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3152981\n"
+"04060103.xhp\n"
+"par_id3153778\n"
"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Tính các giá trị của một phân bố F.</ahelp>"
+msgid "<item type=\"input\">Initial Cost</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150484\n"
+"04060103.xhp\n"
+"par_id3159083\n"
"39\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">Salvage Value</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145826\n"
+"04060103.xhp\n"
+"par_id3150002\n"
"40\n"
"help.text"
-msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
-msgstr "FDIST(Số; Bậc_tự_do1; Bậc_tự_do)"
+msgid "<item type=\"input\">Useful Life</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150461\n"
+"04060103.xhp\n"
+"par_id3153006\n"
"41\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố F."
+msgid "<item type=\"input\">Time Period</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150029\n"
+"04060103.xhp\n"
+"par_id3154505\n"
"42\n"
"help.text"
-msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
-msgstr "<emph>Bậc_tự_do1</emph> là số bậc tự do trong tử số của phân bố F."
+msgid "<item type=\"input\">Deprec. SYD</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146877\n"
+"04060103.xhp\n"
+"par_id3150336\n"
"43\n"
"help.text"
-msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
-msgstr "<emph>Bậc_tự_do2</emph> là số bậc tự do trong mẫu số của phân bố F."
+msgid "2"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3147423\n"
+"04060103.xhp\n"
+"par_id3155926\n"
"44\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">50,000 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150696\n"
+"04060103.xhp\n"
+"par_id3153736\n"
"45\n"
"help.text"
-msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
-msgstr "<item type=\"input\">=FDIST(0.8;8;12)</item> trả về 0.61."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id0119200903223192\n"
-"help.text"
-msgid "<bookmark_value>GAMMA function</bookmark_value>"
-msgstr "<bookmark_value>hàm GAMMAINV</bookmark_value>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id0119200903205393\n"
-"help.text"
-msgid "GAMMA"
-msgstr "GAMMA"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903205379\n"
-"help.text"
-msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
-msgstr "<ahelp hid=\".\">Trả về giá trị hàm Gamma.</ahelp> Chú ý GAMMAINV không phải nghịch đảo của GAMMA, mà là của GAMMADIST."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id0119200903271613\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903271614\n"
-"help.text"
-msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
-msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố Gama (γ)."
+msgid "<item type=\"input\">10,000 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3154841\n"
+"04060103.xhp\n"
+"par_id3150131\n"
+"46\n"
"help.text"
-msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
-msgstr "<bookmark_value>hàm GAMMAINV</bookmark_value>"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154841\n"
+"04060103.xhp\n"
+"par_id3148766\n"
"47\n"
"help.text"
-msgid "GAMMAINV"
-msgstr "GAMMAINV"
+msgid "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153932\n"
+"04060103.xhp\n"
+"par_id3159136\n"
"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
-msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">Trả về nghịch đảo của phân bố tích lũy γ (Gama).</ahelp> Hàm này cho phép bạn tìm kiếm biến dùng các phân bố khác nhau."
+msgid "<item type=\"input\">13,333.33 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149949\n"
+"04060103.xhp\n"
+"par_id3151018\n"
"49\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "3"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155828\n"
+"04060103.xhp\n"
+"par_id3148397\n"
"50\n"
"help.text"
-msgid "GAMMAINV(Number; Alpha; Beta)"
-msgstr "GAMMAINV(Số; Alpha; Bêta)"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145138\n"
+"04060103.xhp\n"
+"par_id3146907\n"
"51\n"
"help.text"
-msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố Gama (γ) ngược."
+msgid "<item type=\"input\">10,666.67 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3152785\n"
+"04060103.xhp\n"
+"par_id3147356\n"
"52\n"
"help.text"
-msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
-msgstr "<emph>Alpha</emph> là tham số Alpha (α) của phân bố Gama (γ)."
+msgid "4"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154561\n"
+"04060103.xhp\n"
+"par_id3150267\n"
"53\n"
"help.text"
-msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr "<emph>Bêta</emph> là tham số Bêta (β) của phân bố Gama (γ)."
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3148734\n"
+"04060103.xhp\n"
+"par_id3145628\n"
"54\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">8,000.00 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153331\n"
+"04060103.xhp\n"
+"par_id3149004\n"
"55\n"
"help.text"
-msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
-msgstr "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> trả về 1,61."
+msgid "5"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3154806\n"
+"04060103.xhp\n"
+"par_id3153545\n"
+"56\n"
"help.text"
-msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
-msgstr "<bookmark_value>hàm GAMMALN</bookmark_value><bookmark_value>lôga tự nhiên của hàm Gama (γ)</bookmark_value>"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154806\n"
+"04060103.xhp\n"
+"par_id3154634\n"
"57\n"
"help.text"
-msgid "GAMMALN"
-msgstr "GAMMALN"
+msgid "<item type=\"input\">5,333.33 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148572\n"
+"04060103.xhp\n"
+"par_id3147537\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">Trả về lôga tự nhiên của hàm Gama (γ): G(x).</ahelp>"
+msgid "6"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152999\n"
+"04060103.xhp\n"
+"par_id3155085\n"
"59\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153112\n"
+"04060103.xhp\n"
+"par_id3158413\n"
"60\n"
"help.text"
-msgid "GAMMALN(Number)"
-msgstr "GAMMALN(Số)"
+msgid "<item type=\"input\">2,666.67 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154502\n"
+"04060103.xhp\n"
+"par_id3154866\n"
"61\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
-msgstr "<emph>Số</emph> là giá trị cho đó cần tính lôga tự nhiên của hàm Gama (γ)."
+msgid "7"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153568\n"
+"04060103.xhp\n"
+"par_id3155404\n"
"62\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153730\n"
+"04060103.xhp\n"
+"par_id3148431\n"
"63\n"
"help.text"
-msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
-msgstr "<item type=\"input\">=GAMMALN(2)</item> trả về 0."
+msgid "<item type=\"input\">0.00 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3150132\n"
+"04060103.xhp\n"
+"par_id3156261\n"
+"64\n"
"help.text"
-msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
-msgstr "<bookmark_value>hàm GAMMADIST</bookmark_value>"
+msgid "8"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150132\n"
+"04060103.xhp\n"
+"par_id3083286\n"
"65\n"
"help.text"
-msgid "GAMMADIST"
-msgstr "GAMMADIST"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155931\n"
-"66\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Trả về các giá trị của phân bố Gama (γ).</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903333675\n"
-"help.text"
-msgid "The inverse function is GAMMAINV."
-msgstr "Hàm nghịch đảo là GAMMAINV."
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3147373\n"
+"04060103.xhp\n"
+"par_id3083443\n"
"67\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "9"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155436\n"
+"04060103.xhp\n"
+"par_id3154815\n"
"68\n"
"help.text"
-msgid "GAMMADIST(Number; Alpha; Beta; C)"
-msgstr "GAMMADIST(Số; Alpha; Bêta; C)"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3150571\n"
-"69\n"
-"help.text"
-msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố Gama (γ)."
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145295\n"
+"04060103.xhp\n"
+"par_id3145082\n"
"70\n"
"help.text"
-msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
-msgstr "<emph>Alpha</emph> là tham số Alpha (α) của phân bố Gama (γ)."
+msgid "10"
+msgstr "10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3151015\n"
+"04060103.xhp\n"
+"par_id3156307\n"
"71\n"
"help.text"
-msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
-msgstr "<emph>Bêta</emph> là tham số Bêta (β) của phân bố Gama (γ)."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3157972\n"
-"72\n"
-"help.text"
-msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
-msgstr "<emph>C</emph> = 0 thì tính hàm mật độ ; <emph>C</emph> = 1 thì tính phân bố."
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149535\n"
+"04060103.xhp\n"
+"par_id3147564\n"
"73\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "11"
+msgstr "11"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145354\n"
+"04060103.xhp\n"
+"par_id3146856\n"
"74\n"
"help.text"
-msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
-msgstr "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> trả về 0.86."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3150272\n"
-"help.text"
-msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
-msgstr "<bookmark_value>hàm GAUSS</bookmark_value><bookmark_value>phân bố chuẩn; tiêu chuẩn</bookmark_value>"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150272\n"
+"04060103.xhp\n"
+"par_id3150880\n"
"76\n"
"help.text"
-msgid "GAUSS"
-msgstr "GAUSS"
+msgid "12"
+msgstr "12"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149030\n"
+"04060103.xhp\n"
+"par_id3145208\n"
"77\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Trả về phân bố tích lũy chuẩn tiêu chuẩn.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id2059694\n"
-"help.text"
-msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
-msgstr "Nó là GAUSS(x)=NORMSDIST(x)-0.5"
+msgid "13"
+msgstr "13"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153551\n"
+"04060103.xhp\n"
+"par_id3156113\n"
"78\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">>0</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155368\n"
+"04060103.xhp\n"
+"par_id3153625\n"
"79\n"
"help.text"
-msgid "GAUSS(Number)"
-msgstr "GAUSS(Số)"
+msgid "<item type=\"input\">Total</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153228\n"
+"04060103.xhp\n"
+"par_id3151297\n"
"80\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị cho đó cần tính giá trị của phân bố chuẩn tiêu chuẩn."
+msgid "<item type=\"input\">40,000.00 currency units</item>"
+msgstr "<item type=\"input\">10,666.67 đơn vị tiền tệ</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150691\n"
+"04060103.xhp\n"
+"par_id3149979\n"
"81\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "The formula in E2 is as follows:"
+msgstr "Ô E2 chứa công thức này:"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154867\n"
+"04060103.xhp\n"
+"par_id3155849\n"
"82\n"
"help.text"
-msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
-msgstr "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
+msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148594\n"
+"04060103.xhp\n"
+"par_id3156124\n"
"83\n"
"help.text"
-msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
-msgstr "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
+msgstr "Công thức này được nhân đôi trong cột E, đến ô E11 (chọn ô E2, sau đó kéo chuột xuống tới góc dưới bên phải)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3148425\n"
+"04060103.xhp\n"
+"par_id3147270\n"
+"84\n"
"help.text"
-msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
-msgstr "<bookmark_value>hàm GEOMEAN</bookmark_value><bookmark_value>trung bình;nhân</bookmark_value>"
+msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
+msgstr "Ô E13 chứa công thức được dùng để kiểm tra tổng số các số tiền khấu hao. Nó dùng hàm SUMIF vì các giá trị âm trong phạm vi ô E8:E11 không nên được tính. Điều kiện >0 nằm trong ô A13. Công thưc trong ô E13 là:"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3148425\n"
+"04060103.xhp\n"
+"par_id3152811\n"
"85\n"
"help.text"
-msgid "GEOMEAN"
-msgstr "GEOMEAN"
+msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
+msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156257\n"
+"04060103.xhp\n"
+"par_id3155998\n"
"86\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Trả về trung bình nhân của một mẫu.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3147167\n"
-"87\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153720\n"
-"88\n"
-"help.text"
-msgid "GEOMEAN(Number1; Number2; ...Number30)"
-msgstr "GEOMEAN(Số1; Số2; ...; Số30)"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3152585\n"
-"89\n"
-"help.text"
-msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
-msgstr "<emph>Số1; Số2; ...; Số30</emph> là các đối số thuộc số hay phạm vi các số mà đại diện một mẫu ngẫu nhiên."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3146146\n"
-"90\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3149819\n"
-"92\n"
-"help.text"
-msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
-msgstr "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. Giá trị trung bình nhân của mẫu ngẫu nhiên này thì là 41,79."
+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 "Sau đó thì xem khấu hao trong khoảng 10 năm, hoặc theo giá trị thanh lý 1 đơn vị tiền tệ, hoặc nhập một giá mua đầu tiên khác, v.v."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3152966\n"
+"04060103.xhp\n"
+"bm_id3155104\n"
"help.text"
-msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
-msgstr "<bookmark_value>hàm TRIMMEAN</bookmark_value><bookmark_value>trung bình;của tập hợp dữ liệu không có dữ liệu sát giới hạn</bookmark_value>"
+msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
+msgstr "<bookmark_value>hàm DISC</bookmark_value><bookmark_value>sự cho phép</bookmark_value><bookmark_value>tiền bớt</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152966\n"
-"94\n"
+"04060103.xhp\n"
+"hd_id3155104\n"
+"379\n"
"help.text"
-msgid "TRIMMEAN"
-msgstr "TRIMMEAN"
+msgid "DISC"
+msgstr "DISC"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149716\n"
-"95\n"
+"04060103.xhp\n"
+"par_id3153891\n"
+"380\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Trả về trung bình của một tập hợp dữ liệu không có phần trăm Alpha dữ liệu ở các lề.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">Tính tiền bớt theo phần trăm của một chứng khoán.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149281\n"
-"96\n"
+"04060103.xhp\n"
+"hd_id3153982\n"
+"381\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154821\n"
-"97\n"
+"04060103.xhp\n"
+"par_id3149756\n"
+"382\n"
"help.text"
-msgid "TRIMMEAN(Data; Alpha)"
-msgstr "TRIMMEAN(Dữ_liệu; Alpha)"
+msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
+msgstr "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155834\n"
-"98\n"
+"04060103.xhp\n"
+"par_id3156014\n"
+"383\n"
"help.text"
-msgid "<emph>Data</emph> is the array of data in the sample."
-msgstr "<emph>Dữ liệu</emph> là mảng dữ liệu trong mẫu."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156304\n"
-"99\n"
+"04060103.xhp\n"
+"par_id3154304\n"
+"384\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> là phần trăm dữ liệu sát giới hạn mà sẽ không được tính."
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3151180\n"
-"100\n"
+"04060103.xhp\n"
+"par_id3159180\n"
+"385\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
+msgstr "<emph>Price</emph> là giá của chứng khoán cho mỗi 100 đơn vị tiền tệ giá trị danh nghĩa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156130\n"
-"101\n"
+"04060103.xhp\n"
+"par_id3147253\n"
+"386\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> tính giá trị trung bình của các số trong phạm vi A1:A50, mà không tính 5 phần trăm giá trị đại diện những giá trị lớn nhất, và 5 phần trăm giá trị đại diện những giá trị và nhỏ nhất. Hai số phần trăm này tham chiếu đến số lượng là giá trị không bị xén, không phải đến số các số hạng."
+msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> (sự trả hết) là giá trị trả hết của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3153216\n"
+"04060103.xhp\n"
+"hd_id3151174\n"
+"387\n"
"help.text"
-msgid "<bookmark_value>ZTEST function</bookmark_value>"
-msgstr "<bookmark_value>hàm ZTEST</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153216\n"
-"103\n"
+"04060103.xhp\n"
+"par_id3155902\n"
+"388\n"
"help.text"
-msgid "ZTEST"
-msgstr "ZTEST"
+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 "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn thanh toán là 2001-11-15. Giá (giá mua) là 97, giá trị đáo hạn là 100. Dùng phép tính kết toán hàng ngày (cơ bản 3), bao cao là sự thanh toán (tiền bớt)?"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150758\n"
-"104\n"
+"04060103.xhp\n"
+"par_id3152797\n"
+"389\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
-msgstr ""
+msgid "<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> trả về khoảng 0.0372 hay 3.72 phần trăm."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150872\n"
-"105\n"
+"04060103.xhp\n"
+"bm_id3154695\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
+msgstr "<bookmark_value>hàm DURATION_ADD</bookmark_value><bookmark_value>các hàm Microsoft Excel</bookmark_value><bookmark_value>thời lượng;chứng khoán lãi suất cố định</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153274\n"
-"106\n"
+"04060103.xhp\n"
+"hd_id3154695\n"
+"402\n"
"help.text"
-msgid "ZTEST(Data; mu; Sigma)"
-msgstr "ZTEST(Dữ_liệu; Số; Sigma)"
+msgid "DURATION_ADD"
+msgstr "DURATION_ADD"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156109\n"
-"107\n"
+"04060103.xhp\n"
+"par_id3145768\n"
+"403\n"
"help.text"
-msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
-msgstr ""
+msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Tính thời lượng của một chứng khoán lãi suất cố định, theo năm.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149977\n"
-"108\n"
+"04060103.xhp\n"
+"hd_id3153904\n"
+"404\n"
"help.text"
-msgid "<emph>mu</emph> is the known mean of the population."
-msgstr ""
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154740\n"
-"109\n"
+"04060103.xhp\n"
+"par_id3153373\n"
+"405\n"
"help.text"
-msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
-msgstr ""
+msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
+msgstr "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id0305200911372999\n"
+"04060103.xhp\n"
+"par_id3155397\n"
+"406\n"
"help.text"
-msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
-msgstr ""
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3153623\n"
+"04060103.xhp\n"
+"par_id3148558\n"
+"407\n"
"help.text"
-msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
-msgstr "<bookmark_value>hàm HARMEAN</bookmark_value><bookmark_value>trung bình;điều hoà</bookmark_value>"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153623\n"
-"113\n"
+"04060103.xhp\n"
+"par_id3153096\n"
+"408\n"
"help.text"
-msgid "HARMEAN"
-msgstr "HARMEAN"
+msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
+msgstr "<emph>Coupon</emph> (Phiếu lãi) là lãi suất trái phiếu hàng năm (lãi suất danh nghĩa)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155102\n"
-"114\n"
+"04060103.xhp\n"
+"par_id3154594\n"
+"409\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Trả về trung bình điều hoà của một tập hợp dữ liệu.</ahelp>"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Lợi</emph> là tổng lợi tức hàng năm của chứng khoán."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3146900\n"
-"115\n"
+"04060103.xhp\n"
+"par_id3149906\n"
+"410\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149287\n"
-"116\n"
+"04060103.xhp\n"
+"hd_id3146995\n"
+"411\n"
"help.text"
-msgid "HARMEAN(Number1; Number2; ...Number30)"
-msgstr "HARMEAN(Số1; Số2; ...; Số30)"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154303\n"
-"117\n"
+"04060103.xhp\n"
+"par_id3148834\n"
+"412\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>Số1, Số2. ...Số30</emph> là đến 30 giá trị hay phạm vi, mà có thể được sử dụng để tính trung bình điều hoà."
+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 "Một chứng khoán được mua vào ngày 2001-00-01; ngày đến hạn thanh toán là 2006-01-01. Lãi suất danh nghĩa là 8%. Lợi tức là 9,0%. Tiền lãi được trả mỗi nửa năm (tần số là 2). Dùng phép tính tiền lãi kết toán hàng ngày (cơ bản 3), thời lượng đã sửa đổi là bao lâu?"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3159179\n"
-"118\n"
+"04060103.xhp\n"
+"par_id3154902\n"
+"413\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
+msgstr "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146093\n"
-"120\n"
+"04060103.xhp\n"
+"bm_id3159147\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. Trung bình điều hoà của mẫu ngẫu nhiên này là 37,64."
+msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
+msgstr "<bookmark_value>lãi suất ròng hàng năm</bookmark_value><bookmark_value>tính;lãi suất ròng hàng năm</bookmark_value><bookmark_value>lãi suất ròng hàng năm</bookmark_value><bookmark_value>hàm EFFECTIVE</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3152801\n"
+"04060103.xhp\n"
+"hd_id3159147\n"
+"88\n"
"help.text"
-msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
-msgstr "<bookmark_value>hàm HYPGEOMDIST</bookmark_value><bookmark_value>lấy mẫu mà không thay thế lại</bookmark_value>"
+msgid "EFFECTIVE"
+msgstr "EFFECTIVE"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152801\n"
-"122\n"
+"04060103.xhp\n"
+"par_id3154204\n"
+"89\n"
"help.text"
-msgid "HYPGEOMDIST"
-msgstr "HYPGEOMDIST"
+msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Trả về lãi xuất ròng hàng năm đối với một lãi suất danh nghĩa.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159341\n"
-"123\n"
+"04060103.xhp\n"
+"par_id3145417\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Trả về phân bố siêu bội.</ahelp>"
+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 "Tiền lãi danh nghĩa thì đại diện tiền lãi phải trả ở kết thúc của một thời kỳ tính. Tiền lãi hiệu dụng sẽ tăng tùy theo số lần trả tiên. Tức là tiền lãi thường được trả một phần mỗi lần (v.d. hàng tháng hoặc hàng quý) trước khi kết thúc của thời kỳ tính."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154697\n"
-"124\n"
+"04060103.xhp\n"
+"hd_id3150510\n"
+"91\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155388\n"
-"125\n"
-"help.text"
-msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
-msgstr "HYPGEOMDIST(X; Nmẫu; Thành_công; Ndân_số)"
-
-#: 04060182.xhp
-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> là số các kết quả được đặt trong mẫu ngẫu nhiên."
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153106\n"
-"127\n"
+"04060103.xhp\n"
+"par_id3148805\n"
+"92\n"
"help.text"
-msgid "<emph>NSample</emph> is the size of the random sample."
-msgstr "<emph>NMẫu</emph> là kích cỡ của mẫu ngẫu nhiên."
+msgid "EFFECTIVE(Nom; P)"
+msgstr "EFFECTIVE(Nom; P)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146992\n"
-"128\n"
+"04060103.xhp\n"
+"par_id3149768\n"
+"93\n"
"help.text"
-msgid "<emph>Successes</emph> is the number of possible results in the total population."
-msgstr "<emph>Thành_công</emph> là số kết quả có thể làm trong tổng dân số."
+msgid "<emph>Nom</emph> is the nominal interest."
+msgstr "<emph>Nom</emph> là tiền lãi danh nghĩa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148826\n"
-"129\n"
+"04060103.xhp\n"
+"par_id3149334\n"
+"94\n"
"help.text"
-msgid "<emph>NPopulation </emph>is the size of the total population."
-msgstr "<emph>Ndân_số</emph> là kích cỡ của tổng dân số."
+msgid "<emph>P</emph> is the number of interest payment periods per year."
+msgstr "<emph>P</emph> là số lần trả tiền lãi trong mỗi năm."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150529\n"
-"130\n"
+"04060103.xhp\n"
+"hd_id3154223\n"
+"95\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3154904\n"
-"131\n"
-"help.text"
-msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
-msgstr "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> trả về 0.81. Nếu 90 trên 100 cái chén đầy cơm bị thả xuống tấm thảm thì lật và tràn ra cơm, do đó nếu 2 cái chén bị thả xuống, xác suất là 81% cả hai sẽ tràn ra cơm."
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3154760\n"
-"1\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgstr "Ví dụ"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3153379\n"
-"3\n"
+"04060103.xhp\n"
+"par_id3144499\n"
+"96\n"
"help.text"
-msgid "Contains column labels"
-msgstr "Chứa nhãn cột"
+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 "Nếu lãi suất danh nghĩa hàng năm là 9,75%, và xác định bốn thời kỳ tính tiền lãi, lãi suất thật (tỷ lệ hiệu dụng) là gì?"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3148798\n"
-"4\n"
+"04060103.xhp\n"
+"par_id3150772\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Một số phạm vi ô được chọn chứa nhãn.</ahelp>"
+msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
+msgstr "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% Lãi suất hàng năm hiệu dụng thì là 10.11%."
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3153970\n"
-"5\n"
+"04060103.xhp\n"
+"bm_id3147241\n"
"help.text"
-msgid "Insert or delete cells"
-msgstr "Chèn hay xoá ô"
+msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>lãi suất hiệu dụng</bookmark_value><bookmark_value>hàm EFFECT_ADD</bookmark_value>"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3154684\n"
-"6\n"
+"04060103.xhp\n"
+"hd_id3147241\n"
+"414\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Tự động chèn hàng/cột mới vào phạm vi cơ sở dữ liệu trong tài liệu khi bản ghi mới được thêm vào cơ sở dữ liệu đó.</ahelp> Để cập nhật thủ công phạm vi cơ sở dữ liệu, chọn <emph>Dữ liệu > Cập nhật > Phạm vi</emph>."
+msgid "EFFECT_ADD"
+msgstr "EFFECT_ADD"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3153768\n"
-"7\n"
+"04060103.xhp\n"
+"par_id3147524\n"
+"415\n"
"help.text"
-msgid "Keep formatting"
-msgstr "Giữ định dạng"
+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\">Tính lãi suất hàng năm hiệu dụng dựa vào lãi suất danh nghĩa và số lần trả tiền lãi trong mỗi năm.</ahelp>"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3147435\n"
-"8\n"
+"04060103.xhp\n"
+"hd_id3155364\n"
+"416\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Áp dụng định dạng ô đã tồn tại của tiêu đề và hàng dữ liệu đầu cho toàn bộ phạm vi cơ sở dữ liệu.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3155856\n"
-"9\n"
+"04060103.xhp\n"
+"par_id3155118\n"
+"417\n"
"help.text"
-msgid "Don't save imported data"
-msgstr "Không lưu dữ liệu đã nhập"
+msgid "EFFECT_ADD(NominalRate; NPerY)"
+msgstr "EFFECT_ADD(NominalRate; NPerY)"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3153363\n"
-"10\n"
+"04060103.xhp\n"
+"par_id3148907\n"
+"418\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Chỉ lưu một tham chiếu đến cơ sở dữ liệu, không phải nội dung của ô.</ahelp>"
+msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
+msgstr "<emph>NominalRate</emph> là lãi suất danh nghĩa hàng năm."
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3147428\n"
-"11\n"
+"04060103.xhp\n"
+"par_id3154274\n"
+"419\n"
"help.text"
-msgid "Source:"
-msgstr "Nguồn:"
+msgid "<emph>NPerY </emph>is the number of interest payments per year."
+msgstr "<emph>NPerY</emph> là số lần trả tiền lãi trong mỗi năm."
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3148576\n"
-"12\n"
+"04060103.xhp\n"
+"hd_id3149156\n"
+"420\n"
"help.text"
-msgid "Displays information about the current database source and any existing operators."
-msgstr "Hiển thị thông tin về nguồn cơ sở dữ liệu hiện thời và bất cứ toán tử nào đã có."
+msgid "Example"
+msgstr "Ví dụ"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3146976\n"
-"13\n"
+"04060103.xhp\n"
+"par_id3158426\n"
+"421\n"
"help.text"
-msgid "More <<"
-msgstr "Nhiều <<"
+msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
+msgstr "Tính lãi suất hàng năm khi có lãi suất danh nghĩa 5,25% và trả hàng quý."
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3149664\n"
-"14\n"
+"04060103.xhp\n"
+"par_id3148927\n"
+"422\n"
"help.text"
-msgid "Hides the additional options."
-msgstr "Ẩn các tùy chọn bổ sung."
+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> trả về 0.053543 hoặc 5.3534%."
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"bm_id3149998\n"
"help.text"
-msgid "HOUR"
-msgstr "HOUR"
+msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
+msgstr "<bookmark_value>calculating;khấu hao hạ cấp số cộng</bookmark_value><bookmark_value>khấu hao hạ cấp số cộng</bookmark_value><bookmark_value>khấu hao;hạ cấp số cộng</bookmark_value><bookmark_value>hàm DDB</bookmark_value>"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"bm_id3154725\n"
+"04060103.xhp\n"
+"hd_id3149998\n"
+"99\n"
"help.text"
-msgid "<bookmark_value>HOUR function</bookmark_value>"
-msgstr "<bookmark_value>hàm HOUR</bookmark_value>"
+msgid "DDB"
+msgstr "DDB"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"hd_id3154725\n"
-"96\n"
+"04060103.xhp\n"
+"par_id3159190\n"
+"100\n"
"help.text"
-msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
-msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">Hàm HOUR</link></variable>"
+msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA\">Trả về khấu hao của một tài sản trong một thời kỳ đã ghi rõ, dùng phương pháp giảm cấp số cộng.</ahelp>"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3149747\n"
-"97\n"
+"04060103.xhp\n"
+"par_id3152361\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
-msgstr "<ahelp hid=\"HID_FUNC_STUNDE\">Trả về giờ (tiếng) trong một giá trị thời gian đã cho.</ahelp> Giờ được trả về dưới dạng một số nguyên nằm giữa 0 và 23."
+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 "Hãy dùng dạng khấu hao này nếu bạn cần thiết một giá trị khấu hao đầu tiên cao hơn như trái ngược với phương pháp khấu hao tuyến tính. Giá trị khấu hao cứ giảm sau mỗi kỳ, và thường được dùng đối với các tài sản mất giá trong một thời gian ngắn sau khi mua (v.d. chiếc xe, máy tính). Lưu ý: giá trị sổ sách không bao giờ bằng không theo cách tính này."
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"hd_id3149338\n"
-"98\n"
+"04060103.xhp\n"
+"hd_id3156038\n"
+"102\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3150637\n"
-"99\n"
-"help.text"
-msgid "HOUR(Number)"
-msgstr "HOUR(Số)"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3147547\n"
-"100\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
-msgstr "<emph>Số</emph> là một giá trị thời gian dạng thập lục, cho đó cần trả về phần giờ."
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"hd_id3153264\n"
-"101\n"
-"help.text"
-msgid "Examples"
-msgstr "Ví dụ"
-
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3159215\n"
+"04060103.xhp\n"
+"par_id3166452\n"
"103\n"
"help.text"
-msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
-msgstr "<item type=\"input\">=HOUR(NOW())</item> trả về giờ (không có phút) hiện thời."
+msgid "DDB(Cost; Salvage; Life; Period; Factor)"
+msgstr "DDB(Cost; Salvage; Life; Period; Factor)"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3145152\n"
+"04060103.xhp\n"
+"par_id3153237\n"
"104\n"
"help.text"
-msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
-msgstr "<item type=\"input\">=HOUR(C4)</item> trả về 17 nếu nội dung của ô C4 = <item type=\"input\">17:20:00</item>."
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "<emph>Cost</emph> (Chi phí) xác định giá mua đầu tiên của một tài sản."
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3154188\n"
+"04060103.xhp\n"
+"par_id3149787\n"
"105\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part One"
-msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 1"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3152871\n"
-"help.text"
-msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
-msgstr "<bookmark_value>phần bổ trợ; hàm phân tích</bookmark_value><bookmark_value>hàm phân tích</bookmark_value>"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "<emph>Salvage</emph> (Giá trị thanh lý) xác định giá trị của một tài sản ở kết thúc của kỳ hạn."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3152871\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3152945\n"
+"106\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part One"
-msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 1"
+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> là số kỳ thời gian (ví dụ, năm hay quý) xác định tài sản dùng được bao lâu."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149873\n"
-"102\n"
+"04060103.xhp\n"
+"par_id3149736\n"
+"107\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
-msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Hàm chuyển đổi chung BASIS\">Hàm chuyển đổi chung BASIS</link>"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr "<emph>Period</emph> trạng thái từng kì của giá trị sẽ được tính."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3145324\n"
-"5\n"
+"04060103.xhp\n"
+"par_id3150243\n"
+"108\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Hàm phân tích Phần 2\">Hàm phân tích Phần 2</link>"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr "<emph>Factor</emph> (hệ số), tùy chọn, là hệ số theo đó giảm khấu hao. Không nhập giá trị thì hệ số mặc định là 2."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3155751\n"
-"156\n"
+"04060103.xhp\n"
+"hd_id3159274\n"
+"109\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
-msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Trở về Toàn cảnh\">Trở về Toàn cảnh</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"bm_id3153074\n"
+"04060103.xhp\n"
+"par_id3152882\n"
+"110\n"
"help.text"
-msgid "<bookmark_value>Bessel functions</bookmark_value>"
-msgstr "<bookmark_value>hàm Bessel</bookmark_value>"
+msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
+msgstr "Một hệ thống máy tính được mua với giá trị đầu tiên 75.000 đơn vị tiền tệ. Nó sẽ bị khấu hao hàng tháng trong kỳ hạn 5 năm. Giá trị cuối cùng sẽ là 1 đơn vị tiền tệ. Hệ số là 2."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153334\n"
+"04060103.xhp\n"
+"par_id3154106\n"
"111\n"
"help.text"
-msgid "BESSELI"
-msgstr "BESSELI"
+msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
+msgstr "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1.721,81 đơn vị tiền tệ. Vì vậy, khấu hao giảm đôi trong tháng thứ nhất sau khi mua là 1.721,81 đơn vị tiền tệ."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153960\n"
-"112\n"
+"04060103.xhp\n"
+"bm_id3149962\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Tính hàm Bessel đã sửa đổi.</ahelp>"
+msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
+msgstr "<bookmark_value>tính;khấu hao hạ cấp số nhân</bookmark_value><bookmark_value>khấu hao hạ cấp số nhân</bookmark_value><bookmark_value>khấu hao;hạ cấp số nhân</bookmark_value><bookmark_value>hàm DB</bookmark_value>"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3150392\n"
+"04060103.xhp\n"
+"hd_id3149962\n"
"113\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "DB"
+msgstr "DB"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3147295\n"
+"04060103.xhp\n"
+"par_id3148989\n"
"114\n"
"help.text"
-msgid "BESSELI(X; N)"
-msgstr "BESSELI(X; N)"
+msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the fixed-declining balance method.</ahelp>"
+msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151338\n"
+"04060103.xhp\n"
+"par_id3156213\n"
"115\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
+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 "Dạng khấu hao này được dùng nếu bạn muốn có một giá trị khấu hao cao hơn ở đầu của khoảng khấu hao (như trái ngược với khấu hao tuyến tính). Giá trị khấu hao bị giảm trong từng kỳ khấu hao theo khấu hao đã bị trừ khỏi giá đầu tiên."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151392\n"
+"04060103.xhp\n"
+"hd_id3149807\n"
"116\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> là bậc của hàm Bessel"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153027\n"
-"103\n"
-"help.text"
-msgid "BESSELJ"
-msgstr "BESSELJ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153015\n"
-"104\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Tính hàm Bessel (hàm trụ).</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3146884\n"
-"105\n"
-"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150032\n"
-"106\n"
-"help.text"
-msgid "BESSELJ(X; N)"
-msgstr "BESSELJ(X; N)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150378\n"
-"107\n"
-"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145638\n"
-"108\n"
-"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> là bậc của hàm Bessel"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149946\n"
+"04060103.xhp\n"
+"par_id3153349\n"
"117\n"
"help.text"
-msgid "BESSELK"
-msgstr "BESSELK"
+msgid "DB(Cost; Salvage; Life; Period; Month)"
+msgstr "DB(Cost; Salvage; Life; Period; Month)"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3159122\n"
+"04060103.xhp\n"
+"par_id3148462\n"
"118\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Tính hàm Bessel đã sửa đổi.</ahelp>"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Giá</emph> là giá đầu tiên của một tài sản."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3150650\n"
+"04060103.xhp\n"
+"par_id3148658\n"
"119\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Thanh_lý</emph> là giá trị của một tài sản khi kết thúc thời kỳ khấu hao."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149354\n"
+"04060103.xhp\n"
+"par_id3145371\n"
"120\n"
"help.text"
-msgid "BESSELK(X; N)"
-msgstr "BESSELK(X; N)"
+msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
+msgstr "<emph>Life</emph> (đời sống) xác định thời kỳ trong đó một tài sản bị khấu hao."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150481\n"
+"04060103.xhp\n"
+"par_id3154608\n"
"121\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
+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>Period</emph> (Kỳ) là chiều dài của mỗi thời kỳ. Chiều dài phải được nhập theo cùng một đơn vị ngày tháng với thời kỳ khấu hao."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150024\n"
+"04060103.xhp\n"
+"par_id3150829\n"
"122\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> là bậc của hàm Bessel"
+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>Month</emph> (Tháng), tùy chọn, biểu hiện số tháng trong năm khấu hao thứ nhất. Không xác định riêng thì giá trị mặc định là 12."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3145828\n"
+"04060103.xhp\n"
+"hd_id3151130\n"
"123\n"
"help.text"
-msgid "BESSELY"
-msgstr "BESSELY"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3146877\n"
+"04060103.xhp\n"
+"par_id3156147\n"
"124\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Tính hàm Bessel đã sửa đổi.</ahelp>"
+msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
+msgstr "Một hệ thống máy tính có giá đầu tiên 25.000 đơn vị tiền tệ sẽ bị khấu hao trong một khoảng ba năm. Giá trị thanh lý sẽ là 1.000 đơn vị tiền tệ. Mỗi kỳ là 30 ngày."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3146941\n"
+"04060103.xhp\n"
+"par_id3149513\n"
"125\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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 đơn vị tiền tệ"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148884\n"
+"04060103.xhp\n"
+"par_id3159242\n"
"126\n"
"help.text"
-msgid "BESSELY(X; N)"
-msgstr "BESSELY(X; N)"
+msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
+msgstr "Khấu hao giảm cố định của hệ thống máy tính đã mua là 1.075,00 đơn vị tiền tệ."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3147475\n"
-"127\n"
+"04060103.xhp\n"
+"bm_id3153948\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
+msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
+msgstr "<bookmark_value>hàm IRR</bookmark_value><bookmark_value>tính;tỷ suất lợi tức nội bộ, tiền trả định kỳ</bookmark_value><bookmark_value>tỷ suất lợi tức nội bộ;tiền trả định kỳ</bookmark_value>"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3147421\n"
+"04060103.xhp\n"
+"hd_id3153948\n"
"128\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph> là bậc của hàm Bessel"
-
-#: 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>hàm BIN2DEC</bookmark_value><bookmark_value>chuyển đổi;số nhị phân sang số thập phân</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153034\n"
-"17\n"
-"help.text"
-msgid "BIN2DEC"
-msgstr "BIN2DEC"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3144744\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Kết quả là số thập phân cho số nhị phân được nhập vào.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145593\n"
-"19\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149726\n"
-"20\n"
-"help.text"
-msgid "BIN2DEC(Number)"
-msgstr "BIN2DEC(Số)"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150142\n"
-"21\n"
-"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là một số nhị phân. Số này có thể chứa nhiều nhất 10 lần số (bit). Bit quan trọng nhất là bit dấu (+/-). Số âm được nhập dưới dạng phần bù của hai."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149250\n"
-"22\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145138\n"
-"23\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
-msgstr "<item type=\"input\">=BIN2DEC(1100100)</item> trả về 100."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149954\n"
-"help.text"
-msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm BIN2HEX</bookmark_value><bookmark_value>chuyển đổi;số nhị phân sang số thập lục</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149954\n"
-"24\n"
-"help.text"
-msgid "BIN2HEX"
-msgstr "BIN2HEX"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148585\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">Kết quả là số thập lục cho số nhị phân được nhập vào.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153936\n"
-"26\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148753\n"
-"27\n"
-"help.text"
-msgid "BIN2HEX(Number; Places)"
-msgstr "BIN2HEX(Số; Lần_số)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155255\n"
-"28\n"
-"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là một số nhị phân. Số này có thể chứa nhiều nhất 10 lần số (bit). Bit quan trọng nhất là bit dấu (+/-). Số âm được nhập dưới dạng phần bù của hai."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150860\n"
-"29\n"
-"help.text"
-msgid "Places means the number of places to be output."
-msgstr "Lần_số là số lần số trong số kết xuất."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155829\n"
-"30\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149686\n"
-"31\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
-msgstr "<item type=\"input\">=BIN2HEX(1100100;6)</item> trả về 000064."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3153332\n"
-"help.text"
-msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm BIN2OCT</bookmark_value><bookmark_value>chuyển đổi;số nhị phân sang số bát phân</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153332\n"
-"9\n"
-"help.text"
-msgid "BIN2OCT"
-msgstr "BIN2OCT"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155951\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> Kết quả là số bát phân cho số nhị phân được nhập vào.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153001\n"
-"11\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3154508\n"
-"12\n"
-"help.text"
-msgid "BIN2OCT(Number; Places)"
-msgstr "BIN2OCT(Số; Lần_số)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153567\n"
-"13\n"
-"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là một số nhị phân. Số này có thể chứa nhiều nhất 10 lần số (bit). Bit quan trọng nhất là bit dấu (+/-). Số âm được nhập dưới dạng phần bù của hai."
-
-#: 04060115.xhp
-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>Lần_số</emph> là số lần số trong số kết xuất."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150128\n"
-"15\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153733\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
-msgstr "<item type=\"input\">=BIN2OCT(1100100;4)</item> trả về 0144."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3150014\n"
-"help.text"
-msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm DELTA</bookmark_value><bookmark_value>nhân ra;các số bằng nhau</bookmark_value>"
+msgid "IRR"
+msgstr "IRR"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3150014\n"
+"04060103.xhp\n"
+"par_id3143282\n"
"129\n"
"help.text"
-msgid "DELTA"
-msgstr "DELTA"
+msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr "<ahelp hid=\"HID_FUNC_IKV\">Tính tỷ suất lợi tức nội bộ của một đầu tư nào đó.</ahelp> Các giá trị đại diện giá trị luồng tiền mặt sau mỗi khoảng thời gian: ít nhất một giá trị phải là số âm (tiền trả), và ít nhất một giá trị phải là số dương (lợi tức)."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148760\n"
+"04060103.xhp\n"
+"hd_id3150599\n"
"130\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">Kết quả là Đúng (1) nếu cả hai số (được gửi dạng đối số) bằng nhau, không thì Sai (0).</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3155435\n"
+"04060103.xhp\n"
+"par_id3155427\n"
"131\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "IRR(Values; Guess)"
+msgstr "IRR(Values; Guess)"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3145247\n"
+"04060103.xhp\n"
+"par_id3144758\n"
"132\n"
"help.text"
-msgid "DELTA(Number1; Number2)"
-msgstr "DELTA(Số1; Số2)"
+msgid "<emph>Values</emph> represents an array containing the values."
+msgstr "<emph>Values</emph> (các giá trị) đại diện một mảng chứa các giá trị."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149002\n"
+"04060103.xhp\n"
+"par_id3149233\n"
"133\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+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> (đoán), tùy chọn, là giá trị ước lượng. Một phương pháp lặp đi lặp lại được dùng để tính tỷ suất lợi tức nội bộ. Nếu có thể cung cấp vài giá trị thì nên cung cấp một ước lượng ban đầu để cho phép lặp lại."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151020\n"
+"04060103.xhp\n"
+"hd_id3151258\n"
"134\n"
"help.text"
-msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3157971\n"
-"help.text"
-msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm DEC2BIN</bookmark_value><bookmark_value>chuyển đổi;số thập phân sang số nhị phân</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3157971\n"
-"55\n"
-"help.text"
-msgid "DEC2BIN"
-msgstr "DEC2BIN"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153043\n"
-"56\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\">Kết quả là số nhị phân cho số thập phân được nhập vào (giữa -512 và +512).</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145349\n"
-"57\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150569\n"
-"58\n"
-"help.text"
-msgid "DEC2BIN(Number; Places)"
-msgstr "DEC2BIN(Số; Lần_số)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148768\n"
-"59\n"
-"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
-msgstr "<emph>Số</emph> là một số thập phân. Nếu Số là âm, thì hàm trả về một số nhị phân có 10 ký tự. Bit quan trọng nhất là bit dấu (+/-); chín bit khác trả về giá trị."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149537\n"
-"60\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150265\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150662\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
-msgstr "<item type=\"input\">=DEC2BIN(100;8)</item> trả về 01100100."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149388\n"
-"help.text"
-msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm DEC2HEX</bookmark_value><bookmark_value>chuyển đổi;số thập phân sang số thập lục</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149388\n"
-"71\n"
-"help.text"
-msgid "DEC2HEX"
-msgstr "DEC2HEX"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149030\n"
-"72\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Kết quả là số thập lục cho số thập phân được nhập vào.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150691\n"
-"73\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147535\n"
-"74\n"
-"help.text"
-msgid "DEC2HEX(Number; Places)"
-msgstr "DEC2HEX(Số; Lần_số)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152820\n"
-"75\n"
-"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
-msgstr "<emph>Số</emph> là một số thập phân. Nếu Số là âm, thì hàm trả về một số thập lục có 10 ký tự (40 bit). Bit quan trọng nhất là bit dấu (+/-); 39 bit khác trả về giá trị."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153221\n"
-"76\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154869\n"
-"77\n"
-"help.text"
msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150476\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
-msgstr "<item type=\"input\">=DEC2HEX(100;4)</item> trả về 0064."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3154948\n"
-"help.text"
-msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm DEC2OCT</bookmark_value><bookmark_value>chuyển đổi;số thập phân sang số bát phân</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154948\n"
-"63\n"
-"help.text"
-msgid "DEC2OCT"
-msgstr "DEC2OCT"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153920\n"
-"64\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">Kết quả là số bát phân cho số thập phân được nhập vào..</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153178\n"
-"65\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148427\n"
-"66\n"
-"help.text"
-msgid "DEC2OCT(Number; Places)"
-msgstr "DEC2OCT(Số; Lần_số)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155991\n"
-"67\n"
-"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
-msgstr "<emph>Số</emph> là một số thập phân. Nếu Số là âm, thì hàm trả về một số bát phân có 10 ký tự (30 bit). Bit quan trọng nhất là bit dấu (+/-); 29 bit khác trả về giá trị."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152587\n"
-"68\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147482\n"
-"69\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3154317\n"
-"70\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
-msgstr "<item type=\"input\">=DEC2OCT(100;4)</item> trả về 0144."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3083446\n"
-"help.text"
-msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>hàm ERF</bookmark_value><bookmark_value>tích phân lỗi Gauss</bookmark_value>"
+msgstr "Ví dụ"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3083446\n"
+"04060103.xhp\n"
+"par_id3150630\n"
"135\n"
"help.text"
-msgid "ERF"
-msgstr "ERF"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150381\n"
-"136\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">Trả về các giá trị của tích phân lỗi Gauss.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152475\n"
-"137\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3163824\n"
-"138\n"
-"help.text"
-msgid "ERF(LowerLimit; UpperLimit)"
-msgstr "ERF(Giới_hạn_trên; Giới_hạn_dưới)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149715\n"
-"139\n"
-"help.text"
-msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
-msgstr "<emph>Giới_hạn_dưới</emph> là giới hạn dưới của tích phân."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156294\n"
-"140\n"
-"help.text"
-msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
-msgstr "<emph>Giới_hạn_trên</emph> vẫn còn tùy chọn. Nó là giới hạn trên của tích phân. Không đưa ra giá trị này thì phép tính xảy ra giữa 0 và giới hạn dưới đã ghi rõ."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154819\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152974\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
-msgstr "<item type=\"input\">=ERF(0;1)</item> trả về 0.842701."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3145082\n"
-"help.text"
-msgid "<bookmark_value>ERFC function</bookmark_value>"
-msgstr "<bookmark_value>hàm ERFC</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145082\n"
-"143\n"
-"help.text"
-msgid "ERFC"
-msgstr "ERFC"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149453\n"
-"144\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Trả về các giá trị bù của tích phân lỗi Gauss nằm giữa x và vô hạn.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155839\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153220\n"
-"146\n"
-"help.text"
-msgid "ERFC(LowerLimit)"
-msgstr "ERFC(Giới_hạn_dưới)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147620\n"
-"147\n"
-"help.text"
-msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
-msgstr "<emph>Giới_hạn_dưới</emph> là giới hạn dưới của tích phân."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3146861\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156102\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
-msgstr "<item type=\"input\">=ERFC(1)</item> trả về 0.157299."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3152927\n"
-"help.text"
-msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
-msgstr "<bookmark_value>hàm GESTEP</bookmark_value><bookmark_value>số;lớn hơn hay bằng</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152927\n"
-"150\n"
-"help.text"
-msgid "GESTEP"
-msgstr "GESTEP"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150763\n"
-"151\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">Kết quả là 1 nếu <item type=\"literal\">Số</item> lớn hơn hay bằng với <item type=\"literal\">Bước</item>.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150879\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145212\n"
-"153\n"
-"help.text"
-msgid "GESTEP(Number; Step)"
-msgstr "GESTEP(Số; Bước)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153275\n"
-"154\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156132\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
-msgstr "<item type=\"input\">=GESTEP(5;1)</item> trả về 1."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3147276\n"
-"help.text"
-msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm HEX2BIN</bookmark_value><bookmark_value>chuyển đổi;số thập lục sang số nhị phân</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147276\n"
-"79\n"
-"help.text"
-msgid "HEX2BIN"
-msgstr "HEX2BIN"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150258\n"
-"80\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">Kết quả là số nhị phân cho số thập lục được nhập vào.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3156117\n"
-"81\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155847\n"
-"82\n"
-"help.text"
-msgid "HEX2BIN(Number; Places)"
-msgstr "HEX2BIN(Số; Lần_số)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152810\n"
-"83\n"
-"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là một số thập lục. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153758\n"
-"84\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154052\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156002\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
-msgstr "<item type=\"input\">=HEX2BIN(64;8)</item> trả về 01100100."
+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 "Giả sử nội dung ô là A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> và A4=<item type=\"input\">1000</item>, công thức <item type=\"input\">=IRR(A1:A4)</item> trả về kết quả 80,24%."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"bm_id3154742\n"
+"04060103.xhp\n"
+"bm_id3151012\n"
"help.text"
-msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm HEX2DEC</bookmark_value><bookmark_value>chuyển đổi;số thập lục sang số thập phân</bookmark_value>"
+msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
+msgstr "<bookmark_value>tính; lãi suất cho phần trả mỗi lần thanh toán chưa thay đổi</bookmark_value><bookmark_value>lãi suất cho phần trả mỗi lần thanh toán chưa thay đổi</bookmark_value><bookmark_value>hàm ISPMT</bookmark_value>"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3154742\n"
-"87\n"
+"04060103.xhp\n"
+"hd_id3151012\n"
+"314\n"
"help.text"
-msgid "HEX2DEC"
-msgstr "HEX2DEC"
+msgid "ISPMT"
+msgstr "ISPMT"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153626\n"
-"88\n"
+"04060103.xhp\n"
+"par_id3148693\n"
+"315\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\">Kết quả là số thập phân cho số thập lục được nhập vào.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">Tính cấp tiền lãi cho các phần trả thanh toán mỗi lần.</ahelp>"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3143233\n"
-"89\n"
+"04060103.xhp\n"
+"hd_id3154661\n"
+"316\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149293\n"
-"90\n"
-"help.text"
-msgid "HEX2DEC(Number)"
-msgstr "HEX2DEC(Số)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3159176\n"
-"91\n"
-"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là một số thập lục. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154304\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3146093\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
-msgstr "<item type=\"input\">=HEX2DEC(64)</item> trả về 100."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149750\n"
-"help.text"
-msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm HEX2OCT</bookmark_value><bookmark_value>chuyển đổi;số thập lục sang số bát phân</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149750\n"
-"94\n"
-"help.text"
-msgid "HEX2OCT"
-msgstr "HEX2OCT"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153983\n"
-"95\n"
+"04060103.xhp\n"
+"par_id3146070\n"
+"317\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\">Kết quả là số bát phân cho số thập lục được nhập vào.</ahelp>"
+msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
+msgstr "ISPMT(Rate; Period; TotalPeriods; Invest)"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3145660\n"
-"96\n"
+"04060103.xhp\n"
+"par_id3148672\n"
+"318\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Rate</emph> sets the periodic interest rate."
+msgstr "<emph>Rate</emph> (tỷ lệ) đặt lãi suất định kỳ."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151170\n"
-"97\n"
+"04060103.xhp\n"
+"par_id3145777\n"
+"319\n"
"help.text"
-msgid "HEX2OCT(Number; Places)"
-msgstr "HEX2OCT(Số; Lần_số)"
+msgid "<emph>Period</emph> is the number of installments for calculation of interest."
+msgstr "<emph>Period</emph> (kỳ) là số phần trả mỗi lần để tính tiền lãi."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3152795\n"
-"98\n"
+"04060103.xhp\n"
+"par_id3153678\n"
+"320\n"
"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Số</emph> là một số thập lục. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
+msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
+msgstr "<emph>TotalPeriods</emph> là tổng số kỳ cần trả tiền mỗi lần."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149204\n"
-"99\n"
+"04060103.xhp\n"
+"par_id3159390\n"
+"321\n"
"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
+msgid "<emph>Invest</emph> is the amount of the investment."
+msgstr "<emph>Invest</emph> là số tiền đã đầu tư."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153901\n"
-"100\n"
+"04060103.xhp\n"
+"hd_id3156162\n"
+"322\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3159341\n"
-"101\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
-msgstr "<item type=\"input\">=HEX2OCT(64;4)</item> trả về 0144."
-
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete"
-msgstr "Xoá"
-
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"hd_id3150276\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Xoá\">Xoá</link>"
-
-#: 12090300.xhp
-#, fuzzy
-msgctxt ""
-"12090300.xhp\n"
-"par_id3159400\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Xoá bảng DataPilot đã chọn.</ahelp>"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Style"
-msgstr "Kiểu dáng trang"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"hd_id3157910\n"
-"1\n"
-"help.text"
-msgid "Page Style"
-msgstr "Kiểu dáng trang"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"par_id3156023\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
-msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Mở một hộp thoại trong đó bạn có thể xác định diện mạo của tất cả các trang trong tài liệu.</ahelp></variable>"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"tit\n"
-"help.text"
-msgid "SECOND"
-msgstr "SECOND"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"bm_id3159390\n"
-"help.text"
-msgid "<bookmark_value>SECOND function</bookmark_value>"
-msgstr "<bookmark_value>hàm SECOND</bookmark_value>"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3159390\n"
-"86\n"
-"help.text"
-msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
-msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">Hàm SECOND</link></variable>"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3148974\n"
-"87\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
-msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">Trả về phần giây của giá trị thời gian đã cho.</ahelp> Phần giây được trả về dưới dạng một số nguyên nằm giữa 0 và 59."
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3154362\n"
-"88\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3148407\n"
-"89\n"
-"help.text"
-msgid "SECOND(Number)"
-msgstr "SECOND(Số)"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3155904\n"
-"90\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
-msgstr "<emph>Số</emph> là một giá trị thời gian, cho đó cần trả về phần giây."
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3149992\n"
-"91\n"
-"help.text"
-msgid "Examples"
msgstr "Ví dụ"
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3153350\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
-msgstr "<item type=\"input\">=SECOND(NOW())</item> trả về phần giây của thời gian hiện thời."
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3150831\n"
-"94\n"
-"help.text"
-msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
-msgstr "<item type=\"input\">=SECOND(C4)</item> trả về 17 nếu nội dung của ô C4 = <item type=\"input\">12:20:17</item>."
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column Break"
-msgstr "Ngắt cột"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"bm_id3151384\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; xoá chỗ ngắt hàng</bookmark_value><bookmark_value>xoá;chỗ ngắt hàng thủ công</bookmark_value><bookmark_value>chỗ ngắt hàng; xoá</bookmark_value>"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"hd_id3151384\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
-msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Ngắt cột\">Ngắt cột</link>"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"par_id3154124\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">Xoá một ngắt cột tự làm nằm bên trái của ô đang làm việc.</ahelp>"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"par_id3145173\n"
-"3\n"
-"help.text"
-msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
-msgstr "Đặt con trỏ trong ô nằm bên phải ngắt cột (một đường nằm dọc) và chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt cột</emph>. Đường ngắt cột sẽ bị xoá đi."
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide Details"
-msgstr "Ẩn chi tiết"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
-msgstr "<bookmark_value>trang tính; ẩn chi tiết</bookmark_value>"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
-msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Ẩn chi tiết\">Ẩn chi tiết</link>"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"par_id3154515\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
-msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Ẩn chi tiết về hàng/cột đã nhóm lại mà chứa con trỏ. Để ẩn tất cả các hàng/cột đã nhóm lại, lựa chọn bảng phác thảo, sau đó chọn lệnh này.</ahelp>"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"par_id3153252\n"
-"3\n"
-"help.text"
-msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data -Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
-msgstr "Để hiển thị lại tất cả các nhóm bị ẩn, lựa chọn bảng đã phác thảo, sau đó chọn lệnh <emph>Dữ liệu > Phác thảo ></emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Hiện chi tiết\"><emph>Hiện chi tiết</emph></link>."
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh"
-msgstr "Cập nhật"
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"hd_id3151385\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
-msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Cập nhật\">Cập nhật</link>"
-
-#: 12090200.xhp
-#, fuzzy
-msgctxt ""
-"12090200.xhp\n"
-"par_id3149456\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Cập nhật bảng DataPilot.</ahelp>"
-
-#: 12090200.xhp
-#, fuzzy
-msgctxt ""
-"12090200.xhp\n"
-"par_id3150400\n"
-"3\n"
-"help.text"
-msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr "Sau khi bạn nhập một bảng tính Excel chứa một bảng Pivot, hãy nhấn vào bảng đó, sau đó chọn mục trình đơn <emph>Dữ liệu > DataPilot > Cập nhật</emph>."
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Ranges"
-msgstr "Phạm vi in"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"hd_id3154013\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
-msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Phạm vi in\">Phạm vi in</link>"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"par_id3155855\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
-msgstr "<ahelp hid=\".\">Quản lý các phạm vi in. Chỉ những ô nằm bên trong các phạm vi in đều sẽ được in ra.</ahelp>"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"par_id3146119\n"
-"4\n"
-"help.text"
-msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
-msgstr "Nếu bạn không tự xác định phạm vi in, Calc tự động gán một phạm vi in bao gồm tất cả các ô không rỗng."
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"hd_id3154729\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Sửa\">Sửa</link>"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"tit\n"
-"help.text"
-msgid "EOMONTH"
-msgstr "EOMONTH"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"bm_id3150991\n"
-"help.text"
-msgid "<bookmark_value>EOMONTH function</bookmark_value>"
-msgstr "<bookmark_value>hàm EOMONTH</bookmark_value>"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150991\n"
-"231\n"
-"help.text"
-msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
-msgstr "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">Hàm EOMONTH</link></variable>"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3152766\n"
-"232\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Trả về ngày tháng của ngày cuối cùng của một tháng cách <emph>ngày bắt đầu</emph> mấy tháng.</ahelp>"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150597\n"
-"233\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3150351\n"
-"234\n"
-"help.text"
-msgid "EOMONTH(StartDate; Months)"
-msgstr "EOMONTH(Ngày_đầu; Tháng)"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3146787\n"
-"235\n"
-"help.text"
-msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
-msgstr "<emph>Ngày_đầu</emph> là ngày bắt đầu phép tính, một ngày tháng."
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3155615\n"
-"236\n"
-"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
-msgstr "<emph>Tháng</emph> là số các tháng nằm trước (âm) hay sau (dương) ngày bắt đầu."
-
-#: func_eomonth.xhp
-#, fuzzy
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3156335\n"
-"237\n"
-"help.text"
-msgid "Example"
-msgstr "#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nVí dụ"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3154829\n"
-"238\n"
-"help.text"
-msgid "What is the last day of the month that falls 6 months after September 14 2001?"
-msgstr "Tháng nằm 6 tháng sau ngày 15, tháng 9/2001 kết thúc vào ngày nào?"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3156143\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
-msgstr ""
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3156144\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
-msgstr ""
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "Phần đầu và phần chân"
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"hd_id3145251\n"
-"1\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "Phần đầu và phần chân"
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"par_id3151073\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
-msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Cho phép bạn đặt và định dạng phần đầu và phần chân của trang.</ahelp></variable>"
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"par_id3153415\n"
-"3\n"
-"help.text"
-msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
-msgstr "Hộp thoại<emph> Đầu/Chân trang </emph>chứa các thẻ để bạn đặt phần đầu và phần chân trang. Ngoài ra còn chia ra các thẻ để bạn chỉnh phần đầu và chân của trang phải và trang trái một cách riêng rẽ, nếu tuỳ chọn <emph>Cùng nội dung bên trái/phải</emph> không được chọn trong hộp thoại <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Kiểu dáng trang</link>."
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Hàm Thống Kê"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"bm_id3153018\n"
-"help.text"
-msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
-msgstr "<bookmark_value>hàm thông tin</bookmark_value><bookmark_value>Trợ lý Hàm; thông tin</bookmark_value><bookmark_value>hàm; hàm thông tin</bookmark_value>"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"hd_id3153018\n"
-"1\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Hàm Thống Kê"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3157874\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
-msgstr "<variable id=\"statistiktext\">Phân loại này chứa các hàm <emph>Thống kê</emph>.</variable>"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149001\n"
-"9\n"
-"help.text"
-msgid "Some of the examples use the following data table:"
-msgstr "Một số mẫu ví dụ sử dụng bảng dữ liệu này:"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148775\n"
-"10\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145297\n"
-"11\n"
-"help.text"
-msgid "D"
-msgstr "D"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150661\n"
-"12\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153551\n"
-"13\n"
-"help.text"
-msgid "x value"
-msgstr "giá trị x"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147536\n"
-"14\n"
-"help.text"
-msgid "y value"
-msgstr "giá trị y"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153224\n"
-"15\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150475\n"
-"16\n"
-"help.text"
-msgid "-5"
-msgstr "-5"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3155367\n"
-"17\n"
-"help.text"
-msgid "-3"
-msgstr "-3"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149783\n"
-"18\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153181\n"
-"19\n"
-"help.text"
-msgid "-2"
-msgstr "-2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148429\n"
-"20\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152588\n"
-"21\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147483\n"
-"22\n"
-"help.text"
-msgid "-1"
-msgstr "-1"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3083443\n"
-"23\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149826\n"
-"24\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3163820\n"
-"25\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154816\n"
-"26\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149276\n"
-"27\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149267\n"
-"28\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156310\n"
-"29\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154639\n"
-"30\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145205\n"
-"31\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153276\n"
-"32\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150756\n"
-"33\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156095\n"
-"34\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152929\n"
-"35\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156324\n"
-"36\n"
-"help.text"
-msgid "The statistical functions are described in the following subsections."
-msgstr "Các hàm thống kê được diễn tả trong những phần con theo đây."
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150271\n"
-"37\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
-msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Hàm Thống kê trong Phần bổ trợ Phân tích\">Hàm Thống kê trong Phần bổ trợ Phân tích</link>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row Break"
-msgstr "Ngắt cột"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"bm_id3156326\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; xoá ngắt hàng</bookmark_value><bookmark_value>xoá;ngắt hàng tự làm</bookmark_value><bookmark_value>ngắt hàng; xoá</bookmark_value>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"hd_id3156326\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
-msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Ngắt hàng\">Ngắt hàng</link>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"par_id3154366\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteRowbreak\">Xoá ngắt hàng bên trên ô đang làm việc.</ahelp>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"par_id3151041\n"
-"3\n"
-"help.text"
-msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
-msgstr "Đặt con trỏ vào một ô ngay bên dưới ngắt hàng (một đường nằm ngang) và chọn <emph>Sửa > Xoá chỗ ngắt tự làm > Ngắt hàng</emph>. Đường ngắt hàng đã có sẽ bị xoá đi."
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Up"
-msgstr "Lên"
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"hd_id3147264\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
-msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Lên\">Lên</link>"
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"par_id3150793\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Điền nội dung ô dưới cùng trong phạm vi được chọn vào các ô khác cùng phạm vi.</ahelp>"
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"par_id3150447\n"
-"3\n"
-"help.text"
-msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
-msgstr "Nếu phạm vi đã chọn chỉ có 1 cột, nội dung của ô dưới cùng sẽ được chép sang các ô khác. Nếu có nhiều cột được chọn, nội dung của các ô dưới cùng sẽ được chép sang các ô được chọn ở trên nó."
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Bề cao hàng tối ưu"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"bm_id3148491\n"
-"help.text"
-msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
-msgstr "<bookmark_value>trang tính; bề cao hàng tối ưu</bookmark_value><bookmark_value>hàng; bề cao tối ưu</bookmark_value><bookmark_value>bề cao hàng tối ưu</bookmark_value>"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3148491\n"
-"1\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Bề cao hàng tối ưu"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3154758\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
-msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Xác định chiều cao hàng tối ưu cho những hàng đã chọn.</ahelp></variable> Chiều cao hàng tối ưu phụ thuộc vào kích cỡ phông chữ của ký tự lớn nhất trên hàng đó. Bạn có thể sử dụng các <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"đơn vị đo\">đơn vị đo</link> khác nhau."
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3154908\n"
-"3\n"
-"help.text"
-msgid "Add"
-msgstr "Thêm"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3151044\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
-msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Đặt thêm khoảng cách giữa ký tự lớn nhất trên một hàng và các biên giới của ô.</ahelp>"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3150439\n"
-"5\n"
-"help.text"
-msgid "Default value"
-msgstr "Giá trị mặc định"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3146984\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Phục hồi giá trị mặc định cho chiều cao hàng tối ưu.</ahelp>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Chèn tên"
-
-#: 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>phạm vi ô; chèn phạm vi đặt tên</bookmark_value><bookmark_value>chèn; phạm vi ô</bookmark_value>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153195\n"
-"1\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Chèn tên"
-
-#: 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\">Chèn một phạm vi ô đặt tên đã xác định vào vị trí hiện tại của con trỏ.</ahelp></variable>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3149412\n"
-"7\n"
-"help.text"
-msgid "You can only insert a cell area after having defined a name for the area."
-msgstr "Bạn chỉ có thể chèn một vùng ô một khi xác định một tên cho vùng đó."
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153160\n"
-"3\n"
-"help.text"
-msgid "Insert name"
-msgstr "Chèn tên"
-
-#: 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\">Liệt kê tất cả các vùng ô đã xác định. Nhấn đôi vào một mục nhập để chèn vùng đặt tên vào trang tính đang chỉnh sửa ở vị trí con trỏ hiện tại.</ahelp>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153418\n"
-"5\n"
-"help.text"
-msgid "Insert All"
-msgstr "Chèn tất cả"
-
-#: 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\">Chèn vào vị trí con trỏ hiện tại một danh sách tất cả các vùng đặt tên và tham chiếu ô tương ứng.</ahelp>"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove All Traces"
-msgstr "Bỏ mọi vết"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"bm_id3153088\n"
-"help.text"
-msgid "<bookmark_value>cells; removing traces</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; gỡ bỏ vết</bookmark_value>"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"hd_id3153088\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
-msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"Bỏ mọi vết\">Bỏ mọi vết</link>"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"par_id3151246\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Gỡ bỏ tất cả các mũi tên tìm vết khỏi bảng tính.</ahelp>"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Chọn bảng"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Chọn bảng"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"par_id3147265\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
-msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Chọn nhiều bảng.</ahelp></variable>"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3125863\n"
-"2\n"
-"help.text"
-msgid "Selected Sheets"
-msgstr "Bảng đã chọn"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"par_id3153969\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Liệt kê các bảng đang có trong tài liệu hiện thời. Để chọn một bảng, nhấn mũi tên lên xuống để di chuyển tới 1 bảng trong danh sách. Để chọn thêm 1 bảng nữa, giữ phím Ctrl trong khi nhấn phím mũi tên rồi nhấn phím cách. Để chọn nhiều bảng liên tiếp nhau, giữ Shift và dùng các phím mũi tên. </ahelp>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"tit\n"
-"help.text"
-msgid "TIMEVALUE"
-msgstr "TIMEVALUE"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"bm_id3146755\n"
-"help.text"
-msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
-msgstr "<bookmark_value>hàm TIMEVALUE</bookmark_value>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146755\n"
-"160\n"
-"help.text"
-msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
-msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">Hàm TIMEVALUE</link></variable>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3148502\n"
-"161\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">Hàm TIMEVALUE trả về số thời gian nội bộ từ một chuỗi văn bản nằm giữa nháy kép mà có thể hiển thị một định dạng mục nhập thời gian có thể dùng.</ahelp>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150794\n"
-"162\n"
-"help.text"
-msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
-msgstr "Số nội bộ được ngụ ý dạng thập phân là kết quả của hệ thống dữ liệu được dùng dưới $[officename] để tính mục nhập dữ liệu."
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id011920090347118\n"
-"help.text"
-msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
-msgstr "Nếu chuỗi văn bản có chứa năm, tháng, hoặc ngày, TIMEVALUE chỉ trả về phần lẻ thập phân của chuyển đổi."
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3150810\n"
-"163\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150823\n"
-"164\n"
-"help.text"
-msgid "TIMEVALUE(\"Text\")"
-msgstr "TIMEVALUE(\"Chuỗi\")"
-
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3152556\n"
-"165\n"
+"04060103.xhp\n"
+"par_id3149558\n"
+"323\n"
"help.text"
-msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
-msgstr "<emph>Chuỗi</emph> là một biểu thức thời gian hợp lệ mà phải được nhập vào giữa nháy kép."
+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 "Đối với một số tiền tin dụng 120.000 đơn vị tiền tệ trong thời kỳ 2 năm và phần trả mỗi tháng, tại lãi suất hàng năm 12%, tính số tiền lãi sau 1,5 năm."
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146815\n"
-"166\n"
+"04060103.xhp\n"
+"par_id3150949\n"
+"324\n"
"help.text"
-msgid "Examples"
-msgstr "Ví dụ"
+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 đơn vị tiền tệ. Tiền lãi hàng tháng sau 1,5 năm là 300 đơn vị tiền tệ."
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3146829\n"
-"167\n"
+"04060103.xhp\n"
+"par_id3146812\n"
+"426\n"
"help.text"
-msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
-msgstr "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> trả về 0,67. Theo định dạng Gi:Ph:Gy thì có 16:00:00."
+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=\"Tiếp tới Hàn Tài Chính Phần 2\">Hàm Tài Chính (Phần 2)</link>"
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3153632\n"
-"168\n"
+"04060103.xhp\n"
+"par_id3154411\n"
+"427\n"
"help.text"
-msgid "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
-msgstr "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> trả về 1. Nếu bạn sử dụng định dạng thời gian Gi:Ph:Gy, giá trị là 00:00:00."
+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=\"Tiếp tới Hàm Tài Chính Phần 3\">Hàm Tài Chính (Phần 3)</link>"
#: 04060104.xhp
msgctxt ""
@@ -17633,7 +8201,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -17642,7 +8210,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -17750,7 +8318,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17777,7 +8345,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
#: 04060104.xhp
msgctxt ""
@@ -17795,7 +8363,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17804,7 +8372,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060104.xhp
msgctxt ""
@@ -17822,7 +8390,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060104.xhp
msgctxt ""
@@ -17831,7 +8399,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17849,7 +8417,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17858,7 +8426,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060104.xhp
msgctxt ""
@@ -17917,7 +8485,6 @@ msgid "Value for \"Type\""
msgstr "Giá trị cho « Type »"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id8360850\n"
@@ -18019,7 +8586,7 @@ msgctxt ""
"hd_id5459456\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18088,7 +8655,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18205,7 +8772,7 @@ msgctxt ""
"151\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18285,7 +8852,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18388,7 +8955,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18467,7 +9034,7 @@ msgctxt ""
"58\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18546,7 +9113,7 @@ msgctxt ""
"66\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18617,7 +9184,7 @@ msgctxt ""
"234\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18704,7 +9271,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18784,7 +9351,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18863,7 +9430,7 @@ msgctxt ""
"90\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -18950,7 +9517,7 @@ msgctxt ""
"98\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -19029,7 +9596,7 @@ msgctxt ""
"106\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -19109,7 +9676,7 @@ msgctxt ""
"241\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -19180,7 +9747,7 @@ msgctxt ""
"115\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -19215,7 +9782,7 @@ msgctxt ""
"119\n"
"help.text"
msgid "N"
-msgstr "N"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -19268,7 +9835,7 @@ msgctxt ""
"124\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -19364,7 +9931,7 @@ msgctxt ""
"133\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060104.xhp
msgctxt ""
@@ -20120,8121 +10687,6709 @@ msgctxt ""
msgid "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
msgstr "<emph>Tham chiếu</emph> (danh sách các tùy chọn) là vị trí của ô cần xem xét. Nếu <emph>Tham chiếu</emph> là một phạm vi, ô sẽ di chuyển lên góc trên bên trái của phạm vi các ô. Nếu <emph>Tham chiếu</emph> bị thiếu, $[officename] Calc dùng vị trí của ô chứa công thức này. MS Excel dùng tham chiếu của ô chứa con trỏ."
-#: func_yearfrac.xhp
+#: 04060105.xhp
msgctxt ""
-"func_yearfrac.xhp\n"
+"04060105.xhp\n"
"tit\n"
"help.text"
-msgid "YEARFRAC"
-msgstr "YEARFRAC"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"bm_id3148735\n"
-"help.text"
-msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
-msgstr "<bookmark_value>hàm YEARFRAC</bookmark_value>"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3148735\n"
-"196\n"
-"help.text"
-msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
-msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">Hàm YEARFRAC</link></variable>"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3150899\n"
-"197\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> Kết quả là một số nằm giữa 0 và 1, đại diện phần của năm giữa <emph>Ngày_đầu</emph> và <emph>Ngày_cuối</emph>.</ahelp>"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3155259\n"
-"198\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155823\n"
-"199\n"
-"help.text"
-msgid "YEARFRAC(StartDate; EndDate; Basis)"
-msgstr "YEARFRAC(Ngày_đầu; Ngày_cuối; Cơ_bản)"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145144\n"
-"200\n"
-"help.text"
-msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
-msgstr "<emph>Ngày_đầu</emph> và <emph>Ngày_cuối</emph> là hai giá trị ngày tháng."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149954\n"
-"201\n"
-"help.text"
-msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
-msgstr "<emph>Cơ_bản</emph> được chọn trong danh sách các tùy chọn, và ngụ ý nên tính năm như thế nào."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3146847\n"
-"202\n"
-"help.text"
-msgid "Basis"
-msgstr "Cơ bản"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155956\n"
-"203\n"
-"help.text"
-msgid "Calculation"
-msgstr "Phép tính"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154502\n"
-"204\n"
-"help.text"
-msgid "0 or missing"
-msgstr "0 hay thiếu"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149877\n"
-"205\n"
-"help.text"
-msgid "US method (NASD), 12 months of 30 days each"
-msgstr "Phương pháp Mỹ (NASD), 12 tháng, mỗi tháng có 30 ngày"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3148766\n"
-"250\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154326\n"
-"206\n"
-"help.text"
-msgid "Exact number of days in months, exact number of days in year"
-msgstr "Số ngày chính xác trong tháng, số ngày chính xác trong năm"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145245\n"
-"251\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155620\n"
-"207\n"
-"help.text"
-msgid "Exact number of days in month, year has 360 days"
-msgstr "Số ngày chính xác trong tháng, năm có 360 ngày"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145297\n"
-"252\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3148394\n"
-"208\n"
-"help.text"
-msgid "Exact number of days in month, year has 365 days"
-msgstr "Số ngày chính xác trong tháng, năm có 365 ngày"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3151022\n"
-"253\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3150931\n"
-"209\n"
-"help.text"
-msgid "European method, 12 months of 30 days each"
-msgstr "Phương pháp Âu, có 12 tháng, mỗi tháng có 30 ngày"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3145626\n"
-"210\n"
-"help.text"
-msgid "Example"
-msgstr "Ví dụ"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149007\n"
-"211\n"
-"help.text"
-msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
-msgstr "Giữa ngày 2008-01-01 và 2008-07-01 có phần năm nào?"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154632\n"
-"212\n"
-"help.text"
-msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
-msgstr "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) trả về 0,50."
+msgid "Logical Functions"
+msgstr "Hàm Lôgic"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"bm_id3153484\n"
"help.text"
-msgid "Advanced Filter"
-msgstr "Lọc cấp cao"
+msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
+msgstr "<bookmark_value>hàm lôgic</bookmark_value><bookmark_value>Trợ lý Hàm; lôgic</bookmark_value><bookmark_value>hàm; hàm lôgic</bookmark_value>"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"hd_id3158394\n"
+"04060105.xhp\n"
+"hd_id3153484\n"
"1\n"
"help.text"
-msgid "Advanced Filter"
-msgstr "Lọc cấp cao"
+msgid "Logical Functions"
+msgstr "Hàm Lôgic"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"par_id3156281\n"
+"04060105.xhp\n"
+"par_id3149312\n"
"2\n"
"help.text"
-msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
-msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Xác định một bộ lọc cấp cao.</ahelp></variable>"
-
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
-
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"hd_id3153771\n"
-"25\n"
-"help.text"
-msgid "Read filter criteria from"
-msgstr "Đọc tiêu chuẩn lọc từ"
-
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"par_id3147426\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Hãy lựa chọn phạm vi đặt tên hay nhập phạm vi ô chứa những tiêu chuẩn lọc bạn muốn sử dụng.</ahelp>"
+msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
+msgstr "<variable id=\"logischtext\">Phân loại này chứa các hàm <emph>Lôgic</emph>.</variable>"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"hd_id3153188\n"
-"27\n"
+"04060105.xhp\n"
+"bm_id3147505\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Nhiều\">Nhiều</link>"
+msgid "<bookmark_value>AND function</bookmark_value>"
+msgstr "<bookmark_value>hàm AND</bookmark_value>"
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"hd_id3147505\n"
+"29\n"
"help.text"
-msgid "Trace Error"
-msgstr "Tìm vết lỗi"
+msgid "AND"
+msgstr "AND"
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"bm_id3153561\n"
+"04060105.xhp\n"
+"par_id3153959\n"
+"65\n"
"help.text"
-msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; tìm vết lỗi</bookmark_value><bookmark_value>tìm vết lỗi</bookmark_value><bookmark_value>tìm lỗi</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
+msgstr "<ahelp hid=\"HID_FUNC_UND\">Trả về TRUE (ĐÚNG) nếu tất cả các đối số là TRUE.</ahelp> Nếu một đối số là FALSE (SAI), hàm này trả về giá trị FALSE."
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"hd_id3153561\n"
-"1\n"
+"04060105.xhp\n"
+"par_id3146100\n"
+"66\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
-msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Tìm vết lỗi\">Tìm vết lỗi</link>"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgstr "Các đối số hoặc cũng là biểu thức lôgic (TRUE, 1<5, 2+3=7, B8<10) mà trả về giá trị lôgic, hoặc là mảng (A1:C3) chứa các giá trị lôgic."
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060105.xhp\n"
+"par_id3150538\n"
+"67\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Vẽ các mũi tên tìm vết tới tất cả các ô tiền lệ mà gây ra giá trị lỗi trong một ô đã chọn.</ahelp>"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "Khi một hàm đợi một giá trị riêng lẻ, mà bạn đã nhập một phạm vi ô, thì lấy giá trị từ phạm vi ô mà nằm trong cột hay hàng cũng chứa công thức."
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"par_id3149128\n"
+"68\n"
"help.text"
-msgid "Right"
-msgstr "Bên Phải"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "Nếu phạm vi đã nhập nằm ở ngoại cột hay hàng hiện thời của công thức, thì hàm trả về giá trị lỗi #VALUE!"
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"hd_id3153896\n"
-"1\n"
+"04060105.xhp\n"
+"hd_id3150374\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
-msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Bên phải\">Bên phải</link>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"par_id3153361\n"
-"2\n"
+"04060105.xhp\n"
+"par_id3159123\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Điền nội dung của ô ngoài cùng bên trái trong phạm vi vào các ô còn lại trong phạm vi đó.</ahelp>"
+msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"par_id3154684\n"
-"3\n"
+"04060105.xhp\n"
+"par_id3150038\n"
+"33\n"
"help.text"
-msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
-msgstr "Nếu một phạm vi chỉ có một hàng được chọn, nội dung của ô ngoài cùng bên trái sẽ được chép sang các ô còn lại. Nếu bạn đã chọn  một vài hàng, mỗi ô ngoài cùng bên trái sẽ được chép sang các ô còn lại bên phải nó."
+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> là các điều kiện cần kiểm tra. Mỗi điều kiện có thể là hoặc TRUE (ĐÚNG) hoặc FALSE (SAI). Nếu một phạm vi được nhập dạng tham số, hàm dùng giá trị của phạm vi mà nằm trong cột hay hàng hiện thời. Kết quả là TRUE nếu giá trị lôgic trong tất cả các ô bên trong phạm vi ô đó là TRUE."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"hd_id3149143\n"
+"34\n"
"help.text"
-msgid "Data field"
-msgstr "Trường dữ liệu"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090105.xhp
-#, fuzzy
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"bm_id7292397\n"
+"04060105.xhp\n"
+"par_id3153123\n"
+"35\n"
"help.text"
-msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
-msgstr "<bookmark_value>tính;Data Pilot</bookmark_value>"
+msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
+msgstr "Những giá trị lôgic của mục nhập 12<13; 14>12, và 7<6 cần được kiểm tra:"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3150871\n"
-"1\n"
+"04060105.xhp\n"
+"par_id3145632\n"
+"36\n"
"help.text"
-msgid "Data field"
-msgstr "Trường dữ liệu"
+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> returns SAI."
-#: 12090105.xhp
-#, fuzzy
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3154124\n"
-"16\n"
+"04060105.xhp\n"
+"par_id3149946\n"
+"60\n"
"help.text"
-msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
-msgstr "Nội dung của hộp thoại này là khác đối với các trường dữ liệu khác nhau trong vùng <emph>Dữ liệu</emph>, và các trường ngày tháng khác nhay trong vùng <emph>Hàng</emph> hay <emph>Cột</emph> của hộp thoại <link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot\">DataPilot</link>."
+msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
+msgstr "<item type=\"input\">=AND (FALSE;TRUE)</item> trả về FALSE."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3152596\n"
-"2\n"
+"04060105.xhp\n"
+"bm_id3149015\n"
"help.text"
-msgid "Subtotals"
-msgstr "Tổng phụ"
+msgid "<bookmark_value>FALSE function</bookmark_value>"
+msgstr "<bookmark_value>hàm FALSE</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3151113\n"
+"04060105.xhp\n"
+"hd_id3149015\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_PIVOTSUBT\">Hãy ghi rõ những tổng phụ cần tính.</ahelp>"
+msgid "FALSE"
+msgstr "FALSE"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3145366\n"
+"04060105.xhp\n"
+"par_id3149890\n"
"4\n"
"help.text"
-msgid "None"
-msgstr "Không có"
+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\">Trả về giá trị lôgic FALSE (SAI).</ahelp> Hàm FALSE() không yêu cầu đối số, và luôn luôn trả về giá trị lôgic FALSE (SAI)."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3152576\n"
+"04060105.xhp\n"
+"hd_id3146939\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Không tính tổng phụ.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3154012\n"
+"04060105.xhp\n"
+"par_id3150030\n"
"6\n"
"help.text"
-msgid "Automatic"
-msgstr "Tự động"
+msgid "FALSE()"
+msgstr "FALSE()"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3155856\n"
+"04060105.xhp\n"
+"hd_id3150697\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Tự động tính tổng phụ.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3155411\n"
+"04060105.xhp\n"
+"par_id3154842\n"
"8\n"
"help.text"
-msgid "User-defined"
-msgstr "Tự xác định"
+msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
+msgstr "<item type=\"input\">=FALSE()</item> trả về FALSE (SAI)"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3149581\n"
+"04060105.xhp\n"
+"par_id3147468\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Bật tùy chọn này, rồi nhấn vào kiểu tổng phụ cần tính, trong danh sách.</ahelp>"
-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3147124\n"
-"10\n"
-"help.text"
-msgid "Function"
-msgstr "Hàm"
-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3154490\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Nhấn vào kiểu tổng phụ cần tính. Tùy chọn này chỉ sẵn sàng nếu tùy chọn <emph>Tự xác định</emph> cũng được bật.</ahelp>"
-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3154944\n"
-"14\n"
-"help.text"
-msgid "Show elements without data"
-msgstr "Hiện phần tử không có dữ liệu"
+msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
+msgstr "<item type=\"input\">=NOT(FALSE())</item> trả về ĐÚNG"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3149403\n"
-"15\n"
+"04060105.xhp\n"
+"bm_id3150141\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Bao gồm các cột/hàng rỗng trong bảng kết quả.</ahelp>"
+msgid "<bookmark_value>IF function</bookmark_value>"
+msgstr "<bookmark_value>hàm IF</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3149122\n"
-"12\n"
+"04060105.xhp\n"
+"hd_id3150141\n"
+"48\n"
"help.text"
-msgid "Name:"
-msgstr "Tên:"
+msgid "IF"
+msgstr "IF"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3150749\n"
-"13\n"
+"04060105.xhp\n"
+"par_id3148740\n"
+"49\n"
"help.text"
-msgid "Lists the name of the selected data field."
-msgstr "Liệt kê tên của trường dữ liệu thứ hai."
+msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WENN\">Ghi rõ một hàm thử lôgic cần thực hiện.</ahelp>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106EC\n"
+"04060105.xhp\n"
+"hd_id3153325\n"
+"50\n"
"help.text"
-msgid "More"
-msgstr "Nhiều"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F0\n"
+"04060105.xhp\n"
+"par_id3154558\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở rộng hay thu hẹp hộp thoại. Nút <emph>Nhiều</emph> chỉ hiển thị cho trường dữ liệu.</ahelp>"
+msgid "IF(Test; ThenValue; OtherwiseValue)"
+msgstr "IF(Test; ThenValue; \"Giá_trị_cách_khác\")"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F3\n"
+"04060105.xhp\n"
+"par_id3149727\n"
+"52\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
+msgstr "<emph>Thử</emph> là bất cứ giá trị hay biểu thức nào có thể là ĐÚNG hay SAI."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F7\n"
+"04060105.xhp\n"
+"par_id3155828\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/scalc/01/12090106.xhp\">Tùy chọn Trường dữ liệu</link>. Nút <emph>Tùy chọn</emph> chỉ hiển thị cho trường kiểu cột, hàng hay trang.</ahelp>"
+msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
+msgstr "<emph>ThenValue</emph> (tùy chọn) là giá trị được trả về nếu hàm thử lôgic là TRUE (ĐÚNG)."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10708\n"
+"04060105.xhp\n"
+"par_id3154811\n"
+"54\n"
"help.text"
-msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
-msgstr "Nếu hộp thoại được mở rộng bằng nút <emph>Thêm tùy chọn</emph>, thì nó hiển thị thêm những mục dưới đây:"
+msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
+msgstr "<emph>Giá_trị_cách_khác</emph> (tùy chọn) là giá trị được trả về nếu hàm thử lôgic là FALSE (SAI)."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1070B\n"
+"04060105.xhp\n"
+"par_idN107FA\n"
"help.text"
-msgid "Displayed value"
-msgstr "Giá trị hiển thị"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1070F\n"
+"04060105.xhp\n"
+"hd_id3149507\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
-msgstr "<ahelp hid=\".\">Cho mỗi trường dữ liệu, bạn có thể chọn cách hiển thị.</ahelp> Đối với một số cách hiển thị nào đó, bạn cũng có thể chọn thêm thông tin về trường cơ bản và mục cơ bản."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10712\n"
+"04060105.xhp\n"
+"par_id3150867\n"
+"57\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+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;\"too small\")</item> Nếu ô A1 chứa giá trị lớn hơn 5 thì giá trị 100 được nhập vào ô hiện tại; không thì chuỗi văn bản « quá nhỏ » được nhập vào."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10716\n"
+"04060105.xhp\n"
+"bm_id3155954\n"
"help.text"
-msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr "<ahelp hid=\"1495371266\">Chọn kiểu phép tính giá trị đã hiển thị cho trường dữ liệu.</ahelp>"
+msgid "<bookmark_value>NOT function</bookmark_value>"
+msgstr "<bookmark_value>hàm NOT</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10724\n"
+"04060105.xhp\n"
+"hd_id3155954\n"
+"12\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "NOT"
+msgstr "NOT"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1072A\n"
+"04060105.xhp\n"
+"par_id3153570\n"
+"13\n"
"help.text"
-msgid "Displayed value"
-msgstr "Giá trị hiển thị"
+msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NICHT\">Bổ sung (phản chuyển) một giá trị logic.</ahelp>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10731\n"
+"04060105.xhp\n"
+"hd_id3147372\n"
+"14\n"
"help.text"
-msgid "Normal"
-msgstr "Chuẩn"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10737\n"
+"04060105.xhp\n"
+"par_id3157996\n"
+"15\n"
"help.text"
-msgid "Results are shown unchanged"
-msgstr "Kết quả được hiển thị mà không thay đổi"
+msgid "NOT(LogicalValue)"
+msgstr "NOT(Giá_trị_lôgic)"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1073E\n"
+"04060105.xhp\n"
+"par_id3148766\n"
+"16\n"
"help.text"
-msgid "Difference from"
-msgstr "Hiệu từ"
+msgid "<emph>LogicalValue</emph> is any value to be complemented."
+msgstr "<emph>LogicalValue</emph> là giá trị nào đó được bổ sung."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10744\n"
+"04060105.xhp\n"
+"hd_id3149884\n"
+"17\n"
"help.text"
-msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
-msgstr "Từ mỗi kết quả, giá trị tham chiếu của nó (xem dưới) bị trừ, và hiệu được hiển thị. Tổng bên ngoài trường cơ bản được hiển thị dạng kết quả rỗng."
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10747\n"
+"04060105.xhp\n"
+"par_id3150132\n"
+"18\n"
"help.text"
-msgid "<emph>Named item</emph>"
-msgstr "<emph>Mục đặt tên</emph>"
+msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
+msgstr "<item type=\"input\">=NOT(A)</item>. Nếu A=TRUE thì NOT(A) có giá trị FALSE."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1074C\n"
+"04060105.xhp\n"
+"bm_id3148394\n"
"help.text"
-msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
-msgstr "Đặt tên cơ bản thì giá trị tham chiếu cho một tổ hợp các mục trường là kết quả mà mục trong trường cơ bản được thay thế bằng mục cơ bản đã ghi rõ."
+msgid "<bookmark_value>OR function</bookmark_value>"
+msgstr "<bookmark_value>hàm OR</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1074F\n"
+"04060105.xhp\n"
+"hd_id3148394\n"
+"20\n"
"help.text"
-msgid "<emph>Previous item or Next item</emph>"
-msgstr "<emph>Mục <emph>Lùi</emph> hay <emph>Kế</emph></emph>"
+msgid "OR"
+msgstr "OR"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10754\n"
+"04060105.xhp\n"
+"par_id3156060\n"
+"61\n"
"help.text"
-msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
-msgstr "Nếu « mục lùi » hay « mục kế » được ghi rõ làm mục cơ bản, thì giá trị tham chiếu là kết quả cho vế thấy được kế tiếp của trường cơ bản, theo thứ tự sắp xếp của trường cơ bản."
+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\">Trả về TRUE (ĐÚNG) nếu ít nhất một đối số là TRUE.</ahelp> Hàm này trả về giá trị FALSE (SAI), nếu tất cả các đối số có giá trị lôgic FALSE."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1075B\n"
+"04060105.xhp\n"
+"par_id3148771\n"
+"62\n"
"help.text"
-msgid "% Of"
-msgstr "% của"
+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 "Các đối số hoặc cũng là biểu thức lôgic (TRUE, 1<5, 2+3=7, B8<10) mà trả về giá trị lôgic, hoặc là mảng (A1:C3) chứa các giá trị lôgic."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10761\n"
+"04060105.xhp\n"
+"par_id3153546\n"
+"63\n"
"help.text"
-msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
-msgstr "Mỗi kết quả được chia cho giá trị tham chiếu của nó. Giá trị tham chiếu được xác định bằng cùng một cách với « Hiệu từ ». Tổng số bên ngoài trường cơ bản được hiển thị dạng kết quả rỗng."
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "Khi một hàm đợi một giá trị riêng lẻ, mà bạn đã nhập một phạm vi ô, thì lấy giá trị từ phạm vi ô mà nằm trong cột hay hàng cũng chứa công thức."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1076A\n"
+"04060105.xhp\n"
+"par_id3149027\n"
+"64\n"
"help.text"
-msgid "% Difference from"
-msgstr "% hiệu từ"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "Nếu phạm vi đã nhập nằm ở ngoại cột hay hàng hiện thời của công thức, thì hàm trả về giá trị lỗi #VALUE!"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10770\n"
+"04060105.xhp\n"
+"hd_id3155517\n"
+"22\n"
"help.text"
-msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
-msgstr "Từ mỗi kết quả, giá trị tham chiếu của nó bị trừ, và hiệu được chia cho giá trị tham chiếu. Giá trị tham chiếu được xác định bằng cùng một cách với « Hiệu từ ». Tổng số bên ngoài trường cơ bản được hiển thị dạng kết quả rỗng."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10777\n"
+"04060105.xhp\n"
+"par_id3150468\n"
+"23\n"
"help.text"
-msgid "Running total in"
-msgstr "Tổng số liền theo"
+msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1077D\n"
+"04060105.xhp\n"
+"par_id3155819\n"
+"24\n"
"help.text"
-msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
-msgstr "Mỗi kết quả được cộng với tổng các kết quả của những mục đi trước trong trường cơ bản, theo thứ tự sắp xếp của trường cơ bản, và tổng số được hiển thị."
+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> là những điều kiện cần kiểm tra. Mỗi điều kiện có thể là hoặc TRUE (ĐÚNG) hoặc FALSE (SAI). Nếu một phạm vi được nhập dạng tham số, hàm dùng giá trị của phạm vi mà nằm trong cột hay hàng hiện thời."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10780\n"
+"04060105.xhp\n"
+"hd_id3153228\n"
+"25\n"
"help.text"
-msgid "Results are always summed, even if a different summary function was used to get each result."
-msgstr "Các kết quả lúc nào cũng được cộng lại, thậm chí nếu một hàm cộng lại riêng được dùng để tính mỗi kết quả."
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10787\n"
+"04060105.xhp\n"
+"par_id3154870\n"
+"26\n"
"help.text"
-msgid "% of row"
-msgstr "% hàng"
+msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
+msgstr "Các giá trị lôgic của mục nhập 12<11; 13>22 và 45=45 cần được kiểm tra."
-#: 12090105.xhp
-#, fuzzy
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1078D\n"
+"04060105.xhp\n"
+"par_id3155371\n"
+"27\n"
"help.text"
-msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
-msgstr "Mỗi kết quả được chia cho tổng số kết quả cho hàng đó trong bảng DataPilot. Có vài trường dữ liệu thì dùng tổng số cho trường dữ liệu của kết quả. Có tổng phụ với hàm công lại được chọn thủ công, thì vẫn còn dùng tổng số với hàm cộng lại của trường dữ liệu."
+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> trả về TRUE (ĐÚNG)."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10794\n"
+"04060105.xhp\n"
+"par_id3158412\n"
+"59\n"
"help.text"
-msgid "% of column"
-msgstr "% cột"
+msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
+msgstr "<item type=\"input\">=OR(FALSE;TRUE)</item> trả về TRUE."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1079A\n"
+"04060105.xhp\n"
+"bm_id3156256\n"
"help.text"
-msgid "Same as \"% of row\", but the total for the result's column is used."
-msgstr "Cũng vậy, nhưng dùng tổng số cho cột của kết quả."
+msgid "<bookmark_value>TRUE function</bookmark_value>"
+msgstr "<bookmark_value>hàm TRUE</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107A1\n"
+"04060105.xhp\n"
+"hd_id3156256\n"
+"38\n"
"help.text"
-msgid "% of total"
-msgstr "% tổng số"
+msgid "TRUE"
+msgstr "TRUE"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107A7\n"
+"04060105.xhp\n"
+"par_id3155985\n"
+"39\n"
"help.text"
-msgid "Same as \"% of row\", but the grand total for the result's data field is used."
-msgstr "Cũng vậy, nhưng dùng tổng số tổng quát cho trường dữ liệu của kết quả."
+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\">Giá trị lôgic được đặt thành TRUE (ĐÚNG).</ahelp> Hàm TRUE() không yêu cầu đối số, và luôn luôn trả về giá trị lôgic TRUE (ĐÚNG)."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107AE\n"
+"04060105.xhp\n"
+"hd_id3153717\n"
+"40\n"
"help.text"
-msgid "Index"
-msgstr "Số mũ"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107B4\n"
+"04060105.xhp\n"
+"par_id3152590\n"
+"41\n"
"help.text"
-msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
-msgstr "Những tổng số hàng và cột, và tổng số tổng quát, tùy theo những quy tắc trên, được dùng để tính biểu thức này:"
+msgid "TRUE()"
+msgstr "TRUE()"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107B7\n"
+"04060105.xhp\n"
+"hd_id3147175\n"
+"42\n"
"help.text"
-msgid "( original result * grand total ) / ( row total * column total )"
-msgstr "( kết quả gốc * tổng số tổng quát ) / ( tổng số hàng * tổng số cột )"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107BA\n"
+"04060105.xhp\n"
+"par_id3146148\n"
+"43\n"
"help.text"
-msgid "Base field"
-msgstr "Trường cơ bản"
+msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgstr "Nếu A=TRUE và B=FALSE thì những mẫu ví dụ theo đây sẽ xuất hiện:"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107BE\n"
+"04060105.xhp\n"
+"par_id3083285\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371267\">Hãy lựa chọn trường từ đó giá trị tương ứng được lấy làm cơ bản cho phép tính.</ahelp>"
+msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
+msgstr "<item type=\"input\">=AND(A;B)</item> trả về SAI"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107C1\n"
+"04060105.xhp\n"
+"par_id3083444\n"
+"45\n"
"help.text"
-msgid "Base item"
-msgstr "Mục cơ bản"
+msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgstr "<item type=\"input\">=OR(A;B)</item> returns ĐÚNG"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107C5\n"
+"04060105.xhp\n"
+"par_id3154314\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371268\">Hãy lựa chọn mục của trường cơ bản từ đó giá trị tương ứng được lấy làm cơ bản cho phép tính.</ahelp>"
+msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgstr "<item type=\"input\">=NOT(AND(A;B))</item> trả về TRUE"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
+"04060106.xhp\n"
"tit\n"
"help.text"
-msgid "Deleting Contents"
-msgstr "Xoá nội dung"
+msgid "Mathematical Functions"
+msgstr "Hàm toán học"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"bm_id3143284\n"
+"04060106.xhp\n"
+"bm_id3147124\n"
"help.text"
-msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
-msgstr "<bookmark_value>xoá; nội dung ô</bookmark_value><bookmark_value>ô; xoá nội dung</bookmark_value><bookmark_value>bảng tính; xoá nội dung ô</bookmark_value><bookmark_value>nội dung ô; xoá</bookmark_value>"
+msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
+msgstr "<bookmark_value>hàm toán họa</bookmark_value><bookmark_value>Trợ lý Hàm; toán học</bookmark_value><bookmark_value>hàm; hàm toán học</bookmark_value><bookmark_value>hàm lượng giác</bookmark_value>"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3143284\n"
+"04060106.xhp\n"
+"hd_id3147124\n"
"1\n"
"help.text"
-msgid "Deleting Contents"
-msgstr "Xoá nội dung"
+msgid "Mathematical Functions"
+msgstr "Hàm toán học"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3149456\n"
+"04060106.xhp\n"
+"par_id3154943\n"
"2\n"
"help.text"
-msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
-msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Đặt nội dung cần xoá khỏi ô đang làm việc hoặc phạm vi các ô đã chọn.</ahelp></variable> Áp dụng lên tất cả các bảng nếu nhiều bảng được chọn."
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3159154\n"
-"21\n"
-"help.text"
-msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
-msgstr ""
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3145367\n"
-"22\n"
-"help.text"
-msgid "Pressing Delete deletes content without calling the dialog or changing formats."
-msgstr ""
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3153951\n"
-"23\n"
-"help.text"
-msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
-msgstr "Dùng nút <emph>Cắt</emph> trên thanh <emph>Chuẩn</emph> để xoá nội dung mà không làm hộp thoại xuất hiện."
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3148575\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3149665\n"
-"4\n"
-"help.text"
-msgid "This area lists the options for deleting contents."
-msgstr "Phần này liệt kê các tuỳ chọn để xoá nội dung."
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3146975\n"
-"5\n"
-"help.text"
-msgid "Delete All"
-msgstr "Xóa tất cả"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3154729\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Deletes all content from the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Xoá tất cả nội dung có trong phạm vi các ô đã chọn.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3156286\n"
-"7\n"
-"help.text"
-msgid "Text"
-msgstr "Văn bản"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3154015\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Chỉ xoá văn bản. Định dạng, công thức, số và ngày tháng sẽ không bị ảnh hưởng.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3153840\n"
-"9\n"
-"help.text"
-msgid "Numbers"
-msgstr "Số"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3148405\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Chỉ xoá các giá trị số. Các định dạng và công thức sẽ được giữ nguyên.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3155764\n"
-"11\n"
-"help.text"
-msgid "Date & time"
-msgstr "Ngày và Giờ"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3149567\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Xoá ngày tháng và giá trị thời gian. Định dạng, văn bản và công thức sẽ vẫn được giữ nguyên.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3154703\n"
-"13\n"
-"help.text"
-msgid "Formulas"
-msgstr "Công thức"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3148485\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Xoá các công thức. Văn bản, số, định dạng, ngày tháng và thời gian sẽ được giữ nguyên.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3150300\n"
-"15\n"
-"help.text"
-msgid "Comments"
-msgstr "Ghi chú"
+msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
+msgstr "<variable id=\"mathematiktext\">Phân loại này chứa các hàm <emph>Toán học</emph> của Calc.</variable> Để mở <emph>Trợ lý Hàm</emph>, chọn lệnh trình đơn <link href=\"text/scalc/01/04060000.xhp\" name=\"Chèn > Hàm\"><emph>Chèn > Hàm</emph></link>."
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3154658\n"
-"16\n"
+"04060106.xhp\n"
+"bm_id3146944\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Xoá ghi chú đã thêm vào ô. Tất cả các thành phần khác đều giữ nguyên.</ahelp>"
+msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
+msgstr "<bookmark_value>hàm ABS</bookmark_value><bookmark_value>giá trị tuyệt đối</bookmark_value><bookmark_value>giá trị;tuyệt đối</bookmark_value>"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3155112\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3146944\n"
+"33\n"
"help.text"
-msgid "Formats"
-msgstr "Định dạng"
+msgid "ABS"
+msgstr "ABS"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3146134\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3154546\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Xoá các thuộc tính định dạng được áp dụng vào các ô. Nội dung của các ô sẽ được giữ nguyên.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABS\">Trả về giá trị tuyệt đối của một số.</ahelp>"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3150088\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id3154843\n"
+"35\n"
"help.text"
-msgid "Objects"
-msgstr "Đối tượng"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3152990\n"
-"20\n"
+"04060106.xhp\n"
+"par_id3147475\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Deletes objects. All cell content remains unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Xoá các đối tượng. Tất cả nội dung của ô sẽ được giữ nguyên.</ahelp>"
+msgid "ABS(Number)"
+msgstr "ABS(Số)"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3148438\n"
+"37\n"
"help.text"
-msgid "Ungroup"
-msgstr "Rã nhóm"
+msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
+msgstr "<emph>Số</emph> là số có giá trị tuyệt đối cần tính. Giá trị tuyệt đối của một số là giá trị của nó, không có dấu +/-."
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3148492\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3155823\n"
+"38\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3151384\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3152787\n"
+"39\n"
"help.text"
-msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
-msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Rã nhóm vùng chọn. Trong một nhóm lồng nhau, những hàng/cột được thêm cuối cùng sẽ bị gỡ bỏ khỏi nhóm.</ahelp></variable>"
+msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
+msgstr "<item type=\"input\">=N(123)</item> trả về 123"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3151210\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3148752\n"
+"40\n"
"help.text"
-msgid "Deactivate for"
-msgstr "Tắt cho"
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr "<item type=\"input\">=N(123)</item> trả về 123"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3156280\n"
-"5\n"
+"04060106.xhp\n"
+"par_id320139\n"
"help.text"
-msgid "Rows"
-msgstr "Hàng"
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr "<item type=\"input\">=N(FALSE)</item> trả về 0"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3125864\n"
-"6\n"
+"04060106.xhp\n"
+"bm_id3150896\n"
"help.text"
-msgid "Removes selected rows from a group."
-msgstr "Gỡ bỏ khỏi một nhóm những hàng đã chọn."
+msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
+msgstr "<bookmark_value>hàm COUNTBLANK</bookmark_value><bookmark_value>đếm;ô rỗng</bookmark_value><bookmark_value>ô rỗng;đếm</bookmark_value>"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3147230\n"
-"7\n"
+"04060106.xhp\n"
+"hd_id3150896\n"
+"42\n"
"help.text"
-msgid "Columns"
-msgstr "Cột"
+msgid "COUNTBLANK"
+msgstr "COUNTBLANK"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3154685\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3155260\n"
+"43\n"
"help.text"
-msgid "Removes selected columns from a group."
-msgstr "Gỡ bỏ khỏi một nhóm những cột đã chọn."
+msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Trả về tổng số các ô còn rỗng.</ahelp>"
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3145144\n"
+"44\n"
"help.text"
-msgid "Freeze"
-msgstr "Làm đông"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"hd_id3150517\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3153931\n"
+"45\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Làm đông\">Làm đông</link>"
+msgid "COUNTBLANK(Range)"
+msgstr "COUNTBLANK(Phạm_vi)"
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"par_id3156289\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3149512\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
-msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Chia trang tính ở góc trên bên trái ô được chọn, sau đó thì vùng ở góc trên bên trái không còn có khả năng cuộn lại.</ahelp>"
+msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
+msgstr "Trả về số ô còn rỗng trong phạm vi ô <emph>Phạm_vi</emph>."
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3146139\n"
+"47\n"
"help.text"
-msgid "Subtotals"
-msgstr "Tổng phụ"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"hd_id3153822\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3148586\n"
+"48\n"
"help.text"
-msgid "Subtotals"
-msgstr "Tổng phụ"
+msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
+msgstr "<item type=\"input\">=COUNTBLANK(A1:B2)</item> trả về 4 nếu cả ô A1, A2, B1, B2 đều còn rỗng."
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3145119\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3153114\n"
"help.text"
-msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
-msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Tính tổng phụ cho mỗi cột bạn lựa chọn.</ahelp></variable> $[officename] sử dụng hàm SUM (tổng) để tự động tính các giá trị tổng phụ và tổng số tổng quát trong một phạm vi đã nhãn. Bạn cũng có thể sử dụng các hàm khác để làm phép tính này. $[officename] tự động nhận ra một vùng cơ sở dữ liệu đã xác định khi bạn đặt con trỏ vào nó."
+msgid "<bookmark_value>ACOS function</bookmark_value>"
+msgstr "<bookmark_value>hàm ACOS</bookmark_value>"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3153896\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3153114\n"
+"50\n"
"help.text"
-msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
-msgstr "Ví dụ, bạn có thể tạo một bản tóm tắt buôn bán cho một mã bưu điện nào đó dựa vào dữ liệu từ một cơ sở dữ liệu khách."
+msgid "ACOS"
+msgstr "ACOS"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"hd_id3163708\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3145163\n"
+"51\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOS\">Trả về giá trị lượng giác cosin ngược của một số.</ahelp>"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3154125\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3153565\n"
+"52\n"
"help.text"
-msgid "Deletes the subtotal rows in the selected area."
-msgstr "Xoá các hàng tổng phụ trong vùng đã chọn."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3150020\n"
+"53\n"
"help.text"
-msgid "Mark Invalid Data"
-msgstr "Nhãn dữ liệu sai"
+msgid "ACOS(Number)"
+msgstr "ACOS(Số)"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"bm_id3153821\n"
+"04060106.xhp\n"
+"par_id3159134\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; dữ liệu sai</bookmark_value><bookmark_value>dữ liệu; hiển thị dữ liệu sai</bookmark_value><bookmark_value>dữ liệu sai;đánh dấu</bookmark_value>"
+msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
+msgstr "Hàm này trả về cosin lượng giác ngược của <emph>Số</emph>, tức là góc (theo radian) có cosin Số. Góc được trả về thì nằm giữa 0 và π."
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"hd_id3153821\n"
-"1\n"
+"04060106.xhp\n"
+"par_id679647\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
-msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Nhãn dữ liệu sai\">Nhãn dữ liệu sai</link>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"par_id3147264\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3149882\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Đánh dấu tất cả các ô trên trang tính mà chứa giá trị nằm ở ngoại các quy tắc thẩm tra.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"par_id3151211\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3150128\n"
+"56\n"
"help.text"
-msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
-msgstr "Các <link href=\"text/scalc/01/12120000.xhp\" name=\"quy tắc tính hợp lệ\">quy tắc tính hợp lệ</link> hạn chế tiến trình nhập các giá trị kiểu số, ngày tháng, thời gian và văn bản thành một số giá trị cụ thể. Tuy nhiên, vẫn còn có thể nhập giá trị không hợp lệ, hoặc sao chép giá trị sai vào ô nếu tùy chọn <emph>Dừng</emph> không phải được bật. Khi bạn gán một quy tắc tính hợp lệ, các giá trị đã có trong ô bảng sẽ không được sửa đổi."
+msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+msgstr "<item type=\"input\">=ACOS(-1)</item> trả về 3.14159265358979 (π radian)"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id8792382\n"
"help.text"
-msgid "EASTERSUNDAY"
-msgstr "EASTERSUNDAY"
+msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
+msgstr "<item type=\"input\">=DEGREES(ACOS(0.5))</item> trả về 60. Cosin của 60 độ là 0,5."
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"bm_id3152960\n"
+"04060106.xhp\n"
+"bm_id3145355\n"
"help.text"
-msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
-msgstr "<bookmark_value>hàm EASTERSUNDAY</bookmark_value>"
+msgid "<bookmark_value>ACOSH function</bookmark_value>"
+msgstr "<bookmark_value>hàm ACOSH</bookmark_value>"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3152960\n"
-"175\n"
+"04060106.xhp\n"
+"hd_id3145355\n"
+"60\n"
"help.text"
-msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
-msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">Hàm EASTERSUNDAY</link></variable>"
+msgid "ACOSH"
+msgstr "ACOSH"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154570\n"
-"176\n"
+"04060106.xhp\n"
+"par_id3157993\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Trả về ngày tháng của hôm Chủ Nhật Phục Sinh cho năm đã nhập vào.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Trả về cosin hyperbol ngược của một số.</ahelp>"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id9460127\n"
+"04060106.xhp\n"
+"hd_id3145295\n"
+"62\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id2113711\n"
-"help.text"
-msgid "EASTERSUNDAY(Year)"
-msgstr "EASTERSUNDAY(Năm)"
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3938413\n"
-"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
-msgstr "<emph>Năm</emph> là một số nguyên nằm giữa 1583 và 9956, hay giữa 1 và 99. Bạn cũng có thể tính ngày nghỉ khác bằng phép cộng đơn giản dùng ngày tháng này."
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3156156\n"
-"177\n"
-"help.text"
-msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
-msgstr "Hôm Thứ Hai Phục Sinh = EASTERSUNDAY(Năm) + 1"
-
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3147521\n"
-"178\n"
+"04060106.xhp\n"
+"par_id3151017\n"
+"63\n"
"help.text"
-msgid "Good Friday = EASTERSUNDAY(Year) - 2"
-msgstr "Hôm Thứ Sáu Tuần Thánh = EASTERSUNDAY(Năm) - 2"
+msgid "ACOSH(Number)"
+msgstr "ACOSH(Số)"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3146072\n"
-"179\n"
+"04060106.xhp\n"
+"par_id3149000\n"
+"64\n"
"help.text"
-msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
-msgstr "Hôm Chủ Nhật lễ Hạ trần = EASTERSUNDAY(Năm) + 49"
+msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
+msgstr "Hàm này trả về cosin hyperbol ngược của <emph>Số</emph>, tức là số có cosin hyperbol Số."
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3149553\n"
-"180\n"
+"04060106.xhp\n"
+"par_id6393932\n"
"help.text"
-msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
-msgstr "Hôm Thứ Hai lễ Hạ trần = EASTERSUNDAY(Năm) + 50"
+msgid "Number must be greater than or equal to 1."
+msgstr "Số phải lớn hơn hay bằng với 1."
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3155120\n"
-"181\n"
+"04060106.xhp\n"
+"hd_id3150566\n"
+"65\n"
"help.text"
-msgid "Examples"
+msgid "Example"
msgstr "Ví dụ"
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154472\n"
-"182\n"
-"help.text"
-msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
-msgstr "=EASTERSUNDAY(2000 trả về 2000-04-23."
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3150940\n"
-"184\n"
-"help.text"
-msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr "EASTERSUNDAY(2000)+49 trả về số dãy nội bộ 36688. Kết quả là 2000-06-11. Hãy định dạng số ngày dãy dạng ngày tháng, v.d. theo định dạng NNăm-Th-Ng."
-
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Navigator"
-msgstr "Bộ điều hướng"
-
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
-msgstr "<bookmark_value>Bộ điều hướng;cho trang tính</bookmark_value><bookmark_value>duyệt;trong bảng tính</bookmark_value><bookmark_value>hiển thị; tên kịch bản</bookmark_value><bookmark_value>kịch bản;hiển thị tên</bookmark_value>"
-
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link>"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3156422\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3145629\n"
+"66\n"
"help.text"
-msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
-msgstr "<ahelp hid=\".uno:Navigator\">Bật và tắt Bộ điều hướng.</ahelp> Bộ điều hướng là một <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"cửa sổ neo được\">cửa sổ neo được</link>."
+msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3145271\n"
-"40\n"
+"04060106.xhp\n"
+"par_id951567\n"
"help.text"
-msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
-msgstr "Chọn lệnh <emph>Hiển thị > Bộ điều hướng</emph> để mở Bộ điều hướng."
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ACOSH(COSH(4))</item> trả về 4."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3159155\n"
-"4\n"
+"04060106.xhp\n"
+"bm_id3149027\n"
"help.text"
-msgid "Column"
-msgstr "Cột"
+msgid "<bookmark_value>ACOT function</bookmark_value>"
+msgstr "<bookmark_value>hàm ACOT</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146984\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3149027\n"
+"70\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Nhập chữ cái đánh dấu cột. Nhấn Enter để đặt lại vị trí con trỏ ô về cột được nhập trong cùng một hàng.</ahelp>"
+msgid "ACOT"
+msgstr "ACOT"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147126\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3155818\n"
+"71\n"
"help.text"
-msgid "Row"
-msgstr "Hàng"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOT\">Trả về cotang ngước (arccotang) của số đã cho.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149958\n"
-"7\n"
+"04060106.xhp\n"
+"hd_id3153225\n"
+"72\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Nhập vào một số hàng. Nhấn Enter để đặt lại vị trí con trỏ ô tới hàng đã nhập trong cột đang làm việc.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150717\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3158419\n"
+"73\n"
"help.text"
-msgid "Data Range"
-msgstr "Phạm vi dữ liệu"
+msgid "ACOT(Number)"
+msgstr "ACOT(Số)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150752\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3154948\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Xác định phạm vi dữ liệu hiện thời được đánh dấu bằng vị trí của con trỏ ô.</ahelp>"
+msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
+msgstr "Hàm này trả về cotang lượng giác ngược của <emph>Số</emph>, tức là góc (theo radian) có cotang Số. Góc trả về nằm giữa 0 và π."
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159264\n"
+"04060106.xhp\n"
+"par_id5834528\n"
"help.text"
-msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Biểu tượng</alt></image>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146919\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3147538\n"
+"75\n"
"help.text"
-msgid "Data Range"
-msgstr "Phạm vi dữ liệu"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3148488\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3155375\n"
+"76\n"
"help.text"
-msgid "Start"
-msgstr "Bắt đầu"
+msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ACOT(1)</item> trả về 0,785398163397448 (π/4 radian)."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150086\n"
-"16\n"
+"04060106.xhp\n"
+"par_id8589434\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Chuyển tới ô ở đầu phạm vi dữ liệu hiện thời mà bạn có thể tô sáng bằng cách bấm nút <emph>Phạm vi dữ liệu</emph>.</ahelp>"
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ACOT(1))</item> trả về 45. Tang của 45 độ là 1."
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152994\n"
+"04060106.xhp\n"
+"bm_id3148426\n"
"help.text"
-msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3150394\">Biểu tượng</alt></image>"
+msgid "<bookmark_value>ACOTH function</bookmark_value>"
+msgstr "<bookmark_value>hàm ACOTH</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154372\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3148426\n"
+"80\n"
"help.text"
-msgid "Start"
-msgstr "Bắt đầu"
+msgid "ACOTH"
+msgstr "ACOTH"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3146982\n"
-"17\n"
+"04060106.xhp\n"
+"par_id3147478\n"
+"81\n"
"help.text"
-msgid "End"
-msgstr "Kết thúc"
+msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Trả về cotang hyperbol ngược của số đã cho.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152985\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id3152585\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Chuyển tới ô nằm cuối phạm vi dữ liệu hiện thời mà bạn có thể tô sáng bằng nút <emph>Phạm vi Dữ liệu</emph>.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159170\n"
+"04060106.xhp\n"
+"par_id3147172\n"
+"83\n"
"help.text"
-msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Biểu tượng</alt></image>"
+msgid "ACOTH(Number)"
+msgstr "ACOTH(Số)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147072\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3146155\n"
+"84\n"
"help.text"
-msgid "End"
-msgstr "Kết thúc"
+msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
+msgstr "Hàm này trả về cotang hyperbol ngược của <emph>Số</emph>, tức là số có cotang hyperbol Số."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150107\n"
-"20\n"
+"04060106.xhp\n"
+"par_id5818659\n"
"help.text"
-msgid "Toggle"
-msgstr "Bật/tắt"
+msgid "An error results if Number is between -1 and 1 inclusive."
+msgstr "Gặp lỗi nếu Số nằm giữa -1 và +1 (kể cả hai số đó)."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159098\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id3083452\n"
+"85\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Bật/tắt phần hiển thị nội dung. Chỉ có các thành phần được chọn trong Bộ điều hướng và các thành phần bên dưới nó là sẽ được hiển thị.</ahelp> Bấm vào biểu tượng thêm lần nữa để hiển thị lại tất cả các thành phần."
+msgid "Example"
+msgstr "Ví dụ"
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152869\n"
+"04060106.xhp\n"
+"par_id3150608\n"
+"86\n"
"help.text"
-msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149814\">Biểu tượng</alt></image>"
+msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
+msgstr "<item type=\"input\">=ACOTH(1.1)</item> trả về cotang hyperbol ngước của 1.1, xấp xỉ 1.52226."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159229\n"
-"21\n"
+"04060106.xhp\n"
+"bm_id3145084\n"
"help.text"
-msgid "Toggle"
-msgstr "Bật/tắt"
+msgid "<bookmark_value>ASIN function</bookmark_value>"
+msgstr "<bookmark_value>hàm ASIN</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3149381\n"
-"11\n"
+"04060106.xhp\n"
+"hd_id3145084\n"
+"90\n"
"help.text"
-msgid "Contents"
-msgstr "Nội dung"
+msgid "ASIN"
+msgstr "ASIN"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150051\n"
-"13\n"
+"04060106.xhp\n"
+"par_id3156296\n"
+"91\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Cho phép bạn ẩn/hiện nội dung.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCSIN\">Trả về sin lượng giác ngược của một số.</ahelp>"
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3155597\n"
+"04060106.xhp\n"
+"hd_id3149716\n"
+"92\n"
"help.text"
-msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155386\">Biểu tượng</alt></image>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150955\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3156305\n"
+"93\n"
"help.text"
-msgid "Contents"
-msgstr "Nội dung"
+msgid "ASIN(Number)"
+msgstr "ASIN(Số)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147244\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3150964\n"
+"94\n"
"help.text"
-msgid "Scenarios"
-msgstr "Kịch bản"
+msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
+msgstr "Hàm này trả về sin lượng giác ngược của <emph>Số</emph>, tức là góc (theo radian) có sin là Số. Góc được trả về nằm giữa -π/2 và +π/2."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153955\n"
-"25\n"
+"04060106.xhp\n"
+"par_id203863\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Hiển thị tất cả các kịch bản đã có. Bấm đúp vào một tên kịch bản để áp dụng.</ahelp> Kết quả sẽ hiển thị trong bảng. Để biết thêm, hãy chọn <link href=\"text/scalc/01/06050000.xhp\" name=\"Công cụ > Kịch bản\"><emph>Công cụ > Kịch bản</emph></link>."
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3148745\n"
+"04060106.xhp\n"
+"hd_id3149448\n"
+"95\n"
"help.text"
-msgid "<image id=\"img_id3159256\" src=\"sc/imglst/navipi/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155386\">Biểu tượng</alt></image>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3166466\n"
-"24\n"
+"04060106.xhp\n"
+"par_id3156100\n"
+"96\n"
"help.text"
-msgid "Scenarios"
-msgstr "Kịch bản"
+msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A6C\n"
+"04060106.xhp\n"
+"par_id6853846\n"
"help.text"
-msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
-msgstr "Nếu Bộ điều hướng hiển thị các kịch bản thì bạn có thể dùng các lệnh dưới đây khi bấm chuột phải vào tên kịch bản:"
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
+msgstr "<item type=\"input\">=ASIN(1)</item> trả về 1,5707963267949 (π/2 radian)."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A77\n"
+"04060106.xhp\n"
+"par_id8772240\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
+msgstr "<item type=\"input\">=DEGREES(ASIN(0.5))</item> trả về 30. Sin của 30 độ là 0,5."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A7B\n"
+"04060106.xhp\n"
+"bm_id3151266\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Xoá các kịch bản đã chọn.</ahelp>"
+msgid "<bookmark_value>ASINH function</bookmark_value>"
+msgstr "<bookmark_value>hàm ASINH</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A92\n"
+"04060106.xhp\n"
+"hd_id3151266\n"
+"100\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "ASINH"
+msgstr "ASINH"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A96\n"
+"04060106.xhp\n"
+"par_id3147077\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Mở hộp thoại <link href=\"text/scalc/01/06050000.xhp\">Sửa kịch bản</link> để sửa các thuộc tính của kịch bản.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Trả về sin hyperbol ngược của một số.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150037\n"
-"26\n"
+"04060106.xhp\n"
+"hd_id3150763\n"
+"102\n"
"help.text"
-msgid "Drag Mode"
-msgstr "Chế độ kéo"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3157876\n"
-"28\n"
+"04060106.xhp\n"
+"par_id3150882\n"
+"103\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Mở một trình đơn con để chọn chế độ kéo. Bạn đặt hành động nào sẽ được thực thi khi kéo và thả một đối tượng từ Bộ điều hướng vào trong tài liệu. Tuỳ theo chế độ bạn dùng, một biểu tượng loại siêu liên kết, liên kết hoặc bản sao sẽ xuất hiện.</ahelp>"
+msgid "ASINH(Number)"
+msgstr "ASINH(Số)"
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149947\n"
+"04060106.xhp\n"
+"par_id3147621\n"
+"104\n"
"help.text"
-msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155757\">Biểu tượng</alt></image>"
+msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
+msgstr "Hàm này trả về sin hyperbol ngược của <emph>Số</emph>, tức là số có sin hyperbol Số."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150656\n"
-"27\n"
+"04060106.xhp\n"
+"hd_id3153212\n"
+"105\n"
"help.text"
-msgid "Drag Mode"
-msgstr "Chế độ kéo"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3149009\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3156120\n"
+"106\n"
"help.text"
-msgid "Insert as Hyperlink"
-msgstr "Chèn dạng siêu liên kết"
+msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+msgstr "<item type=\"input\">=ASINH(-90)</item> trả về xấp xỉ -5,1929877."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146938\n"
-"30\n"
+"04060106.xhp\n"
+"par_id4808496\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\">Chèn một siêu liên kết khi bạn kéo và thả một đối tượng từ Bộ điều hướng vào trong tài liệu.</ahelp> Sau này bạn vẫn có thể bấm vào siêu liên kết vừa tạo để đặt con trỏ và xem các đối tượng mà nó trỏ tới."
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ASINH(SINH(4))</item> trả về 4."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3880733\n"
+"04060106.xhp\n"
+"bm_id3155996\n"
"help.text"
-msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
-msgstr "Nếu bạn chèn một siêu liên kết vào trong tài liệu đang mở, bạn cần phải lưu tài liệu lại trước khi dùng siêu liên kết đó."
+msgid "<bookmark_value>ATAN function</bookmark_value>"
+msgstr "<bookmark_value>hàm ATAN</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154682\n"
-"31\n"
+"04060106.xhp\n"
+"hd_id3155996\n"
+"110\n"
"help.text"
-msgid "Insert as Link"
-msgstr "Chèn dạng liên kết"
+msgid "ATAN"
+msgstr "ATAN"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150746\n"
-"32\n"
+"04060106.xhp\n"
+"par_id3149985\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Tạo liên kết khi bạn kéo và thả một đối tượng từ Bộ điều hướngvào trong tài liệu.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN\">Trả về tang lượng giác ngược của một số.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3145824\n"
-"33\n"
+"04060106.xhp\n"
+"hd_id3151294\n"
+"112\n"
"help.text"
-msgid "Insert as Copy"
-msgstr "Chèn dạng bản sao"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147471\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3150261\n"
+"113\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Tạo một bản sao khi bạn kéo và thả một đối tượng từ Bộ điều hướng vào trong tài liệu.</ahelp>"
+msgid "ATAN(Number)"
+msgstr "ATAN(Số)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147423\n"
-"38\n"
+"04060106.xhp\n"
+"par_id3147267\n"
+"114\n"
"help.text"
-msgid "Objects"
-msgstr "Đối tượng"
+msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
+msgstr "Hàm này trả về giá trị lượng giác là tang ngược của <emph>Số</emph>, tức là góc (theo radian) có tang là Số. Góc được trả về nằm giữa -π/2 và +π/2."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150700\n"
-"39\n"
+"04060106.xhp\n"
+"par_id6293527\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Hiển thị mọi đối tượng trong tài liệu của bạn.</ahelp>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150860\n"
-"35\n"
+"04060106.xhp\n"
+"hd_id3154054\n"
+"115\n"
"help.text"
-msgid "Documents"
-msgstr "Tài liệu"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153929\n"
-"36\n"
+"04060106.xhp\n"
+"par_id3143229\n"
+"116\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Hiển thị tên của mọi tài liệu đang mở.</ahelp> Để chuyển tới một cửa sổ đang mở khác từ trong Bộ điều hướng, hãy ấn vào tên tài liệu. Trạng thái (hoạt động, không hoạt động) của tài liệu sẽ được đặt trong ngoặc sau phần tên. Bạn có thể chuyển tới tài liệu hoạt động từ trình đơn <emph>Cửa sổ</emph>."
+msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN(1)</item> trả về 0.785398163397448 (π/4 radian)."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id8746299\n"
"help.text"
-msgid "Function List"
-msgstr "Danh sách Hàm"
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ATAN(1))</item> trả về 45. Tang của 45 độ là 1."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"bm_id3154126\n"
+"04060106.xhp\n"
+"bm_id3153983\n"
"help.text"
-msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
-msgstr "<bookmark_value>cửa sổ danh sách công thức</bookmark_value><bookmark_value>cửa sổ danh sách hàm</bookmark_value><bookmark_value>chèn hàm; cửa sổ danh sách hàm</bookmark_value>"
+msgid "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr "<bookmark_value>hàm ATAN2</bookmark_value>"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3154126\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3153983\n"
+"120\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
-msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Danh sách Hàm\">Danh sách Hàm</link>"
+msgid "ATAN2"
+msgstr "ATAN2"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3151118\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3154297\n"
+"121\n"
"help.text"
-msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
-msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Câu lệnh này mở cửa sổ <emph>Danh sách Hàm</emph>, mà hiển thị tất cả các hàm có thể được chèn vào tài liệu của bạn.</ahelp></variable> Cửa sổ <emph>Danh sách Hàm</emph> tương tự với trang thẻ <emph>Hàm</emph> của <link href=\"text/scalc/01/04060000.xhp\" name=\"Trợ lý Hàm\">Trợ lý Hàm</link>. Các hàm được chèn với ký tự giữ chỗ mà sẽ được thay thế bằng giá trị của bạn."
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Trả về tang lượng giác ngược của những toạ độ x và y đã ghi rõ.</ahelp>"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3152576\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3149758\n"
+"122\n"
"help.text"
-msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
-msgstr "Cửa sổ <emph>Danh sách hàm</emph> là một <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"cửa sổ neo được\">cửa sổ neo được</link> và co giãn được. Hãy sử dụng nó để nhập nhanh các hàm vào bảng tính. Bằng cách nhấn đôi vào một mục nhập trong danh sách các hàm, bạn chèn trực tiếp hàm tương ứng với tất cả các tham số thích hợp."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3145799\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3156013\n"
+"123\n"
"help.text"
-msgid "Category List"
-msgstr "Danh sách Phân loại"
+msgid "ATAN2(NumberX; NumberY)"
+msgstr "ATAN2(SốX; SốY)"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3153160\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3151168\n"
+"124\n"
"help.text"
-msgid "Function List"
-msgstr "Danh sách Hàm"
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr "<emph>SốX</emph> là giá trị của toạ độ x."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3149412\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3152798\n"
+"125\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
-msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Hiển thị các hàm sẵn sàng.</ahelp> Khi bạn lựa chọn một hàm nào đó, vùng bên dưới hộp liệt kê sẽ hiển thị một mô tả ngắn. Để chèn hàm đã chọn, hãy nhấn đôi vào nó, hoặc nhấn vào biểu tượng <emph>Chèn hàm vào bảng tính</emph>."
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr "<emph>SốY</emph> là giá trị của toạ độ y."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3146971\n"
-"7\n"
+"04060106.xhp\n"
+"par_id5036164\n"
"help.text"
-msgid "Insert Function into calculation sheet"
-msgstr "Chèn hàm vào bảng tính"
+msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
+msgstr "ATAN2 trả về tang lượng giác ngược, tức là góc (theo radian) nằm giữa trục X và một đường thẳng chạy từ điểm SốX, SốY đến gốc. Góc được trả về nằm giữa -π và +π."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3150043\n"
+"04060106.xhp\n"
+"par_id3001800\n"
"help.text"
-msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Biểu tượng</alt></image>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3147345\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id3145663\n"
+"126\n"
"help.text"
-msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
-msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Chèn hàm đã chọn vào tài liệu.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154692\n"
+"127\n"
"help.text"
-msgid "Consolidate"
-msgstr "Kết hợp"
+msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN2(20;20)</item> trả về 0,785398163397448 (π/4 radian)."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"04060106.xhp\n"
+"par_id1477095\n"
"help.text"
-msgid "Consolidate"
-msgstr "Kết hợp"
+msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> trả về 45. Tang của 45 độ là 1."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3148798\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3155398\n"
"help.text"
-msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
-msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Kết hợp dữ liệu từ một hay nhiều phạm vi ô độc lập, và tính một phạm vi mơi dùng hàm bạn ghi rõ.</ahelp></variable>"
+msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgstr "<bookmark_value>hàm ATANH</bookmark_value>"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3150010\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id3155398\n"
+"130\n"
"help.text"
-msgid "Function"
-msgstr "Hàm"
+msgid "ATANH"
+msgstr "ATANH"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3149377\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3148829\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Lựa chọn hàm cần dùng để kết hợp dữ liệu.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARTANHYP\">Trả về tang hyperbol ngược cua một số.</ahelp>"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3147127\n"
-"10\n"
+"04060106.xhp\n"
+"hd_id3146997\n"
+"132\n"
"help.text"
-msgid "Consolidation ranges"
-msgstr "Phạm vi kết hợp"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3151075\n"
-"11\n"
+"04060106.xhp\n"
+"par_id3149912\n"
+"133\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Hiển thị những phạm vi ô cần kết hợp.</ahelp>"
+msgid "ATANH(Number)"
+msgstr "ATANH(Số)"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3147397\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3150521\n"
+"134\n"
"help.text"
-msgid "Source data range"
-msgstr "Phạm vi dữ liệu nguồn"
+msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
+msgstr "Hàm này trả về tang hyperbol ngược của <emph>Số</emph>, tức là số có tang hyperbol Số."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3153836\n"
-"13\n"
+"04060106.xhp\n"
+"par_id9357280\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Ghi rõ phạm vi ô cần kết hợp với các phạm vi ô được liệt kê trong hộp <emph>Phạm vi kết hợp</emph>. Lựa chọn một phạm vi ô trên một trang tính, sau đó nhấn nút <emph>Thêm</emph>. Bạn cũng có thể chọn tên của một ô đã xác định sẵn trong danh sách <emph>Phạm vi dữ liệu nguồn</emph>.</ahelp>"
+msgid "Number must obey the condition -1 < number < 1."
+msgstr "Số phải thoả điều kiện « -1 < số < 1 »."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3155768\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3148450\n"
+"135\n"
"help.text"
-msgid "Copy results to"
-msgstr "Chép kết quả vào"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3147341\n"
-"16\n"
+"04060106.xhp\n"
+"par_id3145419\n"
+"136\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Hiển thị ô đầu tiên trong phạm vi sẽ hiển thị kết quả kết hợp.</ahelp>"
+msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3147345\n"
-"17\n"
+"04060106.xhp\n"
+"bm_id3153062\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "<bookmark_value>COS function</bookmark_value>"
+msgstr "<bookmark_value>hàm COS</bookmark_value>"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3155335\n"
-"18\n"
+"04060106.xhp\n"
+"hd_id3153062\n"
+"149\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Thêm phạm vi ô được ghi rõ trong hộp <emph>Phạm vi dữ liệu nguồn</emph> vào hộp <emph>Phạm vi kết hợp</emph>.</ahelp>"
+msgid "COS"
+msgstr "COS"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3148630\n"
-"19\n"
+"04060106.xhp\n"
+"par_id3148803\n"
+"150\n"
"help.text"
-msgid "More >>"
-msgstr "Nhiều >>"
+msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COS\">Trả về cosin của góc đã cho (theo radian).</ahelp>"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3159239\n"
-"20\n"
+"04060106.xhp\n"
+"hd_id3150779\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Hiển thị thêm <link href=\"text/scalc/01/12070100.xhp\" name=\"tùy chọn\">tùy chọn</link>.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154213\n"
+"152\n"
"help.text"
-msgid "AutoCalculate"
-msgstr "Tự động tính"
+msgid "COS(Number)"
+msgstr "COS(Số)"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"bm_id3145673\n"
+"04060106.xhp\n"
+"par_id3154285\n"
+"153\n"
"help.text"
-msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
-msgstr "<bookmark_value>tính; tự động tính trang tính</bookmark_value><bookmark_value>tính lại;tự động tính trang tính</bookmark_value><bookmark_value>chức năng Tự động tính trong trang tính</bookmark_value><bookmark_value>tự động sửa lỗi trong trang tính</bookmark_value><bookmark_value>công thức;chức năng Tự động tính</bookmark_value><bookmark_value>nội dung ô;chức năng Tự động tính</bookmark_value>"
+msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+msgstr "Trả về cosin (lượng giác) của <emph>Số</emph>, góc theo radian."
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"hd_id3145673\n"
-"1\n"
+"04060106.xhp\n"
+"par_id831019\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
-msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"Tự động tính\">Tự động tính</link>"
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr "Để trả về cosin của một góc theo độ, hãy dùng hàm RADIANS."
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3148798\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3153579\n"
+"154\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutomaticCalculation\">Tự động tính lại tất cả các công thức trong tài liệu đó.</ahelp>"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3145173\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3147240\n"
+"155\n"
"help.text"
-msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
-msgstr "Sửa đổi trang tính thì tất cả các ô được tính lại. Bất cứ đồ thị nào trên trang tính đó sẽ cũng được vẽ lại."
+msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+msgstr "<item type=\"input\">=COS(PI()/2)</item> trả về 0, cosin của π/2 radian."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3147516\n"
+"156\n"
"help.text"
-msgid "NETWORKDAYS"
-msgstr "NETWORKDAYS"
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgstr "<item type=\"input\">=COS(RADIANS(60))</item> trả về 0,5, cosin của 60 độ."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"bm_id3151254\n"
+"04060106.xhp\n"
+"bm_id3154277\n"
"help.text"
-msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
-msgstr "<bookmark_value>hàm NETWORKDAYS</bookmark_value>"
+msgid "<bookmark_value>COSH function</bookmark_value>"
+msgstr "<bookmark_value>hàm COSH</bookmark_value>"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3151254\n"
-"240\n"
+"04060106.xhp\n"
+"hd_id3154277\n"
+"159\n"
"help.text"
-msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
-msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">Hàm NETWORKDAYS</link></variable>"
+msgid "COSH"
+msgstr "COSH"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153788\n"
-"241\n"
+"04060106.xhp\n"
+"par_id3146946\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Trả về số các ngày làm việc nằm giữa một <emph>ngày đầu</emph> và <emph>ngày cuối</emph>. Cũng có thể trờ các ngày nghỉ.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Trả về cosin hyperbol của một số.</ahelp>"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3148677\n"
-"242\n"
+"04060106.xhp\n"
+"hd_id3149792\n"
+"161\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3145775\n"
-"243\n"
-"help.text"
-msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
-msgstr "NETWORKDAYS(Ngày_đầu; Ngày_cuối; Ngày_nghỉ)"
-
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153885\n"
-"244\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "<emph>Ngày_đầu</emph> là ngày từ đó cần tính. Nếu ngày đầu là một ngày làm việc thì nó cũng được bao gồm trong phép tính."
-
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3151110\n"
-"245\n"
+"04060106.xhp\n"
+"par_id3166440\n"
+"162\n"
"help.text"
-msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
-msgstr "<emph>Ngày_cuối</emph> là ngày đến đó cần tính. Nếu ngày cuối là một ngày làm việc thì nó cũng được bao gồm trong phép tính."
+msgid "COSH(Number)"
+msgstr "COSH(Số)"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154115\n"
-"246\n"
+"04060106.xhp\n"
+"par_id3150710\n"
+"163\n"
"help.text"
-msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "<emph>Ngày_nghỉ</emph> (tùy chọn) là một danh sách các ngày nghỉ (ngày không đi làm). Hãy nhập một phạm vi ô trong đó mỗi ô chứa một ngày nghỉ."
+msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
+msgstr "Trả về cosin hyperbol của <emph>Số</emph>."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3146902\n"
-"247\n"
+"04060106.xhp\n"
+"hd_id3153234\n"
+"164\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154661\n"
-"248\n"
-"help.text"
-msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "Bao nhiêu ngày làm việc nằm giữa ngày 2001-12-15 và 2002-01-15? Ngày đầu nằm trong ô C3 và ngày cuối trong D3. Phạm vi các ô F3 đến J3 chứa những ngày nghỉ Nô-en và Năm Mới (Phương Tây): \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3147328\n"
-"249\n"
-"help.text"
-msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
-msgstr "=NETWORKDAYS(C3;D3;F3:J3) trả về 17 ngày làm việc."
-
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Show"
-msgstr "Hiện"
-
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"bm_id3147264\n"
+"04060106.xhp\n"
+"par_id3154099\n"
+"165\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; hiển thị cột</bookmark_value><bookmark_value>hiển thị; cột</bookmark_value><bookmark_value>hiển thị; hàng</bookmark_value>"
+msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+msgstr "<item type=\"input\">=COSH(0)</item> trả về 1, cosin hyperbol của 0."
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3152888\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Hiện\">Hiện</link>"
+msgid "<bookmark_value>COT function</bookmark_value>"
+msgstr "<bookmark_value>hàm COT</bookmark_value>"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3150447\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3152888\n"
+"169\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowColumn\">Chọn lệnh này để hiển thị các hàng/cột bị ẩn trước.</ahelp>"
+msgid "COT"
+msgstr "COT"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3155131\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3153679\n"
+"170\n"
"help.text"
-msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
-msgstr "Để hiển thị một hàng hay cột, lựa chọn phạm vi các hàng hay cột chứa những phần tử bị ẩn, sau đó chọn lệnh <emph>Định dạng > Hàng > Hiện</emph> hay <emph>Định dạng > Cột > Hiện</emph>."
+msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COT\">Trò chuyện cotang của góc đã cho (theo radian).</ahelp>"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3145748\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3152943\n"
+"171\n"
"help.text"
-msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
-msgstr "Để hiển thị tất cả các ô bị ẩn, trước tiên nhấn vào trường ở góc trên, bên trái. Việc này lựa chọn mọi ô của bảng (toàn bộ bảng)."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154856\n"
+"172\n"
"help.text"
-msgid "Trace Precedents"
-msgstr "Tìm vết tiền lệ"
+msgid "COT(Number)"
+msgstr "COT(Số)"
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"bm_id3155628\n"
+"04060106.xhp\n"
+"par_id3149969\n"
+"173\n"
"help.text"
-msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; tìm vết tiền lệ</bookmark_value><bookmark_value>ô công thức; tìm vết tiền lệ</bookmark_value>"
+msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+msgstr "Trả về cotang (lượng giác) của <emph>Số</emph>, góc theo radian."
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3444624\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
-msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Tìm vết tiền lệ\">Tìm vết tiền lệ</link>"
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgstr "Để trả về cotang của một góc theo độ, hãy dùng hàm RADIANS."
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3153542\n"
-"2\n"
+"04060106.xhp\n"
+"par_id6814477\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowPrecedents\">Chức năng này hiển thị quan hệ giữa ô hiện thời chứa công thức và các ô được dùng trong công thức.</ahelp>"
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgstr "Cotang của một góc tương đương với 1 chia cho tang của góc đó."
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3147265\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3149800\n"
+"174\n"
"help.text"
-msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
-msgstr "Vết được hiển thị trên trang tính dùng mũi tên đánh dấu. Đồng thời, phạm vi các ô nằm trong công thức của ô hiện thời được tô sáng dùng một khung màu xanh."
+msgid "Examples:"
+msgstr "Thí dụ :"
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3154321\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3148616\n"
+"175\n"
"help.text"
-msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
-msgstr "Hàm này dựa vào một nguyên lý về lớp. Chẳng hạn, nếu ô tiền lệ đối với một công thức đã được ngụ ý với một mũi ten tìm vết, khi bạn lặp lại câu lệnh này, các mũi tên tìm vết được kéo về các ô tiền lệ của ô này."
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgstr "<item type=\"input\">=COT(PI()/4)</item> trả về 1, cotang của π/4 radian."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3148986\n"
+"176\n"
"help.text"
-msgid "Define Names"
-msgstr "Xác định tên"
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgstr "<item type=\"input\">=COT(RADIANS(45))</item> trả về 1, cotang của 45 độ."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3156330\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3154337\n"
"help.text"
-msgid "Define Names"
-msgstr "Xác định tên"
+msgid "<bookmark_value>COTH function</bookmark_value>"
+msgstr "<bookmark_value>hàm COTH</bookmark_value>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3154366\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3154337\n"
+"178\n"
"help.text"
-msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
-msgstr "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Mở một hộp thoại trong đó bạn có thể ghi rõ một tên cho một vùng đã chọn.</ahelp></variable>"
+msgid "COTH"
+msgstr "COTH"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3154123\n"
-"31\n"
+"04060106.xhp\n"
+"par_id3149419\n"
+"179\n"
"help.text"
-msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
-msgstr "Hãy sử dụng con chuột để xác định phạm vi hoặc gõ tham chiếu vào trường hộp thoại <emph>Xác định tên</emph>."
+msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COTHYP\">Trả về cotang hyperbol của một số (góc) đã cho.</ahelp>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155131\n"
-"30\n"
+"04060106.xhp\n"
+"hd_id3149242\n"
+"180\n"
"help.text"
-msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
-msgstr "Trên thanh <emph>Công thức</emph>, hộp <emph>Vùng trang tính</emph> chứa danh sách các tên đã xác định cho phạm vi. Nhấn vào một tên trong hộp này để tô sáng tham chiếu tương ứng trên bảng tính. Không liệt kê ở đây tên đã gán cho công thức hay phần của công thức."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3151118\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3143280\n"
+"181\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "COTH(Number)"
+msgstr "COTH(Số)"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3163712\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3154799\n"
+"182\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Hãy nhập tên của vùng cho đó bạn muốn xác định một tham chiếu. Mọi tên vùng đã xác định trên bảng tính đều được liệt kê trong trường văn bản bên dưới.</ahelp> Nếu bạn nhấn vào một tên trên danh sách này, tham chiếu tương ứng trong tài liệu sẽ được tô sáng bằng khung màu xanh. Nếu nhiều phạm vi ô thuộc về cùng một tên vùng, chúng được tô sáng bằng khung màu khác nhau."
+msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
+msgstr "Trả về cotang hyperbol của <emph>Số</emph>."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3153728\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3155422\n"
+"183\n"
"help.text"
-msgid "Assigned to"
-msgstr "Gán cho"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3147435\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3144754\n"
+"184\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">Tham chiếu của tên vùng đã chọn được hiển thị ở đây dưới dạng một giá trị tuyệt đối.</ahelp>"
+msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+msgstr "<item type=\"input\">=COTH(1)</item> trả về cotang hyperbol của 1, xấp xỉ 1.3130."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3146986\n"
-"12\n"
+"04060106.xhp\n"
+"bm_id6110552\n"
"help.text"
-msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
-msgstr "Để chèn một tham chiếu vùng mới, đặt con trỏ vào trường này và sử dụng con chuột để lựa chọn vùng đã muốn trên bất cứ trang tính nào của tài liệu bảng tính."
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr "<bookmark_value>hàm ASC</bookmark_value>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3154729\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id9523234\n"
+"149\n"
"help.text"
-msgid "More"
-msgstr "Nhiều"
+msgid "CSC"
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3149958\n"
-"14\n"
+"04060106.xhp\n"
+"par_id4896433\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Cho phép bạn ghi rõ <emph>Kiểu vùng</emph> (tùy chọn) cho tham chiếu.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3147394\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3534032\n"
+"151\n"
"help.text"
-msgid "Area type"
-msgstr "Kiểu vùng"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155416\n"
-"16\n"
+"04060106.xhp\n"
+"par_id4571344\n"
+"152\n"
"help.text"
-msgid "Defines additional options related to the type of reference area."
-msgstr "Xác định thêm tùy chọn liên quan đến kiểu vùng tham chiếu."
+msgid "CSC(Number)"
+msgstr "COSH(Số)"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3150716\n"
-"17\n"
+"04060106.xhp\n"
+"par_id9859164\n"
+"153\n"
"help.text"
-msgid "Print range"
-msgstr "Phạm vi in"
+msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgstr "Trả về cosin (lượng giác) của <emph>Số</emph>, góc theo radian."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3150751\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3428494\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Defines the area as a print range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Xác định vùng làm một phạm vi in.</ahelp>"
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgstr "Để trả về cosin của một góc theo độ, hãy dùng hàm RADIANS."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3153764\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id2577161\n"
+"154\n"
"help.text"
-msgid "Filter"
-msgstr "Lọc"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155766\n"
-"20\n"
+"04060106.xhp\n"
+"par_id3736803\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Xác định vùng đã chọn cần dùng trong một bộ <link href=\"text/scalc/01/12040300.xhp\" name=\"lọc cấp cao\">lọc cấp cao</link>.</ahelp>"
+msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3159267\n"
-"21\n"
+"04060106.xhp\n"
+"par_id6016818\n"
+"156\n"
"help.text"
-msgid "Repeat column"
-msgstr "Cột lặp lại"
+msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
+msgstr "<item type=\"input\">=COS(RADIANS(60))</item> trả về 0,5, cosin của 60 độ."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3149565\n"
-"22\n"
+"04060106.xhp\n"
+"bm_id9288877\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Defines the area as a repeating column.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Xác định vùng này là một cột lặp lại.</ahelp>"
+msgid "<bookmark_value>CSCH function</bookmark_value>"
+msgstr "<bookmark_value>hàm ASC</bookmark_value>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3153966\n"
-"23\n"
+"04060106.xhp\n"
+"hd_id4325650\n"
+"159\n"
"help.text"
-msgid "Repeat row"
-msgstr "Hàng lặp lại"
+msgid "CSCH"
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3150300\n"
-"24\n"
+"04060106.xhp\n"
+"par_id579916\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Defines the area as a repeating row.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Xác định vùng đó là một hàng lặp lại.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Trả về cosin hyperbol của một số.</ahelp>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3155112\n"
-"27\n"
+"04060106.xhp\n"
+"hd_id5336768\n"
+"161\n"
"help.text"
-msgid "Add/Modify"
-msgstr "Thêm/Sửa"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3159236\n"
-"28\n"
+"04060106.xhp\n"
+"par_id3108851\n"
+"162\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Bấm nút <emph>Thêm</emph> để thêm vào danh sách này tên đã xác định. Bấm nút <emph>Sửa</emph> để nhập tên khác cho một tên đã có được chọn trong danh sách.</ahelp>"
+msgid "CSCH(Number)"
+msgstr "COSH(Số)"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1394188\n"
+"163\n"
"help.text"
-msgid "DATEVALUE"
-msgstr "DATEVALUE"
+msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
+msgstr "Trả về cosin hyperbol của <emph>Số</emph>."
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"bm_id3145621\n"
+"04060106.xhp\n"
+"hd_id6037477\n"
+"164\n"
"help.text"
-msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
-msgstr "<bookmark_value>hàm DATEVALUE</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3145621\n"
-"18\n"
+"04060106.xhp\n"
+"par_id5426085\n"
+"165\n"
"help.text"
-msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
-msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">Hàm DATEVALUE</link></variable>"
+msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
+msgstr ""
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3145087\n"
-"19\n"
+"04060106.xhp\n"
+"bm_id3145314\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">Trả về số ngày tháng nội bộ cho văn bản, giữa nháy kép.</ahelp>"
+msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
+msgstr "<bookmark_value>hàm DEGREES</bookmark_value><bookmark_value>chuyển đổi;radian sang độ</bookmark_value>"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149281\n"
-"20\n"
+"04060106.xhp\n"
+"hd_id3145314\n"
+"188\n"
"help.text"
-msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
-msgstr "Số ngày tháng nội bộ được trả về dạng số. Số này được xác định bởi hệ thống ngày tháng được $[officename] dùng để tính ngày tháng."
+msgid "DEGREES"
+msgstr "DEGREES"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id0119200903491982\n"
+"04060106.xhp\n"
+"par_id3149939\n"
+"189\n"
"help.text"
-msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
-msgstr "Nếu chuỗi văn bản có chứa giá trị thời gian, DATEVALUE chỉ trả về phần nguyên của chuyển đổi."
+msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DEG\">Chuyển đổi radian sang độ.</ahelp>"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156294\n"
-"21\n"
+"04060106.xhp\n"
+"hd_id3150623\n"
+"190\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149268\n"
-"22\n"
+"04060106.xhp\n"
+"par_id3145600\n"
+"191\n"
"help.text"
-msgid "DATEVALUE(\"Text\")"
-msgstr "DATEVALUE(\"Chuỗi\")"
+msgid "DEGREES(Number)"
+msgstr "DEGREES(Số)"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3154819\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3149484\n"
+"192\n"
"help.text"
-msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
-msgstr "<emph>Chuỗi</emph> là một biểu thức ngày tháng hợp lệ, và phải được nhập giữa nháy kép."
+msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
+msgstr "<emph>Số</emph> là góc theo radian cần chuyển đổi sang độ."
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156309\n"
-"24\n"
+"04060106.xhp\n"
+"hd_id3669545\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3155841\n"
-"25\n"
+"04060106.xhp\n"
+"par_id3459578\n"
"help.text"
-msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
-msgstr "<emph>=DATEVALUE(\"1954-07-20\")</emph> trả về 19925."
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgstr "<item type=\"input\">=DEGREES(PI())</item> trả về 180 độ."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3148698\n"
"help.text"
-msgid "Protecting document"
-msgstr "Bảo vệ tài liệu"
+msgid "<bookmark_value>EXP function</bookmark_value>"
+msgstr "<bookmark_value>hàm EXP</bookmark_value>"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"hd_id3150541\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3148698\n"
+"198\n"
"help.text"
-msgid "Protecting document"
-msgstr "Bảo vệ tài liệu"
+msgid "EXP"
+msgstr "EXP"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3145172\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3150592\n"
+"199\n"
"help.text"
-msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
-msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Bảo vệ cấu trúc trang tính của tài liệu khỏi bị sửa đổi. Một khi bật chức năng này, không thể chèn, xoá, thay đổi tên, di chuyển hay sao chép trang tính.</ahelp></variable> Mở hộp thoại <emph>Bảo vệ tài liệu</emph> dùng mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Tài liệu</emph>. Nếu cần, nhập một mật khẩu, sau đó nhấn nút <emph>OK</emph>."
+msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_EXP\">Trả về e lũy thừa một số.</ahelp> Hằng số e có giá trị xấp xỉ 2.71828182845904."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3153188\n"
-"6\n"
+"04060106.xhp\n"
+"hd_id3150351\n"
+"200\n"
"help.text"
-msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
-msgstr "Cấu trúc của tài liệu bảng tính được bảo vệ có thể được thay đổi chỉ nếu tùy chọn <emph>Bảo vệ</emph> bị tắt. Trong trình đơn ngữ cảnh của thẻ trang tính ở viền đồ họa dưới, chỉ mục trình đơn <emph>Chọn mọi trang tính</emph> có thể được kích hoạt. Các mục trình đơn khác đã bị tắt. Để hủy bảo vệ, hãy chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Tài liệu</emph> lần nữa. Chưa đặt mật khẩu bảo vệ thì chức năng bảo vệ bị tắt ngay lập tức. Đặt mật khẩu thì việc này mở hộp thoại <emph>Hủy bảo vệ bảng tính</emph>, trong đó bạn cần phải nhập mật khẩu. Chỉ sau đó bạn có thể tắt tùy chọn bảo vệ."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3145750\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3146786\n"
+"201\n"
"help.text"
-msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
-msgstr "Một tài liệu được bảo vệ, một khi lưu được, chỉ có thể được lưu lại dùng lệnh <emph>Tập tin > Lưu dạng</emph>."
+msgid "EXP(Number)"
+msgstr "EXP(Số)"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"hd_id3152596\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155608\n"
+"202\n"
"help.text"
-msgid "Password (optional)"
-msgstr "Mật khẩu (tùy chọn)"
+msgid "<emph>Number</emph> is the power to which e is to be raised."
+msgstr "<emph>Số</emph> là lũy thừa cần tăng e."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3155412\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3154418\n"
+"203\n"
"help.text"
-msgid "You can create a password to protect your document against unauthorized or accidental modifications."
-msgstr "Bạn có thể đặt mật khẩu để bảo vệ tài liệu khỏi sửa đổi ngẫu nhiên hay không được phép."
+msgid "Example"
+msgstr "Ví dụ"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3150717\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3156340\n"
+"204\n"
"help.text"
-msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
-msgstr "Bạn cũng có thể bảo vệ dữ liệu một cách hoàn toàn bằng cách kết hợp cả hai tùy chọn dưới mục trình đơn <emph>Công cụ > Bảo vệ tài liệu</emph>, gồm có đặt mật khẩu. Nếu bạn muốn bảo vệ tài liệu khỏi bị người khác mở, hãy bật tùy chọn <emph>Lưu bằng mật khẩu</emph>, sau đó nhấn nút <emph>Lưu</emph>. Hộp thoại <emph>Nhập mật khẩu</emph> sẽ xuất hiện. Cần cẩn thận khi đặt mật khẩu: nếu bạn mất mật khẩu này, không thể truy cập tài liệu nữa."
+msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
+msgstr "<item type=\"input\">=EXP(1)</item> trả về 2,71828182845904, hằng số toán học e theo độ chính xác của trình Calc."
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3145781\n"
"help.text"
-msgid "AutoFilter"
-msgstr "Tự động lọc"
+msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm FACT</bookmark_value><bookmark_value>thừa số;số</bookmark_value>"
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"hd_id3153541\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3145781\n"
+"208\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Tự động lọc\">Tự động lọc</link>"
+msgid "FACT"
+msgstr "FACT"
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3151109\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Tự động lọc phạm vi ô đã chọn, và tạo các hộp liệt kê hàng đơn trong đó bạn có thể chọn những mục cần hiển thị.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Trả về giai thừa của một số.</ahelp>"
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"par_id3145171\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3146902\n"
+"210\n"
"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
-msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Lọc mặc định\">Lọc mặc định</link>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154661\n"
+"211\n"
"help.text"
-msgid "Logical Functions"
-msgstr "Hàm Lôgic"
+msgid "FACT(Number)"
+msgstr "FACT(Số)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3153484\n"
+"04060106.xhp\n"
+"par_id3152952\n"
+"212\n"
"help.text"
-msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
-msgstr "<bookmark_value>hàm lôgic</bookmark_value><bookmark_value>Trợ lý Hàm; lôgic</bookmark_value><bookmark_value>hàm; hàm lôgic</bookmark_value>"
+msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+msgstr "Trả về Số!, giai thừa của <emph>Số</emph>, được tính theo dạng « 1*2*3*4* ... * Số »."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153484\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3834650\n"
"help.text"
-msgid "Logical Functions"
-msgstr "Hàm Lôgic"
+msgid "=FACT(0) returns 1 by definition."
+msgstr "=FACT(0) trả về 1 theo định nghĩa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149312\n"
-"2\n"
+"04060106.xhp\n"
+"par_id8429517\n"
"help.text"
-msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
-msgstr "<variable id=\"logischtext\">Phân loại này chứa các hàm <emph>Lôgic</emph>.</variable>"
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgstr "Giai thừa của một số âm thì trả về lỗi « đối số sai »."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3147505\n"
+"04060106.xhp\n"
+"hd_id3154569\n"
+"213\n"
"help.text"
-msgid "<bookmark_value>AND function</bookmark_value>"
-msgstr "<bookmark_value>hàm AND</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3147505\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3154476\n"
+"216\n"
"help.text"
-msgid "AND"
-msgstr "AND"
+msgid "<item type=\"input\">=FACT(3)</item> returns 6."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153959\n"
-"65\n"
+"04060106.xhp\n"
+"par_id3147525\n"
+"214\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
-msgstr "<ahelp hid=\"HID_FUNC_UND\">Trả về TRUE (ĐÚNG) nếu tất cả các đối số là TRUE.</ahelp> Nếu một đối số là FALSE (SAI), hàm này trả về giá trị FALSE."
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr "<item type=\"input\">=N(TRUE)</item> trả về 1"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3146100\n"
-"66\n"
+"04060106.xhp\n"
+"bm_id3159084\n"
"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
-msgstr "Các đối số hoặc cũng là biểu thức lôgic (TRUE, 1<5, 2+3=7, B8<10) mà trả về giá trị lôgic, hoặc là mảng (A1:C3) chứa các giá trị lôgic."
+msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
+msgstr "<bookmark_value>hàm INT</bookmark_value><bookmark_value>số;làm tròn xuống số nguyên gần nhất</bookmark_value><bookmark_value>làm tròn;xuống số nguyên gần nhất</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150538\n"
-"67\n"
+"04060106.xhp\n"
+"hd_id3159084\n"
+"218\n"
"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr "Khi một hàm đợi một giá trị riêng lẻ, mà bạn đã nhập một phạm vi ô, thì lấy giá trị từ phạm vi ô mà nằm trong cột hay hàng cũng chứa công thức."
+msgid "INT"
+msgstr "INT"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149128\n"
-"68\n"
+"04060106.xhp\n"
+"par_id3158441\n"
+"219\n"
"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
-msgstr "Nếu phạm vi đã nhập nằm ở ngoại cột hay hàng hiện thời của công thức, thì hàm trả về giá trị lỗi #VALUE!"
+msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GANZZAHL\">Làm tròn một số xuống số nguyên gần nhất.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3150374\n"
-"31\n"
+"04060106.xhp\n"
+"hd_id3146132\n"
+"220\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3159123\n"
-"32\n"
+"04060106.xhp\n"
+"par_id3156146\n"
+"221\n"
"help.text"
-msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgid "INT(Number)"
+msgstr "INT(Số)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150038\n"
-"33\n"
+"04060106.xhp\n"
+"par_id3154117\n"
+"222\n"
"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
-msgstr "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> là các điều kiện cần kiểm tra. Mỗi điều kiện có thể là hoặc TRUE (ĐÚNG) hoặc FALSE (SAI). Nếu một phạm vi được nhập dạng tham số, hàm dùng giá trị của phạm vi mà nằm trong cột hay hàng hiện thời. Kết quả là TRUE nếu giá trị lôgic trong tất cả các ô bên trong phạm vi ô đó là TRUE."
+msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
+msgstr "Trả về <emph>Số</emph> được làm tròn xuống số nguyên gần nhất."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149143\n"
-"34\n"
+"04060106.xhp\n"
+"par_id153508\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Negative numbers round down to the integer below."
+msgstr "Mỗi số âm thì bị làm tròn xuống số nguyên gần nhất."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153123\n"
-"35\n"
+"04060106.xhp\n"
+"hd_id3155118\n"
+"223\n"
"help.text"
-msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
-msgstr "Những giá trị lôgic của mục nhập 12<13; 14>12, và 7<6 cần được kiểm tra:"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3145632\n"
-"36\n"
+"04060106.xhp\n"
+"par_id3156267\n"
+"224\n"
"help.text"
-msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
-msgstr "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns SAI."
+msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
+msgstr "<item type=\"input\">=MINUTE(8.999)</item> trả về 58"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149946\n"
-"60\n"
+"04060106.xhp\n"
+"par_id3147323\n"
+"225\n"
"help.text"
-msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
-msgstr "<item type=\"input\">=AND (FALSE;TRUE)</item> trả về FALSE."
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
+msgstr "<item type=\"input\">=N(123)</item> trả về 123"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3149015\n"
+"04060106.xhp\n"
+"bm_id3150938\n"
"help.text"
-msgid "<bookmark_value>FALSE function</bookmark_value>"
-msgstr "<bookmark_value>hàm FALSE</bookmark_value>"
+msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
+msgstr "<bookmark_value>hàm EVEN</bookmark_value><bookmark_value>số;làm tròn lên/xuống số nguyên chẵn</bookmark_value><bookmark_value>làm tròn;lên/xuống số nguyên chẵn</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149015\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3150938\n"
+"227\n"
"help.text"
-msgid "FALSE"
-msgstr "FALSE"
+msgid "EVEN"
+msgstr "EVEN"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149890\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3149988\n"
+"228\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
-msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">Trả về giá trị lôgic FALSE (SAI).</ahelp> Hàm FALSE() không yêu cầu đối số, và luôn luôn trả về giá trị lôgic FALSE (SAI)."
+msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GERADE\">Làm tròn một số dương lên số nguyên chẵn gần nhất; làm tròn một số âm xuống số nguyên chẵn gần nhất.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3146939\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3148401\n"
+"229\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150030\n"
-"6\n"
-"help.text"
-msgid "FALSE()"
-msgstr "FALSE()"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150697\n"
-"7\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154842\n"
-"8\n"
-"help.text"
-msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
-msgstr "<item type=\"input\">=FALSE()</item> trả về FALSE (SAI)"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3147468\n"
-"9\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
-msgstr "<item type=\"input\">=NOT(FALSE())</item> trả về ĐÚNG"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3150141\n"
-"help.text"
-msgid "<bookmark_value>IF function</bookmark_value>"
-msgstr "<bookmark_value>hàm IF</bookmark_value>"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150141\n"
-"48\n"
-"help.text"
-msgid "IF"
-msgstr "IF"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3148740\n"
-"49\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WENN\">Ghi rõ một hàm thử lôgic cần thực hiện.</ahelp>"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153325\n"
-"50\n"
+"04060106.xhp\n"
+"par_id3150830\n"
+"230\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "EVEN(Number)"
+msgstr "EVEN(Số)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154558\n"
-"51\n"
+"04060106.xhp\n"
+"par_id3153350\n"
+"231\n"
"help.text"
-msgid "IF(Test; ThenValue; OtherwiseValue)"
-msgstr "IF(Test; ThenValue; \"Giá_trị_cách_khác\")"
+msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
+msgstr "Trả về <emph>Số</emph> được làm tròn lên số nguyên chẵn, về hướng khác với số 0."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149727\n"
-"52\n"
+"04060106.xhp\n"
+"hd_id3155508\n"
+"232\n"
"help.text"
-msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
-msgstr "<emph>Thử</emph> là bất cứ giá trị hay biểu thức nào có thể là ĐÚNG hay SAI."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155828\n"
-"53\n"
+"04060106.xhp\n"
+"par_id3154361\n"
+"233\n"
"help.text"
-msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
-msgstr "<emph>ThenValue</emph> (tùy chọn) là giá trị được trả về nếu hàm thử lôgic là TRUE (ĐÚNG)."
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr "<item type=\"input\">=GESTEP(5;1)</item> trả về 1."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154811\n"
-"54\n"
+"04060106.xhp\n"
+"par_id8477736\n"
"help.text"
-msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
-msgstr "<emph>Giá_trị_cách_khác</emph> (tùy chọn) là giá trị được trả về nếu hàm thử lôgic là FALSE (SAI)."
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_idN107FA\n"
+"04060106.xhp\n"
+"par_id159611\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr "<item type=\"input\">=ISEVEN_ADD(5)</item> trả về 0."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149507\n"
-"55\n"
+"04060106.xhp\n"
+"par_id6097598\n"
"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr "<item type=\"input\">=ISEVEN_ADD(5)</item> trả về 0."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150867\n"
-"57\n"
+"04060106.xhp\n"
+"bm_id3147356\n"
"help.text"
-msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
-msgstr "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> Nếu ô A1 chứa giá trị lớn hơn 5 thì giá trị 100 được nhập vào ô hiện tại; không thì chuỗi văn bản « quá nhỏ » được nhập vào."
+msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
+msgstr "<bookmark_value>hàm GCD</bookmark_value><bookmark_value>ước số chung lớn nhất</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3155954\n"
+"04060106.xhp\n"
+"hd_id3147356\n"
+"237\n"
"help.text"
-msgid "<bookmark_value>NOT function</bookmark_value>"
-msgstr "<bookmark_value>hàm NOT</bookmark_value>"
+msgid "GCD"
+msgstr "GCD"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3155954\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3152465\n"
+"238\n"
"help.text"
-msgid "NOT"
-msgstr "NOT"
+msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GGT\">Trả về ước số chung nhỏ nhất của hai hay nhiều số nguyên.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153570\n"
-"13\n"
+"04060106.xhp\n"
+"par_id2769249\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NICHT\">Bổ sung (phản chuyển) một giá trị logic.</ahelp>"
+msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
+msgstr "Ước số chung lớn nhất là số nguyên dương lớn nhất có thể chia vào mỗi số nguyên đã cho, không có phần dư."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3147372\n"
-"14\n"
+"04060106.xhp\n"
+"hd_id3150643\n"
+"239\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3157996\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3154524\n"
+"240\n"
"help.text"
-msgid "NOT(LogicalValue)"
-msgstr "NOT(Giá_trị_lôgic)"
+msgid "GCD(Integer1; Integer2; ...; Integer30)"
+msgstr "GCD(Số_nguyên1; Số_nguyên2; ...; Số_nguyên30)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3148766\n"
-"16\n"
+"04060106.xhp\n"
+"par_id3149340\n"
+"241\n"
"help.text"
-msgid "<emph>LogicalValue</emph> is any value to be complemented."
-msgstr "<emph>LogicalValue</emph> là giá trị nào đó được bổ sung."
+msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
+msgstr "<emph>Số_nguyên1 đến 30</emph> là đến 30 số nguyên có ước số chung nhỏ nhất cần tính."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149884\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3147317\n"
+"242\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150132\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
-msgstr "<item type=\"input\">=NOT(A)</item>. Nếu A=TRUE thì NOT(A) có giá trị FALSE."
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3148394\n"
-"help.text"
-msgid "<bookmark_value>OR function</bookmark_value>"
-msgstr "<bookmark_value>hàm OR</bookmark_value>"
+msgstr "Ví dụ"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3148394\n"
-"20\n"
+"04060106.xhp\n"
+"par_id3151285\n"
+"243\n"
"help.text"
-msgid "OR"
-msgstr "OR"
+msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
+msgstr "<item type=\"input\">=GCD(16;32;24)</item> trả về kết quả 8, vì 8 là số lớn nhất có thể chia 16, 24 và 32 mà không có phần dư."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3156060\n"
-"61\n"
+"04060106.xhp\n"
+"par_id1604663\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
-msgstr "<ahelp hid=\"HID_FUNC_ODER\">Trả về TRUE (ĐÚNG) nếu ít nhất một đối số là TRUE.</ahelp> Hàm này trả về giá trị FALSE (SAI), nếu tất cả các đối số có giá trị lôgic FALSE."
+msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
+msgstr "<item type=\"input\">=GCD(B1:B3)</item> mà các ô B1, B2, B3 chứa <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> thì trả về 3."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3148771\n"
-"62\n"
+"04060106.xhp\n"
+"bm_id3151221\n"
"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
-msgstr "Các đối số hoặc cũng là biểu thức lôgic (TRUE, 1<5, 2+3=7, B8<10) mà trả về giá trị lôgic, hoặc là mảng (A1:C3) chứa các giá trị lôgic."
+msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
+msgstr "<bookmark_value>hàm GCD_ADD</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153546\n"
-"63\n"
+"04060106.xhp\n"
+"hd_id3151221\n"
+"677\n"
"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr "Khi một hàm đợi một giá trị riêng lẻ, mà bạn đã nhập một phạm vi ô, thì lấy giá trị từ phạm vi ô mà nằm trong cột hay hàng cũng chứa công thức."
+msgid "GCD_ADD"
+msgstr "GCD_ADD"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149027\n"
-"64\n"
+"04060106.xhp\n"
+"par_id3153257\n"
+"678\n"
"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
-msgstr "Nếu phạm vi đã nhập nằm ở ngoại cột hay hàng hiện thời của công thức, thì hàm trả về giá trị lỗi #VALUE!"
+msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\">Kết quả là ước số chung lớn nhất của một chuỗi số.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3155517\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id3147548\n"
+"679\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150468\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3156205\n"
+"680\n"
"help.text"
-msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgid "GCD_ADD(Number(s))"
+msgstr "GCD_ADD(Các_số)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155819\n"
-"24\n"
+"04060106.xhp\n"
+"par_id3145150\n"
+"681\n"
"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
-msgstr "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> là những điều kiện cần kiểm tra. Mỗi điều kiện có thể là hoặc TRUE (ĐÚNG) hoặc FALSE (SAI). Nếu một phạm vi được nhập dạng tham số, hàm dùng giá trị của phạm vi mà nằm trong cột hay hàng hiện thời."
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Số</emph> là một chuỗi đến 30 số."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153228\n"
-"25\n"
+"04060106.xhp\n"
+"hd_id3150239\n"
+"682\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154870\n"
-"26\n"
-"help.text"
-msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
-msgstr "Các giá trị lôgic của mục nhập 12<11; 13>22 và 45=45 cần được kiểm tra."
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3155371\n"
-"27\n"
-"help.text"
-msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
-msgstr "<item type=\"input\">=OR(12<11;13>22;45=45)</item> trả về TRUE (ĐÚNG)."
+msgstr "Ví dụ"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3158412\n"
-"59\n"
+"04060106.xhp\n"
+"par_id3159192\n"
+"683\n"
"help.text"
-msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
-msgstr "<item type=\"input\">=OR(FALSE;TRUE)</item> trả về TRUE."
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+msgstr "<item type=\"input\">=GCD_ADD(5;15;25)</item> trả về 5."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3156256\n"
+"04060106.xhp\n"
+"bm_id3156048\n"
"help.text"
-msgid "<bookmark_value>TRUE function</bookmark_value>"
-msgstr "<bookmark_value>hàm TRUE</bookmark_value>"
+msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
+msgstr "<bookmark_value>hàm ISEVEN</bookmark_value><bookmark_value>số nguyên chẵn</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3156256\n"
-"38\n"
+"04060106.xhp\n"
+"hd_id3156048\n"
+"245\n"
"help.text"
-msgid "TRUE"
-msgstr "TRUE"
+msgid "ISEVEN"
+msgstr "ISEVEN"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155985\n"
-"39\n"
+"04060106.xhp\n"
+"par_id3149169\n"
+"246\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
-msgstr "<ahelp hid=\"HID_FUNC_WAHR\">Giá trị lôgic được đặt thành TRUE (ĐÚNG).</ahelp> Hàm TRUE() không yêu cầu đối số, và luôn luôn trả về giá trị lôgic TRUE (ĐÚNG)."
+msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTGERADE\">Trả về Đúng nếu giá trị là một số nguyên chẵn, hoặc SAI nếu có giá trị lẻ.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153717\n"
-"40\n"
+"04060106.xhp\n"
+"hd_id3146928\n"
+"247\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3152590\n"
-"41\n"
-"help.text"
-msgid "TRUE()"
-msgstr "TRUE()"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3147175\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3146148\n"
-"43\n"
+"04060106.xhp\n"
+"par_id3151203\n"
+"248\n"
"help.text"
-msgid "If A=TRUE and B=FALSE the following examples appear:"
-msgstr "Nếu A=TRUE và B=FALSE thì những mẫu ví dụ theo đây sẽ xuất hiện:"
+msgid "ISEVEN(Value)"
+msgstr "ISEVEN(Giá_trị)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3083285\n"
-"44\n"
+"04060106.xhp\n"
+"par_id3150491\n"
+"249\n"
"help.text"
-msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
-msgstr "<item type=\"input\">=AND(A;B)</item> trả về SAI"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Giá trị</emph> là giá trị cần kiểm tra."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3083444\n"
-"45\n"
+"04060106.xhp\n"
+"par_id3445844\n"
"help.text"
-msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
-msgstr "<item type=\"input\">=OR(A;B)</item> returns ĐÚNG"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "Nếu Giá_trị không phải là một số nguyên thì bỏ qua bất cứ chữ số phía sau dấu thập phân. Dấu (+/-) của giá trị này cũng bị bỏ qua."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154314\n"
-"46\n"
+"04060106.xhp\n"
+"hd_id3154136\n"
+"250\n"
"help.text"
-msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
-msgstr "<item type=\"input\">=NOT(AND(A;B))</item> trả về TRUE"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3163813\n"
+"251\n"
"help.text"
-msgid "Show Details (Pivot Table)"
-msgstr "Hiện chi tiết (DataPilot)"
+msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"hd_id3344523\n"
+"04060106.xhp\n"
+"par_id8378856\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
-msgstr "<link href=\"text/scalc/01/12080700.xhp\">Hiện chi tiết (DataPilot)</link>"
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"par_id871303\n"
+"04060106.xhp\n"
+"par_id7154759\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn một trang tính chi tiết có thêm thông tin về ô DataPilot hiện thời. Bạn cũng có thể nhấn đôi vào một ô DataPilot để chèn trang tính chi tiết. Trang tính mới hiển thị một tập hợp con các hàng từ nguồn dữ liệu gốc mà tạo thành dữ liệu kết quả được hiển thị trong ô hiện tại.</ahelp>"
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN_ADD(5)</item> trả về 0."
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"par_id7132480\n"
+"04060106.xhp\n"
+"par_id1912289\n"
"help.text"
-msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
-msgstr "Mục bị ẩn không phải được tính; các hàng cho mục ẩn được bao gồm. Chức năng <emph>Hiện chi tiết</emph> chỉ sẵn sàng cho bảng DataPilot dựa vào phạm vi ô hay dữ liệu của cơ sở dữ liệu."
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN(-2.1)</item> trả về TRUE"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id5627307\n"
"help.text"
-msgid "DATE"
-msgstr "DATE"
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"bm_id3155511\n"
+"04060106.xhp\n"
+"bm_id3156034\n"
"help.text"
-msgid "<bookmark_value>DATE function</bookmark_value>"
-msgstr "<bookmark_value>hàm DATE</bookmark_value>"
+msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
+msgstr "<bookmark_value>hàm ISODD</bookmark_value><bookmark_value>số nguyên lẻ</bookmark_value>"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3155511\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3156034\n"
+"255\n"
"help.text"
-msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
-msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">Hàm DATE</link></variable>"
+msgid "ISODD"
+msgstr "ISODD"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3153551\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155910\n"
+"256\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
-msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Hàm này tính một ngày tháng được ghi rõ theo năm, tháng, ngày, và hiển thị nó theo định dạng của ô đó.</ahelp> Định dạng mặc định của một ô chứa hàm DATE là định dạng ngày tháng, nhưng bạn cũng có thể định dạng ô theo bất cứ định dạng số khác nào."
+msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Có giá trị lẻ thì trả về Đúng; có giá trị chẵn thì trả về Sai.</ahelp>"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3148590\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3151006\n"
+"257\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3150474\n"
-"6\n"
-"help.text"
-msgid "DATE(Year; Month; Day)"
-msgstr "DATE(Năm; Tháng; Ngày)"
-
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152815\n"
-"7\n"
-"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
-msgstr "<emph>Năm</emph> là một số nguyên nằm giữa 1583 và 9957, hay giữa 0 và 99."
-
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3153222\n"
-"174\n"
-"help.text"
-msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
-msgstr ""
-
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3155817\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3151375\n"
+"258\n"
"help.text"
-msgid "<emph>Month</emph> is an integer indicating the month."
-msgstr "<emph>Tháng</emph> là một số nguyên ngụ ý tháng."
+msgid "ISODD(value)"
+msgstr "ISODD(giá_trị)"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3153183\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3155139\n"
+"259\n"
"help.text"
-msgid "<emph>Day</emph> is an integer indicating the day of the month."
-msgstr "<emph>Ngày</emph> là một số nguyên ngụ ý ngày của tháng."
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Giá trị</emph> là giá trị cần kiểm tra."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3156260\n"
-"10\n"
+"04060106.xhp\n"
+"par_id9027680\n"
"help.text"
-msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
-msgstr "Giá trị cho tháng và ngày vượt quá giới hạn thì nó được mang lại tới chữ số kế tiếp. Nếu bạn nhập công thức <item type=\"input\">=DATE(00;12;31)</item>, kết quả là 12/31/00. Tuy nhiên, nếu bạn nhập công thức <item type=\"input\">=DATE(00;13;31)</item> kết quả là 1/31/01."
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "Nếu Giá_trị không phải là một số nguyên thì bỏ qua bất cứ chữ số phía sau dấu thập phân. Dấu (+/-) của giá trị này cũng bị bỏ qua."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3147477\n"
-"12\n"
+"04060106.xhp\n"
+"hd_id3163723\n"
+"260\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152589\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
-msgstr "<item type=\"input\">=DATE(00;1;31)</item> trả về 1/31/00 nếu định dạng của ô là Th/Ng/Nm."
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr "Di chuyển hay sao chép một bảng"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; di chuyển</bookmark_value><bookmark_value>bảng tính; sao chép</bookmark_value><bookmark_value>di chuyển; bảng tính</bookmark_value><bookmark_value>sao chép; bảng tính</bookmark_value>"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3153360\n"
-"1\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr "Di chuyển hay sao chép một bảng"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3154686\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
-msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Di chuyển hoặc chép một bảng tới vị trí khác trong tài liệu hoặc sang một tài liệu khác.</ahelp></variable>"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id2282479\n"
-"help.text"
-msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
-msgstr "Khi bạn chép và dán các ô có <link href=\"text/scalc/01/04060102.xhp\">giá trị ngày tháng</link> giữa các bảng tính khác nhau, cả 2 tài liệu bảng tính phải được đặt cùng 1 ngày tháng gốc. Nếu ngày tháng gốc khác đi, ngày tháng hiển thị trên 2 bảng tính sẽ khác nhau!"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3163710\n"
-"3\n"
-"help.text"
-msgid "To Document"
-msgstr "Vào tài liệu"
-
-#: 02180000.xhp
-#, fuzzy
-msgctxt ""
-"02180000.xhp\n"
-"par_id3148645\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Hiện nơi cần chuyển hoặc chép bảng hiện thời sang.</ahelp> Chọn <emph>Tài liệu mới</emph> nếu bạn muốn tạo một tài liệu mới để chuyển hoặc chép bảng tính sang đó."
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3154012\n"
-"5\n"
-"help.text"
-msgid "Insert Before"
-msgstr "Chèn phía trước"
-
-#: 02180000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3145366\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3155345\n"
+"261\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">Bảng hiện thời được di chuyển hoặc sao chép tới trước bảng đã chọn.</ahelp> Tuỳ chọn <emph>di chuyển đến vị trí cuối</emph> sẽ đặt bảng hiện tại ở cuối."
+msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(33)</item> trả về TRUE"
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3153726\n"
-"7\n"
+"04060106.xhp\n"
+"par_id9392986\n"
"help.text"
-msgid "Copy"
-msgstr "Chép"
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3144764\n"
-"8\n"
+"04060106.xhp\n"
+"par_id5971251\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Chỉ định bảng cần được chép. Nếu bỏ dấu kiểm của tuỳ chọn này, bảng sẽ được di chuyển thay vì sao chép lại.</ahelp> Đây là tuỳ chọn mặc định."
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(3.999)</item> trả về ĐÚNG"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id4136478\n"
"help.text"
-msgid "NOW"
-msgstr "NOW"
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(-3.1)</item> trả về TRUE"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"bm_id3150521\n"
+"04060106.xhp\n"
+"bm_id3145213\n"
"help.text"
-msgid "<bookmark_value>NOW function</bookmark_value>"
-msgstr "<bookmark_value>hàm NOW</bookmark_value>"
+msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
+msgstr "<bookmark_value>hàm LCM</bookmark_value><bookmark_value>bội số chung nhỏ nhất</bookmark_value>"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3150521\n"
-"47\n"
+"04060106.xhp\n"
+"hd_id3145213\n"
+"265\n"
"help.text"
-msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
-msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">Hàm NOW</link></variable>"
+msgid "LCM"
+msgstr "LCM"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id3148829\n"
-"48\n"
+"04060106.xhp\n"
+"par_id3146814\n"
+"266\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
-msgstr "<ahelp hid=\"HID_FUNC_JETZT\">Trả về ngày và giờ của hệ thống máy tính.</ahelp> Giá trị này được cập nhật khi nào bạn tính lại tài liệu, hay mỗi lần sửa đổi một giá trị ô."
+msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGV\">Trả về bội số chung nhỏ nhất của một hay nhiều số nguyên.</ahelp>"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3146988\n"
-"49\n"
+"04060106.xhp\n"
+"hd_id3148632\n"
+"267\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id3154897\n"
-"50\n"
+"04060106.xhp\n"
+"par_id3147279\n"
+"268\n"
"help.text"
-msgid "NOW()"
-msgstr "NOW()"
+msgid "LCM(Integer1; Integer2; ...; Integer30)"
+msgstr "LCM(Số_nguyên1; Số_nguyên2; ...; Số_nguyên30)"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id4598529\n"
+"04060106.xhp\n"
+"par_id3156348\n"
+"269\n"
"help.text"
-msgid "NOW is a function without arguments."
-msgstr "NOW là một hàm không chấp nhận đối số."
+msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
+msgstr "<emph>Số_nguyên1 đến 30</emph> là đến 30 số nguyên có bội số chung nhỏ nhất cần tính."
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3154205\n"
-"51\n"
+"04060106.xhp\n"
+"hd_id3156431\n"
+"270\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"par_id3150774\n"
-"52\n"
-"help.text"
-msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
-msgstr "<item type=\"input\">=NOW()-A1</item> trả về hiệu của ngày tháng trong A1 và bây giờ. Định dạng kết quả dạng số."
-
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154914\n"
+"271\n"
"help.text"
-msgid "Down"
-msgstr "Xuống"
+msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
+msgstr "Nếu bạn nhập ba số <item type=\"input\">512</item>;<item type=\"input\">1024</item> và <item type=\"input\">2000</item> vào ba hộp văn bản cho Số_nguyên1, 2 và 3, thì trả về 128000."
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"hd_id3150792\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3154230\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
-msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Xuống\">Xuống</link>"
+msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>hàm LCM_ADD</bookmark_value>"
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"par_id3153969\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3154230\n"
+"684\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Điền nội dung của ô đầu tiên trong một phạm vi có ít nhất 2 hàng được chọn vào tất cả các ô trong phạm vi.</ahelp>"
+msgid "LCM_ADD"
+msgstr "LCM_ADD"
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"par_id3145787\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3149036\n"
+"685\n"
"help.text"
-msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
-msgstr "Nếu phạm vi đã chọn chỉ có 1 cột, nội dung của ô đầu tiên sẽ được chép cho tất cả các ô còn lại. Nếu có vài cột được chọn, nội dung của ô đầu tiên tương ứng sẽ được sao chép xuống."
+msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\">Kết quả là bội số chung nhỏ nhất của một chuỗi số.</ahelp>"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3153132\n"
+"686\n"
"help.text"
-msgid "Graphic"
-msgstr "Đồ họa"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10548\n"
+"04060106.xhp\n"
+"par_id3154395\n"
+"687\n"
"help.text"
-msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
-msgstr "<link href=\"text/scalc/01/format_graphic.xhp\">Đồ họa</link>"
+msgid "LCM_ADD(Number(s))"
+msgstr "LCM_ADD(Các_số)"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10558\n"
+"04060106.xhp\n"
+"par_id3147377\n"
+"688\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở một trình đơn con để chỉnh sửa các thuộc tính về đối tượng đã chọn.</ahelp>"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Số</emph> là một chuỗi đến 30 số."
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id1650440\n"
+"04060106.xhp\n"
+"hd_id3145122\n"
+"689\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\">Xác định Thuộc tính Văn bản</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id363475\n"
+"04060106.xhp\n"
+"par_id3145135\n"
+"690\n"
"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "Đặt các thuộc tính bố trí và thả neo về văn bản trong đối tượng kiểu vẽ hay văn bản được chọn."
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr "<item type=\"input\">=LCM_ADD(5;15;25)</item> trả về 75."
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id9746696\n"
+"04060106.xhp\n"
+"bm_id3155802\n"
"help.text"
-msgid "Points"
-msgstr "Điểm"
+msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
+msgstr "<bookmark_value>hàm COMBIN</bookmark_value><bookmark_value>số sự tổ hợp</bookmark_value>"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id2480544\n"
+"04060106.xhp\n"
+"hd_id3155802\n"
+"273\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật/tắt chế độ <emph>Sửa điểm</emph> cho một con đường dạng tự do đã chèn.</ahelp>"
+msgid "COMBIN"
+msgstr "COMBIN"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3156172\n"
+"274\n"
"help.text"
-msgid "Refresh Traces"
-msgstr "Cập nhật vết"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Trả về số tổ hợp có thể làm cho thành phần không lặp lại.</ahelp>"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"bm_id3152349\n"
+"04060106.xhp\n"
+"hd_id3156193\n"
+"275\n"
"help.text"
-msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; cập nhật vết</bookmark_value><bookmark_value>vết; cập nhật</bookmark_value><bookmark_value>cập nhật;vết</bookmark_value>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"hd_id3152349\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3150223\n"
+"276\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
-msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Cập nhật vết\">Cập nhật vết</link>"
+msgid "COMBIN(Count1; Count2)"
+msgstr "COMBIN(Đếm1; Đếm2)"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3148947\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3150313\n"
+"277\n"
"help.text"
-msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
-msgstr "<ahelp hid=\".uno:RefreshArrows\">Vẽ lại mọi vết trên trang tính. Công thức bị sửa đổi khi vết được vẽ lại cũng được xử lý.</ahelp>"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Đếm1</emph> là số các mục trong tập hợp."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3148798\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3153830\n"
+"278\n"
"help.text"
-msgid "Detective arrows in the document are updated under the following circumstances:"
-msgstr "Các mũi tên phát hiện trong tài liệu đều được cập nhật theo những điều kiện theo đây:"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Đếm2</emph> là số mục cần chọn trong tập hợp."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3153192\n"
-"4\n"
+"04060106.xhp\n"
+"par_id6807458\n"
"help.text"
-msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
-msgstr "Chọn mục trình đơn <emph>Công cụ > Phát hiện > Cập nhật vết</emph>."
+msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
+msgstr "Hàm COMBIN trả về số thứ tự có thể sắp đặt những mục này. Ví dụ, nếu một tập hợp chứa 3 mục (A, B, C), thì bạn có thể đặt ba thứ tự khác nhau : AB, AC, BC."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3151041\n"
-"5\n"
+"04060106.xhp\n"
+"par_id7414471\n"
"help.text"
-msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
-msgstr "Bật tùy chọn <emph>Công cụ > Phát hiện > Tự động Cập nhật</emph> thì cập nhật mỗi lần công thức bị thay đổi trong tài liệu."
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgstr "Hàm COMBIN thực hiện công thức: Đếm1!/(Đếm2!*(Đếm1-Đếm2)!)"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3153171\n"
+"279\n"
"help.text"
-msgid "Edit Print Ranges"
-msgstr "Sửa phạm vi in"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3153088\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3153517\n"
+"280\n"
"help.text"
-msgid "Edit Print Ranges"
-msgstr "Sửa phạm vi in"
+msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3159488\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3150284\n"
"help.text"
-msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
-msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Mở một hộp thoại trong đó bạn có thể ghi rõ vùng in.</ahelp></variable> Bạn cũng có thể đặt những hàng/cột cần lặp lại trên mọi trang."
+msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
+msgstr "<bookmark_value>hàm COMBINA</bookmark_value><bookmark_value>số tổ hợp có lặp lại</bookmark_value>"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_idN105AE\n"
+"04060106.xhp\n"
+"hd_id3150284\n"
+"282\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgid "COMBINA"
+msgstr "COMBINA"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3156281\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3157894\n"
+"283\n"
"help.text"
-msgid "Print range"
-msgstr "Phạm vi in"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Trả về số tổ hợp có thể làm với những mục trong một tập hợp con, cũng lặp lại.</ahelp>"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3147228\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3145752\n"
+"284\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Cho phép bạn sửa đổi một phạm vi in đã xác định.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3145174\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3145765\n"
+"285\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Hãy chọn mục <emph>-không có-</emph> để gỡ bỏ một lời xác định phạm vi in cho bảng tính hiện tại. Chọn <emph>-toàn bộ trang tính-</emph> để đặt trang tính hiện tại làm phạm vi in. Chọn <emph>-vùng chọn-</emph> để xác định vùng bảng tính đã chọn làm phạm vi in. Bằng cách chọn mục <emph>-do người dùng xác định-</emph>, bạn có thể xác định một phạm vi in mà bạn đã xác định dùng lệnh <emph>Định dạng > Phạm vi in</emph>. Nếu bạn đã đặt tên cho một phạm vi dùng lệnh <emph>Chèn > Tên > Xác định</emph>, tên đó sẽ được hiển thị và có thể được chọn trong hộp liệt kê."
+msgid "COMBINA(Count1; Count2)"
+msgstr "COMBINA(Đếm1; Đếm2)"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3145272\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3153372\n"
+"286\n"
"help.text"
-msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
-msgstr "Trong hộp văn bản bên phải, bạn có thể nhập một phạm vi in theo tham chiếu hay theo tên. Nếu con trỏ nằm trong hộp văn bản <emph>Phạm vi in</emph>, bạn cũng có thể chọn phạm vi in trên bảng tính, dùng con chuột."
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Đếm1</emph> là số các mục trong tập hợp."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3149260\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3155544\n"
+"287\n"
"help.text"
-msgid "Rows to repeat"
-msgstr "Hàng cần lặp lại"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Đếm2</emph> là số mục cần chọn trong tập hợp."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3147426\n"
-"8\n"
+"04060106.xhp\n"
+"par_id1997131\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Chọn một hay nhiều hàng cần in trên mọi trang. Trong hộp văn bản bên phải, nhập tham chiếu hàng, v.d. « 1 », « $1 » hay « $2:$3 ».</ahelp> Hộp liệt kê hiển thị mục <emph>-do người dùng xác định-</emph>. Bạn cũng có thể chọn mục <emph>-không có-</emph> để gỡ bỏ một hàng lặp lại đã xác định."
+msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
+msgstr "Hàm COMBINA trả về số các phương pháp duy nhất có thể chọn những mục này, khi không phân biệt thứ tự chọn và cho phép lặp lại mục. Ví dụ, một tập hợp chứa ba mục A, B, C, thì bạn co thể chọn hai mục bằng 6 cách khác nhau : AB, BA, AC, CA, BC, CB."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3155418\n"
-"9\n"
+"04060106.xhp\n"
+"par_id2052064\n"
"help.text"
-msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
-msgstr "Bạn cũng có thể xác định hàng lặp lại bằng cách kéo con chuột trên bảng tính, nếu con trỏ nằm trong trường văn bản <emph>Hàng cần lặp lại</emph> trong hộp thoại."
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgstr "Hàm COMBINA thực hiện công thức: (Đếm1+Đếm2-1)! / (Đếm2!(Đếm1-1)!)"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3149581\n"
-"10\n"
+"04060106.xhp\n"
+"hd_id3154584\n"
+"288\n"
"help.text"
-msgid "Columns to repeat"
-msgstr "Cột cần lặp lại"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3155602\n"
-"11\n"
+"04060106.xhp\n"
+"par_id3152904\n"
+"289\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Hãy chọn một hay nhiều cột cần in trên mọi trang. Trong hộp văn bản bên phải, nhập tham chiếu cột, v.d. « A » hay « AB » hay « $C:$E ».</ahelp> Hộp liệt kê hiển thị mục <emph>-do người dùng xác định-</emph>. Bạn cũng có thể chọn mục <emph>-không có-</emph> để gỡ bỏ một cột lặp lại đã xác định."
+msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3150749\n"
-"12\n"
+"04060106.xhp\n"
+"bm_id3156086\n"
"help.text"
-msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
-msgstr "Bạn cũng có thể xác định cột lặp lại bằng cách kéo con chuột trên bảng tính, nếu con trỏ nằm trong trường văn bản <emph>Cột cần lặp lại</emph> trong hộp thoại."
+msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
+msgstr "<bookmark_value>hàm TRUNC</bookmark_value><bookmark_value>lần số;cắt ra</bookmark_value>"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3156086\n"
+"291\n"
"help.text"
-msgid "Merge and Center Cells"
-msgstr ""
+msgid "TRUNC"
+msgstr "TRUNC"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3149785\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3157866\n"
+"292\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
-msgstr ""
+msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">Cắt ngắn một số bằng cách gỡ bỏ các lần số.</ahelp>"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3151246\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3148499\n"
+"293\n"
"help.text"
-msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154020\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3148511\n"
+"294\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
-msgstr ""
+msgid "TRUNC(Number; Count)"
+msgstr "TRUNC(Số; Đếm)"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3148552\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3150796\n"
+"295\n"
"help.text"
-msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
-msgstr "Ô đã gộp lại thì nhận tên của ô đầu tiên của phạm vi ô gốc. Ô đã gộp lại không thể được gộp lần nữa với ô khác. Phạm vi phải có dạng hình chữ nhât: không hỗ trợ chức năng đa chọn."
+msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
+msgstr "Trả về <emph>Số</emph> có nhiều nhất <emph>Đếm</emph> lần số. Các lần số thừa đơn giản bị gỡ bỏ, bất chấp dấu -/+."
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3149665\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3150816\n"
+"296\n"
"help.text"
-msgid "If the cells to be merged have any contents, a security dialog is shown."
-msgstr "Nếu ô cần gộp lại cũng chứa nội dung, một hộp thoại cảnh báo được hiển thị."
+msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
+msgstr "<item type=\"literal\">TRUNC(Number; 0)</item> ứng xử giống như <item type=\"literal\">INT(Number)</item> đối với các số dương, nhưng có kết quả là làm tròn về số không đối với các số âm."
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3153718\n"
+"04060106.xhp\n"
+"par_id3148548\n"
+"557\n"
"help.text"
-msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
msgstr ""
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Filter"
-msgstr "Lọc"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3150767\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Lọc\">Lọc</link>"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3155131\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị các lệnh để lọc dữ liệu.</ahelp>"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3146119\n"
-"7\n"
-"help.text"
-msgid "$[officename] automatically recognizes predefined database ranges."
-msgstr "$[officename] tự động nhận ra các phậm vi cơ sở dữ liệu đã xác định sẵn."
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3153363\n"
-"3\n"
-"help.text"
-msgid "The following filtering options are available:"
-msgstr "Có sẵn những tùy chọn lọc theo đây:"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3153728\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
-msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Lọc chuẩn\">Lọc chuẩn</link>"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3159153\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
-msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Lọc cấp cao\">Lọc cấp cao</link>"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3149119\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3147102\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
-msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Hiển thị hay ẩn thêm tùy chọn lọc.</ahelp></variable>"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3147008\n"
-"3\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3153662\n"
-"5\n"
-"help.text"
-msgid "Case sensitive"
-msgstr "Phân biệt chữ hoa/thường"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3145673\n"
-"6\n"
-"help.text"
-msgid "Distinguishes between uppercase and lowercase letters."
-msgstr "Phân biệt giữa chữ hoa và chữ thường."
-
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3156327\n"
-"7\n"
+"04060106.xhp\n"
+"hd_id3152555\n"
+"297\n"
"help.text"
-msgid "Regular Expression"
-msgstr "Biểu thức chính quy"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3151245\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3152569\n"
+"298\n"
"help.text"
-msgid "Allows you to use wildcards in the filter definition."
-msgstr "Cho phép bạn sử dụng ký tự đại diện trong lời định nghĩa bộ lọc."
+msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
+msgstr "<item type=\"input\">=TRUNC(1.239;2)</item> trả về 1.23. Chữ số 9 bị mất."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3147264\n"
-"29\n"
+"04060106.xhp\n"
+"par_id7050080\n"
"help.text"
-msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
-msgstr "Bật tùy chọn <emph>Biểu thức chính quy</emph> thì cũng có thể sử dụng toán tử bằng EQUAL (=) và không bằng NOT EQUAL (<>) trong phép so sánh. Cũng có thể sử dụng những hàm này: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP, HLOOKUP."
+msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
+msgstr "<item type=\"input\">=TRUNC(-1.234999;3)</item> trả về -1,234. Tất cả các chữ số 9 đều bị mất."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3153379\n"
-"30\n"
+"04060106.xhp\n"
+"bm_id3153601\n"
"help.text"
-msgid "Unique records only"
-msgstr "Chỉ xét các bản ghi đơn nhất"
+msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
+msgstr "<bookmark_value>hàm LN</bookmark_value><bookmark_value>lôga tự nhiên</bookmark_value>"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3154138\n"
-"31\n"
+"04060106.xhp\n"
+"hd_id3153601\n"
+"301\n"
"help.text"
-msgid "Excludes duplicate rows in the list of filtered data."
-msgstr "Loại trừ hàng trùng trong danh sách dữ liệu đã lọc."
+msgid "LN"
+msgstr "LN"
-#: 12090104.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3156282\n"
-"32\n"
+"04060106.xhp\n"
+"par_id3154974\n"
+"302\n"
"help.text"
-msgid "Data area"
-msgstr "Vùng dữ liệu"
+msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_LN\">Trả về lôga tự nhiên dựa vào hằng số e của một số.</ahelp> Hằng số e có giá trị xấp xỉ 2,71828182845904."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3150768\n"
-"33\n"
+"04060106.xhp\n"
+"hd_id3154993\n"
+"303\n"
"help.text"
-msgid "Displays the name of the filtered data area in the table."
-msgstr "Hiển thị tên của vùng dữ liệu đã lọc trên bảng."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3156424\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3155284\n"
+"304\n"
"help.text"
-msgid "More<<"
-msgstr "Nhiều<<"
+msgid "LN(Number)"
+msgstr "LN(Số)"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3125864\n"
-"35\n"
+"04060106.xhp\n"
+"par_id3155297\n"
+"305\n"
"help.text"
-msgid "Hides the additional options."
-msgstr "Ẩn các tùy chọn bổ sung."
+msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+msgstr "<emph>Số</emph> là giá trị có lôga tự nhiên cần tính."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3154011\n"
+"04060106.xhp\n"
+"hd_id3153852\n"
+"306\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
-msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Danh sách Biểu thức Chính quy\">Danh sách Biểu thức Chính quy</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3153866\n"
+"307\n"
"help.text"
-msgid "Column"
-msgstr "Cột"
+msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgstr "<item type=\"input\">=LN(3)</item> trả về lôga tự nhiên của 3 (xấp xỉ 1,0986)."
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060106.xhp\n"
+"par_id5747245\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
-msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Cột\">Cột</link>"
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr "<item type=\"input\">=VALUE(\"4321\")</item> trả về 4321."
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3148946\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3109813\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt chiều rộng của cột và ẩn hay hiển thị những cột đã chọn.</ahelp>"
+msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
+msgstr "<bookmark_value>hàm LOG</bookmark_value><bookmark_value>lôga</bookmark_value>"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3150398\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3109813\n"
+"311\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
-msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Bề rộng\">Bề rộng</link>"
+msgid "LOG"
+msgstr "LOG"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145171\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3109841\n"
+"312\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
-msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Bề rộng tối ưu\">Bề rộng tối ưu</link>"
+msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG\">Trả về lôga của một số tới cơ sở đã ghi rõ.</ahelp>"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3144719\n"
+"313\n"
"help.text"
-msgid "Fill"
-msgstr "Điền"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"bm_id8473769\n"
+"04060106.xhp\n"
+"par_id3144732\n"
+"314\n"
"help.text"
-msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
-msgstr "<bookmark_value>điền;danh sách chọn</bookmark_value><bookmark_value>danh sách chọn;điền ô</bookmark_value>"
+msgid "LOG(Number; Base)"
+msgstr "LOG(Số; Cơ_số)"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3153876\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3144746\n"
+"315\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
-msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Điền\">Điền</link>"
+msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
+msgstr "<emph>Số</emph> là giá trị có lôga cần tính."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3156285\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3152840\n"
+"316\n"
"help.text"
-msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
-msgstr "<ahelp hid=\".\">Tự động điền nội dung cho các ô.</ahelp>"
+msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
+msgstr "<emph>Base</emph> (tùy chọn) là cơ số của phép toán lôgarit. Nếu bỏ qua, sẽ coi là cơ số 10."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3147343\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3152860\n"
+"317\n"
"help.text"
-msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
-msgstr "Trong các trình đơn ngữ cảnh của $[officename] Calc có lệnh <link href=\"text/scalc/01/02140000.xhp\" name=\"các tuỳ chọn khác\">tuỳ chọn bổ sung</link> để điền các ô."
+msgid "Example"
+msgstr "Ví dụ"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3149207\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3154429\n"
+"318\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Bảng\">Bảng</link>"
+msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
+msgstr "<item type=\"input\">=LOG(10;3)</item> trả về lôga với cơ số 3 của 10 (xấp xỉ 2.0959)."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3155111\n"
-"8\n"
+"04060106.xhp\n"
+"par_id5577562\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
-msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Hàng\">Dãy</link>"
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr "<item type=\"input\">=LEN(12345.67)</item> trả về 8."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3152994\n"
-"3\n"
+"04060106.xhp\n"
+"bm_id3154187\n"
"help.text"
-msgid "<emph>Filling cells using context menus:</emph>"
-msgstr "<emph>Điền các ô thông qua trình đơn ngữ cảnh:</emph>"
+msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
+msgstr "<bookmark_value>hàm LOG10</bookmark_value><bookmark_value>lôga cơ sở 10</bookmark_value>"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3145384\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3154187\n"
+"322\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
-msgstr "Mở <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"trình đơn ngữ cảnh\">trình đơn ngữ cảnh</link> khi đặt vị trí trong một ô và chọn <emph>Danh sách chọn</emph>."
+msgid "LOG10"
+msgstr "LOG10"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3156450\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3155476\n"
+"323\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
-msgstr "<ahelp hid=\".uno:DataSelect\">Một hộp danh sách chứa tất cả các văn bản tìm được trong cột hiện thời sẽ được hiển thị.</ahelp> Văn bản trong danh sách sẽ được xếp theo thứ tự abc. Các mục xuất hiện nhiều lần sẽ được gộp thành 1."
+msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG10\">Trả về lôga cơ số 10 của một số.</ahelp>"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3148699\n"
-"6\n"
+"04060106.xhp\n"
+"hd_id3155494\n"
+"324\n"
"help.text"
-msgid "Click one of the listed entries to copy it to the cell."
-msgstr "Bấm vào một trong các mục để chép nó vào ô."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3159294\n"
+"325\n"
"help.text"
-msgid "Detective"
-msgstr "Phát hiện"
+msgid "LOG10(Number)"
+msgstr "LOG10(Số)"
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"bm_id3151245\n"
+"04060106.xhp\n"
+"par_id3159308\n"
+"326\n"
"help.text"
-msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
-msgstr ""
+msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
+msgstr "Trả về lôga cơ số 10 của <emph>Số</emph>."
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3151245\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3159328\n"
+"327\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
-msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Phát hiện\">Phát hiện</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3151211\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3157916\n"
+"328\n"
"help.text"
-msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
-msgstr "Câu lệnh này kích hoạt chức năng <emph>Phát hiện Bảng tính</emph>. Dùng chức năng này, bạn có thể tìm vết phụ thuộc từ ô công thức hiện thờ tới các ô trên bảng tính."
+msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
+msgstr "<item type=\"input\">=LOG10(5)</item> trả về lôga cơ số 10 của 5 (xấp xỉ 0,69897)."
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3150447\n"
-"3\n"
+"04060106.xhp\n"
+"bm_id3152518\n"
"help.text"
-msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
-msgstr "Một khi xác định một vết, bạn có thể chỉ tới vết dùng con trỏ chuột. Con trỏ sẽ thay đổi hình. Nhấn đôi vào vết dùng con trỏ này, để lựa chọn ô đã tham chiếu ở kết thúc của vết đó."
+msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr "<bookmark_value>hàm CEILING</bookmark_value><bookmark_value>làm tròn;lên bội số có mức độ thống kê</bookmark_value>"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3152518\n"
+"332\n"
"help.text"
-msgid "Text to Columns"
-msgstr "Văn bản sang Cột"
+msgid "CEILING"
+msgstr "CEILING"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"bm_id8004394\n"
+"04060106.xhp\n"
+"par_id3153422\n"
+"558\n"
"help.text"
-msgid "<bookmark_value>text to columns</bookmark_value>"
-msgstr "<bookmark_value>văn bản sang cột</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Làm tròn một số lên bội số gần nhất có mức độ thống kê.</ahelp>"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"hd_id2300180\n"
+"04060106.xhp\n"
+"hd_id3153440\n"
+"334\n"
"help.text"
-msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Văn bản sang Cột</link>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id655232\n"
+"04060106.xhp\n"
+"par_id3153454\n"
+"335\n"
"help.text"
-msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
-msgstr "<variable id=\"text2columns\">Chức năng này mở hộp thoại <emph>Văn bản sang Cột</emph>, trong đó bạn nhập thiết lập để mở rộng nội dung của mỗi ô đã chọn ra nhiều ô. </variable>"
+msgid "CEILING(Number; Significance; Mode)"
+msgstr "CEILING(Số; Mức_thống_kê; Chế_độ)"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"hd_id9599597\n"
+"04060106.xhp\n"
+"par_id3153467\n"
+"336\n"
"help.text"
-msgid "To expand cell contents to multiple cells"
-msgstr "Để mở rộng nội dung ô ra nhiều ô"
+msgid "<emph>Number</emph> is the number that is to be rounded up."
+msgstr "<emph>Số</emph> là số cần làm tròn lên."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id2021546\n"
+"04060106.xhp\n"
+"par_id3155000\n"
+"337\n"
"help.text"
-msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
-msgstr "Bạn có khả năng mở rộng ô chứa các giá trị định giới bằng dấu phẩy (CSV) ra nhiều ô cùng hàng."
+msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
+msgstr "<emph>Mức_thống kê</emph> là số có bội số lên đó nên làm tròn giá trị."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id2623981\n"
+"04060106.xhp\n"
+"par_id3155020\n"
+"559\n"
"help.text"
-msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
-msgstr "Ví dụ, ô A1 chứa những giá trị định giới bằng dấu phẩu <item type=\"literal\">1,2,3,4</item>, và ô A2 chứa chuỗi văn bản <item type=\"literal\">A,B,C,D</item>."
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Chế_độ</emph> là một giá trị còn tùy chọn. Đưa ra giá trị Chế_độ khác với số không, và Số là Mức_thống_kê là âm, thì làm tròn dựa vào giá trị tuyệt đối của Số. Tham số này bị bỏ qua khi xuất dạng MS Excel, vì Excel không nhận ra tham số thứ ba."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id7242042\n"
+"04060106.xhp\n"
+"par_id3163792\n"
+"629\n"
"help.text"
-msgid "Select the cell or cells that you want to expand."
-msgstr "Hãy lựa chọn (những) ô bạn muốn mở rộng."
+msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Nếu cả hai tham số Số và Mức_thống_kê đều là âm và giá trị Chế_độ bằng số không hay không đưa a, thì có kết quả khác nhau trong hai chương trình $[officename] và Excel sau khi nhập vào. Vì vậy, nếu bạn xuất bảng tính sang Excel, hãy dùng Chế_độ=1 để thấy cùng một kết quả trong cả hai Excel và Calc."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id6999420\n"
+"04060106.xhp\n"
+"hd_id3145697\n"
+"338\n"
"help.text"
-msgid "Choose <emph>Data - Text to Columns</emph>."
-msgstr "Chọn mục trình đơn <emph>Dữ liệu > Văn bản sang Cột</emph>."
+msgid "Example"
+msgstr "Ví dụ"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id6334116\n"
+"04060106.xhp\n"
+"par_id3145710\n"
+"339\n"
"help.text"
-msgid "You see the Text to Columns dialog."
-msgstr "Bạn sẽ thấy hộp thoại <emph>Văn bản sang Cột</emph>."
+msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
+msgstr "<item type=\"input\">=CEILING(-11;-2)</item> trả về -10"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id9276406\n"
+"04060106.xhp\n"
+"par_id3145725\n"
+"340\n"
"help.text"
-msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
-msgstr "Hãy bật những tùy chọn phân cách thích hợp. Ô xem thử hiển thị nội dung ô hiện thời được chuyển dạng sang nhiều ô."
+msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+msgstr "<item type=\"input\">=CEILING(-11;-2;0)</item> trả về -10"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id8523819\n"
+"04060106.xhp\n"
+"par_id3145740\n"
+"341\n"
"help.text"
-msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
-msgstr "Bạn có thể lựa chọn một chiều rộng trường, sau đó nhấn vào thước đo trong ô xem thử để đặt các vị trí phân cách ô."
+msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+msgstr "<item type=\"input\">=CEILING(-11;-2;1)</item> trả về -12"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id1517380\n"
+"04060106.xhp\n"
+"bm_id3157762\n"
"help.text"
-msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
-msgstr "Bạn có thể lựa chọn hay nhập ký tự phân cách để xác định vị trí của mỗi điểm ngắt. Ký tự phân cách bị gỡ bỏ khỏi nội dung ô kết quả."
+msgid "<bookmark_value>PI function</bookmark_value>"
+msgstr "<bookmark_value>hàm Pi (π)</bookmark_value>"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id7110812\n"
+"04060106.xhp\n"
+"hd_id3157762\n"
+"343\n"
"help.text"
-msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
-msgstr "Trong mẫu thí dụ, bạn đặt dấu phẩy là ký tự phân cách. Hai ô A1 và B1 sẽ được mở rộng ra bốn ô. A1 chứa 1, A2 chứa 2, v.v."
+msgid "PI"
+msgstr "PI"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3157790\n"
+"344\n"
"help.text"
-msgid "AutoRefresh"
-msgstr "Tự động Cập nhật"
+msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PI\">Trả về 3,14159265358979, giá trị của hằng số toán học π đến 14 lần số.</ahelp>"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"bm_id3154515\n"
+"04060106.xhp\n"
+"hd_id3157809\n"
+"345\n"
"help.text"
-msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; tự động cập nhật vết</bookmark_value><bookmark_value>vết; tự động cập nhật</bookmark_value>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"hd_id3154515\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3157822\n"
+"346\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
-msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"Tự động Cập nhật\">Tự động Cập nhật</link>"
+msgid "PI()"
+msgstr "PI()"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"par_id3147264\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3157836\n"
+"347\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Tự động cập nhật tất cả các vết trên trang tính khi nào bạn sửa đổi công thức.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3152370\n"
+"348\n"
"help.text"
-msgid "WORKDAY"
-msgstr "WORKDAY"
+msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+msgstr "<item type=\"input\">=PI()</item> trả về 3,14159265358979."
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"bm_id3149012\n"
+"04060106.xhp\n"
+"bm_id3152418\n"
"help.text"
-msgid "<bookmark_value>WORKDAY function</bookmark_value>"
-msgstr "<bookmark_value>hàm WORKDAY</bookmark_value>"
+msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr "<bookmark_value>hàm MULTINOMIAL</bookmark_value>"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3149012\n"
-"186\n"
+"04060106.xhp\n"
+"hd_id3152418\n"
+"635\n"
"help.text"
-msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">Hàm WORKDAY</link></variable>"
+msgid "MULTINOMIAL"
+msgstr "MULTINOMIAL"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3149893\n"
-"187\n"
+"04060106.xhp\n"
+"par_id3152454\n"
+"636\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\">Kết quả là một số kiểu dữ liệu mà có thể được định dạng dạng ngày tháng. Vì vậy bạn thấy ngày tháng của một ngày cách <emph>ngày đầu</emph> một số <emph>ngày làm việc</emph> nào đó.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\">Trả về giai thừa của tổng các đối số chia cho tích các giai thừa của các đối số.</ahelp>"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3146944\n"
-"188\n"
+"04060106.xhp\n"
+"hd_id3155646\n"
+"637\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3154844\n"
-"189\n"
-"help.text"
-msgid "WORKDAY(StartDate; Days; Holidays)"
-msgstr "WORKDAY(Ngày_đầu; Ngày; Ngày_nghỉ)"
-
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3147469\n"
-"190\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "<emph>Ngày_đầu</emph> là ngày tháng từ đó cần tính. Nếu ngày đầu là một ngày làm việc, nó được bao gồm trong phép tính."
-
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3153038\n"
-"191\n"
+"04060106.xhp\n"
+"par_id3155660\n"
+"638\n"
"help.text"
-msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr "<emph>Ngày</emph> là số các ngày làm việc. Giá trị dương ngụ ý kết quả nằm sau ngày đầu, còn giá trị âm ngụ ý kết quả nằm trước ngày đầu."
+msgid "MULTINOMIAL(Number(s))"
+msgstr "MULTINOMIAL(Các_số)"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3150693\n"
-"192\n"
+"04060106.xhp\n"
+"par_id3155673\n"
+"639\n"
"help.text"
-msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "<emph>Ngày_nghỉ</emph> là danh sách các ngày nghỉ còn tùy chọn. Ngày nghỉ là ngày không đi làm. Hãy nhập một phạm vi chứa một ngày nghỉ mỗi ô."
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Số</emph> là một chuỗi đến 30 số."
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3150141\n"
-"193\n"
+"04060106.xhp\n"
+"hd_id3155687\n"
+"640\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3152782\n"
-"194\n"
-"help.text"
-msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "Đếm 17 ngày làm việc phía sau ngày 1, tháng 1/2001 thì tới ngày tháng nào? Nhập ngày đầu « 2001-12-01 » vào ô C3, và số các ngày làm việc vào ô D3. Phạm vi các ô F3 đến J3 chứa những ngày nghĩ Nô-en và Năm Mới (Phương Tây) này: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3146142\n"
-"195\n"
+"04060106.xhp\n"
+"par_id3155701\n"
+"641\n"
"help.text"
-msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr "=WORKDAY(C3;D3;F3:J3) trả về 2001-12-28. Định dạng số ngày tháng dãy theo một ngày tháng, v.d. theo định dạng NNăm-Th-Ng."
+msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
+msgstr "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> trả về 1260, nếu các ô F11 đến H11 đều chứa những giá trị <item type=\"input\">2</item>, <item type=\"input\">3</item> và <item type=\"input\">4</item>. Đây tương ứng với công thức « =(2+3+4)! / (2!*3!*4!) »."
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3155717\n"
"help.text"
-msgid "Select Database Range"
-msgstr "Chọn phạm vi cơ sở dữ liệu"
+msgid "<bookmark_value>POWER function</bookmark_value>"
+msgstr "<bookmark_value>hàm POWER</bookmark_value>"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"bm_id3145068\n"
+"04060106.xhp\n"
+"hd_id3155717\n"
+"350\n"
"help.text"
-msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
-msgstr "<bookmark_value>cơ sở dữ liệu; lựa chọn (Calc)</bookmark_value>"
+msgid "POWER"
+msgstr "POWER"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"hd_id3145068\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3159495\n"
+"351\n"
"help.text"
-msgid "Select Database Range"
-msgstr "Chọn phạm vi cơ sở dữ liệu"
+msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POTENZ\">Trả về một số tăng lũy thừa.</ahelp>"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"par_id3149655\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3159513\n"
+"352\n"
"help.text"
-msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
-msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Lựa chọn một phạm vi cơ sở dữ liệu mà bạn đã xác định dưới <link href=\"text/scalc/01/12010000.xhp\" name=\"Dữ liệu > Xác định Phạm vi\">Dữ liệu > Xác định Phạm vi</link>.</ahelp></variable>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"hd_id3153192\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3159526\n"
+"353\n"
"help.text"
-msgid "Ranges"
-msgstr "Phạm vi"
+msgid "POWER(Base; Exponent)"
+msgstr ""
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"par_id3154684\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3159540\n"
+"354\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Liệt kê những phạm vi cơ sở dữ liệu sẵn sàng. Để lựa chọn một phạm vi cơ sở dữ liệu nào đó, nhấn vào tên của nó, sau đó nhấn nút <emph>OK</emph>.</ahelp>"
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr "Trả về <emph>Cơ_số</emph> tăng lũy thừa <emph>Lũy_thừa</emph>."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id5081637\n"
"help.text"
-msgid "Delete Cells"
-msgstr "Xoá ô"
+msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgstr "Có thể làm cùng một kết quả bằng cách ùng toán tử mũ hoá « ^ »:"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"bm_id3153726\n"
+"04060106.xhp\n"
+"par_id9759514\n"
"help.text"
-msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; xoá ô bảng</bookmark_value><bookmark_value>cột; xoá</bookmark_value><bookmark_value>hàng; xoá</bookmark_value><bookmark_value>bảng tính; xoá ô bảng</bookmark_value><bookmark_value>xoá;ô bảng/hàng/cột</bookmark_value>"
+msgid "<item type=\"literal\">Base^Exponent</item>"
+msgstr "<item type=\"literal\">Cơ_số^Lũy_thừa</item>"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3153726\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3159580\n"
+"356\n"
"help.text"
-msgid "Delete Cells"
-msgstr "Xoá ô"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02160000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3154490\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3159594\n"
+"357\n"
"help.text"
-msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
-msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Xoá hoàn toàn các ô, hàng hoặc cột được chọn. Các ô dưới hoặc bên phải sẽ thế chỗ cho các ô bị xoá.</ahelp></variable> Lưu ý là các tuỳ chọn lúc xoá các ô sẽ được lưu và nạp lại trong lần gọi sau."
+msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
+msgstr "<item type=\"input\">=POWER(4;3)</item> trả về 64 (4 lũy thừa 3)."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3149121\n"
-"3\n"
+"04060106.xhp\n"
+"par_id1614429\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr "=4^3 cũng trả về 4 lũy thừa 3 (4³)."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150751\n"
-"4\n"
+"04060106.xhp\n"
+"bm_id3152651\n"
"help.text"
-msgid "This area contains options for specifying how sheets are displayed after deleting cells."
-msgstr "Phần này chứa các tuỳ chọn để chỉ định cách các bảng được hiển thị như thế nào sau khi xoá các ô."
+msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr "<bookmark_value>hàm SERIESSUM</bookmark_value>"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3155767\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3152651\n"
+"642\n"
"help.text"
-msgid "Shift cells up"
-msgstr "Dời ô lên trên"
+msgid "SERIESSUM"
+msgstr "SERIESSUM"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3153714\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3152688\n"
+"643\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Dịch các ô nằm bên dưới vào chỗ các ô vừa bị xoá.</ahelp>"
+msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+msgstr "<ahelp hid=\".\">Cộng lại những số hạng đầu tiên của một chuỗi lũy thừa.</ahelp>"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3156382\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3152708\n"
+"644\n"
"help.text"
-msgid "Shift cells left"
-msgstr "Dời ô sang trái"
+msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
+msgstr "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3154702\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id3152724\n"
+"645\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Dịch các ô bên phải vào thế chỗ cho các ô vừa bị xoá.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3146918\n"
-"9\n"
+"04060106.xhp\n"
+"par_idN11BD9\n"
"help.text"
-msgid "Delete entire row(s)"
-msgstr "Xoá toàn bộ hàng"
+msgid "SERIESSUM(X; N; M; Coefficients)"
+msgstr "SERIESSUM(X; N; M; Hệ_số)"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3148487\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3152737\n"
+"646\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteRows\">Sau khi chọn ít nhất 1 ô, xoá toàn bộ hàng tương ứng khỏi bảng.</ahelp>"
+msgid "<emph>X</emph> is the input value for the power series."
+msgstr "<emph>X</emph> là giá trị nhập cho chuỗi lũy thừa."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3155114\n"
-"11\n"
+"04060106.xhp\n"
+"par_id3144344\n"
+"647\n"
"help.text"
-msgid "Delete entire column(s)"
-msgstr "Xoá toàn bộ cột"
+msgid "<emph>N</emph> is the initial power"
+msgstr "<emph>N</emph> là lũy thừa đầu tiên"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150086\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3144357\n"
+"648\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteColumns\">Sau khi chọn ít nhất 1 ô, xoá toàn bộ cột tương ứng ra khỏi bảng.</ahelp>"
+msgid "<emph>M</emph> is the increment to increase N"
+msgstr "<emph>M</emph> Ià lượng gia theo đó cần tăng N"
-#: 02160000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3166424\n"
+"04060106.xhp\n"
+"par_id3144370\n"
+"649\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
-msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Xoá nội dung\">Xoá nội dung</link>"
+msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
+msgstr "<emph>Hệ số</emph> là một chuỗi các hệ số. Đối với mỗi hệ số, tổng chuỗi được kéo dài theo một phần."
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3144386\n"
"help.text"
-msgid "Page Break Preview"
-msgstr "Xem thử ngắt trang"
+msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm PRODUCT</bookmark_value><bookmark_value>số;nhân</bookmark_value><bookmark_value>nhân;số</bookmark_value>"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3151384\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3144386\n"
+"361\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem thử ngắt trang\">Xem thử ngắt trang</link>"
+msgid "PRODUCT"
+msgstr "PRODUCT"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3150792\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144414\n"
+"362\n"
"help.text"
-msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
-msgstr "<ahelp hid=\".uno:PagebreakMode\">Hiển thị các chỗ ngắt trang và vùng in ra trong bảng. Chọn lệnh <emph>Xem > Chuẩn</emph> để tắt chế độ này.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PRODUKT\">Nhận với nhau tất cả các số đưa ra dạng đối số, sau đó trả về tích.</ahelp>"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3153877\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3144433\n"
+"363\n"
"help.text"
-msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
-msgstr "Trình đơn ngữ cảnh của ô xem thử chỗ ngắt trang chứa các chức năng để chỉnh sửa các ngắt trang, gồm có các tùy chọn sau:"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3154731\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3144446\n"
+"364\n"
"help.text"
-msgid "Delete All Manual Breaks"
-msgstr "Xoá mọi chỗ ngắt tự làm"
+msgid "PRODUCT(Number1; Number2; ...; Number30)"
+msgstr "PRODUCT(Số1; Số2; ...; Số30)"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3149400\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3144460\n"
+"365\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Xoá tất cả các ngắt trang đã tạo trong bảng hiện thời.</ahelp>"
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
+msgstr "<emph>Số1 … Số30</emph> là đến 30 đối số làm tích cần tính."
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3155067\n"
-"18\n"
+"04060106.xhp\n"
+"par_id1589098\n"
"help.text"
-msgid "Add Print Range"
-msgstr "Thêm phạm vi in"
+msgid "PRODUCT returns number1 * number2 * number3 * ..."
+msgstr "PRODUCT trả về số1 * số2 * số3 * ..."
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3155764\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id3144480\n"
+"366\n"
"help.text"
-msgid "Adds the selected cells to print ranges."
-msgstr "Thêm các ô được chọn vào vùng in."
+msgid "Example"
+msgstr "Ví dụ"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3144494\n"
+"367\n"
"help.text"
-msgid "TIME"
-msgstr "TIME"
+msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+msgstr "<item type=\"input\">=PRODUCT(2;3;4)</item> trả về 24."
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"bm_id3154073\n"
+"04060106.xhp\n"
+"bm_id3160340\n"
"help.text"
-msgid "<bookmark_value>TIME function</bookmark_value>"
-msgstr "<bookmark_value>hàm TIME</bookmark_value>"
+msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm SUMSQ</bookmark_value><bookmark_value>phép cộng số bình phương</bookmark_value><bookmark_value>tổng;các số bình phương</bookmark_value>"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3154073\n"
-"149\n"
+"04060106.xhp\n"
+"hd_id3160340\n"
+"369\n"
"help.text"
-msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
-msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">Hàm TIME</link></variable>"
+msgid "SUMSQ"
+msgstr "SUMSQ"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3145762\n"
-"150\n"
+"04060106.xhp\n"
+"par_id3160368\n"
+"370\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
-msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">Hàm TIME trả về giá trị thời gian hiện thời từ các giá trị giờ, phút và giây.</ahelp> Hàm này có thể được dùng để chuyển đổi một thời gian dựa vào ba giá trị đó sang một giá trị thời gian thập phân."
+msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">Muốn tính tổng các bình phương của số (cộng lại các bình phương của các đối số) thì nhập chúng vào những trường văn bản.</ahelp>"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3155550\n"
-"151\n"
+"04060106.xhp\n"
+"hd_id3160388\n"
+"371\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3154584\n"
-"152\n"
-"help.text"
-msgid "TIME(Hour; Minute; Second)"
-msgstr "TIME(Giờ; Phút; Giây)"
-
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3152904\n"
-"153\n"
-"help.text"
-msgid "Use an integer to set the <emph>Hour</emph>."
-msgstr "Đặt <emph>Giờ</emph> là một số nguyên."
-
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3151346\n"
-"154\n"
+"04060106.xhp\n"
+"par_id3160402\n"
+"372\n"
"help.text"
-msgid "Use an integer to set the <emph>Minute</emph>."
-msgstr "Đặt <emph>Phút</emph> là một số nguyên."
+msgid "SUMSQ(Number1; Number2; ...; Number30)"
+msgstr "SUMSQ(Số1; Số2; ...; Số30)"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3151366\n"
-"155\n"
+"04060106.xhp\n"
+"par_id3160415\n"
+"373\n"
"help.text"
-msgid "Use an integer to set the <emph>Second</emph>."
-msgstr "Đặt <emph>Giây</emph> là một số nguyên."
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
+msgstr "<emph>Số1 đến 30</emph> là đến 30 đối số có bình phương cần cộng lại."
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3145577\n"
-"156\n"
+"04060106.xhp\n"
+"hd_id3160436\n"
+"374\n"
"help.text"
-msgid "Examples"
+msgid "Example"
msgstr "Ví dụ"
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3156076\n"
-"157\n"
-"help.text"
-msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
-msgstr "<item type=\"input\">=TIME(0;0;0)</item> trả về 00:00:00"
-
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3156090\n"
-"158\n"
-"help.text"
-msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
-msgstr "<item type=\"input\">=TIME(4;20;4)</item> trả về 04:20:04"
-
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3160449\n"
+"375\n"
"help.text"
-msgid "DAYS360"
-msgstr "DAYS360"
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
+msgstr "Nếu bạn nhập những số <item type=\"input\">2</item>; <item type=\"input\">3</item> và <item type=\"input\">4</item> vào những hộp văn bản Số1, 2, 3 thì trả về 29."
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"bm_id3148555\n"
+"04060106.xhp\n"
+"bm_id3158247\n"
"help.text"
-msgid "<bookmark_value>DAYS360 function</bookmark_value>"
-msgstr "<bookmark_value>hàm DAYS360</bookmark_value>"
+msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
+msgstr "<bookmark_value>hàm MOD</bookmark_value><bookmark_value>phần dư của phép chia</bookmark_value>"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148555\n"
-"124\n"
+"04060106.xhp\n"
+"hd_id3158247\n"
+"387\n"
"help.text"
-msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
-msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">Hàm DAYS360</link></variable>"
+msgid "MOD"
+msgstr "MOD"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3156032\n"
-"125\n"
+"04060106.xhp\n"
+"par_id3158276\n"
+"388\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">Trả về hiệu của hai ngày tháng dựa vào năm 360-ngày được dùng trong phép tính tiền lãi.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_REST\">Trả về phần dư khi số nguyên này chia cho số nguyên khác.</ahelp>"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3155347\n"
-"126\n"
+"04060106.xhp\n"
+"hd_id3158294\n"
+"389\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3155313\n"
-"127\n"
+"04060106.xhp\n"
+"par_id3158308\n"
+"390\n"
"help.text"
-msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
-msgstr "DAYS360(\"Ngày1\"; \"Ngày2\"; Kiểu)"
+msgid "MOD(Dividend; Divisor)"
+msgstr "MOD(Số_bị_chia; Ước_số)"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3145263\n"
-"128\n"
+"04060106.xhp\n"
+"par_id3158321\n"
+"391\n"
"help.text"
-msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
-msgstr "Nếu <emph>Ngày2</emph> sớm hơn <emph>Ngày1</emph>, thì hàm sẽ trả về một số âm."
+msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
+msgstr "Đối với đối số số nguyên, hàm này trả về « Số bị chia mod Ước số », tức là phần dư khi <emph>Số bị chia</emph> bị chia cho <emph>Ước số</emph>."
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3151064\n"
-"129\n"
+"04060106.xhp\n"
+"par_id3158341\n"
+"392\n"
"help.text"
-msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
-msgstr "Đối số tùy chọn <emph>Kiểu</emph> xác định kiểu phép tính hiệu. Nếu Kiểu=0, hoặc nếu không đưa ra đối số này, thì dùng phương pháp Mỹ (NASD, Hiệp hội Quốc gia Nhà buôn bán Chứng khoán). Nếu Kiểu <> 0, thì dùng phương pháp Âu."
+msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
+msgstr "Hàm này được thực hiện dưới dạng <item type=\"literal\">Số_bị_chia - Ước_số * INT(Số_bị_chia/Ước_số)</item> ; và công thức này cung cấp kết quả nếu các đối số khác số nguyên."
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148641\n"
-"130\n"
+"04060106.xhp\n"
+"hd_id3158361\n"
+"393\n"
"help.text"
-msgid "Examples"
+msgid "Example"
msgstr "Ví dụ"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3156348\n"
-"132\n"
+"04060106.xhp\n"
+"par_id3158374\n"
+"394\n"
"help.text"
-msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
-msgstr "=DAYS360(\"2000-01-01\";NOW()) trả về số các ngày trả tiền lãi từ ngày 1, tháng 1/2000 đến ngày hôm nay."
+msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
+msgstr "<item type=\"input\">=MOD(22;3)</item> trả về 1, phân dư khi 22 bị chia cho 3."
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1278420\n"
"help.text"
-msgid "Sort"
-msgstr "Sắp xếp"
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr "<item type=\"input\">=MOD(11.25;2.5)</item> trả về 1.25."
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"hd_id3150275\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3144592\n"
"help.text"
-msgid "Sort"
-msgstr "Sắp xếp"
+msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
+msgstr "<bookmark_value>hàm QUOTIENT</bookmark_value><bookmark_value>phép chia</bookmark_value>"
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3144592\n"
+"652\n"
"help.text"
-msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
-msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sắp xếp những hàng được chọn tùy theo các điều kiện bạn ghi rõ.</ahelp></variable> $[officename] tự động nhận ra và lựa chọn các phạm vi cơ sở dữ liệu."
+msgid "QUOTIENT"
+msgstr "QUOTIENT"
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"par_id3147428\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3144627\n"
+"653\n"
"help.text"
-msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
-msgstr "Bạn không thể sắp xếp dữ liệu nếu tùy chọn <link href=\"text/shared/01/02230000.xhp\" name=\"Ghi thay đổi\">Ghi thay đổi</link> đã được bật."
+msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Trả về phần số nguyên của một phép chia.</ahelp>"
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3144646\n"
+"654\n"
"help.text"
-msgid "Remove"
-msgstr "Bỏ"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"hd_id3153562\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3144659\n"
+"655\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
-msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Bỏ\">Bỏ</link>"
+msgid "QUOTIENT(Numerator; Denominator)"
+msgstr "QUOTIENT(Tử_số; Mẫu_số)"
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060106.xhp\n"
+"par_id9038972\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeletePrintArea\">Gỡ bỏ vùng in đã xác định.</ahelp>"
+msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+msgstr "Trả về phần số nguyên của <emph>Tử_số</emph> chia cho <emph>Mẫu_số</emph>."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id7985168\n"
"help.text"
-msgid "Fill Series"
-msgstr "Điền chuỗi"
+msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
+msgstr "Hàm QUOTIENT tương đương với <item type=\"literal\">INT(tử_số/mẫu_số)</item>, trừ nó có thể thông báo lỗi có mã lỗi khác."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148664\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3144674\n"
+"656\n"
"help.text"
-msgid "Fill Series"
-msgstr "Điền chuỗi"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3148797\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144687\n"
+"657\n"
"help.text"
-msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
-msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Tự động tạo các chuỗi giá trị với các tuỳ chọn trong hộp thoại này. Hãy đặt các tuỳ chọn như hướng, độ tăng/giảm, đơn vị thời gian và kiểu chuỗi.</ahelp></variable>"
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgstr "<item type=\"input\">=QUOTIENT(11;3)</item> trả về 3. Phần dư 2 bị mất."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3146976\n"
-"41\n"
+"04060106.xhp\n"
+"bm_id3144702\n"
"help.text"
-msgid "Before filling a series, first select the cell range."
-msgstr "Hãy chọn phạm vi ô trước khi điền một chuỗi số."
+msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
+msgstr "<bookmark_value>hàm RADIANS</bookmark_value><bookmark_value>chuyển đổi;độ sang radian</bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3145748\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3144702\n"
+"377\n"
"help.text"
-msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
-msgstr "Để tự động tiếp tục một chuỗi dùng luật giả định, hãy chọn mục <emph>Tự động điền</emph> sau khi mở hộp thoại <emph>Điền chuỗi</emph>."
+msgid "RADIANS"
+msgstr "RADIANS"
-#: 02140600.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3147435\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3158025\n"
+"378\n"
"help.text"
-msgid "Direction"
-msgstr "Hướng"
+msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RAD\">Chuyển đổi độ sang radian.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3154729\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3158042\n"
+"379\n"
"help.text"
-msgid "Determines the direction of series creation."
-msgstr "Xác định hướng tạo ra chuỗi số."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3145253\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3158055\n"
+"380\n"
"help.text"
-msgid "Down"
-msgstr "Xuống"
+msgid "RADIANS(Number)"
+msgstr "RADIANS(Số)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3155418\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3158069\n"
+"381\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Tạo một chuỗi hướng xuống trong phạm vi ô đã chọn đối với cột dùng độ tăng giảm đã định cho tới khi đến giá trị cuối.</ahelp>"
+msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
+msgstr "<emph>Số</emph> là góc theo độ cần chuyển đổi sang radian."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3155738\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id876186\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149402\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3939634\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Tạo một chuỗi chạy từ trái sang phải trong phạm vi ô đã chọn, dùng độ tăng giảm đã định, cho tới khi đạt giá trị cuối.</ahelp>"
+msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
+msgstr "<item type=\"input\">=RADIANS(90)</item> trả về 1,5707963267949, π/2 theo mức độ chính xác của Calc."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3146972\n"
-"10\n"
+"04060106.xhp\n"
+"bm_id3158121\n"
"help.text"
-msgid "Up"
-msgstr "Lên"
+msgid "<bookmark_value>ROUND function</bookmark_value>"
+msgstr "<bookmark_value>hàm ROUND</bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153711\n"
-"11\n"
+"04060106.xhp\n"
+"hd_id3158121\n"
+"398\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Tạo một chuỗi hướng lên trên trong phạm vi ô đã chọn, dùng độ tăng giảm đã cho, tới khi đạt đến giá trị cuối.</ahelp>"
+msgid "ROUND"
+msgstr "ROUND"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3153764\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3158150\n"
+"399\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Làm tròn một số thành một số lần số nào đó.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3156382\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3158169\n"
+"400\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Tạo một chuỗi chạy từ phải sang trái trong phạm vi ô đã chọn, dùng độ tăng giảm được cho, tới khi đạt đến giá trị cuối.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3147344\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3158182\n"
+"401\n"
"help.text"
-msgid "Series Type"
-msgstr "Kiểu chuỗi"
+msgid "ROUND(Number; Count)"
+msgstr "ROUND(Số; Đếm)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149257\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3158196\n"
+"402\n"
"help.text"
-msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
-msgstr "Đặt kiểu chuỗi. Chọn giữa <emph>Cấp số cộng, Cấp số nhân, Ngày tháng</emph> và <emph>Tự động điền</emph>."
+msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
+msgstr "Trả về <emph>Số</emph> được làm tròn thành <emph>Đếm</emph> lần số. Đếm bị bỏ sót hay là số không thì hàm làm tròn thành số nguyên gần nhất. Đếm âm thì hàm làm tròn thành 10, 100, 1000 v.v. gần nhất."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148488\n"
-"16\n"
+"04060106.xhp\n"
+"par_id599688\n"
"help.text"
-msgid "Linear"
-msgstr "Tuyến"
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr "Hàm này làm tròn thành số gần nhất. So sánh hai hàm ROUNDDOWN (làm tròn xuống) và ROUNDUP (làm tròn lên)."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3159238\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3145863\n"
+"404\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Tạo một cấp số cộng với công sai được cho và một giá trị cuối.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149210\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3145876\n"
+"405\n"
"help.text"
-msgid "Growth"
-msgstr "Cấp số nhân"
+msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+msgstr "<item type=\"input\">=ROUND(2.348;2)</item> trả về 2.35"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150364\n"
-"19\n"
+"04060106.xhp\n"
+"par_id3145899\n"
+"406\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Tạo một cấp số nhân với công bội được cho và một giá trị cuối.</ahelp>"
+msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
+msgstr "<item type=\"input\">=ROUND(-32.4834;3)</item> trả về -32.483. Thay đổi định dạng ô để thấy tất cả số thập phân."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149528\n"
-"20\n"
+"04060106.xhp\n"
+"par_id1371501\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr "<item type=\"input\">=ROUND(2.348;0)</item> trả về 2."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150887\n"
-"21\n"
+"04060106.xhp\n"
+"par_id4661702\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Tạo một chuỗi ngày tháng dùng độ tăng giảm được cho và một ngày cuối.</ahelp>"
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
+msgstr "<item type=\"input\">=ROUND(2.5)</item> trả về 3."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3150202\n"
-"22\n"
+"04060106.xhp\n"
+"par_id7868892\n"
"help.text"
-msgid "AutoFill"
-msgstr "Tự động điền vào"
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=ROUND(987.65;-2)</item> trả về 1000."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3156288\n"
-"23\n"
+"04060106.xhp\n"
+"bm_id3145991\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
-msgstr ""
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
+msgstr "<bookmark_value>hàm ROUNDDOWN</bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3155811\n"
+"04060106.xhp\n"
+"hd_id3145991\n"
"24\n"
"help.text"
-msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
-msgstr "Chức năng Tự động điền sẽ điền nốt chuỗi giá trị bằng mẫu được cho. Chuỗi 1,3,5 sẽ được điền tiếp với các giá trị 7,9,11,13, v.v... Cách các chuỗi ngày tháng và thời gian sẽ được viết tiếp sẽ phụ thuộc từng trường hợp; ví dụ, sau 01.01.99 và 15.01.99, các giá trị được điền tiếp theo sẽ cách nhau 14 ngày."
+msgid "ROUNDDOWN"
+msgstr "ROUNDDOWN"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148700\n"
+"04060106.xhp\n"
+"par_id3146020\n"
"25\n"
"help.text"
-msgid "Unit of Time"
-msgstr "Đơn vị thời gian"
+msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Làm tròn một số xuống, về số 0, theo một độ chính xác nào đó.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153308\n"
+"04060106.xhp\n"
+"hd_id3146037\n"
"26\n"
"help.text"
-msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
-msgstr "Trong phần này bạn có thể đặt đơn vị thời gian mình muốn dùng. Phần này chỉ hoạt động nếu tuỳ chọn <emph>Ngày tháng</emph> đã được chọn trong phần <emph>Kiểu chuỗi</emph>."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148868\n"
+"04060106.xhp\n"
+"par_id3146051\n"
"27\n"
"help.text"
-msgid "Day"
-msgstr "Ngày"
+msgid "ROUNDDOWN(Number; Count)"
+msgstr "ROUNDDOWN(Số; Đếm)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3148605\n"
+"04060106.xhp\n"
+"par_id3146064\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo ra một chuỗi gồm đủ 7 ngày trong tuần.</ahelp>"
+msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
+msgstr "Trả về <emph>Số</emph> được làm tròn xuống (về số 0) theo <emph>Đếm</emph> lần số. « Đếm » bị bỏ sót hay là số 0 thì hàm làm tròn xuống một số nguyên. « Đếm » là số âm thì hàm làm tròn xuống 10, 100, 1000 v.v. gần nhất."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3144771\n"
-"29\n"
+"04060106.xhp\n"
+"par_id2188787\n"
"help.text"
-msgid "Weekday"
-msgstr "Ngày làm"
+msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgstr "Hàm này làm tròn thành số 0. Xem thêm hàm ROUNDUP và ROUND."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150108\n"
+"04060106.xhp\n"
+"hd_id3163164\n"
"30\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo ra chuỗi chỉ có 5 ngày, bỏ qua Thứ bảy và Chủ nhật.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3154957\n"
+"04060106.xhp\n"
+"par_id3163178\n"
"31\n"
"help.text"
-msgid "Month"
-msgstr "Tháng"
+msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+msgstr "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> trả về 1.23."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149126\n"
-"32\n"
+"04060106.xhp\n"
+"par_id5833307\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo ra một chuỗi ngày có các tháng liên tiếp nhau.</ahelp>"
+msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+msgstr "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> trả về 45."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3152870\n"
-"33\n"
+"04060106.xhp\n"
+"par_id7726676\n"
"help.text"
-msgid "Year"
-msgstr "Năm"
+msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+msgstr "<item type=\"input\">=ROUNDDOWN(-45.67)</item> trả về -45."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3151300\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3729361\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Dùng kiểu chuỗi <emph>Ngày tháng</emph> và tuỳ chọn này để tạo chuỗi các ngày có các năm liên tiếp nhau.</ahelp>"
+msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+msgstr "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> trả về 900."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3154762\n"
-"35\n"
+"04060106.xhp\n"
+"bm_id3163268\n"
"help.text"
-msgid "Start Value"
-msgstr "Giá trị đầu"
+msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
+msgstr "<bookmark_value>hàm ROUNDUP</bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149381\n"
-"36\n"
+"04060106.xhp\n"
+"hd_id3163268\n"
+"140\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Đặt giá trị bắt đầu cho chuỗi.</ahelp> Dùng giá trị số, ngày tháng hoặc thời gian."
+msgid "ROUNDUP"
+msgstr "ROUNDUP"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3153013\n"
-"37\n"
+"04060106.xhp\n"
+"par_id3163297\n"
+"141\n"
"help.text"
-msgid "End Value"
-msgstr "Giá trị cuối"
+msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Làm tròn một số lên, về hướng khác với số 0, đến một mức độ chính xác nào đó.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153487\n"
-"38\n"
+"04060106.xhp\n"
+"hd_id3163315\n"
+"142\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Đặt giá trị cuối cho chuỗi số..</ahelp> Dùng số, ngày tháng hoặc thời gian."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149312\n"
-"39\n"
+"04060106.xhp\n"
+"par_id3163328\n"
+"143\n"
"help.text"
-msgid "Increment"
-msgstr "Tăng/Giảm dần"
+msgid "ROUNDUP(Number; Count)"
+msgstr "ROUNDUP(Số; Đếm)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3154739\n"
-"40\n"
+"04060106.xhp\n"
+"par_id3163342\n"
+"144\n"
"help.text"
-msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
-msgstr "Ô \"Tăng/giảm dần\" chỉ định giá trị cần cộng thêm vào mỗi phần tử trong chuỗi số.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Đặt giá trị bước để tăng các phần tử trong chuỗi lên.</ahelp> Các mục này chỉ được tạo ra nếu kiểu chuỗi cấp số cộng, cấp số nhân hoặc ngày tháng được chọn."
+msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
+msgstr "Trả về <emph>Số</emph> được làm tròn lên (về hướng khác với số 0) đến <emph>Đếm</emph> lần số. Đếm bị bỏ sót hay là số không thì hàm làm tròn lên một số nguyên. Đếm âm thì hàm làm tròn lên 10, 100, 1000 v.v. kế tiếp."
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id9573961\n"
"help.text"
-msgid "Validity"
-msgstr "Tính hợp lệ"
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr "Hàm này làm tròn về hướng khác với số không. So sánh hai hàm ROUNDDOWN (làm tròn xuống) và ROUNDUP (làm tròn lên)."
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"hd_id3156347\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3163381\n"
+"146\n"
"help.text"
-msgid "Validity"
-msgstr "Tính hợp lệ"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"par_id3153252\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144786\n"
+"147\n"
"help.text"
-msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
-msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Định nghĩa dữ liệu nào hợp lệ co một ô hay phạm vi ô đã chọn.</ahelp></variable>"
+msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+msgstr "<item type=\"input\">=ROUNDUP(1.1111;2)</item> trả về 1.12."
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"par_idN105D1\n"
+"04060106.xhp\n"
+"par_id7700430\n"
"help.text"
-msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
-msgstr "Bạn cũng có thể chèn một hộp liệt kê từ thanh công cụ <emph>Điều khiển</emph> và liên kết hộp liệt kê với một ô. Bằng cách đó, bạn có thể ghi rõ những giá trị hợp lệ trên trang <link href=\"text/shared/02/01170102.xhp\">Dữ liệu</link> của cửa sổ thuộc tính hộp liệt kê."
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr "<item type=\"input\">=ROUNDUP(1.2345;1)</item> trả về 1.3."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1180455\n"
"help.text"
-msgid "Formula Bar"
-msgstr "Thanh Công thức"
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr "<item type=\"input\">=ROUNDUP(45.67;0)</item> trả về 46."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"bm_id3147264\n"
+"04060106.xhp\n"
+"par_id3405560\n"
"help.text"
-msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
-msgstr "<bookmark_value>thanh công thức; bảng tính</bookmark_value><bookmark_value>bảng tính; thanh công thức</bookmark_value>"
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr "<item type=\"input\">=ROUNDUP(-45.67)</item> trả về -46."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3409527\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
-msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Thanh Công thức\">Thanh Công thức</link>"
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=ROUNDUP(987.65;-2)</item> trả về 1000."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3156423\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id5256537\n"
"help.text"
-msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
-msgstr "<ahelp hid=\".uno:InputLineVisible\">Hiển thị hoặc ẩn đi thanh Công thức, dùng để nhập và sửa các công thức.</ahelp> Thanh Công thức là công cụ cực kỳ quan trọng khi làm việc với các bảng tính."
+msgid "<bookmark_value>SEC function</bookmark_value>"
+msgstr "<bookmark_value>hàm SKEW</bookmark_value>"
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3154686\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id5187204\n"
+"149\n"
"help.text"
-msgid "To hide the Formula Bar, unmark the menu item."
-msgstr "Để ẩn đi thanh Công thức, hãy bỏ chọn mục này."
+msgid "SEC"
+msgstr ""
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3145787\n"
-"3\n"
+"04060106.xhp\n"
+"par_id9954962\n"
+"150\n"
"help.text"
-msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
-msgstr "Nếu thanh công thức bị ẩn đi, bạn vẫn có thể sửa các ô bằng cách bật chế độ sửa với phím F2. Sau khi sửa các ô, hãy chấp nhận các thay đổi bằng cách nhấn Enter, hoặc xoá công thức bằng cách nhấn Esc. Nhấn Esc để thoát khỏi chế độ sửa."
+msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgstr ""
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id422243\n"
+"151\n"
"help.text"
-msgid "Value Highlighting"
-msgstr "Tô sáng giá trị"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 03080000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"bm_id3151384\n"
+"04060106.xhp\n"
+"par_id2055913\n"
+"152\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; tô sáng giá trị</bookmark_value><bookmark_value>giá trị;tô sáng</bookmark_value><bookmark_value>tô sáng; giá trị trong bảng</bookmark_value>"
+msgid "SEC(Number)"
+msgstr "SIN(Số)"
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"hd_id3151384\n"
+"04060106.xhp\n"
+"par_id9568170\n"
+"153\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
-msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Tô sáng giá trị\">Tô sáng giá trị</link>"
+msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
+msgstr "Trả về sin (lượng giác) của <emph>Số</emph>, góc theo radian."
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3154366\n"
+"04060106.xhp\n"
+"par_id9047465\n"
"help.text"
-msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
-msgstr ""
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgstr "Để trả về sin của một góc theo độ, hãy dùng hàm RADIANS."
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3125863\n"
+"04060106.xhp\n"
+"hd_id9878918\n"
+"154\n"
"help.text"
-msgid "To remove the highlighting, unmark the menu entry."
-msgstr "Để xoá bỏ phần tô sáng, hãy bỏ dấu kiểm của mục này."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3145785\n"
+"04060106.xhp\n"
+"par_id6935513\n"
+"155\n"
"help.text"
-msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
+msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
msgstr ""
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"par_id3153188\n"
-"help.text"
-msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
-msgstr "Nếu bật chức năng này, các màu mà bạn đặt trong tài liệu sẽ không được hiển thị. Khi bạn tắt chức năng này, các màu do bạn chọn sẽ lại hiện lên."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"tit\n"
-"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Hàm Tài Chính (Phần 3)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146780\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3954287\n"
+"156\n"
"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Hàm Tài Chính (Phần 3)"
+msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
+msgstr "<item type=\"input\">=COS(RADIANS(60))</item> trả về 0,5, cosin của 60 độ."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3145112\n"
+"04060106.xhp\n"
+"bm_id840005\n"
"help.text"
-msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
-msgstr "<bookmark_value>hàm ODDFPRICE</bookmark_value><bookmark_value>giá;chứng khoán có lãi suất đầu tiên không đều đặn</bookmark_value>"
+msgid "<bookmark_value>SECH function</bookmark_value>"
+msgstr "<bookmark_value>hàm SEARCH</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145112\n"
-"71\n"
+"04060106.xhp\n"
+"hd_id8661934\n"
+"159\n"
"help.text"
-msgid "ODDFPRICE"
-msgstr "ODDFPRICE"
+msgid "SECH"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147250\n"
-"72\n"
+"04060106.xhp\n"
+"par_id408174\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Tính giá mỗi 100 đơn vị tiền tệ mệnh giá của một chứng khoán, nếu ngày trả tiền lãi đầu tiên không xảy ra đều đăn.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Trả về sin hyperbol của một số.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153074\n"
-"73\n"
+"04060106.xhp\n"
+"hd_id875988\n"
+"161\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146098\n"
-"74\n"
-"help.text"
-msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr "ODDFPRICE(Thanh_toán; Đến_hạn; Cấp; Phiếu_lãi_đầu; Lãi_suất; Lợi; Trả_hết; Tần_số; Cơ_bản)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153337\n"
-"75\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149051\n"
-"76\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147297\n"
-"77\n"
-"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "<emph>Cấp</emph> là ngày tháng đã cấp chứng khoán đó."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150393\n"
-"78\n"
-"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
-msgstr "<emph>Phiếu_lãi_đầu</emph> là ngày trả tiền lãi thứ nhất của chứng khoán."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147402\n"
-"79\n"
+"04060106.xhp\n"
+"par_id4985391\n"
+"162\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
+msgid "SECH(Number)"
+msgstr "SINH(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151387\n"
-"80\n"
+"04060106.xhp\n"
+"par_id1952124\n"
+"163\n"
"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>Lợi</emph> là tổng lợi tức hàng năm của chứng khoán."
+msgid "Returns the hyperbolic secant of <emph>Number</emph>."
+msgstr "Trả về sin hyperbol của <emph>Số</emph>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153023\n"
-"81\n"
+"04060106.xhp\n"
+"hd_id9838764\n"
+"164\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060118.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150539\n"
-"82\n"
+"04060106.xhp\n"
+"par_id1187764\n"
+"165\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
+msgstr "<item type=\"input\">=SINH(0)</item> trả về 0, sin hyperbol của 0."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3157871\n"
+"04060106.xhp\n"
+"bm_id3144877\n"
"help.text"
-msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
-msgstr "<bookmark_value>hàm ODDFYIELD</bookmark_value>"
+msgid "<bookmark_value>SIN function</bookmark_value>"
+msgstr "<bookmark_value>hàm SIN</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3157871\n"
-"87\n"
+"04060106.xhp\n"
+"hd_id3144877\n"
+"408\n"
"help.text"
-msgid "ODDFYIELD"
-msgstr "ODDFYIELD"
+msgid "SIN"
+msgstr "SIN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147414\n"
-"88\n"
+"04060106.xhp\n"
+"par_id3144906\n"
+"409\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Tính lợi tức của một chứng khoán nếu ngày trả tiền lãi thứ nhất không xảy ra đều đặn.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SIN\">Trả về sin của góc đã cho (theo radian).</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150651\n"
-"89\n"
+"04060106.xhp\n"
+"hd_id3144923\n"
+"410\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152982\n"
-"90\n"
-"help.text"
-msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
-msgstr "ODDFYIELD(Thanh_toán; Đến_hạn; Cấp; Phiếu_lãi_đầu; Lãi_suất; Giá; Trả_hết; Tần_số; Cơ_bản)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3157906\n"
-"91\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150026\n"
-"92\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149012\n"
-"93\n"
+"04060106.xhp\n"
+"par_id3144937\n"
+"411\n"
"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "<emph>Cấp</emph> là ngày tháng đã cấp chứng khoán đó."
+msgid "SIN(Number)"
+msgstr "SIN(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148725\n"
-"94\n"
+"04060106.xhp\n"
+"par_id3144950\n"
+"412\n"
"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
-msgstr "<emph>Phiếu_lãi_đầu</emph> là kỳ trả tiền lãi thứ nhất của chứng khoán."
+msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgstr "Trả về sin (lượng giác) của <emph>Số</emph>, góc theo radian."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150465\n"
-"95\n"
+"04060106.xhp\n"
+"par_id8079470\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
+msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgstr "Để trả về sin của một góc theo độ, hãy dùng hàm RADIANS."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146940\n"
-"96\n"
+"04060106.xhp\n"
+"hd_id3144969\n"
+"413\n"
"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "<emph>Giá</emph> là giá của chứng khoán."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149893\n"
-"97\n"
+"04060106.xhp\n"
+"par_id3144983\n"
+"414\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
+msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+msgstr "<item type=\"input\">=SIN(PI()/2)</item> trả về 1, sin của π/2 radian."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148888\n"
-"98\n"
+"04060106.xhp\n"
+"par_id3916440\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr "<item type=\"input\">=SIN(RADIANS(30))</item> trả về 0,5, sin của 30 độ."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3153933\n"
+"04060106.xhp\n"
+"bm_id3163397\n"
"help.text"
-msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
-msgstr "<bookmark_value>hàm ODDLPRICE</bookmark_value>"
+msgid "<bookmark_value>SINH function</bookmark_value>"
+msgstr "<bookmark_value>hàm SINH</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153933\n"
-"103\n"
+"04060106.xhp\n"
+"hd_id3163397\n"
+"418\n"
"help.text"
-msgid "ODDLPRICE"
-msgstr "ODDLPRICE"
+msgid "SINH"
+msgstr "SINH"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145145\n"
-"104\n"
+"04060106.xhp\n"
+"par_id3163426\n"
+"419\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Tính giá mỗi 100 đơn vị tiền tệ mệnh giá của một chứng khoán, nếu ngày trả tiền lãi cuối cùng không xảy ra đều đặn.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Trả về sin hyperbol của một số.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3152784\n"
-"105\n"
+"04060106.xhp\n"
+"hd_id3163444\n"
+"420\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155262\n"
-"106\n"
-"help.text"
-msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr "ODDLPRICE(Thanh_toán; Đến_hạn; Phiếu_lãi_cuối; Lãi_suất; Lợi; Trả_hết; Tần_số; Cơ_bản)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149689\n"
-"107\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh toán</emph> là ngày tháng đã mua chứng khoán."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148753\n"
-"108\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150861\n"
-"109\n"
-"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "<emph>Phiếu_lãi_cuối</emph> là ngày trả tiền lãi cuối cùng của chứng khoán."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155831\n"
-"110\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153328\n"
-"111\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>Lợi</emph> là tổng lợi tức hàng năm của chứng khoán."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149186\n"
-"112\n"
+"04060106.xhp\n"
+"par_id3163457\n"
+"421\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
+msgid "SINH(Number)"
+msgstr "SINH(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149726\n"
-"113\n"
+"04060106.xhp\n"
+"par_id3163471\n"
+"422\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "Returns the hyperbolic sine of <emph>Number</emph>."
+msgstr "Trả về sin hyperbol của <emph>Số</emph>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153111\n"
-"114\n"
+"04060106.xhp\n"
+"hd_id3163491\n"
+"423\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152999\n"
-"115\n"
-"help.text"
-msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
-msgstr "Ngày thanh toán: ngày 7, tháng 2/1999; ngày đến hạn: ngày 15, tháng 6/1999; phiếu lãi cuối cùng: ngày 15, tháng 10/1998. Lãi suất: 3,75 phần trăm; lợi tức: 4,05 phần trăm; giá trị trả hết: 100 đơn vị tiền tệ; tần số trả tiền: nửa năm (2); cơ bản: 0."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148567\n"
-"116\n"
-"help.text"
-msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
-msgstr "Giá mỗi 100 đơn vị tiền tệ của một chứng khoán, mà có một ngày trả tiền lãi cuối cùng không đều đặn, được tính như theo đây:"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150332\n"
-"117\n"
+"04060106.xhp\n"
+"par_id3163504\n"
+"424\n"
"help.text"
-msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
-msgstr "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) trả về 99.87829."
+msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+msgstr "<item type=\"input\">=SINH(0)</item> trả về 0, sin hyperbol của 0."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3153564\n"
+"04060106.xhp\n"
+"bm_id3163596\n"
"help.text"
-msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
-msgstr "<bookmark_value>hàm ODDLYIELD</bookmark_value>"
+msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgstr "<bookmark_value>hàm SUM</bookmark_value><bookmark_value>cộng;các số trong một số phạm vi ô</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153564\n"
-"118\n"
+"04060106.xhp\n"
+"hd_id3163596\n"
+"428\n"
"help.text"
-msgid "ODDLYIELD"
-msgstr "ODDLYIELD"
+msgid "SUM"
+msgstr "SUM"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158002\n"
-"119\n"
+"04060106.xhp\n"
+"par_id3163625\n"
+"429\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Tính lợi tức của một chứng khoán nếu ngày trả tiền lãi cuối cùng không xảy ra đều đặn.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMME\">Cộng lại tất cả các số trong một phạm vi ô nào đó.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147366\n"
-"120\n"
+"04060106.xhp\n"
+"hd_id3163643\n"
+"430\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150018\n"
-"121\n"
+"04060106.xhp\n"
+"par_id3163656\n"
+"431\n"
"help.text"
-msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
-msgstr "ODDLYIELD(Thanh_toán; Đến_hạn; Phiếu_lãi_đầu; Lãi_suất; Giá; Trả_hết; Tần_số; Cơ_bản)"
+msgid "SUM(Number1; Number2; ...; Number30)"
+msgstr "SUM(Số1; Số2; ...; Số30)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159132\n"
-"122\n"
+"04060106.xhp\n"
+"par_id3163671\n"
+"432\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
+msgstr "<emph>Số 1 đến 30</emph> là đến 30 đối số cần cộng lại."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150134\n"
-"123\n"
+"04060106.xhp\n"
+"hd_id3163690\n"
+"433\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145245\n"
-"124\n"
+"04060106.xhp\n"
+"par_id3163704\n"
+"434\n"
"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "<emph>Phiếu_lãi_cuối</emph> là ngày trả tiền lãi cuối cùng của chứng khoán."
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
+msgstr "Nếu bạn nhập những số <item type=\"input\">2</item>; <item type=\"input\">3</item> và <item type=\"input\">4</item> trong những hộp văn bản 1, 2, 3 thì trả về 9."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151014\n"
-"125\n"
+"04060106.xhp\n"
+"par_id3151740\n"
+"556\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
+msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+msgstr "<item type=\"input\">=SUM(A1;A3;B5)</item> tính tổng của ba ô. <item type=\"input\">=SUM (A1:E10)</item> tính tổng mọi ô trong phạm vi ô A1 đến E10."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149003\n"
-"126\n"
+"04060106.xhp\n"
+"par_id3151756\n"
+"619\n"
"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "<emph>Giá</emph> là giá của chứng khoán."
+msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
+msgstr "Các điều kiện được liên kết bằng toán tử AND (và) có thể được dùng với hàm SUM() (tổng) bằng cách này:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148880\n"
-"127\n"
+"04060106.xhp\n"
+"par_id3151774\n"
+"620\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
+msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
+msgstr "Giả sử (ví dụ): bạn đã nhập vào một bảng các danh đơn hàng gửi. Cột A chứa giá trị ngày tháng của đơn hàng gửi, còn cột B chứa các số tiền. Bạn muốn tìm một công thức có thể sử dụng đổ trả về tổng số tất cả các số tiền chỉ cho một tháng nào đó, v.d. chỉ tổng số tiền cho thời kỳ ≥2008-01-01 đến <2008-02-01. Phạm vi các giá trị ngày tháng thì trải ra A1:140, phạm vi các số tiền cần cộng là B1:B40. C1 chứa ngày bắt đầu, 2008<item type=\"input\">-01-01</item>, của các đơn hàng gửi cần bao gồm, và C2 chứa ngày, 2008<item type=\"input\">-02-01</item>, mà không còn được bao gồm lại."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155622\n"
-"128\n"
+"04060106.xhp\n"
+"par_id3151799\n"
+"621\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "Enter the following formula as an array formula:"
+msgstr "Nhập công thức sau dưới dạng một công thức mảng:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145303\n"
-"129\n"
+"04060106.xhp\n"
+"par_id3151813\n"
+"622\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgstr "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145350\n"
-"130\n"
+"04060106.xhp\n"
+"par_id3151828\n"
+"623\n"
"help.text"
-msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
-msgstr "Ngày thanh toán: ngày 20, tháng 4/1999; ngày đến hạn: ngày 15, tháng 6/1999; phiếu lãi cuối: 3,75 phần trăm; giá: 99,875 đơn vị tiền tệ; giá trị trả hết: 100 đơn vị tiền tệ; tần số trả tiền: nửa năm (2); cơ bản: 0."
+msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
+msgstr "Để nhập chuỗi này dưới dạng một công thức mảng, bạn cần phải bấm tổ hợp phím Shift <switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline> + Enter thay vì bấm phím Enter để đóng công thức. Công thức đã nhập thì sẽ hiển thị trên thanh <emph>Công thức</emph>, nằm trong dấu ngoặc móc."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3157990\n"
-"131\n"
+"04060106.xhp\n"
+"par_id3151869\n"
+"624\n"
"help.text"
-msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
-msgstr "Lợi tức của chứng khoán, mà có một ngày trả tiền lãi cuối cùng không đều đặn, được tính như theo đây:"
+msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgstr "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150572\n"
-"132\n"
+"04060106.xhp\n"
+"par_id3151884\n"
+"625\n"
"help.text"
-msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
-msgstr "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) trả về 0.044873 hay 4.4873%."
+msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
+msgstr "Công thức này dựa vào sự thật là kết quả của một phép so sánh là 1 nếu tiêu chuẩn thoả, không thì 0. Các kết quả so sánh riêng sẽ được xử lý dạng mảng và được dùng để nhân ma trận; cuối cùng, các giá trị riêng sẽ được cộng lại để tạo ma trận kết quả."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148768\n"
+"04060106.xhp\n"
+"bm_id3151957\n"
"help.text"
-msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
-msgstr "<bookmark_value>tính;khấu hao tỷ lệ biến đổi</bookmark_value><bookmark_value>khấu hao;tỷ lệ biến đổi</bookmark_value><bookmark_value>hàm VDB</bookmark_value>"
+msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm SUMIF</bookmark_value><bookmark_value>cộng;những số đã ghi rõ</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148768\n"
-"222\n"
+"04060106.xhp\n"
+"hd_id3151957\n"
+"436\n"
"help.text"
-msgid "VDB"
-msgstr "VDB"
+msgid "SUMIF"
+msgstr "SUMIF"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154636\n"
-"223\n"
+"04060106.xhp\n"
+"par_id3151986\n"
+"437\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VDB\">Trả về khấu hao của một tài sản trong một thời kỳ đã ghi rõ hay thời kỳ bộ phận, dùng phương pháp kết toán giảm biến đổi.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Thêm những ô được ghi rõ bởi một tiêu chuẩn đã cho.</ahelp> Hàm này được dùng để duyệt qua một phạm vi khi bạn tìm một giá trị nào đó."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155519\n"
-"224\n"
+"04060106.xhp\n"
+"hd_id3152015\n"
+"438\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149025\n"
-"225\n"
-"help.text"
-msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
-msgstr "VDB(Giá; Thanh_lý; Kỳ_hạn; S; Cuối; Nhân_tố; Kiểu)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150692\n"
-"226\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial value of an asset."
-msgstr "<emph>Giá</emph> là giá đầu tiên của một tài sản."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155369\n"
-"227\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "<emph>Thanh_lý</emph> là giá trị của một tài sản khi kết thúc thời kỳ khấu hao."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154954\n"
-"228\n"
-"help.text"
-msgid "<emph>Life</emph> is the depreciation duration of the asset."
-msgstr "<emph>Kỳ_hạn</emph> là tuổi thọ khấu hao của tài sản."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152817\n"
-"229\n"
+"04060106.xhp\n"
+"par_id3152028\n"
+"439\n"
"help.text"
-msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
-msgstr "<emph>S</emph> là khi bắt đầu khấu hao. Phải được nhập vào theo cùng một đơn vị ngày tháng với tuổi thọ."
+msgid "SUMIF(Range; Criteria; SumRange)"
+msgstr "SUMIF(Phạm_vi; Tiêu_chuẩn; Phạm_vi_tổng)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153221\n"
-"230\n"
+"04060106.xhp\n"
+"par_id3152043\n"
+"440\n"
"help.text"
-msgid "<emph>End</emph> is the end of the depreciation."
-msgstr "<emph>Cuối</emph> là khi kết thúc khối hao."
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Phạm_vi</emph> là phạm vi cho đó các tiêu chuẩn sẽ được áp dụng."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147536\n"
-"231\n"
+"04060106.xhp\n"
+"par_id3152062\n"
+"441\n"
"help.text"
-msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
-msgstr "<emph>Nhân_tố</emph> (tùy chọn) là hệ số khấu hao. Nhân_tố=2 là khấu hao tỷ lệ đôi."
+msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
+msgstr "<emph>Tiêu_chuẩn</emph> là ô hiển thị các tiêu chuẩn tìm kiếm, hoặc tiêu chuẩn tìm kiếm chính nó. Để ghi tiêu chuẩn bên trong công thức, bao quanh nó trong nháy kép."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154865\n"
-"232\n"
+"04060106.xhp\n"
+"par_id3152083\n"
+"442\n"
"help.text"
-msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
-msgstr "<emph>Kiểu</emph> là một tham số còn tùy chọn. Kiểu=1 có nghĩa là chuyển đổi sang khấu hao theo đường thẳng. Kiểu=0 thì không chuyển đổi."
+msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
+msgstr "<emph>Phạm_vi_tổng</emph> là phạm vi từ đó cộng lại các giá trị. Không đưa ra tham số này thì cộng lại các giá trị nằm trong Phạm_vi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10A0D\n"
+"04060106.xhp\n"
+"par_id8347422\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
+msgstr "Hàm SUMIF hỗ trợ toán tử ghép dãy tham chiếu (~) chỉ trong tham số Criteria (tiêu chuẩn), và chỉ nếu không đưa ra tham số SumRange (phạm vi tổng)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148429\n"
-"233\n"
+"04060106.xhp\n"
+"hd_id3152110\n"
+"443\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153927\n"
-"234\n"
+"04060106.xhp\n"
+"par_id3152148\n"
+"626\n"
"help.text"
-msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
-msgstr "Khấu hao tỷ lệ đôi kết toán giảm trong một thời kỳ là gì nếu giá đầu tiên là 35.000 đơn vị tiền tệ, và giá trị ở kết thúc khấu hao là 7.500 đơn vị tiền tệ? Thời kỳ khấu hao là 3 năm. Có tính tiến trình khấu hao từ kỳ thứ 10 đến kỳ thứ 20."
+msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgstr "Để cộng lại chỉ những số âm: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155991\n"
-"235\n"
+"04060106.xhp\n"
+"par_id6670125\n"
"help.text"
-msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
-msgstr "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 đơn vị tiền tệ. Khấu hao giữa kỳ thứ 10 và kỳ thứ 20 là 8.603,80 đơn vị tiền tệ."
+msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
+msgstr "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> — cộng lại những giá trị từ phạm vi B1:B10 chỉ nếu những giá trị tương ứng trong phạm vi A1:A10 >0."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3147485\n"
+"04060106.xhp\n"
+"par_id6062196\n"
"help.text"
-msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
-msgstr "<bookmark_value>tính;nội suất sinh lợi, trả tiền không đều đặn</bookmark_value><bookmark_value>nội suất sinh lợi;trả tiền không đều đặn</bookmark_value><bookmark_value>hàm XIRR</bookmark_value>"
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgstr "Xem hàm COUNTIF() để tìm thêm mẫu ví dụ cú pháp có thể dùng với hàm SUMIF()."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147485\n"
-"193\n"
+"04060106.xhp\n"
+"bm_id3152195\n"
"help.text"
-msgid "XIRR"
-msgstr "XIRR"
+msgid "<bookmark_value>TAN function</bookmark_value>"
+msgstr "<bookmark_value>hàm TAN</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145614\n"
-"194\n"
+"04060106.xhp\n"
+"hd_id3152195\n"
+"446\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Tính nội suất sinh lợi với một danh sách sự trả tiền mà xảy ra vào các ngày tháng khác nhau.</ahelp> Phép tính này dựa nào 356 ngày trong mỗi năm, thì bỏ qua năm nhuận."
+msgid "TAN"
+msgstr "TAN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10E62\n"
+"04060106.xhp\n"
+"par_id3152224\n"
+"447\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the IRR function."
-msgstr "Nếu trả tiền sau mỗi khoảng đều đặn, hãy sử dụng hàm IRR."
+msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAN\">Trả về tang của góc đã cho (theo radian).</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146149\n"
-"195\n"
+"04060106.xhp\n"
+"hd_id3152242\n"
+"448\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149826\n"
-"196\n"
+"04060106.xhp\n"
+"par_id3152255\n"
+"449\n"
"help.text"
-msgid "XIRR(Values; Dates; Guess)"
-msgstr "XIRR(Giá_trị; Ngày; Đoán)"
+msgid "TAN(Number)"
+msgstr "TAN(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3163821\n"
-"197\n"
+"04060106.xhp\n"
+"par_id3152269\n"
+"450\n"
"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
-msgstr "<emph>Giá_trị</emph> và <emph>Ngày</emph> tham chiếu đến một dãy các sự trả tiền và một dãy giá trị này tháng tương ứng. Cặp ngày thứ nhất xác định đầu của lịch trả. Các giá trị ngày khác phải nằm sau, nhưng không cần theo thứ tự. Dãy các giá trị phải chứa ít nhất một giá trị âm và một giá trị dương (tiền nhận và tiền cọc)."
+msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
+msgstr "Trả về tang (lượng giác) của <emph>Số</emph>, góc theo radian."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149708\n"
-"198\n"
+"04060106.xhp\n"
+"par_id5752128\n"
"help.text"
-msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
-msgstr "<emph>Đoán</emph> (tùy chọn) là một sự đoán có thể được nhập vào về nội suất sinh lợi. Mặc định là 10%."
+msgid "To return the tangent of an angle in degrees, use the RADIANS function."
+msgstr "Để trả về tang của một góc theo độ, hãy dùng hàm RADIANS."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145085\n"
-"199\n"
+"04060106.xhp\n"
+"hd_id3152287\n"
+"451\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149273\n"
-"200\n"
+"04060106.xhp\n"
+"par_id3152301\n"
+"452\n"
"help.text"
-msgid "Calculation of the internal rate of return for the following five payments:"
-msgstr "Phép tính nội suất sinh lợi cho năm sự trả tiền theo đây:"
+msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+msgstr "<item type=\"input\">=TAN(PI()/4) </item> trả về 1, tang của π/4 radian."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155838\n"
-"305\n"
+"04060106.xhp\n"
+"par_id1804864\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgstr "<item type=\"input\">=TAN(RADIANS(45))</item> trả về 1, tang của 45 độ."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152934\n"
-"306\n"
+"04060106.xhp\n"
+"bm_id3165434\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "<bookmark_value>TANH function</bookmark_value>"
+msgstr "<bookmark_value>hàm TANH</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154638\n"
-"307\n"
+"04060106.xhp\n"
+"hd_id3165434\n"
+"456\n"
"help.text"
-msgid "C"
-msgstr "C"
+msgid "TANH"
+msgstr "TANH"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147083\n"
-"308\n"
+"04060106.xhp\n"
+"par_id3165462\n"
+"457\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TANHYP\">Trả về tang hyperbol của một số.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151187\n"
-"309\n"
+"04060106.xhp\n"
+"hd_id3165480\n"
+"458\n"
"help.text"
-msgid "2001-01-01"
-msgstr "2001-01-01"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145212\n"
-"201\n"
+"04060106.xhp\n"
+"par_id3165494\n"
+"459\n"
"help.text"
-msgid "-<item type=\"input\">10000</item>"
-msgstr "-<item type=\"input\">10000</item>"
+msgid "TANH(Number)"
+msgstr "TANH(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146856\n"
-"202\n"
+"04060106.xhp\n"
+"par_id3165508\n"
+"460\n"
"help.text"
-msgid "<item type=\"input\">Received</item>"
-msgstr "<item type=\"input\">Nhận được</item>"
+msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
+msgstr "Trả về tang hyperbol của <emph>Số</emph>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153277\n"
-"310\n"
+"04060106.xhp\n"
+"hd_id3165527\n"
+"461\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154052\n"
-"203\n"
+"04060106.xhp\n"
+"par_id3165541\n"
+"462\n"
"help.text"
-msgid "2001-01-02"
-msgstr "2001-01-02"
+msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+msgstr "<item type=\"input\">=TANH(0)</item> trả về 0, tang hyperbol của 0."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151297\n"
-"204\n"
+"04060106.xhp\n"
+"bm_id3165633\n"
"help.text"
-msgid "<item type=\"input\">2000</item>"
-msgstr "<item type=\"input\">2000</item>"
+msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
+msgstr "<bookmark_value>chức năng tự động lọc; subtotals</bookmark_value><bookmark_value>tổng;các dữ liệu đã lọc</bookmark_value><bookmark_value>dữ liệu đã lọc; tổng</bookmark_value><bookmark_value>hàm SUBTOTAL</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149985\n"
-"205\n"
+"04060106.xhp\n"
+"hd_id3165633\n"
+"466\n"
"help.text"
-msgid "<item type=\"input\">Deposited</item>"
-msgstr "<item type=\"input\">Đã gửi</item>"
+msgid "SUBTOTAL"
+msgstr "SUBTOTAL"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154744\n"
-"311\n"
+"04060106.xhp\n"
+"par_id3165682\n"
+"467\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
+msgstr "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Tính tổng phụ.</ahelp> Nếu một phạm vi nào đó đã chứa tổng phụ, chúng không được dùng để tính nữa. Hãy dùng hàm này với các bộ lọc tự động để xử lý những bản ghi đã được lọc mà thôi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153151\n"
-"206\n"
+"04060106.xhp\n"
+"hd_id3165704\n"
+"495\n"
"help.text"
-msgid "2001-03-15"
-msgstr "2001-03-15"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145657\n"
-"207\n"
+"04060106.xhp\n"
+"par_id3165717\n"
+"496\n"
"help.text"
-msgid "2500"
-msgstr "2500"
+msgid "SUBTOTAL(Function; Range)"
+msgstr "SUBTOTAL(Hàm; Phạm_vi)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155101\n"
-"312\n"
+"04060106.xhp\n"
+"par_id3165731\n"
+"497\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
+msgstr "<emph>Hàm</emph> là một số đại diện một của những hàm theo đây:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146894\n"
-"208\n"
+"04060106.xhp\n"
+"par_id3165782\n"
+"469\n"
"help.text"
-msgid "2001-05-12"
-msgstr "2001-05-12"
+msgid "Function index"
+msgstr "Chỉ mục hàm"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3143231\n"
-"209\n"
+"04060106.xhp\n"
+"par_id3165806\n"
+"470\n"
"help.text"
-msgid "5000"
-msgstr "5000"
+msgid "Function"
+msgstr "Hàm"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156012\n"
-"313\n"
+"04060106.xhp\n"
+"par_id3165833\n"
+"471\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "1"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149758\n"
-"210\n"
+"04060106.xhp\n"
+"par_id3165856\n"
+"472\n"
"help.text"
-msgid "2001-08-10"
-msgstr "2001-08-10"
+msgid "AVERAGE"
+msgstr "AVERAGE"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147495\n"
-"211\n"
+"04060106.xhp\n"
+"par_id3165883\n"
+"473\n"
"help.text"
-msgid "1000"
-msgstr "1000"
+msgid "2"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152793\n"
-"212\n"
+"04060106.xhp\n"
+"par_id3165906\n"
+"474\n"
"help.text"
-msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
-msgstr "=XIRR(B1:B5; A1:A5; 0.1) trả về 0.1828."
+msgid "COUNT"
+msgstr "COUNT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149198\n"
+"04060106.xhp\n"
+"par_id3165933\n"
+"475\n"
"help.text"
-msgid "<bookmark_value>XNPV function</bookmark_value>"
-msgstr "<bookmark_value>hàm XNPV</bookmark_value>"
+msgid "3"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149198\n"
-"213\n"
+"04060106.xhp\n"
+"par_id3165956\n"
+"476\n"
"help.text"
-msgid "XNPV"
-msgstr "XNPV"
+msgid "COUNTA"
+msgstr "COUNTA"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153904\n"
-"214\n"
+"04060106.xhp\n"
+"par_id3165983\n"
+"477\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Tính giá trị hiện tại ròng cho một danh sách các sự trả tiền xảy ra vào các ngày tháng khác nhau.</ahelp> Phép tính này dựa vào một năm có 365 ngày, thì bỏ qua năm nhuận."
+msgid "4"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN11138\n"
+"04060106.xhp\n"
+"par_id3166006\n"
+"478\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the NPV function."
-msgstr "Nếu trả tiền theo khoảng đều đặn, hãy sử dụng hàm NPV."
+msgid "MAX"
+msgstr "MAX"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155323\n"
-"215\n"
+"04060106.xhp\n"
+"par_id3166033\n"
+"479\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "5"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150117\n"
-"216\n"
+"04060106.xhp\n"
+"par_id3166056\n"
+"480\n"
"help.text"
-msgid "XNPV(Rate; Values; Dates)"
-msgstr "XNPV(Suất; Giá_trị; Ngày)"
+msgid "MIN"
+msgstr "MIN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153100\n"
-"217\n"
+"04060106.xhp\n"
+"par_id3143316\n"
+"481\n"
"help.text"
-msgid "<emph>Rate</emph> is the internal rate of return for the payments."
-msgstr "<emph>Suất</emph> là nội suất sinh lợi cho các sự trả tiền."
+msgid "6"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155395\n"
-"218\n"
+"04060106.xhp\n"
+"par_id3143339\n"
+"482\n"
"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
-msgstr "<emph>Giá trị</emph> và <emph>Ngày</emph> tham chiếu đến một dãy các sự trả tiền và dãy các giá trị ngày tháng tương ứng. Cặp ngày đầu tiên xác định khi bắt đầu lịch trả tiền. Các giá trị ngày tháng khác phải nằm sau, nhưng không cần theo thứ tự. Dãy các giá trị phải chứa ít nhất một giá trị âm và một giá trị dương (tiền nhận và tiền cọc)."
+msgid "PRODUCT"
+msgstr "PRODUCT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148832\n"
-"219\n"
+"04060106.xhp\n"
+"par_id3143366\n"
+"483\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "7"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150525\n"
-"220\n"
+"04060106.xhp\n"
+"par_id3143389\n"
+"484\n"
"help.text"
-msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
-msgstr "Phép tính giá trị hiện tại ròng cho những năm sự trả tiền đã nói trên theo một tỷ suất lợi tức 6%."
+msgid "STDEV"
+msgstr "STDEV"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149910\n"
-"221\n"
+"04060106.xhp\n"
+"par_id3143416\n"
+"485\n"
"help.text"
-msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
-msgstr "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> trả về 323.02."
+msgid "8"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148822\n"
+"04060106.xhp\n"
+"par_id3143439\n"
+"486\n"
"help.text"
-msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
-msgstr "<bookmark_value>tính;tỷ suất lợi tức</bookmark_value><bookmark_value>hàm RRI</bookmark_value>"
+msgid "STDEVP"
+msgstr "STDEVP"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148822\n"
-"237\n"
+"04060106.xhp\n"
+"par_id3143466\n"
+"487\n"
"help.text"
-msgid "RRI"
-msgstr "RRI"
+msgid "9"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154293\n"
-"238\n"
+"04060106.xhp\n"
+"par_id3143489\n"
+"488\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZGZ\">Tính lãi suất kết quả từ lợi nhuận của một đầu tư.</ahelp>"
+msgid "SUM"
+msgstr "SUM"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148444\n"
-"239\n"
+"04060106.xhp\n"
+"par_id3143516\n"
+"489\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "10"
+msgstr "10"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148804\n"
-"240\n"
+"04060106.xhp\n"
+"par_id3143539\n"
+"490\n"
"help.text"
-msgid "RRI(P; PV; FV)"
-msgstr "RRI(P; PV; FV)"
+msgid "VAR"
+msgstr "VAR"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154901\n"
-"241\n"
+"04060106.xhp\n"
+"par_id3143566\n"
+"491\n"
"help.text"
-msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
-msgstr "<emph>P</emph> là số các thời kỳ cần thiết để tính lãi suất."
+msgid "11"
+msgstr "11"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159149\n"
-"242\n"
+"04060106.xhp\n"
+"par_id3143589\n"
+"492\n"
"help.text"
-msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
-msgstr "<emph>PV</emph> là giá trị hiện tại. Giá trị tiền mặt là tiền cọc hay giá trị tiền mặt của một tiền trợ cấp bằng hiện vật. Giá trị tiền sọc phải là số dương: không thể là 0 hay <0."
+msgid "VARP"
+msgstr "VARP"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149771\n"
-"243\n"
+"04060106.xhp\n"
+"par_id3143606\n"
+"498\n"
"help.text"
-msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
-msgstr "<emph>FV</emph> quyết định có muốn gì làm giá trị tiền mặt của tiền sọc."
+msgid "<emph>Range</emph> is the range whose cells are included."
+msgstr "<emph>Phạm vi</emph> là phạm vi các ô được bao gồm."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148941\n"
-"244\n"
+"04060106.xhp\n"
+"hd_id3143625\n"
+"499\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154212\n"
-"245\n"
-"help.text"
-msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
-msgstr "Trong bốn thời kỳ (năm), và một giá trị tiền mặt 7.500 đơn vị tiền tệ, cần tính tỷ suất lợi tức nếu giá trị tương lai là 10.000 đơn vị tiền tệ."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150775\n"
-"246\n"
-"help.text"
-msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
-msgstr "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145413\n"
-"247\n"
-"help.text"
-msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
-msgstr "Lãi suất phải là 7,46% để 7.500 đơn vị tiền tệ có thể trở thành 10.000 đơn vị tiền tệ."
+msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3154267\n"
+"04060106.xhp\n"
+"par_id3143638\n"
+"562\n"
"help.text"
-msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
-msgstr "<bookmark_value>tính;lãi suất cố định</bookmark_value><bookmark_value>lãi suất cố định</bookmark_value><bookmark_value>hàm RATE</bookmark_value>"
+msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+msgstr "Bạn có một bảng trong phạm vi ô « A1:B5 » chứa các thành phố trong cột A, và các số tương ứng trong cột B. Bạn đã sử dụng một bộ lọc tự động để hiển thị chỉ những hàm chứa thành phố Hamburg. Bạn muốn thấy tổng số các hình được hiển thị; tức là, chỉ tổng phụ cho những hàng đã lọc. Trong trường hợp này, công thức đúng là:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154267\n"
-"249\n"
+"04060106.xhp\n"
+"par_id3143658\n"
+"563\n"
"help.text"
-msgid "RATE"
-msgstr "RATE"
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgstr "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151052\n"
-"250\n"
+"04060106.xhp\n"
+"bm_id3143672\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZINS\">Trả về lãi suất cố định trong mỗi thời kỳ của một tiền trợ cấp hàng năm.</ahelp>"
+msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr "<bookmark_value>đồng Âu; chuyển đổi theo</bookmark_value><bookmark_value>hàm CONVERT</bookmark_value><bookmark_value>đồng Euro; chuyển đổi theo</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154272\n"
-"251\n"
+"04060106.xhp\n"
+"hd_id3143672\n"
+"564\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "EUROCONVERT"
+msgstr "EUROCONVERT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158423\n"
-"252\n"
+"04060106.xhp\n"
+"par_id3143708\n"
+"565\n"
"help.text"
-msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
-msgstr "RATE(NPer; Pmt; PV; FV; Kiểu; Đoán)"
+msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Chuyển đổi tiền tệ Châu Âu cũ sang và từ đồng Âu (Euro €).</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148910\n"
-"253\n"
+"04060106.xhp\n"
+"par_id3143731\n"
+"566\n"
"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
-msgstr "<emph>NPer</emph> là tổng số thời kỳ, trong chúng trả tiền (thời kỳ trả tiền)."
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Cú pháp</emph>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148925\n"
-"254\n"
+"04060106.xhp\n"
+"par_id3143748\n"
+"567\n"
"help.text"
-msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
-msgstr "<emph>Pmt</emph> là số tiền cố định (tiền trợ cấp hàng năm) được trả mỗi thời kỳ."
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+msgstr "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149160\n"
-"255\n"
+"04060106.xhp\n"
+"par_id3143763\n"
+"568\n"
"help.text"
-msgid "<emph>PV</emph> is the cash value in the sequence of payments."
-msgstr "<emph>PV</emph> là giá trị tiền mặt trong dãy các sự trả tiền."
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr "<emph>Giá trị</emph> là số tiền cần chuyển đổi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3166456\n"
-"256\n"
+"04060106.xhp\n"
+"par_id3143782\n"
+"569\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
-msgstr "<emph>FV</emph> (tùy chọn) là giá trị tương lai được tới ở kết thúc các sự trả tiền định kỳ."
+msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+msgstr "<emph>Tiền_tệ1</emph> và <emph>Tiền_tệ2</emph> là đơn vị tiền tệ cần chuyển đổi từ và sang, riêng từng số. Đơn vị này phải được ghi rõ theo văn bản, từ viết tắt chính thức cho tiền tệ đó (.v.d. « EUR »). Các tỷ lê (được hiển thị cho mỗi đồng Âu) đa được Hội Đồng Âu đặt."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153243\n"
-"257\n"
+"04060106.xhp\n"
+"par_id0119200904301810\n"
"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
-msgstr "<emph>Kiểu</emph> (tùy chọn) là ngày hết hạn của sự trả tiền định kỳ, hoặc ở đầu hoặc cuối của một thời kỳ."
+msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
+msgstr "<emph>Full_precision</emph> là tùy chọn. Nếu bỏ qua hoặc trị là False, kết quả được làm tròn theo dạng thập phân của tiền tệ đổi tới. Nếu Full_precision có trị là True, kết quả không được làm tròn."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146949\n"
-"258\n"
+"04060106.xhp\n"
+"par_id0119200904301815\n"
"help.text"
-msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
-msgstr "<emph>Đoán</emph> (tùy chọn) quyết định giá trị xấp xỉ của tiền lãi khi tính lặp lại."
+msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
+msgstr "<emph>Triangulation_precision</emph> là tùy chọn. Nếu Triangulation_precision được cho và trị >=3, kết quả trung gian của phép chuyển đổi ba bên (currency1,EUR,currency2) được làm tròn với độ chính xác đó. Nếu Triangulation_precision bị bỏ qua, kết quả trung gian không được làm tròn. Cũng vậy nếu Tiền tệ đổi tới là \"EUR\", Triangulation_precision được dùng mỗi khi cần có ba bên, và chuyển đổi từ EUR tới EUR được dùng."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10E2A\n"
+"04060106.xhp\n"
+"par_id3143819\n"
+"570\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<emph>Examples</emph>"
+msgstr "<emph>Vi dụ</emph>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149791\n"
-"259\n"
+"04060106.xhp\n"
+"par_id3143837\n"
+"571\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgstr "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> thì chuyển đổi 100 đồng silinh Ảo sang đồng Âu."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150706\n"
-"260\n"
+"04060106.xhp\n"
+"par_id3143853\n"
+"572\n"
"help.text"
-msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
-msgstr "Lãi suất cố định trong 3 thời kỳ là gì nếu 10 đơn vị tiền tệ được trả đều và giá trị tiền mặt hiện tại là 900 đơn vị tiền tệ?"
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgstr "<item type=\"input\">=CONVERT(100;\"EUR\";\"DEM\")</item> thì chuyển đổi 100 đồng Âu sang đồng Mác Đức."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155586\n"
-"261\n"
+"04060106.xhp\n"
+"bm_id0908200902090676\n"
"help.text"
-msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
-msgstr "<item type=\"input\">=RATE(3;10;900)</item> = -121% Lãi suất thì là 121%."
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr "<bookmark_value>hàm COVAR</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149106\n"
+"04060106.xhp\n"
+"hd_id0908200902074836\n"
"help.text"
-msgid "<bookmark_value>INTRATE function</bookmark_value>"
-msgstr "<bookmark_value>hàm INTRATE</bookmark_value>"
+msgid "CONVERT"
+msgstr "CONVERT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149106\n"
-"60\n"
+"04060106.xhp\n"
+"par_id0908200902131122\n"
"help.text"
-msgid "INTRATE"
-msgstr "INTRATE"
+msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
+msgstr "<ahelp hid=\".\">Chuyển đổi một giá trị từ đơn vị đo này tới đơn vị đo khác. Các thừa số chuyển đổi được cho trong một danh sách trong phần cấu hình.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149918\n"
-"61\n"
+"04060106.xhp\n"
+"par_id0908200902475420\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Tính lãi suất hàng năm mà kết quả khi một chứng khoán (hay mục khác) được mua ở một giá trị đầu tư và bán lại ở một giá trị đáo hạn. Không trả tiền lãi nào.</ahelp>"
+msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
+msgstr "Một khi trong danh sách các thừa số chuyển đổi có gồm các tiền tệ cổ truyền châu Âu và đồng Ơ-rô (xem ví dụ dưới đây). Chúng tôi khuyến nghị dùng hàm mới EUROCONVERT để chuyển đổi loại tiền tệ đó."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149974\n"
-"62\n"
+"04060106.xhp\n"
+"hd_id0908200902131071\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149800\n"
-"63\n"
-"help.text"
-msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
-msgstr "INTRATE(Thanh_toán; Đến_hạn; Đầu_tư; Trả_hết; Cơ_bản)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148618\n"
-"64\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Settlement</emph> (Thanh toán) là ngày tháng đã mua chứng khoán."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148988\n"
-"65\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security is sold."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó bán lại chứng khoán."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154604\n"
-"66\n"
-"help.text"
-msgid "<emph>Investment</emph> is the purchase price."
-msgstr "<emph>Đầu_tư</emph> là giá mua."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154337\n"
-"67\n"
+"04060106.xhp\n"
+"par_id0908200902131191\n"
"help.text"
-msgid "<emph>Redemption</emph> is the selling price."
-msgstr "<emph>Trả_hết</emph> là mua bán lại."
+msgid "CONVERT(value;\"text\";\"text\")"
+msgstr "CONVERT(value;\"text\";\"text\")"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145380\n"
-"68\n"
+"04060106.xhp\n"
+"hd_id0908200902131152\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149426\n"
-"69\n"
+"04060106.xhp\n"
+"par_id090820090213112\n"
"help.text"
-msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
-msgstr "Một bức vẽ được mua vào ngày 1990-01-15 trả 1 triệu đơn vị tiền tệ, sau đó bán lại vào 2002-05-02 trả 2 triệu. Cơ bản là phép tính kết toán hàng ngày (cơ bản=3). Lãi suất hàng năm trung bình là gì?"
+msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgstr "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> trả về giá trị theo đồng Ơ-rô của 100 Si-linh Áo."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151125\n"
-"70\n"
+"04060106.xhp\n"
+"par_id0908200902475431\n"
"help.text"
-msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
-msgstr "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) trả về 8.12%."
+msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
+msgstr "=CONVERT(100;\"EUR\";\"DEM\") chuyển đổi 100 Ơ-rô thành đồng Mác Đức."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148654\n"
+"04060106.xhp\n"
+"bm_id3157177\n"
"help.text"
-msgid "<bookmark_value>COUPNCD function</bookmark_value>"
-msgstr "<bookmark_value>hàm COUPNCD</bookmark_value>"
+msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
+msgstr "<bookmark_value>hàm ODD</bookmark_value><bookmark_value>làm tròn;lên/xuống số nguyên lẻ gần nhất</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148654\n"
-"163\n"
+"04060106.xhp\n"
+"hd_id3157177\n"
+"502\n"
"help.text"
-msgid "COUPNCD"
-msgstr "COUPNCD"
+msgid "ODD"
+msgstr "ODD"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149927\n"
-"164\n"
+"04060106.xhp\n"
+"par_id3157205\n"
+"503\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Trả về ngày tháng trả tiền lãi đầu tiên sau ngày thanh toán. Hãy định dạng kết quả dạng ngày tháng.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNGERADE\">Làm tròn một số dương lên số nguyên lẻ gần nhất, và làm tròn một số âm xuống số nguyên lẻ gần nhất.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153317\n"
-"165\n"
+"04060106.xhp\n"
+"hd_id3157223\n"
+"504\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150423\n"
-"166\n"
-"help.text"
-msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPNCD(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150628\n"
-"167\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153536\n"
-"168\n"
+"04060106.xhp\n"
+"par_id3157237\n"
+"505\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+msgid "ODD(Number)"
+msgstr "ODD(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145313\n"
-"169\n"
+"04060106.xhp\n"
+"par_id3157250\n"
+"506\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgstr "Trả về <emph>Số</emph> được làm tròn lên số nguyên lẻ gần nhất, về hướng khác với số 0."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155424\n"
-"170\n"
+"04060106.xhp\n"
+"hd_id3157270\n"
+"507\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154794\n"
-"171\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
-msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn thanh toán là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng ngày (cơ bản 3), ngày tháng trả tiền lãi kế tiếp ở ngày nào?"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159251\n"
-"172\n"
-"help.text"
-msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
-msgstr "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 2001-05-15."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3143281\n"
-"help.text"
-msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
-msgstr "<bookmark_value>hàm COUPDAYS</bookmark_value>"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3143281\n"
-"143\n"
-"help.text"
-msgid "COUPDAYS"
-msgstr "COUPDAYS"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149488\n"
-"144\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Trả về số các ngày trong thời kỳ trả tiền lãi hiện thời chứa ngày thanh toán.</ahelp>"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148685\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149585\n"
-"146\n"
-"help.text"
-msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYS(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152767\n"
-"147\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151250\n"
-"148\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146126\n"
-"149\n"
+"04060106.xhp\n"
+"par_id3157283\n"
+"508\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153705\n"
-"150\n"
+"04060106.xhp\n"
+"par_id8746910\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr "<item type=\"input\">=ISODD_ADD(5)</item> trả về 1."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147530\n"
-"151\n"
+"04060106.xhp\n"
+"par_id9636524\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
-msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), thời kỳ chứa ngày thanh toán có bao nhiêu ngày?"
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr "<item type=\"input\">=ISODD_ADD(5)</item> trả về 1."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156338\n"
-"152\n"
+"04060106.xhp\n"
+"par_id5675527\n"
"help.text"
-msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
-msgstr "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 181."
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr "<item type=\"input\">=ISODD_ADD(5)</item> trả về 1."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3154832\n"
+"04060106.xhp\n"
+"bm_id3157404\n"
"help.text"
-msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
-msgstr "<bookmark_value>hàm COUPDAYSNC</bookmark_value>"
+msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+msgstr "<bookmark_value>hàm FLOOR</bookmark_value><bookmark_value>làm tròn;xuống bội số gần nhất có mức độ thống kê</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154832\n"
-"153\n"
+"04060106.xhp\n"
+"hd_id3157404\n"
+"512\n"
"help.text"
-msgid "COUPDAYSNC"
-msgstr "COUPDAYSNC"
+msgid "FLOOR"
+msgstr "FLOOR"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147100\n"
-"154\n"
+"04060106.xhp\n"
+"par_id3157432\n"
+"513\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Trả về số các ngày trong khoảng từ ngày thanh toán đến ngày trả tiền lãi kế tiếp.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Làm tròn một số xuống bội số gần nhất có mức độ thống kê.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3151312\n"
-"155\n"
+"04060106.xhp\n"
+"hd_id3157451\n"
+"514\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155121\n"
-"156\n"
+"04060106.xhp\n"
+"par_id3157464\n"
+"515\n"
"help.text"
-msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYSNC(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+msgid "FLOOR(Number; Significance; Mode)"
+msgstr "FLOOR(Số; Mức_thống_kê; Chế_độ)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158440\n"
-"157\n"
+"04060106.xhp\n"
+"par_id3157478\n"
+"516\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+msgid "<emph>Number</emph> is the number that is to be rounded down."
+msgstr "<emph>Số</emph> là số cần làm tròn."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146075\n"
-"158\n"
+"04060106.xhp\n"
+"par_id3157497\n"
+"517\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
+msgstr "<emph>Mức_thống_kê</emph> là số chữ số có nghĩa khi làm tròn số."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154620\n"
-"159\n"
+"04060106.xhp\n"
+"par_id3157517\n"
+"561\n"
"help.text"
-msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Chế_độ</emph> là một giá trị tùy chọn. Nếu đưa ra giá trị Chế_độ khác 0, và nếu Số & Mức_thống_kê là âm, thì làm tròn dựa vào giá trị tuyệt đối của số. Tham số này bị bỏ qua khi xuất dạng MS Excel, vì Excel không nhận ra tham số thứ ba."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155604\n"
-"160\n"
+"04060106.xhp\n"
+"par_id3163894\n"
+"630\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Nếu cả hai tham số Số và Mức_thống_kê đều là âm và giá trị Chế_độ bằng số không hay không đưa a, thì có kết quả khác nhau trong hai chương trình $[officename] và Excel sau khi xuất ra. Vì vậy, nếu bạn xuất bảng tính sang Excel, hãy dùng Chế_độ=1 để thấy cùng một kết quả trong cả hai Excel và Calc."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148671\n"
-"161\n"
+"04060106.xhp\n"
+"hd_id3163932\n"
+"518\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
-msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), khoảng đến ngày trả tiền lãi kế tiếp có bao nhiêu ngày?"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156158\n"
-"162\n"
+"04060106.xhp\n"
+"par_id3163945\n"
+"519\n"
"help.text"
-msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
-msgstr "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 110."
+msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
+msgstr "<item type=\"input\">=FLOOR( -11;-2)</item> trả về -12"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3150408\n"
+"04060106.xhp\n"
+"par_id3163966\n"
+"520\n"
"help.text"
-msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
-msgstr "<bookmark_value>hàm COUPDAYBS</bookmark_value><bookmark_value>khoảng thời gian;từ ngày trả tiền lãi đầu tiên đến ngày thanh toán</bookmark_value><bookmark_value>chứng khoán;từ ngày trả tiền lãi đầu tiên đến ngày thanh toán</bookmark_value>"
+msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgstr "<item type=\"input\">=FLOOR( -11;-2;0)</item> trả về -12"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150408\n"
-"133\n"
+"04060106.xhp\n"
+"par_id3163988\n"
+"521\n"
"help.text"
-msgid "COUPDAYBS"
-msgstr "COUPDAYBS"
+msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+msgstr "<item type=\"input\">=FLOOR( -11;-2;1)</item> trả về -10"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146795\n"
-"134\n"
+"04060106.xhp\n"
+"bm_id3164086\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Trả về số các ngày từ ngày trả tiền lãi đầu tiên về một chứng khoán đến ngày thanh toán.</ahelp>"
+msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
+msgstr "<bookmark_value>hàm SIGN</bookmark_value><bookmark_value>dấu đại số</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156142\n"
-"135\n"
+"04060106.xhp\n"
+"hd_id3164086\n"
+"523\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "SIGN"
+msgstr "SIGN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159083\n"
-"136\n"
+"04060106.xhp\n"
+"par_id3164115\n"
+"524\n"
"help.text"
-msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYBS(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Trả về dấu (+/-) của một số. Trả về 1 nếu số là dương, -1 nếu là âm, và 0 nếu là số 0.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146907\n"
-"137\n"
+"04060106.xhp\n"
+"hd_id3164136\n"
+"525\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159390\n"
-"138\n"
+"04060106.xhp\n"
+"par_id3164150\n"
+"526\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+msgid "SIGN(Number)"
+msgstr "SIGN(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154414\n"
-"139\n"
+"04060106.xhp\n"
+"par_id3164164\n"
+"527\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "<emph>Number</emph> is the number whose sign is to be determined."
+msgstr "<emph>Số</emph> là số có dấu (+/-) cần quyết định."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153880\n"
-"140\n"
+"04060106.xhp\n"
+"hd_id3164183\n"
+"528\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150592\n"
-"141\n"
+"04060106.xhp\n"
+"par_id3164197\n"
+"529\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
-msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), đây là bao nhiêu ngày?"
+msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+msgstr "<item type=\"input\">=GESTEP(5;1)</item> trả về 1."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151103\n"
-"142\n"
+"04060106.xhp\n"
+"par_id3164212\n"
+"530\n"
"help.text"
-msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
-msgstr "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 71."
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr "<item type=\"input\">=N(TRUE)</item> trả về 1"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3152957\n"
+"04060106.xhp\n"
+"bm_id3164252\n"
"help.text"
-msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
-msgstr "<bookmark_value>hàm COUPPCD</bookmark_value><bookmark_value>ngày tháng;ngày tiền lãi nằm trước ngày thanh toán</bookmark_value>"
+msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+msgstr "<bookmark_value>hàm MROUND</bookmark_value><bookmark_value>bôi số gần nhất</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3152957\n"
-"183\n"
+"04060106.xhp\n"
+"hd_id3164252\n"
+"658\n"
"help.text"
-msgid "COUPPCD"
-msgstr "COUPPCD"
+msgid "MROUND"
+msgstr "MROUND"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153678\n"
-"184\n"
+"04060106.xhp\n"
+"par_id3164288\n"
+"659\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Trả về ngày tháng của ngày trả tiền lãi nằm trước ngày thanh toán. Định dạng kết quả dưới dạng một ngày tháng.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Trả về một số được làm tròn thành bội số gần nhất của một số khác.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156269\n"
-"185\n"
+"04060106.xhp\n"
+"hd_id3164306\n"
+"660\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153790\n"
-"186\n"
-"help.text"
-msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPPCD(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150989\n"
-"187\n"
+"04060106.xhp\n"
+"par_id3164320\n"
+"661\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+msgid "MROUND(Number; Multiple)"
+msgstr "MROUND(Số; Bội)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154667\n"
-"188\n"
+"04060106.xhp\n"
+"par_id3486434\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
+msgstr "Trả về <emph>Số</emph> được làm tròn thành bội số cho <emph>Bội</emph>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154569\n"
-"189\n"
+"04060106.xhp\n"
+"par_id3068636\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr "Một sự thực hiện xen kẽ là <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150826\n"
-"190\n"
+"04060106.xhp\n"
+"hd_id3164333\n"
+"662\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148968\n"
-"191\n"
+"04060106.xhp\n"
+"par_id3164347\n"
+"663\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
-msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), trước khi mua có ngày trả tiền lãi nào"
+msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
+msgstr "<item type=\"input\">=MROUND(15.5;3)</item> trả về 15, vì 15,5 gần với 15 (= 3*5) hơn với 18 (= 3*6)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149992\n"
-"192\n"
+"04060106.xhp\n"
+"par_idN14DD6\n"
"help.text"
-msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
-msgstr "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 2000-15-11."
+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> trả về 1,5 (= 0.5*3)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3150673\n"
+"04060106.xhp\n"
+"bm_id3164375\n"
"help.text"
-msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
-msgstr "<bookmark_value>hàm COUPNUM</bookmark_value><bookmark_value>số phiếu lãi</bookmark_value>"
+msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm SQRT</bookmark_value><bookmark_value>căn bậc hai;số dương</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150673\n"
-"173\n"
+"04060106.xhp\n"
+"hd_id3164375\n"
+"532\n"
"help.text"
-msgid "COUPNUM"
-msgstr "COUPNUM"
+msgid "SQRT"
+msgstr "SQRT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154350\n"
-"174\n"
+"04060106.xhp\n"
+"par_id3164404\n"
+"533\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Trả về số các phiếu lãi (số lần trả tiền lãi) nằm giữa ngày thanh toán và ngày đến hạn.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WURZEL\">Trả về căn bậc hai dương của một số.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148400\n"
-"175\n"
+"04060106.xhp\n"
+"hd_id3164424\n"
+"534\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153200\n"
-"176\n"
-"help.text"
-msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPNUM(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159406\n"
-"177\n"
+"04060106.xhp\n"
+"par_id3164437\n"
+"535\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+msgid "SQRT(Number)"
+msgstr "SQRT(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155864\n"
-"178\n"
+"04060106.xhp\n"
+"par_id3164451\n"
+"536\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+msgid "Returns the positive square root of <emph>Number</emph>."
+msgstr "Trả về căn bậc hai dương của <emph>Số</emph>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154720\n"
-"179\n"
+"04060106.xhp\n"
+"par_id6870021\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+msgid "Number must be positive."
+msgstr "Số phải là dương."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149319\n"
-"180\n"
+"04060106.xhp\n"
+"hd_id3164471\n"
+"537\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152460\n"
-"181\n"
+"04060106.xhp\n"
+"par_id3164484\n"
+"538\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
-msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), có trả tiền lãi vào bao nhiêu ngày?"
+msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150640\n"
-"182\n"
+"04060106.xhp\n"
+"par_id3591723\n"
"help.text"
-msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
-msgstr "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 2."
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgstr "<item type=\"input\">=SQRT(-16)</item> trả về một lỗi kiểu <item type=\"literal\">đối số sai</item>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149339\n"
+"04060106.xhp\n"
+"bm_id3164560\n"
"help.text"
-msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
-msgstr "<bookmark_value>hàm IPMT</bookmark_value><bookmark_value>lãi suất trả dần định kỳ</bookmark_value>"
+msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
+msgstr "<bookmark_value>hàm SQRTPI</bookmark_value><bookmark_value>căn bậc hai;tích Pi (π)</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149339\n"
-"263\n"
+"04060106.xhp\n"
+"hd_id3164560\n"
+"665\n"
"help.text"
-msgid "IPMT"
-msgstr "IPMT"
+msgid "SQRTPI"
+msgstr "SQRTPI"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154522\n"
-"264\n"
+"04060106.xhp\n"
+"par_id3164596\n"
+"666\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZINSZ\">Tính chi trả dần định kỳ cho một đầu tư có trả tiền đều và một lãi suất cố định.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Trả về căn bậc hai của (π nhân với một số).</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153266\n"
-"265\n"
+"04060106.xhp\n"
+"hd_id3164614\n"
+"667\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151283\n"
-"266\n"
-"help.text"
-msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
-msgstr "IPMT(Tỷ_lệ; Kỳ; NPer; PV; FV; Kiểu)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147313\n"
-"267\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Tỷ_lệ</emph> là lãi suất định kỳ."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145158\n"
-"268\n"
-"help.text"
-msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
-msgstr "<emph>Kỳ</emph> là thời kỳ cho đó cần tính lãi kép. Kỳ=NPer nếu tính lãi kép cho kỳ cuối cùng."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147577\n"
-"269\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
-msgstr "<emph>NPer</emph> là tổng số các thời kỳ trong chúng trả tiền lãi hàng năm."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156211\n"
-"270\n"
+"04060106.xhp\n"
+"par_id3164627\n"
+"668\n"
"help.text"
-msgid "<emph>PV</emph> is the present cash value in sequence of payments."
-msgstr "<emph>PV</emph> là giá trị tiền mặt hiện tại theo thứ tự trả tiền."
+msgid "SQRTPI(Number)"
+msgstr "SQRTPI(Số)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151213\n"
-"271\n"
+"04060106.xhp\n"
+"par_id1501510\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
-msgstr "<emph>FV</emph> (tùy chọn) là giá trị đã muốn (giá trị tương lai) ở kết thúc các thời kỳ."
+msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+msgstr "Trả về căn bậc hai dương của (π nhân với <emph>Số</emph>)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154195\n"
-"272\n"
+"04060106.xhp\n"
+"par_id9929197\n"
"help.text"
-msgid "<emph>Type</emph> is the due date for the periodic payments."
-msgstr "<emph>Kiểu</emph> là ngày đến hạn để trả tiền định kỳ."
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgstr "Đây tương đương với <item type=\"literal\">SQRT(PI()*Number)</item>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150102\n"
-"273\n"
+"04060106.xhp\n"
+"hd_id3164641\n"
+"669\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149438\n"
-"274\n"
-"help.text"
-msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
-msgstr "Nếu lãi suất cố định là 5% và giá trị tiền mặt là 15.000 đơn vị tiền tệ, trong thời kỳ (năm) thứ năm có lãi suất nào? Trả tiền định kỳ trong bảy năm."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150496\n"
-"275\n"
+"04060106.xhp\n"
+"par_id3164654\n"
+"670\n"
"help.text"
-msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
-msgstr "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 đơn vị tiền tệ. Lãi kép trong thời kỳ (năm) thứ năm là 352,97 đơn vị tiền tệ."
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgstr "<item type=\"input\">=SQRTPI(2)</item> trả về căn bậc hai của (2π), xấp xỉ 2,506628."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3151205\n"
+"04060106.xhp\n"
+"bm_id3164669\n"
"help.text"
-msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
-msgstr "<bookmark_value>tính;giá trị tương lai</bookmark_value><bookmark_value> giá trị tương lai;lãi suất cố định</bookmark_value><bookmark_value>hàm FV</bookmark_value>"
+msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgstr "<bookmark_value>số ngẫu nhiên; nằm giữa các giới hạn</bookmark_value><bookmark_value>hàm RANDBETWEEN</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3151205\n"
-"277\n"
+"04060106.xhp\n"
+"hd_id3164669\n"
+"671\n"
"help.text"
-msgid "FV"
-msgstr "FV"
+msgid "RANDBETWEEN"
+msgstr "RANDBETWEEN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154140\n"
-"278\n"
+"04060106.xhp\n"
+"par_id3164711\n"
+"672\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZW\">Trả về giá trị tương lai của một đầu tư dựa vào các sự trả tiền cố định theo định kỳ và một lãi suất cố định (Giá trị Tương lai).</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Trả về một số nguyên ngẫu nhiên nằm trong một phạm vi đã ghi rõ.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155178\n"
-"279\n"
+"04060106.xhp\n"
+"hd_id3164745\n"
+"673\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145215\n"
-"280\n"
-"help.text"
-msgid "FV(Rate; NPer; Pmt; PV; Type)"
-msgstr "PV(Tỷ_lệ; NPer; Pmt; FV; Kiểu)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155136\n"
-"281\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Tỷ_lệ</emph> là lãi suất định kỳ."
-
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156029\n"
-"282\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods (payment period)."
-msgstr "<emph>NPer</emph> là tổng số kỳ (thời kỳ trả)."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151322\n"
-"283\n"
+"04060106.xhp\n"
+"par_id3164758\n"
+"674\n"
"help.text"
-msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
-msgstr "<emph>Pmt</emph> là số tiền lãi hàng năm phải trả cho từng kỳ."
+msgid "RANDBETWEEN(Bottom; Top)"
+msgstr "RANDBETWEEN(Dưới; Trên)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145256\n"
-"284\n"
+"04060106.xhp\n"
+"par_id7112338\n"
"help.text"
-msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
-msgstr "<emph>PV</emph> (tuy chọn) là giá trị tiền mặt (hiện tại) của một đầu tư."
+msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+msgstr "Trả về một số nguyên ngẫu nhiên nằm giữa hai số nguyên <emph>Dưới</emph> và <emph>Trên</emph> (kể cả hai số đó)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150999\n"
-"285\n"
+"04060106.xhp\n"
+"par_id2855616\n"
"help.text"
-msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
-msgstr "<emph>Kiểu</emph> (tùy chọn) xác định nếu phải trả tiền ở đầu hay cuối của mỗi thời kỳ."
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "Hàm này tạo một số ngẫu nhiên mỗi khi Calc tính toán lại. Để bắt Calc tính lại nhấn Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN114D8\n"
+"04060106.xhp\n"
+"par_id2091433\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "Để tạo ra các số ngẫu nhiên mà không bao giờ tính lại, hãy sao chép những ô chứa hàm này, sau đó dùng câu lệnh <item type=\"menuitem\">Sửa > Dán đặc biệt</item> (với tùy chọn <item type=\"menuitem\">Dán tất cả</item> và <item type=\"menuitem\">Công thức</item> không bật, và <item type=\"menuitem\">Numbers</item> bật)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146800\n"
-"286\n"
+"04060106.xhp\n"
+"hd_id3164772\n"
+"675\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146813\n"
-"287\n"
-"help.text"
-msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
-msgstr "Nếu lãi suất là 4%, và thời kỳ trả tiền là 2 năm, với số tiền phải trả từng kỳ là 750 đơn vị tiền tệ, ở kết thúc khoảng đầu tư có giá trị nào? Đầu tư có giá trị hiện tại là 2.500 đơn vị tiền tệ."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149302\n"
-"288\n"
+"04060106.xhp\n"
+"par_id3164785\n"
+"676\n"
"help.text"
-msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
-msgstr "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 đơn vị tiền tệ. Giá trị ở kết thúc khoảng đầu tư là 4234,00 đơn vị tiền tệ."
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgstr "<item type=\"input\">=RANDBETWEEN(20;30)</item> trả về một số nguyên nằm giữa 20 và 30."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3155912\n"
+"04060106.xhp\n"
+"bm_id3164800\n"
"help.text"
-msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
-msgstr "<bookmark_value>hàm FVSCHEDULE</bookmark_value><bookmark_value>giá trị tương lai;lãi suất biến đổi</bookmark_value>"
+msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgstr "<bookmark_value>hàm RAND</bookmark_value><bookmark_value>số ngẫu nhiên;nằm giữa 0 và 1</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155912\n"
-"51\n"
+"04060106.xhp\n"
+"hd_id3164800\n"
+"542\n"
"help.text"
-msgid "FVSCHEDULE"
-msgstr "FVSCHEDULE"
+msgid "RAND"
+msgstr "RAND"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3163726\n"
-"52\n"
+"04060106.xhp\n"
+"par_id3164829\n"
+"543\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Tính giá trị lũy tích của tiền vốn đầu tiên đối với một chuỗi các lãi suất biến đổi theo định kỳ.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Trả về một số ngẫu nhiên nằm giữa 0 và 1.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149571\n"
-"53\n"
+"04060106.xhp\n"
+"hd_id3164870\n"
+"545\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148891\n"
-"54\n"
+"04060106.xhp\n"
+"par_id3164884\n"
+"546\n"
"help.text"
-msgid "FVSCHEDULE(Principal; Schedule)"
-msgstr "FVSCHEDULE(Tiền_gốc; Lịch)"
+msgid "RAND()"
+msgstr "RAND()"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148904\n"
-"55\n"
+"04060106.xhp\n"
+"par_id5092318\n"
"help.text"
-msgid "<emph>Principal</emph> is the starting capital."
-msgstr "<emph>Tiền_gốc</emph> là tiền vốn đầu tiên."
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "Hàm này tạo một số ngẫu nhiên mỗi khi Calc tính toán lại. Để bắt Calc tính lại nhấn Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148562\n"
-"56\n"
+"04060106.xhp\n"
+"par_id9312417\n"
"help.text"
-msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
-msgstr "<emph>Lịch</emph> là một chuỗi các lãi suất, v.d. dươi dạng phạm vi (H3:H5) hay danh sách (xem ví dụ)."
+msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "Để tạo ra các số ngẫu nhiên mà không bao giờ tính lại, hãy sao chép mỗi ô chứa « =RAND() », và dùng lệnh trình đơn <item type=\"menuitem\">Sửa > Dán đặc biệt</item> (với hay tùy chọn <item type=\"menuitem\">Dán tất cả</item> và <item type=\"menuitem\">Công thức</item> không bật và tùy chọn <item type=\"menuitem\">Số</item> bật)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147288\n"
-"57\n"
+"04060106.xhp\n"
+"hd_id9089022\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148638\n"
-"58\n"
-"help.text"
-msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
-msgstr "1000 đơn vị tiền tệ đã được đầu tư được ba năm. Lãi suất là 3%, 5%, 5% mỗi năm riêng từng năm. Sau ba năm có giá trị nào?"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156358\n"
-"59\n"
+"04060106.xhp\n"
+"par_id9569078\n"
"help.text"
-msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
-msgstr "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> trả về 1124,76."
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgstr "<item type=\"input\">=RAND()</item> trả về một số ngẫu nhiên nằm giữa 0 và 1."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3156435\n"
+"04060106.xhp\n"
+"bm_id3164897\n"
"help.text"
-msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
-msgstr "<bookmark_value>tính;số thời kỳ trả tiền</bookmark_value><bookmark_value>thời kỳ trả tiền;số</bookmark_value><bookmark_value>số thời kỳ trả tiền</bookmark_value><bookmark_value>hàm NPER</bookmark_value>"
+msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+msgstr "<bookmark_value>hàm COUNTIF</bookmark_value><bookmark_value>đếm;những ô đã ghi rõ</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156435\n"
-"290\n"
+"04060106.xhp\n"
+"hd_id3164897\n"
+"547\n"
"help.text"
-msgid "NPER"
-msgstr "NPER"
+msgid "COUNTIF"
+msgstr "COUNTIF"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152363\n"
-"291\n"
+"04060106.xhp\n"
+"par_id3164926\n"
+"548\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZZR\">Trả về số các thời kỳ cho một đầu tư dựa vào các sự trả tiền cố định theo định kỳ và một lãi suất cố định..</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Trả về số ô mà thoả môt số tiêu chuẩn nào đó trong một phạm vi ô.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147216\n"
-"292\n"
+"04060106.xhp\n"
+"hd_id3164953\n"
+"549\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155934\n"
-"293\n"
-"help.text"
-msgid "NPER(Rate; Pmt; PV; FV; Type)"
-msgstr "NPER(Tỷ_lệ; Pmt; PV; FV; Kiểu)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155946\n"
-"294\n"
+"04060106.xhp\n"
+"par_id3164967\n"
+"550\n"
"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Tỷ_lệ</emph> là lãi suất định kỳ."
+msgid "COUNTIF(Range; Criteria)"
+msgstr "COUNTIF(Phạm_vi; Tiêu_chuẩn)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149042\n"
-"295\n"
+"04060106.xhp\n"
+"par_id3164980\n"
+"551\n"
"help.text"
-msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
-msgstr "<emph>Pmt</emph> là số tiền lãi hàng năm phải trả cho từng kỳ."
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Phạm_vi</emph> là phạm vi cho đó các tiêu chuẩn sẽ được áp dụng."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153134\n"
-"296\n"
+"04060106.xhp\n"
+"par_id3165000\n"
+"552\n"
"help.text"
-msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
-msgstr "<emph>PV</emph> (tuy chọn) là giá trị tiền mặt (hiện tại) của một đầu tư."
+msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
+msgstr "<emph>Tiêu_chuẩn</emph> ngụ ý tiêu chuẩn có dạng số, biểu thức hay chuỗi ký tự. Các tiêu chuẩn này quyết định những ô nào được đếm. Bạn cũng có thể nhập một chuỗi tìm kiếm có dạng biểu thức chính quy, v.d. « b.* » để tìm mọi từ bắt đầu với b. Cũng có thể ngụ ý một phạm vi ô chứa tiêu chuẩn tìm kiếm. Khi tìm kiếm một chuỗi văn bản nghĩa chữ, có nên bao quanh nó bằng nháy kép."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154398\n"
-"297\n"
+"04060106.xhp\n"
+"hd_id3165037\n"
+"553\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
-msgstr "<emph>FV</emph> (tùy chọn) là giá trị tương lai, được tới ở kết thúc thời kỳ cuối cùng."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145127\n"
-"298\n"
+"04060106.xhp\n"
+"par_id3166505\n"
+"627\n"
"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
-msgstr "<emph>Kiểu</emph> (tùy chọn) xác định nếu phải trả tiền ở đầu hay cuối của mỗi thời kỳ."
+msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
+msgstr "A1:A10 là một phạm vi ô chứa những số từ <item type=\"input\">2000</item> đến <item type=\"input\">2009</item>. Ô B1 chứa số <item type=\"input\">2006</item>. Vào ô B2, bạn nhập công thức:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN1166C\n"
+"04060106.xhp\n"
+"par_id3581652\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> trả về 1"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155795\n"
-"299\n"
+"04060106.xhp\n"
+"par_id708639\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> trả về 1."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147378\n"
-"300\n"
+"04060106.xhp\n"
+"par_id5169225\n"
"help.text"
-msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
-msgstr "Có lãi suất định kỳ 6%, số tiền phải trả định kỳ 153,75 đơn vị tiền tệ và giá trị tiền mặt hiện tại 2.600 đơn vị tiền tệ thì khoảng trả tiền trải ra bao nhiêu thời kỳ trả tiền?"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item> trả về 3."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156171\n"
-"301\n"
+"04060106.xhp\n"
+"par_id2118594\n"
"help.text"
-msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
-msgstr "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. Khoảng trả tiền trải ra 12,02 thời kỳ."
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> — khi ô B1 chứa <item type=\"input\">2006</item> thì hàm này trả về 6."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150309\n"
-"314\n"
+"04060106.xhp\n"
+"par_id166020\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Trở về Hàn Tài chính Phần 1\">Trở về Hàn Tài chính Phần 1</link>"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> mà ô C2 chứa chuỗi <item type=\"input\">>2006</item> thì đếm số ô trong phạm vi « A1:A10 » mà lớn hơn (nằm sau) 2006."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153163\n"
-"315\n"
+"04060106.xhp\n"
+"par_id6386913\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Trở về Hàn Tài Chính Phần 2\">Trở về Hàm Tài Chính Phần 2</link>"
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgstr "Để đếm chỉ những số âm: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
#: 04060107.xhp
msgctxt ""
@@ -28295,7 +17450,7 @@ msgctxt ""
"260\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28304,7 +17459,7 @@ msgctxt ""
"261\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28313,7 +17468,7 @@ msgctxt ""
"262\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28322,7 +17477,7 @@ msgctxt ""
"263\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28331,7 +17486,7 @@ msgctxt ""
"264\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -28358,7 +17513,7 @@ msgctxt ""
"267\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28385,7 +17540,7 @@ msgctxt ""
"270\n"
"help.text"
msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -28394,7 +17549,7 @@ msgctxt ""
"271\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28403,7 +17558,7 @@ msgctxt ""
"272\n"
"help.text"
msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -28412,7 +17567,7 @@ msgctxt ""
"273\n"
"help.text"
msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -28871,7 +18026,7 @@ msgctxt ""
"par_idN10D65\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28895,7 +18050,7 @@ msgctxt ""
"par_idN10D79\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28903,7 +18058,7 @@ msgctxt ""
"par_idN10D80\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28927,7 +18082,7 @@ msgctxt ""
"par_idN10D94\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28935,7 +18090,7 @@ msgctxt ""
"par_idN10D9B\n"
"help.text"
msgid "0"
-msgstr "0"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28959,7 +18114,7 @@ msgctxt ""
"par_idN10DAF\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28967,7 +18122,7 @@ msgctxt ""
"par_idN10DB6\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28999,7 +18154,7 @@ msgctxt ""
"par_idN10DE2\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29039,7 +18194,7 @@ msgctxt ""
"par_idN10E02\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29047,7 +18202,7 @@ msgctxt ""
"par_idN10E09\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29063,7 +18218,7 @@ msgctxt ""
"par_idN10E17\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29079,7 +18234,7 @@ msgctxt ""
"par_idN10E25\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29087,7 +18242,7 @@ msgctxt ""
"par_idN10E2D\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29095,7 +18250,7 @@ msgctxt ""
"par_idN10E34\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29111,7 +18266,7 @@ msgctxt ""
"par_idN10E42\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29127,7 +18282,7 @@ msgctxt ""
"par_idN10E50\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29135,7 +18290,7 @@ msgctxt ""
"par_idN10E58\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29167,7 +18322,7 @@ msgctxt ""
"par_idN10E78\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29237,7 +18392,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -29351,7 +18506,7 @@ msgctxt ""
"par_idN10D71\n"
"help.text"
msgid "You can find a general introduction to Array functions at the top of this page."
-msgstr "Bạn tìm thấy một giới thiệu chung về các hàm Mảng ở đầu của trang này."
+msgstr "Bạn có thể tìm một giới thiệu chung về các hàm Mảng ở đầu của trang này."
#: 04060107.xhp
msgctxt ""
@@ -29360,7 +18515,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -29372,34 +18527,31 @@ msgid "In the following table, column A lists unsorted measurement values. Colum
msgstr "Trong bảng theo đây, cột A liệt kê các giá trị đo chưa sắp xếp. Cột B chứa giới hạn trên bạn đã nhập cho các hàng, cho đó bạn muốn chia dữ liệu trong cột A. Tùy theo giới hạn được nhập vào ô B1, hàm FREQUENCY trả về số giá trị đã đo mà nhỏ hơn hay bằng với 5. Vì giới hạn trong B1 là 10, hàm FREQUENCY trả về kết quả thứ hai như số giá trị đã đo mà lớn hơn 5 và nhỏ hơn hay bằng với 10. Chuỗi bạn đã nhập vào B6 (« >25 ») chỉ cho mục đích tham chiếu."
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3155869\n"
"220\n"
"help.text"
msgid "<emph>A</emph>"
-msgstr "<emph>A</emph>"
+msgstr "<emph>Mode</emph>"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3149328\n"
"221\n"
"help.text"
msgid "<emph>B</emph>"
-msgstr "<emph>B</emph>"
+msgstr "<emph>Mode</emph>"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3152467\n"
"222\n"
"help.text"
msgid "<emph>C</emph>"
-msgstr "<emph>C</emph>"
+msgstr "<emph>Mode</emph>"
#: 04060107.xhp
msgctxt ""
@@ -29426,7 +18578,7 @@ msgctxt ""
"225\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29435,7 +18587,7 @@ msgctxt ""
"226\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29453,7 +18605,7 @@ msgctxt ""
"228\n"
"help.text"
msgid "8"
-msgstr "8"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29471,7 +18623,7 @@ msgctxt ""
"230\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29507,7 +18659,7 @@ msgctxt ""
"234\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29543,7 +18695,7 @@ msgctxt ""
"238\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29561,7 +18713,7 @@ msgctxt ""
"240\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29579,7 +18731,7 @@ msgctxt ""
"242\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29615,7 +18767,7 @@ msgctxt ""
"246\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29651,7 +18803,7 @@ msgctxt ""
"250\n"
"help.text"
msgid "9"
-msgstr "9"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29669,7 +18821,7 @@ msgctxt ""
"252\n"
"help.text"
msgid "7"
-msgstr "7"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29861,7 +19013,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -29949,7 +19101,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -30028,7 +19180,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -30158,7 +19310,7 @@ msgctxt ""
"72\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -30203,7 +19355,7 @@ msgctxt ""
"77\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30212,7 +19364,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30221,7 +19373,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30230,7 +19382,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30239,7 +19391,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "E"
-msgstr "E"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30248,7 +19400,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "F"
-msgstr "F"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30257,7 +19409,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "G"
-msgstr "G"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30320,7 +19472,7 @@ msgctxt ""
"90\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -30329,7 +19481,7 @@ msgctxt ""
"91\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -30383,7 +19535,7 @@ msgctxt ""
"97\n"
"help.text"
msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30392,7 +19544,7 @@ msgctxt ""
"98\n"
"help.text"
msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30446,7 +19598,7 @@ msgctxt ""
"104\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30509,7 +19661,7 @@ msgctxt ""
"111\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -30545,7 +19697,7 @@ msgctxt ""
"115\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -30572,7 +19724,7 @@ msgctxt ""
"118\n"
"help.text"
msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -30635,7 +19787,7 @@ msgctxt ""
"125\n"
"help.text"
msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30671,7 +19823,7 @@ msgctxt ""
"129\n"
"help.text"
msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -30979,7 +20131,7 @@ msgctxt ""
"158\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -31057,7 +20209,7 @@ msgctxt ""
"par_idN11B1C\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -31065,7 +20217,7 @@ msgctxt ""
"par_idN11B2F\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31073,7 +20225,7 @@ msgctxt ""
"par_idN11B35\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31081,7 +20233,7 @@ msgctxt ""
"par_idN11B3B\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31089,7 +20241,7 @@ msgctxt ""
"par_idN11B41\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31097,7 +20249,7 @@ msgctxt ""
"par_idN11B48\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31105,7 +20257,7 @@ msgctxt ""
"par_idN11B4E\n"
"help.text"
msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31113,7 +20265,7 @@ msgctxt ""
"par_idN11B54\n"
"help.text"
msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
#: 04060107.xhp
msgctxt ""
@@ -31121,7 +20273,7 @@ msgctxt ""
"par_idN11B5A\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -31129,7 +20281,7 @@ msgctxt ""
"par_idN11B60\n"
"help.text"
msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31137,7 +20289,7 @@ msgctxt ""
"par_idN11B67\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31145,7 +20297,7 @@ msgctxt ""
"par_idN11B6D\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31153,7 +20305,7 @@ msgctxt ""
"par_idN11B73\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -31161,7 +20313,7 @@ msgctxt ""
"par_idN11B79\n"
"help.text"
msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -31169,7 +20321,7 @@ msgctxt ""
"par_idN11B7F\n"
"help.text"
msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31177,7 +20329,7 @@ msgctxt ""
"par_idN11B86\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31185,7 +20337,7 @@ msgctxt ""
"par_idN11B8C\n"
"help.text"
msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -31296,7 +20448,6 @@ msgid "SUMX2MY2(ArrayX; ArrayY)"
msgstr "SUMX2MY2(MảngX; MảngY)"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3144916\n"
@@ -31367,7 +20518,6 @@ msgid "SUMX2PY2(ArrayX; ArrayY)"
msgstr "SUMX2PY2(MảngX; MảngY)"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3163417\n"
@@ -31566,7 +20716,7 @@ msgctxt ""
"204\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060107.xhp
msgctxt ""
@@ -31628,7 +20778,7 @@ msgctxt ""
"211\n"
"help.text"
msgid "<emph>DataY</emph> represents the Y Data array."
-msgstr "<emph>Dữ_liệuY</emph> đại diện mạng Dữ liệu Y."
+msgstr "<emph>Dữ_liệuY</emph> đại diện mảng Dữ liệu Y."
#: 04060107.xhp
msgctxt ""
@@ -31691,533 +20841,2786 @@ msgctxt ""
msgid "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select DataY. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
msgstr "Hàm này trả về một mảng và được xử lý bằng cùng một cách với các hàm mảng khác. Hãy lựa chọn một phạm vi trong đó bạn muốn kết quả xuất hiện, sau đó chọn hàm. Chọn Dữ_liệuY. Nhập tham số khác nào, đánh dấu <emph>Mảng</emph> rồi bấm nút <emph>OK</emph>."
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
+"04060108.xhp\n"
"tit\n"
"help.text"
-msgid "DATEDIF"
-msgstr ""
+msgid "Statistics Functions"
+msgstr "Hàm Thống Kê"
-#: func_datedif.xhp
-#, fuzzy
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"bm_id3155511\n"
+"04060108.xhp\n"
+"bm_id3153018\n"
"help.text"
-msgid "<bookmark_value>DATEDIF function</bookmark_value>"
-msgstr "<bookmark_value>hàm DATE</bookmark_value>"
+msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
+msgstr "<bookmark_value>hàm thông tin</bookmark_value><bookmark_value>Trợ lý Hàm; thông tin</bookmark_value><bookmark_value>hàm; hàm thông tin</bookmark_value>"
-#: func_datedif.xhp
-#, fuzzy
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3155511\n"
+"04060108.xhp\n"
+"hd_id3153018\n"
+"1\n"
"help.text"
-msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
-msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">Hàm DATE</link></variable>"
+msgid "Statistics Functions"
+msgstr "Hàm Thống Kê"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153551\n"
+"04060108.xhp\n"
+"par_id3157874\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
-msgstr ""
+msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
+msgstr "<variable id=\"statistiktext\">Phân loại này chứa các hàm <emph>Thống kê</emph>.</variable>"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3148590\n"
+"04060108.xhp\n"
+"par_id3149001\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Some of the examples use the following data table:"
+msgstr "Một số mẫu ví dụ sử dụng bảng dữ liệu này:"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3150474\n"
+"04060108.xhp\n"
+"par_id3148775\n"
+"10\n"
"help.text"
-msgid "DATEDIF(Start date; End date; Interval)"
+msgid "C"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152815\n"
+"04060108.xhp\n"
+"par_id3145297\n"
+"11\n"
"help.text"
-msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgid "D"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3155817\n"
+"04060108.xhp\n"
+"par_id3150661\n"
+"12\n"
"help.text"
-msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgid "2"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153183\n"
+"04060108.xhp\n"
+"par_id3153551\n"
+"13\n"
"help.text"
-msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
-msgstr ""
+msgid "x value"
+msgstr "giá trị x"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5735953\n"
+"04060108.xhp\n"
+"par_id3147536\n"
+"14\n"
"help.text"
-msgid "Value for \"Interval\""
+msgid "y value"
+msgstr "giá trị y"
+
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3153224\n"
+"15\n"
+"help.text"
+msgid "3"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id8360850\n"
+"04060108.xhp\n"
+"par_id3150475\n"
+"16\n"
"help.text"
-msgid "Return value"
-msgstr "Giá trị trả về"
+msgid "-5"
+msgstr "-5"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9648731\n"
+"04060108.xhp\n"
+"par_id3155367\n"
+"17\n"
"help.text"
-msgid "\"d\""
-msgstr ""
+msgid "-3"
+msgstr "-3"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id908841\n"
+"04060108.xhp\n"
+"par_id3149783\n"
+"18\n"
"help.text"
-msgid "Number of whole days between Start date and End date."
+msgid "4"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id8193914\n"
+"04060108.xhp\n"
+"par_id3153181\n"
+"19\n"
"help.text"
-msgid "\"m\""
-msgstr ""
+msgid "-2"
+msgstr "-2"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9841608\n"
+"04060108.xhp\n"
+"par_id3148429\n"
+"20\n"
"help.text"
-msgid "Number of whole months between Start date and End date."
+msgid "0"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id2701803\n"
+"04060108.xhp\n"
+"par_id3152588\n"
+"21\n"
"help.text"
-msgid "\"y\""
+msgid "5"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id2136295\n"
+"04060108.xhp\n"
+"par_id3147483\n"
+"22\n"
"help.text"
-msgid "Number of whole years between Start date and End date."
-msgstr ""
+msgid "-1"
+msgstr "-1"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9200109\n"
+"04060108.xhp\n"
+"par_id3083443\n"
+"23\n"
"help.text"
-msgid "\"ym\""
+msgid "1"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id4186223\n"
+"04060108.xhp\n"
+"par_id3149826\n"
+"24\n"
"help.text"
-msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgid "6"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5766472\n"
+"04060108.xhp\n"
+"par_id3163820\n"
+"25\n"
"help.text"
-msgid "\"md\""
+msgid "0"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id1491134\n"
+"04060108.xhp\n"
+"par_id3154816\n"
+"26\n"
"help.text"
-msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgid "3"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5866472\n"
+"04060108.xhp\n"
+"par_id3149276\n"
+"27\n"
"help.text"
-msgid "\"yd\""
+msgid "7"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id1591134\n"
+"04060108.xhp\n"
+"par_id3149267\n"
+"28\n"
"help.text"
-msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgid "2"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3147477\n"
+"04060108.xhp\n"
+"par_id3156310\n"
+"29\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "4"
+msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152589\n"
+"04060108.xhp\n"
+"par_id3154639\n"
+"30\n"
"help.text"
-msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgid "8"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3252589\n"
+"04060108.xhp\n"
+"par_id3145205\n"
+"31\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
+msgid "4"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3352589\n"
+"04060108.xhp\n"
+"par_id3153276\n"
+"32\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgid "6"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3452589\n"
+"04060108.xhp\n"
+"par_id3150756\n"
+"33\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
+msgid "9"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3752589\n"
+"04060108.xhp\n"
+"par_id3156095\n"
+"34\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
+msgid "6"
msgstr ""
-#: 06030200.xhp
+#: 04060108.xhp
msgctxt ""
-"06030200.xhp\n"
-"tit\n"
+"04060108.xhp\n"
+"par_id3152929\n"
+"35\n"
"help.text"
-msgid "Remove Precedents"
-msgstr "Bỏ tiền lệ"
+msgid "8"
+msgstr ""
-#: 06030200.xhp
+#: 04060108.xhp
msgctxt ""
-"06030200.xhp\n"
-"bm_id3155628\n"
+"04060108.xhp\n"
+"par_id3156324\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; gỡ bỏ tiền lệ</bookmark_value><bookmark_value>ô công thức; gỡ bỏ tiền lệ</bookmark_value>"
+msgid "The statistical functions are described in the following subsections."
+msgstr "Các hàm thống kê được diễn tả trong những phần con theo đây."
-#: 06030200.xhp
+#: 04060108.xhp
msgctxt ""
-"06030200.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060108.xhp\n"
+"par_id3150271\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
-msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Bỏ tiền lệ\">Bỏ tiền lệ</link>"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Hàm Thống kê trong Phần bổ trợ Phân tích\">Hàm Thống kê trong Phần bổ trợ Phân tích</link>"
-#: 06030200.xhp
+#: 04060109.xhp
msgctxt ""
-"06030200.xhp\n"
-"par_id3149456\n"
-"2\n"
+"04060109.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\">Xoá một cấp của các mũi tên tìm vết được chèn dùng câu lệnh <emph>Tìm vết tiền lệ</emph>.</ahelp>"
+msgid "Spreadsheet Functions"
+msgstr "Hàm Bảng Tính"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"tit\n"
+"04060109.xhp\n"
+"bm_id3148522\n"
"help.text"
-msgid "AutoFormat"
-msgstr "Tự động Định dạng"
+msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; hàm</bookmark_value><bookmark_value>Trợ lý Hàm; bảng tính</bookmark_value><bookmark_value>hàm; bảng tính</bookmark_value>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149666\n"
+"04060109.xhp\n"
+"hd_id3148522\n"
"1\n"
"help.text"
-msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
-msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"Tự động Định dạng\">Tự động Định dạng</link></variable>"
+msgid "Spreadsheet Functions"
+msgstr "Hàm Bảng Tính"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145367\n"
+"04060109.xhp\n"
+"par_id3144508\n"
"2\n"
"help.text"
-msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
-msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Hãy sử dụng câu lệnh này để áp dụng một Tự động Định dạng cho một vùng trang tính đã chọn, hoặc để xác định các Tự động Định dạng của mình.</ahelp></variable>"
+msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
+msgstr "<variable id=\"tabelletext\">Phần này chứa mô tả về các hàm <emph>Bảng tính</emph>, cùng với mẫu thí dụ. </variable>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3148455\n"
+"04060109.xhp\n"
+"bm_id3146968\n"
+"help.text"
+msgid "<bookmark_value>ADDRESS function</bookmark_value>"
+msgstr "<bookmark_value>hàm ADDRESS</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146968\n"
"3\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "ADDRESS"
+msgstr "ADDRESS"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145799\n"
+"04060109.xhp\n"
+"par_id3155762\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Hãy chọn một Tự động Định dạng đã xác định sẵn, để áp dụng cho một vùng đã chọn trên trang tính.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
+msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Trả về một địa chỉ ô (tham chiếu) dạng văn bản, tùy theo các số thứ tự hàng/cột đã ghi rõ.</ahelp> Bạn cũng có thể quyết định có nên đọc địa chỉ dưới dạng một địa chỉ tuyệt đối (v.d. $A$1), hoặc dưới dạng một địa chỉ tương đối (A1), hoặc dưới dạng hỗn hợp (A$1 hay $A1). Cũng có thể ghi rõ tên của trang tính."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149410\n"
-"5\n"
+"04060109.xhp\n"
+"par_id1027200802301348\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
+msgstr "Để hỗ trợ cho việc dùng chung, cả hai hàm ADDRESS và INDIRECT đều hỗ trợ một tham số tùy chọn cho phép xác lập xem địa chỉ sẽ được điền dưới dạng hay R1C1 hay là kiểu A1 thường dùng."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3154017\n"
-"6\n"
+"04060109.xhp\n"
+"par_id1027200802301445\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Cho phép bạn thêm định dạng hiện thời của một phạm vi chứa ít nhất 4×4 ô cho danh sách các Tự động Định dạng đã xác định sẵn.</ahelp> Hộp thoại <link href=\"text/shared/01/05150101.xhp\" name=\"Thêm Tự động Định dạng\">Thêm Tự động Định dạng</link> sẽ xuất hiện."
+msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
+msgstr "Trong hàm ADDRESS, tham số này được đưa vào tại vị trí thứ tư, chuyển tham số tùy chọn tên của bảng sang vị trí thứ năm."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153708\n"
-"29\n"
+"04060109.xhp\n"
+"par_id102720080230153\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
-msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Nhập một tên, sau đó bấm nút <emph>OK</emph>. </ahelp>"
+msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgstr "Trong hàm INDIRECT, tham số trên được thêm vào tại vị trí số hai."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3150044\n"
+"04060109.xhp\n"
+"par_id102720080230151\n"
+"help.text"
+msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
+msgstr "Trong cả hai hàm, nếu như tham số có giá trị 0 thì kiểu kí hiệu địa chỉ R1C1 sẽ được sử dụng, còn nếu như tham số không xuất hiện hay có giá trị khác 0 thì kiểu kí hiệu A1 sẽ được sử dụng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301556\n"
+"help.text"
+msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
+msgstr "Trong trường hợp kí hiệu R1C1, hàm ADDRESS trả về chuỗi địa chỉ sử dụng dấu chấm than '!' làm kí hiệu phân cách tên bảng, còn hàm INDIRECT coi dấu chấm than có tác dụng như trên. Cả hai hàm vẫn sử dụng dấu chấm '.' để phân cách tên bảng với kiểu kí hiệu A1."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301521\n"
+"help.text"
+msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
+msgstr "Khi mở các tài liệu trong định dạng ODF 1.0/1.1, hàm ADDRESS thường sử dụng vị trí thứ tư cho tên bảng sẽ chuyển sang vị trí thứ năm. Một tham số với với giá trị 1 sẽ được thêm vào vị trí thứ tư thay thế."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301650\n"
+"help.text"
+msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
+msgstr "Khi lưu một tài liệu theo định dạng ODF 1.0/1.1, nếu hàm ADDRESS có tham số thứ 4, tham số đó sẽ bị gỡ bỏ."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id102720080230162\n"
+"help.text"
+msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+msgstr "Không nên lưu bảng tính theo định dạng cũ ODF 1.0/1.1 nếu như tham số thứ tư của hàm ADDRESS có giá trị là 0."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301756\n"
+"help.text"
+msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
+msgstr "Hàm INDIRECT sẽ được lưu mà không chuyển sang dạng của ODF 1.0/1.1. Nếu tham số thứ hai có mặt, các phiên bản của của Calc sẽ báo lỗi cho hàm đó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151196\n"
+"5\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154707\n"
+"6\n"
+"help.text"
+msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
+msgstr "ADDRESS(Hàng; Cột; Kiểu; A1; \"Trang\")"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147505\n"
"7\n"
"help.text"
-msgid "More"
-msgstr "Nhiều"
+msgid "<emph>Row</emph> represents the row number for the cell reference"
+msgstr "<emph>Hàng</emph> đại diện số thứ tự hàng cho tham chiếu ô"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3146920\n"
+"04060109.xhp\n"
+"par_id3145323\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Mở phần <emph>Định dạng</emph>, mà hiển thị các sự ghi đè định dạng có thể được áp dụng cho bảng tính. Bỏ chọn một tùy chọn thì giữ định dạng của bảng tính hiện thời cho kiểu định dạng đó.</ahelp>"
+msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
+msgstr "<emph>Cột</emph> đại diện số thứ tự cột cho tham chiếu ô (số, không phải chữ)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155961\n"
+"04060109.xhp\n"
+"par_id3153074\n"
"9\n"
"help.text"
-msgid "Formatting"
-msgstr "Định dạng"
+msgid "<emph>Abs</emph> determines the type of reference:"
+msgstr "<emph>Kiểu</emph> xác định kiểu tham chiếu :"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153965\n"
+"04060109.xhp\n"
+"par_id3153298\n"
"10\n"
"help.text"
-msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
-msgstr "Trong phần này, bạn có thể chọn hay bỏ chọn những tùy chọn định dạng sẵn sàng. Muốn giữ bất cứ thiết lập nào hiện thời trên bảng tính thì bỏ chọn tùy chọn tương ứng."
+msgid "1: absolute ($A$1)"
+msgstr "1: tuyệt đối ($A$1)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3154021\n"
+"04060109.xhp\n"
+"par_id3150431\n"
"11\n"
"help.text"
-msgid "Number format"
-msgstr "Định dạng Số"
+msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgstr "2: kiểu tham chiếu hàng là tuyệt đối; tham chiếu cột là tương đối (A$1)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3159239\n"
+"04060109.xhp\n"
+"par_id3146096\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại định dạng số của định dạng đã chọn.</ahelp>"
+msgid "3: row (relative); column (absolute) ($A1)"
+msgstr "3: hàng (tương đối); cột (tuyệt đối) ($A1)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149530\n"
+"04060109.xhp\n"
+"par_id3153334\n"
"13\n"
"help.text"
-msgid "Borders"
-msgstr "Viền"
+msgid "4: relative (A1)"
+msgstr "4: tương đối (A1)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145259\n"
+"04060109.xhp\n"
+"par_id1027200802465915\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr "<emph>A1</emph> (optional) - nếu có giá trị là 0 thì kiểu kí hiệu R1C1 sẽ được sử dụng, trái lại nếu như tham số này không có mặt hoặc có giá trị khác 0 thì kiểu kí hiệu A1 sẽ được sử dụng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153962\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại viền của định dạng đã chọn.</ahelp>"
+msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
+msgstr "<emph>Trang</emph> đại diện tên của trang tính. Nó phải nằm giữa dấu nháy kép."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3154657\n"
+"04060109.xhp\n"
+"hd_id3147299\n"
"15\n"
"help.text"
-msgid "Font"
-msgstr "Phông"
+msgid "Example:"
+msgstr "Thí dụ :"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3152990\n"
+"04060109.xhp\n"
+"par_id3148744\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại phông chữ của định dạng đã chọn.</ahelp>"
+msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+msgstr "<item type=\"input\">=ADDRESS(1;1;2;\"Trang2\")</item> trả về « Trang2.A$1 »."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155379\n"
+"04060109.xhp\n"
+"par_id3159260\n"
"17\n"
"help.text"
-msgid "Pattern"
-msgstr "Mẫu"
+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 "Nếu ô A1 trong trang tính 2 chứa giá trị <item type=\"input\">-6</item>, bạn có thể tham chiếu gián tiếp đến ô đã tham chiếu dùng một hàm trong B2, bằng cách nhập công thức <item type=\"input\">=ABS(INDIRECT(B2))</item>. Kết quả là giá trị tuyệt đối của tham chiếu ô được ghi rõ trong B2, mà trong trường hợp này là 6."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3150368\n"
-"18\n"
+"04060109.xhp\n"
+"bm_id3150372\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại mẫu của định dạng đã chọn.</ahelp>"
+msgid "<bookmark_value>AREAS function</bookmark_value>"
+msgstr "<bookmark_value>hàm AREAS</bookmark_value>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3146115\n"
+"04060109.xhp\n"
+"hd_id3150372\n"
"19\n"
"help.text"
-msgid "Alignment"
-msgstr "Sắp hàng"
+msgid "AREAS"
+msgstr "AREAS"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3156445\n"
+"04060109.xhp\n"
+"par_id3150036\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại tình trạng canh lề của định dạng đã chọn.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
+msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Trả về số phạm vi riêng thuộc về một phạm vi đa mục.</ahelp> Một phạm vi có thể chứa nhiều ô kề nhau, hay một ô riêng lẻ."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155811\n"
+"04060109.xhp\n"
+"par_id061020090307073\n"
+"help.text"
+msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+msgstr "Hàm này nhận một đối số duy nhất. Nếu có nhiều vùng, bạn phải bao chúng trong ngoặc đơn bổ sung. Nhiều vùng có thể được nhập bằng cách sử dụng dấu chấm phẩy (;) để chia tách, nhưng sẽ được chuyển đổi tự động sang toán tử dấu ngã (~). Dấu ngã được sử dụng để nối các vùng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145222\n"
"21\n"
"help.text"
-msgid "AutoFit width and height"
-msgstr "Chỉnh tự động bề rộng/cao"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3148703\n"
+"04060109.xhp\n"
+"par_id3155907\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại chiều rộng và chiều cao của các ô đã chọn của định dạng đã chọn.</ahelp>"
+msgid "AREAS(Reference)"
+msgstr "AREAS(Tham_chiếu)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3159223\n"
+"04060109.xhp\n"
+"par_id3153118\n"
+"23\n"
+"help.text"
+msgid "Reference represents the reference to a cell or cell range."
+msgstr "<emph>Tham_chiếu</emph> đại diện tham chiếu đến một ô hay phạm vi các ô."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148891\n"
+"24\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149946\n"
+"25\n"
+"help.text"
+msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
+msgstr "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> trả về 3, vì nó là một tham chiếu tới 3 ô hoặc vùng. Sau khi nhập nó được chuyển thành =AREAS((A1:B3~F2~G1))."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146820\n"
"26\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
+msgstr "<item type=\"input\">=AREAS(All)</item> trả về 1 nếu bạn đã xác định một vùng tên « Tất cả » dưới <emph>Dữ liệu > Xác định Phạm vi</emph>."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153064\n"
-"27\n"
+"04060109.xhp\n"
+"bm_id3148727\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
-msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Mở một hộp thoại trong đó bạn có thể thay đổi đặc tả của Định dạng tự động đã chọn.</ahelp> Nút này chỉ hiển thị nếu bạn đã nhấn vào nút <emph>Nhiều</emph> để hiển thị thêm tùy chọn."
+msgid "<bookmark_value>DDE function</bookmark_value>"
+msgstr "<bookmark_value>hàm DDE</bookmark_value>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153912\n"
+"04060109.xhp\n"
+"hd_id3148727\n"
"28\n"
"help.text"
-msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
-msgstr "Hộp thoại <emph>Thay tên Tự động Định dạng</emph> sẽ mở.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Nhập vào đây tên của Tự động Định dạng mới.</ahelp>"
+msgid "DDE"
+msgstr "DDE"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155264\n"
-"23\n"
+"04060109.xhp\n"
+"par_id3149434\n"
+"29\n"
"help.text"
-msgid "More"
-msgstr "Nhiều"
+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\">Trả về kết quả của một liên kết dựa vào DDE.</ahelp> Nếu nội dung của phạm vi hay phần đã liên kết còn thay đổi, thì giá trị đã trả về sẽ cũng thay đổi. Bạn cần phải nạp lại bảng tính hoặc chọn lệnh trình đơn <emph>Sửa - Liên kết</emph> để thấy các liên kết đã cập nhật. Không cho phép liên kết đa nền tảng, v.d. liên kết từ một bản cài đặt <item type=\"productname\">%PRODUCTNAME</item> chạy từ một máy Windows đến một tài liệu được tạo trên một máy Linux."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3159094\n"
-"24\n"
+"04060109.xhp\n"
+"hd_id3150700\n"
+"30\n"
"help.text"
-msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
-msgstr "Đóng phần thêm tùy chọn <emph>Định dạng</emph>, nếu nó còn mở."
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148886\n"
+"31\n"
+"help.text"
+msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+msgstr "DDE(\"Phục_vụ\"; \"Tập_tin\"; \"Phạm_vi\"; Chế_độ)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154842\n"
+"32\n"
+"help.text"
+msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
+msgstr "<emph>Máy chủ</emph> là tên của máy chủ ứng dụng. Các ứng dụng trong <item type=\"productname\">%PRODUCTNAME</item> có tên máy chủ là \"Soffice\"."
+
+#: 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>Tập_tin</emph> là tên tập tin hoàn toàn, gồm có đặc tả đường dẫn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147472\n"
+"34\n"
+"help.text"
+msgid "<emph>Range</emph> is the area containing the data to be evaluated."
+msgstr "<emph>Phạm_vi</emph> là vùng chứa dữ liệu cần ước tính."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152773\n"
+"184\n"
+"help.text"
+msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
+msgstr "<emph>Chế_độ</emph> là một tham số còn tùy chọn mà điều khiển phương pháp theo đó máy chủ DDE chuyển đổi dữ liệu sang số."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154383\n"
+"185\n"
+"help.text"
+msgid "<emph>Mode</emph>"
+msgstr "<emph>Mode</emph>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145146\n"
+"186\n"
+"help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Hiệu ứng</emph>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154558\n"
+"187\n"
+"help.text"
+msgid "0 or missing"
+msgstr "0 hay thiếu"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145596\n"
+"188\n"
+"help.text"
+msgid "Number format from the \"Default\" cell style"
+msgstr "Định dạng số từ kiểu dáng ô « Mặc định »"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152785\n"
+"189\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154380\n"
+"190\n"
+"help.text"
+msgid "Data are always interpreted in the standard format for US English"
+msgstr "Dữ liệu lúc nào cũng được đọc theo định dạng tiêu chuẩn cho tiếng Anh Mỹ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150279\n"
+"191\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153775\n"
+"192\n"
+"help.text"
+msgid "Data are retrieved as text; no conversion to numbers"
+msgstr "Dữ liệu được lấy dạng văn bản; không chuyển đổi sang số"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149546\n"
+"35\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148734\n"
+"36\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"trang1.A1\")</item> thì đọc nội dung của ô A1 trên Trang 1 của bảng tính <item type=\"productname\">%PRODUCTNAME</item> Calc « data1.sxc »."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153081\n"
+"37\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Tôn chỉ của hôm nay\")</item> thì trả về một tôn chỉ trong ô chứa công thức này. Trước tiên, bạn cần phải nhập một dòng vào tài liệu « motto.sxw » chứa câu nói đã muốn, sau đó xác định nó làm dòng đầu của một phần tên <item type=\"literal\">Tôn chỉ của Hôm nay</item> (trong <item type=\"productname\">%PRODUCTNAME</item> Writer dưới <emph>Chèn > Phần</emph>). Nếu tôn chỉ được sửa đổi (và lưu lại) trong tài liệu <item type=\"productname\">%PRODUCTNAME</item> Writer, tôn chỉ được cập nhật trong tất cả các ô <item type=\"productname\">%PRODUCTNAME</item> Calc trong đó liên kết DDE này được xác định."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153114\n"
+"help.text"
+msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr "<bookmark_value>hàm ERRORTYPE</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153114\n"
+"38\n"
+"help.text"
+msgid "ERRORTYPE"
+msgstr "ERRORTYPE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148568\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
+msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Trả về số tương ứng với một <link href=\"text/scalc/05/02140000.xhp\" name=\"giá trị lỗi\">giá trị lỗi</link> xảy ra trong một ô khác.</ahelp> Với sự giúp của số này, bạn có thể tạo một thông điệp lỗi."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149877\n"
+"40\n"
+"help.text"
+msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
+msgstr "<emph>Thanh Trạng thái</emph> hiển thị mã lỗi đã xác định sẵn từ <item type=\"productname\">%PRODUCTNAME</item> nếu bạn nhấn vào ô chứa lỗi."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154327\n"
+"41\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151322\n"
+"42\n"
+"help.text"
+msgid "ERRORTYPE(Reference)"
+msgstr "ERRORTYPE(Tham_chiếu)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150132\n"
+"43\n"
+"help.text"
+msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgstr "<emph>Tham_chiếu</emph> chứa địa chỉ cua ô trong đó lỗi xảy ra."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145248\n"
+"44\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146904\n"
+"45\n"
+"help.text"
+msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
+msgstr "Nếu ô A1 hiển thị « Err:518 », hàm <item type=\"input\">=ERRORTYPE(A1)</item> trả về số 518."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151221\n"
+"help.text"
+msgid "<bookmark_value>INDEX function</bookmark_value>"
+msgstr "<bookmark_value>hàm INDEX</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151221\n"
+"47\n"
+"help.text"
+msgid "INDEX"
+msgstr "INDEX"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150268\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_INDEX\">Hàm INDEX trả về một phạm vi phụ, được xác định theo số thứ tự hàng/cột, hay một chỉ số phạm vi còn tùy chọn. Phụ thuộc vào ngữ cảnh, hàm INDEX trả về một tham chiếu hay nội dung.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3156063\n"
+"49\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149007\n"
+"50\n"
+"help.text"
+msgid "INDEX(Reference; Row; Column; Range)"
+msgstr "INDEX(Tham_chiếu; Hàng; Cột; Phạm_vi)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153260\n"
+"51\n"
+"help.text"
+msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
+msgstr "<emph>Tham_chiếu</emph> là một tham chiếu, được nhập hoặc một cách trực tiếp hoặc bằng cách ghi rõ một tên phạm vi. Nếu tham chiếu chứa nhiều phạm vi, bạn cần phải đặt tên của tham chiếu hay phạm vi giữa dấu ngoặc đơn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145302\n"
+"52\n"
+"help.text"
+msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
+msgstr "<emph>Hàng</emph> (tùy chọn) đại diện chỉ số hàng của phạm vi tham chiếu, cho đó cần trả về một giá trị. Trong trường hợp 0 (không có hàng cụ thể), trả về tất cả các hàng đã tham chiếu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154628\n"
+"53\n"
+"help.text"
+msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
+msgstr "<emph>Cột</emph> (tùy chọn) đại diện chỉ số cột của phạm vi tham chiếu, cho đó cần trả về một giá trị. Trong trường hợp 0 (không có cột cụ thể), trả về tất cả các cột đã tham chiếu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155514\n"
+"54\n"
+"help.text"
+msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
+msgstr "<emph>Phạm_vi</emph> (tùy chọn) đại diện chỉ số của phạm vi phụ, nế tham chiếu đện một phạm vi đa mục."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145264\n"
+"55\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159112\n"
+"56\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
+msgstr "<item type=\"input\">=INDEX(Prices;4;1)</item> trả về giá trị từ hàng 4, cột 1 của phạm vi cơ sở dữ liệu được xác định dưới <emph>Dữ liệu > Xác định</emph> như là <emph>Giá</emph> (Prices)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150691\n"
+"57\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgstr "<item type=\"input\">=INDEX(SumX;4;1)</item> trả về giá trị từ phạm vi <emph>SumX</emph> trong hàng 4, cột 1 như được xác định dưới <emph>Chèn > Tên > Xác định</emph>."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4109012\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
+msgstr "<item type=\"input\">=INDEX(A1:B6;1)</item> trả về một tham chiếu đến hàng đầu tiên của khối A1:B6."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9272133\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
+msgstr "<item type=\"input\">=INDEX(A1:B6;0;1)</item> trả về một tham chiếu đến cột đầu tiên của khối A1:B6."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3158419\n"
+"58\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> ngụ ý giá trị được chứa trong hàng 4, cột 1 của phạm vi (đa mục), tên của đó bạn đã đặt dưới <emph>Chèn > Tên > Đặt</emph> như là <emph>đa</emph> (multi). Phạm vi đa mục có thể chứa vài phạm vi hình chữ nhật khác nhau, mỗi phạm vi có một hàng 4, cột 1. Sau đó, nếu bạn muốn gọi khối thứ hai của phạm vi đa mục này, gõ số <item type=\"input\">2</item> làm tham số <emph>phạm vi</emph>."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148595\n"
+"59\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
+msgstr "<item type=\"input\">=INDEX(A1:B6;1;1)</item> ngụ ý giá trị ở góc trên, bên trái của phạm vi A1:B6."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9960020\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+msgstr "<item type=\"input\">=INDEX((multi);0;0;2)</item> trả về một tham chiếu đến phạm vi thứ hai của phạm vi đa mục."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153181\n"
+"help.text"
+msgid "<bookmark_value>INDIRECT function</bookmark_value>"
+msgstr "<bookmark_value>hàm INDIRECT</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153181\n"
+"62\n"
+"help.text"
+msgid "INDIRECT"
+msgstr "INDIRECT"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147169\n"
+"63\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
+msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">Trả về <emph>tham chiếu</emph> được một chuỗi văn bản ghi rõ.</ahelp> Hàm này cũng có thể được dùng để trả về vùng của một chuỗi tương ứng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153717\n"
+"64\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149824\n"
+"65\n"
+"help.text"
+msgid "INDIRECT(Ref; A1)"
+msgstr "INDIRECT(Tham_chiếu; A1)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154317\n"
+"66\n"
+"help.text"
+msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
+msgstr "<emph>Tham_chiếu</emph> đại diện một tham chiếu đến một ô hay vùng (theo dạng văn bản) cho đó cần trả về nội dung."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802470312\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr "<emph>A1</emph> (optional) - nếu có giá trị là 0 thì kiểu kí hiệu R1C1 sẽ được sử dụng, trái lại nếu như tham số này không có mặt hoặc có giá trị khác 0 thì kiểu kí hiệu A1 sẽ được sử dụng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN10CAE\n"
+"help.text"
+msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
+msgstr "Nếu bạn mở một bảng tính Excel mà dùng địa chỉ gián tiếp được tính từ hàm chuỗi, các địa chỉ bảng đó sẽ không được tự động đọc. Ví dụ, địa chỉ Excel trong INDIRECT(\"filename!sheetname\"&B1) không được chuyển đổi sang địa chỉ Calc trong INDIRECT(\"filename.sheetname\"&B1)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150389\n"
+"67\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150608\n"
+"68\n"
+"help.text"
+msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
+msgstr "<item type=\"input\">=INDIRECT(A1)</item> bằng với 100 nếu ô A1 chứa C108 làm tham chiếu và C108 chứa giá trị <item type=\"input\">100</item>."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3083286\n"
+"181\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
+msgstr "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> cộng lại tất cả các ô trong vùng từ A1 đến ô có địa chỉ được xác định bởi hàng 1, cột 3. Vì thế cộng lại vùng A1:C3."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154818\n"
+"help.text"
+msgid "<bookmark_value>COLUMN function</bookmark_value>"
+msgstr "<bookmark_value>hàm COLUMN</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154818\n"
+"70\n"
+"help.text"
+msgid "COLUMN"
+msgstr "COLUMN"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149711\n"
+"193\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
+msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">Trả về số thứ tự cột của một tham chiếu ô.</ahelp> Nếu tham chiếu là một ô, thì trả về số thứ tự cột của ô đó ; nếu tham số là một vùng ô, thì số cột tương ứng sẽ được trả về theo một <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"mảng\">mảng</link> nếu công thức được nhập vào <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"như một công thức mảng\">như một công thức mảng</link>. Nếu hàm COLUMN với một tham số tham chiếu vùng không phải được dùng cho một công thức mảng, thì quyết định chỉ số thứ tự cột của ô thứ nhất bên trong vùng đó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149283\n"
+"72\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149447\n"
+"73\n"
+"help.text"
+msgid "COLUMN(Reference)"
+msgstr "COLUMN(Tham_chiếu)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156310\n"
+"74\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
+msgstr "<emph>Tham_chiếu</emph> là tham chiếu đến một ô hay vùng ô có số thứ tự cột đầu tiên cần tìm."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155837\n"
+"194\n"
+"help.text"
+msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "Không nhập tham chiếu thì tìm số thứ tự cột của ô chứa công thức. <item type=\"productname\">%PRODUCTNAME</item> Calc tự động đặt tham chiếu thành ô hiện tại."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3152932\n"
+"75\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147571\n"
+"76\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+msgstr "<item type=\"input\">=COLUMN(A1)</item> bằng với 1. Cột A là cột đầu tiên của bảng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147079\n"
+"77\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+msgstr "<item type=\"input\">=COLUMN(C3:E3)</item> bằng với 3. Cột C là cột thứ ba của bảng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146861\n"
+"195\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
+msgstr "<item type=\"input\">=COLUMN(D3:G10)</item> trả về 4 vì cột D là cột thứ tư của bảng, và hàm COLUMN không được dùng làm công thức mảng. (Trong trường hợp này, giá trị thứ nhất của mảng lúc nào cũng được dùng làm kết quả.)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156320\n"
+"196\n"
+"help.text"
+msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
+msgstr "Hai công thức <item type=\"input\">{=COLUMN(B2:B7)}</item> và <item type=\"input\">=COLUMN(B2:B7)</item> đều trả về 2 vì tham chiếu chỉ chứa cột B làm cột thứ hai của bảng. Vì vùng cột đơn chỉ có một số thứ tự cột, không phân biệt giữa công thức bình thường và công thức dạng công thức mảng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150872\n"
+"197\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+msgstr "<item type=\"input\">=COLUMN()</item> trả về 3 nếu công thức được nhập vào cột C."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153277\n"
+"198\n"
+"help.text"
+msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
+msgstr "<item type=\"input\">{=COLUMN(Chó)}</item> trả về mảng hàng đơn (3, 4) nếu con « Chó » là vùng đặt tên (C1:D3)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154643\n"
+"help.text"
+msgid "<bookmark_value>COLUMNS function</bookmark_value>"
+msgstr "<bookmark_value>hàm COLUMNS</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154643\n"
+"79\n"
+"help.text"
+msgid "COLUMNS"
+msgstr "COLUMNS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151182\n"
+"80\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">Trả về số các cột có trong tham chiếu đã cho.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149141\n"
+"81\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154047\n"
+"82\n"
+"help.text"
+msgid "COLUMNS(Array)"
+msgstr "COLUMNS(Mảng)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154745\n"
+"83\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
+msgstr "<emph>Mảng</emph> là tham chiếu đến một phạm vi các ô có tổng số cột cần tìm. Đối số cũng có thể là một ô riêng lẻ."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153622\n"
+"84\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149577\n"
+"200\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr "<item type=\"input\">=COLUMNS(B5)</item> trả về 1 vì một ô chỉ chứa một cột."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145649\n"
+"85\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+msgstr "<item type=\"input\">=COLUMNS(A1:C5)</item> bằng với 3. Tham chiếu chứa ba cột."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155846\n"
+"201\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
+msgstr "<item type=\"input\">=COLUMNS(Chó)</item> trả về 2 nếu con <item type=\"literal\">Chó</item> là phạm vi đặt tên (C1:D3)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153152\n"
+"help.text"
+msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>chức năng tìm kiếm theo chiều dọc</bookmark_value><bookmark_value>hàm VLOOKUP</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153152\n"
+"87\n"
+"help.text"
+msgid "VLOOKUP"
+msgstr "VLOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149984\n"
+"88\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Tìm kiếm theo chiều dọc với tham chiếu đến các ô kề nhau bên phải.</ahelp> Hàm này kiểm tra nếu một giá trị nào đó được chứa trong cột đầu của một mảng. Hàm thì trả về giá trị trên cùng hàng của cột có tên đặt bởi <item type=\"literal\">Index</item> (chỉ số). Nếu tham số <item type=\"literal\">SortOrder</item> (thứ tự sắp xếp) bị bỏ sót hay đặt thành TRUE (Đúng) hay số một, thì giả sử dữ liệu được sắp xếp theo thứ tự tăng dần. Trong trường hợp này, nếu không tìm thấy <item type=\"literal\">SearchCriterion</item> (tiêu chuẩn tìm kiếm) chính xác, trả về giá trị cuối cùng mà nhỏ hơn tiêu chuẩn đó. Nếu <item type=\"literal\">SortOrder</item> được đặt thành FALSE (Sai) hay số không, thì phải tìm mục tương ứng chính xác, không thì kết quả là thông điệp lỗi <emph>Lỗi: Giá trị không tồn tại</emph>. Do đó khi có giá trị số không, dữ liệu không cần được sắp xếp theo thứ tự tăng dần."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146898\n"
+"89\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150156\n"
+"90\n"
+"help.text"
+msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+msgstr "=VLOOKUP(Tiêu_chuẩn_tìm; Mảng; Chỉ_số; Thứ_tự_sắp_xếp)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149289\n"
+"91\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+msgstr "<emph>Tiêu_chuẩn_tìm</emph> là giá trị được tìm trong cột đầu của mảng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153884\n"
+"92\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
+msgstr "<emph>Mảng</emph> là tham chiếu, mà phải trải ra ít nhất hai cột."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156005\n"
+"93\n"
+"help.text"
+msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
+msgstr "<emph>Chỉ_số</emph> là số thứ tự của cột trong mảng mà chứa giá trị cần trả về. Cột đầu có số thứ tự 1."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151208\n"
+"94\n"
+"help.text"
+msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+msgstr "<emph>Thứ_tự_sắp_xếp</emph> là một tham số tùy chọn chỉ ra liệu cột đầu trong mảng có được sắp xếp theo thứ tự tăng dần hay không. Nhập hoặc giá trị lôgic FALSE (Sai) hoặc số không nếu cột đầu không phải được sắp xếp theo thứ tự tăng dần. Các cột đã sắp xếp thì được tìm kiếm rất nhanh hơn, và hàm luôn luôn trả về giá trị, thậm chí nếu giá trị tìm không có giá trị tương ứng chính xác nếu nó nằm giữa giá trị đầu và giá trị cuối của danh sách được sắp xếp. Trong danh sách không sắp xếp, giá trị tìm kiếm phải phù hợp chính xác. Nếu không hàm sẽ trả về thông điệp này: <emph>Lỗi: Giá trị không tồn tại</emph>."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147487\n"
+"95\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154129\n"
+"96\n"
+"help.text"
+msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+msgstr "Bạn muốn nhập vào ô A1 số thứ tự của một món ăn nào đó trong thực đơn (trong tiệm ăn), và tên của món ăn đó sẽ xuất hiện ngay lập tức dạng chuỗi văn bản trong ô bên cạnh (B1). Sự gán Số sang Tên được chứa trong mảng D1:E100. D1 chứa <item type=\"input\">100</item>, E1 chứa tên <item type=\"input\">Xúp Rau</item>, vân vân, đối với 100 mục trong thực đơn. Các số trong cột D được sắp xếp theo thứ tự tăng dần; do đó không cần dùng tham số <item type=\"literal\">Thứ_tự_sắp_xếp</item> còn tùy chọn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145663\n"
+"97\n"
+"help.text"
+msgid "Enter the following formula in B1:"
+msgstr "Hãy nhập vào ô B1 công thức này:"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151172\n"
+"98\n"
+"help.text"
+msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+msgstr "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149200\n"
+"99\n"
+"help.text"
+msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
+msgstr "Một khi bạn nhập một số vào ô A1, ô B1 sẽ hiển thị chuỗi văn bản tương ứng được chứa trong cột thứ hai của tham chiếu D1:E100. Nhập một số không tồn tại thì hiển thị chuỗi văn bản có số kế tiếp, về hướng xuống. Để ngăn cản trường hợp này, nhập FALSE (Sai) làm tham số cuối cùng trong công thức, để tạo một thông điệp lỗi khi một số không tồn tại được nhập vào."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153905\n"
+"help.text"
+msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+msgstr "<bookmark_value>số thứ tự trang tính; tra cứu</bookmark_value><bookmark_value>hàm SHEET</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153905\n"
+"215\n"
+"help.text"
+msgid "SHEET"
+msgstr "SHEET"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150309\n"
+"216\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Trả về số thứ tự trang tính của một tham chiếu hay chuỗi đại diện một tên trang tính.</ahelp> Nếu bạn không nhập vào tham số thì kết quả là số thứ tự trang tính của bảng tính chứa công thức đó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148564\n"
+"217\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153095\n"
+"218\n"
+"help.text"
+msgid "SHEET(Reference)"
+msgstr "SHEET(Tham_chiếu)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154588\n"
+"219\n"
+"help.text"
+msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+msgstr "<emph>Tham_chiếu</emph> còn tùy chọn: nó là tham chiếu đến một ô, vùng hay chuỗi tên trang tính."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155399\n"
+"220\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146988\n"
+"221\n"
+"help.text"
+msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+msgstr "<item type=\"input\">=SHEET(Trang2.A1)</item> thì trả về 2 nếu Trang2 là trang tính thứ hai của tài liệu bảng tính."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3148829\n"
+"help.text"
+msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+msgstr "<bookmark_value>số trang tính; hàm</bookmark_value><bookmark_value>hàm SHEETS</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148829\n"
+"222\n"
+"help.text"
+msgid "SHEETS"
+msgstr "SHEETS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148820\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">Xác định số trang tính trong một tham chiếu.</ahelp> Nếu bạn không nhập vào tham số thì nó trả về số trang tính trong tài liệu hiện tại."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154220\n"
+"224\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150777\n"
+"225\n"
+"help.text"
+msgid "SHEETS(Reference)"
+msgstr "SHEETS(Tham_chiếu)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153060\n"
+"226\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
+msgstr "<emph>Tham_chiếu</emph> là tham chiếu đến một trang tính hay vùng. Tham số này còn tùy chọn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149766\n"
+"227\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150507\n"
+"228\n"
+"help.text"
+msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
+msgstr "<item type=\"input\">=SHEETS(Trang1.A1:Trang3.G12)</item> trả về 3 nếu Trang tính số 1-3 nằm theo thứ tự được ngụ ý."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158407\n"
+"help.text"
+msgid "<bookmark_value>MATCH function</bookmark_value>"
+msgstr "<bookmark_value>hàm MATCH</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158407\n"
+"101\n"
+"help.text"
+msgid "MATCH"
+msgstr "MATCH"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154896\n"
+"102\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
+msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">Trả về vị trí tương đối của một mục trong một mảng tương ứng với một giá trị đã ghi rõ.</ahelp> Hàm này trả về vị trí của biến được tìm trong lookup_array (mảng tra cứu) dạng số."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153834\n"
+"103\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159152\n"
+"104\n"
+"help.text"
+msgid "MATCH(SearchCriterion; LookupArray; Type)"
+msgstr "MATCH(Tiêu_chuẩn_tìm; Mảng_tra_cứu; Kiểu)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149336\n"
+"105\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
+msgstr "<emph>Tiêu_chuẩn_tìm</emph> là giá trị cần tìm trong mảng cột/hàng đơn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159167\n"
+"106\n"
+"help.text"
+msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
+msgstr "<emph>Mảng_tra_cứu</emph> là tham chiếu trong đó cần tìm kiếm. Một mảng tra cứu có thể là một hàng/cột đơn, hay phần của một hàng/cột đơn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147239\n"
+"107\n"
+"help.text"
+msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
+msgstr "<emph>Kiểu</emph> có thể đại diện một của những giá trị (1, 0, -1). Nếu kiểu là 1 hay không đưa ra tham số tùy chọn này, giả sử rằng cột đầu của mảng tìm được sắp xếp theo thứ tự tăng dần. Nếu kiểu là -1, giả sử rằng cột được sắp xếp theo thứ tự giảm dần. Đây tương ứng với cùng một hàm trong MS Excel."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154265\n"
+"231\n"
+"help.text"
+msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
+msgstr "Nếu kiểu là 0, chỉ tìm mục tương ứng chính xác. Nếu tiêu chuẩn tìm kiếm được tìm nhiều lần, hàm trả về chỉ số của giá trị tương ứng đầu tiên. Chỉ khi kiểu là 0, bạn có thể tìm kiếm dùng biểu thức chính quy."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147528\n"
+"232\n"
+"help.text"
+msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
+msgstr "Nếu kiểu là 1, hay không đưa ra tham số thứ ba, thì trả về chỉ số của giá trị cuối cùng nhỏ hơn hay bằng với tiêu chuẩn tìm kiếm. Trường hợp này có tác động ngay cả khi mảng tìm không phải được sắp xếp. Đối với kiểu -1, trả về giá trị đầu lớn hơn hay bằng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155119\n"
+"108\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155343\n"
+"109\n"
+"help.text"
+msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
+msgstr "<item type=\"input\">=MATCH(200;D1:D100)</item> tìm kiếm qua vùng D1:D100, mà được sắp xếp theo cột D, so với giá trị 200. Một khi tới giá trị này, trả về số thứ tự cua hàng chứa nó. Nếu tìm một giá trị lớn hơn trong khi tìm kiếm, thì trả về số thứ tự của hàng trước đó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158430\n"
+"help.text"
+msgid "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr "<bookmark_value>hàm OFFSET</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158430\n"
+"111\n"
+"help.text"
+msgid "OFFSET"
+msgstr "OFFSET"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149167\n"
+"112\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Trả về giá trị của một ô bị bù lại theo một số hàng/cột nào đó từ một điểm tham chiếu đã cho.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146952\n"
+"113\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159194\n"
+"114\n"
+"help.text"
+msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
+msgstr "OFFSET(Tham_chiếu; Hàng; Cột; Cao; Rộng)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152360\n"
+"115\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
+msgstr "<emph>Tham_chiếu</emph> là tham chiếu từ đó hàm tìm tham chiếu mới."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156032\n"
+"116\n"
+"help.text"
+msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
+msgstr "<emph>Hàng</emph> là số hàng theo đó tham chiếu bị sửa chữa lên (giá trị âm) hay xuống."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3166458\n"
+"117\n"
+"help.text"
+msgid "<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
+msgstr "<emph>Cột</emph> (optional) là số cột theo đó thêm chiếu bị sửa chữa sang trái (giá trị âm) hay sang phải."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150708\n"
+"118\n"
+"help.text"
+msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
+msgstr "<emph>Cao</emph> (tùy chọn) là bề cao theo chiều dọc của một vùng bắt đầu ở vị trí tham chiếu mới."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147278\n"
+"119\n"
+"help.text"
+msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
+msgstr "<emph>Rộng</emph> (optional) là bề rộng theo chiều ngang của một vùng bắt đầu ở vị trí tham chiếu mới."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8662373\n"
+"help.text"
+msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
+msgstr "Không cho phép đối số <emph>Hàng</emph> hay <emph>Cột</emph> đưa tới số không hay hàng/cột đầu âm."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9051484\n"
+"help.text"
+msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
+msgstr "Không cho phép đối số <emph>Cao</emph> hay <emph>Rộng</emph> đưa tới số không hay số đếm hàng/cột âm."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1104B\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155586\n"
+"120\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149744\n"
+"121\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
+msgstr "<item type=\"input\">=OFFSET(A1;2;2)</item> trả về giá trị trong ô C3 (A1 được dời xuống theo hai hàng và hai cột). Nếu ô C3 chứa giá trị <item type=\"input\">100</item>, hàm này trả về giá trị 100."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7439802\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> trả về một tham chiếu đến B2:C3 được dời xuống theo một hàng và sang phải theo một cột (C3:D4)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3009430\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> trả về một tham chiếu đến B2:C3 được dời lên theo một hàng và sang trái theo một cột (A1:B2)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2629169\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> trả về một tham chiếu đến B2:C3 có kích cỡ được thay đổi thành 3 hàng và 4 cột (B2:E4)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6668599\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> trả về một tham chiếu đến B2:C3 được dời xuống theo một hàng, có kích cỡ được thay đổi thành 3 hàng và 4 cột (B2:E4)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153739\n"
+"122\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
+msgstr "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> quyết định tổng số diện tích bắt đầu từ ô C3 và có chiều cao 5 hàng và chiều rộng 6 cột (diện tích = C3:H7)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3159273\n"
+"help.text"
+msgid "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>hàm LOOKUP</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3159273\n"
+"123\n"
+"help.text"
+msgid "LOOKUP"
+msgstr "LOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153389\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Trả về nội dung của một ô từ một phạm vi hàng đơn hay cột đơn.</ahelp> Tùy chọn, giá trị được gán (có cùng một chỉ số) được trả về trong một cột và hàng khác. Khác với hàm <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> và <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, véc-tơ kiểu tìm và kết quả có thể nằm ở hai vị trí khác nhau ; không cần nằm cạnh nhau. Hơn nữa, véc-tơ tìm cho hàm LOOKUP phải được sắp xếp tăng dần, không thì tiến trình tìm không trả về kết quả có ích."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4484084\n"
+"help.text"
+msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
+msgstr "Nếu hàm LOOKUP không tìm được tiêu chuẩn tìm kiếm, nó tìm mục tương ứng với véc-tơ tìm nhỏ hơn hay bằng với tiêu chuẩn tìm kiếm."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3152947\n"
+"125\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154104\n"
+"126\n"
+"help.text"
+msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+msgstr "LOOKUP(Tiêu_chuẩn_tìm; Véc-tơ_tìm; Véc-tơ_kết_quả)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150646\n"
+"127\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
+msgstr "<emph>Tiêu_chuẩn_tìm</emph> là giá trị cần tìm; được nhập hoặc một cách trực tiếp hoặc làm một tham chiếu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154854\n"
+"128\n"
+"help.text"
+msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgstr "<emph>Véc-tơ_tìm</emph> là vùng hàng đơn hay cột đơn trong đó cần tìm kiếm."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149925\n"
+"129\n"
+"help.text"
+msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
+msgstr "<emph>Véc-tơ_kết_quả</emph> là một phạm vi hàng đơn hay cột đơn khác từ đó lấy kết quả của hàm. Kết quả là ô của véc-tơ kết quả có cùng một chỉ số với mục tương ứng được tìm bởi véc-tơ tìm."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148624\n"
+"130\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149809\n"
+"131\n"
+"help.text"
+msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
+msgstr "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> tìm kiếm trong ô tương ứng trong phạm vi D1:D100 tìm số bạn đã nhập vào ô A1. Đối với mục tương ứng đã tìm, chỉ số được quyết định, v.d. ô thứ 12 trong phạm vi này. Sau đó thì nội dung của ô thứ 12 được trả về làm giá trị của hàm (trong véc-tơ kết quả)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3149425\n"
+"help.text"
+msgid "<bookmark_value>STYLE function</bookmark_value>"
+msgstr "<bookmark_value>hàm STYLE</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149425\n"
+"133\n"
+"help.text"
+msgid "STYLE"
+msgstr "STYLE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150826\n"
+"134\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Áp dụng một kiểu dáng cho ô chứa công thức.</ahelp> Sau một khoảng thời gian đã đặt, một kiểu dáng khác có thể được áp dụng. Hàm này lúc nào cũng trả về giá trị 0, cho phép bạn thêm nó vào hàm khác, mà không thay đổi giá trị. Dùng nó cùng với hàm CURRENT, bạn có thể áp dụng một màu riêng cho một ô, bất chấp giá trị. Ví dụ, công thức « =...+STYLE(IF(CURRENT()>3;\"đỏ\";\"lục\")) » áp dụng kiểu dáng (màu) « đỏ » cho ô nếu giá trị lớn hơn 3, không thì áp dụng (màu) « lục ». Cả hai định dạng ô này phải được xác định sẵn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145373\n"
+"135\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149302\n"
+"136\n"
+"help.text"
+msgid "STYLE(\"Style\"; Time; \"Style2\")"
+msgstr "STYLE(\"Kiểu_dáng\"; Thời_gian; \"Kiểu_dáng2\")"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150596\n"
+"137\n"
+"help.text"
+msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
+msgstr "<emph>Kiểu_dáng</emph> là tên của một kiểu dáng ô được gán cho ô đó. Tên kiểu dáng phải được nhập vào giữa dấu nhấy kép."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156149\n"
+"138\n"
+"help.text"
+msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
+msgstr "<emph>Thời_gian</emph> là một khoảng thời gian tùy chọn, tính theo giây. Không đưa ra tham số này thì kiểu dáng sẽ không thay đổi sai khi một khoảng thời gian nào đó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149520\n"
+"139\n"
+"help.text"
+msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
+msgstr "<emph>Kiểu_dáng2</emph> là tên tùy chọn của một kiểu dáng ô được gán cho ô đó sau một khoảng thời gian nào đó. Không đưa ra tham số này thì giả sử « Mặc định »."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN111CA\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3159254\n"
+"140\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151374\n"
+"141\n"
+"help.text"
+msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
+msgstr "Công thức <item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> định dạng ô theo định dạng trong suốt trong 60 giây sau khi tài liệu được tính lại hay nạp, sau đó thì gán định dạng « Mặc định ». Cả hai định dạng ô này phải được xác định sẵn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8056886\n"
+"help.text"
+msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example"
+msgstr "Vì STYLE() có một giá trị trả về thuộc số là 0, giá trị trả về này được phụ thêm vào một chuỗi. Có thể tránh trường hợp này dùng T(), như trong mẫu ví dụ theo đây"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3668935\n"
+"help.text"
+msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+msgstr "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3042085\n"
+"help.text"
+msgid "See also CURRENT() for another example."
+msgstr "Xem thêm CURRENT() tìm ví dụ mẫu khác."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3150430\n"
+"help.text"
+msgid "<bookmark_value>CHOOSE function</bookmark_value>"
+msgstr "<bookmark_value>hàm CHOOSE</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150430\n"
+"142\n"
+"help.text"
+msgid "CHOOSE"
+msgstr "CHOOSE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3143270\n"
+"143\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Sử dụng một chỉ số để trả về một giá trị từ danh sách chứa đến 30 giá trị.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153533\n"
+"144\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155425\n"
+"145\n"
+"help.text"
+msgid "CHOOSE(Index; Value1; ...; Value30)"
+msgstr "CHOOSE(Chỉ_số; Giá_trị1; ...; Giá_trị30)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3144755\n"
+"146\n"
+"help.text"
+msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
+msgstr "<emph>Chỉ_số</emph> là một tham chiếu hay số nằm giữa 1 và 30 mà ngụ ý giá trị nào cần lấy từ danh sách."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149939\n"
+"147\n"
+"help.text"
+msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
+msgstr "<emph>Giá_trị1...Giá_trị30</emph> là danh sách các giá trị được nhập vào dạng một tham chiếu đến một ô, hoặc như là các giá trị riêng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151253\n"
+"148\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150625\n"
+"149\n"
+"help.text"
+msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
+msgstr "Công thức <item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Hôm nay\";\"Hôm qua\";\"Ngày mai\")</item>, chẳng hạn, trả về nội dung của ô B2 cho « A1=2 »; cho « A1=4 », hàm trả về chuỗi « Hôm nay »."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151001\n"
+"help.text"
+msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>hàm HLOOKUP</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151001\n"
+"151\n"
+"help.text"
+msgid "HLOOKUP"
+msgstr "HLOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148688\n"
+"152\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
+msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">Tìm một giá trị và tham chiếu đến những ô bên dưới vùng đã chọn.</ahelp> Hàm này thẩm tra hàng đầu của một mảng chứa một giá trị nào đó không. Hàm thì trả về giá trị trong một hàng của mảng, đặt tên trong <emph>Chỉ_số</emph> cùng cột."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154661\n"
+"153\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146070\n"
+"154\n"
+"help.text"
+msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+msgstr "HLOOKUP(Tiêu_chuẩn_tìm; Mảng; Chỉ_số; Sắp_xếp)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148672\n"
+"155\n"
+"help.text"
+msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgstr "Xem thêm: <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (trao đổi các cột và hàng)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3147321\n"
+"help.text"
+msgid "<bookmark_value>ROW function</bookmark_value>"
+msgstr "<bookmark_value>hàm ROW</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147321\n"
+"157\n"
+"help.text"
+msgid "ROW"
+msgstr "ROW"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154564\n"
+"203\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
+msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">Trả về số thứ tự hàng của một tham chiếu ô.</ahelp> Nếu tham chiếu này là một ô, hàm này trò chuyện số thứ tự hàng của ô đó. Nếu tham chiếu là một phạm vi các ô, nó trả về các số thứ tự hàng tương ứng trong một <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"mảng\">mảng</link> cột đơn nếu công thức được nhập vào <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"dưới dạng một công thức mảng\">dưới dạng một công thức mảng</link>. Nếu hàm <emph>ROW</emph> với một tham chiếu phạm vi không được dùng trong một công thức mảng, chỉ trả về số thứ tự hàng của ô đầu tiên trong phạm vi đó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158439\n"
+"159\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154916\n"
+"160\n"
+"help.text"
+msgid "ROW(Reference)"
+msgstr "ROW(Tham_chiếu)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156336\n"
+"161\n"
+"help.text"
+msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
+msgstr "<emph>Tham_chiếu</emph> là một ô, vùng hay tên của vùng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151109\n"
+"204\n"
+"help.text"
+msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "Nếu bạn không chỉ ra một tham chiếu, hàm sẽ tìm số thứ tự hàng của ô chứa công thức. <item type=\"productname\">%PRODUCTNAME</item> Calc tự động đặt tham chiếu thành ô hiện tại."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155609\n"
+"162\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154830\n"
+"205\n"
+"help.text"
+msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
+msgstr "Công thức <item type=\"input\">=ROW(B3)</item> trả về 3 vì tham chiếu chỉ tới hàng thứ ba trên bảng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147094\n"
+"206\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
+msgstr "Công thức <item type=\"input\">{=ROW(D5:D8)}</item> trả về mảng cột đơn (5, 6, 7, 8) vì tham chiếu đã ghi rõ chứa các hàng 5 đến 8."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153701\n"
+"207\n"
+"help.text"
+msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
+msgstr "Công thức <item type=\"input\">=ROW(D5:D8)</item> trả về 5 vì hàm ROW không được dùng làm công thức mảng, và chỉ trả về hàng đầu của tham chiếu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150996\n"
+"208\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
+msgstr "Hai công thức <item type=\"input\">{=ROW(A1:E1)}</item> và <item type=\"input\">=ROW(A1:E1)</item> đều trả về 1 vì tham chiếu chỉ chứa hàng 1 làm cột đầu của bảng. (Vì vùng hàng đơn chỉ có một số thứ tự hàng, không khác gì trường hợp công thức được dùng làm công thức mảng.)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153671\n"
+"209\n"
+"help.text"
+msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+msgstr "Công thức <item type=\"input\">=ROW()</item> trả về 3 nếu công thức được nhập vào hàng 3."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153790\n"
+"210\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
+msgstr "Công thức <item type=\"input\">{=ROW(Chó)}</item> trả về mảng cột đơn (1, 2, 3) nếu con « Chó » là vùng đặt tên (C1:D3)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3145772\n"
+"help.text"
+msgid "<bookmark_value>ROWS function</bookmark_value>"
+msgstr "<bookmark_value>hàm ROWS</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145772\n"
+"166\n"
+"help.text"
+msgid "ROWS"
+msgstr "ROWS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148971\n"
+"167\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">Trả về số hàng trong một tham chiếu hay mảng.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3156051\n"
+"168\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154357\n"
+"169\n"
+"help.text"
+msgid "ROWS(Array)"
+msgstr "ROWS(Mảng)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155942\n"
+"170\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
+msgstr "<emph>Mảng</emph> là tham chiếu hay vùng đặt tên cho đó cần tính tổng số hàng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155869\n"
+"171\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154725\n"
+"212\n"
+"help.text"
+msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr "Công thức <item type=\"input\">=Rows(B5)</item> trả về 1 vì một ô chỉ chứa một hàng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150102\n"
+"172\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgstr "<item type=\"input\">=ROWS(A10:B12)</item> trả về 3."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155143\n"
+"213\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+msgstr "Công thức <item type=\"input\">=ROWS(Chó)</item> trả về 3 nếu con « Chó » là vùng đặt tên (C1:D3)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id9959410\n"
+"help.text"
+msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
+msgstr "<bookmark_value>hàm HYPERLINK</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11798\n"
+"help.text"
+msgid "HYPERLINK"
+msgstr "HYPERLINK"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN117F1\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">Khi bạn nhấn vào một ô mà chứa hàm HYPERLINK, siêu liên kết sẽ mở.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11800\n"
+"help.text"
+msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgstr "Nếu bạn sử dụng tham số <emph>cell text</emph> còn tùy chọn, thì hàm tìm địa chỉ URL, sau đó hiển thị chuỗi văn bản."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11803\n"
+"help.text"
+msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+msgstr "Để mở một siêu liên kết bằng bàn phím, hãy lựa chọn ô đó, bấm phím chức năng <item type=\"keycode\">F2</item> để vào chế độ chỉnh Sửa, đặt con trỏ vào phía trước siêu liên kết, bấm tổ hợp phím <item type=\"keycode\">Shift+F10</item>, sau đó chọn câu lệnh <emph>Mở siêu liên kết</emph>."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1180A\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1180E\n"
+"help.text"
+msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
+msgstr "HYPERLINK(\"URL\") hay HYPERLINK(\"URL\"; \"CellText\")"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11811\n"
+"help.text"
+msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgstr "<emph>URL</emph> ghi rõ địa chỉ là đích đến của liên kết. Tham số <emph>CellText</emph> còn tùy chọn là chuỗi văn bản được hiển thị trong ô, và kết quả của hàm. Không đưa ra tham số <emph>CellText</emph> thì hiển thị <emph>URL</emph> trong chuỗi văn bản của ô, và trong kết quả của hàm."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224576\n"
+"help.text"
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr "Số 0 được trả về cho các ô và phần tử ma trận trống."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11823\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11827\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "Công thức <item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> hiển thị chuỗi \"http://www.example.org\" trong ô, và thực hiện siêu liên kết đó khi được nhấn vào."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182A\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "Công thức <item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Nhấn vào đây\")</item> hiển thị chuỗi « Nhấn vào đây » trong ô, và thực hiện siêu liên kết \"http://www.example.org\" khi được kích hoạt."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224534\n"
+"help.text"
+msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgstr "=HYPERLINK(\"http://www.example.org\";12345) hiện số 12345 và thi hành siêu liên kết http://www.example.org khi nhấn."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182D\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr "<item type=\"input\">=HYPERLINK($B4)</item> mà ô B4 chứa địa chỉ <item type=\"input\">http://www.example.org</item>. Hàm thêm địa chỉ này vào địa chỉ URL của ô siêu liên kết, sau đó trả về cùng một chuỗi làm kết quả công thức."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11830\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Nhấn vào \") & \"example.org\"</item> hiển thị chuỗi « Nhấn vào example.org » trong ô, và thực hiện siêu liên kết \"http://www.example.org\" khi được kích hoạt."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8859523\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr "<item type=\"input\">=HYPERLINK(\"#Trang1.A1\";\"Lên đầu\")</item> hiển thị chuỗi « Lên đầu » và nhảy về vị trí Trang1:A1 trong tài liệu này."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2958769\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Đặc_tả\";\"Đi tới siêu liên kết trong Writer\")</item> hiển thị chuỗi « Đi tới siêu liên kết trong Writer », và nhảy tới liên kết đã lưu « Đặc_tả »."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id7682424\n"
+"help.text"
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr "<bookmark_value>hàm GETPIVOTDATA</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3747062\n"
+"help.text"
+msgid "GETPIVOTDATA"
+msgstr "GETPIVOTDATA"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3593859\n"
+"help.text"
+msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
+msgstr "<ahelp hid=\".\">Hàm GETPIVOTDATA trả về một giá trị kết quả từ một bảng DataPilot. Giá trị có địa chỉ được đặt dùng các tên trường và tên mục, để nó còn lại hợp lệ nếu bố trí của bảng DataPilot cứ thay đổi.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id9741508\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id909451\n"
+"help.text"
+msgid "Two different syntax definitions can be used:"
+msgstr "Có thể sử dụng hai lời xác định cú pháp khác nhau :"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1665089\n"
+"help.text"
+msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
+msgstr "GETPIVOTDATA(Trường_đích; DataPilot; [ Trường 1; Mục 1; ... ])"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4997100\n"
+"help.text"
+msgid "GETPIVOTDATA(pivot table; Constraints)"
+msgstr "GETPIVOTDATA(DataPilot; Ràng_buộc)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1672109\n"
+"help.text"
+msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+msgstr "Cú pháp thứ hai được giả sử nếu đưa ra chính xác hai tham số, tham số đầu tiên là một ô hay tham chiếu phạm vi các ô. Cú pháp thứ nhất được giả sử trong các trường hợp khác. <emph>Trợ lý Hàm</emph> hiển thị cú pháp thứ nhất."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id9464094\n"
+"help.text"
+msgid "First Syntax"
+msgstr "Cú pháp thứ nhất"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9302346\n"
+"help.text"
+msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
+msgstr "<emph>Trường_đích</emph> là một chuỗi mà chọn một của những trường dữ liệu của bảng DataPilot. Chuỗi này có thể là tên của cột nguồn, hay tên trường dữ liệu như được hiển thị trên bảng (v.d. « Tổng - Buôn bán »)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8296151\n"
+"help.text"
+msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
+msgstr "<emph>DataPilot</emph> là một tham chiếu đến một ô hay phạm vi các ô mà được định vị bên trong một bảng DataPilot hay chứa một bảng DataPilot. Nếu phạm vi ô chứa vài bảng DataPilot, có dùng bảng được tạo cuối cùng."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4809411\n"
+"help.text"
+msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
+msgstr "Không đưa ra cặp <emph>Trường n / Mục n</emph> thì trả về tổng số tổng quát. Có thì mỗi cặp thêm một ràng buộc mà kết quả phải thoả. <emph>Trường n</emph> là tên của một trường từ bảng DataPilot. <emph>Mục n</emph> là tên của một mục từ trường đó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6454969\n"
+"help.text"
+msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
+msgstr "Nếu bảng DataPilot chứa chỉ một giá trị kết quả riêng lẻ mà thoả tất cả các ràng buộc, hoặc một tổng phụ mà tóm tắt tất cả các giá trị tương ứng, thì trả về kết quả đó. Không có kết quả tương ứng, hoặc có vài kết quả không có tổng phụ, thì trả về lỗi. Các điều kiện này áp dụng cho những kết quả nằm trong bảng DataPilot."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id79042\n"
+"help.text"
+msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
+msgstr "Nếu dữ liệu nguồn chứa các mục bị ẩn bởi thiết lập của bảng DataPilot, dữ liệu đó bị bỏ qua. Thứ tự của các cặp Trường/Mục không có tác động. Tên của trường hay mục không phân biệt chữ hoa/thường."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7928708\n"
+"help.text"
+msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
+msgstr "Không đưa ra ràng buộc cho một trường trang thì dùng ngầm giá trị được chọn cho trường đó. Nếu đưa ra một ràng buộc cho một trường trang, nó phải tương ứng với giá trị được chọn của trường đó, không thì trả về lỗi. Trường trang là trường ở góc trên bên trái một bảng DataPilot, được điềndùng vùng <emph>Trường trang</emph> của hộp thoại <emph>Bố trí DataPilot</emph>. Từ mỗi trường trang, một mục (giá trị) có thể được chọn, thì chỉ mục đó được xử lý trong phép tính."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3864253\n"
+"help.text"
+msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
+msgstr "Giá trị tổng phụ từ bảng DataPilot chỉ được dùng nếu nó dùng hàm « auto » (tự động), trừ khi được ghi rõ trong ràng buộc, xem <item type=\"literal\">Cú pháp thứ hai</item> bên dưới)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3144016\n"
+"help.text"
+msgid "Second Syntax"
+msgstr "Cú pháp thứ hai"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9937131\n"
+"help.text"
+msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr "<emph>DataPilot</emph> có cùng một nghĩa trong cú pháp thứ nhất."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id5616626\n"
+"help.text"
+msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
+msgstr "<emph>Ràng buộc</emph> là một danh sách định giới bằng dấu cách. Cũng có thể đặt mục giữa dấu nháy đơn. Toàn bộ chuỗi phải nằm giữa dấu nháy kép, nếu bạn không tham chiếu đến chuỗi đó từ một ô khác."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4076357\n"
+"help.text"
+msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
+msgstr "Một của những mục có thể là tên trường dữ liệu. Tên trường dữ liệu có thể bị bõ sót nếu bảng DataPilot chỉ chứa một trường dữ liệu, không thì phải có nó."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8231757\n"
+"help.text"
+msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
+msgstr "Mỗi mục khác ghi rõ một ràng buộc có dạng <item type=\"literal\">Trường[Mục]</item> (gồm có cặp ngoặc vuông), hoặc chỉ có <item type=\"literal\">Mục</item> nếu tên mục duy nhất trong mọi trường được dùng trong bảng DataPilot."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3168736\n"
+"help.text"
+msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
+msgstr "Một tên hàm có thể được thêm dưới dạng <emph>Trường[Mục;Hàm]</emph>, mà sẽ gây ra ràng buộc chỉ tương ứng với giá trị tổng phụ mà dùng hàm đó. Những tên hàm có thể là Sum (Tổng), Count (Đếm), Average (Trung bình), Max (Đại), Min (Tiểu), Product (Tích), Count (Đếm: chỉ các số), StDev (Độ lệch chuẩn: mẫu), StDevP (Độ lệch chuẩn: dân số), Var (Phương sai: mẫu), and VarP (Phương sai: dân số), không phân biệt chữ hoa/thường."
#: 04060110.xhp
msgctxt ""
@@ -32313,7 +23716,7 @@ msgctxt ""
"244\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -32451,7 +23854,7 @@ msgctxt ""
"hd_id9694814\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -32539,7 +23942,7 @@ msgctxt ""
"220\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -32652,7 +24055,7 @@ msgctxt ""
"207\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -32784,7 +24187,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -32864,7 +24267,7 @@ msgctxt ""
"172\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -32953,7 +24356,7 @@ msgctxt ""
"232\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -33060,7 +24463,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -33149,7 +24552,7 @@ msgctxt ""
"84\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -33238,7 +24641,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -33793,7 +25196,6 @@ msgid "Example"
msgstr "Ví dụ"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id3155364\n"
@@ -33987,7 +25389,7 @@ msgctxt ""
"199\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34067,7 +25469,7 @@ msgctxt ""
"119\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34147,7 +25549,7 @@ msgctxt ""
"254\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34281,7 +25683,7 @@ msgctxt ""
"129\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34379,7 +25781,7 @@ msgctxt ""
"182\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34414,7 +25816,7 @@ msgctxt ""
"140\n"
"help.text"
msgid "T"
-msgstr "T"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -34459,7 +25861,7 @@ msgctxt ""
"145\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34546,7 +25948,7 @@ msgctxt ""
"hd_id1243629\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34624,7 +26026,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34681,7 +26083,7 @@ msgctxt ""
"hd_id0907200904123720\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34708,7 +26110,6 @@ msgid "UNICODE"
msgstr "UNICODE"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id0907200904022594\n"
@@ -34738,7 +26139,7 @@ msgctxt ""
"hd_id0907200904123899\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34808,7 +26209,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34879,7 +26280,7 @@ msgctxt ""
"190\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
#: 04060110.xhp
msgctxt ""
@@ -34890,3168 +26291,8723 @@ msgctxt ""
msgid "<item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
msgstr "<item type=\"input\">=LN(EXP(321))</item> trả về 321."
-#: 04020000.xhp
-#, fuzzy
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
+"04060111.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Chèn các ô"
+msgid "Add-in Functions"
+msgstr "Hàm Bổ trợ"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"bm_id3156023\n"
+"04060111.xhp\n"
+"bm_id3150870\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; chèn ô</bookmark_value><bookmark_value>ô; chèn</bookmark_value><bookmark_value>chèn; ô</bookmark_value>"
+msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
+msgstr "<bookmark_value>phần bổ trợ; hàm</bookmark_value><bookmark_value>hàm; hàm bổ trợ</bookmark_value><bookmark_value>Trợ lý Hàm; phần bổ trợ</bookmark_value>"
-#: 04020000.xhp
-#, fuzzy
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3156023\n"
+"04060111.xhp\n"
+"hd_id3150870\n"
"1\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Chèn các ô"
+msgid "Add-in Functions"
+msgstr "Hàm Bổ trợ"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3150542\n"
+"04060111.xhp\n"
+"par_id3147427\n"
"2\n"
"help.text"
-msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
-msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Mở hộp thoại <emph> Chèn ô </emph> để chèn các ô mới theo một số cách được chọn.</ahelp></variable> Bạn có thể xoá các ô bằng cách chọn <link href=\"text/scalc/01/02160000.xhp\" name=\"Sửa > Xoá ô\"><emph>Sửa > Xoá ô</emph></link>."
+msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
+msgstr "<variable id=\"addintext\">Theo đây có diễn tả và liệt kê một số hàm bổ trợ có sẵn. </variable>"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3153768\n"
+"04060111.xhp\n"
+"par_id3163713\n"
+"75\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Ý niệm Bổ trợ</link>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146120\n"
+"5\n"
+"help.text"
+msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
+msgstr "Bạn sẽ cũng tìm một <link href=\"text/scalc/01/04060112.xhp\">mô tả về giao diện bổ trợ của $[officename] Calc</link> trong phần Trợ giúp. Hơn nữa, các hàm quan trọng và những tham số của chúng được diễn tả trong Trợ giúp cho <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL bổ trợ của $[officename] Calc</defaultinline></switchinline>."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151075\n"
+"7\n"
+"help.text"
+msgid "Add-ins supplied"
+msgstr "Phần bổ trợ được cung cấp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156285\n"
+"8\n"
+"help.text"
+msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgstr "$[officename] chứa một số mẫu thí dụ về giao diện bổ trợ của $[officename] Calc."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159267\n"
+"76\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\">Hàm phân tích Phần 1</link>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154703\n"
+"77\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\">Hàm phân tích Phần 2</link>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149566\n"
+"help.text"
+msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+msgstr "<bookmark_value>hàm ISLEAPYEAR</bookmark_value><bookmark_value>quyết định năm nhuận</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149566\n"
+"14\n"
+"help.text"
+msgid "ISLEAPYEAR"
+msgstr "ISLEAPYEAR"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150297\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
+msgstr "<ahelp hid=\".\">Quyết định nếu một năm là năm nhuận không.</ahelp> Có thì hàm trả về 1 (Đúng), không thì 0 (Sai)."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3148487\n"
+"16\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150205\n"
+"17\n"
+"help.text"
+msgid "ISLEAPYEAR(\"Date\")"
+msgstr "ISLEAPYEAR(\"Ngày\")"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159239\n"
+"18\n"
+"help.text"
+msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Ngày</emph> ghi rõ nếu một ngày tháng đã cho nằm bên trong một năm nhuận không. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149817\n"
+"19\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150786\n"
+"20\n"
+"help.text"
+msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
+msgstr "=ISLEAPYEAR(A1) trả về 1, nếu ô A1 chứa 1968-02-29, ngày tháng hợp lệ ngày 29, tháng 2/1968 tùy theo thiết lập miền địa phương của bạn."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107E7\n"
+"help.text"
+msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+msgstr "Bạn cũng có thể sử dụng « =ISLEAPYEAR(\"1968-02-29\") » hay « =ISLEAPYEAR(\"2/29/68\") »."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107EA\n"
+"help.text"
+msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+msgstr "Không bao giờ nên dùng « =ISLEAPYEAR(2/29/68) », vì nó sẽ trước tiên tính 2 chia cho 2 chia cho 68, sau đó tính hàm ISLEAPYEAR từ số nhỏ này dưới dạng một số ngày tháng dãy."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154656\n"
+"help.text"
+msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+msgstr "<bookmark_value>hàm YEARS</bookmark_value><bookmark_value>số năm nằm giữa hai ngày tháng</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154656\n"
+"21\n"
+"help.text"
+msgid "YEARS"
+msgstr "YEARS"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150886\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Tính hiệu số theo năm giữa hai ngày tháng.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154370\n"
+"23\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146114\n"
+"24\n"
+"help.text"
+msgid "YEARS(StartDate; EndDate; Type)"
+msgstr "YEARS(Ngày_đầu; Ngày_cuối; Kiểu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145387\n"
+"25\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>Ngày_đầu</emph> là ngày tháng thứ nhất"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156290\n"
+"26\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>Ngày_cuối</emph> là ngày tháng thứ hai"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3152893\n"
+"27\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+msgstr "<emph>Kiểu</emph> ngụ ý kiểu hiệu số. Giá trị có thể là 0 (khoảng thời gian) và 1 (năm theo lịch)."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3152898\n"
+"help.text"
+msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+msgstr "<bookmark_value>hàm MONTHS</bookmark_value><bookmark_value>số tháng nằm giữa hai ngày tháng</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3152898\n"
+"28\n"
+"help.text"
+msgid "MONTHS"
+msgstr "MONTHS"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153066\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Tính hiệu số theo tháng giữa hai ngày tháng.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151240\n"
+"30\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146869\n"
+"31\n"
+"help.text"
+msgid "MONTHS(StartDate; EndDate; Type)"
+msgstr "MONTHS(Ngày_đầu; Ngày_cuối; Kiểu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145075\n"
+"32\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>Ngày_đầu</emph> là ngày tháng thứ nhất"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3157981\n"
+"33\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>Ngày_cuối</emph> là ngày tháng thứ hai"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150111\n"
+"34\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
+msgstr "<emph>Kiểu</emph> ngụ ý kiểu hiệu số. Giá trị có thể là 0 (khoảng thời gian) và 1 (tháng theo lịch)."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3159094\n"
+"help.text"
+msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+msgstr "<bookmark_value>hàm ROT13</bookmark_value><bookmark_value>mã hoá văn bản</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3159094\n"
+"35\n"
+"help.text"
+msgid "ROT13"
+msgstr "ROT13"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146781\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Mã hoá một chuỗi các ký tự bằng cách dời mỗi ký tự theo 12 vị trí trong bảng chữ cái.</ahelp> Phía sau chữ Z, bảng chữ cái bắt đầu lại (xoay lại). Bằng cách áp dụng hàm mã hoá lần nữa với mã kết quả, bạn cũng có thể giải mã văn bản đó."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150893\n"
+"37\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159205\n"
+"38\n"
+"help.text"
+msgid "ROT13(Text)"
+msgstr "ROT13(Chuỗi)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153249\n"
+"39\n"
+"help.text"
+msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+msgstr "<emph>Chuỗi</emph> là chuỗi các ký tự cần mã hoá. « ROT13(ROT13(Chuỗi)) » thì giải mã chuỗi đã mã hoá."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3151300\n"
+"help.text"
+msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+msgstr "<bookmark_value>hàm DAYSINYEAR</bookmark_value><bookmark_value>số ngày; trong một năm cụ thể</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151300\n"
+"43\n"
+"help.text"
+msgid "DAYSINYEAR"
+msgstr "DAYSINYEAR"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3143220\n"
+"44\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Tính số ngày của năm trong đó ngày đã nhập có xảy ra.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145358\n"
+"45\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154651\n"
+"46\n"
+"help.text"
+msgid "DAYSINYEAR(Date)"
+msgstr "DAYSINYEAR(Ngày)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153803\n"
+"47\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Ngày</emph> là bất cứ ngày tháng nào trong năm tương ứng. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3153487\n"
+"48\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153811\n"
+"49\n"
+"help.text"
+msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
+msgstr "=DAYSINYEAR(A1) trả về 366 ngày nếu ô A1 chứa 1968-02-29, một ngày tháng hợp lệ trong năm 1968."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154737\n"
+"help.text"
+msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+msgstr "<bookmark_value>hàm DAYSINMONTH</bookmark_value><bookmark_value>số ngày;trong một tháng cụ thể của một năm</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154737\n"
+"50\n"
+"help.text"
+msgid "DAYSINMONTH"
+msgstr "DAYSINMONTH"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149316\n"
+"51\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Tính số ngày của tháng chứa ngày tháng đã nhập.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145114\n"
+"52\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150955\n"
+"53\n"
+"help.text"
+msgid "DAYSINMONTH(Date)"
+msgstr "DAYSINMONTH(Ngày)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147501\n"
+"54\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Ngày</emph> là bất cứ ngày tháng nào trong tháng tương ứng của năm đã muốn. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149871\n"
+"55\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3155742\n"
+"56\n"
+"help.text"
+msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+msgstr "=DAYSINMONTH(A1) trả về 29 ngày nếu ô A1 chứa 1968-02-17, một ngày tháng hợp lệ trong tháng 2, năm 1968."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149048\n"
+"help.text"
+msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+msgstr "<bookmark_value>hàm WEEKS</bookmark_value><bookmark_value>số tuần;giữa hai ngày tháng</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149048\n"
+"57\n"
+"help.text"
+msgid "WEEKS"
+msgstr "WEEKS"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153340\n"
+"58\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Tính hiệu số theo tuần giữa hai ngày tháng.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150393\n"
+"59\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147402\n"
+"60\n"
+"help.text"
+msgid "WEEKS(StartDate; EndDate; Type)"
+msgstr "WEEKS(Ngày_đầu; Ngày_cuối; Kiểu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3151387\n"
+"61\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>Ngày_đầu</emph> là ngày tháng thứ nhất"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146324\n"
+"62\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>Ngày_cuối</emph> là ngày tháng thứ hai"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3166467\n"
+"63\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+msgstr "<emph>Kiểu</emph> tính kiểu hiệu số. Giá trị có thể là 0 (khoảng thời gian) và 1 (theo số tuần)."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3145237\n"
+"help.text"
+msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
+msgstr "<bookmark_value>hàm WEEKSINYEAR</bookmark_value><bookmark_value>số tuần;trong một năm cụ thể</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145237\n"
+"64\n"
+"help.text"
+msgid "WEEKSINYEAR"
+msgstr "WEEKSINYEAR"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147410\n"
+"65\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Tính số tuần trong năm chứa ngày tháng đã nhập.</ahelp> Số tuần được xác định như theo đây: một tuần qua từ năm này đến năm sau thì được thêm vào năm chứa nhiều ngày nhất của tuần đó."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149719\n"
+"66\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145638\n"
+"67\n"
+"help.text"
+msgid "WEEKSINYEAR(Date)"
+msgstr "WEEKSINYEAR(Ngày)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149946\n"
+"68\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Ngày</emph> là bất cứ ngày tháng nào trong năm tương ứng. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150037\n"
+"69\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147614\n"
+"70\n"
+"help.text"
+msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
+msgstr "WEEKSINYEAR(A1) trả về 53 nếu ô A1 chứa 1970-02-17, một ngày tháng hợp lệ trong năm 1970."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3157901\n"
+"72\n"
+"help.text"
+msgid "Add-ins through %PRODUCTNAME API"
+msgstr "Phần bổ trợ qua giao diện API của %PRODUCTNAME"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149351\n"
+"73\n"
+"help.text"
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
+msgstr "Cũng có thể thực hiện phần bổ trợ thông qua giao diện <link href=\"http://api.openoffice.org/\">API</link> của %PRODUCTNAME."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Phần bổ trợ để lập trình trong $[officename] Calc"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"bm_id3151076\n"
+"help.text"
+msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+msgstr "<bookmark_value>lập trình; phần bổ trợ</bookmark_value><bookmark_value>thư viện chia sẻ; lập trình</bookmark_value><bookmark_value>hàm DLL bên ngoài</bookmark_value><bookmark_value>hàm; DLL bổ trợ của $[officename] Calc</bookmark_value><bookmark_value>phần bổ trợ; để lập trình</bookmark_value>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3151076\n"
+"1\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Phần bổ trợ để lập trình trong $[officename] Calc"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147001\n"
+"220\n"
+"help.text"
+msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
+msgstr "Phương pháp mở rộng Calc bằng cách dùng Phần bổ trợ mà được diễn tả sau đây đã cũ. Những giao diện vẫn còn hợp lệ và được hỗ trợ, để đảm bảo tương thích với các Phần bổ trợ đã có, nhưng để lập trình Phần bổ trợ mới, bạn nên sử dụng các <link href=\"text/shared/guide/integratinguno.xhp\" name=\"hàm API\">hàm API</link> mới."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150361\n"
+"2\n"
+"help.text"
+msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
+msgstr "$[officename] Calc có thể được mở rộng dùng Phần bổ trợ, các mô-đun lập trình bên ngoài mà cung cấp các hàm thêm để thao tác bảng tính. Các hàm thêm này được liêt kê trong <emph>Trợ lý Hàm</emph>, trong phần loại <emph>Phần bổ trợ</emph>. Nếu bạn muốn lập trình một Phần bổ trợ, bạn có thể tìm biết ở đây những hàm nào phải được xuất bởi <switchinline select=\"sys\"><caseinline select=\"UNIX\">thư viện chia sẻ</caseinline><defaultinline>DLL bên ngoài</defaultinline></switchinline> để gắn Phần bổ trợ vào một cách thành công."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149211\n"
"3\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+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] tìm kiếm qua thư mục Phần bổ trợ được xác định trong cấu hình để tìm một <switchinline select=\"sys\"><caseinline select=\"UNIX\">thư viện chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline> thích hợp. Để được $[officename] nhận ra, <switchinline select=\"sys\"><caseinline select=\"UNIX\">thư viện chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline> phải có một số thuộc tính nào đó, như được giải thích sau đây. Thông tin này cho phép bạn lập trình Phần bổ trợ riêng cho <emph>Trợ lý Hàm</emph> của $[officename] Calc."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3149262\n"
+"04060112.xhp\n"
+"hd_id3146981\n"
"4\n"
"help.text"
-msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
-msgstr "Phần này chứa các tuỳ chọn cho phép bạn chèn các ô vào trong bảng. Số lượng và vị trí của ô chèn vào được đặt bằng cách chọn trước một phạm vi các ô trong bảng."
+msgid "The Add-In Concept"
+msgstr "Ý niệm Phần bổ trợ"
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3146120\n"
+"04060112.xhp\n"
+"par_id3156292\n"
"5\n"
"help.text"
-msgid "Shift cells down"
-msgstr "Dời ô xuống"
+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 "Mỗi thư viện Bổ trợ thì cung cấp vài hàm khác nhau. Một số hàm được sử dụng cho mục đích quản trị. Bạn có thể chọn gần bất cứ tên nào cho hàm riêng. Tuy nhiên, hàm này cũng phải tùy theo một số quy tắc nào đó về gửi tham số. Những quy ước chính xác về đặt tên và gọi hàm sẽ biến đổi trên các nền tảng khác nhau."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3152596\n"
+"04060112.xhp\n"
+"hd_id3152890\n"
"6\n"
"help.text"
-msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
-msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Di chuyển nội dung của phạm vi đã chọn xuống dưới để nhường chỗ cho các ô mới chèn vào.</ahelp></variable>"
+msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+msgstr "Các hàm của <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ </caseinline><defaultinline>DLL bổ trợ</defaultinline></switchinline>"
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3147434\n"
+"04060112.xhp\n"
+"par_id3148837\n"
"7\n"
"help.text"
-msgid "Shift cells right"
-msgstr "Dời ô sang phải"
+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 "Ít nhất là hai hàm quản trị <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> và <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> phải tồn tại. Sử dụng hai hàm này, có thể quyết định các hàm, kiểu tham số và giá trị trả về. Đối với giá trị trả về, hai kiểu Double (Đôi) và String (Chuỗi) được hỗ trợ. Đối với tham số, những vùng ô <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> và <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> đều được hỗ trợ."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3144764\n"
+"04060112.xhp\n"
+"par_id3148604\n"
"8\n"
"help.text"
-msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
-msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Di chuyển nội dung phạm vi được chọn sang phải để nhường chỗ cho các ô mới chèn vào.</ahelp></variable>"
+msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
+msgstr "Tham số được gửi dùng tham chiếu. Vì thế, cơ bản có thể thay đổi các giá trị này. Tuy nhiên, thay đổi này không phải được hỗ trợ trong $[officename] Calc vì nó không có ích trong bảng tính."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3153877\n"
+"04060112.xhp\n"
+"par_id3150112\n"
"9\n"
"help.text"
-msgid "Entire row"
-msgstr "Toàn bộ hàng"
+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 "Thư viện có thể được nạp lại trong khi chạy, và các nội dung thư viện có thể được phân tích bởi những hàm quản trị. Đối với mỗi hàm, thông tin sẵn sàng về số đếm và kiểu của tham số, các tên hàm bên trong/ngoài, và một số thứ tự để quản trị."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155417\n"
+"04060112.xhp\n"
+"par_id3155269\n"
"10\n"
"help.text"
-msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
-msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Chèn thêm một hàng. Vị trí của hàng được quyết định bởi vùng bạn chọn trên bảng.</ahelp></variable> Số hàng được chèn tuỳ thuộc vào số hàng đang được chọn. Nội dung hiện có trên các hàng được chọn sẽ được dịch xuống dưới, nhường chỗ cho các hàng thêm vào."
+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 "Những hàm được gọi đồng bộ và trả về kết quả ngay lập tức. Cũng có thể là hàm thời gian thực (hàm không đồng bộ); tuy nhiên, hàm như vậy không được giải thích chi tiết vì tính phức tạp."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3146971\n"
+"04060112.xhp\n"
+"hd_id3145077\n"
"11\n"
"help.text"
-msgid "Entire column"
-msgstr "Toàn bộ cột"
+msgid "General information about the interface"
+msgstr "Thông tin chung vê giao diện"
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155068\n"
+"04060112.xhp\n"
+"par_id3146776\n"
"12\n"
"help.text"
-msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
-msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Chèn thêm cột. Số cột được chèn vào được quyết định bởi số cột đang được chọn. </ahelp></variable> Nội dung ban đầu của các cột sẽ được dịch sang phải, nhường chỗ cho các cột mới thêm vào."
+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 "Số tối đa các tham số trong một hàm Bổ trợ được gắn vào $[officename] Calc là 16: một giá trị trả về và nhiều nhất 15 tham số nhập vào hàm."
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3149899\n"
+"13\n"
"help.text"
-msgid "Rename Sheet"
-msgstr "Thay tên bảng"
+msgid "The data types are defined as follows:"
+msgstr "Những kiểu dữ liệu được xác định như theo đây:"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"bm_id3147336\n"
+"04060112.xhp\n"
+"par_id3151302\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
-msgstr "<bookmark_value>tên bảng công tác</bookmark_value><bookmark_value>thay đổi;tên trang tính</bookmark_value><bookmark_value>trang tính; thay đổi tên</bookmark_value>"
+msgid "<emph>Data types</emph>"
+msgstr "<emph>Kiểu dữ liệu</emph>"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3147336\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3143222\n"
+"15\n"
"help.text"
-msgid "Rename Sheet"
-msgstr "Thay tên bảng"
+msgid "<emph>Definition</emph>"
+msgstr "<emph>Định nghĩa</emph>"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3150792\n"
-"2\n"
+"04060112.xhp\n"
+"par_id3149384\n"
+"16\n"
"help.text"
-msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
-msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">Câu lệnh này mở một hộp thoại trong đó bạn có thể gán một tên khác cho trang tính hiện tại.</ahelp></variable>"
+msgid "CALLTYPE"
+msgstr "CALLTYPE"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3153968\n"
-"3\n"
+"04060112.xhp\n"
+"par_id3146963\n"
+"17\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "Under Windows: FAR PASCAL (_far _pascal)"
+msgstr "Dưới Windows: FAR PASCAL (_far _pascal)"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3155131\n"
+"04060112.xhp\n"
+"par_id3153809\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">Thêm tên mới cho bảng vào đây.</ahelp>"
+msgid "Other: default (operating system specific default)"
+msgstr "Khác: mặc định (giá trị mặc định đặc trưng cho hệ điều hành)"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3153092\n"
-"5\n"
+"04060112.xhp\n"
+"par_id3154734\n"
+"19\n"
"help.text"
-msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
-msgstr "Bạn cũng có thể mở hộp thoại <emph>Thay tên bảng tính</emph> thông qua trình đơn ngữ cảnh, bằng cách đặt con trỏ ở trên một thẻ bảng tính ở dưới cửa sổ và <switchinline select=\"sys\"><caseinline select=\"MAC\">nhấn chuột trong khi ấn giữ phím Ctrl </caseinline><defaultinline>nhấn phím phải chuột</defaultinline></switchinline>."
+msgid "USHORT"
+msgstr "USHORT"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3147396\n"
-"6\n"
+"04060112.xhp\n"
+"par_id3155760\n"
+"20\n"
"help.text"
-msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
-msgstr "Một cách khác là nhấn vào thẻ trang tính trong khi ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline>. Sau đó thì bạn có thể thay đổi tên một cách trực tiếp. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgid "2 Byte unsigned Integer"
+msgstr "Số nguyên không dấu 2 byte"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3145320\n"
+"21\n"
"help.text"
-msgid "Protect Document"
-msgstr "Bảo vệ tài liệu"
+msgid "DOUBLE"
+msgstr "DOUBLE"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3150956\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
-msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Bảo vệ Tài liệu\">Bảo vệ Tài liệu</link>"
+msgid "8 byte platform-dependent format"
+msgstr "Định dạng phụ thuộc vào nền tảng 8-byte"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"par_id3153362\n"
-"2\n"
+"04060112.xhp\n"
+"par_id3146097\n"
+"23\n"
"help.text"
-msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
-msgstr "Chức năng <emph>Bảo vệ tài liệu</emph> ngăn cản thay đổi xảy ra trong một số ô trong trang tính, hoặc trong một số trang tính trong tài liệu. Tùy chọn, bạn cũng có thể đặt một mật khẩu. Đặt mật khẩu thì chỉ hủy bảo vệ bằng cách nhập mật khẩu đúng."
+msgid "Paramtype"
+msgstr "Paramtype"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3147228\n"
-"3\n"
+"04060112.xhp\n"
+"par_id3150432\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
-msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Trang tính\">Trang tính</link>"
+msgid "Platform-dependent like int"
+msgstr "Phu thuộc vào nền tăng như số nguyên"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3153768\n"
-"4\n"
+"04060112.xhp\n"
+"par_id3153955\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
-msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Tài liệu\">Tài liệu</link>"
+msgid "PTR_DOUBLE =0 pointer to a double"
+msgstr "PTR_DOUBLE =0 con trỏ chỉ tới một đôi"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"par_idN10622\n"
+"04060112.xhp\n"
+"par_id3159262\n"
+"26\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgid "PTR_STRING =1 pointer to a zero-terminated string"
+msgstr "PTR_STRING =1 con trỏ chỉ tới một chuỗi chấm dứt bằng số không"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3148747\n"
+"27\n"
"help.text"
-msgid "Bit Operation Functions"
+msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
+msgstr "PTR_DOUBLE_ARR =2 con trỏ chỉ tới một mảng đôi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147406\n"
+"28\n"
+"help.text"
+msgid "PTR_STRING_ARR =3 pointer to a string array"
+msgstr "PTR_STRING_ARR =3 con trỏ chỉ tới một mảng chuỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151392\n"
+"29\n"
+"help.text"
+msgid "PTR_CELL_ARR =4 pointer to a cell array"
+msgstr "PTR_CELL_ARR =4 con trỏ chỉ tới một mảng ô"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153028\n"
+"30\n"
+"help.text"
+msgid "NONE =5"
+msgstr "NONE =5"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156396\n"
+"31\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153019\n"
+"32\n"
+"help.text"
+msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+msgstr "Theo đây có mô tả về những hàm này, mà được gọi như là <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150038\n"
+"33\n"
+"help.text"
+msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
+msgstr "Cho tất cả các hàm <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline>, thông tin sau đây áp dụng:"
+
+#: 04060112.xhp
+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, ...)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147616\n"
+"35\n"
+"help.text"
+msgid "Output: Resulting value"
+msgstr "Kết xuất: giá trị kết quả"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159119\n"
+"36\n"
+"help.text"
+msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
+msgstr "Nhập vào : bất cứ số kiểu nào (đôi&, ký_tự*, đôi*, ký_tự**, Vùng ô), mà <link href=\"text/scalc/01/04060112.xhp\" name=\"Vùng ô\">Vùng ô</link> là một mảng có kiểu mảng đôi, mảng chuỗi hay mảng ô."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3150653\n"
+"37\n"
+"help.text"
+msgid "GetFunctionCount()"
+msgstr "GetFunctionCount()"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152981\n"
+"38\n"
+"help.text"
+msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
+msgstr "Trả về số hàm không có các hàm quản trị của tham số tham chiếu. Mỗi hàm có một số thứ tự duy nhất nằm giữa 0 và nCount-1. Số này sẽ cần thiết về sau cho hai hàm <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> và <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link>."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150742\n"
+"39\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Cú pháp</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148728\n"
+"40\n"
+"help.text"
+msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154677\n"
+"41\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Tham số</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146940\n"
+"42\n"
+"help.text"
+msgid "USHORT &nCount:"
+msgstr "USHORT &nCount:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149893\n"
+"43\n"
+"help.text"
+msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
+msgstr "Kết xuất: tham chiếu đến một biến, mà nên chứa số các hàm Bổ trợ. Ví dụ, nếu phần bổ trợ cung cấp 5 hàm cho $[officename] Calc, thì nCount=5."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3147476\n"
+"44\n"
+"help.text"
+msgid "GetFunctionData()"
+msgstr "GetFunctionData()"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154841\n"
+"45\n"
+"help.text"
+msgid "Determines all the important information about an Add-In function."
+msgstr "Quyết định tất cả thông tin quan trọng về một hàm Bổ trợ."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148888\n"
+"46\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Cú pháp</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148434\n"
+"47\n"
+"help.text"
+msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149253\n"
+"48\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Tham số</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149686\n"
+"49\n"
+"help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149949\n"
+"50\n"
+"help.text"
+msgid "Input: Function number between 0 and nCount-1, inclusively."
+msgstr "Nhập vào : số thứ tự hàm nằm giữa 0 và nCount-1, kể cả."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149546\n"
+"51\n"
+"help.text"
+msgid "char* pFuncName:"
+msgstr "char* pFuncName:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148579\n"
+"52\n"
+"help.text"
+msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
+msgstr "Kết xuất: tên hàm như được lập trình viên thấy, như nó được đặt tên trong <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL</defaultinline></switchinline>. Tên này không quyết định tên được dùng trong <emph>Trợ lý Hàm</emph>."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153935\n"
+"53\n"
+"help.text"
+msgid "USHORT& nParamCount:"
+msgstr "USHORT& nParamCount:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150142\n"
+"54\n"
+"help.text"
+msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
+msgstr "Kết xuất: số tham số trong hàm Bổ trợ. Số này phải lớn hơn 0, vì lúc nào cũng có một giá trị kết quả; giá trị tối đa là 16."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145143\n"
+"55\n"
+"help.text"
+msgid "Paramtype* peType:"
+msgstr "Paramtype* peType:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148750\n"
+"56\n"
+"help.text"
+msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
+msgstr "Kết xuất: con trỏ chỉ tới một mảng chứa chính xác 16 biến có kiểu Paramtype. Những nParamCount mục nhập đầu tiên được điền bằng kiểu tham số thích hợp."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153078\n"
+"57\n"
+"help.text"
+msgid "char* pInternalName:"
+msgstr "char* pInternalName:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155261\n"
+"58\n"
+"help.text"
+msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
+msgstr "Kết xuất: tên hàm như được người dùng thấy, như nó xuất hiện trong <emph>Trợ lý Hàm</emph>. Chữ có thể có dấu hai chấm ỡ trên."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153327\n"
+"59\n"
+"help.text"
+msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
+msgstr "Hai tham số pFuncName và pInternalName là mảng ký tự, mà được thực hiện với kích cỡ 256 trong $[officename] Calc."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148567\n"
+"60\n"
+"help.text"
+msgid "GetParameterDescription()"
+msgstr "GetParameterDescription()"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153000\n"
+"61\n"
+"help.text"
+msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
+msgstr "Cung cấp một mô tả ngắn về hàm Bổ trợ và các tham số của nó. Tùy chọn, hàm này cũng có thể được sử dụng để hiển thị một mô tả về hàm và tham số trong <emph>Trợ lý Hàm</emph>."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154501\n"
+"62\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Cú pháp</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153564\n"
+"63\n"
+"help.text"
+msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3157995\n"
+"64\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Tham số</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155925\n"
+"65\n"
+"help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149883\n"
+"66\n"
+"help.text"
+msgid "Input: Number of the function in the library; between 0 and nCount-1."
+msgstr "Nhập vào : số thứ tự của hàm trong thư viện; giữa 0 và nCount-1."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154326\n"
+"67\n"
+"help.text"
+msgid "USHORT& nParam:"
+msgstr "USHORT& nParam:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159139\n"
+"68\n"
+"help.text"
+msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
+msgstr "Nhập vào : Chỉ định cho tham số nào mà mô tả được đưa ra; các tham số bắt đầu ở 1. Nếu nParam là 0, thì mô tả chính nó nên được cung cấp trong pDesc; trong trường hợp này, pName không có nghĩa."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147374\n"
+"69\n"
+"help.text"
+msgid "char* pName:"
+msgstr "char* pName:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145245\n"
+"70\n"
+"help.text"
+msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
+msgstr "Kết xuất: lấy tên hay kiểu của tham số, v.d. từ « Số », « Chuỗi », « Ngày » v.v. Thực hiện trong $[officename] Calc như char[256]."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151020\n"
+"71\n"
+"help.text"
+msgid "char* pDesc:"
+msgstr "char* pDesc:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148389\n"
+"72\n"
+"help.text"
+msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
+msgstr "Kết xuất: lấy mô tả của tham số, v.d. « Giá trị ở đó cần tính vũ trụ. » Thực hiện trong $[officename] Calc như char[256]."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145303\n"
+"73\n"
+"help.text"
+msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
+msgstr "pName và pDesc là mảng ký tự, được thực hiện trong $[officename] Calc với kích cỡ 256. Ghi chú rằng sức chứa sẵn sàng trong <emph>Trợ lý Hàm</emph> bị hạn chế, và 256 ký tự không thể được dùng hoàn toàn."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148874\n"
+"76\n"
+"help.text"
+msgid "Cell areas"
+msgstr "Vùng ô"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150265\n"
+"77\n"
+"help.text"
+msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
+msgstr "Những bảng theo đây chứa thông tin về những cấu trúc dữ liệu nào phải được cung cấp bởi một mô-đun chương trình bên ngoài để gửi vùng ô cho hàm. $[officename] Calc phân biệt ba mảng khác nhau, phụ thuộc vào kiểu dữ liệu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156060\n"
+"78\n"
+"help.text"
+msgid "Double Array"
+msgstr "Mảng Đôi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149540\n"
+"79\n"
+"help.text"
+msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
+msgstr "Như một tham số, một vùng ô có giá trị kiểu Số/Đôi có thể được gửi cho hàm. Một mảng đôi trong $[officename] Calc được định nghĩa như theo đây:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149388\n"
+"80\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Bù</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154636\n"
+"81\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Tên</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153228\n"
+"82\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Mô tả</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150685\n"
+"83\n"
+"help.text"
+msgid "0"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149052\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3154869\n"
+"84\n"
"help.text"
-msgid "Bit Operation Functions"
+msgid "Col1"
+msgstr "Cột1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147541\n"
+"85\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Số thứ tự cột ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149783\n"
+"86\n"
+"help.text"
+msgid "2"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4150026\n"
+"04060112.xhp\n"
+"par_id3155986\n"
+"87\n"
"help.text"
-msgid "<bookmark_value>BITAND function</bookmark_value>"
-msgstr "<bookmark_value>hàm AND</bookmark_value>"
+msgid "Row1"
+msgstr "Hàng1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150026\n"
-"238\n"
+"04060112.xhp\n"
+"par_id3147483\n"
+"88\n"
"help.text"
-msgid "BITAND"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự hàng ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153721\n"
+"89\n"
+"help.text"
+msgid "4"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4146942\n"
-"239\n"
+"04060112.xhp\n"
+"par_id3154317\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
+msgid "Tab1"
+msgstr "Bảng1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149820\n"
+"91\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự bảng ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163820\n"
+"92\n"
+"help.text"
+msgid "6"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150459\n"
-"240\n"
+"04060112.xhp\n"
+"par_id3149710\n"
+"93\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Col2"
+msgstr "Cột2"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4146878\n"
-"241\n"
+"04060112.xhp\n"
+"par_id3154819\n"
+"94\n"
"help.text"
-msgid "BITAND(number1; number2)"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Số thứ tự cột ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145083\n"
+"95\n"
+"help.text"
+msgid "8"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4151228\n"
-"242\n"
+"04060112.xhp\n"
+"par_id3156310\n"
+"96\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "Row2"
+msgstr "Hàng2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150968\n"
+"97\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự hàng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156133\n"
+"98\n"
+"help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153218\n"
+"99\n"
+"help.text"
+msgid "Tab2"
+msgstr "Bảng2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147086\n"
+"100\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự bảng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151270\n"
+"101\n"
+"help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152934\n"
+"102\n"
+"help.text"
+msgid "Count"
+msgstr "Đếm"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145202\n"
+"103\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Số các phần tử theo sau. Ô rỗng không phải được đếm hay gửi cho hàm."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150879\n"
+"104\n"
+"help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156002\n"
+"105\n"
+"help.text"
+msgid "Col"
+msgstr "Cột"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147276\n"
+"106\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Số thứ tự cột của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151295\n"
+"107\n"
+"help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150261\n"
+"108\n"
+"help.text"
+msgid "Row"
+msgstr "Hàng"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155851\n"
+"109\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Số thứ tự hàng của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153150\n"
+"110\n"
+"help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153758\n"
+"111\n"
+"help.text"
+msgid "Tab"
+msgstr "Bảng"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150154\n"
+"112\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Số thứ tự bảng của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149289\n"
+"113\n"
+"help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156010\n"
+"114\n"
+"help.text"
+msgid "Error"
+msgstr "Lỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159181\n"
+"115\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Số thứ tự lỗi, mà giá trị 0 được định nghĩa là « không có lỗi ». Nếu phần tử thuộc về một ô công thưc, thì giá trị được công thức quyết định."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147493\n"
+"116\n"
+"help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149200\n"
+"117\n"
+"help.text"
+msgid "Value"
+msgstr "Giá trị"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151174\n"
+"118\n"
+"help.text"
+msgid "8 byte IEEE variable of type double/floating point"
+msgstr "Biến IEEE 8-byte có kiểu chấm động/đôi."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154688\n"
+"119\n"
+"help.text"
+msgid "30"
+msgstr "30"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159337\n"
+"120\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155388\n"
+"121\n"
+"help.text"
+msgid "Next element"
+msgstr "Phần tử sau"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3154935\n"
+"122\n"
+"help.text"
+msgid "String Array"
+msgstr "Mảng chuỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153105\n"
+"123\n"
+"help.text"
+msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
+msgstr "Một vùng ô, mà chứa giá trị kiểu dữ liệu Văn bản và được gửi cho hàm dưới dạng một mảng chuỗi. Một mảng chuỗi trong $[officename] Calc được định nghĩa như theo đây:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149908\n"
+"124\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Bù</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159165\n"
+"125\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Tên</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159150\n"
+"126\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Mô tả</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149769\n"
+"127\n"
+"help.text"
+msgid "0"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4148582\n"
-"248\n"
+"04060112.xhp\n"
+"par_id3150509\n"
+"128\n"
"help.text"
-msgid "Example"
-msgstr "#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nVí dụ"
+msgid "Col1"
+msgstr "Cột1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149246\n"
-"250\n"
+"04060112.xhp\n"
+"par_id3148447\n"
+"129\n"
"help.text"
-msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Số thứ tự cột ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145418\n"
+"130\n"
+"help.text"
+msgid "2"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4146139\n"
+"04060112.xhp\n"
+"par_id3147512\n"
+"131\n"
"help.text"
-msgid "<bookmark_value>BITOR function</bookmark_value>"
-msgstr "<bookmark_value>hàm OR</bookmark_value>"
+msgid "Row1"
+msgstr "Hàng1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4146139\n"
-"252\n"
+"04060112.xhp\n"
+"par_id3147235\n"
+"132\n"
"help.text"
-msgid "BITOR"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự hàng ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155362\n"
+"133\n"
+"help.text"
+msgid "4"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150140\n"
-"253\n"
+"04060112.xhp\n"
+"par_id3151051\n"
+"134\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgid "Tab1"
+msgstr "Bảng1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148923\n"
+"135\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự bảng ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149158\n"
+"136\n"
+"help.text"
+msgid "6"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149188\n"
-"254\n"
+"04060112.xhp\n"
+"par_id3166437\n"
+"137\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Col2"
+msgstr "Cột2"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4148733\n"
-"255\n"
+"04060112.xhp\n"
+"par_id3149788\n"
+"138\n"
"help.text"
-msgid "BITOR(number1; number2)"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Số thứ tự cột ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3166450\n"
+"139\n"
+"help.text"
+msgid "8"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150864\n"
-"256\n"
+"04060112.xhp\n"
+"par_id3152877\n"
+"140\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "Row2"
+msgstr "Hàng2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152949\n"
+"141\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự hàng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159270\n"
+"142\n"
+"help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154107\n"
+"143\n"
+"help.text"
+msgid "Tab2"
+msgstr "Bảng2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153747\n"
+"144\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự bảng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149924\n"
+"145\n"
+"help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154858\n"
+"146\n"
+"help.text"
+msgid "Count"
+msgstr "Đếm"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148621\n"
+"147\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Số các phần tử theo sau. Ô rỗng không phải được đếm hay gửi cho hàm."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148467\n"
+"148\n"
+"help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151126\n"
+"149\n"
+"help.text"
+msgid "Col"
+msgstr "Cột"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154334\n"
+"150\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Số thứ tự cột của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149416\n"
+"151\n"
+"help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150631\n"
+"152\n"
+"help.text"
+msgid "Row"
+msgstr "Hàng"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150424\n"
+"153\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Số thứ tự hàng của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154797\n"
+"154\n"
+"help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3143274\n"
+"155\n"
+"help.text"
+msgid "Tab"
+msgstr "Bảng"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149513\n"
+"156\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Số thứ tự bảng của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145306\n"
+"157\n"
+"help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153948\n"
+"158\n"
+"help.text"
+msgid "Error"
+msgstr "Lỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153534\n"
+"159\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Số thứ tự lỗi, mà giá trị 0 được định nghĩa là « không có lỗi ». Nếu phần tử thuộc về một ô công thưc, thì giá trị được công thức quyết định."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153311\n"
+"160\n"
+"help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148695\n"
+"161\n"
+"help.text"
+msgid "Len"
+msgstr "Dài"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152769\n"
+"162\n"
+"help.text"
+msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "Chiều dài của chuỗi theo sau, gồm có byte số không đóng. Nếu chiều dài gồm có byte số không đóng bằng với một giá trị lẻ, thì một byte số không thứ hai được thêm vào chuỗi để làm một giá trị chẵn. Vì thế, « Dài » được tníh dùng ((StrLen+2)&~1)."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153772\n"
+"163\n"
+"help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153702\n"
+"164\n"
+"help.text"
+msgid "String"
+msgstr "Chuỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154474\n"
+"165\n"
+"help.text"
+msgid "String with closing zero byte"
+msgstr "Chuỗi có byte số không đóng"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156269\n"
+"166\n"
+"help.text"
+msgid "24+Len"
+msgstr "24+Dài"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154825\n"
+"167\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147097\n"
+"168\n"
+"help.text"
+msgid "Next element"
+msgstr "Phần tử sau"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3159091\n"
+"169\n"
+"help.text"
+msgid "Cell Array"
+msgstr "Mảng ô"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156140\n"
+"170\n"
+"help.text"
+msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
+msgstr "Mảng ô được dùng để gọi vùng ô chứa văn bản cũng như số. Một mảng ô trong $[officename] Calc được xác định như theo đây:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154664\n"
+"171\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Bù</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154566\n"
+"172\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Tên</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146073\n"
+"173\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Mô tả</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154117\n"
+"174\n"
+"help.text"
+msgid "0"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149884\n"
-"264\n"
+"04060112.xhp\n"
+"par_id3150988\n"
+"175\n"
"help.text"
-msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgid "Col1"
+msgstr "Cột1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146783\n"
+"176\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Số thứ tự cột ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153666\n"
+"177\n"
+"help.text"
+msgid "2"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4150019\n"
+"04060112.xhp\n"
+"par_id3149560\n"
+"178\n"
"help.text"
-msgid "<bookmark_value>BITXOR function</bookmark_value>"
-msgstr "<bookmark_value>hàm OR</bookmark_value>"
+msgid "Row1"
+msgstr "Hàng1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150019\n"
-"182\n"
+"04060112.xhp\n"
+"par_id3156156\n"
+"179\n"
"help.text"
-msgid "BITXOR"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự hàng ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150408\n"
+"180\n"
+"help.text"
+msgid "4"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145246\n"
+"04060112.xhp\n"
+"par_id3150593\n"
+"181\n"
+"help.text"
+msgid "Tab1"
+msgstr "Bảng1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150357\n"
+"182\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự bảng ở góc trên bên trái vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146912\n"
"183\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgid "6"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4153047\n"
+"04060112.xhp\n"
+"par_id3153352\n"
"184\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Col2"
+msgstr "Cột2"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4157970\n"
+"04060112.xhp\n"
+"par_id3155893\n"
"185\n"
"help.text"
-msgid "BITXOR(number1; number2)"
-msgstr ""
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Số thứ tự cột ở góc dưới bên phải vùng ô. Đánh số từ 0."
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145302\n"
+"04060112.xhp\n"
+"par_id3150827\n"
"186\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "8"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150269\n"
+"04060112.xhp\n"
+"par_id3148406\n"
+"187\n"
+"help.text"
+msgid "Row2"
+msgstr "Hàng2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150673\n"
+"188\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự hàng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155864\n"
+"189\n"
+"help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153197\n"
+"190\n"
+"help.text"
+msgid "Tab2"
+msgstr "Bảng2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149329\n"
+"191\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Số thứ tự bảng ở góc dưới bên phải vùng ô. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147360\n"
"192\n"
"help.text"
-msgid "Example"
-msgstr "#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nVí dụ"
+msgid "12"
+msgstr "12"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149394\n"
+"04060112.xhp\n"
+"par_id3154520\n"
+"193\n"
+"help.text"
+msgid "Count"
+msgstr "Đếm"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150647\n"
+"194\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Số các phần tử theo sau. Ô rỗng không phải được đếm hay gửi cho hàm."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149747\n"
+"195\n"
+"help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147579\n"
"196\n"
"help.text"
-msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
-msgstr ""
+msgid "Col"
+msgstr "Cột"
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4155370\n"
+"04060112.xhp\n"
+"par_id3154188\n"
+"197\n"
"help.text"
-msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
-msgstr "<bookmark_value>hàm BINOMDIST</bookmark_value>"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Số thứ tự cột của phần tử. Đánh số từ 0."
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4155370\n"
-"266\n"
+"04060112.xhp\n"
+"par_id3159209\n"
+"198\n"
"help.text"
-msgid "BITLSHIFT"
-msgstr ""
+msgid "16"
+msgstr "16"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4158411\n"
-"267\n"
+"04060112.xhp\n"
+"par_id3153265\n"
+"199\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
-msgstr ""
+msgid "Row"
+msgstr "Hàng"
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4155814\n"
-"268\n"
+"04060112.xhp\n"
+"par_id3150095\n"
+"200\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Số thứ tự hàng của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151276\n"
+"201\n"
+"help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149177\n"
+"202\n"
+"help.text"
+msgid "Tab"
+msgstr "Bảng"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146925\n"
+"203\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Số thứ tự bảng của phần tử. Đánh số từ 0."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150488\n"
+"204\n"
+"help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149441\n"
+"205\n"
+"help.text"
+msgid "Error"
+msgstr "Lỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156048\n"
+"206\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Số thứ tự lỗi, mà giá trị 0 được định nghĩa là « không có lỗi ». Nếu phần tử thuộc về một ô công thưc, thì giá trị được công thức quyết định."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163813\n"
+"207\n"
+"help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159102\n"
+"208\n"
+"help.text"
+msgid "Type"
+msgstr "Kiểu"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149581\n"
+"209\n"
+"help.text"
+msgid "Type of cell content, 0 == Double, 1 == String"
+msgstr "Kiểu nội dung: 0 == Đôi, 1 == Chuỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155182\n"
+"210\n"
+"help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153291\n"
+"211\n"
+"help.text"
+msgid "Value or Len"
+msgstr "Giá trị hay Dài"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148560\n"
+"212\n"
+"help.text"
+msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgstr "Nếu kiểu == 0: biến IEEE 8-byte có kiểu chấm động/đôi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148901\n"
+"213\n"
+"help.text"
+msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "Nếu kiểu == 1: chiều dài của chuỗi theo sau, gồm có byte số không đóng. Nếu chiều dài gồm có byte số không đóng bằng với một giá trị lẻ, thì một byte số không đóng thứ hai được thêm vào chuỗi để tạo một giá trị chẵn. Vì thế, chiều Dài được tính dùng ((StrLen+2)&~1)."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145215\n"
+"214\n"
+"help.text"
+msgid "26 if type==1"
+msgstr "26 nếu kiểu == 1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155143\n"
+"215\n"
+"help.text"
+msgid "String"
+msgstr "Chuỗi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149298\n"
+"216\n"
+"help.text"
+msgid "If type == 1: String with closing zero byte"
+msgstr "Nếu kiểu == 1: chuỗi có byte số không đóng"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151322\n"
+"217\n"
+"help.text"
+msgid "32 or 26+Len"
+msgstr "32 or 26+Dài"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163722\n"
+"218\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151059\n"
+"219\n"
+"help.text"
+msgid "Next element"
+msgstr "Phần tử sau"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 1"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3152871\n"
+"help.text"
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
+msgstr "<bookmark_value>phần bổ trợ; hàm phân tích</bookmark_value><bookmark_value>hàm phân tích</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3152871\n"
+"1\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 1"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149873\n"
+"102\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Hàm chuyển đổi chung BASIS\">Hàm chuyển đổi chung BASIS</link>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145324\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Hàm phân tích Phần 2\">Hàm phân tích Phần 2</link>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155751\n"
+"156\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Trở về Toàn cảnh\">Trở về Toàn cảnh</link>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3153074\n"
+"help.text"
+msgid "<bookmark_value>Bessel functions</bookmark_value>"
+msgstr "<bookmark_value>hàm Bessel</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153334\n"
+"111\n"
+"help.text"
+msgid "BESSELI"
+msgstr "BESSELI"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153960\n"
+"112\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Tính hàm Bessel đã sửa đổi.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150392\n"
+"113\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4147536\n"
-"269\n"
+"04060115.xhp\n"
+"par_id3147295\n"
+"114\n"
"help.text"
-msgid "BITLSHIFT(number; shift)"
-msgstr ""
+msgid "BESSELI(X; N)"
+msgstr "BESSELI(X; N)"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150475\n"
-"270\n"
+"04060115.xhp\n"
+"par_id3151338\n"
+"115\n"
"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
-msgstr ""
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4153921\n"
-"271\n"
+"04060115.xhp\n"
+"par_id3151392\n"
+"116\n"
"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
-msgstr ""
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph> là bậc của hàm Bessel"
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4153723\n"
-"276\n"
+"04060115.xhp\n"
+"hd_id3153027\n"
+"103\n"
"help.text"
-msgid "Example"
-msgstr "#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nVí dụ"
+msgid "BESSELJ"
+msgstr "BESSELJ"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149819\n"
-"278\n"
+"04060115.xhp\n"
+"par_id3153015\n"
+"104\n"
"help.text"
-msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
-msgstr ""
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Tính hàm Bessel (hàm trụ).</ahelp>"
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4083280\n"
+"04060115.xhp\n"
+"hd_id3146884\n"
+"105\n"
"help.text"
-msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
-msgstr "<bookmark_value>hàm BINOMDIST</bookmark_value>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4083280\n"
-"165\n"
+"04060115.xhp\n"
+"par_id3150032\n"
+"106\n"
"help.text"
-msgid "BITRSHIFT"
-msgstr ""
+msgid "BESSELJ(X; N)"
+msgstr "BESSELJ(X; N)"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4152482\n"
-"166\n"
+"04060115.xhp\n"
+"par_id3150378\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
-msgstr ""
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149713\n"
-"167\n"
+"04060115.xhp\n"
+"par_id3145638\n"
+"108\n"
+"help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph> là bậc của hàm Bessel"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149946\n"
+"117\n"
+"help.text"
+msgid "BESSELK"
+msgstr "BESSELK"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159122\n"
+"118\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Tính hàm Bessel đã sửa đổi.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150650\n"
+"119\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145087\n"
-"168\n"
+"04060115.xhp\n"
+"par_id3149354\n"
+"120\n"
"help.text"
-msgid "BITRSHIFT(number; shift)"
-msgstr ""
+msgid "BESSELK(X; N)"
+msgstr "BESSELK(X; N)"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149277\n"
-"169\n"
+"04060115.xhp\n"
+"par_id3150481\n"
+"121\n"
"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
-msgstr ""
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149270\n"
-"170\n"
+"04060115.xhp\n"
+"par_id3150024\n"
+"122\n"
"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
-msgstr ""
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph> là bậc của hàm Bessel"
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4152933\n"
-"175\n"
+"04060115.xhp\n"
+"hd_id3145828\n"
+"123\n"
+"help.text"
+msgid "BESSELY"
+msgstr "BESSELY"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3146877\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Tính hàm Bessel đã sửa đổi.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3146941\n"
+"125\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148884\n"
+"126\n"
+"help.text"
+msgid "BESSELY(X; N)"
+msgstr "BESSELY(X; N)"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147475\n"
+"127\n"
+"help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> là giá trị với đó tính hàm này."
+
+#: 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> là bậc của hàm Bessel"
+
+#: 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>hàm BIN2DEC</bookmark_value><bookmark_value>chuyển đổi;số nhị phân sang số thập phân</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153034\n"
+"17\n"
+"help.text"
+msgid "BIN2DEC"
+msgstr "BIN2DEC"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3144744\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Kết quả là số thập phân cho số nhị phân được nhập vào.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145593\n"
+"19\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149726\n"
+"20\n"
+"help.text"
+msgid "BIN2DEC(Number)"
+msgstr "BIN2DEC(Số)"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150142\n"
+"21\n"
+"help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là một số nhị phân. Số này có thể chứa nhiều nhất 10 lần số (bit). Bit quan trọng nhất là bit dấu (+/-). Số âm được nhập dưới dạng phần bù của hai."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149250\n"
+"22\n"
"help.text"
msgid "Example"
-msgstr "#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nThí dụ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nVí dụ"
+msgstr "Ví dụ"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4156130\n"
-"179\n"
+"04060115.xhp\n"
+"par_id3145138\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
-msgstr ""
+msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
+msgstr "<item type=\"input\">=BIN2DEC(1100100)</item> trả về 100."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"bm_id3149954\n"
"help.text"
-msgid "Cell Protection"
-msgstr "Bảo vệ ô"
+msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm BIN2HEX</bookmark_value><bookmark_value>chuyển đổi;số nhị phân sang số thập lục</bookmark_value>"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3145119\n"
-"1\n"
+"04060115.xhp\n"
+"hd_id3149954\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
-msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Bảo vệ ô\">Bảo vệ ô</link>"
+msgid "BIN2HEX"
+msgstr "BIN2HEX"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3150398\n"
-"2\n"
+"04060115.xhp\n"
+"par_id3148585\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Xác định các tùy chọn về chức năng bảo vệ cho những ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">Kết quả là số thập lục cho số nhị phân được nhập vào.</ahelp>"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3150447\n"
-"3\n"
+"04060115.xhp\n"
+"hd_id3153936\n"
+"26\n"
"help.text"
-msgid "Protection"
-msgstr "Bảo vệ"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3125864\n"
-"9\n"
+"04060115.xhp\n"
+"par_id3148753\n"
+"27\n"
"help.text"
-msgid "Hide all"
-msgstr "Ẩn tất cả"
+msgid "BIN2HEX(Number; Places)"
+msgstr "BIN2HEX(Số; Lần_số)"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3153768\n"
-"10\n"
+"04060115.xhp\n"
+"par_id3155255\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Hides formulas and contents of the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Ẩn các công thức và nội dung của các ô đã chọn.</ahelp>"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là một số nhị phân. Số này có thể chứa nhiều nhất 10 lần số (bit). Bit quan trọng nhất là bit dấu (+/-). Số âm được nhập dưới dạng phần bù của hai."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3153190\n"
-"5\n"
+"04060115.xhp\n"
+"par_id3150860\n"
+"29\n"
"help.text"
-msgid "Protected"
-msgstr "Bảo vệ"
+msgid "Places means the number of places to be output."
+msgstr "Lần_số là số lần số trong số kết xuất."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3151119\n"
-"6\n"
+"04060115.xhp\n"
+"hd_id3155829\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Prevents the selected cells from being modified.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Ngăn cản sửa đổi những ô đã chọn.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3156283\n"
-"15\n"
+"04060115.xhp\n"
+"par_id3149686\n"
+"31\n"
"help.text"
-msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
-msgstr "Chức năng bảo vệ ô này chỉ có tác động nếu bạn cũng bảo vệ toàn bộ bảng tính (<emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>)."
+msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
+msgstr "<item type=\"input\">=BIN2HEX(1100100;6)</item> trả về 000064."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3149377\n"
-"7\n"
+"04060115.xhp\n"
+"bm_id3153332\n"
"help.text"
-msgid "Hide formula"
-msgstr "Ẩn công thức"
+msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm BIN2OCT</bookmark_value><bookmark_value>chuyển đổi;số nhị phân sang số bát phân</bookmark_value>"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3154510\n"
-"8\n"
+"04060115.xhp\n"
+"hd_id3153332\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Hides formulas in the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Ẩn các công thức trong những ô đã chọn.</ahelp>"
+msgid "BIN2OCT"
+msgstr "BIN2OCT"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3155602\n"
+"04060115.xhp\n"
+"par_id3155951\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> Kết quả là số bát phân cho số nhị phân được nhập vào.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153001\n"
"11\n"
"help.text"
-msgid "Print"
-msgstr "In"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3153836\n"
+"04060115.xhp\n"
+"par_id3154508\n"
"12\n"
"help.text"
-msgid "Defines print options for the sheet."
-msgstr "Xác định các tùy chọn về chức năng in ấn cho trang tính đó."
+msgid "BIN2OCT(Number; Places)"
+msgstr "BIN2OCT(Số; Lần_số)"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3155065\n"
+"04060115.xhp\n"
+"par_id3153567\n"
"13\n"
"help.text"
-msgid "Hide when printing"
-msgstr "Ẩn khi in"
+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>Số</emph> là một số nhị phân. Số này có thể chứa nhiều nhất 10 lần số (bit). Bit quan trọng nhất là bit dấu (+/-). Số âm được nhập dưới dạng phần bù của hai."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3155443\n"
+"04060115.xhp\n"
+"par_id3155929\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Keeps the selected cells from being printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Ngăn cản in những ô đã chọn.</ahelp>"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"hd_id3150128\n"
+"15\n"
"help.text"
-msgid "Format Cells"
-msgstr "Định dạng ô"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"bm_id3148663\n"
+"04060115.xhp\n"
+"par_id3153733\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
-msgstr "<bookmark_value>thuộc tính về ô bảng</bookmark_value><bookmark_value>thuộc tính;ô bảng</bookmark_value><bookmark_value>định dạng;ô bảng</bookmark_value><bookmark_value>ô bảng;hộp thoại định dạng</bookmark_value>"
+msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
+msgstr "<item type=\"input\">=BIN2OCT(1100100;4)</item> trả về 0144."
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3148663\n"
-"1\n"
+"04060115.xhp\n"
+"bm_id3150014\n"
"help.text"
-msgid "Format Cells"
-msgstr "Định dạng ô"
+msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm DELTA</bookmark_value><bookmark_value>nhân ra;các số bằng nhau</bookmark_value>"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3150448\n"
-"2\n"
+"04060115.xhp\n"
+"hd_id3150014\n"
+"129\n"
"help.text"
-msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
-msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Cho phép bạn ghi rõ các tùy chọn định dạng khác nhau và áp dụng các thuộc tính cho những ô đã chọn.</ahelp></variable>"
+msgid "DELTA"
+msgstr "DELTA"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3145785\n"
-"3\n"
+"04060115.xhp\n"
+"par_id3148760\n"
+"130\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Số\">Số</link>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">Kết quả là Đúng (1) nếu cả hai số (được gửi dạng đối số) bằng nhau, không thì Sai (0).</ahelp>"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3146119\n"
-"4\n"
+"04060115.xhp\n"
+"hd_id3155435\n"
+"131\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"par_id3145247\n"
+"132\n"
"help.text"
-msgid "WEEKNUM"
-msgstr "WEEKNUM"
+msgid "DELTA(Number1; Number2)"
+msgstr "DELTA(Số1; Số2)"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"bm_id3159161\n"
+"04060115.xhp\n"
+"hd_id3149002\n"
+"133\n"
"help.text"
-msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
-msgstr "<bookmark_value>hàm WEEKNUM</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3159161\n"
-"54\n"
+"04060115.xhp\n"
+"par_id3151020\n"
+"134\n"
"help.text"
-msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
-msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">Hàm WEEKNUM</link></variable>"
+msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149770\n"
-"55\n"
+"04060115.xhp\n"
+"bm_id3157971\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">Hàm WEEKNUM tính số thứ tự tuần của năm cho giá trị ngày tháng nội bộ.</ahelp>"
+msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm DEC2BIN</bookmark_value><bookmark_value>chuyển đổi;số thập phân sang số nhị phân</bookmark_value>"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_idN105E4\n"
+"04060115.xhp\n"
+"hd_id3157971\n"
+"55\n"
"help.text"
-msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
-msgstr "Tiêu Chuẩn Quốc Tế ISO 8601 cho là hôm Thứ Hai là hôm thứ nhất của tuần. Một tuần nằm qua hai năm được gán một số trong năm chứa phần lớn các ngày của tuần đó. Có nghĩa là tuần số 1 của bất cứ năm nào là tuần chứa ngày 4, tháng 1."
+msgid "DEC2BIN"
+msgstr "DEC2BIN"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3153055\n"
+"04060115.xhp\n"
+"par_id3153043\n"
"56\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Kết quả là số nhị phân cho số thập phân được nhập vào (giữa -512 và +512).</ahelp>"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147236\n"
+"04060115.xhp\n"
+"hd_id3145349\n"
"57\n"
"help.text"
-msgid "WEEKNUM(Number; Mode)"
-msgstr "WEEKNUM(Số; Chế_độ)"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147511\n"
+"04060115.xhp\n"
+"par_id3150569\n"
"58\n"
"help.text"
-msgid "<emph>Number</emph> is the internal date number."
-msgstr "<emph>Số</emph> là số của ngày tháng nội bộ."
+msgid "DEC2BIN(Number; Places)"
+msgstr "DEC2BIN(Số; Lần_số)"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154269\n"
+"04060115.xhp\n"
+"par_id3148768\n"
"59\n"
"help.text"
-msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
-msgstr "<emph>Chế_độ</emph> đặt đầu của tuần và kiểu phép tính."
+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>Số</emph> là một số thập phân. Nếu Số là âm, thì hàm trả về một số nhị phân có 10 ký tự. Bit quan trọng nhất là bit dấu (+/-); chín bit khác trả về giá trị."
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3148930\n"
+"04060115.xhp\n"
+"par_id3149537\n"
"60\n"
"help.text"
-msgid "1 = Sunday"
-msgstr "1 = Chủ Nhật"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154280\n"
+"04060115.xhp\n"
+"hd_id3150265\n"
"61\n"
"help.text"
-msgid "2 = Monday"
-msgstr "2 = Thứ Hai"
+msgid "Example"
+msgstr "Ví dụ"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3146948\n"
+"04060115.xhp\n"
+"par_id3150662\n"
"62\n"
"help.text"
-msgid "Examples"
+msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
+msgstr "<item type=\"input\">=DEC2BIN(100;8)</item> trả về 01100100."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3149388\n"
+"help.text"
+msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm DEC2HEX</bookmark_value><bookmark_value>chuyển đổi;số thập phân sang số thập lục</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149388\n"
+"71\n"
+"help.text"
+msgid "DEC2HEX"
+msgstr "DEC2HEX"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149030\n"
+"72\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Kết quả là số thập lục cho số thập phân được nhập vào.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150691\n"
+"73\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147535\n"
+"74\n"
+"help.text"
+msgid "DEC2HEX(Number; Places)"
+msgstr "DEC2HEX(Số; Lần_số)"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152820\n"
+"75\n"
+"help.text"
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
+msgstr "<emph>Số</emph> là một số thập phân. Nếu Số là âm, thì hàm trả về một số thập lục có 10 ký tự (40 bit). Bit quan trọng nhất là bit dấu (+/-); 39 bit khác trả về giá trị."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153221\n"
+"76\n"
+"help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154869\n"
+"77\n"
+"help.text"
+msgid "Example"
msgstr "Ví dụ"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3150704\n"
-"65\n"
+"04060115.xhp\n"
+"par_id3150476\n"
+"78\n"
"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
-msgstr "=WEEKNUM(\"1995-01-01\";1) trả về 1"
+msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
+msgstr "<item type=\"input\">=DEC2HEX(100;4)</item> trả về 0064."
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149792\n"
+"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>hàm DEC2OCT</bookmark_value><bookmark_value>chuyển đổi;số thập phân sang số bát phân</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154948\n"
+"63\n"
+"help.text"
+msgid "DEC2OCT"
+msgstr "DEC2OCT"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153920\n"
"64\n"
"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
-msgstr "=WEEKNUM(\"1995-01-01\";2) trả về 52. Nếu tuần bắt đầu vào hôm Thứ Hai, hôm Chủ Nhật thuộc về tuần cuối cùng của năm trước."
+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\">Kết quả là số bát phân cho số thập phân được nhập vào..</ahelp>"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"hd_id3153178\n"
+"65\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Điền bảng"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"hd_id3153897\n"
-"1\n"
+"04060115.xhp\n"
+"par_id3148427\n"
+"66\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Điền bảng"
+msgid "DEC2OCT(Number; Places)"
+msgstr "DEC2OCT(Số; Lần_số)"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3150791\n"
-"2\n"
+"04060115.xhp\n"
+"par_id3155991\n"
+"67\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\">Đặt các tuỳ chọn để chuyển dữ liệu trên bảng tính hoặc phạm vi trong một bảng tính.</ahelp></variable>"
+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>Số</emph> là một số thập phân. Nếu Số là âm, thì hàm trả về một số bát phân có 10 ký tự (30 bit). Bit quan trọng nhất là bit dấu (+/-); 29 bit khác trả về giá trị."
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3150767\n"
-"3\n"
+"04060115.xhp\n"
+"par_id3152587\n"
+"68\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 "Khác với việc chép một vùng vào trong bảng nháp, bạn có thể lọc một số thông tin và tính các giá trị. Lệnh này chỉ thực hiện được khi bạn chọn 2 bảng trong tài liệu. Để chọn nhiều bảng, hãy bấm vào thẻ tên bảng khi giữ <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> hoặc Shift."
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"hd_id3155131\n"
-"4\n"
+"04060115.xhp\n"
+"hd_id3147482\n"
+"69\n"
"help.text"
-msgid "Filling a Sheet"
-msgstr ""
+msgid "Example"
+msgstr "Ví dụ"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3146119\n"
-"5\n"
+"04060115.xhp\n"
+"par_id3154317\n"
+"70\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 "Để chọn toàn bộ các bảng, hãy bấm vào hộp màu xám nằm ở góc trên bên trái của bảng. Bạn cũng có thể chọn một vùng trong bảng để chép riêng vùng đó."
+msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
+msgstr "<item type=\"input\">=DEC2OCT(100;4)</item> trả về 0144."
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3153726\n"
-"6\n"
+"04060115.xhp\n"
+"bm_id3083446\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 "Nhấn <switchinline select=\"sys\"> <caseinline select=\"MAC\">Cmd</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> và bấm vào thẻ của bảng công tác vào đó bạn muốn chèn nội dung."
+msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr "<bookmark_value>hàm ERF</bookmark_value><bookmark_value>tích phân lỗi Gauss</bookmark_value>"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3147436\n"
-"7\n"
+"04060115.xhp\n"
+"hd_id3083446\n"
+"135\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 "Chọn lệnh <emph>Sửa > Điền > Bảng</emph>. Trong hộp thoại hiện lên, hãy đánh dấu kiểm trong mục <emph>Số</emph> (hoặc <emph>Dán tất cả</emph>) nếu bạn muốn kết hợp các phép toán với giá trị. Bạn cũng có thể chọn các phép toán mình muốn trong hộp thoại này."
+msgid "ERF"
+msgstr "ERF"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3154942\n"
-"8\n"
+"04060115.xhp\n"
+"par_id3150381\n"
+"136\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">Trả về các giá trị của tích phân lỗi Gauss.</ahelp>"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3156283\n"
-"9\n"
+"04060115.xhp\n"
+"hd_id3152475\n"
+"137\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 "Hộp thoại này cũng có những mẹo trợ giúp bổ sung, tương tự như hộp thoại <link href=\"text/shared/01/02070000.xhp\" name=\"Dán nội dung\">Dán nội dung</link>."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05070500.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"par_id3163824\n"
+"138\n"
"help.text"
-msgid "Sheet"
-msgstr "Trang tính"
+msgid "ERF(LowerLimit; UpperLimit)"
+msgstr "ERF(Giới_hạn_trên; Giới_hạn_dưới)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"bm_id3150542\n"
+"04060115.xhp\n"
+"par_id3149715\n"
+"139\n"
"help.text"
-msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
-msgstr "<bookmark_value>trang; thứ tự khi in</bookmark_value><bookmark_value>in ấn; thứ tứ trang</bookmark_value>"
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr "<emph>Giới_hạn_dưới</emph> là giới hạn dưới của tích phân."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3156329\n"
-"1\n"
+"04060115.xhp\n"
+"par_id3156294\n"
+"140\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Trang tính\">Trang tính</link>"
+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>Giới_hạn_trên</emph> vẫn còn tùy chọn. Nó là giới hạn trên của tích phân. Không đưa ra giá trị này thì phép tính xảy ra giữa 0 và giới hạn dưới đã ghi rõ."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3151384\n"
-"2\n"
+"04060115.xhp\n"
+"hd_id3154819\n"
+"141\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_TABLE\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_TABLE\">Ghi rõ những phần tử cần bao gồm trong bản in tất cả trang tính theo Kiểu dáng Trang hiện thời. Hơn nữa, bạn có thể đặt thứ tự in trang, số thứ tự trang đầu tiên, và tỷ lệ trang.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150542\n"
-"3\n"
+"04060115.xhp\n"
+"par_id3152974\n"
+"142\n"
"help.text"
-msgid "Print"
-msgstr "In"
+msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
+msgstr "<item type=\"input\">=ERF(0;1)</item> trả về 0.842701."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3125863\n"
-"4\n"
+"04060115.xhp\n"
+"bm_id3145082\n"
"help.text"
-msgid "Defines which elements of the spreadsheet are to be printed."
-msgstr "Xác định cần in những phần tử nào của bảng tính."
+msgid "<bookmark_value>ERFC function</bookmark_value>"
+msgstr "<bookmark_value>hàm ERFC</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3151041\n"
-"5\n"
+"04060115.xhp\n"
+"hd_id3145082\n"
+"143\n"
"help.text"
-msgid "Column and row headers"
-msgstr "Phần đầu Cột và Hàng"
+msgid "ERFC"
+msgstr "ERFC"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3147228\n"
-"6\n"
+"04060115.xhp\n"
+"par_id3149453\n"
+"144\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Ghi rõ nếu bạn muốn in các phần đầu cột/hàng, hay không.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Trả về các giá trị bù của tích phân lỗi Gauss nằm giữa x và vô hạn.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150439\n"
-"7\n"
+"04060115.xhp\n"
+"hd_id3155839\n"
+"145\n"
"help.text"
-msgid "Grid"
-msgstr "Lưới"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3147436\n"
-"8\n"
+"04060115.xhp\n"
+"par_id3153220\n"
+"146\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
-msgstr ""
+msgid "ERFC(LowerLimit)"
+msgstr "ERFC(Giới_hạn_dưới)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3145750\n"
-"9\n"
+"04060115.xhp\n"
+"par_id3147620\n"
+"147\n"
"help.text"
-msgid "Comments"
-msgstr "Chú thích"
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
+msgstr "<emph>Giới_hạn_dưới</emph> là giới hạn dưới của tích phân."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3150010\n"
-"10\n"
+"04060115.xhp\n"
+"hd_id3146861\n"
+"148\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">In ra những ghi chú được xác định trên bảng tính.</ahelp> Các ghi chú này sẽ được in ra trên một trang riêng, mỗi ghi chú cùng với tham chiếu ô tương ứng."
+msgid "Example"
+msgstr "Ví dụ"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3154944\n"
-"11\n"
+"04060115.xhp\n"
+"par_id3156102\n"
+"149\n"
"help.text"
-msgid "Objects/graphics"
-msgstr "Đối tượng/Đồ hoạ"
+msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgstr "<item type=\"input\">=ERFC(1)</item> trả về 0.157299."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149581\n"
-"12\n"
+"04060115.xhp\n"
+"bm_id3152927\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Bao gồm tất cả các đối tượng đã chèn (nếu có thể in được) và đồ họa đều với tài liệu được in ra.</ahelp>"
+msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr "<bookmark_value>hàm GESTEP</bookmark_value><bookmark_value>số;lớn hơn hay bằng</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3149377\n"
-"13\n"
+"04060115.xhp\n"
+"hd_id3152927\n"
+"150\n"
"help.text"
-msgid "Charts"
-msgstr "Đồ thị"
+msgid "GESTEP"
+msgstr "GESTEP"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3148455\n"
-"14\n"
+"04060115.xhp\n"
+"par_id3150763\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">In ra các đồ thị đã được chèn vào bảng tính.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">Kết quả là 1 nếu <item type=\"literal\">Số</item> lớn hơn hay bằng với <item type=\"literal\">Bước</item>.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3153418\n"
-"15\n"
+"04060115.xhp\n"
+"hd_id3150879\n"
+"152\n"
"help.text"
-msgid "Drawing Objects"
-msgstr "Đối tượng vẽ"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149122\n"
-"16\n"
+"04060115.xhp\n"
+"par_id3145212\n"
+"153\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Bao gồm tất cả các đối tượng vẽ trong tài liệu được in ra.</ahelp>"
+msgid "GESTEP(Number; Step)"
+msgstr "GESTEP(Số; Bước)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150330\n"
-"17\n"
+"04060115.xhp\n"
+"hd_id3153275\n"
+"154\n"
"help.text"
-msgid "Formulas"
-msgstr "Công thức"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3153715\n"
-"18\n"
+"04060115.xhp\n"
+"par_id3156132\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">In ra các công thức nằm trong ô, thay cho kết quả của công thức.</ahelp>"
+msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
+msgstr "<item type=\"input\">=GESTEP(5;1)</item> trả về 1."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3156385\n"
-"19\n"
+"04060115.xhp\n"
+"bm_id3147276\n"
"help.text"
-msgid "Zero Values"
-msgstr "Giá trị số không"
+msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm HEX2BIN</bookmark_value><bookmark_value>chuyển đổi;số thập lục sang số nhị phân</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149258\n"
-"20\n"
+"04060115.xhp\n"
+"hd_id3147276\n"
+"79\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Ghi rõ có nên in ra ngay cả ô có giá trị số không.</ahelp>"
+msgid "HEX2BIN"
+msgstr "HEX2BIN"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3154022\n"
-"21\n"
+"04060115.xhp\n"
+"par_id3150258\n"
+"80\n"
"help.text"
-msgid "Page Order"
-msgstr "Thứ tự Trang"
+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\">Kết quả là số nhị phân cho số thập lục được nhập vào.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3166423\n"
-"22\n"
+"04060115.xhp\n"
+"hd_id3156117\n"
+"81\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 "Xác định thứ tự theo đó đánh số và in ra dữ liệu trên một trang tính khi toàn bộ dữ liệu không vừa bên trong một tờ giấy."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3152580\n"
-"23\n"
+"04060115.xhp\n"
+"par_id3155847\n"
+"82\n"
"help.text"
-msgid "Top to bottom, then right"
-msgstr "Trên xuống dưới, sau đó sang phải"
+msgid "HEX2BIN(Number; Places)"
+msgstr "HEX2BIN(Số; Lần_số)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3150205\n"
-"24\n"
+"04060115.xhp\n"
+"par_id3152810\n"
+"83\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">In theo chiều dọc, từ cột bên trái xuống dưới của trang tính.</ahelp>"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là một số thập lục. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150786\n"
-"25\n"
+"04060115.xhp\n"
+"par_id3153758\n"
+"84\n"
"help.text"
-msgid "Left to right, then down"
-msgstr "Trái sang phải, sau đó xuống"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3154657\n"
-"26\n"
+"04060115.xhp\n"
+"hd_id3154052\n"
+"85\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">In theo chiều ngang, từ hàng đầu của trang tính sang cột bên phải.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150887\n"
-"27\n"
+"04060115.xhp\n"
+"par_id3156002\n"
+"86\n"
"help.text"
-msgid "First page number"
-msgstr "Số thứ tự trang đầu tiên"
+msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
+msgstr "<item type=\"input\">=HEX2BIN(64;8)</item> trả về 01100100."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3155378\n"
-"28\n"
+"04060115.xhp\n"
+"bm_id3154742\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Bật tùy chọn này nếu bạn muốn trang thứ nhất bắt đầu với một số khác với 1.</ahelp>"
+msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm HEX2DEC</bookmark_value><bookmark_value>chuyển đổi;số thập lục sang số thập phân</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3145389\n"
-"35\n"
+"04060115.xhp\n"
+"hd_id3154742\n"
+"87\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Enter the number of the first page.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Nhập số thứ tự của trang đầu tiên.</ahelp>"
+msgid "HEX2DEC"
+msgstr "HEX2DEC"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3146978\n"
-"29\n"
+"04060115.xhp\n"
+"par_id3153626\n"
+"88\n"
"help.text"
-msgid "Scale"
-msgstr "Co giãn"
+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\">Kết quả là số thập phân cho số thập lục được nhập vào.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149408\n"
-"30\n"
+"04060115.xhp\n"
+"hd_id3143233\n"
+"89\n"
"help.text"
-msgid "Defines a page scale for the printed spreadsheet."
-msgstr "Xác định một tỷ lệ trang cho bảng tính được in ra."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN1096D\n"
+"04060115.xhp\n"
+"par_id3149293\n"
+"90\n"
"help.text"
-msgid "Scaling mode"
-msgstr "Chế độ co giãn"
+msgid "HEX2DEC(Number)"
+msgstr "HEX2DEC(Số)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN10971\n"
+"04060115.xhp\n"
+"par_id3159176\n"
+"91\n"
"help.text"
-msgid "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
-msgstr "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Chọn một chế độ co giãn trong hộp liệt kê. Các điều khiển thích hợp được hiển thị bên cạnh hộp liệt kê.</ahelp>"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là một số thập lục. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3155089\n"
-"31\n"
+"04060115.xhp\n"
+"hd_id3154304\n"
+"92\n"
"help.text"
-msgid "Reduce/enlarge printout"
-msgstr "Thu nhỏ/phóng to vùng in"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3159171\n"
-"32\n"
+"04060115.xhp\n"
+"par_id3146093\n"
+"93\n"
"help.text"
-msgid "Specifies a scaling factor to scale all printed pages."
-msgstr "Ghi rõ một tỷ lệ để co giãn tất cả các trang được in ra."
+msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
+msgstr "<item type=\"input\">=HEX2DEC(64)</item> trả về 100."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN1099A\n"
+"04060115.xhp\n"
+"bm_id3149750\n"
"help.text"
-msgid "Scaling factor"
-msgstr "Hệ số co giãn"
+msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm HEX2OCT</bookmark_value><bookmark_value>chuyển đổi;số thập lục sang số bát phân</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3152899\n"
-"36\n"
+"04060115.xhp\n"
+"hd_id3149750\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
-msgstr "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Nhập một tỷ lệ. Hệ số nhỏ hơn 100 sẽ giảm kiểu dáng của trang, còn hệ số lớn hơn sẽ tăng kích cỡ của trang.</ahelp>"
+msgid "HEX2OCT"
+msgstr "HEX2OCT"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109B2\n"
+"04060115.xhp\n"
+"par_id3153983\n"
+"95\n"
"help.text"
-msgid "Fit print range(s) to width/height"
-msgstr "Vừa phạm vi in khít bề rộng/cao"
+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\">Kết quả là số bát phân cho số thập lục được nhập vào.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109B5\n"
+"04060115.xhp\n"
+"hd_id3145660\n"
+"96\n"
"help.text"
-msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
-msgstr "Ghi rõ số tối đa các trang theo chiều ngang (bề rộng) và theo chiều dọc (bề cao) cần in trên mỗi trang theo Kiểu dáng Trang hiện thời."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109BB\n"
+"04060115.xhp\n"
+"par_id3151170\n"
+"97\n"
"help.text"
-msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
-msgstr "Các phạm vi in luôn luôn được co giãn theo tỷ lệ, do đó số các trang kết quả có thể ít hơn số đã ghi rõ."
+msgid "HEX2OCT(Number; Places)"
+msgstr "HEX2OCT(Số; Lần_số)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109BF\n"
+"04060115.xhp\n"
+"par_id3152795\n"
+"98\n"
"help.text"
-msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
-msgstr "Bạn có thể bỏ chọn một của những hộp, để cho phép chiều đó chiếm càng nhiều trang càng cần thiết."
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là một số thập lục. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109C3\n"
+"04060115.xhp\n"
+"par_id3149204\n"
+"99\n"
"help.text"
-msgid "If you clear both boxes, this will result in a scaling factor of 100%."
-msgstr "Bỏ chọn cả hai hộp thì mỗi mục được in « như thế »: hệ số co giãn là 100%."
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109CE\n"
+"04060115.xhp\n"
+"hd_id3153901\n"
+"100\n"
"help.text"
-msgid "Width in pages"
-msgstr "Bề rộng theo trang"
+msgid "Example"
+msgstr "Ví dụ"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109D1\n"
+"04060115.xhp\n"
+"par_id3159341\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
-msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Nhập số tối đa các trang cần in theo chiều ngang trên tờ giấy.</ahelp>"
+msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
+msgstr "<item type=\"input\">=HEX2OCT(64;4)</item> trả về 0144."
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109E8\n"
+"04060116.xhp\n"
+"tit\n"
"help.text"
-msgid "Height in pages"
-msgstr "Bề cao theo trang"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 2"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109EB\n"
+"04060116.xhp\n"
+"bm_id3145074\n"
"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
-msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Nhập số tối đa các trang cần in theo chiều dọc.</ahelp>"
+msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
+msgstr "<bookmark_value>số ảo trong hàm phân tích</bookmark_value><bookmark_value>số phức trong hàm phân tích</bookmark_value>"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3148868\n"
-"33\n"
+"04060116.xhp\n"
+"hd_id3154659\n"
+"1\n"
"help.text"
-msgid "Fit print range(s) on number of pages"
-msgstr "Vừa phạm vi in trên số trang"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Hàm bổ trợ, Danh sách hàm phân tích Phần 2"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3145074\n"
-"34\n"
+"04060116.xhp\n"
+"par_id3151242\n"
+"174\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 "Ghi rõ số tối đa các tờ giấy trên đó cần in ra mọi trang theo Kiểu dáng Trang hiện thời. Tỷ lệ sẽ bị giảm theo yêu cầu đã vừa số trang đã xác định."
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Thống kê Phân loại\">Thống kê Phân loại</link>"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN10A26\n"
+"04060116.xhp\n"
+"par_id3148869\n"
+"5\n"
"help.text"
-msgid "Number of pages"
-msgstr "Số trang"
+msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Hàm phân tích Phần 1\">Hàm phân tích Phần 1</link>"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3144507\n"
-"37\n"
+"04060116.xhp\n"
+"par_id3147072\n"
+"240\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Gõ số tối đa các trang cần in ra.</ahelp>"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Trở về Toàn cảnh\">Trở về Toàn cảnh</link>"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"bm_id3154959\n"
"help.text"
-msgid "WEEKNUM_ADD"
-msgstr "WEEKNUM_ADD"
+msgid "<bookmark_value>IMABS function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMABS</bookmark_value>"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"bm_id3166443\n"
+"04060116.xhp\n"
+"hd_id3154959\n"
+"44\n"
"help.text"
-msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
-msgstr "<bookmark_value>hàm WEEKNUM_ADD</bookmark_value>"
+msgid "IMABS"
+msgstr "IMABS"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3166443\n"
-"222\n"
+"04060116.xhp\n"
+"par_id3149895\n"
+"45\n"
"help.text"
-msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
-msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">Hàm WEEKNUM_ADD</link></variable>"
+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\">Kết quả là giá trị tuyệt đối của một số phức.</ahelp>"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3152945\n"
-"223\n"
+"04060116.xhp\n"
+"hd_id3155382\n"
+"46\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\">Kết quả ngụ ý số thứ tự của một tuần lịch cho một ngày tháng nào đó.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_idN105DD\n"
+"04060116.xhp\n"
+"par_id3151302\n"
+"47\n"
"help.text"
-msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
-msgstr "Hàm WEEKNUM_ADD được thiết kế để tính các số thứ tự tuần đúng như chương trình Microsoft Excel. Hãy sử dụng hàm <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link>, hoặc định dạng các ô ngày tháng dùng mã định dạng WW, khi bạn cần dùng số thứ tự tuần kiểu ISO 8601."
+msgid "IMABS(\"ComplexNumber\")"
+msgstr "IMABS(\"Số_phức\")"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3153745\n"
-"224\n"
+"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>Số_phức</emph> là một số phức được nhập dưới dạng « x+yi » hay « x+yj ».</variable>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149697\n"
+"49\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3143222\n"
+"50\n"
+"help.text"
+msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr "<item type=\"input\">=IMABS(\"5+12j\")</item> trả về 13."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3145357\n"
+"help.text"
+msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMAGINARY</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3145357\n"
+"51\n"
+"help.text"
+msgid "IMAGINARY"
+msgstr "IMAGINARY"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146965\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">Kết quả là hệ số ảo của một số phức.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153555\n"
+"53\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3153685\n"
-"225\n"
+"04060116.xhp\n"
+"par_id3155522\n"
+"54\n"
"help.text"
-msgid "WEEKNUM_ADD(Date; ReturnType)"
-msgstr "WEEKNUM_ADD(Ngày; Kiểu_trả_về)"
+msgid "IMAGINARY(\"ComplexNumber\")"
+msgstr "IMAGINARY(\"Số_phức\")"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3159277\n"
-"226\n"
+"04060116.xhp\n"
+"hd_id3151193\n"
+"56\n"
"help.text"
-msgid "<emph>Date</emph> is the date within the calendar week."
-msgstr "<emph>Ngày</emph> là ngày tháng bên trong tuần của lịch."
+msgid "Example"
+msgstr "Ví dụ"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3154098\n"
-"227\n"
+"04060116.xhp\n"
+"par_id3155592\n"
+"57\n"
"help.text"
-msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
-msgstr "<emph>Kiểu_trả_về</emph> là 1 nếu tuần bắt đầu vào hôm Chủ Nhật, hay 2 nếu tuần bắt đầu vào hôm Thứ Hai."
+msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> trả về 3."
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3152886\n"
-"228\n"
+"04060116.xhp\n"
+"bm_id3146106\n"
+"help.text"
+msgid "<bookmark_value>IMPOWER function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMPOWER</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146106\n"
+"58\n"
+"help.text"
+msgid "IMPOWER"
+msgstr "IMPOWER"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147245\n"
+"59\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">Kết quả là số mũ số nguyên của một số phức.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150954\n"
+"60\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147501\n"
+"61\n"
+"help.text"
+msgid "IMPOWER(\"ComplexNumber\"; Number)"
+msgstr "IMPOWER(\"Số_phức\"; Số)"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155743\n"
+"63\n"
+"help.text"
+msgid "<emph>Number</emph> is the exponent."
+msgstr "<emph>Số</emph> là số mũ."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149048\n"
+"64\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149973\n"
-"229\n"
+"04060116.xhp\n"
+"par_id3151393\n"
+"65\n"
"help.text"
-msgid "In which week number does 12.24.2001 fall?"
-msgstr "Ngày 2001-24-12 nằm trong tuần số nào?"
+msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> trả về -5+12i."
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149914\n"
-"230\n"
+"04060116.xhp\n"
+"bm_id3148748\n"
"help.text"
-msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
-msgstr "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> trả về 52."
+msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMARGUMENT</bookmark_value>"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"hd_id3148748\n"
+"66\n"
"help.text"
-msgid "MONTH"
-msgstr "MONTH"
+msgid "IMARGUMENT"
+msgstr "IMARGUMENT"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"bm_id3149936\n"
+"04060116.xhp\n"
+"par_id3151341\n"
+"67\n"
"help.text"
-msgid "<bookmark_value>MONTH function</bookmark_value>"
-msgstr "<bookmark_value>hàm MONTH</bookmark_value>"
+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\">Kết quả là đối số (góc φ) của một số phức.</ahelp>"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3149936\n"
-"76\n"
+"04060116.xhp\n"
+"hd_id3150533\n"
+"68\n"
"help.text"
-msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
-msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">Hàm MONTH</link></variable>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3153538\n"
-"77\n"
+"04060116.xhp\n"
+"par_id3156402\n"
+"69\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\">Trả về phần tháng của giá trị ngày tháng đã cho.</ahelp> Phần tháng được trả về dưới dạng một số nguyên nằm giữa 1 và 12."
+msgid "IMARGUMENT(\"ComplexNumber\")"
+msgstr "IMARGUMENT(\"Số_phức\")"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3149517\n"
-"78\n"
+"04060116.xhp\n"
+"hd_id3153019\n"
+"71\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159125\n"
+"72\n"
+"help.text"
+msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> trả về 0.927295."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3149146\n"
+"help.text"
+msgid "<bookmark_value>IMCOS function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMCOS</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149146\n"
+"73\n"
+"help.text"
+msgid "IMCOS"
+msgstr "IMCOS"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149725\n"
+"74\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">Kết quả là cosin của một số phức.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3159116\n"
+"75\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3145602\n"
+"04060116.xhp\n"
+"par_id3147415\n"
+"76\n"
+"help.text"
+msgid "IMCOS(\"ComplexNumber\")"
+msgstr "IMCOS(\"Số_phức\")"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3152980\n"
+"78\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3157901\n"
"79\n"
"help.text"
-msgid "MONTH(Number)"
-msgstr "MONTH(Số)"
+msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+msgstr "<item type=\"input\">=IMCOS(\"3+4j\")</item> trả về -27.03-3.85i (đã làm tròn)."
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3149485\n"
+"04060116.xhp\n"
+"bm_id3150024\n"
+"help.text"
+msgid "<bookmark_value>IMDIV function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMDIV</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150024\n"
"80\n"
"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
-msgstr "<emph>Số</emph> là một giá trị thời gian dạng thập phân, cho đó cần trả về phần tháng."
+msgid "IMDIV"
+msgstr "IMDIV"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3153322\n"
+"04060116.xhp\n"
+"par_id3145825\n"
"81\n"
"help.text"
-msgid "Examples"
-msgstr "Ví dụ"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">Kết quả là thương của hai số phức.</ahelp>"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3149244\n"
+"04060116.xhp\n"
+"hd_id3150465\n"
+"82\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146942\n"
"83\n"
"help.text"
-msgid "=MONTH(NOW()) returns the current month."
-msgstr "=MONTH(NOW()) trả về tháng hiện thời."
+msgid "IMDIV(\"Numerator\"; \"Denominator\")"
+msgstr "IMDIV(\"Tử_số\"; \"Mẫu_số\")"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3154790\n"
+"04060116.xhp\n"
+"par_id3150741\n"
"84\n"
"help.text"
-msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
-msgstr "=MONTH(C4) trả về 7 nếu bạn nhập 2000-07-07 vào ô C4 (giá trị ngày tháng này có thể được định dạng khác một khi bạn bấm phím Enter)."
+msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
+msgstr "<emph>Tử_số</emph>, <emph>Mẫu_số</emph> là hai số phức được nhập dưới dạng « x+yi » hay « x+yj »."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"hd_id3151229\n"
+"85\n"
"help.text"
-msgid "Solver"
-msgstr "Giải phương trình"
+msgid "Example"
+msgstr "Ví dụ"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"bm_id7654652\n"
+"04060116.xhp\n"
+"par_id3148440\n"
+"86\n"
"help.text"
-msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
-msgstr "<bookmark_value>tìm mục đích;giải phương trình</bookmark_value><bookmark_value>thao tác « nếu thì »;giải phương trình</bookmark_value><bookmark_value>giải ngược</bookmark_value><bookmark_value>bộ giải</bookmark_value>"
+msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> trả về 5+12i."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"hd_id9216284\n"
+"04060116.xhp\n"
+"bm_id3153039\n"
"help.text"
-msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
-msgstr "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Giải phương trình</link></variable>"
+msgid "<bookmark_value>IMEXP function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMEXP</bookmark_value>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9210486\n"
+"04060116.xhp\n"
+"hd_id3153039\n"
+"87\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Giải phương trình</emph>. Một dụng cụ giải giúp bạn giải phương trình có nhiều biến không rõ, dùng phương pháp tìm mục đích.</ahelp>"
+msgid "IMEXP"
+msgstr "IMEXP"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id8538773\n"
+"04060116.xhp\n"
+"par_id3144741\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập hay nhấn vào tham chiếu ô của ô đích. Trường này nhận địa chỉ của ô có giá trị cần tối ưu hoá.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">Kết quả là lũy thừa e và số phức.</ahelp> Hằng số e có giá trị xấp xỉ 2.71828182845904."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7564012\n"
+"04060116.xhp\n"
+"hd_id3145591\n"
+"89\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thử giải phương trình đại diện giá trị tối đa của ô đích.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id1186254\n"
+"04060116.xhp\n"
+"par_id3154810\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thử giải phương trình đại diện giá trị tối thiểu của ô đích.</ahelp>"
+msgid "IMEXP(\"ComplexNumber\")"
+msgstr "IMEXP(\"Số_phức\")"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7432477\n"
+"04060116.xhp\n"
+"hd_id3148581\n"
+"92\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thử giải phương trình để gần như một giá trị đã cho của ô đích.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7141026\n"
+"04060116.xhp\n"
+"par_id3149253\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập giá trị hay một tham chiếu ô.</ahelp>"
+msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr "<item type=\"input\">=IMEXP(\"1+j\") </item>trả về 1.47+2.29j (đã làm tròn)."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id8531449\n"
+"04060116.xhp\n"
+"bm_id3149955\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập phạm vi ô có thể thay đổi.</ahelp>"
+msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMCONJUGATE</bookmark_value>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9183935\n"
+"04060116.xhp\n"
+"hd_id3149955\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập một tham chiếu ô.</ahelp>"
+msgid "IMCONJUGATE"
+msgstr "IMCONJUGATE"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id946684\n"
+"04060116.xhp\n"
+"par_id3155263\n"
+"95\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một toán tử trong danh sách.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">Kết quả là phần bù phức được liên hợp với một số phức.</ahelp>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9607226\n"
+"04060116.xhp\n"
+"hd_id3148750\n"
+"96\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập giá trị hay một tham chiếu ô.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id1939451\n"
+"04060116.xhp\n"
+"par_id3153082\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để thu nhỏ hay phục hồi hộp thoại. Bạn có thể nhấn vào hay lựa chọn ô trên trang tính. Bạn cũng có thể tự nhập một tham chiếu vào hộp nhập vào.</ahelp>"
+msgid "IMCONJUGATE(\"ComplexNumber\")"
+msgstr "IMCONJUGATE(\"Số_phức\")"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9038972\n"
+"04060116.xhp\n"
+"hd_id3153326\n"
+"99\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để gỡ bỏ hàng khỏi danh sách. Bất cứ hàng nào nằm bên dưới hàng này thì đi lên.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2423780\n"
+"04060116.xhp\n"
+"par_id3149688\n"
+"100\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Tùy chọn</emph>.</ahelp>"
+msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> trả về 1-j."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2569658\n"
+"04060116.xhp\n"
+"bm_id3150898\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để giải phương trình tùy theo thiết lập hiện thời. Thiết lập hộp thoại được giữ lại đến khi bạn đóng tài liệu hiện tại.</ahelp>"
+msgid "<bookmark_value>IMLN function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMLN</bookmark_value>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id5474410\n"
+"04060116.xhp\n"
+"hd_id3150898\n"
+"101\n"
"help.text"
-msgid "To solve equations with the solver"
-msgstr "Để giải phương trình bằng dụng cụ Giải phương trình"
+msgid "IMLN"
+msgstr "IMLN"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2216559\n"
+"04060116.xhp\n"
+"par_id3146853\n"
+"102\n"
"help.text"
-msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
-msgstr "Mục đích của tiến trình giải phương trình là tìm những giá trị biến đổi của một phương trình mà đưa đến một giá trị đã tối ưu hoá trong <emph>ô đích</emph>, cũng được gọi như là « mục tiêu ». Bạn có thể chọn nếu giá trị trong ô đích nên là giá trị tối đa, giá trị tối thiểu, hay gần như một giá trị đã cho."
+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\">Trả về lôga tự nhiên (dựa vào hằng số e) của một số phức.</ahelp> Hằng số e có giá trị xấp xỉ 2,71828182845904."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7869502\n"
+"04060116.xhp\n"
+"hd_id3150008\n"
+"103\n"
"help.text"
-msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
-msgstr "Những giá trị biến đổi đầu tiên được chèn vào một phạm vi ô hình chữ nhật được bạn nhập vào hộp <emph>Bằng cách thay đổi các ô</emph>."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9852900\n"
+"04060116.xhp\n"
+"par_id3155954\n"
+"104\n"
"help.text"
-msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
-msgstr "Bạn có khả năng định nghĩa một dãy các điều kiện hạn chế mà đặt ràng buộc cho một số nào đó. Chẳng hạn, bạn có thể đặt ràng buộc ằng một của những biến hay ô không thể lớn hơn một biến khác, hay không phải lớn hơn một giá trị đã cho. Bạn cũng có thể xác định ràng buộc rằng một hay nhiều biến phải là số nguyên (giá trị không có phần thập phân), hay giá trị nhị phân (chỉ cho phép là 0 hay 1)."
+msgid "IMLN(\"ComplexNumber\")"
+msgstr "IMLN(\"Số_phức\")"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id5323953\n"
+"04060116.xhp\n"
+"hd_id3153565\n"
+"106\n"
"help.text"
-msgid "The default solver engine supports only linear equations."
-msgstr "Cơ chế giải mặc định chỉ hỗ trợ phương trình tuyến tính."
+msgid "Example"
+msgstr "Ví dụ"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3153736\n"
+"107\n"
"help.text"
-msgid "Define Database Range"
-msgstr "Xác định phạm vi cơ sở dữ liệu"
+msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr "<item type=\"input\">=IMLN(\"1+j\")</item> trả về 0.35+0.79j (đã làm tròn)."
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3157909\n"
-"1\n"
+"04060116.xhp\n"
+"bm_id3155929\n"
"help.text"
-msgid "Define Database Range"
-msgstr "Xác định phạm vi cơ sở dữ liệu"
+msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMLOG10</bookmark_value>"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"04060116.xhp\n"
+"hd_id3155929\n"
+"108\n"
"help.text"
-msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
-msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Xác định một phạm vi cơ sở dữ liệu dựa vào những ô được chọn trên trang tính.</ahelp></variable>"
+msgid "IMLOG10"
+msgstr "IMLOG10"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3149456\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3149882\n"
+"109\n"
"help.text"
-msgid "You can only select a rectangular cell range."
-msgstr "Bạn chỉ có thể lựa chọn một phạm vi ô hình chữ nhật."
+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\">Kết quả là lôga chung (dựa và cơ số 10) của một số phức.</ahelp>"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3156422\n"
-"3\n"
+"04060116.xhp\n"
+"hd_id3154327\n"
+"110\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3150770\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3150128\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Hãy nhập tên cho phạm vi cơ sở dữ liệu cần xác định, hoặc chọn một tên đã có trong danh sách.</ahelp>"
+msgid "IMLOG10(\"ComplexNumber\")"
+msgstr "IMLOG10(\"Số_phức\")"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3147228\n"
-"6\n"
+"04060116.xhp\n"
+"hd_id3149003\n"
+"113\n"
"help.text"
-msgid "Range"
-msgstr "Phạm vi"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3150441\n"
-"7\n"
+"04060116.xhp\n"
+"par_id3151021\n"
+"114\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Hiển thị phạm vi ô được chọn.</ahelp>"
+msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr "<item type=\"input\">=IMLOG10(\"1+j\")</item> trả về 0.15+0.34j (đã làm tròn)."
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3153188\n"
-"10\n"
+"04060116.xhp\n"
+"bm_id3155623\n"
"help.text"
-msgid "Add/Modify"
-msgstr "Thêm/Sửa"
+msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMLOG2</bookmark_value>"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3153726\n"
-"11\n"
+"04060116.xhp\n"
+"hd_id3155623\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Thêm phạm vi ô được chọn vào danh sách các phạm vi cơ sở dữ liệu, hoặc sửa đổi một phạm vi cơ sở dữ liệu đã có.</ahelp>"
+msgid "IMLOG2"
+msgstr "IMLOG2"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3150010\n"
-"12\n"
+"04060116.xhp\n"
+"par_id3150932\n"
+"116\n"
"help.text"
-msgid "More >>"
-msgstr "Nhiều >>"
+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\">Kết quả là lôga nhị phân của một số phức.</ahelp>"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3153144\n"
-"13\n"
+"04060116.xhp\n"
+"hd_id3153046\n"
+"117\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">hiển thị thêm <link href=\"text/scalc/01/12010100.xhp\" name=\"tùy chọn\">tùy chọn</link>.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3145355\n"
+"118\n"
"help.text"
-msgid "1st, 2nd, 3rd Group"
-msgstr "Nhóm thứ 1, 2, 3"
+msgid "IMLOG2(\"ComplexNumber\")"
+msgstr "IMLOG2(\"Số_phức\")"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3149784\n"
-"1\n"
+"04060116.xhp\n"
+"hd_id3148768\n"
+"120\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
-msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"Nhóm thứ 1, 2, 3\">Nhóm thứ 1, 2, 3</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3145068\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3149536\n"
+"121\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Hãy ghi rõ thiết lập cho đến ba nhóm tổng phụ. Mỗi thẻ có bố trí trùng.</ahelp>"
+msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr "<item type=\"input\">=IMLOG2(\"1+j\")</item> trả về 0.50+1.13j (đã làm tròn)."
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3148797\n"
-"3\n"
+"04060116.xhp\n"
+"bm_id3145626\n"
"help.text"
-msgid "To insert subtotal values into a table:"
-msgstr "Để chèn vào một bảng các giá trị tổng phụ :"
+msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMPRODUCT</bookmark_value>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154908\n"
-"13\n"
+"04060116.xhp\n"
+"hd_id3145626\n"
+"122\n"
"help.text"
-msgid "Ensure that the columns of the table have labels."
-msgstr "Kiểm tra xem mỗi cột của bảng vẫn còn có nhãn."
+msgid "IMPRODUCT"
+msgstr "IMPRODUCT"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3153968\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3153545\n"
+"123\n"
"help.text"
-msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
-msgstr "Hãy lựa chọn bảng hay vùng bảng cho đó bạn muốn tính tổng phụ, sau đó chọn mục trình đơn <emph>Dữ liệu > Tổng phụ</emph>."
+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\">Kết quả là tích đến 29 số phức.</ahelp>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3161831\n"
-"5\n"
+"04060116.xhp\n"
+"hd_id3149388\n"
+"124\n"
"help.text"
-msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
-msgstr "Trong hộp <emph>Nhóm lại theo</emph>, lựa chọn cột vào đó bạn muốn thêm các tổng phụ."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3153188\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3149027\n"
+"125\n"
"help.text"
-msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
-msgstr "Trong hộp <emph>Tính tổng phụ</emph>, đánh dấu trong hộp chọn cho mỗi cột chứa các giá trị cần tính tổng phụ."
+msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
+msgstr "IMPRODUCT(\"Số_phức\"; \"Số_phức1\"; ...)"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3152460\n"
-"14\n"
+"04060116.xhp\n"
+"hd_id3153228\n"
+"127\n"
"help.text"
-msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
-msgstr "Trong hộp <emph>Dùng hàm</emph>, lựa chọn hàm cần dùng để tính tổng phụ."
+msgid "Example"
+msgstr "Ví dụ"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154321\n"
-"15\n"
+"04060116.xhp\n"
+"par_id3155815\n"
+"128\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
+msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> trả về 27+11j."
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3156441\n"
-"7\n"
+"04060116.xhp\n"
+"bm_id3147539\n"
"help.text"
-msgid "Group by"
-msgstr "Nhóm lại theo"
+msgid "<bookmark_value>IMREAL function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMREAL</bookmark_value>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154013\n"
-"8\n"
+"04060116.xhp\n"
+"hd_id3147539\n"
+"129\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_GROUP\">Lựa chọn cột cần dùng để điều khiển tiến trình tính tổng phụ. Nếu nội dung của cột đã chọn bị thay đổi, các tổng phụ được tự động tính lại.</ahelp>"
+msgid "IMREAL"
+msgstr "IMREAL"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3154943\n"
-"9\n"
+"04060116.xhp\n"
+"par_id3155372\n"
+"130\n"
"help.text"
-msgid "Calculate subtotals for"
-msgstr "Tính tổng phụ cho"
+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\">Kết quả là hệ số thật của một số phức.</ahelp>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3147125\n"
-"10\n"
+"04060116.xhp\n"
+"hd_id3154951\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_COLS\">Lựa chọn (những) cột chứa các giá trị cần tính tổng phụ.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3156283\n"
-"11\n"
+"04060116.xhp\n"
+"par_id3153927\n"
+"132\n"
"help.text"
-msgid "Use function"
-msgstr "Dùng hàm"
+msgid "IMREAL(\"ComplexNumber\")"
+msgstr "IMREAL(\"Số_phức\")"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3145647\n"
-"12\n"
+"04060116.xhp\n"
+"hd_id3155409\n"
+"134\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_FUNC\">Lưa chọn hàm toán học cần dùng để tính tổng phụ.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3155986\n"
+"135\n"
"help.text"
-msgid "Create Scenario"
-msgstr "Tạo kịch bản"
+msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr "<item type=\"input\">=IMREAL(\"1+3j\")</item> trả về 1."
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3156023\n"
-"1\n"
+"04060116.xhp\n"
+"bm_id3148431\n"
"help.text"
-msgid "Create Scenario"
-msgstr "Tạo kịch bản"
+msgid "<bookmark_value>IMSIN function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMSIN</bookmark_value>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3150541\n"
-"2\n"
+"04060116.xhp\n"
+"hd_id3148431\n"
+"136\n"
"help.text"
-msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
-msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Định nghĩa một kịch bản cho vùng trang tính đã chọn.</ahelp></variable>"
+msgid "IMSIN"
+msgstr "IMSIN"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10637\n"
+"04060116.xhp\n"
+"par_id3152591\n"
+"137\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">Kết quả là sin của một số phức.</ahelp>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
+"04060116.xhp\n"
+"hd_id3149822\n"
+"138\n"
"help.text"
-msgid "Name of scenario"
-msgstr "Tên của kịch bản"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3151041\n"
-"13\n"
+"04060116.xhp\n"
+"par_id3150387\n"
+"139\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Định nghĩa tên cho kịch bản. Hãy sử dụng một tên rõ ràng và duy nhất để dễ dàng phân biệt kịch bản này.</ahelp> Bạn cũng có thể sửa đổi một tên kịch bản trong <emph>Bộ điều hướng</emph>, thông qua mục trình đơn ngữ cảnh <emph>Thuộc tính</emph>."
+msgid "IMSIN(\"ComplexNumber\")"
+msgstr "IMSIN(\"Số_phức\")"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3153954\n"
-"14\n"
+"04060116.xhp\n"
+"hd_id3150613\n"
+"141\n"
"help.text"
-msgid "Comment"
-msgstr "Chú thích"
+msgid "Example"
+msgstr "Ví dụ"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3155411\n"
-"15\n"
+"04060116.xhp\n"
+"par_id3154310\n"
+"142\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Ghi rõ thêm thông tin về kịch bản. Thông tin này sẽ được hiển thị trong <link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link> khi bạn nhấn vào biểu tượng <emph>Kịch bản</emph> và chọn kịch bản đã muốn.</ahelp> Bạn cũng có thể sửa đổi thông tin này trong <emph>Bộ điều hướng</emph>, thông qua mục trình đơn ngữ cảnh <emph>Thuộc tính</emph>."
+msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+msgstr "<item type=\"input\">=IMSIN(\"3+4j\")</item> trả về 3.85+27.02j (đã làm tròn)."
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3145273\n"
-"16\n"
+"04060116.xhp\n"
+"bm_id3163826\n"
"help.text"
-msgid "Settings"
-msgstr "Thiết lập"
+msgid "<bookmark_value>IMSUB function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMSUB</bookmark_value>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3153364\n"
-"17\n"
+"04060116.xhp\n"
+"hd_id3163826\n"
+"143\n"
"help.text"
-msgid "This section is used to define some of the settings used in the scenario display."
-msgstr "Phần này được dùng để định nghĩa một số thiết lập được dùng khi hiển thị kịch bản."
+msgid "IMSUB"
+msgstr "IMSUB"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3145367\n"
-"18\n"
+"04060116.xhp\n"
+"par_id3149277\n"
+"144\n"
"help.text"
-msgid "Display border"
-msgstr "Hiển thị viền"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">Kết quả là hiệu của hai số phức.</ahelp>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3151073\n"
-"19\n"
+"04060116.xhp\n"
+"hd_id3149264\n"
+"145\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Tô sáng kịch bản trên bảng của bạn, dùng một viền. Màu của viền được ghi rõ trong trường bên phải tùy chọn này.</ahelp> Viền sẽ có một thanh tựa đề mà hiển thị tên của kịch bản cuối cùng. Nút bên phải viền kịch bản cung cấp một toàn cảnh của tất cả các kịch bản trong vùng này, nếu có nhiều kịch bản được định nghĩa. Bạn có thể chọn bất cứ kịch bản nào trong danh sách này, vô hạn."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149582\n"
-"20\n"
+"04060116.xhp\n"
+"par_id3149710\n"
+"146\n"
"help.text"
-msgid "Copy back"
-msgstr "Chép ngược"
+msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+msgstr "IMSUB(\"Số_phức1\"; \"Số_phức2\")"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3154942\n"
-"21\n"
+"04060116.xhp\n"
+"hd_id3155833\n"
+"148\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Sao chép vào kịch bản hoạt động các giá trị ô được bạn thay đổi. Không bật tùy chọn này thì kịch bản không thay đổi khi bạn thay đổi giá trị ô. Ứng xử của thiết lập <emph>Chép ngược</emph> phụ thuộc vào chức năng bảo vệ ô, bảo vệ trang tính, và <emph>Ngăn cản thay đổi</emph>.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149402\n"
-"22\n"
+"04060116.xhp\n"
+"par_id3150963\n"
+"149\n"
"help.text"
-msgid "Copy entire sheet"
-msgstr "Chép toàn bộ trang tính"
+msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> trả về 8+j."
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3146969\n"
-"23\n"
+"04060116.xhp\n"
+"bm_id3156312\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Sao chép toàn bộ trang tính vào một trang tính kịch bản bổ sung.</ahelp>"
+msgid "<bookmark_value>IMSUM function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMSUM</bookmark_value>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1075A\n"
+"04060116.xhp\n"
+"hd_id3156312\n"
+"150\n"
"help.text"
-msgid "Prevent changes"
-msgstr "Ngăn cản thay đổi"
+msgid "IMSUM"
+msgstr "IMSUM"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1075E\n"
+"04060116.xhp\n"
+"par_id3153215\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Ngăn cản thay đổi trong kịch bản hoạt động. Ứng xử của thiết lập <emph>Chép ngược</emph> phụ thuộc vào chức năng bảo vệ ô, bảo vệ trang tính, và <emph>Ngăn cản thay đổi</emph>.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">Kết quả là tổng đến 29 số phức.</ahelp>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10778\n"
+"04060116.xhp\n"
+"hd_id3156095\n"
+"152\n"
"help.text"
-msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
-msgstr "Bạn chỉ có thể thay đổi thuộc tính về kịch bản nếu tùy chọn <emph>Ngăn cản thay đổi</emph> không phải được bật, và nếu trang tính đó không phải được bảo vệ."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10780\n"
+"04060116.xhp\n"
+"par_id3152930\n"
+"153\n"
"help.text"
-msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
-msgstr "Bạn chỉ có thể chỉnh sửa giá trị ô nếu tùy chọn <emph>Ngăn cản thay đổi</emph> được bật, nếu tùy chọn <emph>Chép ngược</emph> không phải được bật, và nếu các ô không phải được bảo vệ."
+msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
+msgstr "IMSUM(\"Số_phức1\"; \"Số_phức2\"; ...)"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1078C\n"
+"04060116.xhp\n"
+"hd_id3154640\n"
+"155\n"
"help.text"
-msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
-msgstr "Bạn chỉ có thể thay đổi giá trị ô trong kịch bản và ghi lại về kịch bản nếu tùy chọn <emph>Ngăn cản thay đổi</emph> không phải được bật, nếu tùy chọn <emph>Chép ngược</emph> được bật, và nếu các ô không phải được bảo vệ."
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3147081\n"
+"156\n"
"help.text"
-msgid "Data Field Options"
-msgstr "Tùy chọn Trường Dữ liệu"
+msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> trả về 18+7j."
-#: 12090106.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"bm_id711386\n"
+"04060116.xhp\n"
+"bm_id3147570\n"
"help.text"
-msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
-msgstr "<bookmark_value>ẩn;trường dữ liệu khỏi phép tính trong Data Pilot</bookmark_value><bookmark_value>tùy chọn hiển thị trong Data Pilot</bookmark_value><bookmark_value>sắp xếp; tùy chọn trong Data Pilot</bookmark_value><bookmark_value>tùy chọn trường dữ liệu cho Data Pilot</bookmark_value>"
+msgid "<bookmark_value>IMSQRT function</bookmark_value>"
+msgstr "<bookmark_value>hàm IMSQRT</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10542\n"
+"04060116.xhp\n"
+"hd_id3147570\n"
+"167\n"
"help.text"
-msgid "Data Field Options"
-msgstr "Tùy chọn Trường Dữ liệu"
+msgid "IMSQRT"
+msgstr "IMSQRT"
-#: 12090106.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10546\n"
+"04060116.xhp\n"
+"par_id3156131\n"
+"168\n"
"help.text"
-msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
-msgstr "Bạn có khả năng ghi rõ thêm tùy chọn cho trường kiểu cột, hàng và dữ liệu trang trong <link href=\"text/scalc/01/12090105.xhp\">DataPilot</link>."
+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\">Kết quả là căn bậc hai của một số phức.</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10557\n"
+"04060116.xhp\n"
+"hd_id3145202\n"
+"169\n"
"help.text"
-msgid "Sort by"
-msgstr "Sắp xếp theo"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1055B\n"
+"04060116.xhp\n"
+"par_id3150760\n"
+"170\n"
"help.text"
-msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
-msgstr "<ahelp hid=\"1495387653\">Hãy lựa chọn trường dữ liệu theo đó bạn muốn sắp xếp các cột hay hàng.</ahelp>"
+msgid "IMSQRT(\"ComplexNumber\")"
+msgstr "IMSQRT(\"Số_phức\")"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1055E\n"
+"04060116.xhp\n"
+"hd_id3147268\n"
+"172\n"
"help.text"
-msgid "Ascending"
-msgstr "Tăng dần"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10562\n"
+"04060116.xhp\n"
+"par_id3152807\n"
+"173\n"
"help.text"
-msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384580\">Sắp xếp các giá trị từ nhỏ nhất lên lớn nhất. Nếu trường được chọn là trường cho đó hộp thoại được mở, thì các mục được sắp xếp theo tên. Nếu một trường dữ liệu được chọn, thì các mục được sắp xếp theo giá trị kết quả của trường dữ liệu được chọn.</ahelp>"
+msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr "<item type=\"input\">=IMSQRT(\"3+4i\")</item> trả về 2+1i."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10565\n"
+"04060116.xhp\n"
+"bm_id3154054\n"
"help.text"
-msgid "Descending"
-msgstr "Giảm dần"
+msgid "<bookmark_value>COMPLEX function</bookmark_value>"
+msgstr "<bookmark_value>hàm COMPLEX</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10569\n"
+"04060116.xhp\n"
+"hd_id3154054\n"
+"157\n"
"help.text"
-msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384581\">Sắp xếp các giá trị từ lớn nhất xuống nhỏ nhất. Nếu trường được chọn là trường cho đó hộp thoại được mở, thì các mục được sắp xếp theo tên. Nếu một trường dữ liệu được chọn, thì các mục được sắp xếp theo giá trị kết quả của trường dữ liệu được chọn.</ahelp>"
+msgid "COMPLEX"
+msgstr "COMPLEX"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1056C\n"
+"04060116.xhp\n"
+"par_id3156111\n"
+"158\n"
"help.text"
-msgid "Manual"
-msgstr "Bằng tay"
+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\">Kết quả là một số phức được trả về từ một hệ số thực và một hệ số ảo.</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10570\n"
+"04060116.xhp\n"
+"hd_id3154744\n"
+"159\n"
"help.text"
-msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
-msgstr "<ahelp hid=\"1495384582\">Sắp xếp các giá trị theo thứ tự bảng chữ cái (abc).</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10585\n"
+"04060116.xhp\n"
+"par_id3155999\n"
+"160\n"
"help.text"
-msgid "Display options"
-msgstr "Hiện các tùy chọn"
+msgid "COMPLEX(RealNum; INum; Suffix)"
+msgstr "COMPLEX(Số_thực; Ảo; Hậu_tố)"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10589\n"
+"04060116.xhp\n"
+"par_id3153626\n"
+"161\n"
"help.text"
-msgid "You can specify the display options for all row fields except for the last, innermost row field."
-msgstr "Bạn có khả năng ghi rõ tùy chọn cho tất cả các trường hàng, trừ trường hàng cuối cùng bên trong cùng."
+msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr "<emph>Số_phức</emph> là hệ số thực của số phức."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1058C\n"
+"04060116.xhp\n"
+"par_id3149135\n"
+"162\n"
"help.text"
-msgid "Layout"
-msgstr "Bố trí"
+msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
+msgstr "<emph>Ảo</emph> là hệ số ảo của số phức."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10590\n"
+"04060116.xhp\n"
+"par_id3155849\n"
+"163\n"
"help.text"
-msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr "<ahelp hid=\"1495387654\">Hãy lựa chọn chế độ bố trí cho trường trong hộp liệt kê.</ahelp>"
+msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgstr "<emph>Hậu_tố</emph> là hai tùy chọn: « i » hay « j »."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10593\n"
+"04060116.xhp\n"
+"hd_id3145659\n"
+"164\n"
"help.text"
-msgid "Empty line after each item"
-msgstr "Dòng trống phía sau mỗi mục"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090106.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10597\n"
+"04060116.xhp\n"
+"par_id3143229\n"
+"165\n"
"help.text"
-msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"1495385090\">Thêm một hàng rỗng phía sau dữ liệu cho mỗi mục trong bảng DataPilot.</ahelp>"
+msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> trả về 3+4j."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1059A\n"
+"04060116.xhp\n"
+"bm_id3155103\n"
"help.text"
-msgid "Show automatically"
-msgstr "Tự động hiện"
+msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm OCT2BIN</bookmark_value><bookmark_value>chuyển đổi;số bát phân sang số nhị phân</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1059E\n"
+"04060116.xhp\n"
+"hd_id3155103\n"
+"217\n"
"help.text"
-msgid "Displays the top or bottom nn items when you sort by a specified field."
-msgstr "Hiển thị nn mục trên hay dưới khi bạn sắp xếp theo một trường đã ghi rõ."
+msgid "OCT2BIN"
+msgstr "OCT2BIN"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A1\n"
+"04060116.xhp\n"
+"par_id3146898\n"
+"218\n"
"help.text"
-msgid "Show"
-msgstr "Hiện"
+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\">Kết quả là số nhị phân cho số bát phân được nhập vào.</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A5\n"
+"04060116.xhp\n"
+"hd_id3146088\n"
+"219\n"
"help.text"
-msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
-msgstr "<ahelp hid=\"1495385091\">Bật tính năng tự động hiện.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A8\n"
+"04060116.xhp\n"
+"par_id3154303\n"
+"220\n"
"help.text"
-msgid "items"
-msgstr "mục"
+msgid "OCT2BIN(Number; Places)"
+msgstr "OCT2BIN(Số; Lần_số)"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105AC\n"
+"04060116.xhp\n"
+"par_id3156013\n"
+"221\n"
"help.text"
-msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr "<ahelp hid=\"1495390209\">Hãy nhập số tối đa các mục bạn muốn tự động hiển thị.</ahelp>"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là số bát phân. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105AF\n"
+"04060116.xhp\n"
+"par_id3153984\n"
+"222\n"
"help.text"
-msgid "From"
-msgstr "Từ"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105B3\n"
+"04060116.xhp\n"
+"hd_id3147493\n"
+"223\n"
"help.text"
-msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
-msgstr "<ahelp hid=\"1495387655\">Hiển thị các mục trên hay dưới theo thứ tự sắp xếp đã ghi rõ.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105B6\n"
+"04060116.xhp\n"
+"par_id3147260\n"
+"224\n"
"help.text"
-msgid "Using field"
-msgstr "Dùng trường"
+msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+msgstr "<item type=\"input\">=OCT2BIN(3;3)</item> trả về 011."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105BA\n"
+"04060116.xhp\n"
+"bm_id3152791\n"
"help.text"
-msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
-msgstr "<ahelp hid=\"1495387656\">Hãy lựa chọn trường dữ liệu theo đó cần sắp xếp dữ liệu.</ahelp>"
+msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm OCT2DEC</bookmark_value><bookmark_value>chuyển đổi;số bát phân sang số thập phân</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105BD\n"
+"04060116.xhp\n"
+"hd_id3152791\n"
+"225\n"
"help.text"
-msgid "Hide items"
-msgstr "Ẩn mục"
+msgid "OCT2DEC"
+msgstr "OCT2DEC"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C1\n"
+"04060116.xhp\n"
+"par_id3149199\n"
+"226\n"
"help.text"
-msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
-msgstr "<ahelp hid=\"59010\">Hãy lựa chọn những mục cần ẩn khỏi phép tính.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">Kết quả là số thập phân cho số bát phân được nhập vào.</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C4\n"
+"04060116.xhp\n"
+"hd_id3159337\n"
+"227\n"
"help.text"
-msgid "Hierarchy"
-msgstr "Hệ đẳng cấp"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090106.xhp
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153902\n"
+"228\n"
+"help.text"
+msgid "OCT2DEC(Number)"
+msgstr "OCT2DEC(Số)"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155326\n"
+"229\n"
+"help.text"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là số bát phân. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154698\n"
+"230\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154930\n"
+"231\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
+msgstr "<item type=\"input\">=OCT2DEC(144)</item> trả về 100."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155391\n"
+"help.text"
+msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>hàm OCT2HEX</bookmark_value><bookmark_value>chuyển đổi;số bát phân sang số thập lục</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155391\n"
+"232\n"
+"help.text"
+msgid "OCT2HEX"
+msgstr "OCT2HEX"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148831\n"
+"233\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">Kết quả là số thập lục cho số bát phân được nhập vào.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146988\n"
+"234\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150523\n"
+"235\n"
+"help.text"
+msgid "OCT2HEX(Number; Places)"
+msgstr "OCT2HEX(Số; Lần_số)"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159162\n"
+"236\n"
+"help.text"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Số</emph> là số bát phân. Số có thể chứa nhiều nhất 10 lần số. Bit quan trọng nhất là bit dấu (+/-), các bit khác trả về giá trị. Số âm được nhập dạng phần bù của hai."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3145420\n"
+"237\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Lần_số</emph> là số lần số trong số kết xuất."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150504\n"
+"238\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148802\n"
+"239\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> trả về 0064."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>hàm CONVERT_ADD</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148446\n"
+"175\n"
+"help.text"
+msgid "CONVERT_ADD"
+msgstr "CONVERT_ADD"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154902\n"
+"176\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Chuyển đổi một giá trị từ một đơn vị đo sang giá trị tương ứng theo một đơn vị đo khác.</ahelp> Hãy nhập những đơn vị đo một cách trực tiếp dưới dạng văn bản, nằm giữa dấu nháy kép hay dưới dạng một tham chiếu. Nếu bạn nhập những đơn vị đo vào ô, chúng phải tương ứng chính xác với danh sách theo đây, mà phân biệt chữ hoa/thường. Ví dụ, để nhập một l chữ thường (đại diện đơn vị đo lít) vào ô, bạn cần phải gõ một dấu lược « ' », phía trước chữ « l »."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153055\n"
+"177\n"
+"help.text"
+msgid "Property"
+msgstr "Thuộc tính"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147234\n"
+"178\n"
+"help.text"
+msgid "Units"
+msgstr "Đơn vị"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147512\n"
+"179\n"
+"help.text"
+msgid "Weight"
+msgstr "Cân nặng"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148476\n"
+"180\n"
+"help.text"
+msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155361\n"
+"181\n"
+"help.text"
+msgid "Length"
+msgstr "Độ dài"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148925\n"
+"182\n"
+"help.text"
+msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
+msgstr ""
+
+#: 04060116.xhp
#, fuzzy
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C8\n"
+"04060116.xhp\n"
+"par_id3158429\n"
+"183\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\">Hãy lựa chọn hộ đẳng cấp cần dùng. DataPilot phải dựa vào một dữ liệu nguồn bên ngoài mà chứa hệ đẳng cấp dữ liệu.</ahelp>"
+msgid "Time"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThời gian"
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3150707\n"
+"184\n"
"help.text"
-msgid "Recalculate"
-msgstr "Tính lại"
+msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
+msgstr ""
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"bm_id3157909\n"
+"04060116.xhp\n"
+"par_id3153238\n"
+"185\n"
"help.text"
-msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
-msgstr "<bookmark_value>tính lại;mọi công thức trên trang tính</bookmark_value><bookmark_value>công thức; tính lại bằng tay</bookmark_value><bookmark_value>nội dung ô; tính lại</bookmark_value>"
+msgid "Pressure"
+msgstr "Áp suất"
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"hd_id3157909\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3166437\n"
+"186\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
-msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Tính lại\">Tính lại</link>"
+msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
+msgstr ""
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id3154758\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3152944\n"
+"187\n"
"help.text"
-msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgid "Force"
+msgstr "Lực"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155582\n"
+"188\n"
+"help.text"
+msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
msgstr ""
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id315475899\n"
+"04060116.xhp\n"
+"par_id3153686\n"
+"189\n"
"help.text"
-msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgid "Energy"
+msgstr "Năng lượng"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153386\n"
+"190\n"
+"help.text"
+msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
msgstr ""
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id3150793\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3154100\n"
+"191\n"
"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
-msgstr "Một khi tài liệu tài liệu tính lại, sự hiển thị được cập nhật. Bất cứ đồ thị nào trên trang tính đó sẽ cũng được vẽ lại."
+msgid "Power"
+msgstr "Năng xuất"
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id315475855\n"
+"04060116.xhp\n"
+"par_id3149915\n"
+"192\n"
"help.text"
-msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3148988\n"
+"193\n"
"help.text"
-msgid "Sheet"
-msgstr "Trang tính"
+msgid "Field strength"
+msgstr "Cường độ trường"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"bm_id1245460\n"
+"04060116.xhp\n"
+"par_id3148616\n"
+"194\n"
"help.text"
-msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>bố trí văn bản phức tạp (CTL);trang tính ghi từ bên trái sang phải</bookmark_value><bookmark_value>trang tính;trái sang phải</bookmark_value><bookmark_value>văn bản ghi từ bên trái sang phải;bảng tính</bookmark_value>"
+msgid "<emph>T</emph>, <emph>ga</emph>"
+msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155923\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3151120\n"
+"195\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Trang tính\">Trang tính</link>"
+msgid "Temperature"
+msgstr "Nhiệt độ"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3154758\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3148659\n"
+"196\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt tên trang tính và hiển thị hay ẩn những trang tính đã chọn.</ahelp>"
+msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
+msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3154610\n"
+"197\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
-msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Thay tên\">Thay tên</link>"
+msgid "Volume"
+msgstr "Thể tích"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145787\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3149423\n"
+"198\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Hiện\">Hiện</link>"
+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 ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150542\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3149244\n"
+"199\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 "Nếu một trang tính đã bị ẩn, có mở hộp thoại <emph>Hiện trang tính</emph> mà cho phép bạn lựa chọn một trang tính cần hiển thị lại."
+msgid "Area"
+msgstr "Diện tích"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_idN10656\n"
+"04060116.xhp\n"
+"par_id3150425\n"
+"200\n"
"help.text"
-msgid "Right-To-Left"
-msgstr "Phải sang Trái"
+msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
+msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_idN1065A\n"
+"04060116.xhp\n"
+"par_id3150629\n"
+"201\n"
"help.text"
-msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".uno:SheetRightToLeft\">Chuyển đổi hướng của trang tính hiện tại sang Phải sang Trái nếu chức năng hỗ trợ <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> (bố trí văn bản phức tạp) đã được bật.</ahelp>"
+msgid "Speed"
+msgstr "Tốc độ"
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3159246\n"
+"202\n"
"help.text"
-msgid "Hide"
-msgstr "Ẩn"
+msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"bm_id3147265\n"
+"04060116.xhp\n"
+"par_id3150789\n"
+"201\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; ẩn hàm</bookmark_value><bookmark_value>ẩn; hàng</bookmark_value><bookmark_value>ẩn; cột</bookmark_value><bookmark_value>ẩn; trang tính</bookmark_value><bookmark_value>trang tính;ẩn</bookmark_value><bookmark_value>cột;ẩn</bookmark_value><bookmark_value>hàng;ẩn</bookmark_value>"
+msgid "Information"
+msgstr "Thông tin"
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3147265\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3159899\n"
+"202\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
-msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Ẩn\">Ẩn</link>"
+msgid "<emph>bit</emph>, <emph>byte</emph>"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3156281\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3143277\n"
+"203\n"
"help.text"
-msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
-msgstr "<ahelp hid=\".uno:Hide\">Ẩn những cột, hàng hay trang tính riêng đã được chọn.</ahelp>"
+msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3148645\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3148422\n"
+"204\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 "Hãy lựa chọn những hàng hay cột bạn muốn ẩn, sau đó chọn lệnh <emph>Định dạng > Hàng > Ẩn</emph> hay <emph>Định dạng > Cột > Ẩn</emph>."
+msgid "Prefix"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3147427\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3148423\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 "Bạn có thể ẩn một trang tính bằng cách lựa chọn trang tính đó, sau đó chọn lệnh <emph>Định dạng > Trang tính > Ẩn</emph>. Trang tính bị ẩn thì không phải được in nếu nó không nằm bên trong một <link href=\"text/scalc/01/05080000.xhp\" name=\"phạm vi in\">phạm vi in</link>."
+msgid "Multiplier"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153157\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3149490\n"
"help.text"
-msgid "A break in the row or column header indicates whether the row or column is hidden."
-msgstr "Một chỗ ngắt trong phần đầu của cột hay hàng thì ngụ ý nếu cột hay hàng bị ẩn."
+msgid "Y (yotta)"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3145251\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3149931\n"
"help.text"
-msgid "To display hidden rows, columns or sheets"
-msgstr "Để hiển thị cột, hàng hay trang tính đã bị ẩn"
+msgid "10^24"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id8337046\n"
+"04060116.xhp\n"
+"par_id3149491\n"
"help.text"
-msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
-msgstr "Hãy lựa chọn phạm vi mà chứa các đối tượng bị ẩn. Bạn cũng có thể sử dụng hộp ở góc bên trên hàng 1 và bên cạnh cột A. Đối với trang tính, không cần làm bước này."
+msgid "Z (zetta)"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id5532090\n"
+"04060116.xhp\n"
+"par_id3149932\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
-msgstr "Chọn lệnh <link href=\"text/scalc/01/05030400.xhp\" name=\"Định dạng > Hàng/Cột > Hiện\">Định dạng > Hàng/Cột > Hiện</link> hay <link href=\"text/scalc/01/05050300.xhp\" name=\"Định dạng > Trang tính > Hiện\">Định dạng > Trang tính > Hiện</link>."
+msgid "10^21"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3149492\n"
"help.text"
-msgid "Select Data Source"
-msgstr "Chọn nguồn dữ liệu"
+msgid "E (exa)"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3143268\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3149933\n"
"help.text"
-msgid "Select Data Source"
-msgstr "Chọn nguồn dữ liệu"
+msgid "10^18"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3148552\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3149493\n"
"help.text"
-msgid "Select the database and the table or query containing the data that you want to use."
-msgstr "Lựa chọn cơ sở dữ liệu và bảng hay truy vấn chứa dữ liệu cần dùng."
+msgid "P (peta)"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3154140\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3149934\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "10^15"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3125863\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3149494\n"
"help.text"
-msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
+msgid "T (tera)"
msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3151041\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3149935\n"
"help.text"
-msgid "Database"
-msgstr "Cơ sở dữ liệu"
+msgid "10^12"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3156424\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3149495\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Hãy lựa chọn cơ sở dữ liệu mà chứa nguồn dữ liệu cần dùng.</ahelp>"
+msgid "G (giga)"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3145364\n"
-"7\n"
+"04060116.xhp\n"
+"par_id3149936\n"
"help.text"
-msgid "Data source"
-msgstr "Nguồn dữ liệu"
+msgid "10^9"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3149260\n"
-"8\n"
+"04060116.xhp\n"
+"par_id3149496\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Hãy lựa chọn nguồn dữ liệu bạn muốn dùng.</ahelp>"
+msgid "M (mega)"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3147428\n"
-"9\n"
+"04060116.xhp\n"
+"par_id3149937\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "10^6"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3150010\n"
-"10\n"
+"04060116.xhp\n"
+"par_id3149497\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Nhấn vào kiểu nguồn cho nguồn dữ liệu đã chọn.</ahelp> Bạn có thể chọn trong bốn kiểu nguồn: « Bảng », « Truy vấn », « SQL » hay « SQL sở hữu »."
+msgid "k (kilo)"
+msgstr ""
-#: 12090101.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3147348\n"
-"11\n"
+"04060116.xhp\n"
+"par_id3149938\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=\"Hộp thoại DataPilot\">Hộp thoại DataPilot</link>"
+msgid "10^3"
+msgstr ""
-#: 02200000.xhp
+#: 04060116.xhp
msgctxt ""
-"02200000.xhp\n"
+"04060116.xhp\n"
+"par_id3149498\n"
+"help.text"
+msgid "h (hecto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149939\n"
+"help.text"
+msgid "10^2"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149499\n"
+"help.text"
+msgid "e (deca)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149940\n"
+"help.text"
+msgid "10^1"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149500\n"
+"help.text"
+msgid "d (deci)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3143940\n"
+"help.text"
+msgid "10^-1"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149501\n"
+"help.text"
+msgid "c (centi)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149941\n"
+"help.text"
+msgid "10^-2"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149502\n"
+"help.text"
+msgid "m (milli)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149942\n"
+"help.text"
+msgid "10^-3"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149503\n"
+"help.text"
+msgid "u (micro)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149943\n"
+"help.text"
+msgid "10^-6"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149504\n"
+"help.text"
+msgid "n (nano)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149944\n"
+"help.text"
+msgid "10^-9"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149505\n"
+"help.text"
+msgid "p (pico)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149945\n"
+"help.text"
+msgid "10^-12"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149506\n"
+"help.text"
+msgid "f (femto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149946\n"
+"help.text"
+msgid "10^-15"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149507\n"
+"help.text"
+msgid "a (atto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149947\n"
+"help.text"
+msgid "10^-18"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149508\n"
+"help.text"
+msgid "z (zepto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149948\n"
+"help.text"
+msgid "10^-21"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149509\n"
+"help.text"
+msgid "y (yocto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149949\n"
+"help.text"
+msgid "10^-24"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903061174\n"
+"help.text"
+msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
+msgstr "Các đơn vị thông tin \"bit\" và \"byte\" có thể được dẫn trước bởi một trong các tiền tố IEC 60027-2 / IEEE 1541:"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090966\n"
+"help.text"
+msgid "ki kibi 1024"
+msgstr "ki kibi 1024"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090958\n"
+"help.text"
+msgid "Mi mebi 1048576"
+msgstr "Mi mebi 1048576"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090936\n"
+"help.text"
+msgid "Gi gibi 1073741824"
+msgstr "Gi gibi 1073741824"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090975\n"
+"help.text"
+msgid "Ti tebi 1099511627776"
+msgstr "Ti tebi 1099511627776"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090930\n"
+"help.text"
+msgid "Pi pebi 1125899906842620"
+msgstr "Pi pebi 1125899906842620"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091070\n"
+"help.text"
+msgid "Ei exbi 1152921504606850000"
+msgstr "Ei exbi 1152921504606850000"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091097\n"
+"help.text"
+msgid "Zi zebi 1180591620717410000000"
+msgstr "Zi zebi 1180591620717410000000"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091010\n"
+"help.text"
+msgid "Yi yobi 1208925819614630000000000"
+msgstr "Yi yobi 1208925819614630000000000"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146125\n"
+"209\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153695\n"
+"210\n"
+"help.text"
+msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+msgstr "CONVERT_ADD(Số; \"Từ_đơn_vị\"; \"Đến_đơn_vị\")"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147522\n"
+"211\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr "<emph>Số</emph> là số cần chuyển đổi."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154472\n"
+"212\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr "<emph>Từ_đơn_vị</emph> là đơn vị từ đó cần chuyển đổi."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153790\n"
+"213\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr "<emph>ToUnit</emph> là đơn vị mà phép chuyển đổi thực hiện. Các đơn vị phải cùng loại."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3156270\n"
+"214\n"
+"help.text"
+msgid "Examples"
+msgstr "Ví dụ"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156336\n"
+"215\n"
+"help.text"
+msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+msgstr "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\")</item> trả về (làm tròn thành hai lần số) 10.14. 10 HP bằng 10.14 PS."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154834\n"
+"216\n"
+"help.text"
+msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgstr "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\")</item> trả về (làm tròn thành hai lần số) 6.21. 10 kilômet bằng 6.21 lý. Chữ k là ký tự tiền tố được phép cho thừa số 10³."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147096\n"
+"help.text"
+msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgstr "<bookmark_value>hàm FACTDOUBLE</bookmark_value><bookmark_value>giai thừa;số tăng dần theo hai</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147096\n"
+"36\n"
+"help.text"
+msgid "FACTDOUBLE"
+msgstr "FACTDOUBLE"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151309\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Trả về giai thừa đôi của một số.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154666\n"
+"38\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155121\n"
+"39\n"
+"help.text"
+msgid "FACTDOUBLE(Number)"
+msgstr "FACTDOUBLE(Số)"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3158440\n"
+"40\n"
+"help.text"
+msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
+msgstr "Trả về <emph>Số</emph><emph>!!</emph>, giai thừa đôi của <emph>Số</emph>, mà <emph>Số</emph> là một số nguyên lớn hơn hay bằng 0."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2480849\n"
+"help.text"
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr "Đối với các số chẵn, hàm FACTDOUBLE(n) trả về:"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4181951\n"
+"help.text"
+msgid "2*4*6*8* ... *n"
+msgstr "2*4*6*8* ... *n"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2927335\n"
+"help.text"
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr "Đối với các số lẻ, hàm FACTDOUBLE(n) trả về:"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2107303\n"
+"help.text"
+msgid "1*3*5*7* ... *n"
+msgstr "1*3*5*7* ... *n"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4071779\n"
+"help.text"
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr "FACTDOUBLE(0) trả về 1 theo định nghĩa."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154622\n"
+"42\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id7844477\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr "<item type=\"input\">=FACTDOUBLE(5)</item> trả về 15."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154116\n"
+"43\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr "<item type=\"input\">=FACTDOUBLE(6)</item> trả về 48."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id6478469\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr "<item type=\"input\">=FACTDOUBLE(0)</item> trả về 1."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet"
-msgstr "Bảng"
+msgid "Financial Functions Part Three"
+msgstr "Hàm Tài Chính (Phần 3)"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3146794\n"
+"04060118.xhp\n"
+"hd_id3146780\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Bảng\">Bảng</link>"
+msgid "Financial Functions Part Three"
+msgstr "Hàm Tài Chính (Phần 3)"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id3149456\n"
-"2\n"
+"04060118.xhp\n"
+"bm_id3145112\n"
"help.text"
-msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
-msgstr "<ahelp hid=\".\">Các lệnh sửa toàn bộ bảng.</ahelp>"
+msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
+msgstr "<bookmark_value>hàm ODDFPRICE</bookmark_value><bookmark_value>giá;chứng khoán có lãi suất đầu tiên không đều đặn</bookmark_value>"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3150792\n"
-"3\n"
+"04060118.xhp\n"
+"hd_id3145112\n"
+"71\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
-msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Di chuyển/Sao chép\">Chuyển/Chép</link>"
+msgid "ODDFPRICE"
+msgstr "ODDFPRICE"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3153968\n"
-"4\n"
+"04060118.xhp\n"
+"par_id3147250\n"
+"72\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
-msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Chọn\">Chọn</link>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Tính giá mỗi 100 đơn vị tiền tệ mệnh giá của một chứng khoán, nếu ngày trả tiền lãi đầu tiên không xảy ra đều đăn.</ahelp>"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3163708\n"
-"5\n"
+"04060118.xhp\n"
+"hd_id3153074\n"
+"73\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Xoá\">Xoá</link>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3163733308\n"
+"04060118.xhp\n"
+"par_id3146098\n"
+"74\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Dữ kiện\">Dữ kiện</link>"
+msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "ODDFPRICE(Thanh_toán; Đến_hạn; Cấp; Phiếu_lãi_đầu; Lãi_suất; Lợi; Trả_hết; Tần_số; Cơ_bản)"
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3153337\n"
+"75\n"
"help.text"
-msgid "AutoInput"
-msgstr "Tự động Nhập"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"bm_id2486037\n"
+"04060118.xhp\n"
+"par_id3149051\n"
+"76\n"
"help.text"
-msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
-msgstr "<bookmark_value>nhập mục dùng chức năng Tự động Nhập</bookmark_value><bookmark_value>chữ hoa; chức năng Tự động Nhập</bookmark_value>"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3148492\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3147297\n"
+"77\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tự động Nhập\">Tự động Nhập</link>"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Cấp</emph> là ngày tháng đã cấp chứng khoán đó."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"04060118.xhp\n"
+"par_id3150393\n"
+"78\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
-msgstr "<ahelp hid=\".uno:AutoComplete\">Bật/tắt chức năng Tự động Nhập, mà tự động điền nốt mục nhập, dựa vào các mục nhập trong cùng một cột.</ahelp> Cột được quét đến số tối đa là 2000 ô bảng hay 200 chuỗi khác nhau."
+msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
+msgstr "<emph>Phiếu_lãi_đầu</emph> là ngày trả tiền lãi thứ nhất của chứng khoán."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3156422\n"
-"8\n"
+"04060118.xhp\n"
+"par_id3147402\n"
+"79\n"
"help.text"
-msgid "The completion text is highlighted."
-msgstr "Chuỗi văn bản điền nốt cũng được tô sáng."
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN1065D\n"
+"04060118.xhp\n"
+"par_id3151387\n"
+"80\n"
"help.text"
-msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
-msgstr "Để đồng ý với chuỗi văn bản được điền nốt, bấm phím <item type=\"keycode\">Enter</item> hay một phím con trỏ."
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Lợi</emph> là tổng lợi tức hàng năm của chứng khoán."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10665\n"
+"04060118.xhp\n"
+"par_id3153023\n"
+"81\n"
"help.text"
-msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
-msgstr "Để phụ thêm chuỗi văn bản, hoặc chỉnh sửa chuỗi điền nốt, bấm phím chức năng <item type=\"keycode\">F2</item>."
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN1066D\n"
+"04060118.xhp\n"
+"par_id3150539\n"
+"82\n"
"help.text"
-msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3157871\n"
+"help.text"
+msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr "<bookmark_value>hàm ODDFYIELD</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3157871\n"
+"87\n"
+"help.text"
+msgid "ODDFYIELD"
+msgstr "ODDFYIELD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147414\n"
+"88\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Tính lợi tức của một chứng khoán nếu ngày trả tiền lãi thứ nhất không xảy ra đều đặn.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150651\n"
+"89\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152982\n"
+"90\n"
+"help.text"
+msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "ODDFYIELD(Thanh_toán; Đến_hạn; Cấp; Phiếu_lãi_đầu; Lãi_suất; Giá; Trả_hết; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3157906\n"
+"91\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150026\n"
+"92\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149012\n"
+"93\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Cấp</emph> là ngày tháng đã cấp chứng khoán đó."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148725\n"
+"94\n"
+"help.text"
+msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
+msgstr "<emph>Phiếu_lãi_đầu</emph> là kỳ trả tiền lãi thứ nhất của chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150465\n"
+"95\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146940\n"
+"96\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Giá</emph> là giá của chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149893\n"
+"97\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148888\n"
+"98\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3153933\n"
+"help.text"
+msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr "<bookmark_value>hàm ODDLPRICE</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153933\n"
+"103\n"
+"help.text"
+msgid "ODDLPRICE"
+msgstr "ODDLPRICE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145145\n"
+"104\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Tính giá mỗi 100 đơn vị tiền tệ mệnh giá của một chứng khoán, nếu ngày trả tiền lãi cuối cùng không xảy ra đều đặn.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3152784\n"
+"105\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155262\n"
+"106\n"
+"help.text"
+msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "ODDLPRICE(Thanh_toán; Đến_hạn; Phiếu_lãi_cuối; Lãi_suất; Lợi; Trả_hết; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149689\n"
+"107\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148753\n"
+"108\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150861\n"
+"109\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>Phiếu_lãi_cuối</emph> là ngày trả tiền lãi cuối cùng của chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155831\n"
+"110\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153328\n"
+"111\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Lợi</emph> là tổng lợi tức hàng năm của chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149186\n"
+"112\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149726\n"
+"113\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153111\n"
+"114\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152999\n"
+"115\n"
+"help.text"
+msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Ngày thanh toán: ngày 7, tháng 2/1999; ngày đến hạn: ngày 15, tháng 6/1999; phiếu lãi cuối cùng: ngày 15, tháng 10/1998. Lãi suất: 3,75 phần trăm; lợi tức: 4,05 phần trăm; giá trị trả hết: 100 đơn vị tiền tệ; tần số trả tiền: nửa năm (2); cơ bản: 0."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148567\n"
+"116\n"
+"help.text"
+msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
+msgstr "Giá mỗi 100 đơn vị tiền tệ của một chứng khoán, mà có một ngày trả tiền lãi cuối cùng không đều đặn, được tính như theo đây:"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150332\n"
+"117\n"
+"help.text"
+msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgstr "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) trả về 99.87829."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3153564\n"
+"help.text"
+msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr "<bookmark_value>hàm ODDLYIELD</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153564\n"
+"118\n"
+"help.text"
+msgid "ODDLYIELD"
+msgstr "ODDLYIELD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158002\n"
+"119\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Tính lợi tức của một chứng khoán nếu ngày trả tiền lãi cuối cùng không xảy ra đều đặn.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147366\n"
+"120\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150018\n"
+"121\n"
+"help.text"
+msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "ODDLYIELD(Thanh_toán; Đến_hạn; Phiếu_lãi_đầu; Lãi_suất; Giá; Trả_hết; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159132\n"
+"122\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150134\n"
+"123\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145245\n"
+"124\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>Phiếu_lãi_cuối</emph> là ngày trả tiền lãi cuối cùng của chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151014\n"
+"125\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149003\n"
+"126\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Giá</emph> là giá của chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148880\n"
+"127\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155622\n"
+"128\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3145303\n"
+"129\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145350\n"
+"130\n"
+"help.text"
+msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Ngày thanh toán: ngày 20, tháng 4/1999; ngày đến hạn: ngày 15, tháng 6/1999; phiếu lãi cuối: 3,75 phần trăm; giá: 99,875 đơn vị tiền tệ; giá trị trả hết: 100 đơn vị tiền tệ; tần số trả tiền: nửa năm (2); cơ bản: 0."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3157990\n"
+"131\n"
+"help.text"
+msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+msgstr "Lợi tức của chứng khoán, mà có một ngày trả tiền lãi cuối cùng không đều đặn, được tính như theo đây:"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150572\n"
+"132\n"
+"help.text"
+msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+msgstr "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) trả về 0.044873 hay 4.4873%."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148768\n"
+"help.text"
+msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
+msgstr "<bookmark_value>tính;khấu hao tỷ lệ biến đổi</bookmark_value><bookmark_value>khấu hao;tỷ lệ biến đổi</bookmark_value><bookmark_value>hàm VDB</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148768\n"
+"222\n"
+"help.text"
+msgid "VDB"
+msgstr "VDB"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154636\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VDB\">Trả về khấu hao của một tài sản trong một thời kỳ đã ghi rõ hay thời kỳ bộ phận, dùng phương pháp kết toán giảm biến đổi.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155519\n"
+"224\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149025\n"
+"225\n"
+"help.text"
+msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
+msgstr "VDB(Giá; Thanh_lý; Kỳ_hạn; S; Cuối; Nhân_tố; Kiểu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150692\n"
+"226\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial value of an asset."
+msgstr "<emph>Giá</emph> là giá đầu tiên của một tài sản."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155369\n"
+"227\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Thanh_lý</emph> là giá trị của một tài sản khi kết thúc thời kỳ khấu hao."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154954\n"
+"228\n"
+"help.text"
+msgid "<emph>Life</emph> is the depreciation duration of the asset."
+msgstr "<emph>Kỳ_hạn</emph> là tuổi thọ khấu hao của tài sản."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152817\n"
+"229\n"
+"help.text"
+msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
+msgstr "<emph>S</emph> là khi bắt đầu khấu hao. Phải được nhập vào theo cùng một đơn vị ngày tháng với tuổi thọ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153221\n"
+"230\n"
+"help.text"
+msgid "<emph>End</emph> is the end of the depreciation."
+msgstr "<emph>Cuối</emph> là khi kết thúc khối hao."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147536\n"
+"231\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+msgstr "<emph>Nhân_tố</emph> (tùy chọn) là hệ số khấu hao. Nhân_tố=2 là khấu hao tỷ lệ đôi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154865\n"
+"232\n"
+"help.text"
+msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+msgstr "<emph>Kiểu</emph> là một tham số còn tùy chọn. Kiểu=1 có nghĩa là chuyển đổi sang khấu hao theo đường thẳng. Kiểu=0 thì không chuyển đổi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10A0D\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148429\n"
+"233\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153927\n"
+"234\n"
+"help.text"
+msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
+msgstr "Khấu hao tỷ lệ đôi kết toán giảm trong một thời kỳ là gì nếu giá đầu tiên là 35.000 đơn vị tiền tệ, và giá trị ở kết thúc khấu hao là 7.500 đơn vị tiền tệ? Thời kỳ khấu hao là 3 năm. Có tính tiến trình khấu hao từ kỳ thứ 10 đến kỳ thứ 20."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155991\n"
+"235\n"
+"help.text"
+msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+msgstr "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 đơn vị tiền tệ. Khấu hao giữa kỳ thứ 10 và kỳ thứ 20 là 8.603,80 đơn vị tiền tệ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3147485\n"
+"help.text"
+msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
+msgstr "<bookmark_value>tính;nội suất sinh lợi, trả tiền không đều đặn</bookmark_value><bookmark_value>nội suất sinh lợi;trả tiền không đều đặn</bookmark_value><bookmark_value>hàm XIRR</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147485\n"
+"193\n"
+"help.text"
+msgid "XIRR"
+msgstr "XIRR"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145614\n"
+"194\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Tính nội suất sinh lợi với một danh sách sự trả tiền mà xảy ra vào các ngày tháng khác nhau.</ahelp> Phép tính này dựa nào 356 ngày trong mỗi năm, thì bỏ qua năm nhuận."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10E62\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the IRR function."
+msgstr "Nếu trả tiền sau mỗi khoảng đều đặn, hãy sử dụng hàm IRR."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3146149\n"
+"195\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149826\n"
+"196\n"
+"help.text"
+msgid "XIRR(Values; Dates; Guess)"
+msgstr "XIRR(Giá_trị; Ngày; Đoán)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3163821\n"
+"197\n"
+"help.text"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+msgstr "<emph>Giá_trị</emph> và <emph>Ngày</emph> tham chiếu đến một dãy các sự trả tiền và một dãy giá trị này tháng tương ứng. Cặp ngày thứ nhất xác định đầu của lịch trả. Các giá trị ngày khác phải nằm sau, nhưng không cần theo thứ tự. Dãy các giá trị phải chứa ít nhất một giá trị âm và một giá trị dương (tiền nhận và tiền cọc)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149708\n"
+"198\n"
+"help.text"
+msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
+msgstr "<emph>Đoán</emph> (tùy chọn) là một sự đoán có thể được nhập vào về nội suất sinh lợi. Mặc định là 10%."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3145085\n"
+"199\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149273\n"
+"200\n"
+"help.text"
+msgid "Calculation of the internal rate of return for the following five payments:"
+msgstr "Phép tính nội suất sinh lợi cho năm sự trả tiền theo đây:"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155838\n"
+"305\n"
+"help.text"
+msgid "A"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10679\n"
+"04060118.xhp\n"
+"par_id3152934\n"
+"306\n"
"help.text"
-msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgid "B"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150439\n"
-"3\n"
+"04060118.xhp\n"
+"par_id3154638\n"
+"307\n"
"help.text"
-msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
-msgstr "Trong khi bạn gõ công thức dùng ký tự tương ứng với mục nhập trước, một Gợi ý Trợ giúp sẽ xuất hiện, liệt kê 10 hàm vừa dùng trong <emph>Trợ lý Hàm</emph>, từ tất cả các tên phạm vi đã xác định, từ tất cả các tên phạm vi cơ sở dữ liệu, và từ nội dung của tất cả các phạm vi nhãn."
+msgid "C"
+msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153363\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3147083\n"
+"308\n"
"help.text"
-msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
-msgstr "Chức năng Tự động Nhập phân biệt chữ hoa/thường. Ví dụ, nếu bạn đã gõ « Tổng » vào một ô nào đó, bạn không thể gõ « tổng » vào ô khác cùng cột đến khi tắt Tự động Nhập."
+msgid "1"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3151187\n"
+"309\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Gạch nối từ"
+msgid "2001-01-01"
+msgstr "2001-01-01"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"bm_id3159399\n"
+"04060118.xhp\n"
+"par_id3145212\n"
+"201\n"
"help.text"
-msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>tự động gạch nối từ trong bảng tính</bookmark_value><bookmark_value>gạch nối từ; trong bảng tính</bookmark_value><bookmark_value>âm tiết trong bảng tính</bookmark_value>"
+msgid "-<item type=\"input\">10000</item>"
+msgstr "-<item type=\"input\">10000</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3159399\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3146856\n"
+"202\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Gạch nối từ"
+msgid "<item type=\"input\">Received</item>"
+msgstr "<item type=\"input\">Nhận được</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"04060118.xhp\n"
+"par_id3153277\n"
+"310\n"
"help.text"
-msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
-msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">Lệnh <emph>Gạch nối từ</emph> gọi hộp thoại để đặt chức năng gạch nối từ trong $[officename] Calc.</ahelp></variable>"
+msgid "2"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3154366\n"
-"3\n"
+"04060118.xhp\n"
+"par_id3154052\n"
+"203\n"
"help.text"
-msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
-msgstr "Bạn chỉ có thể bật chức năng tự động gạch nối từ trong $[officename] Calc khi tính năng <link href=\"text/shared/01/05340300.xhp\" name=\"ngắt hàng\">ngắt hàng</link> đang chạy."
+msgid "2001-01-02"
+msgstr "2001-01-02"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3153192\n"
-"4\n"
+"04060118.xhp\n"
+"par_id3151297\n"
+"204\n"
"help.text"
-msgid "Hyphenation for selected cells."
-msgstr "Gạch nối từ cho các ô đã chọn."
+msgid "<item type=\"input\">2000</item>"
+msgstr "<item type=\"input\">2000</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3150868\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3149985\n"
+"205\n"
"help.text"
-msgid "Select the cells for which you want to change the hyphenation."
-msgstr "Hãy lựa chọn những ô bảng cho chúng bạn muốn thay đổi tình trạng gạch nối từ."
+msgid "<item type=\"input\">Deposited</item>"
+msgstr "<item type=\"input\">Đã gửi</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3150440\n"
-"6\n"
+"04060118.xhp\n"
+"par_id3154744\n"
+"311\n"
"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
-msgstr "Chọn lệnh <emph>Công cụ > Ngôn ngữ > Gạch nối từ</emph>."
+msgid "3"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3156441\n"
-"7\n"
+"04060118.xhp\n"
+"par_id3153151\n"
+"206\n"
"help.text"
-msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
-msgstr "Hộp thoại <emph>Định dạng ô</emph> xuất hiện với trang thẻ <emph>Sắp hàng</emph> còn mở."
+msgid "2001-03-15"
+msgstr "2001-03-15"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3149260\n"
-"12\n"
+"04060118.xhp\n"
+"par_id3145657\n"
+"207\n"
"help.text"
-msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
-msgstr "Đánh dấu hai tùy chọn <emph>Tự động cuộn văn bản</emph> và <emph>Gạch nối từ</emph>."
+msgid "2500"
+msgstr "2500"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3153094\n"
-"8\n"
+"04060118.xhp\n"
+"par_id3155101\n"
+"312\n"
"help.text"
-msgid "Hyphenation for Drawing Objects"
-msgstr "Gạch nối từ cho Đối tượng Vẽ"
+msgid "4"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3148577\n"
-"9\n"
+"04060118.xhp\n"
+"par_id3146894\n"
+"208\n"
"help.text"
-msgid "Select a drawing object."
-msgstr "Chọn một đối tượng vẽ."
+msgid "2001-05-12"
+msgstr "2001-05-12"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3156285\n"
-"10\n"
+"04060118.xhp\n"
+"par_id3143231\n"
+"209\n"
"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
-msgstr "Chọn lệnh <emph>Công cụ > Ngôn ngữ > Gạch nối từ</emph>."
+msgid "5000"
+msgstr "5000"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3147394\n"
-"11\n"
+"04060118.xhp\n"
+"par_id3156012\n"
+"313\n"
"help.text"
-msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
-msgstr "Mỗi lần bạn gọi câu lệnh này, bạn bật hay tắt chức năng gạch nối từ cho đối tượng vẽ đó. Một dấu kiểm ngụ ý trạng thái hiện thời."
+msgid "5"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149758\n"
+"210\n"
+"help.text"
+msgid "2001-08-10"
+msgstr "2001-08-10"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147495\n"
+"211\n"
+"help.text"
+msgid "1000"
+msgstr "1000"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152793\n"
+"212\n"
+"help.text"
+msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
+msgstr "=XIRR(B1:B5; A1:A5; 0.1) trả về 0.1828."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149198\n"
+"help.text"
+msgid "<bookmark_value>XNPV function</bookmark_value>"
+msgstr "<bookmark_value>hàm XNPV</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149198\n"
+"213\n"
+"help.text"
+msgid "XNPV"
+msgstr "XNPV"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153904\n"
+"214\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Tính giá trị hiện tại ròng cho một danh sách các sự trả tiền xảy ra vào các ngày tháng khác nhau.</ahelp> Phép tính này dựa vào một năm có 365 ngày, thì bỏ qua năm nhuận."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN11138\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the NPV function."
+msgstr "Nếu trả tiền theo khoảng đều đặn, hãy sử dụng hàm NPV."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155323\n"
+"215\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150117\n"
+"216\n"
+"help.text"
+msgid "XNPV(Rate; Values; Dates)"
+msgstr "XNPV(Suất; Giá_trị; Ngày)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153100\n"
+"217\n"
+"help.text"
+msgid "<emph>Rate</emph> is the internal rate of return for the payments."
+msgstr "<emph>Suất</emph> là nội suất sinh lợi cho các sự trả tiền."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155395\n"
+"218\n"
+"help.text"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
+msgstr "<emph>Giá trị</emph> và <emph>Ngày</emph> tham chiếu đến một dãy các sự trả tiền và dãy các giá trị ngày tháng tương ứng. Cặp ngày đầu tiên xác định khi bắt đầu lịch trả tiền. Các giá trị ngày tháng khác phải nằm sau, nhưng không cần theo thứ tự. Dãy các giá trị phải chứa ít nhất một giá trị âm và một giá trị dương (tiền nhận và tiền cọc)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148832\n"
+"219\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150525\n"
+"220\n"
+"help.text"
+msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
+msgstr "Phép tính giá trị hiện tại ròng cho những năm sự trả tiền đã nói trên theo một tỷ suất lợi tức 6%."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149910\n"
+"221\n"
+"help.text"
+msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+msgstr "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> trả về 323.02."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148822\n"
+"help.text"
+msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
+msgstr "<bookmark_value>tính;tỷ suất lợi tức</bookmark_value><bookmark_value>hàm RRI</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148822\n"
+"237\n"
+"help.text"
+msgid "RRI"
+msgstr "RRI"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154293\n"
+"238\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZGZ\">Tính lãi suất kết quả từ lợi nhuận của một đầu tư.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148444\n"
+"239\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148804\n"
+"240\n"
+"help.text"
+msgid "RRI(P; PV; FV)"
+msgstr "RRI(P; PV; FV)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154901\n"
+"241\n"
+"help.text"
+msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
+msgstr "<emph>P</emph> là số các thời kỳ cần thiết để tính lãi suất."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159149\n"
+"242\n"
+"help.text"
+msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+msgstr "<emph>PV</emph> là giá trị hiện tại. Giá trị tiền mặt là tiền cọc hay giá trị tiền mặt của một tiền trợ cấp bằng hiện vật. Giá trị tiền sọc phải là số dương: không thể là 0 hay <0."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149771\n"
+"243\n"
+"help.text"
+msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
+msgstr "<emph>FV</emph> quyết định có muốn gì làm giá trị tiền mặt của tiền sọc."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148941\n"
+"244\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154212\n"
+"245\n"
+"help.text"
+msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
+msgstr "Trong bốn thời kỳ (năm), và một giá trị tiền mặt 7.500 đơn vị tiền tệ, cần tính tỷ suất lợi tức nếu giá trị tương lai là 10.000 đơn vị tiền tệ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150775\n"
+"246\n"
+"help.text"
+msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+msgstr "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145413\n"
+"247\n"
+"help.text"
+msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
+msgstr "Lãi suất phải là 7,46% để 7.500 đơn vị tiền tệ có thể trở thành 10.000 đơn vị tiền tệ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3154267\n"
+"help.text"
+msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
+msgstr "<bookmark_value>tính;lãi suất cố định</bookmark_value><bookmark_value>lãi suất cố định</bookmark_value><bookmark_value>hàm RATE</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154267\n"
+"249\n"
+"help.text"
+msgid "RATE"
+msgstr "RATE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151052\n"
+"250\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINS\">Trả về lãi suất cố định trong mỗi thời kỳ của một tiền trợ cấp hàng năm.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154272\n"
+"251\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158423\n"
+"252\n"
+"help.text"
+msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+msgstr "RATE(NPer; Pmt; PV; FV; Kiểu; Đoán)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148910\n"
+"253\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+msgstr "<emph>NPer</emph> là tổng số thời kỳ, trong chúng trả tiền (thời kỳ trả tiền)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148925\n"
+"254\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+msgstr "<emph>Pmt</emph> là số tiền cố định (tiền trợ cấp hàng năm) được trả mỗi thời kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149160\n"
+"255\n"
+"help.text"
+msgid "<emph>PV</emph> is the cash value in the sequence of payments."
+msgstr "<emph>PV</emph> là giá trị tiền mặt trong dãy các sự trả tiền."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3166456\n"
+"256\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
+msgstr "<emph>FV</emph> (tùy chọn) là giá trị tương lai được tới ở kết thúc các sự trả tiền định kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153243\n"
+"257\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
+msgstr "<emph>Kiểu</emph> (tùy chọn) là ngày hết hạn của sự trả tiền định kỳ, hoặc ở đầu hoặc cuối của một thời kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146949\n"
+"258\n"
+"help.text"
+msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
+msgstr "<emph>Đoán</emph> (tùy chọn) quyết định giá trị xấp xỉ của tiền lãi khi tính lặp lại."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10E2A\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149791\n"
+"259\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150706\n"
+"260\n"
+"help.text"
+msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
+msgstr "Lãi suất cố định trong 3 thời kỳ là gì nếu 10 đơn vị tiền tệ được trả đều và giá trị tiền mặt hiện tại là 900 đơn vị tiền tệ?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155586\n"
+"261\n"
+"help.text"
+msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+msgstr "<item type=\"input\">=RATE(3;10;900)</item> = -121% Lãi suất thì là 121%."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149106\n"
+"help.text"
+msgid "<bookmark_value>INTRATE function</bookmark_value>"
+msgstr "<bookmark_value>hàm INTRATE</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149106\n"
+"60\n"
+"help.text"
+msgid "INTRATE"
+msgstr "INTRATE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149918\n"
+"61\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Tính lãi suất hàng năm mà kết quả khi một chứng khoán (hay mục khác) được mua ở một giá trị đầu tư và bán lại ở một giá trị đáo hạn. Không trả tiền lãi nào.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149974\n"
+"62\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149800\n"
+"63\n"
+"help.text"
+msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
+msgstr "INTRATE(Thanh_toán; Đến_hạn; Đầu_tư; Trả_hết; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148618\n"
+"64\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148988\n"
+"65\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security is sold."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó bán lại chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154604\n"
+"66\n"
+"help.text"
+msgid "<emph>Investment</emph> is the purchase price."
+msgstr "<emph>Đầu_tư</emph> là giá mua."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154337\n"
+"67\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the selling price."
+msgstr "<emph>Trả_hết</emph> là mua bán lại."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3145380\n"
+"68\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149426\n"
+"69\n"
+"help.text"
+msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
+msgstr "Một bức vẽ được mua vào ngày 1990-01-15 trả 1 triệu đơn vị tiền tệ, sau đó bán lại vào 2002-05-02 trả 2 triệu. Cơ bản là phép tính kết toán hàng ngày (cơ bản=3). Lãi suất hàng năm trung bình là gì?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151125\n"
+"70\n"
+"help.text"
+msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgstr "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) trả về 8.12%."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148654\n"
+"help.text"
+msgid "<bookmark_value>COUPNCD function</bookmark_value>"
+msgstr "<bookmark_value>hàm COUPNCD</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148654\n"
+"163\n"
+"help.text"
+msgid "COUPNCD"
+msgstr "COUPNCD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149927\n"
+"164\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Trả về ngày tháng trả tiền lãi đầu tiên sau ngày thanh toán. Hãy định dạng kết quả dạng ngày tháng.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153317\n"
+"165\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150423\n"
+"166\n"
+"help.text"
+msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPNCD(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150628\n"
+"167\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153536\n"
+"168\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145313\n"
+"169\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155424\n"
+"170\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154794\n"
+"171\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
+msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn thanh toán là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng ngày (cơ bản 3), ngày tháng trả tiền lãi kế tiếp ở ngày nào?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159251\n"
+"172\n"
+"help.text"
+msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+msgstr "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 2001-05-15."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3143281\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
+msgstr "<bookmark_value>hàm COUPDAYS</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3143281\n"
+"143\n"
+"help.text"
+msgid "COUPDAYS"
+msgstr "COUPDAYS"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149488\n"
+"144\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Trả về số các ngày trong thời kỳ trả tiền lãi hiện thời chứa ngày thanh toán.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148685\n"
+"145\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149585\n"
+"146\n"
+"help.text"
+msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYS(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152767\n"
+"147\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151250\n"
+"148\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146126\n"
+"149\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153705\n"
+"150\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147530\n"
+"151\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
+msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), thời kỳ chứa ngày thanh toán có bao nhiêu ngày?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156338\n"
+"152\n"
+"help.text"
+msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+msgstr "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 181."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3154832\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+msgstr "<bookmark_value>hàm COUPDAYSNC</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154832\n"
+"153\n"
+"help.text"
+msgid "COUPDAYSNC"
+msgstr "COUPDAYSNC"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147100\n"
+"154\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Trả về số các ngày trong khoảng từ ngày thanh toán đến ngày trả tiền lãi kế tiếp.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3151312\n"
+"155\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155121\n"
+"156\n"
+"help.text"
+msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYSNC(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158440\n"
+"157\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146075\n"
+"158\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154620\n"
+"159\n"
+"help.text"
+msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155604\n"
+"160\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148671\n"
+"161\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
+msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), khoảng đến ngày trả tiền lãi kế tiếp có bao nhiêu ngày?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156158\n"
+"162\n"
+"help.text"
+msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+msgstr "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 110."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3150408\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
+msgstr "<bookmark_value>hàm COUPDAYBS</bookmark_value><bookmark_value>khoảng thời gian;từ ngày trả tiền lãi đầu tiên đến ngày thanh toán</bookmark_value><bookmark_value>chứng khoán;từ ngày trả tiền lãi đầu tiên đến ngày thanh toán</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150408\n"
+"133\n"
+"help.text"
+msgid "COUPDAYBS"
+msgstr "COUPDAYBS"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146795\n"
+"134\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Trả về số các ngày từ ngày trả tiền lãi đầu tiên về một chứng khoán đến ngày thanh toán.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156142\n"
+"135\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159083\n"
+"136\n"
+"help.text"
+msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYBS(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146907\n"
+"137\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159390\n"
+"138\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154414\n"
+"139\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153880\n"
+"140\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150592\n"
+"141\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
+msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), đây là bao nhiêu ngày?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151103\n"
+"142\n"
+"help.text"
+msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+msgstr "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 71."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3152957\n"
+"help.text"
+msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
+msgstr "<bookmark_value>hàm COUPPCD</bookmark_value><bookmark_value>ngày tháng;ngày tiền lãi nằm trước ngày thanh toán</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3152957\n"
+"183\n"
+"help.text"
+msgid "COUPPCD"
+msgstr "COUPPCD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153678\n"
+"184\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Trả về ngày tháng của ngày trả tiền lãi nằm trước ngày thanh toán. Định dạng kết quả dưới dạng một ngày tháng.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156269\n"
+"185\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153790\n"
+"186\n"
+"help.text"
+msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPPCD(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150989\n"
+"187\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154667\n"
+"188\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154569\n"
+"189\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150826\n"
+"190\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148968\n"
+"191\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), trước khi mua có ngày trả tiền lãi nào"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149992\n"
+"192\n"
+"help.text"
+msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgstr "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 2000-15-11."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3150673\n"
+"help.text"
+msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+msgstr "<bookmark_value>hàm COUPNUM</bookmark_value><bookmark_value>số phiếu lãi</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150673\n"
+"173\n"
+"help.text"
+msgid "COUPNUM"
+msgstr "COUPNUM"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154350\n"
+"174\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Trả về số các phiếu lãi (số lần trả tiền lãi) nằm giữa ngày thanh toán và ngày đến hạn.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148400\n"
+"175\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153200\n"
+"176\n"
+"help.text"
+msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPNUM(Thanh_toán; Đến_hạn; Tần_số; Cơ_bản)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159406\n"
+"177\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Thanh_toán</emph> là ngày tháng đã mua chứng khoán."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155864\n"
+"178\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154720\n"
+"179\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Tần_số</emph> là số lần trả tiền lãi trong mỗi năm (1, 2 hoặc 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149319\n"
+"180\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152460\n"
+"181\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
+msgstr "Một chứng khoán được mua vào ngày 2001-01-25; ngày đến hạn là 2001-11-15. Tiền lãi được trả mỗi nửa năm (tần số là 2). Sử dụng phép tính kết toán tiền lãi hàng năm (cơ bản 3), có trả tiền lãi vào bao nhiêu ngày?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150640\n"
+"182\n"
+"help.text"
+msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgstr "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) trả về 2."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149339\n"
+"help.text"
+msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+msgstr "<bookmark_value>hàm IPMT</bookmark_value><bookmark_value>lãi suất trả dần định kỳ</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149339\n"
+"263\n"
+"help.text"
+msgid "IPMT"
+msgstr "IPMT"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154522\n"
+"264\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINSZ\">Tính chi trả dần định kỳ cho một đầu tư có trả tiền đều và một lãi suất cố định.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153266\n"
+"265\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151283\n"
+"266\n"
+"help.text"
+msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr "IPMT(Tỷ_lệ; Kỳ; NPer; PV; FV; Kiểu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147313\n"
+"267\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tỷ_lệ</emph> là lãi suất định kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145158\n"
+"268\n"
+"help.text"
+msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr "<emph>Kỳ</emph> là thời kỳ cho đó cần tính lãi kép. Kỳ=NPer nếu tính lãi kép cho kỳ cuối cùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147577\n"
+"269\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr "<emph>NPer</emph> là tổng số các thời kỳ trong chúng trả tiền lãi hàng năm."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156211\n"
+"270\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr "<emph>PV</emph> là giá trị tiền mặt hiện tại theo thứ tự trả tiền."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151213\n"
+"271\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr "<emph>FV</emph> (tùy chọn) là giá trị đã muốn (giá trị tương lai) ở kết thúc các thời kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154195\n"
+"272\n"
+"help.text"
+msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgstr "<emph>Kiểu</emph> là ngày đến hạn để trả tiền định kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150102\n"
+"273\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149438\n"
+"274\n"
+"help.text"
+msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+msgstr "Nếu lãi suất cố định là 5% và giá trị tiền mặt là 15.000 đơn vị tiền tệ, trong thời kỳ (năm) thứ năm có lãi suất nào? Trả tiền định kỳ trong bảy năm."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150496\n"
+"275\n"
+"help.text"
+msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 đơn vị tiền tệ. Lãi kép trong thời kỳ (năm) thứ năm là 352,97 đơn vị tiền tệ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3151205\n"
+"help.text"
+msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
+msgstr "<bookmark_value>tính;giá trị tương lai</bookmark_value><bookmark_value> giá trị tương lai;lãi suất cố định</bookmark_value><bookmark_value>hàm FV</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3151205\n"
+"277\n"
+"help.text"
+msgid "FV"
+msgstr "FV"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154140\n"
+"278\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZW\">Trả về giá trị tương lai của một đầu tư dựa vào các sự trả tiền cố định theo định kỳ và một lãi suất cố định (Giá trị Tương lai).</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155178\n"
+"279\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145215\n"
+"280\n"
+"help.text"
+msgid "FV(Rate; NPer; Pmt; PV; Type)"
+msgstr "PV(Tỷ_lệ; NPer; Pmt; FV; Kiểu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155136\n"
+"281\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tỷ_lệ</emph> là lãi suất định kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156029\n"
+"282\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "<emph>NPer</emph> là tổng số kỳ (thời kỳ trả)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151322\n"
+"283\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>Pmt</emph> là số tiền lãi hàng năm phải trả cho từng kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145256\n"
+"284\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr "<emph>PV</emph> (tuy chọn) là giá trị tiền mặt (hiện tại) của một đầu tư."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150999\n"
+"285\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr "<emph>Kiểu</emph> (tùy chọn) xác định nếu phải trả tiền ở đầu hay cuối của mỗi thời kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN114D8\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3146800\n"
+"286\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146813\n"
+"287\n"
+"help.text"
+msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
+msgstr "Nếu lãi suất là 4%, và thời kỳ trả tiền là 2 năm, với số tiền phải trả từng kỳ là 750 đơn vị tiền tệ, ở kết thúc khoảng đầu tư có giá trị nào? Đầu tư có giá trị hiện tại là 2.500 đơn vị tiền tệ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149302\n"
+"288\n"
+"help.text"
+msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 đơn vị tiền tệ. Giá trị ở kết thúc khoảng đầu tư là 4234,00 đơn vị tiền tệ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3155912\n"
+"help.text"
+msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
+msgstr "<bookmark_value>hàm FVSCHEDULE</bookmark_value><bookmark_value>giá trị tương lai;lãi suất biến đổi</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155912\n"
+"51\n"
+"help.text"
+msgid "FVSCHEDULE"
+msgstr "FVSCHEDULE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3163726\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Tính giá trị lũy tích của tiền vốn đầu tiên đối với một chuỗi các lãi suất biến đổi theo định kỳ.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149571\n"
+"53\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148891\n"
+"54\n"
+"help.text"
+msgid "FVSCHEDULE(Principal; Schedule)"
+msgstr "FVSCHEDULE(Tiền_gốc; Lịch)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148904\n"
+"55\n"
+"help.text"
+msgid "<emph>Principal</emph> is the starting capital."
+msgstr "<emph>Tiền_gốc</emph> là tiền vốn đầu tiên."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148562\n"
+"56\n"
+"help.text"
+msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+msgstr "<emph>Lịch</emph> là một chuỗi các lãi suất, v.d. dươi dạng phạm vi (H3:H5) hay danh sách (xem ví dụ)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147288\n"
+"57\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148638\n"
+"58\n"
+"help.text"
+msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
+msgstr "1000 đơn vị tiền tệ đã được đầu tư được ba năm. Lãi suất là 3%, 5%, 5% mỗi năm riêng từng năm. Sau ba năm có giá trị nào?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156358\n"
+"59\n"
+"help.text"
+msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgstr "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> trả về 1124,76."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3156435\n"
+"help.text"
+msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
+msgstr "<bookmark_value>tính;số thời kỳ trả tiền</bookmark_value><bookmark_value>thời kỳ trả tiền;số</bookmark_value><bookmark_value>số thời kỳ trả tiền</bookmark_value><bookmark_value>hàm NPER</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156435\n"
+"290\n"
+"help.text"
+msgid "NPER"
+msgstr "NPER"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152363\n"
+"291\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZZR\">Trả về số các thời kỳ cho một đầu tư dựa vào các sự trả tiền cố định theo định kỳ và một lãi suất cố định..</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147216\n"
+"292\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155934\n"
+"293\n"
+"help.text"
+msgid "NPER(Rate; Pmt; PV; FV; Type)"
+msgstr "NPER(Tỷ_lệ; Pmt; PV; FV; Kiểu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155946\n"
+"294\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tỷ_lệ</emph> là lãi suất định kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149042\n"
+"295\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr "<emph>Pmt</emph> là số tiền lãi hàng năm phải trả cho từng kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153134\n"
+"296\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr "<emph>PV</emph> (tuy chọn) là giá trị tiền mặt (hiện tại) của một đầu tư."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154398\n"
+"297\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+msgstr "<emph>FV</emph> (tùy chọn) là giá trị tương lai, được tới ở kết thúc thời kỳ cuối cùng."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145127\n"
+"298\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
+msgstr "<emph>Kiểu</emph> (tùy chọn) xác định nếu phải trả tiền ở đầu hay cuối của mỗi thời kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN1166C\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155795\n"
+"299\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147378\n"
+"300\n"
+"help.text"
+msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+msgstr "Có lãi suất định kỳ 6%, số tiền phải trả định kỳ 153,75 đơn vị tiền tệ và giá trị tiền mặt hiện tại 2.600 đơn vị tiền tệ thì khoảng trả tiền trải ra bao nhiêu thời kỳ trả tiền?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156171\n"
+"301\n"
+"help.text"
+msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+msgstr "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. Khoảng trả tiền trải ra 12,02 thời kỳ."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150309\n"
+"314\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Trở về Hàn Tài chính Phần 1\">Trở về Hàn Tài chính Phần 1</link>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153163\n"
+"315\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Trở về Hàn Tài Chính Phần 2\">Trở về Hàm Tài Chính Phần 2</link>"
#: 04060119.xhp
msgctxt ""
@@ -38567,7 +35523,7 @@ msgctxt ""
"271\n"
"help.text"
msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
-msgstr "<emph>NPer</emph> là thời kỳ trả tiền, tổng số các thời kỳ. NPER cũng có thể là một giá trị khác số nguyên."
+msgstr "<emph>NPer</emph> là tổng số kỳ (thời kỳ trả). NPER cũng có thể là một giá trị khác số nguyên."
#: 04060119.xhp
msgctxt ""
@@ -38576,7 +35532,7 @@ msgctxt ""
"272\n"
"help.text"
msgid "<emph>PV</emph> is the current value in the sequence of payments."
-msgstr "<emph>PV</emph> là giá trị hiện thời trong chuỗi các sự trả tiền."
+msgstr "<emph>PV</emph> là giá trị hiện tại trong chuỗi các sự trả tiền."
#: 04060119.xhp
msgctxt ""
@@ -38692,7 +35648,7 @@ msgctxt ""
"170\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
-msgstr "<emph>NPer</emph> là tổng số các thời kỳ trả tiền. Lãi suất và NPER phải tham chiếu đến cùng một đơn vị, thì cả hai được tính hàng nam hay hàng tháng."
+msgstr "<emph>NPer</emph> là tổng số các thời kỳ trả tiền. Lãi suất và NPER phải tham chiếu đến cùng một đơn vị, thì cả hai đều phải được tính hàng năm hay hàng tháng."
#: 04060119.xhp
msgctxt ""
@@ -38710,7 +35666,7 @@ msgctxt ""
"172\n"
"help.text"
msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
-msgstr "<emph>Kỳ_đầu</emph> là thời kỳ đầu tiên cho phép tính."
+msgstr "<emph>Kỳ_đầu</emph> là thời kỳ trả tiền đầu tiên cho phép tính."
#: 04060119.xhp
msgctxt ""
@@ -38719,7 +35675,7 @@ msgctxt ""
"173\n"
"help.text"
msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
-msgstr "<emph>Kỳ_cuối</emph> là thời kỳ cuối cùng cho phép tính."
+msgstr "<emph>Kỳ_cuối</emph> là thời kỳ trả tiền cuối cùng cho phép tính."
#: 04060119.xhp
msgctxt ""
@@ -38728,7 +35684,7 @@ msgctxt ""
"174\n"
"help.text"
msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
-msgstr "<emph>Kiểu</emph> (tùy chọn) xác định nếu phải trả tiền ở đầu (Kiểu=1) hay cuối (Kiểu=0) của mỗi thời kỳ."
+msgstr "<emph>Kiểu</emph> xác định nếu phải trả tiền ở đầu (Kiểu=1) hay cuối (Kiểu=0) của mỗi thời kỳ."
#: 04060119.xhp
msgctxt ""
@@ -38856,7 +35812,6 @@ msgid "<emph>Maturity</emph> is the date on which the security matures (expires)
msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3153755\n"
@@ -38881,7 +35836,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
#: 04060119.xhp
msgctxt ""
@@ -38997,7 +35952,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
#: 04060119.xhp
msgctxt ""
@@ -39211,7 +36166,7 @@ msgctxt ""
"285\n"
"help.text"
msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
-msgstr "<emph>PV</emph> là giá trị hiện tại. Giá trị tiền mặt là số tiền mặt cọc hay giá trị tiền mặt hiện tại của một tiền trợ cấp bằng hiện vật. Tiền cọc phải được nhập dưới dạng một giá trị dương: không thể là 0 hay <0."
+msgstr "<emph>PV</emph> là giá trị hiện tại. Giá trị tiền mặt là tiền cọc hay giá trị tiền mặt của một tiền trợ cấp bằng hiện vật. Giá trị tiền sọc phải là số dương: không thể là 0 hay <0."
#: 04060119.xhp
msgctxt ""
@@ -39285,7 +36240,6 @@ msgid "SLN(Cost; Salvage; Life)"
msgstr "SLN(Giá; Cứu; Tuổi)"
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3146955\n"
@@ -39301,7 +36255,7 @@ msgctxt ""
"295\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "<emph>Cứu</emph> là giá trị của một tài sản khi kết thúc thời kỳ khấu hao."
+msgstr "<emph>Thanh_lý</emph> là giá trị của một tài sản khi kết thúc thời kỳ khấu hao."
#: 04060119.xhp
msgctxt ""
@@ -40058,10 +37012,9 @@ msgctxt ""
"135\n"
"help.text"
msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Tỷ_lệ</emph> là lãi suất hàng năm."
+msgstr "<emph>Lãi_suất</emph> là lãi suất hàng năm."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3147314\n"
@@ -40077,7 +37030,7 @@ msgctxt ""
"137\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
#: 04060119.xhp
msgctxt ""
@@ -40184,7 +37137,7 @@ msgctxt ""
"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>Giá</emph> là giá (giá mua) của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
+msgstr "<emph>Giá</emph> là giá (giá mua) của chứng khoán so với mỗi 100 đơn vị tiền tệ mệnh giá."
#: 04060119.xhp
msgctxt ""
@@ -40193,7 +37146,7 @@ msgctxt ""
"149\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
+msgstr "<emph>Trả_hết</emph> là giá trị trả hết của chứng khoán trên mỗi 100 đơn vị tiền tệ mệnh giá."
#: 04060119.xhp
msgctxt ""
@@ -40309,7 +37262,7 @@ msgctxt ""
"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>Giá</emph> là giá (giá mua) của chứng khoán cho mỗi 100 đơn vị tiền tệ mệnh giá."
+msgstr "<emph>Giá</emph> là giá (giá mua) của chứng khoán so với mỗi 100 đơn vị tiền tệ mệnh giá."
#: 04060119.xhp
msgctxt ""
@@ -40407,7 +37360,7 @@ msgctxt ""
"336\n"
"help.text"
msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
-msgstr "<emph>PV</emph> là giá trị hiện tại trong chuỗi các sự trả tiền."
+msgstr "<emph>PV</emph> (tuy chọn) là giá trị tiền mặt (hiện tại) của một đầu tư."
#: 04060119.xhp
msgctxt ""
@@ -40485,8 +37438,8 @@ msgctxt ""
"par_id3154403\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill ().</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Tính lợi nhuận hàng năm đối với một tín phiếu bộ tái chính ().</ahelp> Một tín phiếu bộ tái chính được mua vào ngày thanh toán và bán lại ở mệnh giá đầy đủ vào ngày đến hạn cùng năm. Tiền bớt được trừ từ giá mua."
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill.</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
+msgstr ""
#: 04060119.xhp
msgctxt ""
@@ -40525,7 +37478,6 @@ msgid "<emph>Maturity</emph> is the date on which the security matures (expires)
msgstr "<emph>Đến_hạn</emph> là ngày tháng vào đó chứng khoán hết hạn dùng."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3150310\n"
@@ -40791,7 +37743,7 @@ msgctxt ""
"345\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Trở về Hàm Tái Chính Phần 1\">Trở về Hàm Tái Chính Phần 1</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Trở về Hàn Tài chính Phần 1\">Trở về Hàn Tài chính Phần 1</link>"
#: 04060119.xhp
msgctxt ""
@@ -40802,4469 +37754,5375 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Tiếp tới Hàm Tài Chính Phần 3\">Tiếp tới Hàm Tài Chính Phần 3</link>"
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
+"04060120.xhp\n"
"tit\n"
"help.text"
-msgid "Delete Manual Breaks"
-msgstr "Xoá chỗ ngắt tự làm"
+msgid "Bit Operation Functions"
+msgstr ""
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
-"hd_id3150541\n"
+"04060120.xhp\n"
+"hd_id4149052\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
-msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Xoá chỗ ngắt tự làm\">Xoá chỗ ngắt tự làm</link>"
+msgid "Bit Operation Functions"
+msgstr ""
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
-"par_id3154365\n"
-"2\n"
+"04060120.xhp\n"
+"bm_id4150026\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kiểu chỗ ngắt tự làm mà bạn muốn xoá.</ahelp>"
+msgid "<bookmark_value>BITAND function</bookmark_value>"
+msgstr "<bookmark_value>hàm AND</bookmark_value>"
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"hd_id4150026\n"
+"238\n"
"help.text"
-msgid "Split Cells"
+msgid "BITAND"
msgstr ""
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3154654\n"
+"04060120.xhp\n"
+"par_id4146942\n"
+"239\n"
"help.text"
-msgid "Split Cells"
+msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
msgstr ""
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3083451\n"
+"04060120.xhp\n"
+"hd_id4150459\n"
+"240\n"
"help.text"
-msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154023\n"
+"04060120.xhp\n"
+"par_id4146878\n"
+"241\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgid "BITAND(number1; number2)"
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Columns"
-msgstr "Cột"
-
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"bm_id3155628\n"
+"04060120.xhp\n"
+"par_id4151228\n"
+"242\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; chèn cột</bookmark_value><bookmark_value>chèn; cột</bookmark_value><bookmark_value>cột; chèn</bookmark_value>"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060120.xhp\n"
+"hd_id4148582\n"
+"248\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Cột\">Cột</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3150791\n"
-"2\n"
+"04060120.xhp\n"
+"par_id4149246\n"
+"250\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
-msgstr "<ahelp hid=\".uno:InsertColumns\">Chèn một cột mới sang bên trái của ô đang làm việc.</ahelp> Số cột chèn thêm vào tương ứng với số cột đang được chọn. Các cột đang có sẽ được dịch sang phải."
+msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"bm_id4146139\n"
"help.text"
-msgid "Group and Outline"
-msgstr "Nhóm lại và Phác thảo"
+msgid "<bookmark_value>BITOR function</bookmark_value>"
+msgstr "<bookmark_value>hàm OR</bookmark_value>"
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"bm_id3152350\n"
+"04060120.xhp\n"
+"hd_id4146139\n"
+"252\n"
"help.text"
-msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
-msgstr "<bookmark_value>trang tính; phác thảo</bookmark_value><bookmark_value>phác thảo; trang tính</bookmark_value><bookmark_value>ẩn; chi tiết về trang tính</bookmark_value><bookmark_value>hiện; chi tiết về trang tính</bookmark_value><bookmark_value>nhóm lại;các ô</bookmark_value>"
+msgid "BITOR"
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3152350\n"
-"1\n"
+"04060120.xhp\n"
+"par_id4150140\n"
+"253\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
-msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Nhóm lại và Phác thảo\">Nhóm lại và Phác thảo</link>"
+msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"04060120.xhp\n"
+"hd_id4149188\n"
+"254\n"
"help.text"
-msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
-msgstr "Bạn có thể tạo một phác thảo của dữ liệu, và nhóm lại các hàng và cột, để có khả năng co lại và giãn ra các nhóm bằng một cú nhấn chuột riêng lẻ."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3147229\n"
-"3\n"
+"04060120.xhp\n"
+"par_id4148733\n"
+"255\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
+msgid "BITOR(number1; number2)"
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3153188\n"
-"4\n"
+"04060120.xhp\n"
+"par_id4150864\n"
+"256\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149884\n"
+"264\n"
"help.text"
-msgid "YEAR"
-msgstr "YEAR"
+msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"bm_id3153982\n"
+"04060120.xhp\n"
+"bm_id4150019\n"
"help.text"
-msgid "<bookmark_value>YEAR function</bookmark_value>"
-msgstr "<bookmark_value>hàm YEAR</bookmark_value>"
+msgid "<bookmark_value>BITXOR function</bookmark_value>"
+msgstr "<bookmark_value>hàm OR</bookmark_value>"
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"hd_id3153982\n"
-"37\n"
+"04060120.xhp\n"
+"hd_id4150019\n"
+"182\n"
"help.text"
-msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
-msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">Hàm YEAR</link></variable>"
+msgid "BITXOR"
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3147496\n"
-"38\n"
+"04060120.xhp\n"
+"par_id4145246\n"
+"183\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_JAHR\">Trả về năm dạng số tùy theo các quy tắc tính nội bộ.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"hd_id3146090\n"
-"39\n"
+"04060120.xhp\n"
+"hd_id4153047\n"
+"184\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3154304\n"
-"40\n"
+"04060120.xhp\n"
+"par_id4157970\n"
+"185\n"
"help.text"
-msgid "YEAR(Number)"
-msgstr "YEAR(Số)"
+msgid "BITXOR(number1; number2)"
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3156013\n"
-"41\n"
+"04060120.xhp\n"
+"par_id4145302\n"
+"186\n"
"help.text"
-msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
-msgstr "<emph>Số</emph> hiển thị giá trị ngày tháng nội bộ cho đó cần trả về năm."
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"hd_id3152797\n"
-"42\n"
+"04060120.xhp\n"
+"hd_id4150269\n"
+"192\n"
"help.text"
-msgid "Examples"
+msgid "Example"
msgstr "Ví dụ"
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3145668\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
-msgstr "<item type=\"input\">=YEAR(1)</item> trả về 1899"
-
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3151168\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
-msgstr "<item type=\"input\">=YEAR(2)</item> trả về 1900"
-
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3150115\n"
-"45\n"
-"help.text"
-msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
-msgstr "<item type=\"input\">=YEAR(33333.33)</item> trả về 1991"
-
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149394\n"
+"196\n"
"help.text"
-msgid "DAY"
-msgstr "DAY"
+msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"bm_id3147317\n"
+"04060120.xhp\n"
+"bm_id4155370\n"
"help.text"
-msgid "<bookmark_value>DAY function</bookmark_value>"
-msgstr "<bookmark_value>hàm DAY</bookmark_value>"
+msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>hàm BINOMDIST</bookmark_value>"
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3147317\n"
-"106\n"
+"04060120.xhp\n"
+"hd_id4155370\n"
+"266\n"
"help.text"
-msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
-msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">Hàm DAY</link></variable>"
+msgid "BITLSHIFT"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3147584\n"
-"107\n"
+"04060120.xhp\n"
+"par_id4158411\n"
+"267\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
-msgstr "<ahelp hid=\"HID_FUNC_TAG\">Trả về ngày của giá trị ngày tháng đã cho.</ahelp> Ngày được trả về dưới dạng một số nguyên nằm giữa 1 và 31. Bạn cũng có thể nhập một giá trị ngày/giờ âm."
+msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3150487\n"
-"108\n"
+"04060120.xhp\n"
+"hd_id4155814\n"
+"268\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3149430\n"
-"109\n"
-"help.text"
-msgid "DAY(Number)"
-msgstr "DAY(Số)"
-
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3149443\n"
-"110\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
-msgstr "<emph>Số</emph> là một giá trị thời gian dạng thập phân, cho đó trả về ngày của ngày tháng."
-
-#: func_day.xhp
-#, fuzzy
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3163809\n"
-"111\n"
+"04060120.xhp\n"
+"par_id4147536\n"
+"269\n"
"help.text"
-msgid "Examples"
-msgstr "Ví dụ"
+msgid "BITLSHIFT(number; shift)"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3151200\n"
-"112\n"
+"04060120.xhp\n"
+"par_id4150475\n"
+"270\n"
"help.text"
-msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
-msgstr "DAY(1) trả về 31, vì $[officename] bắt đầu đếm từ số không ở ngày 30, tháng 12/1899."
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3154130\n"
-"113\n"
+"04060120.xhp\n"
+"par_id4153921\n"
+"271\n"
"help.text"
-msgid "DAY(NOW()) returns the current day."
-msgstr "DAY(NOW()) thì trả về ngày hiện thời."
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3159190\n"
-"114\n"
+"04060120.xhp\n"
+"hd_id4153723\n"
+"276\n"
"help.text"
-msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
-msgstr "=DAY(C4) trả về 5 nếu bạn nhập 1901-08-05 vào ô C4 (giá trị ngày tháng có thể được định dạng lại khi bạn bấm phím Enter)."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149819\n"
+"278\n"
"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Hàm Bảng Tính"
+msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148522\n"
+"04060120.xhp\n"
+"bm_id4083280\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; hàm</bookmark_value><bookmark_value>Trợ lý Hàm; bảng tính</bookmark_value><bookmark_value>hàm; bảng tính</bookmark_value>"
+msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>hàm BINOMDIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148522\n"
-"1\n"
+"04060120.xhp\n"
+"hd_id4083280\n"
+"165\n"
"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Hàm Bảng Tính"
+msgid "BITRSHIFT"
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3144508\n"
-"2\n"
+"04060120.xhp\n"
+"par_id4152482\n"
+"166\n"
"help.text"
-msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
-msgstr "<variable id=\"tabelletext\">Phần này chứa mô tả về các hàm <emph>Bảng tính</emph>, cùng với mẫu thí dụ. </variable>"
+msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3146968\n"
+"04060120.xhp\n"
+"hd_id4149713\n"
+"167\n"
"help.text"
-msgid "<bookmark_value>ADDRESS function</bookmark_value>"
-msgstr "<bookmark_value>hàm ADDRESS</bookmark_value>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146968\n"
-"3\n"
+"04060120.xhp\n"
+"par_id4145087\n"
+"168\n"
"help.text"
-msgid "ADDRESS"
-msgstr "ADDRESS"
+msgid "BITRSHIFT(number; shift)"
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155762\n"
-"4\n"
+"04060120.xhp\n"
+"par_id4149277\n"
+"169\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
-msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Trả về một địa chỉ ô (tham chiếu) dạng văn bản, tùy theo các số thứ tự hàng/cột đã ghi rõ.</ahelp> Bạn cũng có thể quyết định có nên đọc địa chỉ dưới dạng một địa chỉ tuyệt đối (v.d. $A$1), hoặc dưới dạng một địa chỉ tương đối (A1), hoặc dưới dạng hỗn hợp (A$1 hay $A1). Cũng có thể ghi rõ tên của trang tính."
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301348\n"
+"04060120.xhp\n"
+"par_id4149270\n"
+"170\n"
"help.text"
-msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
-msgstr "Để hỗ trợ cho việc dùng chung, cả hai hàm ADDRESS và INDIRECT đều hỗ trợ một tham số tùy chọn cho phép xác lập xem địa chỉ sẽ được điền dưới dạng hay R1C1 hay là kiểu A1 thường dùng."
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301445\n"
+"04060120.xhp\n"
+"hd_id4152933\n"
+"175\n"
"help.text"
-msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
-msgstr "Trong hàm ADDRESS, tham số này được đưa vào tại vị trí thứ tư, chuyển tham số tùy chọn tên của bảng sang vị trí thứ năm."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230153\n"
+"04060120.xhp\n"
+"par_id4156130\n"
+"179\n"
"help.text"
-msgid "In INDIRECT, the parameter is appended as the second parameter."
-msgstr "Trong hàm INDIRECT, tham số trên được thêm vào tại vị trí số hai."
+msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230151\n"
+"04060181.xhp\n"
+"tit\n"
"help.text"
-msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
-msgstr "Trong cả hai hàm, nếu như tham số có giá trị 0 thì kiểu kí hiệu địa chỉ R1C1 sẽ được sử dụng, còn nếu như tham số không xuất hiện hay có giá trị khác 0 thì kiểu kí hiệu A1 sẽ được sử dụng."
+msgid "Statistical Functions Part One"
+msgstr "Hàm Thống Kê Phần 1"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301556\n"
+"04060181.xhp\n"
+"hd_id3146320\n"
+"1\n"
"help.text"
-msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
-msgstr "Trong trường hợp kí hiệu R1C1, hàm ADDRESS trả về chuỗi địa chỉ sử dụng dấu chấm than '!' làm kí hiệu phân cách tên bảng, còn hàm INDIRECT coi dấu chấm than có tác dụng như trên. Cả hai hàm vẫn sử dụng dấu chấm '.' để phân cách tên bảng với kiểu kí hiệu A1."
+msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
+msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Hàm Thống Kê Phần 1</link></variable>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301521\n"
+"04060181.xhp\n"
+"bm_id3145632\n"
"help.text"
-msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
-msgstr "Khi mở các tài liệu trong định dạng ODF 1.0/1.1, hàm ADDRESS thường sử dụng vị trí thứ tư cho tên bảng sẽ chuyển sang vị trí thứ năm. Một tham số với với giá trị 1 sẽ được thêm vào vị trí thứ tư thay thế."
+msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
+msgstr "<bookmark_value>hàm INTERCEPT</bookmark_value><bookmark_value>điểm giao</bookmark_value><bookmark_value>giao</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301650\n"
+"04060181.xhp\n"
+"hd_id3145632\n"
+"2\n"
"help.text"
-msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
-msgstr "Khi lưu một tài liệu theo định dạng ODF 1.0/1.1, nếu hàm ADDRESS có tham số thứ 4, tham số đó sẽ bị gỡ bỏ."
+msgid "INTERCEPT"
+msgstr "INTERCEPT"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230162\n"
+"04060181.xhp\n"
+"par_id3146887\n"
+"3\n"
"help.text"
-msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
-msgstr "Không nên lưu bảng tính theo định dạng cũ ODF 1.0/1.1 nếu như tham số thứ tư của hàm ADDRESS có giá trị là 0."
+msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Tính điểm ở đó một đường sẽ cắt chéo với các giá trị y bằng cách sử dụng những giá trị x và y đã biết.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301756\n"
+"04060181.xhp\n"
+"hd_id3150374\n"
+"4\n"
"help.text"
-msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
-msgstr "Hàm INDIRECT sẽ được lưu mà không chuyển sang dạng của ODF 1.0/1.1. Nếu tham số thứ hai có mặt, các phiên bản của của Calc sẽ báo lỗi cho hàm đó."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151196\n"
+"04060181.xhp\n"
+"par_id3149718\n"
"5\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "INTERCEPT(DataY; DataX)"
+msgstr "INTERCEPT(Dữ_liệuY; Dữ_liệuX)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154707\n"
+"04060181.xhp\n"
+"par_id3149947\n"
"6\n"
"help.text"
-msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
-msgstr "ADDRESS(Hàng; Cột; Kiểu; A1; \"Trang\")"
+msgid "<emph>DataY</emph> is the dependent set of observations or data."
+msgstr "<emph> Dữ_liệuY</emph> là tập hợp phụ thuộc chứa các quan sát hay dữ liệu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147505\n"
+"04060181.xhp\n"
+"par_id3147412\n"
"7\n"
"help.text"
-msgid "<emph>Row</emph> represents the row number for the cell reference"
-msgstr "<emph>Hàng</emph> đại diện số thứ tự hàng cho tham chiếu ô"
+msgid "<emph>DataX</emph> is the independent set of observations or data."
+msgstr "<emph> Dữ_liệuX</emph> là tập hợp không phụ thuộc chứa các quan sát hay dữ liệu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145323\n"
+"04060181.xhp\n"
+"par_id3152983\n"
"8\n"
"help.text"
-msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
-msgstr "<emph>Cột</emph> đại diện số thứ tự cột cho tham chiếu ô (số, không phải chữ)"
+msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
+msgstr "Ở đây thì phải sử dụng tên, mảng hay tham chiếu chứa số. Cũng có thể nhập số một cách trực tiếp."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153074\n"
+"04060181.xhp\n"
+"hd_id3157906\n"
"9\n"
"help.text"
-msgid "<emph>Abs</emph> determines the type of reference:"
-msgstr "<emph>Kiểu</emph> xác định kiểu tham chiếu :"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153298\n"
+"04060181.xhp\n"
+"par_id3148728\n"
"10\n"
"help.text"
-msgid "1: absolute ($A$1)"
-msgstr "1: tuyệt đối ($A$1)"
+msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+msgstr "Để tính hệ số chặn, dùng phạm vi ô D3:D9 làm giá trị y, và C3:C9 làm giá trị x, từ bảng tính thí dụ. Nhập liệu như theo đây:"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150431\n"
+"04060181.xhp\n"
+"par_id3149013\n"
"11\n"
"help.text"
-msgid "2: row reference type is absolute; column reference is relative (A$1)"
-msgstr "2: kiểu tham chiếu hàng là tuyệt đối; tham chiếu cột là tương đối (A$1)"
+msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgstr "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146096\n"
-"12\n"
+"04060181.xhp\n"
+"bm_id3148437\n"
"help.text"
-msgid "3: row (relative); column (absolute) ($A1)"
-msgstr "3: hàng (tương đối); cột (tuyệt đối) ($A1)"
+msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
+msgstr "<bookmark_value>hàm COUNT</bookmark_value><bookmark_value>số;đếm</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153334\n"
+"04060181.xhp\n"
+"hd_id3148437\n"
"13\n"
"help.text"
-msgid "4: relative (A1)"
-msgstr "4: tương đối (A1)"
-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802465915\n"
-"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr "<emph>A1</emph> (optional) - nếu có giá trị là 0 thì kiểu kí hiệu R1C1 sẽ được sử dụng, trái lại nếu như tham số này không có mặt hoặc có giá trị khác 0 thì kiểu kí hiệu A1 sẽ được sử dụng."
+msgid "COUNT"
+msgstr "COUNT"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153962\n"
+"04060181.xhp\n"
+"par_id3150700\n"
"14\n"
"help.text"
-msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
-msgstr "<emph>Trang</emph> đại diện tên của trang tính. Nó phải nằm giữa dấu nháy kép."
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL\">Đếm bao nhiêu số nằm trong danh sách các đối số.</ahelp> Mục nhập văn bản bị bỏ qua."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147299\n"
+"04060181.xhp\n"
+"hd_id3153930\n"
"15\n"
"help.text"
-msgid "Example:"
-msgstr "Thí dụ :"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148744\n"
+"04060181.xhp\n"
+"par_id3148585\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
-msgstr "<item type=\"input\">=ADDRESS(1;1;2;\"Trang2\")</item> trả về « Trang2.A$1 »."
+msgid "COUNT(Value1; Value2; ... Value30)"
+msgstr "COUNT(Giá_trị1; Giá_trị2; ... Giá_trị30)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159260\n"
+"04060181.xhp\n"
+"par_id3155827\n"
"17\n"
"help.text"
-msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
-msgstr "Nếu ô A1 trong trang tính 2 chứa giá trị <item type=\"input\">-6</item>, bạn có thể tham chiếu gián tiếp đến ô đã tham chiếu dùng một hàm trong B2, bằng cách nhập công thức <item type=\"input\">=ABS(INDIRECT(B2))</item>. Kết quả là giá trị tuyệt đối của tham chiếu ô được ghi rõ trong B2, mà trong trường hợp này là 6."
+msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
+msgstr "<emph>Giá_trị1, Giá_trị2, ...</emph> là 1 đến 30 giá trị hay phạm vi đại diện những giá trị cần đếm."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3150372\n"
+"04060181.xhp\n"
+"hd_id3149254\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>AREAS function</bookmark_value>"
-msgstr "<bookmark_value>hàm AREAS</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150372\n"
+"04060181.xhp\n"
+"par_id3149953\n"
"19\n"
"help.text"
-msgid "AREAS"
-msgstr "AREAS"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr "Những mục nhập 2, 4, 6 và 8 trong các trường Giá trị 1-4 sẽ được đếm."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150036\n"
+"04060181.xhp\n"
+"par_id3154558\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
-msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Trả về số phạm vi riêng thuộc về một phạm vi đa mục.</ahelp> Một phạm vi có thể chứa nhiều ô kề nhau, hay một ô riêng lẻ."
-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id061020090307073\n"
-"help.text"
-msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
-msgstr "Hàm này nhận một đối số duy nhất. Nếu có nhiều vùng, bạn phải bao chúng trong ngoặc đơn bổ sung. Nhiều vùng có thể được nhập bằng cách sử dụng dấu chấm phẩy (;) để chia tách, nhưng sẽ được chuyển đổi tự động sang toán tử dấu ngã (~). Dấu ngã được sử dụng để nối các vùng."
+msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
+msgstr "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. Số đếm các số thì là 3."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145222\n"
-"21\n"
+"04060181.xhp\n"
+"bm_id3149729\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
+msgstr "<bookmark_value>hàm COUNTA</bookmark_value><bookmark_value>số các mục nhập</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155907\n"
+"04060181.xhp\n"
+"hd_id3149729\n"
"22\n"
"help.text"
-msgid "AREAS(Reference)"
-msgstr "AREAS(Tham_chiếu)"
+msgid "COUNTA"
+msgstr "COUNTA"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153118\n"
+"04060181.xhp\n"
+"par_id3150142\n"
"23\n"
"help.text"
-msgid "Reference represents the reference to a cell or cell range."
-msgstr "<emph>Tham_chiếu</emph> đại diện tham chiếu đến một ô hay phạm vi các ô."
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Đếm bao nhiêu giá trị nằm trong danh sách các đối số.</ahelp> Cũng đếm các mục nhập kiểu văn bản, ngay cả khi mục nhập như vậy chứa một chuỗi rỗng có chiều dài 0. Nếu một đối số có dạng mảng hay tham chiếu, thì bỏ qua bất cứ ô rỗng nào nằm bên trong nó."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148891\n"
+"04060181.xhp\n"
+"hd_id3148573\n"
"24\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149946\n"
+"04060181.xhp\n"
+"par_id3153111\n"
"25\n"
"help.text"
-msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
-msgstr "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> trả về 3, vì nó là một tham chiếu tới 3 ô hoặc vùng. Sau khi nhập nó được chuyển thành =AREAS((A1:B3~F2~G1))."
+msgid "COUNTA(Value1; Value2; ... Value30)"
+msgstr "COUNTA(Giá_trị1; Giá_trị2; ... Giá_trị30)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146820\n"
+"04060181.xhp\n"
+"par_id3150001\n"
"26\n"
"help.text"
-msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
-msgstr "<item type=\"input\">=AREAS(All)</item> trả về 1 nếu bạn đã xác định một vùng tên « Tất cả » dưới <emph>Dữ liệu > Xác định Phạm vi</emph>."
+msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
+msgstr "<emph>Giá_trị1, Giá_trị2, ...</emph> là 1 đến 30 đối số đại diện những giá trị cần đếm."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148727\n"
+"04060181.xhp\n"
+"hd_id3150334\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>DDE function</bookmark_value>"
-msgstr "<bookmark_value>hàm DDE</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148727\n"
+"04060181.xhp\n"
+"par_id3154508\n"
"28\n"
"help.text"
-msgid "DDE"
-msgstr "DDE"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr "Những mục nhập 2, 4, 6 và 8 trong các trường Giá trị 1-4 sẽ được đếm."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149434\n"
+"04060181.xhp\n"
+"par_id3158000\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
-msgstr "<ahelp hid=\"HID_FUNC_DDE\">Trả về kết quả của một liên kết dựa vào DDE.</ahelp> Nếu nội dung của phạm vi hay phần đã liên kết còn thay đổi, thì giá trị đã trả về sẽ cũng thay đổi. Bạn cần phải nạp lại bảng tính hoặc chọn lệnh trình đơn <emph>Sửa - Liên kết</emph> để thấy các liên kết đã cập nhật. Không cho phép liên kết đa nền tảng, v.d. liên kết từ một bản cài đặt <item type=\"productname\">%PRODUCTNAME</item> chạy từ một máy Windows đến một tài liệu được tạo trên một máy Linux."
+msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
+msgstr "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. Số đếm các số thì là 4."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150700\n"
-"30\n"
+"04060181.xhp\n"
+"bm_id3150267\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>hàm B</bookmark_value><bookmark_value>xác suất của mẫu theo phân bố nhị thức</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148886\n"
+"04060181.xhp\n"
+"hd_id3150267\n"
"31\n"
"help.text"
-msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
-msgstr "DDE(\"Phục_vụ\"; \"Tập_tin\"; \"Phạm_vi\"; Chế_độ)"
+msgid "B"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154842\n"
+"04060181.xhp\n"
+"par_id3156061\n"
"32\n"
"help.text"
-msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
-msgstr "<emph>Máy chủ</emph> là tên của máy chủ ứng dụng. Các ứng dụng trong <item type=\"productname\">%PRODUCTNAME</item> có tên máy chủ là \"Soffice\"."
+msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_B\">Trả về xác suất của một mẫu theo phân bố nhị thức.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153034\n"
+"04060181.xhp\n"
+"hd_id3150659\n"
"33\n"
"help.text"
-msgid "<emph>File</emph> is the complete file name, including path specification."
-msgstr "<emph>Tập_tin</emph> là tên tập tin hoàn toàn, gồm có đặc tả đường dẫn."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147472\n"
+"04060181.xhp\n"
+"par_id3148392\n"
"34\n"
"help.text"
-msgid "<emph>Range</emph> is the area containing the data to be evaluated."
-msgstr "<emph>Phạm_vi</emph> là vùng chứa dữ liệu cần ước tính."
+msgid "B(Trials; SP; T1; T2)"
+msgstr "B(Thử; SP; T1; T2)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152773\n"
-"184\n"
+"04060181.xhp\n"
+"par_id3149002\n"
+"35\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
-msgstr "<emph>Chế_độ</emph> là một tham số còn tùy chọn mà điều khiển phương pháp theo đó máy chủ DDE chuyển đổi dữ liệu sang số."
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr "<emph>Thử</emph> là số các phép thử không phụ thuộc."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154383\n"
-"185\n"
+"04060181.xhp\n"
+"par_id3148875\n"
+"36\n"
"help.text"
-msgid "<emph>Mode</emph>"
-msgstr "<emph>Mode</emph>"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr "<emph>SP</emph> là xác suất thành công của mỗi phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145146\n"
-"186\n"
+"04060181.xhp\n"
+"par_id3145352\n"
+"37\n"
"help.text"
-msgid "<emph>Effect</emph>"
-msgstr "<emph>Hiệu ứng</emph>"
+msgid "<emph>T1</emph> defines the lower limit for the number of trials."
+msgstr "<emph>T1</emph> đặt giới hạn dưới cho số các phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154558\n"
-"187\n"
+"04060181.xhp\n"
+"par_id3149538\n"
+"38\n"
"help.text"
-msgid "0 or missing"
-msgstr "0 hay thiếu"
+msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgstr "<emph>T2</emph> (tùy chọn) đặt giới hạn trên cho số các phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145596\n"
-"188\n"
+"04060181.xhp\n"
+"hd_id3148768\n"
+"39\n"
"help.text"
-msgid "Number format from the \"Default\" cell style"
-msgstr "Định dạng số từ kiểu dáng ô « Mặc định »"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152785\n"
-"189\n"
+"04060181.xhp\n"
+"par_id3154633\n"
+"40\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
+msgstr "Lăn súc sắc 10 lần để được số 6 hai lần có xác suất nào? Xác suất được một số 6 (hay bất cứ số cụ thể nào) là 1/6. Công thức theo đây kết hợp các phần tử này:"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154380\n"
-"190\n"
+"04060181.xhp\n"
+"par_id3149393\n"
+"41\n"
"help.text"
-msgid "Data are always interpreted in the standard format for US English"
-msgstr "Dữ liệu lúc nào cũng được đọc theo định dạng tiêu chuẩn cho tiếng Anh Mỹ"
+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> trả về xác suất 29%."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150279\n"
-"191\n"
+"04060181.xhp\n"
+"bm_id3158416\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
+msgstr "<bookmark_value>hàm RSQ</bookmark_value><bookmark_value>hệ số xác định</bookmark_value><bookmark_value>phân tích hồi quy</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153775\n"
-"192\n"
+"04060181.xhp\n"
+"hd_id3158416\n"
+"43\n"
"help.text"
-msgid "Data are retrieved as text; no conversion to numbers"
-msgstr "Dữ liệu được lấy dạng văn bản; không chuyển đổi sang số"
+msgid "RSQ"
+msgstr "RSQ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149546\n"
-"35\n"
+"04060181.xhp\n"
+"par_id3154949\n"
+"44\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
+msgstr "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Trả về hệ số tương quan Pearson bình phương dựa vào những giá trị đã cho.</ahelp> RSQ (cũng được gọi như là hệ số xác định) đo độ chính xác điều chỉnh và có thể được dùng để làm phân tích hồi quy."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148734\n"
-"36\n"
+"04060181.xhp\n"
+"hd_id3152820\n"
+"45\n"
"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
-msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"trang1.A1\")</item> thì đọc nội dung của ô A1 trên Trang 1 của bảng tính <item type=\"productname\">%PRODUCTNAME</item> Calc « data1.sxc »."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153081\n"
-"37\n"
+"04060181.xhp\n"
+"par_id3155822\n"
+"46\n"
"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
-msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Tôn chỉ của hôm nay\")</item> thì trả về một tôn chỉ trong ô chứa công thức này. Trước tiên, bạn cần phải nhập một dòng vào tài liệu « motto.sxw » chứa câu nói đã muốn, sau đó xác định nó làm dòng đầu của một phần tên <item type=\"literal\">Tôn chỉ của Hôm nay</item> (trong <item type=\"productname\">%PRODUCTNAME</item> Writer dưới <emph>Chèn > Phần</emph>). Nếu tôn chỉ được sửa đổi (và lưu lại) trong tài liệu <item type=\"productname\">%PRODUCTNAME</item> Writer, tôn chỉ được cập nhật trong tất cả các ô <item type=\"productname\">%PRODUCTNAME</item> Calc trong đó liên kết DDE này được xác định."
+msgid "RSQ(DataY; DataX)"
+msgstr "RSQ(Dữ_liệuY; Dữ_liệuX)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153114\n"
+"04060181.xhp\n"
+"par_id3150470\n"
+"47\n"
"help.text"
-msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
-msgstr "<bookmark_value>hàm ERRORTYPE</bookmark_value>"
+msgid "<emph>DataY</emph> is an array or range of data points."
+msgstr "<emph>Dữ_liệuY</emph> là một mảng hay phạm vi chứa các điểm dữ liệu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153114\n"
-"38\n"
+"04060181.xhp\n"
+"par_id3153181\n"
+"48\n"
"help.text"
-msgid "ERRORTYPE"
-msgstr "ERRORTYPE"
+msgid "<emph>DataX</emph> is an array or range of data points."
+msgstr "<emph>Dữ_liệuX</emph> là một mảng hay phạm vi chứa các điểm dữ liệu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148568\n"
-"39\n"
+"04060181.xhp\n"
+"hd_id3156258\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
-msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Trả về số tương ứng với một <link href=\"text/scalc/05/02140000.xhp\" name=\"giá trị lỗi\">giá trị lỗi</link> xảy ra trong một ô khác.</ahelp> Với sự giúp của số này, bạn có thể tạo một thông điệp lỗi."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149877\n"
-"40\n"
+"04060181.xhp\n"
+"par_id3155991\n"
+"50\n"
"help.text"
-msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
-msgstr "<emph>Thanh Trạng thái</emph> hiển thị mã lỗi đã xác định sẵn từ <item type=\"productname\">%PRODUCTNAME</item> nếu bạn nhấn vào ô chứa lỗi."
+msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
+msgstr "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> tính hệ số tương quan cho cả hai tập hợp dữ liệu trong cột A và B."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154327\n"
-"41\n"
+"04060181.xhp\n"
+"bm_id3145620\n"
+"help.text"
+msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr "<bookmark_value>hàm BETAINV</bookmark_value><bookmark_value>hàm mật độ xác suất tích lũy;đảo ngược</bookmark_value>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3145620\n"
+"52\n"
+"help.text"
+msgid "BETAINV"
+msgstr "BETAINV"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149825\n"
+"53\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Trả về nghịch đảo của hàm mật độ xác suất bêta tích lũy.</ahelp>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3152479\n"
+"54\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151322\n"
-"42\n"
+"04060181.xhp\n"
+"par_id3156300\n"
+"55\n"
"help.text"
-msgid "ERRORTYPE(Reference)"
-msgstr "ERRORTYPE(Tham_chiếu)"
+msgid "BETAINV(Number; Alpha; Beta; Start; End)"
+msgstr "BETAINV(Số; Alpha; Bêta; Đầu; Cuối)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150132\n"
-"43\n"
+"04060181.xhp\n"
+"par_id3149266\n"
+"56\n"
"help.text"
-msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
-msgstr "<emph>Tham_chiếu</emph> chứa địa chỉ cua ô trong đó lỗi xảy ra."
+msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr "<emph>Số</emph> là giá trị nằm giữa <emph>Đầu</emph> và <emph>Cuối</emph> ở đó cần tính hàm."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145248\n"
-"44\n"
+"04060181.xhp\n"
+"par_id3149710\n"
+"57\n"
+"help.text"
+msgid "<emph>Alpha</emph> is a parameter to the distribution."
+msgstr "<emph>Alpha</emph> là một tham số đối với phân bố."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156306\n"
+"58\n"
+"help.text"
+msgid "<emph>Beta</emph> is a parameter to the distribution."
+msgstr "<emph>Bêta</emph> là một tham số đối với phân bố."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150960\n"
+"59\n"
+"help.text"
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "<emph>Đầu</emph> (tùy chọn) là giới hạn dưới của <emph>Số</emph>."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3151268\n"
+"60\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "<emph>Cuối</emph> (tùy chọn) là giới hạn trên của <emph>Số</emph>."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_idN109DF\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3147077\n"
+"61\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146904\n"
-"45\n"
+"04060181.xhp\n"
+"par_id3146859\n"
+"62\n"
"help.text"
-msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
-msgstr "Nếu ô A1 hiển thị « Err:518 », hàm <item type=\"input\">=ERRORTYPE(A1)</item> trả về số 518."
+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> trả về giá trị 0,33."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3151221\n"
+"04060181.xhp\n"
+"bm_id3156096\n"
"help.text"
-msgid "<bookmark_value>INDEX function</bookmark_value>"
-msgstr "<bookmark_value>hàm INDEX</bookmark_value>"
+msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr "<bookmark_value>hàm BETADIST</bookmark_value><bookmark_value>hàm mật độ xác suất tích lũy;tính</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151221\n"
-"47\n"
+"04060181.xhp\n"
+"hd_id3156096\n"
+"64\n"
"help.text"
-msgid "INDEX"
-msgstr "INDEX"
+msgid "BETADIST"
+msgstr "BETADIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150268\n"
-"48\n"
+"04060181.xhp\n"
+"par_id3150880\n"
+"65\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_INDEX\">Hàm INDEX trả về một phạm vi phụ, được xác định theo số thứ tự hàng/cột, hay một chỉ số phạm vi còn tùy chọn. Phụ thuộc vào ngữ cảnh, hàm INDEX trả về một tham chiếu hay nội dung.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Trả về phân bố t.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3156063\n"
-"49\n"
+"04060181.xhp\n"
+"hd_id3150762\n"
+"66\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149007\n"
-"50\n"
+"04060181.xhp\n"
+"par_id3147571\n"
+"67\n"
"help.text"
-msgid "INDEX(Reference; Row; Column; Range)"
-msgstr "INDEX(Tham_chiếu; Hàng; Cột; Phạm_vi)"
+msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
+msgstr "BETADIST(Số; Alpha; Bêta; Đầu; Cuối)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153260\n"
-"51\n"
+"04060181.xhp\n"
+"par_id3156317\n"
+"68\n"
"help.text"
-msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
-msgstr "<emph>Tham_chiếu</emph> là một tham chiếu, được nhập hoặc một cách trực tiếp hoặc bằng cách ghi rõ một tên phạm vi. Nếu tham chiếu chứa nhiều phạm vi, bạn cần phải đặt tên của tham chiếu hay phạm vi giữa dấu ngoặc đơn."
+msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr "<emph>Số</emph> là giá trị nằm giữa <emph>Đầu</emph> và <emph>Cuối</emph> ở đó cần tính hàm."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145302\n"
-"52\n"
+"04060181.xhp\n"
+"par_id3156107\n"
+"69\n"
"help.text"
-msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
-msgstr "<emph>Hàng</emph> (tùy chọn) đại diện chỉ số hàng của phạm vi tham chiếu, cho đó cần trả về một giá trị. Trong trường hợp 0 (không có hàng cụ thể), trả về tất cả các hàng đã tham chiếu."
+msgid "<emph>Alpha</emph> is a parameter to the distribution."
+msgstr "<emph>Alpha</emph> là một tham số đối với phân bố."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154628\n"
-"53\n"
+"04060181.xhp\n"
+"par_id3153619\n"
+"70\n"
"help.text"
-msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
-msgstr "<emph>Cột</emph> (tùy chọn) đại diện chỉ số cột của phạm vi tham chiếu, cho đó cần trả về một giá trị. Trong trường hợp 0 (không có cột cụ thể), trả về tất cả các cột đã tham chiếu."
+msgid "<emph>Beta</emph> is a parameter to the distribution."
+msgstr "<emph>Bêta</emph> là một tham số đối với phân bố."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155514\n"
-"54\n"
+"04060181.xhp\n"
+"par_id3150254\n"
+"71\n"
"help.text"
-msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
-msgstr "<emph>Phạm_vi</emph> (tùy chọn) đại diện chỉ số của phạm vi phụ, nế tham chiếu đện một phạm vi đa mục."
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "<emph>Đầu</emph> (tùy chọn) là giới hạn dưới của <emph>Số</emph>."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145264\n"
-"55\n"
+"04060181.xhp\n"
+"par_id3149138\n"
+"72\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "<emph>Cuối</emph> (tùy chọn) là giới hạn trên của <emph>Số</emph>."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id012020091254453\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
+msgstr "<emph>Cumulative</emph> (tùy chọn): nếu giá trị 0 hoặc False sẽ tính Hàm mật độ xác xuất. Giá trị khác hoặc True, hoặc bỏ trống, sẽ tính Hàm phân bố tích lũy."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_idN10AB3\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3145649\n"
+"73\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159112\n"
-"56\n"
+"04060181.xhp\n"
+"par_id3156118\n"
+"74\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
-msgstr "<item type=\"input\">=INDEX(Prices;4;1)</item> trả về giá trị từ hàng 4, cột 1 của phạm vi cơ sở dữ liệu được xác định dưới <emph>Dữ liệu > Xác định</emph> như là <emph>Giá</emph> (Prices)."
+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> trả về giá trị 0,96"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150691\n"
-"57\n"
+"04060181.xhp\n"
+"bm_id3143228\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SumX;4;1)</item> trả về giá trị từ phạm vi <emph>SumX</emph> trong hàng 4, cột 1 như được xác định dưới <emph>Chèn > Tên > Xác định</emph>."
+msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr "<bookmark_value>hàm BINOMDIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4109012\n"
+"04060181.xhp\n"
+"hd_id3143228\n"
+"76\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
-msgstr "<item type=\"input\">=INDEX(A1:B6;1)</item> trả về một tham chiếu đến hàng đầu tiên của khối A1:B6."
+msgid "BINOMDIST"
+msgstr "BINOMDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9272133\n"
+"04060181.xhp\n"
+"par_id3146897\n"
+"77\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
-msgstr "<item type=\"input\">=INDEX(A1:B6;0;1)</item> trả về một tham chiếu đến cột đầu tiên của khối A1:B6."
+msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Trả về xác suất phân bố nhị thức số hạng riêng biệt.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3158419\n"
-"58\n"
+"04060181.xhp\n"
+"hd_id3149289\n"
+"78\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> ngụ ý giá trị được chứa trong hàng 4, cột 1 của phạm vi (đa mục), tên của đó bạn đã đặt dưới <emph>Chèn > Tên > Đặt</emph> như là <emph>đa</emph> (multi). Phạm vi đa mục có thể chứa vài phạm vi hình chữ nhật khác nhau, mỗi phạm vi có một hàng 4, cột 1. Sau đó, nếu bạn muốn gọi khối thứ hai của phạm vi đa mục này, gõ số <item type=\"input\">2</item> làm tham số <emph>phạm vi</emph>."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148595\n"
-"59\n"
+"04060181.xhp\n"
+"par_id3156009\n"
+"79\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
-msgstr "<item type=\"input\">=INDEX(A1:B6;1;1)</item> ngụ ý giá trị ở góc trên, bên trái của phạm vi A1:B6."
+msgid "BINOMDIST(X; Trials; SP; C)"
+msgstr "BINOMDIST(X; Thử; SP; C)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9960020\n"
+"04060181.xhp\n"
+"par_id3154304\n"
+"80\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
-msgstr "<item type=\"input\">=INDEX((multi);0;0;2)</item> trả về một tham chiếu đến phạm vi thứ hai của phạm vi đa mục."
+msgid "<emph>X</emph> is the number of successes in a set of trials."
+msgstr "<emph>X</emph> là số lần thành công trong một dãy phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153181\n"
+"04060181.xhp\n"
+"par_id3147492\n"
+"81\n"
"help.text"
-msgid "<bookmark_value>INDIRECT function</bookmark_value>"
-msgstr "<bookmark_value>hàm INDIRECT</bookmark_value>"
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr "<emph>Thử</emph> là số các phép thử không phụ thuộc."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153181\n"
-"62\n"
+"04060181.xhp\n"
+"par_id3146085\n"
+"82\n"
"help.text"
-msgid "INDIRECT"
-msgstr "INDIRECT"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr "<emph>SP</emph> là xác suất thành công của mỗi phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147169\n"
-"63\n"
+"04060181.xhp\n"
+"par_id3149760\n"
+"83\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
-msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">Trả về <emph>tham chiếu</emph> được một chuỗi văn bản ghi rõ.</ahelp> Hàm này cũng có thể được dùng để trả về vùng của một chuỗi tương ứng."
+msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+msgstr "<emph>C</emph> = 0 tính xác suất của một sự kiện riêng lẻ, và <emph>C</emph> = 1 tính xác suất tích lũy."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153717\n"
-"64\n"
+"04060181.xhp\n"
+"hd_id3151171\n"
+"84\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149824\n"
-"65\n"
+"04060181.xhp\n"
+"par_id3145666\n"
+"85\n"
"help.text"
-msgid "INDIRECT(Ref; A1)"
-msgstr "INDIRECT(Tham_chiếu; A1)"
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> hiển thị (nếu những giá trị <item type=\"input\">0</item> đến <item type=\"input\">12</item> được nhập vào ô A1) xác suất trong 12 lần búng đồng tiền sẽ có <emph>Ngửa</emph> số lần được nhập vào ô A1."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154317\n"
-"66\n"
+"04060181.xhp\n"
+"par_id3150120\n"
+"86\n"
"help.text"
-msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
-msgstr "<emph>Tham_chiếu</emph> đại diện một tham chiếu đến một ô hay vùng (theo dạng văn bản) cho đó cần trả về nội dung."
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
+msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> hiển thị những xác suất tích lũy cho cùng một chuỗi. Thí dụ, nếu A1 = <item type=\"input\">4</item>, thì xác suất tích lũy của chuỗi là 0, 1, 2, 3 hay 4 lần có <emph>Ngửa</emph> (HOẶC không loại)."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802470312\n"
+"04060181.xhp\n"
+"bm_id0119200902432928\n"
"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr "<emph>A1</emph> (optional) - nếu có giá trị là 0 thì kiểu kí hiệu R1C1 sẽ được sử dụng, trái lại nếu như tham số này không có mặt hoặc có giá trị khác 0 thì kiểu kí hiệu A1 sẽ được sử dụng."
+msgid "<bookmark_value>CHISQINV function</bookmark_value>"
+msgstr "<bookmark_value>hàm CHIINV</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN10CAE\n"
+"04060181.xhp\n"
+"hd_id0119200902421451\n"
"help.text"
-msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
-msgstr "Nếu bạn mở một bảng tính Excel mà dùng địa chỉ gián tiếp được tính từ hàm chuỗi, các địa chỉ bảng đó sẽ không được tự động đọc. Ví dụ, địa chỉ Excel trong INDIRECT(\"filename!sheetname\"&B1) không được chuyển đổi sang địa chỉ Calc trong INDIRECT(\"filename.sheetname\"&B1)."
+msgid "CHISQINV"
+msgstr "CHIINV"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150389\n"
-"67\n"
+"04060181.xhp\n"
+"par_id0119200902421449\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
+msgstr "<ahelp hid=\".\">Trả về nghịch đảo của CHISQDIST.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150608\n"
-"68\n"
+"04060181.xhp\n"
+"hd_id0119200902475241\n"
"help.text"
-msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
-msgstr "<item type=\"input\">=INDIRECT(A1)</item> bằng với 100 nếu ô A1 chứa C108 làm tham chiếu và C108 chứa giá trị <item type=\"input\">100</item>."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3083286\n"
-"181\n"
+"04060181.xhp\n"
+"par_id0119200902475286\n"
"help.text"
-msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
-msgstr "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> cộng lại tất cả các ô trong vùng từ A1 đến ô có địa chỉ được xác định bởi hàng 1, cột 3. Vì thế cộng lại vùng A1:C3."
+msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố Gama (γ) ngược."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3154818\n"
+"04060181.xhp\n"
+"par_id0119200902475282\n"
"help.text"
-msgid "<bookmark_value>COLUMN function</bookmark_value>"
-msgstr "<bookmark_value>hàm COLUMN</bookmark_value>"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154818\n"
-"70\n"
+"04060181.xhp\n"
+"bm_id3148835\n"
"help.text"
-msgid "COLUMN"
-msgstr "COLUMN"
+msgid "<bookmark_value>CHIINV function</bookmark_value>"
+msgstr "<bookmark_value>hàm CHIINV</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149711\n"
-"193\n"
+"04060181.xhp\n"
+"hd_id3148835\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
-msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">Trả về số thứ tự cột của một tham chiếu ô.</ahelp> Nếu tham chiếu là một ô, thì trả về số thứ tự cột của ô đó ; nếu tham số là một vùng ô, thì số cột tương ứng sẽ được trả về theo một <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"mảng\">mảng</link> nếu công thức được nhập vào <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"như một công thức mảng\">như một công thức mảng</link>. Nếu hàm COLUMN với một tham số tham chiếu vùng không phải được dùng cho một công thức mảng, thì quyết định chỉ số thứ tự cột của ô thứ nhất bên trong vùng đó."
+msgid "CHIINV"
+msgstr "CHIINV"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149283\n"
-"72\n"
+"04060181.xhp\n"
+"par_id3149906\n"
+"89\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Trả về nghịch đảo của xác suất đuôi đơn của phân bố χ².</ahelp>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3159157\n"
+"90\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149447\n"
-"73\n"
+"04060181.xhp\n"
+"par_id3150504\n"
+"91\n"
"help.text"
-msgid "COLUMN(Reference)"
-msgstr "COLUMN(Tham_chiếu)"
+msgid "CHIINV(Number; DegreesFreedom)"
+msgstr "CHIINV(Số; Bậc_tự_do)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156310\n"
-"74\n"
+"04060181.xhp\n"
+"par_id3154898\n"
+"92\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
-msgstr "<emph>Tham_chiếu</emph> là tham chiếu đến một ô hay vùng ô có số thứ tự cột đầu tiên cần tìm."
+msgid "<emph>Number</emph> is the value of the error probability."
+msgstr "<emph>Số</emph> là giá trị của xác suất lỗi."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155837\n"
-"194\n"
+"04060181.xhp\n"
+"par_id3154294\n"
+"93\n"
"help.text"
-msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
-msgstr "Không nhập tham chiếu thì tìm số thứ tự cột của ô chứa công thức. <item type=\"productname\">%PRODUCTNAME</item> Calc tự động đặt tham chiếu thành ô hiện tại."
+msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3152932\n"
-"75\n"
+"04060181.xhp\n"
+"hd_id3154208\n"
+"94\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147571\n"
-"76\n"
+"04060181.xhp\n"
+"par_id3150777\n"
+"130\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
-msgstr "<item type=\"input\">=COLUMN(A1)</item> bằng với 1. Cột A là cột đầu tiên của bảng."
+msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+msgstr "Một súc sắc được lăn 1020 lần. Những số trên các mặt của súc sắc (1-6) thắng 195, 151, 148, 189, 183 và 154 lần riêng từng số (các giá trị quan sát). Mục đích là chứng minh giả thiết rằng súc sắc lăn đều."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147079\n"
-"77\n"
+"04060181.xhp\n"
+"par_id3153062\n"
+"131\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
-msgstr "<item type=\"input\">=COLUMN(C3:E3)</item> bằng với 3. Cột C là cột thứ ba của bảng."
+msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+msgstr "Phân bố χ² của mẫu ngẫu nhiên được xác định bởi công thức đưa ra trên. Khi lăn súc sắc n lần, xác suất được một số nào đó trong cả n lần lăn đó là (n × 1/6), thì 1020/6 = 170, và công thức trả về giá trị χ² là 13,27."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146861\n"
-"195\n"
+"04060181.xhp\n"
+"par_id3148806\n"
+"132\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
-msgstr "<item type=\"input\">=COLUMN(D3:G10)</item> trả về 4 vì cột D là cột thứ tư của bảng, và hàm COLUMN không được dùng làm công thức mảng. (Trong trường hợp này, giá trị thứ nhất của mảng lúc nào cũng được dùng làm kết quả.)"
+msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+msgstr "Nếu χ² (quan sát) lớn hơn hay bằng χ² (lý thuyết) CHIINV, thì giả thiết bị hủy, vì lý thuyết và kết quả phép thử quá khác nhau. Nếu χ² quan sát nhỏ hơn CHIINV, thì lý thuyết được xác nhận với xác suất lỗi đã ngụ ý."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156320\n"
-"196\n"
+"04060181.xhp\n"
+"par_id3149763\n"
+"95\n"
"help.text"
-msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
-msgstr "Hai công thức <item type=\"input\">{=COLUMN(B2:B7)}</item> và <item type=\"input\">=COLUMN(B2:B7)</item> đều trả về 2 vì tham chiếu chỉ chứa cột B làm cột thứ hai của bảng. Vì vùng cột đơn chỉ có một số thứ tự cột, không phân biệt giữa công thức bình thường và công thức dạng công thức mảng."
+msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
+msgstr "<item type=\"input\">=CHIINV(0.05;5)</item> trả về 11.07."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150872\n"
-"197\n"
+"04060181.xhp\n"
+"par_id3159142\n"
+"133\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
-msgstr "<item type=\"input\">=COLUMN()</item> trả về 3 nếu công thức được nhập vào cột C."
+msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
+msgstr "<item type=\"input\">=CHIINV(0.02;5)</item> trả về 13.39."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153277\n"
-"198\n"
+"04060181.xhp\n"
+"par_id3158401\n"
+"134\n"
"help.text"
-msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
-msgstr "<item type=\"input\">{=COLUMN(Chó)}</item> trả về mảng hàng đơn (3, 4) nếu con « Chó » là vùng đặt tên (C1:D3)."
+msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+msgstr "Nếu xác suất lỗi là 5%, thì xúc sắc không lăn đều. Nếu xác suất lỗi là 2%, không có lý do tin rằng xúc sắc đã được lăn đúng."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3154643\n"
+"04060181.xhp\n"
+"bm_id3154260\n"
"help.text"
-msgid "<bookmark_value>COLUMNS function</bookmark_value>"
-msgstr "<bookmark_value>hàm COLUMNS</bookmark_value>"
+msgid "<bookmark_value>CHITEST function</bookmark_value>"
+msgstr "<bookmark_value>hàm CHITEST</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154643\n"
-"79\n"
+"04060181.xhp\n"
+"hd_id3154260\n"
+"97\n"
"help.text"
-msgid "COLUMNS"
-msgstr "COLUMNS"
+msgid "CHITEST"
+msgstr "CHITEST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151182\n"
-"80\n"
+"04060181.xhp\n"
+"par_id3151052\n"
+"98\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">Trả về số các cột có trong tham chiếu đã cho.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
+msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Trả về xác suất của sự lệch khỏi một phân bố ngẫu nhiên của hai chuỗi thử dựa vào phép thử χ² tính độc lập.</ahelp> CHITEST trả về phân bố χ² của dữ liệu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149141\n"
-"81\n"
+"04060181.xhp\n"
+"par_id3148925\n"
+"135\n"
+"help.text"
+msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgstr "Xác suất được hàm CHITEST xác định cũng có thể được hàm CHIDIST xác định, trong trường hợp đo χ² của mẫu ngẫu nhiên phải được gửi dạng tham số thay cho hàng dữ liệu."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3154280\n"
+"99\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154047\n"
-"82\n"
+"04060181.xhp\n"
+"par_id3149162\n"
+"100\n"
"help.text"
-msgid "COLUMNS(Array)"
-msgstr "COLUMNS(Mảng)"
+msgid "CHITEST(DataB; DataE)"
+msgstr "CHITEST(Dữ_liệuB; Dữ_liệuE)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154745\n"
-"83\n"
+"04060181.xhp\n"
+"par_id3158421\n"
+"101\n"
"help.text"
-msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
-msgstr "<emph>Mảng</emph> là tham chiếu đến một phạm vi các ô có tổng số cột cần tìm. Đối số cũng có thể là một ô riêng lẻ."
+msgid "<emph>DataB</emph> is the array of the observations."
+msgstr "<emph>Dữ_liệuB</emph> là mảng các sự quan sát."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153622\n"
-"84\n"
+"04060181.xhp\n"
+"par_id3166453\n"
+"102\n"
+"help.text"
+msgid "<emph>DataE</emph> is the range of the expected values."
+msgstr "<emph>Dữ_liệuE</emph> là phạm vi các giá trị mong đợi."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3146946\n"
+"103\n"
"help.text"
msgid "Example"
msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149577\n"
-"200\n"
+"04060181.xhp\n"
+"par_id3154096\n"
+"136\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
-msgstr "<item type=\"input\">=COLUMNS(B5)</item> trả về 1 vì một ô chỉ chứa một cột."
+msgid "Data_B (observed)"
+msgstr "Dữ_liệuB (quan sát)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145649\n"
-"85\n"
+"04060181.xhp\n"
+"par_id3152948\n"
+"137\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
-msgstr "<item type=\"input\">=COLUMNS(A1:C5)</item> bằng với 3. Tham chiếu chứa ba cột."
+msgid "Data_E (expected)"
+msgstr "Dữ_liệuE (mong đợi)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155846\n"
-"201\n"
+"04060181.xhp\n"
+"par_id3152876\n"
+"138\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
-msgstr "<item type=\"input\">=COLUMNS(Chó)</item> trả về 2 nếu con <item type=\"literal\">Chó</item> là phạm vi đặt tên (C1:D3)."
+msgid "1"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153152\n"
+"04060181.xhp\n"
+"par_id3159279\n"
+"139\n"
"help.text"
-msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>chức năng tìm kiếm theo chiều dọc</bookmark_value><bookmark_value>hàm VLOOKUP</bookmark_value>"
+msgid "<item type=\"input\">195</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153152\n"
-"87\n"
+"04060181.xhp\n"
+"par_id3149105\n"
+"140\n"
"help.text"
-msgid "VLOOKUP"
-msgstr "VLOOKUP"
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149984\n"
-"88\n"
+"04060181.xhp\n"
+"par_id3149922\n"
+"141\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Tìm kiếm theo chiều dọc với tham chiếu đến các ô kề nhau bên phải.</ahelp> Hàm này kiểm tra nếu một giá trị nào đó được chứa trong cột đầu của một mảng. Hàm thì trả về giá trị trên cùng hàng của cột có tên đặt bởi <item type=\"literal\">Index</item> (chỉ số). Nếu tham số <item type=\"literal\">SortOrder</item> (thứ tự sắp xếp) bị bỏ sót hay đặt thành TRUE (Đúng) hay số một, thì giả sử dữ liệu được sắp xếp theo thứ tự tăng dần. Trong trường hợp này, nếu không tìm thấy <item type=\"literal\">SearchCriterion</item> (tiêu chuẩn tìm kiếm) chính xác, trả về giá trị cuối cùng mà nhỏ hơn tiêu chuẩn đó. Nếu <item type=\"literal\">SortOrder</item> được đặt thành FALSE (Sai) hay số không, thì phải tìm mục tương ứng chính xác, không thì kết quả là thông điệp lỗi <emph>Lỗi: Giá trị không tồn tại</emph>. Do đó khi có giá trị số không, dữ liệu không cần được sắp xếp theo thứ tự tăng dần."
+msgid "2"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146898\n"
-"89\n"
+"04060181.xhp\n"
+"par_id3148621\n"
+"142\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">151</item>"
+msgstr "<item type=\"input\">151</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150156\n"
-"90\n"
+"04060181.xhp\n"
+"par_id3148987\n"
+"143\n"
"help.text"
-msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
-msgstr "=VLOOKUP(Tiêu_chuẩn_tìm; Mảng; Chỉ_số; Thứ_tự_sắp_xếp)"
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149289\n"
-"91\n"
+"04060181.xhp\n"
+"par_id3149417\n"
+"144\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
-msgstr "<emph>Tiêu_chuẩn_tìm</emph> là giá trị được tìm trong cột đầu của mảng."
+msgid "3"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153884\n"
-"92\n"
+"04060181.xhp\n"
+"par_id3148661\n"
+"145\n"
"help.text"
-msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
-msgstr "<emph>Mảng</emph> là tham chiếu, mà phải trải ra ít nhất hai cột."
+msgid "<item type=\"input\">148</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156005\n"
-"93\n"
+"04060181.xhp\n"
+"par_id3151128\n"
+"146\n"
"help.text"
-msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
-msgstr "<emph>Chỉ_số</emph> là số thứ tự của cột trong mảng mà chứa giá trị cần trả về. Cột đầu có số thứ tự 1."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151208\n"
-"94\n"
+"04060181.xhp\n"
+"par_id3148467\n"
+"147\n"
"help.text"
-msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
-msgstr "<emph>Thứ_tự_sắp_xếp</emph> là một tham số tùy chọn chỉ ra liệu cột đầu trong mảng có được sắp xếp theo thứ tự tăng dần hay không. Nhập hoặc giá trị lôgic FALSE (Sai) hoặc số không nếu cột đầu không phải được sắp xếp theo thứ tự tăng dần. Các cột đã sắp xếp thì được tìm kiếm rất nhanh hơn, và hàm luôn luôn trả về giá trị, thậm chí nếu giá trị tìm không có giá trị tương ứng chính xác nếu nó nằm giữa giá trị đầu và giá trị cuối của danh sách được sắp xếp. Trong danh sách không sắp xếp, giá trị tìm kiếm phải phù hợp chính xác. Nếu không hàm sẽ trả về thông điệp này: <emph>Lỗi: Giá trị không tồn tại</emph>."
+msgid "4"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147487\n"
-"95\n"
+"04060181.xhp\n"
+"par_id3149237\n"
+"148\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<item type=\"input\">189</item>"
+msgstr "<item type=\"input\">189</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154129\n"
-"96\n"
+"04060181.xhp\n"
+"par_id3145304\n"
+"149\n"
"help.text"
-msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
-msgstr "Bạn muốn nhập vào ô A1 số thứ tự của một món ăn nào đó trong thực đơn (trong tiệm ăn), và tên của món ăn đó sẽ xuất hiện ngay lập tức dạng chuỗi văn bản trong ô bên cạnh (B1). Sự gán Số sang Tên được chứa trong mảng D1:E100. D1 chứa <item type=\"input\">100</item>, E1 chứa tên <item type=\"input\">Xúp Rau</item>, vân vân, đối với 100 mục trong thực đơn. Các số trong cột D được sắp xếp theo thứ tự tăng dần; do đó không cần dùng tham số <item type=\"literal\">Thứ_tự_sắp_xếp</item> còn tùy chọn."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145663\n"
-"97\n"
+"04060181.xhp\n"
+"par_id3149927\n"
+"150\n"
"help.text"
-msgid "Enter the following formula in B1:"
-msgstr "Hãy nhập vào ô B1 công thức này:"
+msgid "5"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151172\n"
-"98\n"
+"04060181.xhp\n"
+"par_id3150630\n"
+"151\n"
"help.text"
-msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
-msgstr "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+msgid "<item type=\"input\">183</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149200\n"
-"99\n"
+"04060181.xhp\n"
+"par_id3150423\n"
+"152\n"
"help.text"
-msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
-msgstr "Một khi bạn nhập một số vào ô A1, ô B1 sẽ hiển thị chuỗi văn bản tương ứng được chứa trong cột thứ hai của tham chiếu D1:E100. Nhập một số không tồn tại thì hiển thị chuỗi văn bản có số kế tiếp, về hướng xuống. Để ngăn cản trường hợp này, nhập FALSE (Sai) làm tham số cuối cùng trong công thức, để tạo một thông điệp lỗi khi một số không tồn tại được nhập vào."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153905\n"
+"04060181.xhp\n"
+"par_id3143275\n"
+"153\n"
"help.text"
-msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
-msgstr "<bookmark_value>số thứ tự trang tính; tra cứu</bookmark_value><bookmark_value>hàm SHEET</bookmark_value>"
+msgid "6"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153905\n"
-"215\n"
+"04060181.xhp\n"
+"par_id3144750\n"
+"154\n"
"help.text"
-msgid "SHEET"
-msgstr "SHEET"
+msgid "<item type=\"input\">154</item>"
+msgstr "<item type=\"input\">154</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150309\n"
-"216\n"
+"04060181.xhp\n"
+"par_id3153947\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
-msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Trả về số thứ tự trang tính của một tham chiếu hay chuỗi đại diện một tên trang tính.</ahelp> Nếu bạn không nhập vào tham số thì kết quả là số thứ tự trang tính của bảng tính chứa công thức đó."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148564\n"
-"217\n"
+"04060181.xhp\n"
+"par_id3149481\n"
+"104\n"
+"help.text"
+msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+msgstr "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> bằng 0,02. Đây là xác suất tương ứng với dữ liệu đã quan sát của phân bố χ² lý thuyết."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3148690\n"
+"help.text"
+msgid "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr "<bookmark_value>hàm CHIDIST</bookmark_value>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3148690\n"
+"106\n"
+"help.text"
+msgid "CHIDIST"
+msgstr "CHIDIST"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156338\n"
+"156\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Trả về giá trị xác suất từ χ² đã ngụ ý rằng giả thiết đã được xác nhận.</ahelp> Hàm CHIDIST so sánh giá trị χ² đưa ra cho một mẫu ngẫu nhiên được tính từ tổng (giá trị quan sát - giá trị mong đợi)^2/giá trị mong đợi cho tất cả các giá trị với phân bố χ² lý thuyết, và xác định từ dữ liệu này xác suất lỗi cho giả thiết cần thử."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3151316\n"
+"157\n"
+"help.text"
+msgid "The probability determined by CHIDIST can also be determined by CHITEST."
+msgstr "Xác suất được hàm CHIDIST xác định cũng có thể được hàm CHITEST xác định."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3155123\n"
+"108\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153095\n"
-"218\n"
+"04060181.xhp\n"
+"par_id3158439\n"
+"109\n"
"help.text"
-msgid "SHEET(Reference)"
-msgstr "SHEET(Tham_chiếu)"
+msgid "CHIDIST(Number; DegreesFreedom)"
+msgstr "CHIDIST(Số; Bậc_tự_do)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154588\n"
-"219\n"
+"04060181.xhp\n"
+"par_id3148675\n"
+"110\n"
"help.text"
-msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
-msgstr "<emph>Tham_chiếu</emph> còn tùy chọn: nó là tham chiếu đến một ô, vùng hay chuỗi tên trang tính."
+msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgstr "<emph>Số</emph> là giá trị χ² của mẫu ngẫu nhiên được dùng để xác định xác suất lỗi."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155399\n"
-"220\n"
+"04060181.xhp\n"
+"par_id3155615\n"
+"111\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3146787\n"
+"112\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146988\n"
-"221\n"
+"04060181.xhp\n"
+"par_id3145774\n"
+"113\n"
"help.text"
-msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
-msgstr "<item type=\"input\">=SHEET(Trang2.A1)</item> thì trả về 2 nếu Trang2 là trang tính thứ hai của tài liệu bảng tính."
+msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
+msgstr "<item type=\"input\">=CHIDIST(13.27; 5)</item> bằng 0,02."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148829\n"
+"04060181.xhp\n"
+"par_id3156141\n"
+"158\n"
"help.text"
-msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
-msgstr "<bookmark_value>số trang tính; hàm</bookmark_value><bookmark_value>hàm SHEETS</bookmark_value>"
+msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+msgstr "Nếu giá trị χ² của mẫu ngẫu nhiên là 13,27, và phép thử có 5 bậc tự do, thì giả thiết chắc chắc với xác suất lỗi 2%."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148829\n"
-"222\n"
+"04060181.xhp\n"
+"bm_id0119200902231887\n"
"help.text"
-msgid "SHEETS"
-msgstr "SHEETS"
+msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
+msgstr "<bookmark_value>hàm LOGNORMDIST</bookmark_value><bookmark_value>phân bố chuẩn lôga tích lũy</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148820\n"
-"223\n"
+"04060181.xhp\n"
+"hd_id0119200901583452\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
-msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">Xác định số trang tính trong một tham chiếu.</ahelp> Nếu bạn không nhập vào tham số thì nó trả về số trang tính trong tài liệu hiện tại."
+msgid "CHISQDIST"
+msgstr "CHIDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154220\n"
-"224\n"
+"04060181.xhp\n"
+"par_id0119200901583471\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
+msgstr "<ahelp hid=\".\">Trả về giá trị của Hàm mật độ xác xuất hoặc Hàm phân bố tích lũy cho phân bố chi-square (x-bình phương).</ahelp>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id0119200902395520\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150777\n"
-"225\n"
+"04060181.xhp\n"
+"par_id0119200902395679\n"
"help.text"
-msgid "SHEETS(Reference)"
-msgstr "SHEETS(Tham_chiếu)"
+msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
+msgstr "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153060\n"
-"226\n"
+"04060181.xhp\n"
+"par_id011920090239564\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
-msgstr "<emph>Tham_chiếu</emph> là tham chiếu đến một trang tính hay vùng. Tham số này còn tùy chọn."
+msgid "<emph>Number</emph> is the number for which the function is to be calculated."
+msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố F."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149766\n"
-"227\n"
+"04060181.xhp\n"
+"par_id0119200902395660\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150507\n"
-"228\n"
+"04060181.xhp\n"
+"par_id0119200902395623\n"
"help.text"
-msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
-msgstr "<item type=\"input\">=SHEETS(Trang1.A1:Trang3.G12)</item> trả về 3 nếu Trang tính số 1-3 nằm theo thứ tự được ngụ ý."
+msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
+msgstr "<emph>Cumulative</emph> (tùy chọn): nếu giá trị 0 hoặc False sẽ tính Hàm mật độ xác xuất. Giá trị khác hoặc True, hoặc bỏ trống, sẽ tính Hàm phân bố tích lũy."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3158407\n"
+"04060181.xhp\n"
+"bm_id3150603\n"
"help.text"
-msgid "<bookmark_value>MATCH function</bookmark_value>"
-msgstr "<bookmark_value>hàm MATCH</bookmark_value>"
+msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr "<bookmark_value>hàm EXPONDIST</bookmark_value><bookmark_value>phân bố số mũ</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158407\n"
-"101\n"
+"04060181.xhp\n"
+"hd_id3150603\n"
+"115\n"
"help.text"
-msgid "MATCH"
-msgstr "MATCH"
+msgid "EXPONDIST"
+msgstr "EXPONDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154896\n"
-"102\n"
+"04060181.xhp\n"
+"par_id3149563\n"
+"116\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
-msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">Trả về vị trí tương đối của một mục trong một mảng tương ứng với một giá trị đã ghi rõ.</ahelp> Hàm này trả về vị trí của biến được tìm trong lookup_array (mảng tra cứu) dạng số."
+msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Trả về phân bố theo luất số mũ.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153834\n"
-"103\n"
+"04060181.xhp\n"
+"hd_id3153789\n"
+"117\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159152\n"
-"104\n"
+"04060181.xhp\n"
+"par_id3150987\n"
+"118\n"
"help.text"
-msgid "MATCH(SearchCriterion; LookupArray; Type)"
-msgstr "MATCH(Tiêu_chuẩn_tìm; Mảng_tra_cứu; Kiểu)"
+msgid "EXPONDIST(Number; Lambda; C)"
+msgstr "EXPONDIST(Số; λ; C)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149336\n"
-"105\n"
+"04060181.xhp\n"
+"par_id3154663\n"
+"119\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
-msgstr "<emph>Tiêu_chuẩn_tìm</emph> là giá trị cần tìm trong mảng cột/hàng đơn."
+msgid "<emph>Number</emph> is the value of the function."
+msgstr "<emph>Số</emph> là giá trị của hàm."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159167\n"
-"106\n"
+"04060181.xhp\n"
+"par_id3154569\n"
+"120\n"
"help.text"
-msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
-msgstr "<emph>Mảng_tra_cứu</emph> là tham chiếu trong đó cần tìm kiếm. Một mảng tra cứu có thể là một hàng/cột đơn, hay phần của một hàng/cột đơn."
+msgid "<emph>Lambda</emph> is the parameter value."
+msgstr "<emph>λ</emph> (Lamdda) là giá trị tham số."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147239\n"
-"107\n"
+"04060181.xhp\n"
+"par_id3147332\n"
+"121\n"
"help.text"
-msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
-msgstr "<emph>Kiểu</emph> có thể đại diện một của những giá trị (1, 0, -1). Nếu kiểu là 1 hay không đưa ra tham số tùy chọn này, giả sử rằng cột đầu của mảng tìm được sắp xếp theo thứ tự tăng dần. Nếu kiểu là -1, giả sử rằng cột được sắp xếp theo thứ tự giảm dần. Đây tương ứng với cùng một hàm trong MS Excel."
+msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+msgstr "<emph>C</emph> là một giá trị lôgic mà xác định dạng của hàm. <emph>C = 0</emph> tính hàm mật độ, và <emph>C = 1</emph> tính phân bố."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154265\n"
-"231\n"
+"04060181.xhp\n"
+"hd_id3146133\n"
+"122\n"
"help.text"
-msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
-msgstr "Nếu kiểu là 0, chỉ tìm mục tương ứng chính xác. Nếu tiêu chuẩn tìm kiếm được tìm nhiều lần, hàm trả về chỉ số của giá trị tương ứng đầu tiên. Chỉ khi kiểu là 0, bạn có thể tìm kiếm dùng biểu thức chính quy."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147528\n"
-"232\n"
+"04060181.xhp\n"
+"par_id3150357\n"
+"123\n"
"help.text"
-msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
-msgstr "Nếu kiểu là 1, hay không đưa ra tham số thứ ba, thì trả về chỉ số của giá trị cuối cùng nhỏ hơn hay bằng với tiêu chuẩn tìm kiếm. Trường hợp này có tác động ngay cả khi mảng tìm không phải được sắp xếp. Đối với kiểu -1, trả về giá trị đầu lớn hơn hay bằng."
+msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
+msgstr "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> trả về 0,78."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155119\n"
-"108\n"
+"04060182.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Statistical Functions Part Two"
+msgstr "Hàm Thống Kê Phần 2"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155343\n"
-"109\n"
+"04060182.xhp\n"
+"hd_id3154372\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
-msgstr "<item type=\"input\">=MATCH(200;D1:D100)</item> tìm kiếm qua vùng D1:D100, mà được sắp xếp theo cột D, so với giá trị 200. Một khi tới giá trị này, trả về số thứ tự cua hàng chứa nó. Nếu tìm một giá trị lớn hơn trong khi tìm kiếm, thì trả về số thứ tự của hàng trước đó."
+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=\"Hàm Thống Kê Phần 2\">Hàm Thống Kê Phần 2</link></variable>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3158430\n"
+"04060182.xhp\n"
+"bm_id3145388\n"
"help.text"
-msgid "<bookmark_value>OFFSET function</bookmark_value>"
-msgstr "<bookmark_value>hàm OFFSET</bookmark_value>"
+msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+msgstr "<bookmark_value>hàm FINV</bookmark_value><bookmark_value>phân bố xác suất F ngược</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158430\n"
-"111\n"
+"04060182.xhp\n"
+"hd_id3145388\n"
+"2\n"
"help.text"
-msgid "OFFSET"
-msgstr "OFFSET"
+msgid "FINV"
+msgstr "FINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149167\n"
-"112\n"
+"04060182.xhp\n"
+"par_id3155089\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Trả về giá trị của một ô bị bù lại theo một số hàng/cột nào đó từ một điểm tham chiếu đã cho.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
+msgstr "<ahelp hid=\"HID_FUNC_FINV\">Trả về nghịch đảo của phân bố xác suất F.</ahelp> Phân bố F được dùng cho phép thử F để đặt quan hệ giữa hai tập hợp dữ liệu khác nhau."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146952\n"
-"113\n"
+"04060182.xhp\n"
+"hd_id3153816\n"
+"4\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159194\n"
-"114\n"
+"04060182.xhp\n"
+"par_id3153068\n"
+"5\n"
"help.text"
-msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
-msgstr "OFFSET(Tham_chiếu; Hàng; Cột; Cao; Rộng)"
+msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "FINV(Số; Bậc_tự_do1; Bậc_tự_do2)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152360\n"
-"115\n"
+"04060182.xhp\n"
+"par_id3146866\n"
+"6\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
-msgstr "<emph>Tham_chiếu</emph> là tham chiếu từ đó hàm tìm tham chiếu mới."
+msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố F ngược."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156032\n"
-"116\n"
+"04060182.xhp\n"
+"par_id3153914\n"
+"7\n"
"help.text"
-msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
-msgstr "<emph>Hàng</emph> là số hàng theo đó tham chiếu bị sửa chữa lên (giá trị âm) hay xuống."
+msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr "<emph>Bậc_tự_do1</emph> là số các bậc tự do trong tử số của phân bố F."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3166458\n"
-"117\n"
+"04060182.xhp\n"
+"par_id3148607\n"
+"8\n"
"help.text"
-msgid "<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
-msgstr "<emph>Cột</emph> (optional) là số cột theo đó thêm chiếu bị sửa chữa sang trái (giá trị âm) hay sang phải."
+msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr "<emph>Bậc_tự_do2</emph> là số các bậc tự do trong mẫu số của phân bố F."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150708\n"
-"118\n"
+"04060182.xhp\n"
+"hd_id3156021\n"
+"9\n"
"help.text"
-msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
-msgstr "<emph>Cao</emph> (tùy chọn) là bề cao theo chiều dọc của một vùng bắt đầu ở vị trí tham chiếu mới."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147278\n"
-"119\n"
+"04060182.xhp\n"
+"par_id3145073\n"
+"10\n"
"help.text"
-msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
-msgstr "<emph>Rộng</emph> (optional) là bề rộng theo chiều ngang của một vùng bắt đầu ở vị trí tham chiếu mới."
+msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr "<item type=\"input\">=FINV(0.5;5;10)</item> trả về 0.93."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8662373\n"
+"04060182.xhp\n"
+"bm_id3150888\n"
"help.text"
-msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
-msgstr "Không cho phép đối số <emph>Hàng</emph> hay <emph>Cột</emph> đưa tới số không hay hàng/cột đầu âm."
+msgid "<bookmark_value>FISHER function</bookmark_value>"
+msgstr "<bookmark_value>hàm FISHER</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9051484\n"
+"04060182.xhp\n"
+"hd_id3150888\n"
+"12\n"
"help.text"
-msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
-msgstr "Không cho phép đối số <emph>Cao</emph> hay <emph>Rộng</emph> đưa tới số không hay số đếm hàng/cột âm."
+msgid "FISHER"
+msgstr "FISHER"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1104B\n"
+"04060182.xhp\n"
+"par_id3155384\n"
+"13\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHER\">Trả về phép biến đổi Fisher cho x, và tạo một hàm gần phân bố chuẩn.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155586\n"
-"120\n"
+"04060182.xhp\n"
+"hd_id3149898\n"
+"14\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3143220\n"
+"15\n"
+"help.text"
+msgid "FISHER(Number)"
+msgstr "FISHER(Số)"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3159228\n"
+"16\n"
+"help.text"
+msgid "<emph>Number</emph> is the value to be transformed."
+msgstr "<emph>Số</emph> là giá trị cần chuyển dạng."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3154763\n"
+"17\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149744\n"
-"121\n"
+"04060182.xhp\n"
+"par_id3149383\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
-msgstr "<item type=\"input\">=OFFSET(A1;2;2)</item> trả về giá trị trong ô C3 (A1 được dời xuống theo hai hàng và hai cột). Nếu ô C3 chứa giá trị <item type=\"input\">100</item>, hàm này trả về giá trị 100."
+msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr "<item type=\"input\">=FISHER(0.5)</item> trả về 0.55."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id7439802\n"
+"04060182.xhp\n"
+"bm_id3155758\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> trả về một tham chiếu đến B2:C3 được dời xuống theo một hàng và sang phải theo một cột (C3:D4)."
+msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+msgstr "<bookmark_value>hàm FISHERINV</bookmark_value><bookmark_value>nghịch đảo của phép biến đổi Fisher</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3009430\n"
+"04060182.xhp\n"
+"hd_id3155758\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> trả về một tham chiếu đến B2:C3 được dời lên theo một hàng và sang trái theo một cột (A1:B2)."
+msgid "FISHERINV"
+msgstr "FISHERINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id2629169\n"
+"04060182.xhp\n"
+"par_id3154734\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> trả về một tham chiếu đến B2:C3 có kích cỡ được thay đổi thành 3 hàng và 4 cột (B2:E4)."
+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\">Trả về nghịch đảo của phép biến đổi Fisher cho x, và tạo một hàm gần vơi một phân bố chuẩn.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id6668599\n"
+"04060182.xhp\n"
+"hd_id3155755\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> trả về một tham chiếu đến B2:C3 được dời xuống theo một hàng, có kích cỡ được thay đổi thành 3 hàng và 4 cột (B2:E4)."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153739\n"
-"122\n"
+"04060182.xhp\n"
+"par_id3146108\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
-msgstr "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> quyết định tổng số diện tích bắt đầu từ ô C3 và có chiều cao 5 hàng và chiều rộng 6 cột (diện tích = C3:H7)."
+msgid "FISHERINV(Number)"
+msgstr "FISHERINV(Số)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3159273\n"
+"04060182.xhp\n"
+"par_id3145115\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>LOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>hàm LOOKUP</bookmark_value>"
+msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
+msgstr "<emph>Số</emph> là giá trị cần chuyển dạng ngược."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3159273\n"
-"123\n"
+"04060182.xhp\n"
+"hd_id3155744\n"
+"25\n"
"help.text"
-msgid "LOOKUP"
-msgstr "LOOKUP"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153389\n"
-"124\n"
+"04060182.xhp\n"
+"par_id3150432\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Trả về nội dung của một ô từ một phạm vi hàng đơn hay cột đơn.</ahelp> Tùy chọn, giá trị được gán (có cùng một chỉ số) được trả về trong một cột và hàng khác. Khác với hàm <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> và <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, véc-tơ kiểu tìm và kết quả có thể nằm ở hai vị trí khác nhau ; không cần nằm cạnh nhau. Hơn nữa, véc-tơ tìm cho hàm LOOKUP phải được sắp xếp tăng dần, không thì tiến trình tìm không trả về kết quả có ích."
+msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr "<item type=\"input\">=FISHERINV(0.5)</item> trả về 0.46."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4484084\n"
+"04060182.xhp\n"
+"bm_id3151390\n"
"help.text"
-msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
-msgstr "Nếu hàm LOOKUP không tìm được tiêu chuẩn tìm kiếm, nó tìm mục tương ứng với véc-tơ tìm nhỏ hơn hay bằng với tiêu chuẩn tìm kiếm."
+msgid "<bookmark_value>FTEST function</bookmark_value>"
+msgstr "<bookmark_value>hàm FTEST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3152947\n"
-"125\n"
+"04060182.xhp\n"
+"hd_id3151390\n"
+"28\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "FTEST"
+msgstr "FTEST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154104\n"
-"126\n"
+"04060182.xhp\n"
+"par_id3150534\n"
+"29\n"
"help.text"
-msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
-msgstr "LOOKUP(Tiêu_chuẩn_tìm; Véc-tơ_tìm; Véc-tơ_kết_quả)"
+msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Trả về kết quả của một phép thử F.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150646\n"
-"127\n"
+"04060182.xhp\n"
+"hd_id3166466\n"
+"30\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
-msgstr "<emph>Tiêu_chuẩn_tìm</emph> là giá trị cần tìm; được nhập hoặc một cách trực tiếp hoặc làm một tham chiếu."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154854\n"
-"128\n"
+"04060182.xhp\n"
+"par_id3153024\n"
+"31\n"
"help.text"
-msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
-msgstr "<emph>Véc-tơ_tìm</emph> là vùng hàng đơn hay cột đơn trong đó cần tìm kiếm."
+msgid "FTEST(Data1; Data2)"
+msgstr "FTEST(Dữ_liệu1; Dữ_liệu2)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149925\n"
-"129\n"
+"04060182.xhp\n"
+"par_id3150032\n"
+"32\n"
"help.text"
-msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
-msgstr "<emph>Véc-tơ_kết_quả</emph> là một phạm vi hàng đơn hay cột đơn khác từ đó lấy kết quả của hàm. Kết quả là ô của véc-tơ kết quả có cùng một chỉ số với mục tương ứng được tìm bởi véc-tơ tìm."
+msgid "<emph>Data1</emph> is the first record array."
+msgstr "<emph>Dữ_liệu1</emph> là mảng bản ghi thứ nhất."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148624\n"
-"130\n"
+"04060182.xhp\n"
+"par_id3153018\n"
+"33\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second record array."
+msgstr "<emph>Dữ_liệu2</emph> là mảng bản ghi thứ hai."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153123\n"
+"34\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149809\n"
-"131\n"
+"04060182.xhp\n"
+"par_id3159126\n"
+"35\n"
"help.text"
-msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
-msgstr "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> tìm kiếm trong ô tương ứng trong phạm vi D1:D100 tìm số bạn đã nhập vào ô A1. Đối với mục tương ứng đã tìm, chỉ số được quyết định, v.d. ô thứ 12 trong phạm vi này. Sau đó thì nội dung của ô thứ 12 được trả về làm giá trị của hàm (trong véc-tơ kết quả)."
+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> tính nếu hai tập hợp dữ liệu khác với nhau về phương sai, và trả về xác suất rằng cả hai tập hợp có thể thuộc về cùng một tổng dân số."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3149425\n"
+"04060182.xhp\n"
+"bm_id3150372\n"
"help.text"
-msgid "<bookmark_value>STYLE function</bookmark_value>"
-msgstr "<bookmark_value>hàm STYLE</bookmark_value>"
+msgid "<bookmark_value>FDIST function</bookmark_value>"
+msgstr "<bookmark_value>hàm FDIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149425\n"
-"133\n"
+"04060182.xhp\n"
+"hd_id3150372\n"
+"37\n"
"help.text"
-msgid "STYLE"
-msgstr "STYLE"
+msgid "FDIST"
+msgstr "FDIST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150826\n"
-"134\n"
+"04060182.xhp\n"
+"par_id3152981\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
-msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Áp dụng một kiểu dáng cho ô chứa công thức.</ahelp> Sau một khoảng thời gian đã đặt, một kiểu dáng khác có thể được áp dụng. Hàm này lúc nào cũng trả về giá trị 0, cho phép bạn thêm nó vào hàm khác, mà không thay đổi giá trị. Dùng nó cùng với hàm CURRENT, bạn có thể áp dụng một màu riêng cho một ô, bất chấp giá trị. Ví dụ, công thức « =...+STYLE(IF(CURRENT()>3;\"đỏ\";\"lục\")) » áp dụng kiểu dáng (màu) « đỏ » cho ô nếu giá trị lớn hơn 3, không thì áp dụng (màu) « lục ». Cả hai định dạng ô này phải được xác định sẵn."
+msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Tính các giá trị của một phân bố F.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145373\n"
-"135\n"
+"04060182.xhp\n"
+"hd_id3150484\n"
+"39\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149302\n"
-"136\n"
+"04060182.xhp\n"
+"par_id3145826\n"
+"40\n"
"help.text"
-msgid "STYLE(\"Style\"; Time; \"Style2\")"
-msgstr "STYLE(\"Kiểu_dáng\"; Thời_gian; \"Kiểu_dáng2\")"
+msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "FDIST(Số; Bậc_tự_do1; Bậc_tự_do)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150596\n"
-"137\n"
+"04060182.xhp\n"
+"par_id3150461\n"
+"41\n"
"help.text"
-msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
-msgstr "<emph>Kiểu_dáng</emph> là tên của một kiểu dáng ô được gán cho ô đó. Tên kiểu dáng phải được nhập vào giữa dấu nhấy kép."
+msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố F."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156149\n"
-"138\n"
+"04060182.xhp\n"
+"par_id3150029\n"
+"42\n"
"help.text"
-msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
-msgstr "<emph>Thời_gian</emph> là một khoảng thời gian tùy chọn, tính theo giây. Không đưa ra tham số này thì kiểu dáng sẽ không thay đổi sai khi một khoảng thời gian nào đó."
+msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr "<emph>Bậc_tự_do1</emph> là số bậc tự do trong tử số của phân bố F."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149520\n"
-"139\n"
+"04060182.xhp\n"
+"par_id3146877\n"
+"43\n"
"help.text"
-msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
-msgstr "<emph>Kiểu_dáng2</emph> là tên tùy chọn của một kiểu dáng ô được gán cho ô đó sau một khoảng thời gian nào đó. Không đưa ra tham số này thì giả sử « Mặc định »."
+msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr "<emph>Bậc_tự_do2</emph> là số bậc tự do trong mẫu số của phân bố F."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN111CA\n"
+"04060182.xhp\n"
+"hd_id3147423\n"
+"44\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3159254\n"
-"140\n"
+"04060182.xhp\n"
+"par_id3150696\n"
+"45\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr "<item type=\"input\">=FDIST(0.8;8;12)</item> trả về 0.61."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151374\n"
-"141\n"
+"04060182.xhp\n"
+"bm_id0119200903223192\n"
"help.text"
-msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
-msgstr "Công thức <item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> định dạng ô theo định dạng trong suốt trong 60 giây sau khi tài liệu được tính lại hay nạp, sau đó thì gán định dạng « Mặc định ». Cả hai định dạng ô này phải được xác định sẵn."
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr "<bookmark_value>hàm GAMMAINV</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8056886\n"
+"04060182.xhp\n"
+"hd_id0119200903205393\n"
"help.text"
-msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example"
-msgstr "Vì STYLE() có một giá trị trả về thuộc số là 0, giá trị trả về này được phụ thêm vào một chuỗi. Có thể tránh trường hợp này dùng T(), như trong mẫu ví dụ theo đây"
+msgid "GAMMA"
+msgstr "GAMMA"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3668935\n"
+"04060182.xhp\n"
+"par_id0119200903205379\n"
"help.text"
-msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
-msgstr "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
+msgstr "<ahelp hid=\".\">Trả về giá trị hàm Gamma.</ahelp> Chú ý GAMMAINV không phải nghịch đảo của GAMMA, mà là của GAMMADIST."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3042085\n"
+"04060182.xhp\n"
+"hd_id0119200903271613\n"
"help.text"
-msgid "See also CURRENT() for another example."
-msgstr "Xem thêm CURRENT() tìm ví dụ mẫu khác."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3150430\n"
+"04060182.xhp\n"
+"par_id0119200903271614\n"
"help.text"
-msgid "<bookmark_value>CHOOSE function</bookmark_value>"
-msgstr "<bookmark_value>hàm CHOOSE</bookmark_value>"
+msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố Gama (γ)."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150430\n"
-"142\n"
+"04060182.xhp\n"
+"bm_id3154841\n"
"help.text"
-msgid "CHOOSE"
-msgstr "CHOOSE"
+msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
+msgstr "<bookmark_value>hàm GAMMAINV</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3143270\n"
-"143\n"
+"04060182.xhp\n"
+"hd_id3154841\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Sử dụng một chỉ số để trả về một giá trị từ danh sách chứa đến 30 giá trị.</ahelp>"
+msgid "GAMMAINV"
+msgstr "GAMMAINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153533\n"
-"144\n"
+"04060182.xhp\n"
+"par_id3153932\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">Trả về nghịch đảo của phân bố tích lũy γ (Gama).</ahelp> Hàm này cho phép bạn tìm kiếm biến dùng các phân bố khác nhau."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3149949\n"
+"49\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155425\n"
-"145\n"
+"04060182.xhp\n"
+"par_id3155828\n"
+"50\n"
"help.text"
-msgid "CHOOSE(Index; Value1; ...; Value30)"
-msgstr "CHOOSE(Chỉ_số; Giá_trị1; ...; Giá_trị30)"
+msgid "GAMMAINV(Number; Alpha; Beta)"
+msgstr "GAMMAINV(Số; Alpha; Bêta)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3144755\n"
-"146\n"
+"04060182.xhp\n"
+"par_id3145138\n"
+"51\n"
"help.text"
-msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
-msgstr "<emph>Chỉ_số</emph> là một tham chiếu hay số nằm giữa 1 và 30 mà ngụ ý giá trị nào cần lấy từ danh sách."
+msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố Gama (γ) ngược."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149939\n"
-"147\n"
+"04060182.xhp\n"
+"par_id3152785\n"
+"52\n"
"help.text"
-msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
-msgstr "<emph>Giá_trị1...Giá_trị30</emph> là danh sách các giá trị được nhập vào dạng một tham chiếu đến một ô, hoặc như là các giá trị riêng."
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr "<emph>Alpha</emph> là tham số Alpha (α) của phân bố Gama (γ)."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151253\n"
-"148\n"
+"04060182.xhp\n"
+"par_id3154561\n"
+"53\n"
+"help.text"
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr "<emph>Bêta</emph> là tham số Bêta (β) của phân bố Gama (γ)."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3148734\n"
+"54\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150625\n"
-"149\n"
+"04060182.xhp\n"
+"par_id3153331\n"
+"55\n"
"help.text"
-msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
-msgstr "Công thức <item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Hôm nay\";\"Hôm qua\";\"Ngày mai\")</item>, chẳng hạn, trả về nội dung của ô B2 cho « A1=2 »; cho « A1=4 », hàm trả về chuỗi « Hôm nay »."
+msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> trả về 1,61."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3151001\n"
+"04060182.xhp\n"
+"bm_id3154806\n"
"help.text"
-msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>hàm HLOOKUP</bookmark_value>"
+msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr "<bookmark_value>hàm GAMMALN</bookmark_value><bookmark_value>lôga tự nhiên của hàm Gama (γ)</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151001\n"
-"151\n"
+"04060182.xhp\n"
+"hd_id3154806\n"
+"57\n"
"help.text"
-msgid "HLOOKUP"
-msgstr "HLOOKUP"
+msgid "GAMMALN"
+msgstr "GAMMALN"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148688\n"
-"152\n"
+"04060182.xhp\n"
+"par_id3148572\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
-msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">Tìm một giá trị và tham chiếu đến những ô bên dưới vùng đã chọn.</ahelp> Hàm này thẩm tra hàng đầu của một mảng chứa một giá trị nào đó không. Hàm thì trả về giá trị trong một hàng của mảng, đặt tên trong <emph>Chỉ_số</emph> cùng cột."
+msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">Trả về lôga tự nhiên của hàm Gama (γ): G(x).</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154661\n"
-"153\n"
+"04060182.xhp\n"
+"hd_id3152999\n"
+"59\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146070\n"
-"154\n"
+"04060182.xhp\n"
+"par_id3153112\n"
+"60\n"
"help.text"
-msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
-msgstr "HLOOKUP(Tiêu_chuẩn_tìm; Mảng; Chỉ_số; Sắp_xếp)"
+msgid "GAMMALN(Number)"
+msgstr "GAMMALN(Số)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148672\n"
-"155\n"
+"04060182.xhp\n"
+"par_id3154502\n"
+"61\n"
"help.text"
-msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
-msgstr "Xem thêm: <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (trao đổi các cột và hàng)"
+msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+msgstr "<emph>Số</emph> là giá trị cho đó cần tính lôga tự nhiên của hàm Gama (γ)."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3147321\n"
+"04060182.xhp\n"
+"hd_id3153568\n"
+"62\n"
"help.text"
-msgid "<bookmark_value>ROW function</bookmark_value>"
-msgstr "<bookmark_value>hàm ROW</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147321\n"
-"157\n"
+"04060182.xhp\n"
+"par_id3153730\n"
+"63\n"
"help.text"
-msgid "ROW"
-msgstr "ROW"
+msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr "<item type=\"input\">=GAMMALN(2)</item> trả về 0."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154564\n"
-"203\n"
+"04060182.xhp\n"
+"bm_id3150132\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
-msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">Trả về số thứ tự hàng của một tham chiếu ô.</ahelp> Nếu tham chiếu này là một ô, hàm này trò chuyện số thứ tự hàng của ô đó. Nếu tham chiếu là một phạm vi các ô, nó trả về các số thứ tự hàng tương ứng trong một <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"mảng\">mảng</link> cột đơn nếu công thức được nhập vào <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"dưới dạng một công thức mảng\">dưới dạng một công thức mảng</link>. Nếu hàm <emph>ROW</emph> với một tham chiếu phạm vi không được dùng trong một công thức mảng, chỉ trả về số thứ tự hàng của ô đầu tiên trong phạm vi đó."
+msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
+msgstr "<bookmark_value>hàm GAMMADIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158439\n"
-"159\n"
+"04060182.xhp\n"
+"hd_id3150132\n"
+"65\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "GAMMADIST"
+msgstr "GAMMADIST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154916\n"
-"160\n"
+"04060182.xhp\n"
+"par_id3155931\n"
+"66\n"
"help.text"
-msgid "ROW(Reference)"
-msgstr "ROW(Tham_chiếu)"
+msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Trả về các giá trị của phân bố Gama (γ).</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156336\n"
-"161\n"
+"04060182.xhp\n"
+"par_id0119200903333675\n"
"help.text"
-msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
-msgstr "<emph>Tham_chiếu</emph> là một ô, vùng hay tên của vùng."
+msgid "The inverse function is GAMMAINV."
+msgstr "Hàm nghịch đảo là GAMMAINV."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151109\n"
-"204\n"
+"04060182.xhp\n"
+"hd_id3147373\n"
+"67\n"
"help.text"
-msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
-msgstr "Nếu bạn không chỉ ra một tham chiếu, hàm sẽ tìm số thứ tự hàng của ô chứa công thức. <item type=\"productname\">%PRODUCTNAME</item> Calc tự động đặt tham chiếu thành ô hiện tại."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155609\n"
-"162\n"
+"04060182.xhp\n"
+"par_id3155436\n"
+"68\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "GAMMADIST(Number; Alpha; Beta; C)"
+msgstr "GAMMADIST(Số; Alpha; Bêta; C)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154830\n"
-"205\n"
+"04060182.xhp\n"
+"par_id3150571\n"
+"69\n"
"help.text"
-msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
-msgstr "Công thức <item type=\"input\">=ROW(B3)</item> trả về 3 vì tham chiếu chỉ tới hàng thứ ba trên bảng."
+msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố Gama (γ)."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147094\n"
-"206\n"
+"04060182.xhp\n"
+"par_id3145295\n"
+"70\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
-msgstr "Công thức <item type=\"input\">{=ROW(D5:D8)}</item> trả về mảng cột đơn (5, 6, 7, 8) vì tham chiếu đã ghi rõ chứa các hàng 5 đến 8."
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr "<emph>Alpha</emph> là tham số Alpha (α) của phân bố Gama (γ)."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153701\n"
-"207\n"
+"04060182.xhp\n"
+"par_id3151015\n"
+"71\n"
"help.text"
-msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
-msgstr "Công thức <item type=\"input\">=ROW(D5:D8)</item> trả về 5 vì hàm ROW không được dùng làm công thức mảng, và chỉ trả về hàng đầu của tham chiếu."
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
+msgstr "<emph>Bêta</emph> là tham số Bêta (β) của phân bố Gama (γ)."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150996\n"
-"208\n"
+"04060182.xhp\n"
+"par_id3157972\n"
+"72\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
-msgstr "Hai công thức <item type=\"input\">{=ROW(A1:E1)}</item> và <item type=\"input\">=ROW(A1:E1)</item> đều trả về 1 vì tham chiếu chỉ chứa hàng 1 làm cột đầu của bảng. (Vì vùng hàng đơn chỉ có một số thứ tự hàng, không khác gì trường hợp công thức được dùng làm công thức mảng.)"
+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 thì tính hàm mật độ ; <emph>C</emph> = 1 thì tính phân bố."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153671\n"
-"209\n"
+"04060182.xhp\n"
+"hd_id3149535\n"
+"73\n"
"help.text"
-msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
-msgstr "Công thức <item type=\"input\">=ROW()</item> trả về 3 nếu công thức được nhập vào hàng 3."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153790\n"
-"210\n"
+"04060182.xhp\n"
+"par_id3145354\n"
+"74\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
-msgstr "Công thức <item type=\"input\">{=ROW(Chó)}</item> trả về mảng cột đơn (1, 2, 3) nếu con « Chó » là vùng đặt tên (C1:D3)."
+msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> trả về 0.86."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3145772\n"
+"04060182.xhp\n"
+"bm_id3150272\n"
"help.text"
-msgid "<bookmark_value>ROWS function</bookmark_value>"
-msgstr "<bookmark_value>hàm ROWS</bookmark_value>"
+msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+msgstr "<bookmark_value>hàm GAUSS</bookmark_value><bookmark_value>phân bố chuẩn; tiêu chuẩn</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145772\n"
-"166\n"
+"04060182.xhp\n"
+"hd_id3150272\n"
+"76\n"
"help.text"
-msgid "ROWS"
-msgstr "ROWS"
+msgid "GAUSS"
+msgstr "GAUSS"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148971\n"
-"167\n"
+"04060182.xhp\n"
+"par_id3149030\n"
+"77\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">Trả về số hàng trong một tham chiếu hay mảng.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Trả về phân bố tích lũy chuẩn tiêu chuẩn.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3156051\n"
-"168\n"
+"04060182.xhp\n"
+"par_id2059694\n"
+"help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr "Nó là GAUSS(x)=NORMSDIST(x)-0.5"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153551\n"
+"78\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154357\n"
-"169\n"
+"04060182.xhp\n"
+"par_id3155368\n"
+"79\n"
"help.text"
-msgid "ROWS(Array)"
-msgstr "ROWS(Mảng)"
+msgid "GAUSS(Number)"
+msgstr "GAUSS(Số)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155942\n"
-"170\n"
+"04060182.xhp\n"
+"par_id3153228\n"
+"80\n"
"help.text"
-msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
-msgstr "<emph>Mảng</emph> là tham chiếu hay vùng đặt tên cho đó cần tính tổng số hàng."
+msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị cho đó cần tính giá trị của phân bố chuẩn tiêu chuẩn."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155869\n"
-"171\n"
+"04060182.xhp\n"
+"hd_id3150691\n"
+"81\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154725\n"
-"212\n"
+"04060182.xhp\n"
+"par_id3154867\n"
+"82\n"
"help.text"
-msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
-msgstr "Công thức <item type=\"input\">=Rows(B5)</item> trả về 1 vì một ô chỉ chứa một hàng."
+msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150102\n"
-"172\n"
+"04060182.xhp\n"
+"par_id3148594\n"
+"83\n"
"help.text"
-msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
-msgstr "<item type=\"input\">=ROWS(A10:B12)</item> trả về 3."
+msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgstr "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155143\n"
-"213\n"
+"04060182.xhp\n"
+"bm_id3148425\n"
"help.text"
-msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
-msgstr "Công thức <item type=\"input\">=ROWS(Chó)</item> trả về 3 nếu con « Chó » là vùng đặt tên (C1:D3)."
+msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+msgstr "<bookmark_value>hàm GEOMEAN</bookmark_value><bookmark_value>trung bình;nhân</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id9959410\n"
+"04060182.xhp\n"
+"hd_id3148425\n"
+"85\n"
"help.text"
-msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
-msgstr "<bookmark_value>hàm HYPERLINK</bookmark_value>"
+msgid "GEOMEAN"
+msgstr "GEOMEAN"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11798\n"
+"04060182.xhp\n"
+"par_id3156257\n"
+"86\n"
"help.text"
-msgid "HYPERLINK"
-msgstr "HYPERLINK"
+msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Trả về trung bình nhân của một mẫu.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN117F1\n"
+"04060182.xhp\n"
+"hd_id3147167\n"
+"87\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">Khi bạn nhấn vào một ô mà chứa hàm HYPERLINK, siêu liên kết sẽ mở.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11800\n"
+"04060182.xhp\n"
+"par_id3153720\n"
+"88\n"
"help.text"
-msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
-msgstr "Nếu bạn sử dụng tham số <emph>cell text</emph> còn tùy chọn, thì hàm tìm địa chỉ URL, sau đó hiển thị chuỗi văn bản."
+msgid "GEOMEAN(Number1; Number2; ...Number30)"
+msgstr "GEOMEAN(Số1; Số2; ...; Số30)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11803\n"
+"04060182.xhp\n"
+"par_id3152585\n"
+"89\n"
"help.text"
-msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
-msgstr "Để mở một siêu liên kết bằng bàn phím, hãy lựa chọn ô đó, bấm phím chức năng <item type=\"keycode\">F2</item> để vào chế độ chỉnh Sửa, đặt con trỏ vào phía trước siêu liên kết, bấm tổ hợp phím <item type=\"keycode\">Shift+F10</item>, sau đó chọn câu lệnh <emph>Mở siêu liên kết</emph>."
+msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
+msgstr "<emph>Số1; Số2; ...; Số30</emph> là các đối số thuộc số hay phạm vi các số mà đại diện một mẫu ngẫu nhiên."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1180A\n"
+"04060182.xhp\n"
+"hd_id3146146\n"
+"90\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149819\n"
+"92\n"
+"help.text"
+msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
+msgstr "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. Giá trị trung bình nhân của mẫu ngẫu nhiên này thì là 41,79."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3152966\n"
+"help.text"
+msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
+msgstr "<bookmark_value>hàm TRIMMEAN</bookmark_value><bookmark_value>trung bình;của tập hợp dữ liệu không có dữ liệu sát giới hạn</bookmark_value>"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3152966\n"
+"94\n"
+"help.text"
+msgid "TRIMMEAN"
+msgstr "TRIMMEAN"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149716\n"
+"95\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Trả về trung bình của một tập hợp dữ liệu không có phần trăm Alpha dữ liệu ở các lề.</ahelp>"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3149281\n"
+"96\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1180E\n"
+"04060182.xhp\n"
+"par_id3154821\n"
+"97\n"
"help.text"
-msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
-msgstr "HYPERLINK(\"URL\") hay HYPERLINK(\"URL\"; \"CellText\")"
+msgid "TRIMMEAN(Data; Alpha)"
+msgstr "TRIMMEAN(Dữ_liệu; Alpha)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11811\n"
+"04060182.xhp\n"
+"par_id3155834\n"
+"98\n"
"help.text"
-msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
-msgstr "<emph>URL</emph> ghi rõ địa chỉ là đích đến của liên kết. Tham số <emph>CellText</emph> còn tùy chọn là chuỗi văn bản được hiển thị trong ô, và kết quả của hàm. Không đưa ra tham số <emph>CellText</emph> thì hiển thị <emph>URL</emph> trong chuỗi văn bản của ô, và trong kết quả của hàm."
+msgid "<emph>Data</emph> is the array of data in the sample."
+msgstr "<emph>Dữ liệu</emph> là mảng dữ liệu trong mẫu."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224576\n"
+"04060182.xhp\n"
+"par_id3156304\n"
+"99\n"
"help.text"
-msgid "The number 0 is returned for empty cells and matrix elements."
-msgstr "Số 0 được trả về cho các ô và phần tử ma trận trống."
+msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
+msgstr "<emph>Alpha</emph> là phần trăm dữ liệu sát giới hạn mà sẽ không được tính."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11823\n"
+"04060182.xhp\n"
+"hd_id3151180\n"
+"100\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11827\n"
+"04060182.xhp\n"
+"par_id3156130\n"
+"101\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "Công thức <item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> hiển thị chuỗi \"http://www.example.org\" trong ô, và thực hiện siêu liên kết đó khi được nhấn vào."
+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> tính giá trị trung bình của các số trong phạm vi A1:A50, mà không tính 5 phần trăm giá trị đại diện những giá trị lớn nhất, và 5 phần trăm giá trị đại diện những giá trị và nhỏ nhất. Hai số phần trăm này tham chiếu đến số lượng là giá trị không bị xén, không phải đến số các số hạng."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1182A\n"
+"04060182.xhp\n"
+"bm_id3153216\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "Công thức <item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Nhấn vào đây\")</item> hiển thị chuỗi « Nhấn vào đây » trong ô, và thực hiện siêu liên kết \"http://www.example.org\" khi được kích hoạt."
+msgid "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr "<bookmark_value>hàm ZTEST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224534\n"
+"04060182.xhp\n"
+"hd_id3153216\n"
+"103\n"
"help.text"
-msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
-msgstr "=HYPERLINK(\"http://www.example.org\";12345) hiện số 12345 và thi hành siêu liên kết http://www.example.org khi nhấn."
+msgid "ZTEST"
+msgstr "ZTEST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1182D\n"
+"04060182.xhp\n"
+"par_id3150758\n"
+"104\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
-msgstr "<item type=\"input\">=HYPERLINK($B4)</item> mà ô B4 chứa địa chỉ <item type=\"input\">http://www.example.org</item>. Hàm thêm địa chỉ này vào địa chỉ URL của ô siêu liên kết, sau đó trả về cùng một chuỗi làm kết quả công thức."
+msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11830\n"
+"04060182.xhp\n"
+"hd_id3150872\n"
+"105\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Nhấn vào \") & \"example.org\"</item> hiển thị chuỗi « Nhấn vào example.org » trong ô, và thực hiện siêu liên kết \"http://www.example.org\" khi được kích hoạt."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8859523\n"
+"04060182.xhp\n"
+"par_id3153274\n"
+"106\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
-msgstr "<item type=\"input\">=HYPERLINK(\"#Trang1.A1\";\"Lên đầu\")</item> hiển thị chuỗi « Lên đầu » và nhảy về vị trí Trang1:A1 trong tài liệu này."
+msgid "ZTEST(Data; mu; Sigma)"
+msgstr "ZTEST(Dữ_liệu; Số; Sigma)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id2958769\n"
+"04060182.xhp\n"
+"par_id3156109\n"
+"107\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Đặc_tả\";\"Đi tới siêu liên kết trong Writer\")</item> hiển thị chuỗi « Đi tới siêu liên kết trong Writer », và nhảy tới liên kết đã lưu « Đặc_tả »."
+msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id7682424\n"
+"04060182.xhp\n"
+"par_id3149977\n"
+"108\n"
"help.text"
-msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
-msgstr "<bookmark_value>hàm GETPIVOTDATA</bookmark_value>"
+msgid "<emph>mu</emph> is the known mean of the population."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3747062\n"
+"04060182.xhp\n"
+"par_id3154740\n"
+"109\n"
"help.text"
-msgid "GETPIVOTDATA"
-msgstr "GETPIVOTDATA"
+msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgstr ""
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3593859\n"
+"04060182.xhp\n"
+"par_id0305200911372999\n"
"help.text"
-msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
-msgstr "<ahelp hid=\".\">Hàm GETPIVOTDATA trả về một giá trị kết quả từ một bảng DataPilot. Giá trị có địa chỉ được đặt dùng các tên trường và tên mục, để nó còn lại hợp lệ nếu bố trí của bảng DataPilot cứ thay đổi.</ahelp>"
+msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id9741508\n"
+"04060182.xhp\n"
+"bm_id3153623\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+msgstr "<bookmark_value>hàm HARMEAN</bookmark_value><bookmark_value>trung bình;điều hoà</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id909451\n"
+"04060182.xhp\n"
+"hd_id3153623\n"
+"113\n"
"help.text"
-msgid "Two different syntax definitions can be used:"
-msgstr "Có thể sử dụng hai lời xác định cú pháp khác nhau :"
+msgid "HARMEAN"
+msgstr "HARMEAN"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1665089\n"
+"04060182.xhp\n"
+"par_id3155102\n"
+"114\n"
"help.text"
-msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
-msgstr "GETPIVOTDATA(Trường_đích; DataPilot; [ Trường 1; Mục 1; ... ])"
+msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Trả về trung bình điều hoà của một tập hợp dữ liệu.</ahelp>"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4997100\n"
+"04060182.xhp\n"
+"hd_id3146900\n"
+"115\n"
"help.text"
-msgid "GETPIVOTDATA(pivot table; Constraints)"
-msgstr "GETPIVOTDATA(DataPilot; Ràng_buộc)"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1672109\n"
+"04060182.xhp\n"
+"par_id3149287\n"
+"116\n"
"help.text"
-msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
-msgstr "Cú pháp thứ hai được giả sử nếu đưa ra chính xác hai tham số, tham số đầu tiên là một ô hay tham chiếu phạm vi các ô. Cú pháp thứ nhất được giả sử trong các trường hợp khác. <emph>Trợ lý Hàm</emph> hiển thị cú pháp thứ nhất."
+msgid "HARMEAN(Number1; Number2; ...Number30)"
+msgstr "HARMEAN(Số1; Số2; ...; Số30)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id9464094\n"
+"04060182.xhp\n"
+"par_id3154303\n"
+"117\n"
"help.text"
-msgid "First Syntax"
-msgstr "Cú pháp thứ nhất"
+msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
+msgstr "<emph>Số1, Số2. ...Số30</emph> là đến 30 giá trị hay phạm vi, mà có thể được sử dụng để tính trung bình điều hoà."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9302346\n"
+"04060182.xhp\n"
+"hd_id3159179\n"
+"118\n"
"help.text"
-msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
-msgstr "<emph>Trường_đích</emph> là một chuỗi mà chọn một của những trường dữ liệu của bảng DataPilot. Chuỗi này có thể là tên của cột nguồn, hay tên trường dữ liệu như được hiển thị trên bảng (v.d. « Tổng - Buôn bán »)."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8296151\n"
+"04060182.xhp\n"
+"par_id3146093\n"
+"120\n"
"help.text"
-msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
-msgstr "<emph>DataPilot</emph> là một tham chiếu đến một ô hay phạm vi các ô mà được định vị bên trong một bảng DataPilot hay chứa một bảng DataPilot. Nếu phạm vi ô chứa vài bảng DataPilot, có dùng bảng được tạo cuối cùng."
+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. Trung bình điều hoà của mẫu ngẫu nhiên này là 37,64."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4809411\n"
+"04060182.xhp\n"
+"bm_id3152801\n"
"help.text"
-msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
-msgstr "Không đưa ra cặp <emph>Trường n / Mục n</emph> thì trả về tổng số tổng quát. Có thì mỗi cặp thêm một ràng buộc mà kết quả phải thoả. <emph>Trường n</emph> là tên của một trường từ bảng DataPilot. <emph>Mục n</emph> là tên của một mục từ trường đó."
+msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr "<bookmark_value>hàm HYPGEOMDIST</bookmark_value><bookmark_value>lấy mẫu mà không thay thế lại</bookmark_value>"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id6454969\n"
+"04060182.xhp\n"
+"hd_id3152801\n"
+"122\n"
"help.text"
-msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
-msgstr "Nếu bảng DataPilot chứa chỉ một giá trị kết quả riêng lẻ mà thoả tất cả các ràng buộc, hoặc một tổng phụ mà tóm tắt tất cả các giá trị tương ứng, thì trả về kết quả đó. Không có kết quả tương ứng, hoặc có vài kết quả không có tổng phụ, thì trả về lỗi. Các điều kiện này áp dụng cho những kết quả nằm trong bảng DataPilot."
+msgid "HYPGEOMDIST"
+msgstr "HYPGEOMDIST"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id79042\n"
+"04060182.xhp\n"
+"par_id3159341\n"
+"123\n"
"help.text"
-msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
-msgstr "Nếu dữ liệu nguồn chứa các mục bị ẩn bởi thiết lập của bảng DataPilot, dữ liệu đó bị bỏ qua. Thứ tự của các cặp Trường/Mục không có tác động. Tên của trường hay mục không phân biệt chữ hoa/thường."
+msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Trả về phân bố siêu bội.</ahelp>"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id7928708\n"
+"04060182.xhp\n"
+"hd_id3154697\n"
+"124\n"
"help.text"
-msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
-msgstr "Không đưa ra ràng buộc cho một trường trang thì dùng ngầm giá trị được chọn cho trường đó. Nếu đưa ra một ràng buộc cho một trường trang, nó phải tương ứng với giá trị được chọn của trường đó, không thì trả về lỗi. Trường trang là trường ở góc trên bên trái một bảng DataPilot, được điềndùng vùng <emph>Trường trang</emph> của hộp thoại <emph>Bố trí DataPilot</emph>. Từ mỗi trường trang, một mục (giá trị) có thể được chọn, thì chỉ mục đó được xử lý trong phép tính."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3864253\n"
+"04060182.xhp\n"
+"par_id3155388\n"
+"125\n"
"help.text"
-msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
-msgstr "Giá trị tổng phụ từ bảng DataPilot chỉ được dùng nếu nó dùng hàm « auto » (tự động), trừ khi được ghi rõ trong ràng buộc, xem <item type=\"literal\">Cú pháp thứ hai</item> bên dưới)."
+msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
+msgstr "HYPGEOMDIST(X; Nmẫu; Thành_công; Ndân_số)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3144016\n"
+"04060182.xhp\n"
+"par_id3154933\n"
+"126\n"
"help.text"
-msgid "Second Syntax"
-msgstr "Cú pháp thứ hai"
+msgid "<emph>X</emph> is the number of results achieved in the random sample."
+msgstr "<emph>X</emph> là số các kết quả được đặt trong mẫu ngẫu nhiên."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9937131\n"
+"04060182.xhp\n"
+"par_id3153106\n"
+"127\n"
"help.text"
-msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
-msgstr "<emph>DataPilot</emph> có cùng một nghĩa trong cú pháp thứ nhất."
+msgid "<emph>NSample</emph> is the size of the random sample."
+msgstr "<emph>NMẫu</emph> là kích cỡ của mẫu ngẫu nhiên."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id5616626\n"
+"04060182.xhp\n"
+"par_id3146992\n"
+"128\n"
"help.text"
-msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
-msgstr "<emph>Ràng buộc</emph> là một danh sách định giới bằng dấu cách. Cũng có thể đặt mục giữa dấu nháy đơn. Toàn bộ chuỗi phải nằm giữa dấu nháy kép, nếu bạn không tham chiếu đến chuỗi đó từ một ô khác."
+msgid "<emph>Successes</emph> is the number of possible results in the total population."
+msgstr "<emph>Thành_công</emph> là số kết quả có thể làm trong tổng dân số."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4076357\n"
+"04060182.xhp\n"
+"par_id3148826\n"
+"129\n"
"help.text"
-msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
-msgstr "Một của những mục có thể là tên trường dữ liệu. Tên trường dữ liệu có thể bị bõ sót nếu bảng DataPilot chỉ chứa một trường dữ liệu, không thì phải có nó."
+msgid "<emph>NPopulation </emph>is the size of the total population."
+msgstr "<emph>Ndân_số</emph> là kích cỡ của tổng dân số."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8231757\n"
+"04060182.xhp\n"
+"hd_id3150529\n"
+"130\n"
"help.text"
-msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
-msgstr "Mỗi mục khác ghi rõ một ràng buộc có dạng <item type=\"literal\">Trường[Mục]</item> (gồm có cặp ngoặc vuông), hoặc chỉ có <item type=\"literal\">Mục</item> nếu tên mục duy nhất trong mọi trường được dùng trong bảng DataPilot."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3168736\n"
+"04060182.xhp\n"
+"par_id3154904\n"
+"131\n"
"help.text"
-msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
-msgstr "Một tên hàm có thể được thêm dưới dạng <emph>Trường[Mục;Hàm]</emph>, mà sẽ gây ra ràng buộc chỉ tương ứng với giá trị tổng phụ mà dùng hàm đó. Những tên hàm có thể là Sum (Tổng), Count (Đếm), Average (Trung bình), Max (Đại), Min (Tiểu), Product (Tích), Count (Đếm: chỉ các số), StDev (Độ lệch chuẩn: mẫu), StDevP (Độ lệch chuẩn: dân số), Var (Phương sai: mẫu), and VarP (Phương sai: dân số), không phân biệt chữ hoa/thường."
+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> trả về 0.81. Nếu 90 trên 100 cái chén đầy cơm bị thả xuống tấm thảm thì lật và tràn ra cơm, do đó nếu 2 cái chén bị thả xuống, xác suất là 81% cả hai sẽ tràn ra cơm."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
+"04060183.xhp\n"
"tit\n"
"help.text"
-msgid "Error Alert"
-msgstr "Báo lỗi"
+msgid "Statistical Functions Part Three"
+msgstr "Hàm Thống Kê Phần 3"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3153821\n"
+"04060183.xhp\n"
+"hd_id3166425\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
-msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Báo lỗi\">Báo lỗi</link>"
+msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
+msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Hàm Thống Kê Phần 3\">Hàm Thống Kê Phần 3</link></variable>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3153379\n"
-"2\n"
+"04060183.xhp\n"
+"bm_id3149530\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Xác định thông điệp lỗi cần hiển thị khi dữ liệu sai được nhập vào ô.</ahelp>"
+msgid "<bookmark_value>LARGE function</bookmark_value>"
+msgstr "<bookmark_value>hàm LARGE</bookmark_value>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3154138\n"
-"25\n"
+"04060183.xhp\n"
+"hd_id3149530\n"
+"2\n"
"help.text"
-msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
-msgstr "Bạn cũng có thể khởi chạy một vĩ lệnh bằng một thông điệp lỗi. Một vĩ lệnh mẫu được cung cấp ở kết thúc của trang này."
+msgid "LARGE"
+msgstr "LARGE"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3156280\n"
+"04060183.xhp\n"
+"par_id3150518\n"
"3\n"
"help.text"
-msgid "Show error message when invalid values are entered."
-msgstr "Hiện thông điệp lỗi khi giá trị sai được nhập."
+msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">Trả về giá trị lớn nhất thứ Rank_c trong một tập hợp dữ liệu.</ahelp>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3150768\n"
+"04060183.xhp\n"
+"hd_id3152990\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
-msgstr ""
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3146984\n"
+"04060183.xhp\n"
+"par_id3154372\n"
"5\n"
"help.text"
-msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
-msgstr "Trong cả hai trường hợp, mục nhập sai bị xoá và giá trị trước được nhập lại vào ô. Cũng vậy nếu bạn đóng hộp thoại « Cảnh báo » và « Thông tin » bằng cách nhấn nút <emph>Thôi</emph>. Nếu bạn đóng hộp thoại bằng nút <emph>OK</emph>, mục nhập sai không bị xoá."
+msgid "LARGE(Data; RankC)"
+msgstr "LARGE(Dữ_liệu; RankC)"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3152460\n"
+"04060183.xhp\n"
+"par_id3152986\n"
"6\n"
"help.text"
-msgid "Contents"
-msgstr "Nội dung"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Dữ_liệu</emph> là phạm vi ô của dữ liệu."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3148646\n"
+"04060183.xhp\n"
+"par_id3156448\n"
+"7\n"
+"help.text"
+msgid "<emph>RankC</emph> is the ranking of the value."
+msgstr "<emph>RankC</emph> là bậc của giá trị."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3152889\n"
"8\n"
"help.text"
-msgid "Action"
-msgstr "Hành vi"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3151115\n"
+"04060183.xhp\n"
+"par_id3148702\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Hãy lựa chọn hành động bạn muốn xảy ra khi dữ liệu sai được nhập vào ô.</ahelp> Hành động « Dừng » từ chối mục nhập sai và hiển thị một hộp thoại sẽ chỉ đóng khi người dùng nhấn vào nút <emph>OK</emph>. Hai hộp thoại « Cảnh báo » và « Thông tin » hiển thị một hộp thoại có thể đóng khi bạn nhấn vào nút <emph>OK</emph> hay <emph>Thôi</emph>. Mục nhập sai chỉ bị từ chối khi bạn nhấn vào nút <emph>Thôi</emph>."
+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> cho giá trị lớn nhất nhì trong phạm vi ô A1:C50."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3156441\n"
-"10\n"
+"04060183.xhp\n"
+"bm_id3154532\n"
"help.text"
-msgid "Browse"
-msgstr "Duyệt"
+msgid "<bookmark_value>SMALL function</bookmark_value>"
+msgstr "<bookmark_value>hàm SMALL</bookmark_value>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3153160\n"
+"04060183.xhp\n"
+"hd_id3154532\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Mở hộp thoại <link href=\"text/shared/01/06130000.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link> trong đó bạn có thể lựa chọn vĩ lệnh cần thực hiện khi dữ liệu sai được nhập vào ô. Vĩ lệnh được thực hiện một khi thông điệp lỗi được hiển thị.</ahelp>"
+msgid "SMALL"
+msgstr "SMALL"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3153876\n"
+"04060183.xhp\n"
+"par_id3157981\n"
"12\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Trả về giá trị nhỏ nhất thứ Rank_c trong một tập hợp dữ liệu.</ahelp>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3149410\n"
+"04060183.xhp\n"
+"hd_id3154957\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Hãy nhập tựa đề của vĩ lệnh hay thông điệp bạn muốn hiển thị khi dữ liệu sai được nhập vào ô.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3154510\n"
+"04060183.xhp\n"
+"par_id3153974\n"
"14\n"
"help.text"
-msgid "Error message"
-msgstr "Thông điệp lỗi"
+msgid "SMALL(Data; RankC)"
+msgstr "SMALL(Dữ_liệu; RankC)"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3149122\n"
+"04060183.xhp\n"
+"par_id3154540\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Hãy nhập thông điệp bạn muốn hiển thị khi dữ liệu sai được nhập vào ô.</ahelp>"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Dữ_liệu</emph> là phạm vi ô của dữ liệu."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3150752\n"
+"04060183.xhp\n"
+"par_id3155094\n"
"16\n"
"help.text"
-msgid "<emph>Sample macro:</emph>"
-msgstr "<emph>Vĩ lệnh mẫu :</emph>"
+msgid "<emph>RankC</emph> is the rank of the value."
+msgstr "<emph>RankC</emph> là bậc của giá trị."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"hd_id3153247\n"
+"17\n"
"help.text"
-msgid "Goal Seek"
-msgstr "Tìm mục đích"
+msgid "Example"
+msgstr "Ví dụ"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3155629\n"
-"1\n"
+"04060183.xhp\n"
+"par_id3149897\n"
+"18\n"
"help.text"
-msgid "Goal Seek"
-msgstr "Tìm mục đích"
+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> cho giá trị nhỏ nhất nhì trong phạm vi ô A1:C50."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3145119\n"
-"2\n"
+"04060183.xhp\n"
+"bm_id3153559\n"
"help.text"
-msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
-msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Mở một hộp thoại trong đó bạn có thể giải một phương trình với một biến.</ahelp></variable> Một khi tìm kiếm thành công, một hộp thoại hiển thị kết quả, thì cho phép bạn áp dụng kết quả và giá trị đích một cách trực tiếp cho ô bảng."
+msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
+msgstr "<bookmark_value>hàm CONFIDENCE</bookmark_value>"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3149656\n"
-"3\n"
+"04060183.xhp\n"
+"hd_id3153559\n"
+"20\n"
"help.text"
-msgid "Default"
-msgstr "Mặc định"
+msgid "CONFIDENCE"
+msgstr "CONFIDENCE"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3151211\n"
-"4\n"
+"04060183.xhp\n"
+"par_id3153814\n"
+"21\n"
"help.text"
-msgid "In this section, you can define the variables in your formula."
-msgstr "Trong phần này, bạn có thể định nghĩa những biến của công thức."
+msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Trả về khoảng tin cậy (1-alpha) cho một phân bố chuẩn.</ahelp>"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3150869\n"
-"5\n"
+"04060183.xhp\n"
+"hd_id3149315\n"
+"22\n"
"help.text"
-msgid "Formula cell"
-msgstr "Ô công thức"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3153194\n"
-"6\n"
+"04060183.xhp\n"
+"par_id3147501\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">Vào ô công thức, hãy nhập tham chiếu của ô chứa công thức. Nó chứa tham chiếu ô hiện thời.</ahelp> Nhấn vào một ô khác trên cùng trang tính để áp dụng tham chiếu của nó cho hộp văn bản."
+msgid "CONFIDENCE(Alpha; StDev; Size)"
+msgstr "CONFIDENCE(Alpha; Lệch; Cỡ)"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3154685\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3149872\n"
+"24\n"
"help.text"
-msgid "Target value"
-msgstr "Giá trị đích"
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr "<emph>Alpha</emph> là cấp của khoảng tin cậy."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3146984\n"
-"8\n"
+"04060183.xhp\n"
+"par_id3145324\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Specifies the value you want to achieve as a new result.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Ghi rõ giá trị bạn muốn thấy trong kết quả mới.</ahelp>"
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr "<emph>Lệch</emph> là độ lệch chuẩn cho tổng dân số."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3150012\n"
-"9\n"
+"04060183.xhp\n"
+"par_id3153075\n"
+"26\n"
"help.text"
-msgid "Variable cell"
-msgstr "Ô biến đổi"
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr "<emph>Cỡ</emph> là kích cỡ của tổng dân số."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3147427\n"
-"10\n"
+"04060183.xhp\n"
+"hd_id3150435\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Ghi rõ tham chiếu cho ô chứa giá trị bạn muốn điều chỉnh để tới mục đích.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"par_id3153335\n"
+"28\n"
"help.text"
-msgid "Functions by Category"
-msgstr "Hàm được phân loại"
+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> trả về 0,29."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"bm_id3148575\n"
+"04060183.xhp\n"
+"bm_id3148746\n"
"help.text"
-msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
-msgstr "<bookmark_value>hàm;liệt kê theo loại</bookmark_value><bookmark_value>các loại hàm</bookmark_value><bookmark_value>danh sách hàm</bookmark_value>"
+msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+msgstr "<bookmark_value>hàm CORREL</bookmark_value><bookmark_value>hệ số tương quan</bookmark_value>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3154944\n"
-"16\n"
+"04060183.xhp\n"
+"hd_id3148746\n"
+"30\n"
"help.text"
-msgid "Functions by Category"
-msgstr "Hàm được phân loại"
+msgid "CORREL"
+msgstr "CORREL"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3149378\n"
-"2\n"
+"04060183.xhp\n"
+"par_id3147299\n"
+"31\n"
"help.text"
-msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
-msgstr "Phần này mô tả các hàm của $[officename] Calc. Các hàm trong Calc được tổ chức thành nhiều loại bên trong Trợ lý Hàm."
+msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KORREL\">Trả về hệ số tương quan giữa hai tập hợp dữ liệu.</ahelp>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id0120200910234570\n"
+"04060183.xhp\n"
+"hd_id3156397\n"
+"32\n"
"help.text"
-msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
-msgstr ""
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3146972\n"
-"3\n"
+"04060183.xhp\n"
+"par_id3153023\n"
+"33\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
-msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Cơ sở dữ liệu\">Cơ sở dữ liệu</link>"
+msgid "CORREL(Data1; Data2)"
+msgstr "CORREL(Dữ_liệu1; Dữ_liệu2)"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3155443\n"
-"4\n"
+"04060183.xhp\n"
+"par_id3150036\n"
+"34\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
-msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Ngày và Giờ\">Ngày và Giờ</link>"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Dữ_liệu1</emph> là tập hợp dữ liệu thứ nhất."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3147339\n"
-"5\n"
+"04060183.xhp\n"
+"par_id3153021\n"
+"35\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Tài chính\">Tài chính</link>"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Dữ_liệu2</emph> là tập hợp dữ liệu thứ hai."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3153963\n"
-"6\n"
+"04060183.xhp\n"
+"hd_id3149720\n"
+"36\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
-msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Thông tin\">Thông tin</link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3146316\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3149941\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
-msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Lôgic\">Lôgic</link>"
+msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
+msgstr "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> tính hệ số tương quan để đo tương quan tuyến tính của hai tập hợp dữ liệu."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3148485\n"
-"8\n"
+"04060183.xhp\n"
+"bm_id3150652\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
-msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Toán học\">Toán học</link>"
+msgid "<bookmark_value>COVAR function</bookmark_value>"
+msgstr "<bookmark_value>hàm COVAR</bookmark_value>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3150363\n"
-"9\n"
+"04060183.xhp\n"
+"hd_id3150652\n"
+"39\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
-msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Ma trận\">Mảng</link>"
+msgid "COVAR"
+msgstr "COVAR"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3150208\n"
-"10\n"
+"04060183.xhp\n"
+"par_id3146875\n"
+"40\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
-msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Thống kê\">Thống kê</link>"
+msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Trả về hiệp phương sai của tích độ lệch cặp.</ahelp>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3166428\n"
-"11\n"
+"04060183.xhp\n"
+"hd_id3149013\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
-msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Bảng tính\">Bảng tính</link>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3145585\n"
-"12\n"
+"04060183.xhp\n"
+"par_id3150740\n"
+"42\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Văn bản\">Văn bản</link>"
+msgid "COVAR(Data1; Data2)"
+msgstr "COVAR(Dữ_liệu1; Dữ_liệu2)"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3156449\n"
-"13\n"
+"04060183.xhp\n"
+"par_id3145827\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
-msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Bổ sung\">Bổ sung</link>"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Dữ_liệu1</emph> là tập hợp dữ liệu thứ nhất."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3150715\n"
-"14\n"
+"04060183.xhp\n"
+"par_id3150465\n"
+"44\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
-msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Toán từ\">Toán tử</link> cũng có."
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Dữ_liệu2</emph> là tập hợp dữ liệu thứ hai."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id0902200809540918\n"
+"04060183.xhp\n"
+"hd_id3154677\n"
+"45\n"
"help.text"
-msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
-msgstr ""
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"par_id3144748\n"
+"46\n"
"help.text"
-msgid "Filter"
-msgstr "Lọc"
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3153970\n"
-"1\n"
+"04060183.xhp\n"
+"bm_id3147472\n"
"help.text"
-msgid "Filter"
-msgstr "Lọc"
+msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
+msgstr "<bookmark_value>hàm CRITBINOM</bookmark_value>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150448\n"
-"2\n"
+"04060183.xhp\n"
+"hd_id3147472\n"
+"48\n"
"help.text"
-msgid "Set the filtering options for the data."
-msgstr "Đặt các tùy chọn lọc cho dữ liệu."
+msgid "CRITBINOM"
+msgstr "CRITBINOM"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3151043\n"
-"3\n"
+"04060183.xhp\n"
+"par_id3149254\n"
+"49\n"
"help.text"
-msgid "Filter Criteria"
-msgstr "Tiêu chuẩn Lọc"
+msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Trả về giá trị nhỏ nhất cho đó phân bố nhị thức tích lũy nhỏ hơn hoặc bằng với một giá trị tiêu chuẩn.</ahelp>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150440\n"
-"4\n"
+"04060183.xhp\n"
+"hd_id3153930\n"
+"50\n"
"help.text"
-msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
-msgstr "Bạn có khả năng xác định một bộ lọc mặc định cho dữ liệu, bằng cách lọc (v.d.) các tên trường, dùng tổ hợp các đối số biểu thức lôgic."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3159153\n"
-"5\n"
+"04060183.xhp\n"
+"par_id3148586\n"
+"51\n"
"help.text"
-msgid "Operator"
-msgstr "Toán tử"
+msgid "CRITBINOM(Trials; SP; Alpha)"
+msgstr "CRITBINOM(Thử; SP; Alpha)"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153093\n"
-"6\n"
+"04060183.xhp\n"
+"par_id3145593\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Lựa chọn một toán tử lôgic cho bộ lọc này.</ahelp>"
+msgid "<emph>Trials</emph> is the total number of trials."
+msgstr "<emph>Thử</emph> là tổng số phép thử."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3152462\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3153084\n"
+"53\n"
"help.text"
-msgid "Field name"
-msgstr "Tên trường"
+msgid "<emph>SP</emph> is the probability of success for one trial."
+msgstr "<emph>SP</emph> là xác suất thành công cho một phép thử."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155306\n"
-"8\n"
+"04060183.xhp\n"
+"par_id3149726\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Hãy lựa chọn trường bạn muốn sử dụng trong bộ lọc này. Không có tên trường, thì hiển thị nhãn cột.</ahelp>"
+msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgstr "<emph>Alpha</emph> là xác suất ngưỡng cần tới hay vượt quá."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3148575\n"
-"9\n"
+"04060183.xhp\n"
+"hd_id3148752\n"
+"55\n"
"help.text"
-msgid "Condition"
-msgstr "Điều kiện"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3147394\n"
-"10\n"
+"04060183.xhp\n"
+"par_id3148740\n"
+"56\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Hãy lựa chọn một toán tử để so sánh các giá trị <emph>Tên trường</emph> và <emph>Giá trị</emph>.</ahelp>"
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgstr "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> trả về 44."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3144764\n"
-"11\n"
+"04060183.xhp\n"
+"bm_id3155956\n"
"help.text"
-msgid "The following operators are available:"
-msgstr "Có sẵn những toán tử này:"
+msgid "<bookmark_value>KURT function</bookmark_value>"
+msgstr "<bookmark_value>hàm KURT</bookmark_value>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153415\n"
-"12\n"
+"04060183.xhp\n"
+"hd_id3155956\n"
+"58\n"
"help.text"
-msgid "<emph>Conditions:</emph>"
-msgstr "<emph>Điều kiện:</emph>"
+msgid "KURT"
+msgstr "KURT"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150324\n"
-"13\n"
+"04060183.xhp\n"
+"par_id3153108\n"
+"59\n"
"help.text"
-msgid "="
-msgstr "="
+msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KURT\">Trả về độ nhọn của một tập hợp dữ liệu (cần thiết ít nhất 4 giá trị).</ahelp>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153714\n"
-"14\n"
+"04060183.xhp\n"
+"hd_id3150334\n"
+"60\n"
"help.text"
-msgid "equal"
-msgstr "bằng"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3154254\n"
-"15\n"
+"04060183.xhp\n"
+"par_id3154508\n"
+"61\n"
"help.text"
-msgid "<"
-msgstr "<"
+msgid "KURT(Number1; Number2; ...Number30)"
+msgstr "KURT(Số1; Số2; ...; Số30)"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3154703\n"
-"16\n"
+"04060183.xhp\n"
+"par_id3145167\n"
+"62\n"
"help.text"
-msgid "less than"
-msgstr "nhỏ hơn"
+msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
+msgstr "Số1, Số2, ...Số30 là đến 30 đối số thuộc số mà đại diện một mẫu phân bố ngẫu nhiên."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155335\n"
-"17\n"
+"04060183.xhp\n"
+"hd_id3158000\n"
+"63\n"
"help.text"
-msgid ">"
-msgstr ">"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3147003\n"
-"18\n"
+"04060183.xhp\n"
+"par_id3150016\n"
+"64\n"
"help.text"
-msgid "greater than"
-msgstr "lớn hơn"
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgstr "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153270\n"
-"19\n"
+"04060183.xhp\n"
+"bm_id3150928\n"
"help.text"
-msgid "<="
-msgstr "<="
+msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>hàm LOGINV</bookmark_value><bookmark_value>nghịch đảo của phân bố chuẩn lôga</bookmark_value>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3145257\n"
-"20\n"
+"04060183.xhp\n"
+"hd_id3150928\n"
+"66\n"
"help.text"
-msgid "less than or equal to"
-msgstr "nhỏ hơn hay bằng"
+msgid "LOGINV"
+msgstr "LOGINV"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3145134\n"
-"21\n"
+"04060183.xhp\n"
+"par_id3145297\n"
+"67\n"
"help.text"
-msgid ">="
-msgstr ">="
+msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Trả về nghịch đảo của phân bố chuẩn lôga.</ahelp>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3151214\n"
-"22\n"
+"04060183.xhp\n"
+"hd_id3151016\n"
+"68\n"
"help.text"
-msgid "greater than or equal to"
-msgstr "lớn hơn hay bằng"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150345\n"
-"23\n"
+"04060183.xhp\n"
+"par_id3153049\n"
+"69\n"
"help.text"
-msgid "<>"
-msgstr "<>"
+msgid "LOGINV(Number; Mean; StDev)"
+msgstr "LOGINV(Số; TBình; Lệch)"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3159101\n"
-"24\n"
+"04060183.xhp\n"
+"par_id3148390\n"
+"70\n"
"help.text"
-msgid "not equal to"
-msgstr "không bằng"
+msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố chuẩn lôga ngược."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3150886\n"
-"25\n"
+"04060183.xhp\n"
+"par_id3149538\n"
+"71\n"
"help.text"
-msgid "Value"
-msgstr "Giá trị"
+msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
+msgstr "<emph>TBình</emph> là trung bình số học của phân bố chuẩn lôga."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155506\n"
-"26\n"
+"04060183.xhp\n"
+"par_id3145355\n"
+"72\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Hãy lựa chọn giá trị cần so sánh với trường đã chọn.</ahelp>"
+msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>Lệch</emph> là độ lệch chuẩn của phân bố chuẩn lôga."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3146980\n"
-"27\n"
+"04060183.xhp\n"
+"hd_id3148768\n"
+"73\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Nhiều>>\">Nhiều>></link>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060183.xhp
msgctxt ""
-"04060111.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"par_id3155623\n"
+"74\n"
"help.text"
-msgid "Add-in Functions"
-msgstr "Hàm Bổ trợ"
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+msgstr "<item type=\"input\">=LOGINV(0.05;0;1)</item> trả về 0,19."
-#: 04060111.xhp
+#: 04060183.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3150870\n"
+"04060183.xhp\n"
+"bm_id3158417\n"
"help.text"
-msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
-msgstr "<bookmark_value>phần bổ trợ; hàm</bookmark_value><bookmark_value>hàm; hàm bổ trợ</bookmark_value><bookmark_value>Trợ lý Hàm; phần bổ trợ</bookmark_value>"
+msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>hàm LOGNORMDIST</bookmark_value><bookmark_value>phân bố chuẩn lôga tích lũy</bookmark_value>"
-#: 04060111.xhp
+#: 04060183.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150870\n"
+"04060183.xhp\n"
+"hd_id3158417\n"
+"76\n"
+"help.text"
+msgid "LOGNORMDIST"
+msgstr "LOGNORMDIST"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154953\n"
+"77\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Trả về phân bố chuẩn lôga tích lũy.</ahelp>"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3150474\n"
+"78\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150686\n"
+"79\n"
+"help.text"
+msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgstr "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154871\n"
+"80\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố chuẩn lôga."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155820\n"
+"81\n"
+"help.text"
+msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+msgstr "<emph>TBình</emph> là giá trị trung bình của phân bố chuẩn lôga."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155991\n"
+"82\n"
+"help.text"
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>Lệch</emph> là độ lệch chuẩn của phân bố chuẩn lôga."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155992\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr "<emph>Cumulative</emph> (tùy chọn): =0 tính hàm mật độ. Cumulative = 1 tính hàm phân bố."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3153178\n"
+"83\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149778\n"
+"84\n"
+"help.text"
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> trả về 0,01."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistical Functions Part Four"
+msgstr "Hàm Thống Kê Phần 4"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153415\n"
"1\n"
"help.text"
-msgid "Add-in Functions"
-msgstr "Hàm Bổ trợ"
+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=\"Hàm Thống Kê Phần 4\">Hàm Thống Kê Phần 4</link></variable>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147427\n"
+"04060184.xhp\n"
+"bm_id3154511\n"
+"help.text"
+msgid "<bookmark_value>MAX function</bookmark_value>"
+msgstr "<bookmark_value>hàm MAX</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154511\n"
"2\n"
"help.text"
-msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
-msgstr "<variable id=\"addintext\">Theo đây có diễn tả và liệt kê một số hàm bổ trợ có sẵn. </variable>"
+msgid "MAX"
+msgstr "MAX"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3163713\n"
-"75\n"
+"04060184.xhp\n"
+"par_id3153709\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
-msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Ý niệm Bổ trợ</link>"
+msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAX\">Trả về giá trị tối đa của một danh sách các đối số..</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146120\n"
+"04060184.xhp\n"
+"par_id9282509\n"
+"help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Trả về 0 nếu không gặp giá trị thuộc số hay lỗi trong (những) phạm vi ô được gửi cho hàm dưới dạng tham chiếu ô. Ô kiểu văn bản bị bỏ qua bởi hai hàm MIN() (tiểu) và MAX() (đại).Những hàm MINA() và MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi. Gửi một chuỗi nghĩa chữ cho hàm MIN() hay MAX(), v.d. « MIN(\"chuỗi\") », vẫn còn gây ra lỗi."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154256\n"
+"4\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147340\n"
"5\n"
"help.text"
-msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
-msgstr "Bạn sẽ cũng tìm một <link href=\"text/scalc/01/04060112.xhp\">mô tả về giao diện bổ trợ của $[officename] Calc</link> trong phần Trợ giúp. Hơn nữa, các hàm quan trọng và những tham số của chúng được diễn tả trong Trợ giúp cho <switchinline select=\"sys\"><caseinline select=\"UNIX\">Thư viện Chia sẻ</caseinline><defaultinline>DLL bổ trợ của $[officename] Calc</defaultinline></switchinline>."
+msgid "MAX(Number1; Number2; ...Number30)"
+msgstr "MAX(Số1; Số2; ...; Số30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151075\n"
+"04060184.xhp\n"
+"par_id3149568\n"
+"6\n"
+"help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153963\n"
"7\n"
"help.text"
-msgid "Add-ins supplied"
-msgstr "Phần bổ trợ được cung cấp"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3156285\n"
+"04060184.xhp\n"
+"par_id3147343\n"
"8\n"
"help.text"
-msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
-msgstr "$[officename] chứa một số mẫu thí dụ về giao diện bổ trợ của $[officename] Calc."
+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> trả về giá trị lớn nhất của danh sách đó."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159267\n"
-"76\n"
+"04060184.xhp\n"
+"par_id3148485\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060115.xhp\">Hàm phân tích Phần 1</link>"
+msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAX(A1:B100)</item> trả về giá trị lớn nhất của danh sách đó."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3154703\n"
-"77\n"
+"04060184.xhp\n"
+"bm_id3166426\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060116.xhp\">Hàm phân tích Phần 2</link>"
+msgid "<bookmark_value>MAXA function</bookmark_value>"
+msgstr "<bookmark_value>hàm MAXA</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3149566\n"
+"04060184.xhp\n"
+"hd_id3166426\n"
+"139\n"
"help.text"
-msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
-msgstr "<bookmark_value>hàm ISLEAPYEAR</bookmark_value><bookmark_value>quyết định năm nhuận</bookmark_value>"
+msgid "MAXA"
+msgstr "MAXA"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149566\n"
-"14\n"
+"04060184.xhp\n"
+"par_id3150363\n"
+"140\n"
"help.text"
-msgid "ISLEAPYEAR"
-msgstr "ISLEAPYEAR"
+msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAXA\">Trả về giá trị tối đa của một danh sách các đối số. Khác với hàm MAX, bạn có thể nhập chuỗi văn bản vào hàm này. Giá trị của chuỗi văn bản là 0.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150297\n"
-"15\n"
+"04060184.xhp\n"
+"par_id7689443\n"
"help.text"
-msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
-msgstr "<ahelp hid=\".\">Quyết định nếu một năm là năm nhuận không.</ahelp> Có thì hàm trả về 1 (Đúng), không thì 0 (Sai)."
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "Hàm MINA() hay MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3148487\n"
-"16\n"
+"04060184.xhp\n"
+"hd_id3150516\n"
+"141\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150205\n"
-"17\n"
+"04060184.xhp\n"
+"par_id3166431\n"
+"142\n"
"help.text"
-msgid "ISLEAPYEAR(\"Date\")"
-msgstr "ISLEAPYEAR(\"Ngày\")"
+msgid "MAXA(Value1; Value2; ... Value30)"
+msgstr "MAXA(Giá_trị1; Giá_trị2; ... Giá_trị30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159239\n"
-"18\n"
+"04060184.xhp\n"
+"par_id3150202\n"
+"143\n"
"help.text"
-msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Ngày</emph> ghi rõ nếu một ngày tháng đã cho nằm bên trong một năm nhuận không. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Giá_trị1; Giá_trị2; ... Giá_trị30</emph> là đến 30 giá trị hay phạm vi. Chuỗi văn bản có giá trị 0."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149817\n"
-"19\n"
+"04060184.xhp\n"
+"hd_id3156290\n"
+"144\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150786\n"
-"20\n"
+"04060184.xhp\n"
+"par_id3156446\n"
+"145\n"
"help.text"
-msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
-msgstr "=ISLEAPYEAR(A1) trả về 1, nếu ô A1 chứa 1968-02-29, ngày tháng hợp lệ ngày 29, tháng 2/1968 tùy theo thiết lập miền địa phương của bạn."
+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;\"Chuỗi\")</item> trả về giá trị lớn nhất của danh sách đó."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_idN107E7\n"
+"04060184.xhp\n"
+"par_id3149404\n"
+"146\n"
"help.text"
-msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
-msgstr "Bạn cũng có thể sử dụng « =ISLEAPYEAR(\"1968-02-29\") » hay « =ISLEAPYEAR(\"2/29/68\") »."
+msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAXA(A1:B100)</item> trả về giá trị lớn nhất của danh sách đó."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_idN107EA\n"
+"04060184.xhp\n"
+"bm_id3153820\n"
"help.text"
-msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
-msgstr "Không bao giờ nên dùng « =ISLEAPYEAR(2/29/68) », vì nó sẽ trước tiên tính 2 chia cho 2 chia cho 68, sau đó tính hàm ISLEAPYEAR từ số nhỏ này dưới dạng một số ngày tháng dãy."
+msgid "<bookmark_value>MEDIAN function</bookmark_value>"
+msgstr "<bookmark_value>hàm MEDIAN</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3154656\n"
+"04060184.xhp\n"
+"hd_id3153820\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
-msgstr "<bookmark_value>hàm YEARS</bookmark_value><bookmark_value>số năm nằm giữa hai ngày tháng</bookmark_value>"
+msgid "MEDIAN"
+msgstr "MEDIAN"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154656\n"
+"04060184.xhp\n"
+"par_id3151241\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">Trả về trung vị của một tập hợp các số. Trong một tập hợp chứa một số giá trị lẻ, trung vị sẽ là số ở chính giữa tập hợp, và trong một tập hợp chứa số giá trị chẵn, trung vị sẽ là trung bình của hai giá trị ở chính giữa tập hợp.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148871\n"
+"13\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155264\n"
+"14\n"
+"help.text"
+msgid "MEDIAN(Number1; Number2; ...Number30)"
+msgstr "MEDIAN(Số1; Số2; ...; Số30)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150109\n"
+"15\n"
+"help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
+msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị hay phạm vi mà đại diện một mẫu. Mỗi số cũng có thể bị thay thế bởi một tham chiếu."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3144506\n"
+"16\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145078\n"
+"17\n"
+"help.text"
+msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
+msgstr "đối với một số lẻ: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> trả về 9 là số trung vị."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149126\n"
+"165\n"
+"help.text"
+msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
+msgstr "Đối với một số chẵn: <item type=\"input\">=MEDIAN(1;5;9;20)</item> rtrả về trung bình của hai giá trị ở giữa (5 và 9), thì 7."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3154541\n"
+"help.text"
+msgid "<bookmark_value>MIN function</bookmark_value>"
+msgstr "<bookmark_value>hàm MIN</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154541\n"
+"19\n"
+"help.text"
+msgid "MIN"
+msgstr "MIN"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3143222\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MIN\">Trả về giá trị tối thiểu của một danh sách các đối số.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2301400\n"
+"help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Trả về 0 nếu không gặp giá trị thuộc số hay lỗi trong (những) phạm vi ô được gửi cho hàm dưới dạng tham chiếu ô. Ô kiểu văn bản bị bỏ qua bởi hai hàm MIN() (tiểu) và MAX() (đại).Những hàm MINA() và MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi. Gửi một chuỗi nghĩa chữ cho hàm MIN() hay MAX(), v.d. « MIN(\"chuỗi\") », vẫn còn gây ra lỗi."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154651\n"
"21\n"
"help.text"
-msgid "YEARS"
-msgstr "YEARS"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150886\n"
+"04060184.xhp\n"
+"par_id3146964\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Tính hiệu số theo năm giữa hai ngày tháng.</ahelp>"
+msgid "MIN(Number1; Number2; ...Number30)"
+msgstr "MIN(Số1; Số2; ...; Số30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154370\n"
+"04060184.xhp\n"
+"par_id3153486\n"
"23\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146114\n"
+"04060184.xhp\n"
+"hd_id3155523\n"
"24\n"
"help.text"
-msgid "YEARS(StartDate; EndDate; Type)"
-msgstr "YEARS(Ngày_đầu; Ngày_cuối; Kiểu)"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145387\n"
+"04060184.xhp\n"
+"par_id3154734\n"
"25\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>Ngày_đầu</emph> là ngày tháng thứ nhất"
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MIN(A1:B100)</item> trả về giá trị nhỏ nhất của danh sách đó."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3156290\n"
-"26\n"
+"04060184.xhp\n"
+"bm_id3147504\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>Ngày_cuối</emph> là ngày tháng thứ hai"
+msgid "<bookmark_value>MINA function</bookmark_value>"
+msgstr "<bookmark_value>hàm MINA</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3152893\n"
-"27\n"
+"04060184.xhp\n"
+"hd_id3147504\n"
+"148\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
-msgstr "<emph>Kiểu</emph> ngụ ý kiểu hiệu số. Giá trị có thể là 0 (khoảng thời gian) và 1 (năm theo lịch)."
+msgid "MINA"
+msgstr "MINA"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3152898\n"
+"04060184.xhp\n"
+"par_id3147249\n"
+"149\n"
"help.text"
-msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
-msgstr "<bookmark_value>hàm MONTHS</bookmark_value><bookmark_value>số tháng nằm giữa hai ngày tháng</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MINA\">Trả về giá trị tối thiểu của một danh sách các đối số. Ở đây bạn cũng có thể nhập chuỗi văn bản. Giá trị của chuỗi văn bản là 0.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3152898\n"
+"04060184.xhp\n"
+"par_id4294564\n"
+"help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "Hàm MINA() hay MAXA() trả về 0 nếu không gặp giá trị (thuộc số hay văn bản) hay lỗi."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3150435\n"
+"150\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153336\n"
+"151\n"
+"help.text"
+msgid "MINA(Value1; Value2; ... Value30)"
+msgstr "MINA(Số1; Số2; ...; Số30)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146098\n"
+"152\n"
+"help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Giá_trị1; Giá_trị2; ... Giá_trị30</emph> là đến 30 giá trị hay phạm vi. Chuỗi văn bản có giá trị 0."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148743\n"
+"153\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147401\n"
+"154\n"
+"help.text"
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr "<item type=\"input\">=MINA(1;\"Text\";20)</item> trả về 0."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147295\n"
+"155\n"
+"help.text"
+msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MINA(A1:B100)</item> trả về giá trị nhỏ nhất của danh sách đó."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3166465\n"
+"help.text"
+msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+msgstr "<bookmark_value>hàm AVEDEV</bookmark_value><bookmark_value>trung bình;hàm thống kê</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166465\n"
+"27\n"
+"help.text"
+msgid "AVEDEV"
+msgstr "AVEDEV"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150373\n"
"28\n"
"help.text"
-msgid "MONTHS"
-msgstr "MONTHS"
+msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
+msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">Trả về trung bình của những độ lệch tuyệt đối điểm dữ liệu khỏi trung bình.</ahelp> Hiển thị truyền bá trong một tập hợp dữ liệu."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153066\n"
+"04060184.xhp\n"
+"hd_id3150038\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Tính hiệu số theo tháng giữa hai ngày tháng.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151240\n"
+"04060184.xhp\n"
+"par_id3145636\n"
"30\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "AVEDEV(Number1; Number2; ...Number30)"
+msgstr "AVEDEV(Số1; Số2; ...; Số30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146869\n"
+"04060184.xhp\n"
+"par_id3157871\n"
"31\n"
"help.text"
-msgid "MONTHS(StartDate; EndDate; Type)"
-msgstr "MONTHS(Ngày_đầu; Ngày_cuối; Kiểu)"
+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>Số1; Số2; ...; Số30</emph> là đến 30 giá trị hay phạm vi mà đại diện một mẫu. Mỗi số cũng có thể bị thay thế bằng một tham chiếu."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145075\n"
+"04060184.xhp\n"
+"hd_id3149725\n"
"32\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>Ngày_đầu</emph> là ngày tháng thứ nhất"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3157981\n"
+"04060184.xhp\n"
+"par_id3153122\n"
"33\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>Ngày_cuối</emph> là ngày tháng thứ hai"
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150111\n"
-"34\n"
-"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
-msgstr "<emph>Kiểu</emph> ngụ ý kiểu hiệu số. Giá trị có thể là 0 (khoảng thời gian) và 1 (tháng theo lịch)."
+msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVEDEV(A1:A50)</item>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3159094\n"
+"04060184.xhp\n"
+"bm_id3145824\n"
"help.text"
-msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
-msgstr "<bookmark_value>hàm ROT13</bookmark_value><bookmark_value>mã hoá văn bản</bookmark_value>"
+msgid "<bookmark_value>AVERAGE function</bookmark_value>"
+msgstr "<bookmark_value>hàm AVERAGE</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3159094\n"
+"04060184.xhp\n"
+"hd_id3145824\n"
"35\n"
"help.text"
-msgid "ROT13"
-msgstr "ROT13"
+msgid "AVERAGE"
+msgstr "AVERAGE"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146781\n"
+"04060184.xhp\n"
+"par_id3150482\n"
"36\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
-msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Mã hoá một chuỗi các ký tự bằng cách dời mỗi ký tự theo 12 vị trí trong bảng chữ cái.</ahelp> Phía sau chữ Z, bảng chữ cái bắt đầu lại (xoay lại). Bằng cách áp dụng hàm mã hoá lần nữa với mã kết quả, bạn cũng có thể giải mã văn bản đó."
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">Trả về trung bình của các đối số.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150893\n"
+"04060184.xhp\n"
+"hd_id3146943\n"
"37\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159205\n"
+"04060184.xhp\n"
+"par_id3154679\n"
"38\n"
"help.text"
-msgid "ROT13(Text)"
-msgstr "ROT13(Chuỗi)"
+msgid "AVERAGE(Number1; Number2; ...Number30)"
+msgstr "AVERAGE(Số1; Số2; ...; Số30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153249\n"
+"04060184.xhp\n"
+"par_id3150741\n"
"39\n"
"help.text"
-msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
-msgstr "<emph>Chuỗi</emph> là chuỗi các ký tự cần mã hoá. « ROT13(ROT13(Chuỗi)) » thì giải mã chuỗi đã mã hoá."
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3151300\n"
+"04060184.xhp\n"
+"hd_id3153039\n"
+"40\n"
"help.text"
-msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
-msgstr "<bookmark_value>hàm DAYSINYEAR</bookmark_value><bookmark_value>số ngày; trong một năm cụ thể</bookmark_value>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151300\n"
+"04060184.xhp\n"
+"par_id3151232\n"
+"41\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3148754\n"
+"help.text"
+msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
+msgstr "<bookmark_value>hàm AVERAGEA</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148754\n"
+"157\n"
+"help.text"
+msgid "AVERAGEA"
+msgstr "AVERAGEA"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145138\n"
+"158\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Trả về trung bình của các đối số. Giá trị của một chuỗi văn bản là 0.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153326\n"
+"159\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149734\n"
+"160\n"
+"help.text"
+msgid "AVERAGEA(Value1; Value2; ... Value30)"
+msgstr "AVERAGEA(Giá_trị1; Giá_trị2; ...; Giá_trị30)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155260\n"
+"161\n"
+"help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Giá_trị1; Giá_trị2; ... Giá_trị30</emph> là đến 30 giá trị hay phạm vi. Chuỗi văn bản có giá trị 0."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3149504\n"
+"162\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150864\n"
+"163\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153933\n"
+"help.text"
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr "<bookmark_value>hàm MODE</bookmark_value><bookmark_value>giá trị chung nhất</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153933\n"
"43\n"
"help.text"
-msgid "DAYSINYEAR"
-msgstr "DAYSINYEAR"
+msgid "MODE"
+msgstr "MODE"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3143220\n"
+"04060184.xhp\n"
+"par_id3153085\n"
"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Tính số ngày của năm trong đó ngày đã nhập có xảy ra.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
+msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Trả về giá trị chung nhất trong một tập hợp dữ liệu.</ahelp> Có vài giá trị với cùng một tần số thì nó trả về giá trị nhỏ nhất. Một lỗi xảy ra khi một giá trị không xuất hiện hai lần."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145358\n"
+"04060184.xhp\n"
+"hd_id3153003\n"
"45\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3154651\n"
+"04060184.xhp\n"
+"par_id3155950\n"
"46\n"
"help.text"
-msgid "DAYSINYEAR(Date)"
-msgstr "DAYSINYEAR(Ngày)"
+msgid "MODE(Number1; Number2; ...Number30)"
+msgstr "MODE(Số1; Số2; ...; Số30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153803\n"
+"04060184.xhp\n"
+"par_id3150337\n"
"47\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Ngày</emph> là bất cứ ngày tháng nào trong năm tương ứng. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Số1; Số2; ...; Số30</emph> là đến 30 giá trị thuộc số hay phạm vi."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3153487\n"
+"04060184.xhp\n"
+"hd_id3153571\n"
"48\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153811\n"
+"04060184.xhp\n"
+"par_id3153733\n"
"49\n"
"help.text"
-msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
-msgstr "=DAYSINYEAR(A1) trả về 366 ngày nếu ô A1 chứa 1968-02-29, một ngày tháng hợp lệ trong năm 1968."
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3154737\n"
-"help.text"
-msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
-msgstr "<bookmark_value>hàm DAYSINMONTH</bookmark_value><bookmark_value>số ngày;trong một tháng cụ thể của một năm</bookmark_value>"
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr "<item type=\"input\">=MODE(A1:A50)</item>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154737\n"
-"50\n"
+"04060184.xhp\n"
+"bm_id3149879\n"
"help.text"
-msgid "DAYSINMONTH"
-msgstr "DAYSINMONTH"
+msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>hàm NEGBINOMDIST</bookmark_value><bookmark_value>phân bố nhị thức âm</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149316\n"
+"04060184.xhp\n"
+"hd_id3149879\n"
"51\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Tính số ngày của tháng chứa ngày tháng đã nhập.</ahelp>"
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMDIST"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145114\n"
+"04060184.xhp\n"
+"par_id3155437\n"
"52\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Trả về phân bố nhị thức âm.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150955\n"
+"04060184.xhp\n"
+"hd_id3145351\n"
"53\n"
"help.text"
-msgid "DAYSINMONTH(Date)"
-msgstr "DAYSINMONTH(Ngày)"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147501\n"
+"04060184.xhp\n"
+"par_id3150935\n"
"54\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Ngày</emph> là bất cứ ngày tháng nào trong tháng tương ứng của năm đã muốn. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+msgid "NEGBINOMDIST(X; R; SP)"
+msgstr "NEGBINOMDIST(X; R; SP)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149871\n"
+"04060184.xhp\n"
+"par_id3153044\n"
"55\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr "<emph>X</emph> đại diện giá trị được trả về cho phép thử không thành công."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3155742\n"
+"04060184.xhp\n"
+"par_id3151018\n"
"56\n"
"help.text"
-msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
-msgstr "=DAYSINMONTH(A1) trả về 29 ngày nếu ô A1 chứa 1968-02-17, một ngày tháng hợp lệ trong tháng 2, năm 1968."
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3149048\n"
-"help.text"
-msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
-msgstr "<bookmark_value>hàm WEEKS</bookmark_value><bookmark_value>số tuần;giữa hai ngày tháng</bookmark_value>"
+msgid "<emph>R</emph> represents the value returned for successful tests."
+msgstr "<emph>R</emph> đại diện giá trị được trả về cho phép thử thành công."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149048\n"
+"04060184.xhp\n"
+"par_id3148878\n"
"57\n"
"help.text"
-msgid "WEEKS"
-msgstr "WEEKS"
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgstr "<emph>SP</emph> là xác suất thành công của một phép thử."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153340\n"
+"04060184.xhp\n"
+"hd_id3149539\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Tính hiệu số theo tuần giữa hai ngày tháng.</ahelp>"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150393\n"
+"04060184.xhp\n"
+"par_id3148770\n"
"59\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> trả về 0,25."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147402\n"
-"60\n"
+"04060184.xhp\n"
+"bm_id3155516\n"
"help.text"
-msgid "WEEKS(StartDate; EndDate; Type)"
-msgstr "WEEKS(Ngày_đầu; Ngày_cuối; Kiểu)"
+msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr "<bookmark_value>hàm NORMINV</bookmark_value><bookmark_value>phân bố chuẩn;nghịch đảo</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3151387\n"
+"04060184.xhp\n"
+"hd_id3155516\n"
"61\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>Ngày_đầu</emph> là ngày tháng thứ nhất"
+msgid "NORMINV"
+msgstr "NORMINV"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146324\n"
+"04060184.xhp\n"
+"par_id3154634\n"
"62\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>Ngày_cuối</emph> là ngày tháng thứ hai"
+msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Trả về nghịch đảo của phân bố chuẩn tích lũy.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3166467\n"
+"04060184.xhp\n"
+"hd_id3153227\n"
"63\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
-msgstr "<emph>Kiểu</emph> tính kiểu hiệu số. Giá trị có thể là 0 (khoảng thời gian) và 1 (theo số tuần)."
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3145237\n"
-"help.text"
-msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
-msgstr "<bookmark_value>hàm WEEKSINYEAR</bookmark_value><bookmark_value>số tuần;trong một năm cụ thể</bookmark_value>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145237\n"
+"04060184.xhp\n"
+"par_id3147534\n"
"64\n"
"help.text"
-msgid "WEEKSINYEAR"
-msgstr "WEEKSINYEAR"
+msgid "NORMINV(Number; Mean; StDev)"
+msgstr "NORMINV(Số; TBình; Lệch)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147410\n"
+"04060184.xhp\n"
+"par_id3154950\n"
"65\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
-msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Tính số tuần trong năm chứa ngày tháng đã nhập.</ahelp> Số tuần được xác định như theo đây: một tuần qua từ năm này đến năm sau thì được thêm vào năm chứa nhiều ngày nhất của tuần đó."
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgstr "<emph>Số</emph> đại diện giá trị xác suất được dùng để quyết định phân bố chuẩn ngược."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149719\n"
+"04060184.xhp\n"
+"par_id3150690\n"
"66\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr "<emph>TBình</emph> đại diện giá trị trung bình trong phân bố chuẩn."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145638\n"
+"04060184.xhp\n"
+"par_id3148594\n"
"67\n"
"help.text"
-msgid "WEEKSINYEAR(Date)"
-msgstr "WEEKSINYEAR(Ngày)"
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr "<emph>Lệch</emph> đại diện độ lệch chuẩn của phân bố chuẩn."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149946\n"
+"04060184.xhp\n"
+"hd_id3155822\n"
"68\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Ngày</emph> có thể là bất cứ ngày tháng nào trong năm tương ứng. Tham số <emph>Ngày</emph> phải là một ngày tháng hợp lệ tùy theo thiết lập miền địa phương của %PRODUCTNAME."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150037\n"
+"04060184.xhp\n"
+"par_id3153921\n"
"69\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+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> trả về 69,41. Nếu quả trứng trung bình cân nặng 63g với độ lệch chuẩn 5, thì có xác suất 90% rằng trứng không nặng hơn 69,41g."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147614\n"
-"70\n"
+"04060184.xhp\n"
+"bm_id3153722\n"
"help.text"
-msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
-msgstr "WEEKSINYEAR(A1) trả về 53 nếu ô A1 chứa 1970-02-17, một ngày tháng hợp lệ trong năm 1970."
+msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr "<bookmark_value>hàm NORMDIST</bookmark_value><bookmark_value>hàm mật độ</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3157901\n"
+"04060184.xhp\n"
+"hd_id3153722\n"
+"71\n"
+"help.text"
+msgid "NORMDIST"
+msgstr "NORMDIST"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150386\n"
"72\n"
"help.text"
-msgid "Add-ins through %PRODUCTNAME API"
-msgstr "Phần bổ trợ qua giao diện API của %PRODUCTNAME"
+msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Trả về hàm mật độ hay phân bố chuẩn tích lũy.</ahelp>"
-#: 04060111.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149351\n"
+"04060184.xhp\n"
+"hd_id3083282\n"
"73\n"
"help.text"
-msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
-msgstr "Cũng có thể thực hiện phần bổ trợ thông qua giao diện <link href=\"http://api.openoffice.org/\">API</link> của %PRODUCTNAME."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"par_id3150613\n"
+"74\n"
"help.text"
-msgid "Remove"
-msgstr "Bỏ"
+msgid "NORMDIST(Number; Mean; StDev; C)"
+msgstr "NORMDIST(Số; TBình; Lệch; C)"
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"hd_id3148947\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3149820\n"
+"75\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
-msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Bỏ\">Bỏ</link>"
+msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+msgstr "<emph>Số</emph> là giá trị của phân bố dựa vào đó cần tính phân bố chuẩn."
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"par_id3149656\n"
-"2\n"
+"04060184.xhp\n"
+"par_id3146063\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Gỡ bỏ phác thảo khỏi phạm vi ô đã chọn.</ahelp>"
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr "<emph>TBình</emph> là giá trị trung bình của phân bố."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"par_id3156295\n"
+"77\n"
"help.text"
-msgid "Pivot Table"
-msgstr "Xẻ bảng"
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr "<emph>Lệch</emph> là độ lệch chuẩn của phân bố."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"hd_id3150275\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3145080\n"
+"78\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
-msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Bảng ưu tiên\">Bảng ưu tiên</link>"
+msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
+msgstr "<emph>C</emph> = 0 thì tính hàm mật độ ; <emph>C</emph> = 1 thì tính phân bố."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"par_id3153562\n"
-"2\n"
+"04060184.xhp\n"
+"hd_id3152972\n"
+"79\n"
"help.text"
-msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
-msgstr "Một bảng DataPilot cung cấp một bản tóm tắt về rất nhiều dữ liệu. Vậy bạn có thể sắp đặt lại bảng DataPilot để xem các bản tóm tắt khác nhau của dữ liệu."
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"hd_id3155923\n"
-"3\n"
+"04060184.xhp\n"
+"par_id3149283\n"
+"80\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
-msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Xoá\">Xoá</link>"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> trả về 0,01."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"par_idN105FB\n"
+"04060184.xhp\n"
+"par_id3149448\n"
+"81\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Hộp thoại DataPilot\">Hộp thoại DataPilot</link>"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> trả về 0,01."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"bm_id3152934\n"
"help.text"
-msgid "Grouping"
-msgstr "Nhóm lại"
+msgid "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr "<bookmark_value>hàm PEARSON</bookmark_value>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1054D\n"
+"04060184.xhp\n"
+"hd_id3152934\n"
+"83\n"
"help.text"
-msgid "Grouping"
-msgstr "Nhóm lại"
+msgid "PEARSON"
+msgstr "PEARSON"
-#: 12090400.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10551\n"
+"04060184.xhp\n"
+"par_id3153216\n"
+"84\n"
"help.text"
-msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
-msgstr "Các bảng DataPilot kiểu Nhóm lại thì hiển thị hộp thoại <emph>Nhóm lại</emph> cho hoặc giá trị hoặc ngày tháng."
+msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">Trả về hệ số tương quan mômen tích Pearson « r ».</ahelp>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10568\n"
+"04060184.xhp\n"
+"hd_id3147081\n"
+"85\n"
"help.text"
-msgid "Start"
-msgstr "Đầu"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1056C\n"
+"04060184.xhp\n"
+"par_id3156133\n"
+"86\n"
"help.text"
-msgid "Specifies the start of the grouping."
-msgstr "Ghi rõ đầu của tiến trình nhóm lại."
+msgid "PEARSON(Data1; Data2)"
+msgstr "PEARSON(Dữ_liệu1; Dữ_liệu2)"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1056F\n"
+"04060184.xhp\n"
+"par_id3151272\n"
+"87\n"
"help.text"
-msgid "Automatically"
-msgstr "Tự động"
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr "<emph>Dữ_liệu1</emph> đại diện mảng của tập hợp dữ liệu thứ nhất."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10573\n"
+"04060184.xhp\n"
+"par_id3153279\n"
+"88\n"
"help.text"
-msgid "Specifies whether to start grouping at the smallest value."
-msgstr "Ghi rõ có nên bắt đầu nhóm lại ở giá trị nhỏ nhất, hay không."
+msgid "<emph>Data2</emph> represents the array of the second data set."
+msgstr "<emph>Dữ_liệu2</emph> đại diện mảng của tập hợp dữ liệu thứ hai."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10576\n"
+"04060184.xhp\n"
+"hd_id3147567\n"
+"89\n"
"help.text"
-msgid "Manually at"
-msgstr "Bằng tay ở"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1057A\n"
+"04060184.xhp\n"
+"par_id3151187\n"
+"90\n"
"help.text"
-msgid "Specifies whether to enter the start value for grouping yourself."
-msgstr "Ghi rõ nếu bạn nên tự nhập giá trị bắt đầu, hay không."
+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> trả về hệ số tương quan Pearson của cả hai tập hợp dữ liệu."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1057D\n"
+"04060184.xhp\n"
+"bm_id3152806\n"
"help.text"
-msgid "End"
-msgstr "Cuối"
+msgid "<bookmark_value>PHI function</bookmark_value>"
+msgstr "<bookmark_value>hàm PHI</bookmark_value>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10581\n"
+"04060184.xhp\n"
+"hd_id3152806\n"
+"92\n"
"help.text"
-msgid "Specifies the end of the grouping."
-msgstr "Ghi rõ cuối của tiến trình nhóm lại."
+msgid "PHI"
+msgstr "PHI"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10584\n"
+"04060184.xhp\n"
+"par_id3150254\n"
+"93\n"
"help.text"
-msgid "Automatically"
-msgstr "Tự động"
+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\">Trả về các giá trị của hàm phân bố cho một phân bố chuẩn tiêu chuẩn.</ahelp>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10588\n"
+"04060184.xhp\n"
+"hd_id3154748\n"
+"94\n"
"help.text"
-msgid "Specifies whether to end grouping at the largest value."
-msgstr "Ghi rõ có nên kết thúc nhóm lại ở giá trị lớn nhất, hay không."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1058B\n"
+"04060184.xhp\n"
+"par_id3149976\n"
+"95\n"
"help.text"
-msgid "Manually at"
-msgstr "Bằng tay ở"
+msgid "PHI(Number)"
+msgstr "PHI(Số)"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1058F\n"
+"04060184.xhp\n"
+"par_id3156108\n"
+"96\n"
"help.text"
-msgid "Specifies whether to enter the end value for grouping yourself."
-msgstr "Ghi rõ nếu bạn nên tự nhập giá trị kết thúc, hay không."
+msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
+msgstr "<emph>Số</emph> đại diện giá trị dựa vào đó tính phân bố chuẩn tiêu chuẩn."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10592\n"
+"04060184.xhp\n"
+"hd_id3153621\n"
+"97\n"
"help.text"
-msgid "Group by"
-msgstr "Nhóm lại theo"
+msgid "Example"
+msgstr "Ví dụ"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10596\n"
+"04060184.xhp\n"
+"par_id3155849\n"
+"98\n"
"help.text"
-msgid "Specifies the value range by which every group's limits are calculated."
-msgstr "Ghi rõ phạm vi giá trị theo đó tính các giới hạn của mọi nhóm."
+msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgstr "<item type=\"input\">=PHI(2.25) </item>= 0.03"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10599\n"
+"04060184.xhp\n"
+"par_id3143236\n"
+"99\n"
"help.text"
-msgid "Number of days"
-msgstr "Số ngày"
+msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgstr "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1059D\n"
+"04060184.xhp\n"
+"par_id3149286\n"
+"100\n"
"help.text"
-msgid "In the case of grouping date values, specifies the number of days to group by."
-msgstr "Trong trường hợp nhóm lại các giá trị dữ liệu, tùy chọn này ghi rõ số các ngày theo đó cần nhóm lại."
+msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgstr "<item type=\"input\">=PHI(0)</item> = 0.4"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105A0\n"
+"04060184.xhp\n"
+"bm_id3153985\n"
"help.text"
-msgid "Intervals"
-msgstr "Khoảng"
+msgid "<bookmark_value>POISSON function</bookmark_value>"
+msgstr "<bookmark_value>hàm POISSON</bookmark_value>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105A4\n"
+"04060184.xhp\n"
+"hd_id3153985\n"
+"102\n"
"help.text"
-msgid "In the case of grouping date values, specifies the intervals to group by."
-msgstr "Trong trường hợp nhóm lại các giá trị ngày tháng, tùy chọn này ghi rõ các khoảng theo đó cần nhóm lại."
+msgid "POISSON"
+msgstr "POISSON"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105B2\n"
+"04060184.xhp\n"
+"par_id3154298\n"
+"103\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Trả về phân bố Poisson.</ahelp>"
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"hd_id3159183\n"
+"104\n"
"help.text"
-msgid "Fill Mode"
-msgstr "Chế độ điền"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"bm_id3145119\n"
+"04060184.xhp\n"
+"par_id3146093\n"
+"105\n"
"help.text"
-msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; chế độ tìm vết điền</bookmark_value><bookmark_value>tìm vết; tiền lệ cho nhiều ô bảng</bookmark_value>"
+msgid "POISSON(Number; Mean; C)"
+msgstr "POISSON(Số; TBình; C)"
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"hd_id3145119\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3147253\n"
+"106\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
-msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Chế độ điền\">Chế độ điền</link>"
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgstr "<emph>Số</emph> đại diện giá trị dựa vào đó tính phân bố Poisson."
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"par_id3151246\n"
-"2\n"
+"04060184.xhp\n"
+"par_id3151177\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
-msgstr "<ahelp hid=\".uno:AuditingFillMode\">Kích hoạt <emph>Chế độ điền</emph> trong chức năng phát hiện. Con trỏ chuột thay đổi sang một ký hiệu đặc biệt, và bạn có thể nhấn vào bất cứ ô nào để thấy một vết dẫn tới ô tiền lệ.</ahelp> Để ra khỏi chế độ này, bấm phím <item type=\"keycode\">Esc</item>, hoặc nhấn vào câu lệnh <emph>Kết thúc chế độ điền</emph> trong trình đơn ngữ cảnh."
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr "<emph>TBình</emph> đại diện giá trị ở giữa của phân bố Poisson."
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"par_id3151211\n"
-"3\n"
+"04060184.xhp\n"
+"par_id3149200\n"
+"108\n"
"help.text"
-msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
-msgstr "Chức năng <emph>Chế độ điền</emph> trùng với câu lệnh <link href=\"text/scalc/01/06030100.xhp\" name=\"Tìm vết tiền lệ\">Tìm vết tiền lệ</link> nếu bạn gọi chế độ này lần đầu tiên. Hãy dùng trình đơn ngữ cảnh để bật thêm tùy chọn cho <emph>Chế độ điền</emph> và để ra khỏi chế độ này."
+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> (tùy chọn) = 0 hoặc False sẽ tính hàm mật độ; <emph>C</emph> = 1 hoặc True sẽ tính hàm phân bố. Nếu bỏ trống, giá trị mặc định True sẽ được chèn vào khi bạn lưu tài liệu, nhằm tương thích tốt nhất với các chương trình khác và các phiên bản cũ hơn của %PRODUCTNAME."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3159347\n"
+"109\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150113\n"
+"110\n"
+"help.text"
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr "<item type=\"input\">=POISSON(60;50;1)</item> trả về 0,93."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153100\n"
+"help.text"
+msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr "<bookmark_value>hàm PERCENTILE</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153100\n"
+"112\n"
+"help.text"
+msgid "PERCENTILE"
+msgstr "PERCENTILE"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154940\n"
+"113\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
+msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">Trả về phân vị alpha của các giá trị ngày tháng trong một mảng.</ahelp> Một phân vị thì trả về giá trị trình độ cho một chuỗi dữ liệu mà chạy từ giá trị nhỏ nhất (Alpha=0) đến giá trị lớn nhất (alpha=1) của một chuỗi dữ liệu. Đối với <item type=\"literal\">Alpha</item> = 25%, phân vị nghĩa là tứ phân vị; <item type=\"literal\">Alpha</item> = 50% là MEDIAN (trung vị)."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3150531\n"
+"114\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148813\n"
+"115\n"
+"help.text"
+msgid "PERCENTILE(Data; Alpha)"
+msgstr "PERCENTILE(Dữ_liệu; Alpha)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153054\n"
+"116\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data."
+msgstr "<emph>Dữ_liệu</emph> đại diện mảng dữ liệu."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154212\n"
+"117\n"
+"help.text"
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr "<emph>Alpha</emph> đại diện phần trăm của trình độ giữa 0 và 1."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154290\n"
+"118\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159147\n"
+"119\n"
+"help.text"
+msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
+msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> đại diện giá trị trong tập hợp dữ liệu, mà bằng với 10% trình độ dữ liệu trong phạm vi ô A1:A50."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3148807\n"
+"help.text"
+msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr "<bookmark_value>hàm PERCENTRANK</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148807\n"
+"121\n"
+"help.text"
+msgid "PERCENTRANK"
+msgstr "PERCENTRANK"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153573\n"
+"122\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Trả về hạng phần trăm của một giá trị trong một mẫu.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3147512\n"
+"123\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147238\n"
+"124\n"
+"help.text"
+msgid "PERCENTRANK(Data; Value)"
+msgstr "PERCENTRANK(Dữ_liệu; Giá_trị)"
+
+#: 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>Dữ_liệu</emph> đại diện mảng dữ liệu trong mẫu."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148475\n"
+"126\n"
+"help.text"
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr "<emph>Giá_trị</emph> đại diện giá trị cho đó cần xác định hạng phân vị."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3155364\n"
+"127\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149163\n"
+"128\n"
+"help.text"
+msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
+msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> trả về hạng phần trăm của giá trị 50 từ tổng số tất cả các giá trị nằm trong phạm vi ô A1:A50. Nếu 50 nằm ở ngoại tổng số này, một thông điệp lỗi sẽ xuất hiện."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3166442\n"
+"help.text"
+msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr "<bookmark_value>hàm QUARTILE</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166442\n"
+"130\n"
+"help.text"
+msgid "QUARTILE"
+msgstr "QUARTILE"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146958\n"
+"131\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Trả về tứ phân vị của một tập hợp dữ liệu.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3152942\n"
+"132\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153684\n"
+"133\n"
+"help.text"
+msgid "QUARTILE(Data; Type)"
+msgstr "QUARTILE(Dữ_liệu; Kiểu)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153387\n"
+"134\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "<emph>Dữ_liệu</emph> đại diện mảng dữ liệu trong mẫu."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155589\n"
+"135\n"
+"help.text"
+msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
+msgstr "<emph>Kiểu</emph> đại diện kiểu tứ phân vị. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% và 4 = MAX.)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3149103\n"
+"136\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159276\n"
+"137\n"
+"help.text"
+msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
+msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> trả về giá trị của đó 50% trình độ tương ứng với những giá trị dưới lên trên trong phạm vi ô A1:A50."
#: 04060185.xhp
msgctxt ""
@@ -45895,7 +43753,6 @@ msgid "<emph>Mean</emph> is the arithmetic mean of the distribution."
msgstr "<emph>TBình</emph> là trung bình số học của phân bố."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3148874\n"
@@ -47260,11612 +45117,13595 @@ msgctxt ""
msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
msgstr ""
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
+"04060199.xhp\n"
"tit\n"
"help.text"
-msgid "Input Help"
-msgstr "Trợ giúp Nhập liệu"
+msgid "Operators in $[officename] Calc"
+msgstr "Toán tử trong $[officename] Calc"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3156280\n"
+"04060199.xhp\n"
+"bm_id3156445\n"
+"help.text"
+msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
+msgstr "<bookmark_value>công thức; toán tử</bookmark_value><bookmark_value>toán tử; hàm công thức</bookmark_value><bookmark_value>dấu chia, xem thêm toán tử</bookmark_value><bookmark_value>dấu nhân, xem thêm toán tử</bookmark_value><bookmark_value>dấu trừ, xem thêm toán tử</bookmark_value><bookmark_value>dấu cộng, xem thêm toán tử</bookmark_value><bookmark_value>toán tử văn bản</bookmark_value><bookmark_value>phép so sánh;toán tử trong Calc</bookmark_value><bookmark_value>toán tử số học</bookmark_value><bookmark_value>toán tử tham chiếu</bookmark_value>"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3156445\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
-msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Trợ giúp Nhập liệu\">Trợ giúp Nhập liệu</link>"
+msgid "Operators in $[officename] Calc"
+msgstr "Toán tử trong $[officename] Calc"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3147229\n"
+"04060199.xhp\n"
+"par_id3155812\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Nhập thông điệp bạn muốn hiển thị khi ô hay phạm vi ô được chọn trên trang tính.</ahelp>"
+msgid "You can use the following operators in $[officename] Calc:"
+msgstr "Trong $[officename] Calc, bạn có thể sử dụng những toán tử theo đây:"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3146986\n"
+"04060199.xhp\n"
+"hd_id3153066\n"
"3\n"
"help.text"
-msgid "Show input help when cell is selected"
-msgstr "Hiển thị trợ giúp nhập liệu khi ô được chọn"
+msgid "Arithmetical Operators"
+msgstr "Toán tử Số học"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3153363\n"
+"04060199.xhp\n"
+"par_id3148601\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Hiển thị thông điệp mà bạn nhập vào hộp <emph>Nội dung</emph> khi ô hay phạm vi ô được chọn trên trang tính.</ahelp>"
+msgid "These operators return numerical results."
+msgstr "Những toán tử này trả về kết quả số học."
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3154730\n"
+"04060199.xhp\n"
+"par_id3144768\n"
"5\n"
"help.text"
-msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
-msgstr "Nếu bạn nhập một chuỗi văn bản vào hộp <emph>Nội dung</emph> của hộp thoại này, sau đó bỏ trống hộp chọn, chuỗi văn bản bị mất."
+msgid "Operator"
+msgstr "Toán tử"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3147394\n"
+"04060199.xhp\n"
+"par_id3157982\n"
"6\n"
"help.text"
-msgid "Contents"
-msgstr "Nội dung"
+msgid "Name"
+msgstr "Tên"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3149582\n"
+"04060199.xhp\n"
+"par_id3159096\n"
+"7\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149126\n"
"8\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "+ (Plus)"
+msgstr "+ (dấu cộng)"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3149400\n"
+"04060199.xhp\n"
+"par_id3150892\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Hãy nhập tựa đề bạn muốn hiển thị khi ô hay phạm vi ô được lựa chọn.</ahelp>"
+msgid "Addition"
+msgstr "Phép cộng"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3149121\n"
+"04060199.xhp\n"
+"par_id3153247\n"
"10\n"
"help.text"
-msgid "Input help"
-msgstr "Trợ giúp Nhập liệu"
+msgid "1+1"
+msgstr "1+1"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3150752\n"
+"04060199.xhp\n"
+"par_id3159204\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Hãy nhập thông điệp bạn muốn hiển thị khi ô hay phạm vi ô được lựa chọn.</ahelp>"
+msgid "- (Minus)"
+msgstr "- (dấu trừ)"
-#: 02140400.xhp
+#: 04060199.xhp
msgctxt ""
-"02140400.xhp\n"
+"04060199.xhp\n"
+"par_id3145362\n"
+"12\n"
+"help.text"
+msgid "Subtraction"
+msgstr "Phép trừ"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153554\n"
+"13\n"
+"help.text"
+msgid "2-1"
+msgstr "2-1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153808\n"
+"14\n"
+"help.text"
+msgid "- (Minus)"
+msgstr "- (dấu trừ)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3151193\n"
+"15\n"
+"help.text"
+msgid "Negation"
+msgstr "Phủ định"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154712\n"
+"16\n"
+"help.text"
+msgid "-5"
+msgstr "-5"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149873\n"
+"17\n"
+"help.text"
+msgid "* (asterisk)"
+msgstr "* (dấu sao)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3147504\n"
+"18\n"
+"help.text"
+msgid "Multiplication"
+msgstr "Phép nhân"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149055\n"
+"19\n"
+"help.text"
+msgid "2*2"
+msgstr "2*2"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3151341\n"
+"20\n"
+"help.text"
+msgid "/ (Slash)"
+msgstr "/ (gạch chéo)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159260\n"
+"21\n"
+"help.text"
+msgid "Division"
+msgstr "Phép chia"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153027\n"
+"22\n"
+"help.text"
+msgid "9/3"
+msgstr "9/3"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3156396\n"
+"23\n"
+"help.text"
+msgid "% (Percent)"
+msgstr "% (dấu phần trăm)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150372\n"
+"24\n"
+"help.text"
+msgid "Percent"
+msgstr "Phần trăm"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3145632\n"
+"25\n"
+"help.text"
+msgid "15%"
+msgstr "15%"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149722\n"
+"26\n"
+"help.text"
+msgid "^ (Caret)"
+msgstr "^ (dấu mũ)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159127\n"
+"27\n"
+"help.text"
+msgid "Exponentiation"
+msgstr "Phép mũ hoá"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157873\n"
+"28\n"
+"help.text"
+msgid "3^2"
+msgstr "3^2"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3152981\n"
+"29\n"
+"help.text"
+msgid "Comparative operators"
+msgstr "Toán tử So sánh"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157902\n"
+"30\n"
+"help.text"
+msgid "These operators return either true or false."
+msgstr "Những toán tử này trả về hoặc Đúng hoặc Sai."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149889\n"
+"31\n"
+"help.text"
+msgid "Operator"
+msgstr "Toán tử"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150743\n"
+"32\n"
+"help.text"
+msgid "Name"
+msgstr "Tên"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3146877\n"
+"33\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148888\n"
+"34\n"
+"help.text"
+msgid "= (equal sign)"
+msgstr "= (dấu bằng)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154845\n"
+"35\n"
+"help.text"
+msgid "Equal"
+msgstr "Bằng"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154546\n"
+"36\n"
+"help.text"
+msgid "A1=B1"
+msgstr "A1=B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154807\n"
+"37\n"
+"help.text"
+msgid "> (Greater than)"
+msgstr "> (lớn hơn)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148580\n"
+"38\n"
+"help.text"
+msgid "Greater than"
+msgstr "Lớn hơn"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3145138\n"
+"39\n"
+"help.text"
+msgid "A1>B1"
+msgstr "A1>B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149507\n"
+"40\n"
+"help.text"
+msgid "< (Less than)"
+msgstr "< (nhỏ hơn)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150145\n"
+"41\n"
+"help.text"
+msgid "Less than"
+msgstr "Nhỏ hơn"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150901\n"
+"42\n"
+"help.text"
+msgid "A1<B1"
+msgstr "A1<B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153078\n"
+"43\n"
+"help.text"
+msgid ">= (Greater than or equal to)"
+msgstr ">= (lớn hơn hay bằng)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150866\n"
+"44\n"
+"help.text"
+msgid "Greater than or equal to"
+msgstr "Lớn hơn hay bằng"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153111\n"
+"45\n"
+"help.text"
+msgid "A1>=B1"
+msgstr "A1>=B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153004\n"
+"46\n"
+"help.text"
+msgid "<= (Less than or equal to)"
+msgstr "<= (nhỏ hơn hay bằng)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150335\n"
+"47\n"
+"help.text"
+msgid "Less than or equal to"
+msgstr "Nhỏ hơn hay bằng"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148760\n"
+"48\n"
+"help.text"
+msgid "A1<=B1"
+msgstr "A1<=B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157994\n"
+"49\n"
+"help.text"
+msgid "<> (Inequality)"
+msgstr "<> (bất đẳng thức)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150019\n"
+"50\n"
+"help.text"
+msgid "Inequality"
+msgstr "Bất đẳng thức"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149878\n"
+"51\n"
+"help.text"
+msgid "A1<>B1"
+msgstr "A1<>B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3145241\n"
+"52\n"
+"help.text"
+msgid "Text operators"
+msgstr "Toán tử Văn bản"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3155438\n"
+"53\n"
+"help.text"
+msgid "The operator combines separate texts into one text."
+msgstr "Toán tử gộp lại vài đoạn văn bản thành một văn bản."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150566\n"
+"54\n"
+"help.text"
+msgid "Operator"
+msgstr "Toán tử"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153048\n"
+"55\n"
+"help.text"
+msgid "Name"
+msgstr "Tên"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149001\n"
+"56\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148769\n"
+"57\n"
+"help.text"
+msgid "& (And)"
+msgstr "& (và)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3157975\n"
+"help.text"
+msgid "<bookmark_value>text concatenation AND</bookmark_value>"
+msgstr "<bookmark_value>ghép nối văn bản dùng toán tử AND (và)</bookmark_value>"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157975\n"
+"58\n"
+"help.text"
+msgid "text concatenation AND"
+msgstr "ghép nối văn bản dùng toán tử AND (và)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157993\n"
+"59\n"
+"help.text"
+msgid "\"Sun\" & \"day\" is \"Sunday\""
+msgstr "\"Chủ\" & \"Nhật\" thì \"Chủ Nhật\""
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3153550\n"
+"60\n"
+"help.text"
+msgid "Reference operators"
+msgstr "Toán tử Tham chiếu"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149024\n"
+"61\n"
+"help.text"
+msgid "These operators return a cell range of zero, one or more cells."
+msgstr "Những toán tử này trả về một phạm vi ô chứa số không, một hay nhiều ô."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id2324900\n"
+"help.text"
+msgid "Range has the highest precedence, then intersection, and then finally union."
+msgstr "Phạm vi có quyền đi trước cao nhất, sau đó giao, và cuối cùng hợp."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3158416\n"
+"62\n"
+"help.text"
+msgid "Operator"
+msgstr "Toán tử"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3152822\n"
+"63\n"
+"help.text"
+msgid "Name"
+msgstr "Tên"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154949\n"
+"64\n"
+"help.text"
+msgid "Example"
+msgstr "Ví dụ"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3156257\n"
+"65\n"
+"help.text"
+msgid ": (Colon)"
+msgstr ": (dấu hai chấm)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153924\n"
+"66\n"
+"help.text"
+msgid "Range"
+msgstr "Phạm vi"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148432\n"
+"67\n"
+"help.text"
+msgid "A1:C108"
+msgstr "A1:C108"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3152592\n"
+"68\n"
+"help.text"
+msgid "! (Exclamation point)"
+msgstr "! (dấu chấm than)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3150606\n"
+"help.text"
+msgid "<bookmark_value>intersection operator</bookmark_value>"
+msgstr "<bookmark_value>toán tử giao</bookmark_value>"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150606\n"
+"69\n"
+"help.text"
+msgid "Intersection"
+msgstr "Giao"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3083445\n"
+"70\n"
+"help.text"
+msgid "SUM(A1:B6!B5:C12)"
+msgstr "SUM(A1:B6!B5:C12)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150385\n"
+"71\n"
+"help.text"
+msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
+msgstr "Tính tổng số tất cả các ô trong giao ; trong mẫu thí dụ này, kết quả là tổng số hai ô B5 và B6."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id4003723\n"
+"help.text"
+msgid "~ (Tilde)"
+msgstr "~ (dấu ngã)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id838953\n"
+"help.text"
+msgid "Concatenation or union"
+msgstr "Ghép nối hay hợp"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id2511978\n"
+"help.text"
+msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
+msgstr "Nhận hai tham chiếu và trả về một danh sách tham chiếu là sự ghép nối tham chiếu bên trái và tham chiếu bên phải (theo thứ tự đó). Mục nhập đôi thì được tham chiếu hai lần. Xem ghi chú bên dưới bảng này."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id181890\n"
+"help.text"
+msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
+msgstr "Ghép nối tham chiếu dùng dấu ngã là một toán tử mới, giới thiệu trong OpenOffice.org 3.0 và StarOffice 9. Khi một công thức chứa dấu ngã đã có trong một tài liệu được mở bằng phiên bản cũ của phần mềm này, một lỗi được trả về. Một danh sách tham chiếu không được phép bên trong một biểu thức kiểu mảng."
+
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "Names"
+msgstr "Tên"
-#: 02140400.xhp
+#: 04070000.xhp
msgctxt ""
-"02140400.xhp\n"
-"hd_id3153896\n"
+"04070000.xhp\n"
+"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
-msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Trái\">Trái</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Tên\">Tên</link>"
-#: 02140400.xhp
+#: 04070000.xhp
msgctxt ""
-"02140400.xhp\n"
-"par_id3150793\n"
+"04070000.xhp\n"
+"par_id3145801\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Điền nội dung các ô ngoài cùng bên phải vào các ô khác trong cùng phạm vi.</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
+msgstr "<ahelp hid=\".\">Cho phép bạn đặt tên cho mỗi phần riêng của tài liệu bảng tính.</ahelp> Bằng cách đặt tên cho mỗi phần riêng, bạn có thể dễ dàng <link href=\"text/scalc/01/02110000.xhp\" name=\"điều hướng\">điều hướng</link> qua các tài liệu bảng tính và tìm thông tin cụ thể."
-#: 02140400.xhp
+#: 04070000.xhp
msgctxt ""
-"02140400.xhp\n"
-"par_id3156280\n"
+"04070000.xhp\n"
+"hd_id3153878\n"
"3\n"
"help.text"
-msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
-msgstr "Nếu phạm vi được chọn chỉ có 1 hàng, nội dung của ô ngoài cùng bên phải sẽ được chép sang các ô khác. Nếu có nhiều hàng, các ô ngoài cùng bên phải sẽ được chép sang các ô bên trái chúng."
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Xác định\">Xác định</link>"
-#: 04010200.xhp
+#: 04070000.xhp
msgctxt ""
-"04010200.xhp\n"
+"04070000.xhp\n"
+"hd_id3146969\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Chèn\">Chèn</link>"
+
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3155764\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Áp dụng\">Áp dụng</link>"
+
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3156382\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
+msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Nhãn\">Nhãn</link>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
"tit\n"
"help.text"
-msgid "Column Break"
-msgstr "Ngắt cột"
+msgid "Define Names"
+msgstr "Xác định tên"
-#: 04010200.xhp
+#: 04070100.xhp
msgctxt ""
-"04010200.xhp\n"
-"bm_id3155923\n"
+"04070100.xhp\n"
+"hd_id3156330\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; chèn ngắt cột</bookmark_value><bookmark_value>ngắt cột; chèn</bookmark_value><bookmark_value>chèn; ngắt cột tự làm</bookmark_value><bookmark_value>ngắt cột tự làm</bookmark_value>"
+msgid "Define Names"
+msgstr "Xác định tên"
-#: 04010200.xhp
+#: 04070100.xhp
msgctxt ""
-"04010200.xhp\n"
-"hd_id3155923\n"
+"04070100.xhp\n"
+"par_id3154366\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
+msgstr "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Mở một hộp thoại trong đó bạn có thể ghi rõ một tên cho một vùng đã chọn.</ahelp></variable>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3154123\n"
+"31\n"
+"help.text"
+msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
+msgstr "Hãy sử dụng con chuột để xác định phạm vi hoặc gõ tham chiếu vào trường hộp thoại <emph>Xác định tên</emph>."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155131\n"
+"30\n"
+"help.text"
+msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
+msgstr "Trên thanh <emph>Công thức</emph>, hộp <emph>Vùng trang tính</emph> chứa danh sách các tên đã xác định cho phạm vi. Nhấn vào một tên trong hộp này để tô sáng tham chiếu tương ứng trên bảng tính. Không liệt kê ở đây tên đã gán cho công thức hay phần của công thức."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3151118\n"
+"3\n"
+"help.text"
+msgid "Name"
+msgstr "Tên"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3163712\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/edit\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/edit\">Hãy nhập tên của vùng cho đó bạn muốn xác định một tham chiếu. Mọi tên vùng đã xác định trên bảng tính đều được liệt kê trong trường văn bản bên dưới.</ahelp> Nếu bạn nhấn vào một tên trên danh sách này, tham chiếu tương ứng trong tài liệu sẽ được tô sáng bằng khung màu xanh. Nếu nhiều phạm vi ô thuộc về cùng một tên vùng, chúng được tô sáng bằng khung màu khác nhau."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153728\n"
+"9\n"
+"help.text"
+msgid "Assigned to"
+msgstr "Gán cho"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3147435\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/range\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/range\">Tham chiếu của tên vùng đã chọn được hiển thị ở đây dưới dạng một giá trị tuyệt đối.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3146986\n"
+"12\n"
+"help.text"
+msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
+msgstr "Để chèn một tham chiếu vùng mới, đặt con trỏ vào trường này và sử dụng con chuột để lựa chọn vùng đã muốn trên bất cứ trang tính nào của tài liệu bảng tính."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3154729\n"
+"13\n"
+"help.text"
+msgid "More"
+msgstr "Nhiều"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3149958\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/more\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/more\">Cho phép bạn ghi rõ <emph>Kiểu vùng</emph> (tùy chọn) cho tham chiếu.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3147394\n"
+"15\n"
+"help.text"
+msgid "Area type"
+msgstr "Kiểu vùng"
+
+#: 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 "Xác định thêm tùy chọn liên quan đến kiểu vùng tham chiếu."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3150716\n"
+"17\n"
+"help.text"
+msgid "Print range"
+msgstr "Phạm vi in"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150751\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/printarea\">Defines the area as a print range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/printarea\">Xác định vùng làm một phạm vi in.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153764\n"
+"19\n"
+"help.text"
+msgid "Filter"
+msgstr "Lọc"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155766\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/filter\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/filter\">Xác định vùng đã chọn cần dùng trong một bộ <link href=\"text/scalc/01/12040300.xhp\" name=\"lọc cấp cao\">lọc cấp cao</link>.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3159267\n"
+"21\n"
+"help.text"
+msgid "Repeat column"
+msgstr "Cột lặp lại"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3149565\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/colheader\">Defines the area as a repeating column.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/colheader\">Xác định vùng này là một cột lặp lại.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153966\n"
+"23\n"
+"help.text"
+msgid "Repeat row"
+msgstr "Hàng lặp lại"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150300\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">Defines the area as a repeating row.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">Xác định vùng đó là một hàng lặp lại.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3155112\n"
+"27\n"
+"help.text"
+msgid "Add/Modify"
+msgstr "Thêm/Sửa"
+
+#: 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\">Bấm nút <emph>Thêm</emph> để thêm vào danh sách này tên đã xác định. Bấm nút <emph>Sửa</emph> để nhập tên khác cho một tên đã có được chọn trong danh sách.</ahelp>"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Name"
+msgstr "Chèn tên"
+
+#: 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>phạm vi ô; chèn phạm vi đặt tên</bookmark_value><bookmark_value>chèn; phạm vi ô</bookmark_value>"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153195\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
-msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Ngắt cột</link>"
+msgid "Insert Name"
+msgstr "Chèn tên"
-#: 04010200.xhp
+#: 04070200.xhp
msgctxt ""
-"04010200.xhp\n"
-"par_id3150447\n"
+"04070200.xhp\n"
+"par_id3150011\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertColumnBreak\">Chèn một ngắt cột (ngắt trang theo chiều dọc) sang bên trái ô đang làm việc.</ahelp>"
+msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
+msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Chèn một phạm vi ô đặt tên đã xác định vào vị trí hiện tại của con trỏ.</ahelp></variable>"
-#: 04010200.xhp
+#: 04070200.xhp
msgctxt ""
-"04010200.xhp\n"
-"par_id3145171\n"
+"04070200.xhp\n"
+"par_id3149412\n"
+"7\n"
+"help.text"
+msgid "You can only insert a cell area after having defined a name for the area."
+msgstr "Bạn chỉ có thể chèn một vùng ô một khi xác định một tên cho vùng đó."
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153160\n"
"3\n"
"help.text"
-msgid "The manual column break is indicated by a dark blue vertical line."
-msgstr "Ngắt cột tự làm được biểu diễn bằng 1 đường nằm dọc màu xanh đậm."
+msgid "Insert name"
+msgstr "Chèn tên"
-#: 04030000.xhp
+#: 04070200.xhp
msgctxt ""
-"04030000.xhp\n"
+"04070200.xhp\n"
+"par_id3154944\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Liệt kê tất cả các vùng ô đã xác định. Nhấn đôi vào một mục nhập để chèn vùng đặt tên vào trang tính đang chỉnh sửa ở vị trí con trỏ hiện tại.</ahelp>"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153418\n"
+"5\n"
+"help.text"
+msgid "Insert All"
+msgstr "Chèn tất cả"
+
+#: 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\">Chèn vào vị trí con trỏ hiện tại một danh sách tất cả các vùng đặt tên và tham chiếu ô tương ứng.</ahelp>"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
"tit\n"
"help.text"
-msgid "Rows"
-msgstr "Hàng"
+msgid "Creating Names"
+msgstr "Tạo tên"
-#: 04030000.xhp
+#: 04070300.xhp
msgctxt ""
-"04030000.xhp\n"
-"bm_id3150541\n"
+"04070300.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; chèn hàng</bookmark_value><bookmark_value>hàng; chèn</bookmark_value><bookmark_value>chèn; hàng</bookmark_value>"
+msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
+msgstr "<bookmark_value>phạm vi ô;tự động tạo tên</bookmark_value><bookmark_value>tên; cho phạm vi ô</bookmark_value>"
-#: 04030000.xhp
+#: 04070300.xhp
msgctxt ""
-"04030000.xhp\n"
-"hd_id3150541\n"
+"04070300.xhp\n"
+"hd_id3147264\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
-msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Hàng\">Hàng</link>"
+msgid "Creating Names"
+msgstr "Tạo tên"
-#: 04030000.xhp
+#: 04070300.xhp
msgctxt ""
-"04030000.xhp\n"
-"par_id3150767\n"
+"04070300.xhp\n"
+"par_id3153969\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
-msgstr "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Chèn một hàng mới nằm trên ô đang làm việc.</ahelp> Số hàng được chèn tương ứng với số hàng đang được chọn. Các hàng đã có sẽ được dịch xuống dưới."
+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\">Cho phép bạn tự động đặt tên cho nhiều phạm vi ô.</ahelp></variable>"
-#: 02120100.xhp
+#: 04070300.xhp
msgctxt ""
-"02120100.xhp\n"
+"04070300.xhp\n"
+"par_id3156280\n"
+"13\n"
+"help.text"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr "Hãy lựa chọn vùng chứa tất cả các phạm vi cho chúng cần đặt tên. Sau đó, chọn lệnh <emph>Chèn > Tên > Tạo</emph>. Lệnh này mở hộp thoại <emph>Tạo tên</emph>, trong đó bạn có thể bật những tùy chọn đặt tên thích hợp."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3151116\n"
+"3\n"
+"help.text"
+msgid "Create names from"
+msgstr "Tạo tên từ"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3152597\n"
+"4\n"
+"help.text"
+msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgstr "Xác định phần nào của bảng tính cần dùng để tạo tên."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3153729\n"
+"5\n"
+"help.text"
+msgid "Top row"
+msgstr "Hàng đầu"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3149263\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">Tạo các tên phạm vi từ hàng đầu của phạm vi đã chọn.</ahelp> Mỗi cột nhận một tên và tham chiếu riêng."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3146984\n"
+"7\n"
+"help.text"
+msgid "Left Column"
+msgstr "Cột trái"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153190\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">Tạo các tên phạm vi từ những mục nhập trong cột thứ nhất của phạm vi trang tính đã chọn.</ahelp> Mỗi hàng nhận một tên và tham chiếu riêng."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3156284\n"
+"9\n"
+"help.text"
+msgid "Bottom row"
+msgstr "Hàng cuối"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3147124\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">Tạo những tên phạm vi từ các mục nhập trên hàng cuối cùng trong phạm vi trang tính đã chọn.</ahelp> Mỗi cột nhận một tên và tham chiếu ô riêng."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3154731\n"
+"11\n"
+"help.text"
+msgid "Right Column"
+msgstr "Cột phải"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153158\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">Tạo những tên phạm vi từ các mục nhập trong cột cuối cùng trong phạm vi trang tính đã chọn.</ahelp> Mỗi hàng nhận một tên và tham chiếu ô riêng."
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
"tit\n"
"help.text"
-msgid "Header/Footer"
-msgstr "Phần Đầu/Chân"
+msgid "Define Label Range"
+msgstr "Xác định phạm vi nhãn"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"bm_id3153360\n"
+"04070400.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
-msgstr "<bookmark_value>kiểu dáng trang;phần đầu</bookmark_value><bookmark_value>kiểu dáng trang;phần chân</bookmark_value><bookmark_value>phần đầu;xác định</bookmark_value><bookmark_value>phần chân;xác định</bookmark_value><bookmark_value>tên tập tin trong phần đầu/chân</bookmark_value><bookmark_value>thay đổi;ngày tháng tự động</bookmark_value><bookmark_value>ngày tháng;tự động cập nhật</bookmark_value><bookmark_value>tự động cập nhật ngày tháng</bookmark_value>"
+msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
+msgstr "<bookmark_value>trang tính; xác định phạm vi nhãn</bookmark_value><bookmark_value>phạm vi nhãn trên trang tính</bookmark_value>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3153360\n"
+"04070400.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
-msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Phần đầu/chân\">Phần đầu/chân</link>"
+msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
+msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Xác định phạm vi nhãn</link></variable>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150768\n"
+"04070400.xhp\n"
+"par_id3150868\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Defines or formats a header or footer for a Page Style.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Đặt hoặc định dạng một phần đầu hay phần chân cho một Kiểu dáng Trang.</ahelp>"
+msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
+msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Mở một hộp thoại trong đó bạn có thể xác định một phạm vi nhãn.</ahelp></variable>"
+
+#: 04070400.xhp
+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 "Nội dung ô của một phạm vi nhãn có thể được sử dụng giống như tên trong công thức — $[officename] nhận ra tên như vậy bằng cùng một cách với nhận ra các tên đã xác định sẵn của ngày của tuần và tháng. Các tên này được tự động điền nốt khi được gõ vào một công thức. Hơn nữa, những tên được phạm vi nhãn xác định có cấp ưu tiên cao hơn những tên được xác định bởi phạm vi được tự động tạo."
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3145748\n"
+"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 "Bạn có thể đặt phạm vi nhãn mà chứa cùng một tập hợp nhãn trên các trang tính khác nhau. $[officename] trước tiên tìm kiếm qua các phạm vi nhãn trên trang tính hiện tại, mà không tìm thấy thì tìm kiếm qua các trang tính khác trong tài liệu đó."
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3145801\n"
"3\n"
"help.text"
-msgid "Left Area"
-msgstr "Vùng trái"
+msgid "Range"
+msgstr "Phạm vi"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147434\n"
+"04070400.xhp\n"
+"par_id3154731\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLL\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Nhập văn bản sẽ xuất hiện bên trái phần đầu hoặc phần chân.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Hiển thị tham chiếu ô của mỗi phạm vi nhãn.</ahelp> Để gỡ bỏ một phạm vi nhãn khỏi hộp liệt kê, lựa chọn nó, sau đó bấm nút <emph>Xoá</emph>."
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3148648\n"
+"04070400.xhp\n"
+"hd_id3149121\n"
"5\n"
"help.text"
-msgid "Center Area"
-msgstr "Vùng giữa"
+msgid "Contains column labels"
+msgstr "Chứa nhãn cột"
-#: 02120100.xhp
-#, fuzzy
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3163710\n"
+"04070400.xhp\n"
+"par_id3150330\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Nhập văn bản sẽ xuất hiện bên trái phần đầu hoặc phần chân.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Bao gồm các nhãn cột trong phạm vi nhãn hiện thời.</ahelp>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3154942\n"
+"04070400.xhp\n"
+"hd_id3149020\n"
"7\n"
"help.text"
-msgid "Right Area"
-msgstr "Vùng phải"
+msgid "Contains row labels"
+msgstr "Chức nhãn hàng"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147126\n"
+"04070400.xhp\n"
+"par_id3154754\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLR\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLR\">Nhập văn bản xuất hiện ở bên phải phần đầu và phần chân.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Bao gồm các nhãn hàng trong phạm vi nhãn hiện thời.</ahelp>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_idN10811\n"
+"04070400.xhp\n"
+"hd_id3159264\n"
+"11\n"
"help.text"
-msgid "Header/Footer"
-msgstr "Phần Đầu/Chân"
+msgid "For data range"
+msgstr "Cho phạm vi dữ liệu"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_idN10815\n"
+"04070400.xhp\n"
+"par_id3154703\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn một phần đầu hoặc phần chân định sẵn từ danh sách.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Đặt phạm vi dữ liệu cho đó phạm vi nhãn đã chọn vẫn còn là hợp lệ. Để sửa đổi phạm vi dữ liệu này, nhấn vào trang tính và lựa chọn một phạm vi khác bằng con chuột.</ahelp>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3154729\n"
+"04070400.xhp\n"
+"hd_id3145789\n"
"9\n"
"help.text"
-msgid "Text attributes"
-msgstr "Thuộc tính Văn bản"
+msgid "Add"
+msgstr "Thêm"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150717\n"
+"04070400.xhp\n"
+"par_id3147005\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
-msgstr "<ahelp hid=\"HID_SC_HF_TEXT\">Mở một hộp thoại để gán các định dạng cho văn bản mới hoặc đã chọn.</ahelp> Hộp thoại <emph>Thuộc tính văn bản </emph>có các thẻ là <link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Hiệu ứng phông\">Hiệu ứng phông</link> và <link href=\"text/shared/01/05020500.xhp\" name=\"Vị trí phông\">Vị trí phông</link>."
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Thêm vào phạm vi nhãn hiện thời vào danh sách.</ahelp>"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3159266\n"
+"04080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3156386\">Biểu tượng</alt></image>"
+msgid "Function List"
+msgstr "Danh sách Hàm"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3155336\n"
-"25\n"
+"04080000.xhp\n"
+"bm_id3154126\n"
"help.text"
-msgid "Text Attributes"
-msgstr "Thuộc tính Văn bản"
+msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
+msgstr "<bookmark_value>cửa sổ danh sách công thức</bookmark_value><bookmark_value>cửa sổ danh sách hàm</bookmark_value><bookmark_value>chèn hàm; cửa sổ danh sách hàm</bookmark_value>"
-#: 02120100.xhp
-#, fuzzy
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3145792\n"
-"11\n"
+"04080000.xhp\n"
+"hd_id3154126\n"
+"1\n"
"help.text"
-msgid "File Name"
-msgstr "Tên tập tin"
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Danh sách Hàm\">Danh sách Hàm</link>"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150206\n"
-"12\n"
+"04080000.xhp\n"
+"par_id3151118\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
-msgstr "<ahelp hid=\"HID_SC_HF_FILE\">Chèn một ô trống cho tên tập tin trong vùng được chọn.</ahelp> Bấm vào để chèn tiêu đề. Bấm và giữ chuột để chọn cả tiêu đề, tên tập tin hoặc đường dẫn/tên tập tin từ trình đơn con. Nếu bạn chưa gán tiêu đề (xem <emph>Tập tin - Thuộc tính</emph>) thì tên tập tin sẽ được chèn vào."
+msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Câu lệnh này mở cửa sổ <emph>Danh sách Hàm</emph>, mà hiển thị tất cả các hàm có thể được chèn vào tài liệu của bạn.</ahelp></variable> Cửa sổ <emph>Danh sách Hàm</emph> tương tự với trang thẻ <emph>Hàm</emph> của <link href=\"text/scalc/01/04060000.xhp\" name=\"Trợ lý Hàm\">Trợ lý Hàm</link>. Các hàm được chèn với ký tự giữ chỗ mà sẽ được thay thế bằng giá trị của bạn."
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150369\n"
+"04080000.xhp\n"
+"par_id3152576\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.222inch\" height=\"0.1665inch\"><alt id=\"alt_id3150518\">Biểu tượng</alt></image>"
+msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
+msgstr "Cửa sổ <emph>Danh sách hàm</emph> là một <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"cửa sổ neo được\">cửa sổ neo được</link> và co giãn được. Hãy sử dụng nó để nhập nhanh các hàm vào bảng tính. Bằng cách nhấn đôi vào một mục nhập trong danh sách các hàm, bạn chèn trực tiếp hàm tương ứng với tất cả các tham số thích hợp."
-#: 02120100.xhp
-#, fuzzy
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3154487\n"
-"26\n"
+"04080000.xhp\n"
+"hd_id3145799\n"
+"4\n"
"help.text"
-msgid "File Name"
-msgstr "Tên tập tin"
+msgid "Category List"
+msgstr "Danh sách Phân loại"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3155812\n"
+"04080000.xhp\n"
+"hd_id3153160\n"
+"5\n"
+"help.text"
+msgid "Function List"
+msgstr "Danh sách Hàm"
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3149412\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Hiển thị các hàm sẵn sàng.</ahelp> Khi bạn lựa chọn một hàm nào đó, vùng bên dưới hộp liệt kê sẽ hiển thị một mô tả ngắn. Để chèn hàm đã chọn, hãy nhấn đôi vào nó, hoặc nhấn vào biểu tượng <emph>Chèn hàm vào bảng tính</emph>."
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"hd_id3146971\n"
+"7\n"
+"help.text"
+msgid "Insert Function into calculation sheet"
+msgstr "Chèn hàm vào bảng tính"
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3150043\n"
+"help.text"
+msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Biểu tượng</alt></image>"
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3147345\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
+msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Chèn hàm đã chọn vào tài liệu.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Link to External Data"
+msgstr "Liên kết đến dữ liệu bên ngoài"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3153192\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Tìm tập tin chứa dữ liệu cần chèn.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3145785\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Dữ liệu bên ngoài\"> Liên kết đến dữ liệu bên ngoài</link>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3149262\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">Chèn dữ liệu từ một tập tin kiểu HTML, Calc hay Excel vào trang tính hiện tại dưới dạng một liên kết. Dữ liệu phải nằm bên trong một phạm vi đặt tên.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3146984\n"
+"5\n"
+"help.text"
+msgid "URL of external data source."
+msgstr "URL của nguồn dữ liệu bên ngoài"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3145366\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Hãy nhập địa chỉ URL hay tên tập tin mà chứa dữ liệu bạn muốn chèn vào, sau đó bấm phím <item type=\"keycode\">Enter</item>.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3145251\n"
+"7\n"
+"help.text"
+msgid "Available tables/ranges"
+msgstr "Bảng/Phạm vị sẵn sàng"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3147397\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Hãy lựa chọn bảng hay phạm vi dữ liệu bạn muốn chèn.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3154492\n"
+"9\n"
+"help.text"
+msgid "Update every"
+msgstr "Cập nhật mỗi"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3154017\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/delay\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/delay\">Nhập số các giây cần đợi trước khi dữ liệu bên ngoài được nạp lại vào tài liệu hiện tại.</ahelp>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Format Cells"
+msgstr "Định dạng ô"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
+msgstr "<bookmark_value>thuộc tính về ô bảng</bookmark_value><bookmark_value>thuộc tính;ô bảng</bookmark_value><bookmark_value>định dạng;ô bảng</bookmark_value><bookmark_value>ô bảng;hộp thoại định dạng</bookmark_value>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3148663\n"
+"1\n"
+"help.text"
+msgid "Format Cells"
+msgstr "Định dạng ô"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3150448\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
+msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Cho phép bạn ghi rõ các tùy chọn định dạng khác nhau và áp dụng các thuộc tính cho những ô đã chọn.</ahelp></variable>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3145785\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Số\">Số</link>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3146119\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cell Protection"
+msgstr "Bảo vệ ô"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3145119\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Bảo vệ ô\">Bảo vệ ô</link>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3150398\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Defines protection options for selected cells.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Xác định các tùy chọn về chức năng bảo vệ cho những ô đã chọn.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3150447\n"
+"3\n"
+"help.text"
+msgid "Protection"
+msgstr "Bảo vệ"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3125864\n"
+"9\n"
+"help.text"
+msgid "Hide all"
+msgstr "Ẩn tất cả"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3153768\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Hides formulas and contents of the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Ẩn các công thức và nội dung của các ô đã chọn.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3153190\n"
+"5\n"
+"help.text"
+msgid "Protected"
+msgstr "Bảo vệ"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3151119\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Prevents the selected cells from being modified.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Ngăn cản sửa đổi những ô đã chọn.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3156283\n"
+"15\n"
+"help.text"
+msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
+msgstr "Chức năng bảo vệ ô này chỉ có tác động nếu bạn cũng bảo vệ toàn bộ bảng tính (<emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>)."
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3149377\n"
+"7\n"
+"help.text"
+msgid "Hide formula"
+msgstr "Ẩn công thức"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3154510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Hides formulas in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Ẩn các công thức trong những ô đã chọn.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3155602\n"
+"11\n"
+"help.text"
+msgid "Print"
+msgstr "In"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3153836\n"
+"12\n"
+"help.text"
+msgid "Defines print options for the sheet."
+msgstr "Xác định các tùy chọn về chức năng in ấn cho trang tính đó."
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3155065\n"
"13\n"
"help.text"
-msgid "Sheet Name"
-msgstr "Tên bảng"
+msgid "Hide when printing"
+msgstr "Ẩn khi in"
-#: 02120100.xhp
+#: 05020600.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3148842\n"
+"05020600.xhp\n"
+"par_id3155443\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_TABLE\">Chèn một ô trống trong phần đầu/chân để ta thay tên bảng hiện thời vào đó.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Keeps the selected cells from being printed.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Ngăn cản in những ô đã chọn.</ahelp>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3146870\n"
+"05030000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Biểu tượng</alt></image>"
+msgid "Row"
+msgstr "Hàng"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147071\n"
-"27\n"
+"05030000.xhp\n"
+"hd_id3147228\n"
+"1\n"
"help.text"
-msgid "Sheet Name"
-msgstr "Tên bảng"
+msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
+msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Hàng\">Hàng</link>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3144768\n"
-"15\n"
+"05030000.xhp\n"
+"par_id3154685\n"
+"2\n"
"help.text"
-msgid "Page"
-msgstr "Trang"
+msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt chiều cao của hàng, và hiện thị hay ẩn các hàng đã chọn.</ahelp>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3154960\n"
-"16\n"
+"05030000.xhp\n"
+"hd_id3155132\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_PAGE\">Chèn một ô trống vào trong phần đầu/chân trang để đánh số trang. Nhờ vậy tài liệu sẽ được đánh số trang liền mạch.</ahelp>"
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Bề cao\">Bề cao</link>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3151304\n"
+"05030000.xhp\n"
+"hd_id3155854\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155386\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Bề cao tối ưu\">Bề cao tối ưu</link>"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150048\n"
-"28\n"
+"05030200.xhp\n"
+"tit\n"
"help.text"
-msgid "Page"
-msgstr "Trang"
+msgid "Optimal Row Heights"
+msgstr "Bề cao hàng tối ưu"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3146962\n"
-"17\n"
+"05030200.xhp\n"
+"bm_id3148491\n"
"help.text"
-msgid "Pages"
-msgstr "Trang"
+msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
+msgstr "<bookmark_value>trang tính; bề cao hàng tối ưu</bookmark_value><bookmark_value>hàng; bề cao tối ưu</bookmark_value><bookmark_value>bề cao hàng tối ưu</bookmark_value>"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153812\n"
-"18\n"
+"05030200.xhp\n"
+"hd_id3148491\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_PAGES\">Chèn một ô trống vào trong phần đầu/chân trang để chứa tổng số trang của tài liệu.</ahelp>"
+msgid "Optimal Row Heights"
+msgstr "Bề cao hàng tối ưu"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3149315\n"
+"05030200.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155757\">Biểu tượng</alt></image>"
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Xác định chiều cao hàng tối ưu cho những hàng đã chọn.</ahelp></variable> Chiều cao hàng tối ưu phụ thuộc vào kích cỡ phông chữ của ký tự lớn nhất trên hàng đó. Bạn có thể sử dụng các <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"đơn vị đo\">đơn vị đo</link> khác nhau."
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147499\n"
-"29\n"
+"05030200.xhp\n"
+"hd_id3154908\n"
+"3\n"
"help.text"
-msgid "Pages"
-msgstr "Trang"
+msgid "Add"
+msgstr "Thêm"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3149050\n"
-"19\n"
+"05030200.xhp\n"
+"par_id3151044\n"
+"4\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Đặt thêm khoảng cách giữa ký tự lớn nhất trên một hàng và các biên giới của ô.</ahelp>"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153960\n"
-"20\n"
+"05030200.xhp\n"
+"hd_id3150439\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_DATE\">Chèn một ô trống vào trong phần đầu/chân trang để chứa ngày hiện tại, xuất hiện trong tất cả các trang.</ahelp>"
+msgid "Default value"
+msgstr "Giá trị mặc định"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147299\n"
+"05030200.xhp\n"
+"par_id3146984\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3150394\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Phục hồi giá trị mặc định cho chiều cao hàng tối ưu.</ahelp>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150540\n"
-"30\n"
+"05030300.xhp\n"
+"tit\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "Hide"
+msgstr "Ẩn"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3147610\n"
-"21\n"
+"05030300.xhp\n"
+"bm_id3147265\n"
"help.text"
-msgid "Time"
-msgstr "Giờ"
+msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; ẩn hàm</bookmark_value><bookmark_value>ẩn; hàng</bookmark_value><bookmark_value>ẩn; cột</bookmark_value><bookmark_value>ẩn; trang tính</bookmark_value><bookmark_value>trang tính;ẩn</bookmark_value><bookmark_value>cột;ẩn</bookmark_value><bookmark_value>hàng;ẩn</bookmark_value>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3145638\n"
-"22\n"
+"05030300.xhp\n"
+"hd_id3147265\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_TIME\">Chèn một ô trống trong phần đầu/chân trang để chứa thời điểm hiện tại, xuất hiện trong tất cả các trang.</ahelp>"
+msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Ẩn\">Ẩn</link>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153122\n"
+"05030300.xhp\n"
+"par_id3156281\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3146884\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgstr "<ahelp hid=\".uno:Hide\">Ẩn những cột, hàng hay trang tính riêng đã được chọn.</ahelp>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3157904\n"
-"31\n"
+"05030300.xhp\n"
+"par_id3148645\n"
+"3\n"
"help.text"
-msgid "Time"
-msgstr "Giờ"
+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 "Hãy lựa chọn những hàng hay cột bạn muốn ẩn, sau đó chọn lệnh <emph>Định dạng > Hàng > Ẩn</emph> hay <emph>Định dạng > Cột > Ẩn</emph>."
-#: 04050100.xhp
+#: 05030300.xhp
msgctxt ""
-"04050100.xhp\n"
+"05030300.xhp\n"
+"par_id3147427\n"
+"6\n"
+"help.text"
+msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
+msgstr "Bạn có thể ẩn một trang tính bằng cách lựa chọn trang tính đó, sau đó chọn lệnh <emph>Định dạng > Trang tính > Ẩn</emph>. Trang tính bị ẩn thì không phải được in nếu nó không nằm bên trong một <link href=\"text/scalc/01/05080000.xhp\" name=\"phạm vi in\">phạm vi in</link>."
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3153157\n"
+"5\n"
+"help.text"
+msgid "A break in the row or column header indicates whether the row or column is hidden."
+msgstr "Một chỗ ngắt trong phần đầu của cột hay hàng thì ngụ ý nếu cột hay hàng bị ẩn."
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3145251\n"
+"4\n"
+"help.text"
+msgid "To display hidden rows, columns or sheets"
+msgstr "Để hiển thị cột, hàng hay trang tính đã bị ẩn"
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id8337046\n"
+"help.text"
+msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+msgstr "Hãy lựa chọn phạm vi mà chứa các đối tượng bị ẩn. Bạn cũng có thể sử dụng hộp ở góc bên trên hàng 1 và bên cạnh cột A. Đối với trang tính, không cần làm bước này."
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id5532090\n"
+"help.text"
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgstr "Chọn lệnh <link href=\"text/scalc/01/05030400.xhp\" name=\"Định dạng > Hàng/Cột > Hiện\">Định dạng > Hàng/Cột > Hiện</link> hay <link href=\"text/scalc/01/05050300.xhp\" name=\"Định dạng > Trang tính > Hiện\">Định dạng > Trang tính > Hiện</link>."
+
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet from file"
-msgstr "Bảng từ tập tin"
+msgid "Show"
+msgstr "Hiện"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105C1\n"
+"05030400.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
-msgstr "<link href=\"text/scalc/01/04050100.xhp\">Bảng từ tập tin</link>"
+msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; hiển thị cột</bookmark_value><bookmark_value>hiển thị; cột</bookmark_value><bookmark_value>hiển thị; hàng</bookmark_value>"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105D1\n"
+"05030400.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\"26275\">Chèn một bảng từ một tập tin bảng tính khác.</ahelp>"
+msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Hiện\">Hiện</link>"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105F7\n"
+"05030400.xhp\n"
+"par_id3150447\n"
+"2\n"
"help.text"
-msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
-msgstr "Dùng hộp thoại <link href=\"text/shared/01/01020000.xhp\">Tập tin > Mở</link> để chọn bảng tính."
+msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowColumn\">Chọn lệnh này để hiển thị các hàng/cột bị ẩn trước.</ahelp>"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN10609\n"
+"05030400.xhp\n"
+"par_id3155131\n"
+"3\n"
"help.text"
-msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
-msgstr "Trong hộp thoại <link href=\"text/scalc/01/04050000.xhp\">Chèn bảng</link>, chọn bảng mà bạn cần chèn thêm."
+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 "Để hiển thị một hàng hay cột, lựa chọn phạm vi các hàng hay cột chứa những phần tử bị ẩn, sau đó chọn lệnh <emph>Định dạng > Hàng > Hiện</emph> hay <emph>Định dạng > Cột > Hiện</emph>."
-#: 12040201.xhp
+#: 05030400.xhp
msgctxt ""
-"12040201.xhp\n"
+"05030400.xhp\n"
+"par_id3145748\n"
+"4\n"
+"help.text"
+msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
+msgstr "Để hiển thị tất cả các ô bị ẩn, trước tiên nhấn vào trường ở góc trên, bên trái. Việc này lựa chọn mọi ô của bảng (toàn bộ bảng)."
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
"tit\n"
"help.text"
-msgid "More"
-msgstr "Nhiều"
+msgid "Column"
+msgstr "Cột"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3148492\n"
+"05040000.xhp\n"
+"hd_id3155628\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Nhiều\">Nhiều</link>"
+msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
+msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Cột\">Cột</link>"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3159400\n"
+"05040000.xhp\n"
+"par_id3148946\n"
"2\n"
"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
-msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Hiển thị thêm tùy chọn lọc.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt chiều rộng của cột và ẩn hay hiển thị những cột đã chọn.</ahelp>"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3150791\n"
+"05040000.xhp\n"
+"hd_id3150398\n"
"3\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Bề rộng\">Bề rộng</link>"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154138\n"
+"05040000.xhp\n"
+"hd_id3145171\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Bề rộng tối ưu\">Bề rộng tối ưu</link>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Optimal Column Width"
+msgstr "Bề rộng cột tối ưu"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; bề rộng cột tối ưu</bookmark_value><bookmark_value>cột; bề rộng tối ưu</bookmark_value><bookmark_value>bề rộng cột tối ưu</bookmark_value>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3155628\n"
+"1\n"
+"help.text"
+msgid "Optimal Column Width"
+msgstr "Bề rộng cột tối ưu"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3145068\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Xác định chiều rộng cột tối ưu cho những cột đã chọn.</ahelp></variable> Chiều rộng cột tối ưu thì phụ thuộc vào mục nhập dài nhất bên trong cột đó. Bạn có thể chọn trong những <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"đơn vị đo\">đơn vị đo</link> sẵn sàng."
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3150767\n"
+"3\n"
+"help.text"
+msgid "Add"
+msgstr "Thêm"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3150449\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Xác định thêm khoảng cách giữa mục nhập dài nhất trong một cột, và các viền cột theo chiều dọc.</ahelp>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145785\n"
"5\n"
"help.text"
-msgid "Case sensitive"
-msgstr "Phân biệt chữ hoa/thường"
+msgid "Default value"
+msgstr "Giá trị mặc định"
-#: 12040201.xhp
+#: 05040200.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3147228\n"
+"05040200.xhp\n"
+"par_id3146120\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Phân biệt chữ hoa/thường khi lọc dữ liệu.</ahelp>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Xác định chiều rộng cột tối ưu để hiển thị nội dung hoàn toàn của cột đó.</ahelp> Khoảng cách bổ sung cho chiều rộng cột tối ưu được đặt sẵn thành 0,254 cm."
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154908\n"
-"7\n"
+"05050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Range contains column labels"
-msgstr "Phạm vi chứa nhãn cột"
+msgid "Sheet"
+msgstr "Bảng"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3153768\n"
-"8\n"
+"05050000.xhp\n"
+"bm_id1245460\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Bao gồm các nhãn cột trong hàng đầu của một phạm vi ô.</ahelp>"
+msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>bố trí văn bản phức tạp (CTL);trang tính ghi từ bên trái sang phải</bookmark_value><bookmark_value>trang tính;trái sang phải</bookmark_value><bookmark_value>văn bản ghi từ bên trái sang phải;bảng tính</bookmark_value>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3155306\n"
-"9\n"
+"05050000.xhp\n"
+"hd_id3155923\n"
+"1\n"
"help.text"
-msgid "Copy results to"
-msgstr "Chép kết quả vào"
+msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Trang tính\">Trang tính</link>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3154319\n"
-"10\n"
+"05050000.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Bật tùy chọn này, rồi lựa chọn phạm vi ô trong đó bạn muốn hiển thị kết quả lọc.</ahelp> Bạn cũng có thể lựa chọn một phạm vi đặt tên trong danh sách."
+msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt tên trang tính và hiển thị hay ẩn những trang tính đã chọn.</ahelp>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3145272\n"
-"11\n"
+"05050000.xhp\n"
+"hd_id3156280\n"
+"3\n"
"help.text"
-msgid "Regular expression"
-msgstr "Biểu thức chính quy"
+msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Thay tên\">Thay tên</link>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3152576\n"
-"12\n"
+"05050000.xhp\n"
+"hd_id3145787\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Cho phép bạn sử dụng ký tự đại diện khi xác định bộ lọc.</ahelp> Để xem danh sách các biểu thức chính quy được $[officename] hỗ trợ, nhấn vào <link href=\"text/shared/01/02100001.xhp\" name=\"đây\">đây</link>."
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Hiện\">Hiện</link>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3149377\n"
-"33\n"
+"05050000.xhp\n"
+"par_id3150542\n"
+"5\n"
"help.text"
-msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
-msgstr "Bật tùy chọn <emph>Biểu thức chính quy</emph>, thì bạn có thể sử dụng biểu thức chính quy trong trường « Giá trị nếu hộp liêt kê « Điều kiện » được đặt thành « = » (EQUAL, bằng) hay « <> » (UNEQUAL, không bằng). Cũng vậy với những ô tương ứng bạn tham chiếu cho một bộ lọc cấp cao."
+msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
+msgstr "Nếu một trang tính đã bị ẩn, có mở hộp thoại <emph>Hiện trang tính</emph> mà cho phép bạn lựa chọn một trang tính cần hiển thị lại."
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3149958\n"
-"34\n"
+"05050000.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "No duplication"
-msgstr "Không nhân đôi"
+msgid "Right-To-Left"
+msgstr "Phải sang Trái"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3153876\n"
-"35\n"
+"05050000.xhp\n"
+"par_idN1065A\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Loại trừ các hàng trùng trong danh sách dữ liệu đã lọc.</ahelp>"
+msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".uno:SheetRightToLeft\">Chuyển đổi hướng của trang tính hiện tại sang Phải sang Trái nếu chức năng hỗ trợ <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> (bố trí văn bản phức tạp) đã được bật.</ahelp>"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154018\n"
-"40\n"
+"05050100.xhp\n"
+"tit\n"
"help.text"
-msgid "Keep filter criteria"
-msgstr "Giữ tiêu chuẩn lọc"
+msgid "Rename Sheet"
+msgstr "Thay tên bảng"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3149123\n"
-"41\n"
+"05050100.xhp\n"
+"bm_id3147336\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Bật tùy chọn <emph>Chép kết quả vào</emph>, sau đó ghi rõ phạm vi đích đến, trong đó bạn muốn hiển thị dữ liệu đã lọc. Bật tùy chọn này thì phạm vi đích đến còn lại được liên kết đến phạm vi nguồn. Trước tiên, bạn cần phải xác định phạm vi nguồn dưới mục trình đơn <emph>Dữ liệu > Xác định Phạm vi</emph> dưới dạng một phạm vi cơ sở dữ liệu.</ahelp> Sau đó, bạn có thể áp dụng lại bộ lọc vào bất cứ lúc sau nào : nhấn vào phạm vi nguồn, sau đó chọn lệnh <emph>Dữ liệu > Cập nhật Phạm vi</emph>."
+msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
+msgstr "<bookmark_value>tên bảng công tác</bookmark_value><bookmark_value>thay đổi;tên trang tính</bookmark_value><bookmark_value>trang tính; thay đổi tên</bookmark_value>"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3149018\n"
-"36\n"
+"05050100.xhp\n"
+"hd_id3147336\n"
+"1\n"
"help.text"
-msgid "Data range"
-msgstr "Phạm vi dữ liệu"
+msgid "Rename Sheet"
+msgstr "Thay tên bảng"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3150042\n"
-"37\n"
+"05050100.xhp\n"
+"par_id3150792\n"
+"2\n"
"help.text"
-msgid "Displays the cell range or the name of the cell range that you want to filter."
-msgstr "Hiển thị phạm vi ô hay tên của phạm vi ô cần lọc."
+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\">Câu lệnh này mở một hộp thoại trong đó bạn có thể gán một tên khác cho trang tính hiện tại.</ahelp></variable>"
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
+"05050100.xhp\n"
+"hd_id3153968\n"
+"3\n"
+"help.text"
+msgid "Name"
+msgstr "Tên"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3155131\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">Thêm tên mới cho bảng vào đây.</ahelp>"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3153092\n"
+"5\n"
+"help.text"
+msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
+msgstr "Bạn cũng có thể mở hộp thoại <emph>Thay tên bảng tính</emph> thông qua trình đơn ngữ cảnh, bằng cách đặt con trỏ ở trên một thẻ bảng tính ở dưới cửa sổ và <switchinline select=\"sys\"><caseinline select=\"MAC\">nhấn chuột trong khi ấn giữ phím Ctrl </caseinline><defaultinline>nhấn phím phải chuột</defaultinline></switchinline>."
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3147396\n"
+"6\n"
+"help.text"
+msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgstr "Một cách khác là nhấn vào thẻ trang tính trong khi ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline>. Sau đó thì bạn có thể thay đổi tên một cách trực tiếp. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
"tit\n"
"help.text"
-msgid "Statistical Functions Part One"
-msgstr "Hàm Thống Kê Phần 1"
+msgid "Show Sheet"
+msgstr "Hiện trang tính"
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146320\n"
+"05050300.xhp\n"
+"bm_id3148946\n"
+"help.text"
+msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+msgstr "<bookmark_value>trang tính; hiển thị</bookmark_value><bookmark_value>hiển thị; trang tính</bookmark_value>"
+
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"hd_id3148946\n"
"1\n"
"help.text"
-msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
-msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Hàm Thống Kê Phần 1</link></variable>"
+msgid "Show Sheet"
+msgstr "Hiện trang tính"
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3145632\n"
+"05050300.xhp\n"
+"par_id3148799\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
-msgstr "<bookmark_value>hàm INTERCEPT</bookmark_value><bookmark_value>điểm giao</bookmark_value><bookmark_value>giao</bookmark_value>"
+msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
+msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Hiển thị các trang tính đã bị ẩn trước bởi lệnh <emph>Ẩn</emph>.</ahelp></variable> Lựa chọn chỉ một trang tính trước khi gọi lệnh này. Trang tính hiện tại luôn luôn được chọn. Muốn chọn một trang tính khác với trang tính hiện tại thì bạn có thể bỏ chọn nó bằng cách ấn giữ phím <switchinline select=\"sys\"> <caseinline select=\"MAC\">Cmd</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> trong khi nhấn vào thẻ trang tính tương ứng ở dưới cửa sổ."
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145632\n"
+"05050300.xhp\n"
+"hd_id3151112\n"
+"3\n"
+"help.text"
+msgid "Hidden sheets"
+msgstr "Trang tính ẩn"
+
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"par_id3145273\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Hiển thị danh sách các trang tính bị ẩn trong tài liệu bảng tính của bạn.</ahelp> Để hiển thị một trang tính nào đó, nhấn vào mục nhập tương ứng trong danh sách, sau đó xác nhận với nút <emph>OK</emph>."
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Merge and Center Cells"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3149785\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3151246\n"
"2\n"
"help.text"
-msgid "INTERCEPT"
-msgstr "INTERCEPT"
+msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146887\n"
+"05060000.xhp\n"
+"par_id3154020\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3148552\n"
+"4\n"
+"help.text"
+msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
+msgstr "Ô đã gộp lại thì nhận tên của ô đầu tiên của phạm vi ô gốc. Ô đã gộp lại không thể được gộp lần nữa với ô khác. Phạm vi phải có dạng hình chữ nhât: không hỗ trợ chức năng đa chọn."
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3149665\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Tính điểm ở đó một đường sẽ cắt chéo với các giá trị y bằng cách sử dụng những giá trị x và y đã biết.</ahelp>"
+msgid "If the cells to be merged have any contents, a security dialog is shown."
+msgstr "Nếu ô cần gộp lại cũng chứa nội dung, một hộp thoại cảnh báo được hiển thị."
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150374\n"
+"05060000.xhp\n"
+"par_id3153718\n"
+"help.text"
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr "Nhập ô có thể dẫn tới lỗi trong tính toán các công thức của bảng."
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Page Style"
+msgstr "Kiểu dáng trang"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"hd_id3157910\n"
+"1\n"
+"help.text"
+msgid "Page Style"
+msgstr "Kiểu dáng trang"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"par_id3156023\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Mở một hộp thoại trong đó bạn có thể xác định diện mạo của tất cả các trang trong tài liệu.</ahelp></variable>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet"
+msgstr "Bảng"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"bm_id3150542\n"
+"help.text"
+msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgstr "<bookmark_value>trang; thứ tự khi in</bookmark_value><bookmark_value>in ấn; thứ tứ trang</bookmark_value>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3156329\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Trang tính\">Trang tính</link>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3151384\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">Ghi rõ những phần tử cần bao gồm trong bản in tất cả trang tính theo Kiểu dáng Trang hiện thời. Hơn nữa, bạn có thể đặt thứ tự in trang, số thứ tự trang đầu tiên, và tỷ lệ trang.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3150542\n"
+"3\n"
+"help.text"
+msgid "Print"
+msgstr "In"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3125863\n"
"4\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Defines which elements of the spreadsheet are to be printed."
+msgstr "Xác định cần in những phần tử nào của bảng tính."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149718\n"
+"05070500.xhp\n"
+"hd_id3151041\n"
"5\n"
"help.text"
-msgid "INTERCEPT(DataY; DataX)"
-msgstr "INTERCEPT(Dữ_liệuY; Dữ_liệuX)"
+msgid "Column and row headers"
+msgstr "Phần đầu Cột và Hàng"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149947\n"
+"05070500.xhp\n"
+"par_id3147228\n"
"6\n"
"help.text"
-msgid "<emph>DataY</emph> is the dependent set of observations or data."
-msgstr "<emph> Dữ_liệuY</emph> là tập hợp phụ thuộc chứa các quan sát hay dữ liệu."
+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\">Ghi rõ nếu bạn muốn in các phần đầu cột/hàng, hay không.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147412\n"
+"05070500.xhp\n"
+"hd_id3150439\n"
"7\n"
"help.text"
-msgid "<emph>DataX</emph> is the independent set of observations or data."
-msgstr "<emph> Dữ_liệuX</emph> là tập hợp không phụ thuộc chứa các quan sát hay dữ liệu."
+msgid "Grid"
+msgstr "Lưới"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152983\n"
+"05070500.xhp\n"
+"par_id3147436\n"
"8\n"
"help.text"
-msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
-msgstr "Ở đây thì phải sử dụng tên, mảng hay tham chiếu chứa số. Cũng có thể nhập số một cách trực tiếp."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3157906\n"
+"05070500.xhp\n"
+"hd_id3145750\n"
"9\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "Comments"
+msgstr "Ghi chú"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148728\n"
+"05070500.xhp\n"
+"par_id3150010\n"
"10\n"
"help.text"
-msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
-msgstr "Để tính hệ số chặn, dùng phạm vi ô D3:D9 làm giá trị y, và C3:C9 làm giá trị x, từ bảng tính thí dụ. Nhập liệu như theo đây:"
+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\">In ra những ghi chú được xác định trên bảng tính.</ahelp> Các ghi chú này sẽ được in ra trên một trang riêng, mỗi ghi chú cùng với tham chiếu ô tương ứng."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149013\n"
+"05070500.xhp\n"
+"hd_id3154944\n"
"11\n"
"help.text"
-msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
-msgstr "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgid "Objects/graphics"
+msgstr "Đối tượng/Đồ hoạ"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148437\n"
+"05070500.xhp\n"
+"par_id3149581\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
-msgstr "<bookmark_value>hàm COUNT</bookmark_value><bookmark_value>số;đếm</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">Bao gồm tất cả các đối tượng đã chèn (nếu có thể in được) và đồ họa đều với tài liệu được in ra.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148437\n"
+"05070500.xhp\n"
+"hd_id3149377\n"
"13\n"
"help.text"
-msgid "COUNT"
-msgstr "COUNT"
+msgid "Charts"
+msgstr "Đồ thị"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150700\n"
+"05070500.xhp\n"
+"par_id3148455\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHL\">Đếm bao nhiêu số nằm trong danh sách các đối số.</ahelp> Mục nhập văn bản bị bỏ qua."
+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\">In ra các đồ thị đã được chèn vào bảng tính.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3153930\n"
+"05070500.xhp\n"
+"hd_id3153418\n"
"15\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Drawing Objects"
+msgstr "Đối tượng vẽ"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148585\n"
+"05070500.xhp\n"
+"par_id3149122\n"
"16\n"
"help.text"
-msgid "COUNT(Value1; Value2; ... Value30)"
-msgstr "COUNT(Giá_trị1; Giá_trị2; ... Giá_trị30)"
+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\">Bao gồm tất cả các đối tượng vẽ trong tài liệu được in ra.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155827\n"
+"05070500.xhp\n"
+"hd_id3150330\n"
"17\n"
"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
-msgstr "<emph>Giá_trị1, Giá_trị2, ...</emph> là 1 đến 30 giá trị hay phạm vi đại diện những giá trị cần đếm."
+msgid "Formulas"
+msgstr "Công thức"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149254\n"
+"05070500.xhp\n"
+"par_id3153715\n"
"18\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+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\">In ra các công thức nằm trong ô, thay cho kết quả của công thức.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149953\n"
+"05070500.xhp\n"
+"hd_id3156385\n"
"19\n"
"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
-msgstr "Những mục nhập 2, 4, 6 và 8 trong các trường Giá trị 1-4 sẽ được đếm."
+msgid "Zero Values"
+msgstr "Giá trị số không"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154558\n"
+"05070500.xhp\n"
+"par_id3149258\n"
"20\n"
"help.text"
-msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
-msgstr "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. Số đếm các số thì là 3."
+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\">Ghi rõ có nên in ra ngay cả ô có giá trị số không.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3149729\n"
+"05070500.xhp\n"
+"hd_id3154022\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
-msgstr "<bookmark_value>hàm COUNTA</bookmark_value><bookmark_value>số các mục nhập</bookmark_value>"
+msgid "Page Order"
+msgstr "Thứ tự Trang"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149729\n"
+"05070500.xhp\n"
+"par_id3166423\n"
"22\n"
"help.text"
-msgid "COUNTA"
-msgstr "COUNTA"
+msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
+msgstr "Xác định thứ tự theo đó đánh số và in ra dữ liệu trên một trang tính khi toàn bộ dữ liệu không vừa bên trong một tờ giấy."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150142\n"
+"05070500.xhp\n"
+"hd_id3152580\n"
"23\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Đếm bao nhiêu giá trị nằm trong danh sách các đối số.</ahelp> Cũng đếm các mục nhập kiểu văn bản, ngay cả khi mục nhập như vậy chứa một chuỗi rỗng có chiều dài 0. Nếu một đối số có dạng mảng hay tham chiếu, thì bỏ qua bất cứ ô rỗng nào nằm bên trong nó."
+msgid "Top to bottom, then right"
+msgstr "Trên xuống dưới, sau đó sang phải"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148573\n"
+"05070500.xhp\n"
+"par_id3150205\n"
"24\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOW\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOW\">In theo chiều dọc, từ cột bên trái xuống dưới của trang tính.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153111\n"
+"05070500.xhp\n"
+"hd_id3150786\n"
"25\n"
"help.text"
-msgid "COUNTA(Value1; Value2; ... Value30)"
-msgstr "COUNTA(Giá_trị1; Giá_trị2; ... Giá_trị30)"
+msgid "Left to right, then down"
+msgstr "Trái sang phải, sau đó xuống"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150001\n"
+"05070500.xhp\n"
+"par_id3154657\n"
"26\n"
"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
-msgstr "<emph>Giá_trị1, Giá_trị2, ...</emph> là 1 đến 30 đối số đại diện những giá trị cần đếm."
+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\">In theo chiều ngang, từ hàng đầu của trang tính sang cột bên phải.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150334\n"
+"05070500.xhp\n"
+"hd_id3150887\n"
"27\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "First page number"
+msgstr "Số thứ tự trang đầu tiên"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154508\n"
+"05070500.xhp\n"
+"par_id3155378\n"
"28\n"
"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
-msgstr "Những mục nhập 2, 4, 6 và 8 trong các trường Giá trị 1-4 sẽ được đếm."
+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\">Bật tùy chọn này nếu bạn muốn trang thứ nhất bắt đầu với một số khác với 1.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158000\n"
+"05070500.xhp\n"
+"par_id3145389\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Enter the number of the first page.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Nhập số thứ tự của trang đầu tiên.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3146978\n"
"29\n"
"help.text"
-msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
-msgstr "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. Số đếm các số thì là 4."
+msgid "Scale"
+msgstr "Co giãn"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3150267\n"
+"05070500.xhp\n"
+"par_id3149408\n"
+"30\n"
"help.text"
-msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>hàm B</bookmark_value><bookmark_value>xác suất của mẫu theo phân bố nhị thức</bookmark_value>"
+msgid "Defines a page scale for the printed spreadsheet."
+msgstr "Xác định một tỷ lệ trang cho bảng tính được in ra."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150267\n"
+"05070500.xhp\n"
+"par_idN1096D\n"
+"help.text"
+msgid "Scaling mode"
+msgstr "Chế độ co giãn"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN10971\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Chọn một chế độ co giãn trong hộp liệt kê. Các điều khiển thích hợp được hiển thị bên cạnh hộp liệt kê.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3155089\n"
"31\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "Reduce/enlarge printout"
+msgstr "Thu nhỏ/phóng to vùng in"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156061\n"
+"05070500.xhp\n"
+"par_id3159171\n"
"32\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_B\">Trả về xác suất của một mẫu theo phân bố nhị thức.</ahelp>"
+msgid "Specifies a scaling factor to scale all printed pages."
+msgstr "Ghi rõ một tỷ lệ để co giãn tất cả các trang được in ra."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150659\n"
+"05070500.xhp\n"
+"par_idN1099A\n"
+"help.text"
+msgid "Scaling factor"
+msgstr "Hệ số co giãn"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3152899\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">Nhập một tỷ lệ. Hệ số nhỏ hơn 100 sẽ giảm kiểu dáng của trang, còn hệ số lớn hơn sẽ tăng kích cỡ của trang.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109B2\n"
+"help.text"
+msgid "Fit print range(s) to width/height"
+msgstr "Vừa phạm vi in khít bề rộng/cao"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109B5\n"
+"help.text"
+msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
+msgstr "Ghi rõ số tối đa các trang theo chiều ngang (bề rộng) và theo chiều dọc (bề cao) cần in trên mỗi trang theo Kiểu dáng Trang hiện thời."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109BB\n"
+"help.text"
+msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+msgstr "Các phạm vi in luôn luôn được co giãn theo tỷ lệ, do đó số các trang kết quả có thể ít hơn số đã ghi rõ."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109BF\n"
+"help.text"
+msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgstr "Bạn có thể bỏ chọn một của những hộp, để cho phép chiều đó chiếm càng nhiều trang càng cần thiết."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109C3\n"
+"help.text"
+msgid "If you clear both boxes, this will result in a scaling factor of 100%."
+msgstr "Bỏ chọn cả hai hộp thì mỗi mục được in « như thế »: hệ số co giãn là 100%."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109CE\n"
+"help.text"
+msgid "Width in pages"
+msgstr "Bề rộng theo trang"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109D1\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Nhập số tối đa các trang cần in theo chiều ngang trên tờ giấy.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109E8\n"
+"help.text"
+msgid "Height in pages"
+msgstr "Bề cao theo trang"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109EB\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Nhập số tối đa các trang cần in theo chiều dọc.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3148868\n"
"33\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Fit print range(s) on number of pages"
+msgstr "Vừa phạm vi in trên số trang"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148392\n"
+"05070500.xhp\n"
+"par_id3145074\n"
"34\n"
"help.text"
-msgid "B(Trials; SP; T1; T2)"
-msgstr "B(Thử; SP; T1; T2)"
+msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
+msgstr "Ghi rõ số tối đa các tờ giấy trên đó cần in ra mọi trang theo Kiểu dáng Trang hiện thời. Tỷ lệ sẽ bị giảm theo yêu cầu đã vừa số trang đã xác định."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149002\n"
-"35\n"
+"05070500.xhp\n"
+"par_idN10A26\n"
"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "<emph>Thử</emph> là số các phép thử không phụ thuộc."
+msgid "Number of pages"
+msgstr "Số trang"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148875\n"
-"36\n"
+"05070500.xhp\n"
+"par_id3144507\n"
+"37\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph> là xác suất thành công của mỗi phép thử."
+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\">Gõ số tối đa các trang cần in ra.</ahelp>"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145352\n"
-"37\n"
+"05080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>T1</emph> defines the lower limit for the number of trials."
-msgstr "<emph>T1</emph> đặt giới hạn dưới cho số các phép thử."
+msgid "Print Ranges"
+msgstr "Phạm vi in"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149538\n"
-"38\n"
+"05080000.xhp\n"
+"hd_id3154013\n"
+"1\n"
"help.text"
-msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
-msgstr "<emph>T2</emph> (tùy chọn) đặt giới hạn trên cho số các phép thử."
+msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Phạm vi in\">Phạm vi in</link>"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148768\n"
-"39\n"
+"05080000.xhp\n"
+"par_id3155855\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
+msgstr "<ahelp hid=\".\">Quản lý các phạm vi in. Chỉ những ô nằm bên trong các phạm vi in đều sẽ được in ra.</ahelp>"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154633\n"
-"40\n"
+"05080000.xhp\n"
+"par_id3146119\n"
+"4\n"
"help.text"
-msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
-msgstr "Lăn súc sắc 10 lần để được số 6 hai lần có xác suất nào? Xác suất được một số 6 (hay bất cứ số cụ thể nào) là 1/6. Công thức theo đây kết hợp các phần tử này:"
+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 "Nếu bạn không tự xác định phạm vi in, Calc tự động gán một phạm vi in bao gồm tất cả các ô không rỗng."
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149393\n"
-"41\n"
+"05080000.xhp\n"
+"hd_id3154729\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
-msgstr "<item type=\"input\">=B(10;1/6;2)</item> trả về xác suất 29%."
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Sửa\">Sửa</link>"
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3158416\n"
+"05080100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
-msgstr "<bookmark_value>hàm RSQ</bookmark_value><bookmark_value>hệ số xác định</bookmark_value><bookmark_value>phân tích hồi quy</bookmark_value>"
+msgid "Define"
+msgstr "Định nghĩa"
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3158416\n"
-"43\n"
+"05080100.xhp\n"
+"hd_id3145673\n"
+"1\n"
"help.text"
-msgid "RSQ"
-msgstr "RSQ"
+msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Định nghĩa\">Định nghĩa</link>"
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154949\n"
-"44\n"
+"05080100.xhp\n"
+"par_id3153896\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
-msgstr "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Trả về hệ số tương quan Pearson bình phương dựa vào những giá trị đã cho.</ahelp> RSQ (cũng được gọi như là hệ số xác định) đo độ chính xác điều chỉnh và có thể được dùng để làm phân tích hồi quy."
+msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DefinePrintArea\">Xác định một ô hoạt động hay vùng ô đã chọn làm phạm vi in.</ahelp>"
-#: 04060181.xhp
+#: 05080200.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3152820\n"
-"45\n"
+"05080200.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Remove"
+msgstr "Bỏ"
-#: 04060181.xhp
+#: 05080200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155822\n"
-"46\n"
+"05080200.xhp\n"
+"hd_id3153562\n"
+"1\n"
"help.text"
-msgid "RSQ(DataY; DataX)"
-msgstr "RSQ(Dữ_liệuY; Dữ_liệuX)"
+msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Bỏ\">Bỏ</link>"
-#: 04060181.xhp
+#: 05080200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150470\n"
-"47\n"
+"05080200.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "<emph>DataY</emph> is an array or range of data points."
-msgstr "<emph>Dữ_liệuY</emph> là một mảng hay phạm vi chứa các điểm dữ liệu."
+msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePrintArea\">Gỡ bỏ vùng in đã xác định.</ahelp>"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153181\n"
-"48\n"
+"05080300.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>DataX</emph> is an array or range of data points."
-msgstr "<emph>Dữ_liệuX</emph> là một mảng hay phạm vi chứa các điểm dữ liệu."
+msgid "Edit Print Ranges"
+msgstr "Sửa phạm vi in"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3156258\n"
-"49\n"
+"05080300.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "Edit Print Ranges"
+msgstr "Sửa phạm vi in"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155991\n"
-"50\n"
+"05080300.xhp\n"
+"par_id3159488\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
-msgstr "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> tính hệ số tương quan cho cả hai tập hợp dữ liệu trong cột A và B."
+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\">Mở một hộp thoại trong đó bạn có thể ghi rõ vùng in.</ahelp></variable> Bạn cũng có thể đặt những hàng/cột cần lặp lại trên mọi trang."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3145620\n"
+"05080300.xhp\n"
+"par_idN105AE\n"
"help.text"
-msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
-msgstr "<bookmark_value>hàm BETAINV</bookmark_value><bookmark_value>hàm mật độ xác suất tích lũy;đảo ngược</bookmark_value>"
+msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145620\n"
-"52\n"
+"05080300.xhp\n"
+"hd_id3156281\n"
+"3\n"
"help.text"
-msgid "BETAINV"
-msgstr "BETAINV"
+msgid "Print range"
+msgstr "Phạm vi in"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149825\n"
-"53\n"
+"05080300.xhp\n"
+"par_id3147228\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Trả về nghịch đảo của hàm mật độ xác suất bêta tích lũy.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Cho phép bạn sửa đổi một phạm vi in đã xác định.</ahelp>"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3152479\n"
-"54\n"
+"05080300.xhp\n"
+"par_id3145174\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr "Hãy chọn mục <emph>-không có-</emph> để gỡ bỏ một lời xác định phạm vi in cho bảng tính hiện tại. Chọn <emph>-toàn bộ trang tính-</emph> để đặt trang tính hiện tại làm phạm vi in. Chọn <emph>-vùng chọn-</emph> để xác định vùng bảng tính đã chọn làm phạm vi in. Bằng cách chọn mục <emph>-do người dùng xác định-</emph>, bạn có thể xác định một phạm vi in mà bạn đã xác định dùng lệnh <emph>Định dạng > Phạm vi in</emph>. Nếu bạn đã đặt tên cho một phạm vi dùng lệnh <emph>Chèn > Tên > Xác định</emph>, tên đó sẽ được hiển thị và có thể được chọn trong hộp liệt kê."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156300\n"
-"55\n"
+"05080300.xhp\n"
+"par_id3145272\n"
+"6\n"
"help.text"
-msgid "BETAINV(Number; Alpha; Beta; Start; End)"
-msgstr "BETAINV(Số; Alpha; Bêta; Đầu; Cuối)"
+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 "Trong hộp văn bản bên phải, bạn có thể nhập một phạm vi in theo tham chiếu hay theo tên. Nếu con trỏ nằm trong hộp văn bản <emph>Phạm vi in</emph>, bạn cũng có thể chọn phạm vi in trên bảng tính, dùng con chuột."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149266\n"
-"56\n"
+"05080300.xhp\n"
+"hd_id3149260\n"
+"7\n"
"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
-msgstr "<emph>Số</emph> là giá trị nằm giữa <emph>Đầu</emph> và <emph>Cuối</emph> ở đó cần tính hàm."
+msgid "Rows to repeat"
+msgstr "Hàng cần lặp lại"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149710\n"
-"57\n"
+"05080300.xhp\n"
+"par_id3147426\n"
+"8\n"
"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "<emph>Alpha</emph> là một tham số đối với phân bố."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Chọn một hay nhiều hàng cần in trên mọi trang. Trong hộp văn bản bên phải, nhập tham chiếu hàng, v.d. « 1 », « $1 » hay « $2:$3 ».</ahelp> Hộp liệt kê hiển thị mục <emph>-do người dùng xác định-</emph>. Bạn cũng có thể chọn mục <emph>-không có-</emph> để gỡ bỏ một hàng lặp lại đã xác định."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156306\n"
-"58\n"
+"05080300.xhp\n"
+"par_id3155418\n"
+"9\n"
"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "<emph>Bêta</emph> là một tham số đối với phân bố."
+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 "Bạn cũng có thể xác định hàng lặp lại bằng cách kéo con chuột trên bảng tính, nếu con trỏ nằm trong trường văn bản <emph>Hàng cần lặp lại</emph> trong hộp thoại."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150960\n"
-"59\n"
+"05080300.xhp\n"
+"hd_id3149581\n"
+"10\n"
"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "<emph>Đầu</emph> (tùy chọn) là giới hạn dưới của <emph>Số</emph>."
+msgid "Columns to repeat"
+msgstr "Cột cần lặp lại"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151268\n"
-"60\n"
+"05080300.xhp\n"
+"par_id3155602\n"
+"11\n"
"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "<emph>Cuối</emph> (tùy chọn) là giới hạn trên của <emph>Số</emph>."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Hãy chọn một hay nhiều cột cần in trên mọi trang. Trong hộp văn bản bên phải, nhập tham chiếu cột, v.d. « A » hay « AB » hay « $C:$E ».</ahelp> Hộp liệt kê hiển thị mục <emph>-do người dùng xác định-</emph>. Bạn cũng có thể chọn mục <emph>-không có-</emph> để gỡ bỏ một cột lặp lại đã xác định."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_idN109DF\n"
+"05080300.xhp\n"
+"par_id3150749\n"
+"12\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
+msgstr "Bạn cũng có thể xác định cột lặp lại bằng cách kéo con chuột trên bảng tính, nếu con trỏ nằm trong trường văn bản <emph>Cột cần lặp lại</emph> trong hộp thoại."
-#: 04060181.xhp
+#: 05080400.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3147077\n"
-"61\n"
+"05080400.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "Add"
+msgstr "Thêm"
-#: 04060181.xhp
+#: 05080400.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146859\n"
-"62\n"
+"05080400.xhp\n"
+"hd_id3149457\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
-msgstr "<item type=\"input\">=BETAINV(0.5;5;10)</item> trả về giá trị 0,33."
+msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
+msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Thêm\">Thêm</link>"
-#: 04060181.xhp
+#: 05080400.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3156096\n"
+"05080400.xhp\n"
+"par_id3156423\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
-msgstr "<bookmark_value>hàm BETADIST</bookmark_value><bookmark_value>hàm mật độ xác suất tích lũy;tính</bookmark_value>"
+msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddPrintArea\">Thêm vùng chọn hiện thời vào các vùng in đã xác định.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3156096\n"
-"64\n"
+"05100000.xhp\n"
+"tit\n"
"help.text"
-msgid "BETADIST"
-msgstr "BETADIST"
+msgid "Styles and Formatting"
+msgstr "Kiểu dáng và Định dạng"
-#: 04060181.xhp
-#, fuzzy
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150880\n"
-"65\n"
+"05100000.xhp\n"
+"bm_id3150447\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Trả về phân bố t.</ahelp>"
+msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
+msgstr "<bookmark_value>Đặt kiểu dáng, xem cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>định dạng; cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>đặt định dạng; cửa sổ Kiểu dáng và Định dạng</bookmark_value><bookmark_value>xô sơn để áp dụng kiểu dáng</bookmark_value>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150762\n"
-"66\n"
+"05100000.xhp\n"
+"hd_id3150447\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Kiểu dáng và Định dạng\">Kiểu dáng và Định dạng</link>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147571\n"
-"67\n"
+"05100000.xhp\n"
+"par_id3147434\n"
+"2\n"
"help.text"
-msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
-msgstr "BETADIST(Số; Alpha; Bêta; Đầu; Cuối)"
+msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
+msgstr "Hãy sử dụng cửa sổ <emph>Kiểu dáng và Định dạng</emph> để gán kiểu dáng cho đối tượng và phần văn bản. Bạn có khả năng cập nhật kiểu dáng, sửa đổi kiểu dáng đã có, hay tạo kiểu dáng mới."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156317\n"
-"68\n"
+"05100000.xhp\n"
+"par_id3149665\n"
+"30\n"
"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
-msgstr "<emph>Số</emph> là giá trị nằm giữa <emph>Đầu</emph> và <emph>Cuối</emph> ở đó cần tính hàm."
+msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgstr "<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"cửa sổ neo được\">Cửa sổ neo được</link> <emph>Kiểu dáng và định dạng</emph> có thể ở dạng mở trong khi soạn thảo tài liệu."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156107\n"
-"69\n"
+"05100000.xhp\n"
+"hd_id3150012\n"
+"36\n"
"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "<emph>Alpha</emph> là một tham số đối với phân bố."
+msgid "How to apply a cell style:"
+msgstr "Áp dụng một kiểu dáng ô như thế nào :"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153619\n"
-"70\n"
+"05100000.xhp\n"
+"par_id3159155\n"
+"37\n"
"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "<emph>Bêta</emph> là một tham số đối với phân bố."
+msgid "Select the cell or cell range."
+msgstr "Hãy lựa chọn ô hay phạm vi ô."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150254\n"
-"71\n"
+"05100000.xhp\n"
+"par_id3145749\n"
+"38\n"
"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "<emph>Đầu</emph> (tùy chọn) là giới hạn dưới của <emph>Số</emph>."
+msgid "Double-click the style in the Styles and Formatting window."
+msgstr "Nhấn đôi vào kiểu dáng trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149138\n"
-"72\n"
+"05100000.xhp\n"
+"hd_id3153877\n"
+"4\n"
"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "<emph>Cuối</emph> (tùy chọn) là giới hạn trên của <emph>Số</emph>."
+msgid "Cell Styles"
+msgstr "Kiểu dáng ô"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id012020091254453\n"
+"05100000.xhp\n"
+"par_id3145801\n"
+"6\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
-msgstr "<emph>Cumulative</emph> (tùy chọn): nếu giá trị 0 hoặc False sẽ tính Hàm mật độ xác xuất. Giá trị khác hoặc True, hoặc bỏ trống, sẽ tính Hàm phân bố tích lũy."
+msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaStyle\">Hiển thị danh sách các Kiểu dáng Ô cho chức năng <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"định dạng ô gián tiếp\">định dạng ô gián tiếp</link>.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_idN10AB3\n"
+"05100000.xhp\n"
+"par_id3150751\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153714\">Biểu tượng</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145649\n"
-"73\n"
+"05100000.xhp\n"
+"par_id3154255\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "Cell Styles"
+msgstr "Kiểu dáng ô"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156118\n"
-"74\n"
+"05100000.xhp\n"
+"hd_id3153963\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
-msgstr "<item type=\"input\">=BETADIST(0.75;3;4)</item> trả về giá trị 0,96"
+msgid "Page Styles"
+msgstr "Kiểu dáng Trang"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3143228\n"
+"05100000.xhp\n"
+"par_id3147003\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
-msgstr "<bookmark_value>hàm BINOMDIST</bookmark_value>"
+msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
+msgstr "<ahelp hid=\".uno:PageStyle\">Hiển thị các Kiểu dáng Trang sẵn sàng cho chức năng định dạng trang gián tiếp.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3143228\n"
-"76\n"
+"05100000.xhp\n"
+"par_id3159100\n"
"help.text"
-msgid "BINOMDIST"
-msgstr "BINOMDIST"
+msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149814\">Biểu tượng</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146897\n"
-"77\n"
+"05100000.xhp\n"
+"par_id3150361\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Trả về xác suất phân bố nhị thức số hạng riêng biệt.</ahelp>"
+msgid "Page Styles"
+msgstr "Kiểu dáng Trang"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149289\n"
-"78\n"
+"05100000.xhp\n"
+"hd_id3150202\n"
+"10\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Fill Format Mode"
+msgstr "Chế độ Định dạng Điền"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156009\n"
-"79\n"
+"05100000.xhp\n"
+"par_id3155531\n"
+"12\n"
"help.text"
-msgid "BINOMDIST(X; Trials; SP; C)"
-msgstr "BINOMDIST(X; Thử; SP; C)"
+msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Bật/tắt chế độ <emph>Định dạng Điền</emph>. Hãy dùng xô sơn để gán Kiểu dáng được chọn trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154304\n"
-"80\n"
+"05100000.xhp\n"
+"par_id3155087\n"
"help.text"
-msgid "<emph>X</emph> is the number of successes in a set of trials."
-msgstr "<emph>X</emph> là số lần thành công trong một dãy phép thử."
+msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153068\">Biểu tượng</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147492\n"
-"81\n"
+"05100000.xhp\n"
+"par_id3156198\n"
+"11\n"
"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "<emph>Thử</emph> là số các phép thử không phụ thuộc."
+msgid "Fill Format Mode"
+msgstr "Chế độ Định dạng Điền"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146085\n"
-"82\n"
+"05100000.xhp\n"
+"hd_id3148870\n"
+"13\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph> là xác suất thành công của mỗi phép thử."
+msgid "How to apply a new style with the paint can:"
+msgstr "Áp dụng một kiểu dáng mới dùng xô sơn như thế nào :"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149760\n"
-"83\n"
+"05100000.xhp\n"
+"par_id3145078\n"
+"27\n"
"help.text"
-msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
-msgstr "<emph>C</emph> = 0 tính xác suất của một sự kiện riêng lẻ, và <emph>C</emph> = 1 tính xác suất tích lũy."
+msgid "Select the desired style from the Styles and Formatting window."
+msgstr "Hãy lựa chọn kiểu dáng đã muốn trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3151171\n"
-"84\n"
+"05100000.xhp\n"
+"par_id3159098\n"
+"28\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "Click the <emph>Fill Format Mode</emph> icon."
+msgstr "Nhấn vào biểu tượng <emph>Chế độ Định dạng Điền</emph>."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145666\n"
-"85\n"
+"05100000.xhp\n"
+"par_id3148609\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
-msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> hiển thị (nếu những giá trị <item type=\"input\">0</item> đến <item type=\"input\">12</item> được nhập vào ô A1) xác suất trong 12 lần búng đồng tiền sẽ có <emph>Ngửa</emph> số lần được nhập vào ô A1."
+msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
+msgstr "Nhấn vào một ô nào đó để định dạng nó, hoặc kéo con chuột qua một phạm vi nào đó để định dạng toàn bộ phạm vi đó. Lặp lại hành động này cho các ô và phạm vi khác."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150120\n"
-"86\n"
+"05100000.xhp\n"
+"par_id3149438\n"
+"29\n"
"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
-msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> hiển thị những xác suất tích lũy cho cùng một chuỗi. Thí dụ, nếu A1 = <item type=\"input\">4</item>, thì xác suất tích lũy của chuỗi là 0, 1, 2, 3 hay 4 lần có <emph>Ngửa</emph> (HOẶC không loại)."
+msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
+msgstr "Nhấn lại vào biểu tượng <emph>Chế độ Định dạng Điền</emph> để ra khỏi chế độ này."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902432928\n"
+"05100000.xhp\n"
+"hd_id3153975\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>CHISQINV function</bookmark_value>"
-msgstr "<bookmark_value>hàm CHIINV</bookmark_value>"
+msgid "New Style from Selection"
+msgstr "Kiểu dáng mới từ vùng chọn"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902421451\n"
+"05100000.xhp\n"
+"par_id3149499\n"
+"18\n"
"help.text"
-msgid "CHISQINV"
-msgstr "CHIINV"
+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\">Tạo một kiểu dáng mới dựa vào định dạng của một đối tượng đã chọn.</ahelp> Gán một tên cho kiểu dáng này trong hộp thoại <link href=\"text/shared/01/05140100.xhp\" name=\"Tạo kiểu dáng\">Tạo kiểu dáng</link>."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902421449\n"
+"05100000.xhp\n"
+"par_id3150050\n"
"help.text"
-msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
-msgstr "<ahelp hid=\".\">Trả về nghịch đảo của CHISQDIST.</ahelp>"
+msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\">Biểu tượng</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902475241\n"
+"05100000.xhp\n"
+"par_id3146963\n"
+"17\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "New Style from Selection"
+msgstr "Kiểu dáng mới từ vùng chọn"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475286\n"
+"05100000.xhp\n"
+"hd_id3153813\n"
+"19\n"
"help.text"
-msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
-msgstr "<emph>Số</emph> là giá trị xác suất cho đó cần tính phân bố Gama (γ) ngược."
+msgid "Update Style"
+msgstr "Cập nhật Kiểu dáng"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475282\n"
+"05100000.xhp\n"
+"par_id3154707\n"
+"21\n"
"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
+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\">Cập nhật Kiểu dáng được chọn trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>, bằng định dạng hiện thời của đối tượng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148835\n"
+"05100000.xhp\n"
+"par_id3145118\n"
"help.text"
-msgid "<bookmark_value>CHIINV function</bookmark_value>"
-msgstr "<bookmark_value>hàm CHIINV</bookmark_value>"
+msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\">Biểu tượng</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148835\n"
-"88\n"
+"05100000.xhp\n"
+"par_id3147501\n"
+"20\n"
"help.text"
-msgid "CHIINV"
-msgstr "CHIINV"
+msgid "Update Style"
+msgstr "Cập nhật Kiểu dáng"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149906\n"
-"89\n"
+"05100000.xhp\n"
+"par_idN109BE\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Trả về nghịch đảo của xác suất đuôi đơn của phân bố χ².</ahelp>"
+msgid "Style List"
+msgstr "Danh sách Kiểu dáng"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3159157\n"
-"90\n"
+"05100000.xhp\n"
+"par_idN109C2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">Hiển thị danh sách các kiểu dáng từ phân loại kiểu dáng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150504\n"
-"91\n"
+"05100000.xhp\n"
+"par_idN109D1\n"
"help.text"
-msgid "CHIINV(Number; DegreesFreedom)"
-msgstr "CHIINV(Số; Bậc_tự_do)"
+msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr "Trong <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"trình đơn trình đơn ngữ cảnh\">trình đơn trình đơn ngữ cảnh</link>, bạn có thể chọn các lệnh để tạo một kiểu dáng mới, xoá một kiểu dáng do người dùng xác định, hay thay đổi kiểu dáng đã chọn."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154898\n"
-"92\n"
+"05100000.xhp\n"
+"hd_id3149053\n"
+"24\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the error probability."
-msgstr "<emph>Số</emph> là giá trị của xác suất lỗi."
+msgid "Style Groups"
+msgstr "Nhóm Kiểu dáng"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154294\n"
-"93\n"
+"05100000.xhp\n"
+"par_id3147299\n"
+"25\n"
"help.text"
-msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
-msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
+msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Liệt kê các nhóm kiểu dáng sẵn sàng.</ahelp>"
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154208\n"
-"94\n"
+"05100100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "Merge Cells"
+msgstr "Gộp ô"
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150777\n"
-"130\n"
+"05100100.xhp\n"
+"hd_id3154765\n"
"help.text"
-msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
-msgstr "Một súc sắc được lăn 1020 lần. Những số trên các mặt của súc sắc (1-6) thắng 195, 151, 148, 189, 183 và 154 lần riêng từng số (các giá trị quan sát). Mục đích là chứng minh giả thiết rằng súc sắc lăn đều."
+msgid "Merge Cells"
+msgstr "Gộp ô"
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153062\n"
-"131\n"
+"05100100.xhp\n"
+"par_id3147406\n"
"help.text"
-msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
-msgstr "Phân bố χ² của mẫu ngẫu nhiên được xác định bởi công thức đưa ra trên. Khi lăn súc sắc n lần, xác suất được một số nào đó trong cả n lần lăn đó là (n × 1/6), thì 1020/6 = 170, và công thức trả về giá trị χ² là 13,27."
+msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148806\n"
-"132\n"
+"05100100.xhp\n"
+"par_id3154351\n"
"help.text"
-msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
-msgstr "Nếu χ² (quan sát) lớn hơn hay bằng χ² (lý thuyết) CHIINV, thì giả thiết bị hủy, vì lý thuyết và kết quả phép thử quá khác nhau. Nếu χ² quan sát nhỏ hơn CHIINV, thì lý thuyết được xác nhận với xác suất lỗi đã ngụ ý."
+msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
+msgstr ""
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149763\n"
-"95\n"
+"05100200.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
-msgstr "<item type=\"input\">=CHIINV(0.05;5)</item> trả về 11.07."
+msgid "Split Cells"
+msgstr "Chia Ô"
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3159142\n"
-"133\n"
+"05100200.xhp\n"
+"hd_id3154654\n"
"help.text"
-msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
-msgstr "<item type=\"input\">=CHIINV(0.02;5)</item> trả về 13.39."
+msgid "Split Cells"
+msgstr "Chia Ô"
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158401\n"
-"134\n"
+"05100200.xhp\n"
+"par_id3083451\n"
"help.text"
-msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
-msgstr "Nếu xác suất lỗi là 5%, thì xúc sắc không lăn đều. Nếu xác suất lỗi là 2%, không có lý do tin rằng xúc sắc đã được lăn đúng."
+msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3154260\n"
+"05100200.xhp\n"
+"par_id3154023\n"
"help.text"
-msgid "<bookmark_value>CHITEST function</bookmark_value>"
-msgstr "<bookmark_value>hàm CHITEST</bookmark_value>"
+msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgstr ""
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154260\n"
-"97\n"
+"05110000.xhp\n"
+"tit\n"
"help.text"
-msgid "CHITEST"
-msgstr "CHITEST"
+msgid "AutoFormat"
+msgstr "Tự động Định dạng"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151052\n"
-"98\n"
+"05110000.xhp\n"
+"hd_id3149666\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
-msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Trả về xác suất của sự lệch khỏi một phân bố ngẫu nhiên của hai chuỗi thử dựa vào phép thử χ² tính độc lập.</ahelp> CHITEST trả về phân bố χ² của dữ liệu."
+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=\"Tự động Định dạng\">Tự động Định dạng</link></variable>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148925\n"
-"135\n"
+"05110000.xhp\n"
+"par_id3145367\n"
+"2\n"
"help.text"
-msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
-msgstr "Xác suất được hàm CHITEST xác định cũng có thể được hàm CHIDIST xác định, trong trường hợp đo χ² của mẫu ngẫu nhiên phải được gửi dạng tham số thay cho hàng dữ liệu."
+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=\".\">Hãy sử dụng câu lệnh này để áp dụng một Tự động Định dạng cho một vùng trang tính đã chọn, hoặc để xác định các Tự động Định dạng của mình.</ahelp></variable>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154280\n"
-"99\n"
+"05110000.xhp\n"
+"hd_id3148455\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Format"
+msgstr "Định dạng"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149162\n"
-"100\n"
+"05110000.xhp\n"
+"par_id3145799\n"
+"4\n"
"help.text"
-msgid "CHITEST(DataB; DataE)"
-msgstr "CHITEST(Dữ_liệuB; Dữ_liệuE)"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Hãy chọn một Tự động Định dạng đã xác định sẵn, để áp dụng cho một vùng đã chọn trên trang tính.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158421\n"
-"101\n"
+"05110000.xhp\n"
+"hd_id3149410\n"
+"5\n"
"help.text"
-msgid "<emph>DataB</emph> is the array of the observations."
-msgstr "<emph>Dữ_liệuB</emph> là mảng các sự quan sát."
+msgid "Add"
+msgstr "Thêm"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3166453\n"
-"102\n"
+"05110000.xhp\n"
+"par_id3154017\n"
+"6\n"
"help.text"
-msgid "<emph>DataE</emph> is the range of the expected values."
-msgstr "<emph>Dữ_liệuE</emph> là phạm vi các giá trị mong đợi."
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Cho phép bạn thêm định dạng hiện thời của một phạm vi chứa ít nhất 4×4 ô cho danh sách các Tự động Định dạng đã xác định sẵn.</ahelp> Hộp thoại <link href=\"text/shared/01/05150101.xhp\" name=\"Thêm Tự động Định dạng\">Thêm Tự động Định dạng</link> sẽ xuất hiện."
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146946\n"
-"103\n"
+"05110000.xhp\n"
+"par_id3153708\n"
+"29\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Nhập một tên, sau đó bấm nút <emph>OK</emph>. </ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154096\n"
-"136\n"
+"05110000.xhp\n"
+"hd_id3150044\n"
+"7\n"
"help.text"
-msgid "Data_B (observed)"
-msgstr "Dữ_liệuB (quan sát)"
+msgid "More"
+msgstr "Nhiều"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152948\n"
-"137\n"
+"05110000.xhp\n"
+"par_id3146920\n"
+"8\n"
"help.text"
-msgid "Data_E (expected)"
-msgstr "Dữ_liệuE (mong đợi)"
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Mở phần <emph>Định dạng</emph>, mà hiển thị các sự ghi đè định dạng có thể được áp dụng cho bảng tính. Bỏ chọn một tùy chọn thì giữ định dạng của bảng tính hiện thời cho kiểu định dạng đó.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152876\n"
-"138\n"
+"05110000.xhp\n"
+"hd_id3155961\n"
+"9\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Formatting"
+msgstr "Định dạng"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3159279\n"
-"139\n"
+"05110000.xhp\n"
+"par_id3153965\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "<item type=\"input\">195</item>"
+msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
+msgstr "Trong phần này, bạn có thể chọn hay bỏ chọn những tùy chọn định dạng sẵn sàng. Muốn giữ bất cứ thiết lập nào hiện thời trên bảng tính thì bỏ chọn tùy chọn tương ứng."
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149105\n"
-"140\n"
+"05110000.xhp\n"
+"hd_id3154021\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "Number format"
+msgstr "Định dạng Số"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149922\n"
-"141\n"
+"05110000.xhp\n"
+"par_id3159239\n"
+"12\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại định dạng số của định dạng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148621\n"
-"142\n"
+"05110000.xhp\n"
+"hd_id3149530\n"
+"13\n"
"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "<item type=\"input\">151</item>"
+msgid "Borders"
+msgstr "Viền"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148987\n"
-"143\n"
+"05110000.xhp\n"
+"par_id3145259\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại viền của định dạng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149417\n"
-"144\n"
+"05110000.xhp\n"
+"hd_id3154657\n"
+"15\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "Font"
+msgstr "Phông"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148661\n"
-"145\n"
+"05110000.xhp\n"
+"par_id3152990\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "<item type=\"input\">148</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại phông chữ của định dạng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151128\n"
-"146\n"
+"05110000.xhp\n"
+"hd_id3155379\n"
+"17\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "Pattern"
+msgstr "Mẫu"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148467\n"
-"147\n"
+"05110000.xhp\n"
+"par_id3150368\n"
+"18\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại mẫu của định dạng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149237\n"
-"148\n"
+"05110000.xhp\n"
+"hd_id3146115\n"
+"19\n"
"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "<item type=\"input\">189</item>"
+msgid "Alignment"
+msgstr "Sắp hàng"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145304\n"
-"149\n"
+"05110000.xhp\n"
+"par_id3156445\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại tình trạng canh lề của định dạng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149927\n"
-"150\n"
+"05110000.xhp\n"
+"hd_id3155811\n"
+"21\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "AutoFit width and height"
+msgstr "Chỉnh tự động bề rộng/cao"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150630\n"
-"151\n"
+"05110000.xhp\n"
+"par_id3148703\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "<item type=\"input\">183</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">Bật tùy chọn này thì ghi rõ bạn muốn giữ lại chiều rộng và chiều cao của các ô đã chọn của định dạng đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150423\n"
-"152\n"
+"05110000.xhp\n"
+"hd_id3159223\n"
+"26\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "Rename"
+msgstr "Thay tên"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3143275\n"
-"153\n"
+"05110000.xhp\n"
+"par_id3153064\n"
+"27\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
+msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Mở một hộp thoại trong đó bạn có thể thay đổi đặc tả của Định dạng tự động đã chọn.</ahelp> Nút này chỉ hiển thị nếu bạn đã nhấn vào nút <emph>Nhiều</emph> để hiển thị thêm tùy chọn."
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3144750\n"
-"154\n"
+"05110000.xhp\n"
+"par_id3153912\n"
+"28\n"
"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "<item type=\"input\">154</item>"
+msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgstr "Hộp thoại <emph>Thay tên Tự động Định dạng</emph> sẽ mở.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Nhập vào đây tên của Tự động Định dạng mới.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153947\n"
-"155\n"
+"05110000.xhp\n"
+"hd_id3155264\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "More"
+msgstr "Nhiều"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149481\n"
-"104\n"
+"05110000.xhp\n"
+"par_id3159094\n"
+"24\n"
"help.text"
-msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
-msgstr "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> bằng 0,02. Đây là xác suất tương ứng với dữ liệu đã quan sát của phân bố χ² lý thuyết."
+msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
+msgstr "Đóng phần thêm tùy chọn <emph>Định dạng</emph>, nếu nó còn mở."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148690\n"
+"05120000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>CHIDIST function</bookmark_value>"
-msgstr "<bookmark_value>hàm CHIDIST</bookmark_value>"
+msgid "Conditional Formatting"
+msgstr "Định dạng có điều kiện"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148690\n"
-"106\n"
+"05120000.xhp\n"
+"hd_id3155132\n"
+"1\n"
"help.text"
-msgid "CHIDIST"
-msgstr "CHIDIST"
+msgid "Conditional Formatting"
+msgstr "Định dạng có điều kiện"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156338\n"
-"156\n"
+"05120000.xhp\n"
+"par_id3163710\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
-msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Trả về giá trị xác suất từ χ² đã ngụ ý rằng giả thiết đã được xác nhận.</ahelp> Hàm CHIDIST so sánh giá trị χ² đưa ra cho một mẫu ngẫu nhiên được tính từ tổng (giá trị quan sát - giá trị mong đợi)^2/giá trị mong đợi cho tất cả các giá trị với phân bố χ² lý thuyết, và xác định từ dữ liệu này xác suất lỗi cho giả thiết cần thử."
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Chọn mục <emph>Định dạng có Điều kiện</emph> để xác định các kiểu dáng định dạng phụ thuộc vào một số điều kiện nào đó.</ahelp></variable> Nếu một kiểu dáng đã được gán cho một ô, nó sẽ không thay đổi. Kiểu dáng được nhập vào đây thì được ước tính. Bạn có thể nhập ba điều kiện mà truy vấn nội dung của các giá trị hay công thức trong ô. Các điều kiện này được ước tính theo thứ tự 1-3. Nếu điều kiện 1 tương ứng với điều kiện, thì kiểu dáng đã xác định sẽ được dùng. Không thì điều kiện 2 được ước tính, và kiểu dáng đã xác định của nó được dùng. Nếu kiểu dáng này không tương ứng, thì điều kiện 3 được ước tính lần lượt."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151316\n"
-"157\n"
+"05120000.xhp\n"
+"par_id2414014\n"
"help.text"
-msgid "The probability determined by CHIDIST can also be determined by CHITEST."
-msgstr "Xác suất được hàm CHIDIST xác định cũng có thể được hàm CHITEST xác định."
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr "Để áp dụng định dạng có điều kiện, trước tiên bạn cần phải hiệu lực chức năng <emph>Tự động Tính</emph>. Hãy chọn lệnh <emph>Công cụ > Nội dung ô > Tự động Tính</emph> (bật được thì bạn thấy một dấu kiểm bên cạnh câu lệnh đó)."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3155123\n"
-"108\n"
+"05120000.xhp\n"
+"bm_id3153189\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+msgstr "<bookmark_value>định dạng có điều kiện; điều kiện</bookmark_value>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158439\n"
-"109\n"
+"05120000.xhp\n"
+"hd_id3153189\n"
+"18\n"
"help.text"
-msgid "CHIDIST(Number; DegreesFreedom)"
-msgstr "CHIDIST(Số; Bậc_tự_do)"
+msgid "Condition 1/2/3"
+msgstr "Điều kiện 1/2/3"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148675\n"
-"110\n"
+"05120000.xhp\n"
+"par_id3149413\n"
+"4\n"
"help.text"
-msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
-msgstr "<emph>Số</emph> là giá trị χ² của mẫu ngẫu nhiên được dùng để xác định xác suất lỗi."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Đánh dấu trong hộp tương ứng với mỗi điều kiện, và nhập điều kiện tương ứng.</ahelp> Để đóng hộp thoại này, bấm nút <emph>OK</emph>."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155615\n"
-"111\n"
+"05120000.xhp\n"
+"hd_id3147394\n"
+"5\n"
"help.text"
-msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
-msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
+msgid "Cell Value / Formula"
+msgstr "Giá trị/Công thức ô"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146787\n"
-"112\n"
+"05120000.xhp\n"
+"par_id3155602\n"
+"6\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Ghi rõ nếu một định dạng theo điều kiện có phụ thuộc vào một giá trị ô hay công thức ô.</ahelp> Nếu bạn chọn một công thức làm tham chiếu, hộp <emph>Điều kiện Giá trị Ô</emph> được hiển thị bên phải trường <emph>Giá trị/Công thức ô</emph>. Nếu điều kiện là « Công thức là », hãy nhập một tham chiếu ô. Nếu tham chiếu ô khác với số không, điều kiện tương ứng được."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145774\n"
-"113\n"
+"05120000.xhp\n"
+"hd_id3153709\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
-msgstr "<item type=\"input\">=CHIDIST(13.27; 5)</item> bằng 0,02."
+msgid "Cell Value Condition"
+msgstr "Điều kiện Giá trị Ô"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156141\n"
-"158\n"
+"05120000.xhp\n"
+"par_id3153764\n"
+"8\n"
"help.text"
-msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
-msgstr "Nếu giá trị χ² của mẫu ngẫu nhiên là 13,27, và phép thử có 5 bậc tự do, thì giả thiết chắc chắc với xác suất lỗi 2%."
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Hãy chọn một điều kiện cho định dạng cần áp dụng cho các ô đã chọn.</ahelp>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902231887\n"
+"05120000.xhp\n"
+"hd_id3156384\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
-msgstr "<bookmark_value>hàm LOGNORMDIST</bookmark_value><bookmark_value>phân bố chuẩn lôga tích lũy</bookmark_value>"
+msgid "Cell Style"
+msgstr "Kiểu dáng ô"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200901583452\n"
+"05120000.xhp\n"
+"par_id3145228\n"
+"10\n"
"help.text"
-msgid "CHISQDIST"
-msgstr "CHIDIST"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Hãy chọn kiểu dáng cần áp dụng nếu điều kiện đã chọn có tương ứng được.</ahelp>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200901583471\n"
+"05120000.xhp\n"
+"hd_id0509200913175331\n"
"help.text"
-msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
-msgstr "<ahelp hid=\".\">Trả về giá trị của Hàm mật độ xác xuất hoặc Hàm phân bố tích lũy cho phân bố chi-square (x-bình phương).</ahelp>"
+msgid "New Style"
+msgstr "Kiểu dáng mới"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902395520\n"
+"05120000.xhp\n"
+"par_id0509200913175368\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
+msgstr "<ahelp hid=\".\">Nếu bạn chưa chỉ định dùng một kiếu dáng, bạn có thể nhắp \"Kiểu dáng mới\" để mở trang Tổ chức của hộp thoại Kiểu dáng ô. Chỉ định một kiểu dáng mới rồi nhấn OK.</ahelp>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395679\n"
+"05120000.xhp\n"
+"hd_id3146316\n"
+"11\n"
"help.text"
-msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
-msgstr "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
+msgid "Parameter field"
+msgstr "Trường tham số"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id011920090239564\n"
+"05120000.xhp\n"
+"par_id3155114\n"
+"12\n"
"help.text"
-msgid "<emph>Number</emph> is the number for which the function is to be calculated."
-msgstr "<emph>Số</emph> là giá trị cho đó cần tính phân bố F."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Hãy nhập một tham chiếu, giá trị hay công thức.</ahelp> Hãy nhập một tham chiếu, giá trị hay công thức vào trường tham số, hoặc vào cả hai trường tham số nếu bạn đã chọn một điều kiện cần thiết hai tham số. Bạn cũng có thể nhập công thức chức tham chiếu tương đối."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395660\n"
+"05120000.xhp\n"
+"par_id3145257\n"
+"13\n"
"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "<emph>Bậc_tự_do</emph> là số bậc tự do của phép thử."
+msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
+msgstr "Một khi xác định các tham số, điều kiện hoàn tất. Nó có thể xuất hiện dưới dạng:"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395623\n"
+"05120000.xhp\n"
+"par_id3150784\n"
+"14\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
-msgstr "<emph>Cumulative</emph> (tùy chọn): nếu giá trị 0 hoặc False sẽ tính Hàm mật độ xác xuất. Giá trị khác hoặc True, hoặc bỏ trống, sẽ tính Hàm phân bố tích lũy."
+msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
+msgstr "Giá trị ô là 0, kích cỡ ô là Giá trị rỗng. (Trước tiên, bạn cần phải xác định một kiểu dáng ô, để có khả năng gán nó cho một điều kiện.)"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3150603\n"
+"05120000.xhp\n"
+"par_id3150365\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
-msgstr "<bookmark_value>hàm EXPONDIST</bookmark_value><bookmark_value>phân bố số mũ</bookmark_value>"
+msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
+msgstr "Giá trị ô nằm giữa $B$20 và $B$21: Kiểu dáng ô là Kết quả. (Hai giới hạn giá trị tương ứng phải nằm trong ô B20 và B21.)"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150603\n"
-"115\n"
+"05120000.xhp\n"
+"par_id3152992\n"
+"16\n"
"help.text"
-msgid "EXPONDIST"
-msgstr "EXPONDIST"
+msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
+msgstr "Công thức là « SUM($A$1:$A$5)=10 »: Kiểu dáng ô là Kết quả. (Những ô đã chọn sẽ được định dạng theo kiểu dáng Kết quả nếu tổng nội dung trong phạm vi ô A1 đến A5 bằng với 10.)"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149563\n"
-"116\n"
+"05120000.xhp\n"
+"par_idN107E1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Trả về phân bố theo luất số mũ.</ahelp>"
+msgid "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3153789\n"
-"117\n"
+"06020000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Hyphenation"
+msgstr "Gạch nối từ"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150987\n"
-"118\n"
+"06020000.xhp\n"
+"bm_id3159399\n"
"help.text"
-msgid "EXPONDIST(Number; Lambda; C)"
-msgstr "EXPONDIST(Số; λ; C)"
+msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>tự động gạch nối từ trong bảng tính</bookmark_value><bookmark_value>gạch nối từ; trong bảng tính</bookmark_value><bookmark_value>âm tiết trong bảng tính</bookmark_value>"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154663\n"
-"119\n"
+"06020000.xhp\n"
+"hd_id3159399\n"
+"1\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the function."
-msgstr "<emph>Số</emph> là giá trị của hàm."
+msgid "Hyphenation"
+msgstr "Gạch nối từ"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154569\n"
-"120\n"
+"06020000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "<emph>Lambda</emph> is the parameter value."
-msgstr "<emph>λ</emph> (Lamdda) là giá trị tham số."
+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\">Lệnh <emph>Gạch nối từ</emph> gọi hộp thoại để đặt chức năng gạch nối từ trong $[officename] Calc.</ahelp></variable>"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147332\n"
-"121\n"
+"06020000.xhp\n"
+"par_id3154366\n"
+"3\n"
"help.text"
-msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
-msgstr "<emph>C</emph> là một giá trị lôgic mà xác định dạng của hàm. <emph>C = 0</emph> tính hàm mật độ, và <emph>C = 1</emph> tính phân bố."
+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 "Bạn chỉ có thể bật chức năng tự động gạch nối từ trong $[officename] Calc khi tính năng <link href=\"text/shared/01/05340300.xhp\" name=\"ngắt hàng\">ngắt hàng</link> đang chạy."
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146133\n"
-"122\n"
+"06020000.xhp\n"
+"hd_id3153192\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Hyphenation for selected cells."
+msgstr "Gạch nối từ cho các ô đã chọn."
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150357\n"
-"123\n"
+"06020000.xhp\n"
+"par_id3150868\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
-msgstr "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> trả về 0,78."
+msgid "Select the cells for which you want to change the hyphenation."
+msgstr "Hãy lựa chọn những ô bảng cho chúng bạn muốn thay đổi tình trạng gạch nối từ."
-#: 12040400.xhp
+#: 06020000.xhp
msgctxt ""
-"12040400.xhp\n"
+"06020000.xhp\n"
+"par_id3150440\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "Chọn lệnh <emph>Công cụ > Ngôn ngữ > Gạch nối từ</emph>."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3156441\n"
+"7\n"
+"help.text"
+msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgstr "Hộp thoại <emph>Định dạng ô</emph> xuất hiện với trang thẻ <emph>Sắp hàng</emph> còn mở."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3149260\n"
+"12\n"
+"help.text"
+msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgstr "Đánh dấu hai tùy chọn <emph>Tự động cuộn văn bản</emph> và <emph>Gạch nối từ</emph>."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"hd_id3153094\n"
+"8\n"
+"help.text"
+msgid "Hyphenation for Drawing Objects"
+msgstr "Gạch nối từ cho Đối tượng Vẽ"
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3148577\n"
+"9\n"
+"help.text"
+msgid "Select a drawing object."
+msgstr "Chọn một đối tượng vẽ."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3156285\n"
+"10\n"
+"help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "Chọn lệnh <emph>Công cụ > Ngôn ngữ > Gạch nối từ</emph>."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3147394\n"
+"11\n"
+"help.text"
+msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
+msgstr "Mỗi lần bạn gọi câu lệnh này, bạn bật hay tắt chức năng gạch nối từ cho đối tượng vẽ đó. Một dấu kiểm ngụ ý trạng thái hiện thời."
+
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
"tit\n"
"help.text"
-msgid "Remove Filter"
-msgstr "Bỏ lọc"
+msgid "Detective"
+msgstr "Phát hiện"
-#: 12040400.xhp
+#: 06030000.xhp
msgctxt ""
-"12040400.xhp\n"
-"hd_id3153087\n"
+"06030000.xhp\n"
+"bm_id3151245\n"
+"help.text"
+msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+msgstr ""
+
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"hd_id3151245\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Bỏ lọc\">Bỏ lọc</link>"
+msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Phát hiện\">Phát hiện</link>"
-#: 12040400.xhp
+#: 06030000.xhp
msgctxt ""
-"12040400.xhp\n"
-"par_id3154760\n"
+"06030000.xhp\n"
+"par_id3151211\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterRemoveFilter\">Gỡ bỏ bộ lọc khỏi phạm vi ô được chọn. Để hiệu lực chức năng này, hãy nhấn vào trong vùng ô cho đó bộ lọc đã được áp dụng.</ahelp>"
+msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
+msgstr "Câu lệnh này kích hoạt chức năng <emph>Phát hiện Bảng tính</emph>. Dùng chức năng này, bạn có thể tìm vết phụ thuộc từ ô công thức hiện thờ tới các ô trên bảng tính."
-#: func_edate.xhp
+#: 06030000.xhp
msgctxt ""
-"func_edate.xhp\n"
-"tit\n"
+"06030000.xhp\n"
+"par_id3150447\n"
+"3\n"
"help.text"
-msgid "EDATE"
-msgstr "EDATE"
+msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
+msgstr "Một khi xác định một vết, bạn có thể chỉ tới vết dùng con trỏ chuột. Con trỏ sẽ thay đổi hình. Nhấn đôi vào vết dùng con trỏ này, để lựa chọn ô đã tham chiếu ở kết thúc của vết đó."
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"bm_id3151184\n"
+"06030100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>EDATE function</bookmark_value>"
-msgstr "<bookmark_value>hàm EDATE</bookmark_value>"
+msgid "Trace Precedents"
+msgstr "Tìm vết tiền lệ"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151184\n"
-"213\n"
+"06030100.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
-msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">Hàm EDATE</link></variable>"
+msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; tìm vết tiền lệ</bookmark_value><bookmark_value>ô công thức; tìm vết tiền lệ</bookmark_value>"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3150880\n"
-"214\n"
+"06030100.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">Kết quả là một ngày tháng mà cách <emph>ngày bắt đầu</emph> một số <emph>tháng</emph>. Chỉ tính theo tháng, không dùng ngày cho phép tính này.</ahelp>"
+msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Tìm vết tiền lệ\">Tìm vết tiền lệ</link>"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3154647\n"
-"215\n"
+"06030100.xhp\n"
+"par_id3153542\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Chức năng này hiển thị quan hệ giữa ô hiện thời chứa công thức và các ô được dùng trong công thức.</ahelp>"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3153212\n"
-"216\n"
+"06030100.xhp\n"
+"par_id3147265\n"
+"4\n"
"help.text"
-msgid "EDATE(StartDate; Months)"
-msgstr "EDATE(Ngày_đầu; Tháng)"
+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 "Vết được hiển thị trên trang tính dùng mũi tên đánh dấu. Đồng thời, phạm vi các ô nằm trong công thức của ô hiện thời được tô sáng dùng một khung màu xanh."
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3146860\n"
-"217\n"
+"06030100.xhp\n"
+"par_id3154321\n"
+"3\n"
"help.text"
-msgid "<emph>StartDate</emph> is a date."
-msgstr "<emph>Ngày_đầu</emph> là ngày bắt đầu, một ngày tháng."
+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 "Hàm này dựa vào một nguyên lý về lớp. Chẳng hạn, nếu ô tiền lệ đối với một công thức đã được ngụ ý với một mũi ten tìm vết, khi bạn lặp lại câu lệnh này, các mũi tên tìm vết được kéo về các ô tiền lệ của ô này."
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3152929\n"
-"218\n"
+"06030200.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
-msgstr "<emph>Tháng</emph> là số các tháng nằm trước (âm) hay sau (dương) ngày bắt đầu."
+msgid "Remove Precedents"
+msgstr "Bỏ tiền lệ"
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151289\n"
-"219\n"
+"06030200.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "Example"
-msgstr "Ví dụ"
+msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; gỡ bỏ tiền lệ</bookmark_value><bookmark_value>ô công thức; gỡ bỏ tiền lệ</bookmark_value>"
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3155845\n"
-"220\n"
+"06030200.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "What date is one month prior to 3.31.2001?"
-msgstr "Ngày nào nằm một tháng trước 3.31.2001?"
+msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Bỏ tiền lệ\">Bỏ tiền lệ</link>"
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3155999\n"
-"221\n"
+"06030200.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
-msgstr "<item type=\"input\">=EDATE(3.31.2001;-1)</item> trả về 2.28.2001."
+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\">Xoá một cấp của các mũi tên tìm vết được chèn dùng câu lệnh <emph>Tìm vết tiền lệ</emph>.</ahelp>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
+"06030300.xhp\n"
"tit\n"
"help.text"
-msgid "Sort Criteria"
-msgstr "Tiêu chuẩn Sắp xếp"
+msgid "Trace Dependents"
+msgstr "Tìm vết phụ thuộc"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"bm_id3152350\n"
+"06030300.xhp\n"
+"bm_id3153252\n"
"help.text"
-msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
-msgstr "<bookmark_value>sắp xếp; tiêu chuẩn sắp xếp cho phạm vi cơ sở dữ liệu</bookmark_value>"
+msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; tìm vết phụ thuộc</bookmark_value>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3152350\n"
+"06030300.xhp\n"
+"hd_id3153252\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
-msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Tiêu chuẩn Sắp xếp\">Tiêu chuẩn Sắp xếp</link>"
+msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Tìm vết phụ thuộc\">Tìm vết phụ thuộc</link>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3151385\n"
+"06030300.xhp\n"
+"par_id3156024\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Hãy ghi rõ những tùy chọn sắp xếp cho phạm vi đã chọn.</ahelp>"
+msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Vẽ các mũi tên tìm vết đến ô hoạt động từ các công thức phụ thuộc vào giá trị trong ô hoạt động.</ahelp>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3152462\n"
-"24\n"
+"06030300.xhp\n"
+"par_id3148948\n"
+"4\n"
"help.text"
-msgid "Ensure that you include any row and column titles in the selection."
-msgstr "Kiểm tra xem bạn đã bao gồm bất cứ tiêu đề hàng/cột trong vùng chọn."
+msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
+msgstr "Vùng chứa tất cả các ô được dùng nhau cùng với ô hoạt động trong cùng một công thức thì được tô sáng bằng một khung màu xanh."
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3147428\n"
+"06030300.xhp\n"
+"par_id3151112\n"
"3\n"
"help.text"
-msgid "Sort by"
-msgstr "Sắp xếp theo"
+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 "Hàm này chạy theo cấp, Ví dụ, nếu một cấp vết đã được kích hoạt để hiển thị các tiền lệ (hay phụ thuộc) thì bạn có thể thấy cấp phụ thuộc kế tiếp bằng cách kích hoạt chức năng <emph>Tìm vết</emph> lần nữa."
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3155854\n"
-"4\n"
+"06030400.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
-msgstr ""
+msgid "Remove Dependents"
+msgstr "Bỏ đồ phụ thuộc"
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3146121\n"
-"5\n"
+"06030400.xhp\n"
+"bm_id3147335\n"
"help.text"
-msgid "Ascending"
-msgstr "Tăng dần"
+msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; gỡ bỏ đồ phụ thuộc</bookmark_value>"
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3148645\n"
-"6\n"
+"06030400.xhp\n"
+"hd_id3147335\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
-msgstr ""
+msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Bỏ đồ phụ thuộc\">Bỏ đồ phụ thuộc</link>"
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3155411\n"
-"7\n"
+"06030400.xhp\n"
+"par_id3148663\n"
+"2\n"
"help.text"
-msgid "Descending"
-msgstr "Giảm dần"
+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\">Xoá một cấp các mũi tên tìm vết được tạo bởi câu lệnh <emph>Tìm vết phụ thuộc</emph>.</ahelp>"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3151075\n"
-"8\n"
+"06030500.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
-msgstr ""
+msgid "Remove All Traces"
+msgstr "Bỏ mọi vết"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3154492\n"
-"9\n"
+"06030500.xhp\n"
+"bm_id3153088\n"
"help.text"
-msgid "Then by"
-msgstr "Rồi theo"
+msgid "<bookmark_value>cells; removing traces</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; gỡ bỏ vết</bookmark_value>"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3156283\n"
-"10\n"
+"06030500.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "Select the column that you want to use as the secondary sort key."
-msgstr ""
+msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"Bỏ mọi vết\">Bỏ mọi vết</link>"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3149413\n"
-"11\n"
+"06030500.xhp\n"
+"par_id3151246\n"
+"2\n"
"help.text"
-msgid "Ascending"
-msgstr "Tăng dần"
+msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Gỡ bỏ tất cả các mũi tên tìm vết khỏi bảng tính.</ahelp>"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3154018\n"
-"12\n"
+"06030600.xhp\n"
+"tit\n"
"help.text"
-msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr ""
+msgid "Trace Error"
+msgstr "Tìm vết lỗi"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3146972\n"
-"13\n"
+"06030600.xhp\n"
+"bm_id3153561\n"
"help.text"
-msgid "Descending"
-msgstr "Giảm dần"
+msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; tìm vết lỗi</bookmark_value><bookmark_value>tìm vết lỗi</bookmark_value><bookmark_value>tìm lỗi</bookmark_value>"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3145640\n"
-"14\n"
+"06030600.xhp\n"
+"hd_id3153561\n"
+"1\n"
"help.text"
-msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr ""
+msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Tìm vết lỗi\">Tìm vết lỗi</link>"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3150300\n"
-"21\n"
+"06030600.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Sort Ascending/Descending"
-msgstr "Sắp tăng/giảm dần"
+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\">Vẽ các mũi tên tìm vết tới tất cả các ô tiền lệ mà gây ra giá trị lỗi trong một ô đã chọn.</ahelp>"
-#: 12030100.xhp
+#: 06030700.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3158212\n"
-"22\n"
+"06030700.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr ""
+msgid "Fill Mode"
+msgstr "Chế độ điền"
-#: 12030100.xhp
+#: 06030700.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3159236\n"
-"25\n"
+"06030700.xhp\n"
+"bm_id3145119\n"
"help.text"
-msgid "Icons on the <emph>Standard</emph> toolbar"
-msgstr "Biểu tượng trên thanh công cụ <emph>Chuẩn</emph>"
+msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; chế độ tìm vết điền</bookmark_value><bookmark_value>tìm vết; tiền lệ cho nhiều ô bảng</bookmark_value>"
-#: 04010100.xhp
+#: 06030700.xhp
msgctxt ""
-"04010100.xhp\n"
+"06030700.xhp\n"
+"hd_id3145119\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Chế độ điền\">Chế độ điền</link>"
+
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"par_id3151246\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
+msgstr "<ahelp hid=\".uno:AuditingFillMode\">Kích hoạt <emph>Chế độ điền</emph> trong chức năng phát hiện. Con trỏ chuột thay đổi sang một ký hiệu đặc biệt, và bạn có thể nhấn vào bất cứ ô nào để thấy một vết dẫn tới ô tiền lệ.</ahelp> Để ra khỏi chế độ này, bấm phím <item type=\"keycode\">Esc</item>, hoặc nhấn vào câu lệnh <emph>Kết thúc chế độ điền</emph> trong trình đơn ngữ cảnh."
+
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"par_id3151211\n"
+"3\n"
+"help.text"
+msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
+msgstr "Chức năng <emph>Chế độ điền</emph> trùng với câu lệnh <link href=\"text/scalc/01/06030100.xhp\" name=\"Tìm vết tiền lệ\">Tìm vết tiền lệ</link> nếu bạn gọi chế độ này lần đầu tiên. Hãy dùng trình đơn ngữ cảnh để bật thêm tùy chọn cho <emph>Chế độ điền</emph> và để ra khỏi chế độ này."
+
+#: 06030800.xhp
+msgctxt ""
+"06030800.xhp\n"
"tit\n"
"help.text"
-msgid "Row Break"
-msgstr "Ngắt cột"
+msgid "Mark Invalid Data"
+msgstr "Nhãn dữ liệu sai"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
+"06030800.xhp\n"
"bm_id3153821\n"
"help.text"
-msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
-msgstr "<bookmark_value>bảng; chèn ngắt hàng</bookmark_value><bookmark_value>ngắt hàng; chèn</bookmark_value><bookmark_value>chèn; ngắt hàng tự làm</bookmark_value><bookmark_value>ngắt hàng tự làm</bookmark_value>"
+msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; dữ liệu sai</bookmark_value><bookmark_value>dữ liệu; hiển thị dữ liệu sai</bookmark_value><bookmark_value>dữ liệu sai;đánh dấu</bookmark_value>"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
+"06030800.xhp\n"
"hd_id3153821\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
-msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Ngắt hàng</link>"
+msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Nhãn dữ liệu sai\">Nhãn dữ liệu sai</link>"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
-"par_id3149656\n"
+"06030800.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertRowBreak\">Chèn vào một ngắt hàng (ngắt trang theo chiều ngang) ở phía trên ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Đánh dấu tất cả các ô trên trang tính mà chứa giá trị nằm ở ngoại các quy tắc thẩm tra.</ahelp>"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
-"par_id3156422\n"
+"06030800.xhp\n"
+"par_id3151211\n"
"3\n"
"help.text"
-msgid "The manual row break is indicated by a dark blue horizontal line."
-msgstr "Ngắt hàng tự tạo được biểu diễn bằng một đường xanh đậm nằm ngang."
+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 "Các <link href=\"text/scalc/01/12120000.xhp\" name=\"quy tắc tính hợp lệ\">quy tắc tính hợp lệ</link> hạn chế tiến trình nhập các giá trị kiểu số, ngày tháng, thời gian và văn bản thành một số giá trị cụ thể. Tuy nhiên, vẫn còn có thể nhập giá trị không hợp lệ, hoặc sao chép giá trị sai vào ô nếu tùy chọn <emph>Dừng</emph> không phải được bật. Khi bạn gán một quy tắc tính hợp lệ, các giá trị đã có trong ô bảng sẽ không được sửa đổi."
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
+"06030900.xhp\n"
"tit\n"
"help.text"
-msgid "Database Functions"
-msgstr "Các hàm cơ sở dữ liệu"
+msgid "Refresh Traces"
+msgstr "Cập nhật vết"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3148946\n"
+"06030900.xhp\n"
+"bm_id3152349\n"
"help.text"
-msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
-msgstr "<bookmark_value>Trợ lý hàm;cơ sở dữ liệu</bookmark_value><bookmark_value>hàm;hàm cơ sở dữ liệu</bookmark_value><bookmark_value>cơ sở dữ liệu;hàm trong $[officename] Calc</bookmark_value>"
+msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; cập nhật vết</bookmark_value><bookmark_value>vết; cập nhật</bookmark_value><bookmark_value>cập nhật;vết</bookmark_value>"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3148946\n"
+"06030900.xhp\n"
+"hd_id3152349\n"
"1\n"
"help.text"
-msgid "Database Functions"
-msgstr "Các hàm cơ sở dữ liệu"
+msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Cập nhật vết\">Cập nhật vết</link>"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145173\n"
+"06030900.xhp\n"
+"par_id3148947\n"
"2\n"
"help.text"
-msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
-msgstr "<variable id=\"datenbanktext\">Phần này nói về các hàm dùng với dữ liệu được tổ chức thành các hàng tương ứng với các bản ghi. </variable>"
+msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
+msgstr "<ahelp hid=\".uno:RefreshArrows\">Vẽ lại mọi vết trên trang tính. Công thức bị sửa đổi khi vết được vẽ lại cũng được xử lý.</ahelp>"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154016\n"
-"186\n"
+"06030900.xhp\n"
+"par_id3148798\n"
+"3\n"
"help.text"
-msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
-msgstr "Phân loại <emph>Cơ sở dữ liệu</emph> có thể bị nhầm lẫn với một cơ sở dữ liệu được tích hợp trong $[officename]. Tuy nhiên, không có sự liên hệ nào giữa một cơ sở dữ liệu trong $[officename] và phân loại <emph>Cơ sở dữ liệu</emph> của $[officename] Calc cả."
+msgid "Detective arrows in the document are updated under the following circumstances:"
+msgstr "Các mũi tên phát hiện trong tài liệu đều được cập nhật theo những điều kiện theo đây:"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150329\n"
-"190\n"
+"06030900.xhp\n"
+"par_id3153192\n"
+"4\n"
"help.text"
-msgid "Example Data:"
-msgstr "Dữ liệu ví dụ:"
+msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+msgstr "Chọn mục trình đơn <emph>Công cụ > Phát hiện > Cập nhật vết</emph>."
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153713\n"
-"191\n"
+"06030900.xhp\n"
+"par_id3151041\n"
+"5\n"
"help.text"
-msgid "The following data will be used in some of the function description examples:"
-msgstr "Các dữ liệu sau sẽ được dùng làm ví dụ để mô tả các chức năng của hàm:"
+msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
+msgstr "Bật tùy chọn <emph>Công cụ > Phát hiện > Tự động Cập nhật</emph> thì cập nhật mỗi lần công thức bị thay đổi trong tài liệu."
-#: 04060101.xhp
+#: 06031000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155766\n"
+"06031000.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoRefresh"
+msgstr "Tự động Cập nhật"
+
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"bm_id3154515\n"
+"help.text"
+msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+msgstr "<bookmark_value>ô bảng; tự động cập nhật vết</bookmark_value><bookmark_value>vết; tự động cập nhật</bookmark_value>"
+
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"hd_id3154515\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
+msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"Tự động Cập nhật\">Tự động Cập nhật</link>"
+
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"par_id3147264\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Tự động cập nhật tất cả các vết trên trang tính khi nào bạn sửa đổi công thức.</ahelp>"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Goal Seek"
+msgstr "Tìm mục đích"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3155629\n"
+"1\n"
+"help.text"
+msgid "Goal Seek"
+msgstr "Tìm mục đích"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3145119\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
+msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Mở một hộp thoại trong đó bạn có thể giải một phương trình với một biến.</ahelp></variable> Một khi tìm kiếm thành công, một hộp thoại hiển thị kết quả, thì cho phép bạn áp dụng kết quả và giá trị đích một cách trực tiếp cho ô bảng."
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
-msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
-msgstr "Trong phạm vi A1:E10 ta sẽ liệt kê các em nhỏ được mời đi dự tiệc sinh nhật của Joe. Các thông tin sẽ được sắp xếp như sau: cột A là tên của em nhỏ, B là lớp, sau đó là tuổi, khoảng cách tới trường (tính bằng mét) và cân nặng (tính bằng kg)."
+msgid "Default"
+msgstr "Mặc định"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145232\n"
+"06040000.xhp\n"
+"par_id3151211\n"
"4\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "In this section, you can define the variables in your formula."
+msgstr "Trong phần này, bạn có thể định nghĩa những biến của công thức."
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146316\n"
+"06040000.xhp\n"
+"hd_id3150869\n"
"5\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "Formula cell"
+msgstr "Ô công thức"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150297\n"
+"06040000.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "C"
-msgstr "C"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
+msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">Vào ô công thức, hãy nhập tham chiếu của ô chứa công thức. Nó chứa tham chiếu ô hiện thời.</ahelp> Nhấn vào một ô khác trên cùng trang tính để áp dụng tham chiếu của nó cho hộp văn bản."
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150344\n"
+"06040000.xhp\n"
+"hd_id3154685\n"
"7\n"
"help.text"
-msgid "D"
-msgstr "D"
+msgid "Target value"
+msgstr "Giá trị đích"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150785\n"
+"06040000.xhp\n"
+"par_id3146984\n"
"8\n"
"help.text"
-msgid "E"
-msgstr "E"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Specifies the value you want to achieve as a new result.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Ghi rõ giá trị bạn muốn thấy trong kết quả mới.</ahelp>"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150090\n"
+"06040000.xhp\n"
+"hd_id3150012\n"
"9\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Variable cell"
+msgstr "Ô biến đổi"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152992\n"
+"06040000.xhp\n"
+"par_id3147427\n"
"10\n"
"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "<item type=\"input\">Name</item>"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">Ghi rõ tham chiếu cho ô chứa giá trị bạn muốn điều chỉnh để tới mục đích.</ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155532\n"
-"11\n"
+"06050000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "<item type=\"input\">Grade</item>"
+msgid "Create Scenario"
+msgstr "Tạo kịch bản"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156448\n"
-"12\n"
+"06050000.xhp\n"
+"hd_id3156023\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "<item type=\"input\">Age</item>"
+msgid "Create Scenario"
+msgstr "Tạo kịch bản"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154486\n"
+"06050000.xhp\n"
+"par_id3150541\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
+msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Định nghĩa một kịch bản cho vùng trang tính đã chọn.</ahelp></variable>"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN10637\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3156280\n"
+"3\n"
+"help.text"
+msgid "Name of scenario"
+msgstr "Tên của kịch bản"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3151041\n"
"13\n"
"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "<item type=\"input\">Distance to School</item>"
+msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Định nghĩa tên cho kịch bản. Hãy sử dụng một tên rõ ràng và duy nhất để dễ dàng phân biệt kịch bản này.</ahelp> Bạn cũng có thể sửa đổi một tên kịch bản trong <emph>Bộ điều hướng</emph>, thông qua mục trình đơn ngữ cảnh <emph>Thuộc tính</emph>."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152899\n"
+"06050000.xhp\n"
+"hd_id3153954\n"
"14\n"
"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "<item type=\"input\">Weight</item>"
+msgid "Comment"
+msgstr "Chú thích"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153816\n"
+"06050000.xhp\n"
+"par_id3155411\n"
"15\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Ghi rõ thêm thông tin về kịch bản. Thông tin này sẽ được hiển thị trong <link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link> khi bạn nhấn vào biểu tượng <emph>Kịch bản</emph> và chọn kịch bản đã muốn.</ahelp> Bạn cũng có thể sửa đổi thông tin này trong <emph>Bộ điều hướng</emph>, thông qua mục trình đơn ngữ cảnh <emph>Thuộc tính</emph>."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151240\n"
+"06050000.xhp\n"
+"hd_id3145273\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">Andy</item>"
-msgstr "<item type=\"input\">Andy</item>"
+msgid "Settings"
+msgstr "Thiết lập"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156016\n"
+"06050000.xhp\n"
+"par_id3153364\n"
"17\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgid "This section is used to define some of the settings used in the scenario display."
+msgstr "Phần này được dùng để định nghĩa một số thiết lập được dùng khi hiển thị kịch bản."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145073\n"
+"06050000.xhp\n"
+"hd_id3145367\n"
"18\n"
"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgid "Display border"
+msgstr "Hiển thị viền"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154956\n"
+"06050000.xhp\n"
+"par_id3151073\n"
"19\n"
"help.text"
-msgid "<item type=\"input\">150</item>"
-msgstr "<item type=\"input\">150</item>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Tô sáng kịch bản trên bảng của bạn, dùng một viền. Màu của viền được ghi rõ trong trường bên phải tùy chọn này.</ahelp> Viền sẽ có một thanh tựa đề mà hiển thị tên của kịch bản cuối cùng. Nút bên phải viền kịch bản cung cấp một toàn cảnh của tất cả các kịch bản trong vùng này, nếu có nhiều kịch bản được định nghĩa. Bạn có thể chọn bất cứ kịch bản nào trong danh sách này, vô hạn."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153976\n"
+"06050000.xhp\n"
+"hd_id3149582\n"
"20\n"
"help.text"
-msgid "<item type=\"input\">40</item>"
-msgstr "<item type=\"input\">40</item>"
+msgid "Copy back"
+msgstr "Chép ngược"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150894\n"
+"06050000.xhp\n"
+"par_id3154942\n"
"21\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Sao chép vào kịch bản hoạt động các giá trị ô được bạn thay đổi. Không bật tùy chọn này thì kịch bản không thay đổi khi bạn thay đổi giá trị ô. Ứng xử của thiết lập <emph>Chép ngược</emph> phụ thuộc vào chức năng bảo vệ ô, bảo vệ trang tính, và <emph>Ngăn cản thay đổi</emph>.</ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152870\n"
+"06050000.xhp\n"
+"hd_id3149402\n"
"22\n"
"help.text"
-msgid "<item type=\"input\">Betty</item>"
-msgstr "<item type=\"input\">Betty</item>"
+msgid "Copy entire sheet"
+msgstr "Chép toàn bộ trang tính"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149692\n"
+"06050000.xhp\n"
+"par_id3146969\n"
"23\n"
"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Sao chép toàn bộ trang tính vào một trang tính kịch bản bổ sung.</ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154652\n"
-"24\n"
+"06050000.xhp\n"
+"par_idN1075A\n"
"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgid "Prevent changes"
+msgstr "Ngăn cản thay đổi"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149381\n"
-"25\n"
+"06050000.xhp\n"
+"par_idN1075E\n"
"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "<item type=\"input\">1000</item>"
+msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Ngăn cản thay đổi trong kịch bản hoạt động. Ứng xử của thiết lập <emph>Chép ngược</emph> phụ thuộc vào chức năng bảo vệ ô, bảo vệ trang tính, và <emph>Ngăn cản thay đổi</emph>.</ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153812\n"
-"26\n"
+"06050000.xhp\n"
+"par_idN10778\n"
"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "<item type=\"input\">42</item>"
+msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
+msgstr "Bạn chỉ có thể thay đổi thuộc tính về kịch bản nếu tùy chọn <emph>Ngăn cản thay đổi</emph> không phải được bật, và nếu trang tính đó không phải được bảo vệ."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146965\n"
-"27\n"
+"06050000.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+msgstr "Bạn chỉ có thể chỉnh sửa giá trị ô nếu tùy chọn <emph>Ngăn cản thay đổi</emph> được bật, nếu tùy chọn <emph>Chép ngược</emph> không phải được bật, và nếu các ô không phải được bảo vệ."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155596\n"
-"28\n"
+"06050000.xhp\n"
+"par_idN1078C\n"
"help.text"
-msgid "<item type=\"input\">Charles</item>"
-msgstr "<item type=\"input\">Charles</item>"
+msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
+msgstr "Bạn chỉ có thể thay đổi giá trị ô trong kịch bản và ghi lại về kịch bản nếu tùy chọn <emph>Ngăn cản thay đổi</emph> không phải được bật, nếu tùy chọn <emph>Chép ngược</emph> được bật, và nếu các ô không phải được bảo vệ."
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147244\n"
-"29\n"
+"06060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgid "Protect Document"
+msgstr "Bảo vệ tài liệu"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149871\n"
-"30\n"
+"06060000.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Bảo vệ Tài liệu\">Bảo vệ Tài liệu</link>"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155752\n"
-"31\n"
+"06060000.xhp\n"
+"par_id3153362\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">300</item>"
-msgstr "<item type=\"input\">300</item>"
+msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgstr "Chức năng <emph>Bảo vệ tài liệu</emph> ngăn cản thay đổi xảy ra trong một số ô trong trang tính, hoặc trong một số trang tính trong tài liệu. Tùy chọn, bạn cũng có thể đặt một mật khẩu. Đặt mật khẩu thì chỉ hủy bảo vệ bằng cách nhập mật khẩu đúng."
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149052\n"
-"32\n"
+"06060000.xhp\n"
+"hd_id3147228\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">51</item>"
-msgstr "<item type=\"input\">51</item>"
+msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Trang tính\">Trang tính</link>"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146097\n"
-"33\n"
+"06060000.xhp\n"
+"hd_id3153768\n"
+"4\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Tài liệu\">Tài liệu</link>"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147296\n"
-"34\n"
+"06060000.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "<item type=\"input\">Daniel</item>"
-msgstr "<item type=\"input\">Daniel</item>"
+msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150393\n"
-"35\n"
+"06060100.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgid "Protecting Sheet"
+msgstr "Bảo vệ Trang tính"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145236\n"
-"36\n"
+"06060100.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">11</item>"
-msgstr "<item type=\"input\">11</item>"
+msgid "Protecting Sheet"
+msgstr "Bảo vệ Trang tính"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150534\n"
-"37\n"
+"06060100.xhp\n"
+"par_id3148664\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "<item type=\"input\">1200</item>"
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Bảo vệ các ô trong trang tính hiện thời khỏi sửa đổi.</ahelp></variable> Chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph> để mở hộp thoại <emph>Bảo vệ trang tính</emph> trong đó bạn ghi rõ có nên bảo vệ trang tính, dùng mật khẩu hay không."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150375\n"
-"38\n"
+"06060100.xhp\n"
+"par_id3149664\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">48</item>"
-msgstr "<item type=\"input\">48</item>"
+msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgstr "Để bảo vệ các ô khỏi sửa đổi thêm nữa, bạn cần phải bật tùy chọn <emph>Bảo vệ</emph> trên trang thẻ <link href=\"text/scalc/01/05020600.xhp\" name=\"Định dạng > Các ô > Bảo vệ ô\"><emph>Định dạng > Các ô > Bảo vệ ô</emph></link>, hoặc trong trình đơn ngữ cảnh <emph>Định dạng các ô</emph>."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3159121\n"
-"39\n"
+"06060100.xhp\n"
+"par_id3154490\n"
+"8\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
+msgstr "Trên một trang tính đã bao vệ, bạn cũng có thể thiết lập ô hay phạm vi ô mà không phải được bảo vệ, bằng cách sử dụng mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph> và <emph>Định dạng > Các ô > Bảo vệ ô</emph>:"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150456\n"
-"40\n"
+"06060100.xhp\n"
+"par_id3149123\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">Eva</item>"
-msgstr "<item type=\"input\">Eva</item>"
+msgid "Select the cells that will be unprotected"
+msgstr "Hãy lựa chọn những ô không nên được bảo vệ"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146886\n"
-"41\n"
+"06060100.xhp\n"
+"par_id3150329\n"
+"17\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+msgstr "Chọn <emph>Định dạng > Các ô > Bảo vệ ô</emph>. Tắt tùy chọn <emph>Bảo vệ</emph>, sau đó bấm nút <emph>OK</emph>."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149945\n"
-"42\n"
+"06060100.xhp\n"
+"par_id3156384\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgstr "Dùng mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>, kích hoạt chức năng bảo vệ cho trang tính đó. Kể từ lúc này, chỉ phạm vi ô bạn đã chọn trong bước 1 có thể được chỉnh sửa."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3157904\n"
-"43\n"
+"06060100.xhp\n"
+"par_id3149566\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">650</item>"
-msgstr "<item type=\"input\">650</item>"
+msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
+msgstr "Để thay đổi về sau một vùng không được bảo vệ sang một vùng được bảo vệ, hãy lựa chọn phạm vi đó. Sau đó, trên trang thẻ <emph>Định dạng > Các ô > Bảo vệ ô</emph>, bật tùy chọn <emph>Bảo vệ</emph>. Cuối cùng, chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>. Phạm vi chỉnh sửa được về trước giờ này được bảo vệ."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149352\n"
-"44\n"
+"06060100.xhp\n"
+"par_id3153964\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">33</item>"
-msgstr "<item type=\"input\">33</item>"
+msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
+msgstr "Chức năng bảo vệ trang tính cũng ảnh hưởng đến trình đơn ngữ cảnh của thẻ trang tính ở dưới màn hình. Tuy nhiên, không thể chọn lệnh <emph>Xoá</emph> hay <emph>Chuyển/Chép</emph>."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150028\n"
-"45\n"
+"06060100.xhp\n"
+"par_id3150301\n"
+"19\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgstr "Nếu một trang tính được bảo vệ, bạn không thể sửa đổi hay xoá Kiểu dáng Ô nào."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145826\n"
-"46\n"
+"06060100.xhp\n"
+"par_id3154656\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
-msgstr "<item type=\"input\">F</item><item type=\"input\">thứ bậc</item>"
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr "Một trang tính hay phạm vi ô mà được bảo vệ thì không còn sửa đổi được lại đến khi chức năng bảo vệ này bị tắt. Để tắt bảo vệ, hãy chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Trang tính</emph>. Chưa đặt mật khẩu bảo vệ thì chức năng bảo vệ trang tính bị tắt ngay lập tức. Đặt mật khẩu thì việc này mở hộp thoại <emph>Hủy bảo vệ</emph>, trong đó bạn cần phải nhập mật khẩu."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150743\n"
-"47\n"
+"06060100.xhp\n"
+"par_id3149815\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgstr "Một khi lưu được thì trang tính được bảo vệ chỉ có thể được lưu lại bằng cách sử dụng câu lệnh <emph>Tập tin > Lưu dạng</emph>."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154844\n"
-"48\n"
+"06060100.xhp\n"
+"hd_id3150206\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgid "Password (optional)"
+msgstr "Mật khẩu (không bắt buộc)"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148435\n"
-"49\n"
+"06060100.xhp\n"
+"par_id3152990\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
-msgstr "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
+msgstr "<ahelp hid=\".uno:Protect\">Cho phép nhập mật khẩu bảo vệ trang tính đó khỏi thay đổi nếu không được phép.</ahelp>"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148882\n"
-"50\n"
+"06060100.xhp\n"
+"par_id3148700\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
-msgstr "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgstr "Có thể bảo vệ hoàn toàn dữ liệu bằng cách kết hợp cả hai tùy chọn dưới mục trình đơn <emph>Công cụ > Bảo vệ tài liệu</emph>, gồm có bảo vệ bằng mật khẩu. Để cấm mở tài liệu bằng cách nào cả, trong hộp thoại <emph>Lưu</emph> bật tùy chọn <emph>Lưu bằng mật khẩu</emph> trước khi bấm nút <emph>Lưu</emph>."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150140\n"
-"51\n"
+"06060200.xhp\n"
+"tit\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "Protecting document"
+msgstr "Bảo vệ tài liệu"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146137\n"
-"52\n"
+"06060200.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Greta</item>"
-msgstr "<item type=\"input\">Greta</item>"
+msgid "Protecting document"
+msgstr "Bảo vệ tài liệu"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148739\n"
-"53\n"
+"06060200.xhp\n"
+"par_id3145172\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">1</item>"
+msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Bảo vệ cấu trúc trang tính của tài liệu khỏi bị sửa đổi. Một khi bật chức năng này, không thể chèn, xoá, thay đổi tên, di chuyển hay sao chép trang tính.</ahelp></variable> Mở hộp thoại <emph>Bảo vệ tài liệu</emph> dùng mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Tài liệu</emph>. Nếu cần, nhập một mật khẩu, sau đó nhấn nút <emph>OK</emph>."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148583\n"
-"54\n"
+"06060200.xhp\n"
+"par_id3153188\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+msgstr "Cấu trúc của tài liệu bảng tính được bảo vệ có thể được thay đổi chỉ nếu tùy chọn <emph>Bảo vệ</emph> bị tắt. Trong trình đơn ngữ cảnh của thẻ trang tính ở viền đồ họa dưới, chỉ mục trình đơn <emph>Chọn mọi trang tính</emph> có thể được kích hoạt. Các mục trình đơn khác đã bị tắt. Để hủy bảo vệ, hãy chọn mục trình đơn <emph>Công cụ > Bảo vệ tài liệu > Tài liệu</emph> lần nữa. Chưa đặt mật khẩu bảo vệ thì chức năng bảo vệ bị tắt ngay lập tức. Đặt mật khẩu thì việc này mở hộp thoại <emph>Hủy bảo vệ bảng tính</emph>, trong đó bạn cần phải nhập mật khẩu. Chỉ sau đó bạn có thể tắt tùy chọn bảo vệ."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154556\n"
-"55\n"
+"06060200.xhp\n"
+"par_id3145750\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">200</item>"
-msgstr "<item type=\"input\">200</item>"
+msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
+msgstr "Một tài liệu được bảo vệ, một khi lưu được, chỉ có thể được lưu lại dùng lệnh <emph>Tập tin > Lưu dạng</emph>."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155255\n"
-"56\n"
+"06060200.xhp\n"
+"hd_id3152596\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">36</item>"
-msgstr "<item type=\"input\">36</item>"
+msgid "Password (optional)"
+msgstr "Mật khẩu (không bắt buộc)"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145141\n"
-"57\n"
+"06060200.xhp\n"
+"par_id3155412\n"
+"5\n"
"help.text"
-msgid "9"
-msgstr "9"
+msgid "You can create a password to protect your document against unauthorized or accidental modifications."
+msgstr "Bạn có thể đặt mật khẩu để bảo vệ tài liệu khỏi sửa đổi ngẫu nhiên hay không được phép."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153078\n"
-"58\n"
+"06060200.xhp\n"
+"par_id3150717\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">Harry</item>"
-msgstr "<item type=\"input\">Harry</item>"
+msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+msgstr "Bạn cũng có thể bảo vệ dữ liệu một cách hoàn toàn bằng cách kết hợp cả hai tùy chọn dưới mục trình đơn <emph>Công cụ > Bảo vệ tài liệu</emph>, gồm có đặt mật khẩu. Nếu bạn muốn bảo vệ tài liệu khỏi bị người khác mở, hãy bật tùy chọn <emph>Lưu bằng mật khẩu</emph>, sau đó nhấn nút <emph>Lưu</emph>. Hộp thoại <emph>Nhập mật khẩu</emph> sẽ xuất hiện. Cần cẩn thận khi đặt mật khẩu: nếu bạn mất mật khẩu này, không thể truy cập tài liệu nữa."
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149955\n"
-"59\n"
+"06070000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgid "AutoCalculate"
+msgstr "Tự động tính"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150005\n"
-"60\n"
+"06070000.xhp\n"
+"bm_id3145673\n"
"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgstr "<bookmark_value>tính; tự động tính trang tính</bookmark_value><bookmark_value>tính lại;tự động tính trang tính</bookmark_value><bookmark_value>chức năng Tự động tính trong trang tính</bookmark_value><bookmark_value>tự động sửa lỗi trong trang tính</bookmark_value><bookmark_value>công thức;chức năng Tự động tính</bookmark_value><bookmark_value>nội dung ô;chức năng Tự động tính</bookmark_value>"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155951\n"
-"61\n"
+"06070000.xhp\n"
+"hd_id3145673\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "<item type=\"input\">1200</item>"
+msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"Tự động tính\">Tự động tính</link>"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145169\n"
-"62\n"
+"06070000.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">44</item>"
-msgstr "<item type=\"input\">44</item>"
+msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutomaticCalculation\">Tự động tính lại tất cả các công thức trong tài liệu đó.</ahelp>"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153571\n"
-"63\n"
+"06070000.xhp\n"
+"par_id3145173\n"
+"3\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
+msgstr "Sửa đổi trang tính thì tất cả các ô được tính lại. Bất cứ đồ thị nào trên trang tính đó sẽ cũng được vẽ lại."
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148761\n"
-"64\n"
+"06080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">Irene</item>"
-msgstr "<item type=\"input\">Irene</item>"
+msgid "Recalculate"
+msgstr "Tính lại"
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149877\n"
-"65\n"
+"06080000.xhp\n"
+"bm_id3157909\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+msgstr "<bookmark_value>tính lại;mọi công thức trên trang tính</bookmark_value><bookmark_value>công thức; tính lại bằng tay</bookmark_value><bookmark_value>nội dung ô; tính lại</bookmark_value>"
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154327\n"
-"66\n"
+"06080000.xhp\n"
+"hd_id3157909\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Tính lại\">Tính lại</link>"
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155435\n"
-"67\n"
+"06080000.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "<item type=\"input\">1000</item>"
+msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145353\n"
-"68\n"
+"06080000.xhp\n"
+"par_id315475899\n"
"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "<item type=\"input\">42</item>"
+msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150662\n"
-"69\n"
+"06080000.xhp\n"
+"par_id3150793\n"
+"5\n"
"help.text"
-msgid "11"
-msgstr "11"
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgstr "Một khi tài liệu tài liệu tính lại, sự hiển thị được cập nhật. Bất cứ đồ thị nào trên trang tính đó sẽ cũng được vẽ lại."
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150568\n"
-"70\n"
+"06080000.xhp\n"
+"par_id315475855\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149393\n"
-"71\n"
+"06130000.xhp\n"
+"tit\n"
"help.text"
-msgid "13"
-msgstr "13"
+msgid "AutoInput"
+msgstr "Tự động Nhập"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153544\n"
-"72\n"
+"06130000.xhp\n"
+"bm_id2486037\n"
"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "<item type=\"input\">Name</item>"
+msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
+msgstr "<bookmark_value>nhập mục dùng chức năng Tự động Nhập</bookmark_value><bookmark_value>chữ hoa; chức năng Tự động Nhập</bookmark_value>"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3158414\n"
-"73\n"
+"06130000.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "<item type=\"input\">Grade</item>"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tự động Nhập\">Tự động Nhập</link>"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152820\n"
-"74\n"
+"06130000.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "<item type=\"input\">Age</item>"
+msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
+msgstr "<ahelp hid=\".uno:AutoComplete\">Bật/tắt chức năng Tự động Nhập, mà tự động điền nốt mục nhập, dựa vào các mục nhập trong cùng một cột.</ahelp> Cột được quét đến số tối đa là 2000 ô bảng hay 200 chuỗi khác nhau."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154866\n"
-"75\n"
+"06130000.xhp\n"
+"par_id3156422\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "<item type=\"input\">Distance to School</item>"
+msgid "The completion text is highlighted."
+msgstr "Chuỗi văn bản điền nốt cũng được tô sáng."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150471\n"
-"76\n"
+"06130000.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "<item type=\"input\">Cân nặng</item>"
+msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+msgstr "Để đồng ý với chuỗi văn bản được điền nốt, bấm phím <item type=\"keycode\">Enter</item> hay một phím con trỏ."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153920\n"
-"77\n"
+"06130000.xhp\n"
+"par_idN10665\n"
"help.text"
-msgid "14"
-msgstr "14"
+msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+msgstr "Để phụ thêm chuỗi văn bản, hoặc chỉnh sửa chuỗi điền nốt, bấm phím chức năng <item type=\"keycode\">F2</item>."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148429\n"
-"78\n"
+"06130000.xhp\n"
+"par_idN1066D\n"
"help.text"
-msgid "<item type=\"input\">>600</item>"
-msgstr "<item type=\"input\">>600</item>"
+msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152588\n"
-"79\n"
+"06130000.xhp\n"
+"par_idN10679\n"
"help.text"
-msgid "15"
-msgstr "15"
+msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3083286\n"
-"80\n"
+"06130000.xhp\n"
+"par_id3150439\n"
+"3\n"
"help.text"
-msgid "16"
-msgstr "16"
+msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
+msgstr "Trong khi bạn gõ công thức dùng ký tự tương ứng với mục nhập trước, một Gợi ý Trợ giúp sẽ xuất hiện, liệt kê 10 hàm vừa dùng trong <emph>Trợ lý Hàm</emph>, từ tất cả các tên phạm vi đã xác định, từ tất cả các tên phạm vi cơ sở dữ liệu, và từ nội dung của tất cả các phạm vi nhãn."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3163823\n"
-"81\n"
+"06130000.xhp\n"
+"par_id3153363\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">DCOUNT</item>"
-msgstr "<item type=\"input\">DCOUNT</item>"
+msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
+msgstr "Chức năng Tự động Nhập phân biệt chữ hoa/thường. Ví dụ, nếu bạn đã gõ « Tổng » vào một ô nào đó, bạn không thể gõ « tổng » vào ô khác cùng cột đến khi tắt Tự động Nhập."
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145083\n"
-"82\n"
+"06990000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgid "Cell Contents"
+msgstr "Nội dung ô"
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149282\n"
-"83\n"
+"06990000.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
-msgstr "Công thức ở ô B16 là « =DCOUNT(A1:E10;0;A13:E14) »"
+msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
+msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Nội dung ô\">Nội dung ô</link>"
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150962\n"
-"192\n"
+"06990000.xhp\n"
+"par_id3145674\n"
+"2\n"
"help.text"
-msgid "Database Function Parameters:"
-msgstr "Các tham số cho hàm của CSDL:"
+msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
+msgstr "Mở một trình đơn con chứa các câu lệnh để tính bảng và kích hoạt chức năng Tự động Nhập."
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155837\n"
-"84\n"
+"07080000.xhp\n"
+"tit\n"
"help.text"
-msgid "The following items are the parameter definitions for all database functions:"
-msgstr "Các mục sau sẽ được dùng làm tham số cho tất cả các hàm CSDL:"
+msgid "Split"
+msgstr "Xẻ"
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149453\n"
-"85\n"
+"07080000.xhp\n"
+"hd_id3163800\n"
+"1\n"
"help.text"
-msgid "<emph>Database</emph> is the cell range defining the database."
-msgstr "<emph>Cơ sở dữ liệu</emph> là phạm vi ô được đặt làm cơ sở dữ liệu."
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Xẻ\">Xẻ</link>"
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151272\n"
-"86\n"
+"07080000.xhp\n"
+"par_id3150084\n"
+"2\n"
"help.text"
-msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
-msgstr "<emph>DatabaseField</emph> đặt cột trong đó hàm hoạt động sau khi tiêu chí tìm kiếm của tham số đầu tiên được áp dụng và đã chọn các hàng dữ liệu. Việc này không liên quan đến tiêu chí tìm kiếm. Dùng số 0 để chỉ toàn bộ phạm vi dữ liệu. <variable id=\"quotes\">Để tham chiếu một cột thông qua tên của phần đầu cột, hãy đặt dấu ngoặc kép xung quanh tên của phần đầu cột. </variable>"
+msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Chia cửa sổ hiện tại ở góc trên bên trái ô được chọn.</ahelp>"
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147083\n"
-"87\n"
+"07080000.xhp\n"
+"par_id3154910\n"
+"3\n"
"help.text"
-msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
-msgstr "<emph> SearchCriteria </emph> là phạm vi các ô chứa tiêu chí tìm kiếm. Nếu bạn viết một vài tiêu chí tìm kiếm trong 1 hàng, chúng sẽ được hợp lại bằng toán tử AND (và). Nếu bạn viết các tiêu chí trong các hàng khác nhau, chúng sẽ được hợp lại bằng toán tử OR (hoặc). Các ô không có gì sẽ bị bỏ qua."
+msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
+msgstr "Bạn cũng có thể sử dụng con chuột để chia cửa sổ theo chiều ngang hay dọc. Để làm như thế, kéo vào cửa sổ đường thẳng màu đen đậm nằm bên trên thanh cuộn dọc hay bên phải thanh cuộn ngang. Một đường thẳng màu đen đậm sẽ ngụ ý cửa sổ bị chia ở đâu."
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151188\n"
-"188\n"
+"07080000.xhp\n"
+"par_id3149263\n"
+"4\n"
"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
-msgstr ""
+msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
+msgstr "Một cửa sổ bị xẻ có các thanh cuộn riêng trong mỗi phần; trái lại, <link href=\"text/scalc/01/07090000.xhp\" name=\"phần cửa sổ cố định\">phần cửa sổ cố định</link> không có khả năng cuộn."
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3882869\n"
+"07090000.xhp\n"
+"tit\n"
"help.text"
-msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
-msgstr ""
+msgid "Freeze"
+msgstr "Làm đông"
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3150882\n"
+"07090000.xhp\n"
+"hd_id3150517\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
-msgstr "<bookmark_value>hàm DCOUNT</bookmark_value><bookmark_value>đếm hàng;với giá trị số</bookmark_value>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Làm đông\">Làm đông</link>"
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150882\n"
-"88\n"
+"07090000.xhp\n"
+"par_id3156289\n"
+"2\n"
"help.text"
-msgid "DCOUNT"
-msgstr "DCOUNT"
+msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Chia trang tính ở góc trên bên trái ô được chọn, sau đó thì vùng ở góc trên bên trái không còn có khả năng cuộn lại.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156133\n"
-"89\n"
+"12010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT đếm số dòng (hay số bản ghi) trong CSDL thoả mãn điều kiện tìm kiếm và chứa các giá trị số.</ahelp>"
+msgid "Define Database Range"
+msgstr "Xác định phạm vi cơ sở dữ liệu"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3156099\n"
-"90\n"
+"12010000.xhp\n"
+"hd_id3157909\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Define Database Range"
+msgstr "Xác định phạm vi cơ sở dữ liệu"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153218\n"
-"91\n"
+"12010000.xhp\n"
+"par_id3155922\n"
+"2\n"
"help.text"
-msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
-msgstr "DCOUNT(Database; DatabaseField; SearchCriteria)"
+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\">Xác định một phạm vi cơ sở dữ liệu dựa vào những ô được chọn trên trang tính.</ahelp></variable>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153273\n"
-"187\n"
+"12010000.xhp\n"
+"par_id3149456\n"
+"5\n"
"help.text"
-msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-msgstr "Đối với tham số « DatabaseField », bạn có thể nhập một ô đã ghi rõ cột, hoặc nhập số 0 để đại diện toàn bộ cơ sở dữ liệu. Tham số không thể là rỗng. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+msgid "You can only select a rectangular cell range."
+msgstr "Bạn chỉ có thể lựa chọn một phạm vi ô hình chữ nhật."
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154743\n"
-"92\n"
+"12010000.xhp\n"
+"hd_id3156422\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Name"
+msgstr "Tên"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153623\n"
-"93\n"
+"12010000.xhp\n"
+"par_id3150770\n"
+"4\n"
"help.text"
-msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
-msgstr "Trong thí dụ trên (xin hãy cuộn lên), muốn biết mấy đứa trẻ cần phải đi trường học xa hơn 600 mét. Kết quả sẽ được cất giữ trong ô B16. Đặt con trỏ vào ô B16. Nhập công thức <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> vào ô B16. <emph>Trợ lý Hàm</emph> có thể giúp bạn nhập phạm vi dữ liệu."
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Hãy nhập tên cho phạm vi cơ sở dữ liệu cần xác định, hoặc chọn một tên đã có trong danh sách.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149142\n"
-"94\n"
+"12010000.xhp\n"
+"hd_id3147228\n"
+"6\n"
"help.text"
-msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
-msgstr "<emph>Database</emph> là phạm vi dữ liệu cần ước lượng, bao gồm các phần đầu: trong trường hợp này « A1:E10 ». <emph>DatabaseField</emph> ghi rõ cột cho các tiêu chuẩn tìm kiếm: trong trường hợp này, toàn bộ cơ sở dữ liệu. <emph>SearchCriteria</emph> là phạm vi vào đó bạn có thể nhập các tham số tìm kiếm: trong trường hợp này « A13:E14 »."
+msgid "Range"
+msgstr "Phạm vi"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145652\n"
-"95\n"
+"12010000.xhp\n"
+"par_id3150441\n"
+"7\n"
"help.text"
-msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
-msgstr "Để tìm xem bao nhiêu đứa trẻ trong lớp 2 lớn hơn 7 tuổi, xoá mục nhập « >600 » trong ô D14 và nhập <item type=\"input\">2</item> vào ô B14 dưới Grade (Lớp), và nhập <item type=\"input\">>7</item> vào ô C14 ở bên phải. Kết quả là 2. Có hai đứa trẻ trong lớp 2 lớn hơn 7 tuổi. Vì cả hai tiêu chuẩn đều nằm trong cùng một hàng, chúng được kết nối với nhau bằng toán tử AND (và)."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Hiển thị phạm vi ô được chọn.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3156123\n"
+"12010000.xhp\n"
+"hd_id3153188\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
-msgstr "<bookmark_value>hàm DCOUNTA</bookmark_value><bookmark_value>bản ghi;đếm trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>đếm hàng;dùng giá trị kiểu số hoặc chữ và số</bookmark_value>"
+msgid "Add/Modify"
+msgstr "Thêm/Sửa"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3156123\n"
-"97\n"
+"12010000.xhp\n"
+"par_id3153726\n"
+"11\n"
"help.text"
-msgid "DCOUNTA"
-msgstr "DCOUNTA"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Thêm phạm vi ô được chọn vào danh sách các phạm vi cơ sở dữ liệu, hoặc sửa đổi một phạm vi cơ sở dữ liệu đã có.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156110\n"
-"98\n"
+"12010000.xhp\n"
+"hd_id3150010\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">Hàm DCOUNTA đếm số hàng (bản ghi) trong một cơ sở dữ liệu thỏa các điều kiện tìm kiếm đã xác định và chứa giá trị kiểu số hoặc chữ và số.</ahelp>"
+msgid "More >>"
+msgstr "Nhiều >>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3143228\n"
-"99\n"
+"12010000.xhp\n"
+"par_id3153144\n"
+"13\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">hiển thị thêm <link href=\"text/scalc/01/12010100.xhp\" name=\"tùy chọn\">tùy chọn</link>.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146893\n"
-"100\n"
+"12010100.xhp\n"
+"tit\n"
"help.text"
-msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
-msgstr "DCOUNTA(Database; DatabaseField; SearchCriteria)"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149751\n"
-"101\n"
+"12010100.xhp\n"
+"hd_id3154760\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153982\n"
-"102\n"
+"12010100.xhp\n"
+"hd_id3153379\n"
+"3\n"
"help.text"
-msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
-msgstr "Trong mẫu thí dụ trên (xin hãy cuộn lên), bạn có thể tìm kiếm số đứa trẻ có tên bắt đầu với chữ E hoặc xếp sau E trong bảng chữ cái. Chỉnh sửa công thức trong ô B16 để hiển thị <item type=\"input\">=DCOUNTA(A1:E10;\"Tuổi\";A13:E14)</item>. Xoá các tiêu chuẩn tìm kiếm cũ, và nhập <item type=\"input\">>=E</item> dưới \"Tên\" trong trường A14. Kết quả là 5. Bây giờ nếu bạn xoá tất cả các giá trị số cho Greta trong hàng 8, kết quả thay đổi thành 4. Hàng 8 không còn được đếm lại vì nó không chứa giá trị. Tên \"Greta\" là chữ, không phải một giá trị số. Lưu ý: tham số \"DatabaseField\" (trường cơ sở dữ liệu) cần phải trỏ tới một cột chứa giá trị."
+msgid "Contains column labels"
+msgstr "Chứa nhãn cột"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3147256\n"
+"12010100.xhp\n"
+"par_id3148798\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>Hàm DGET </bookmark_value><bookmark_value>nội dung ô;tìm kiếm trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tìm kiếm;nội dung ô trong cơ sở dữ liệu Calc</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Một số phạm vi ô được chọn chứa nhãn.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3147256\n"
-"104\n"
+"12010100.xhp\n"
+"hd_id3153970\n"
+"5\n"
"help.text"
-msgid "DGET"
-msgstr "DGET"
+msgid "Insert or delete cells"
+msgstr "Chèn hay xoá ô"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152801\n"
-"105\n"
+"12010100.xhp\n"
+"par_id3154684\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
-msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">Hàm DGET trả về nội dung của ô đã tham chiếu trong một cơ sở dữ liệu mà tương ứng với tiêu chuẩn tìm kiếm đã ghi rõ.</ahelp> Trong trường hợp gặp lỗi, hàm trả về hoặc « #VALUE! » (không tìm thấy hàng), hoặc « Err502 » (tìm thấy nhiều hơn một ô)."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Tự động chèn hàng/cột mới vào phạm vi cơ sở dữ liệu trong tài liệu khi bản ghi mới được thêm vào cơ sở dữ liệu đó.</ahelp> Để cập nhật thủ công phạm vi cơ sở dữ liệu, chọn <emph>Dữ liệu > Cập nhật > Phạm vi</emph>."
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159344\n"
-"106\n"
+"12010100.xhp\n"
+"hd_id3153768\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Keep formatting"
+msgstr "Giữ định dạng"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154696\n"
-"107\n"
+"12010100.xhp\n"
+"par_id3147435\n"
+"8\n"
"help.text"
-msgid "DGET(Database; DatabaseField; SearchCriteria)"
-msgstr "DGET(Database; DatabaseField; SearchCriteria)"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Áp dụng định dạng ô đã tồn tại của tiêu đề và hàng dữ liệu đầu cho toàn bộ phạm vi cơ sở dữ liệu.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153909\n"
-"108\n"
+"12010100.xhp\n"
+"hd_id3155856\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Don't save imported data"
+msgstr "Không lưu dữ liệu đã nhập"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155388\n"
-"109\n"
+"12010100.xhp\n"
+"par_id3153363\n"
+"10\n"
"help.text"
-msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
-msgstr "Trong mẫu thí dụ trên (xin hãy cuộn lên), muốn xác định lớp học của đứa trẻ có tên trong ô A14. Công thức được nhập vào ô B16 và khác một ít với các mẫu thí dụ trước vì chỉ một cột (một trường cơ sở dữ liệu) có thể được nhập cho tham số <emph>DatabaseField</emph>. Nhập công thức này:"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Chỉ lưu một tham chiếu đến cơ sở dữ liệu, không phải nội dung của ô.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153096\n"
-"110\n"
+"12010100.xhp\n"
+"hd_id3147428\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgid "Source:"
+msgstr "Nguồn:"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150524\n"
-"111\n"
+"12010100.xhp\n"
+"par_id3148576\n"
+"12\n"
"help.text"
-msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
-msgstr "Nhập tên <item type=\"input\">Frank</item> vào ô A14 thì bạn thấy kết quả 2, vì Frank học lớp 2. Nhâp « <item type=\"input\">Age</item> » (Tuổi) thay cho « Grade » (Lớp) thì bạn thấy Frank có mấy tuổi."
+msgid "Displays information about the current database source and any existing operators."
+msgstr "Hiển thị thông tin về nguồn cơ sở dữ liệu hiện thời và bất cứ toán tử nào đã có."
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148833\n"
-"112\n"
+"12010100.xhp\n"
+"hd_id3146976\n"
+"13\n"
"help.text"
-msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
-msgstr "Hoặc nhập giá trị <item type=\"input\">11</item> chỉ vào ô C14, và xoá các mục nhập khác trong hàng này. Chỉnh sửa công thức trong ô B16 như sau :"
+msgid "More <<"
+msgstr "Nhiều <<"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149912\n"
-"113\n"
+"12010100.xhp\n"
+"par_id3149664\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
+msgid "Hides the additional options."
+msgstr "Ẩn các tùy chọn bổ sung."
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148813\n"
-"114\n"
+"12020000.xhp\n"
+"tit\n"
"help.text"
-msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
-msgstr "Thay cho lớp, tên được truy vận. Phép giải xuất hiện ngay: Daniel là đứa trẻ duy nhất có 11 tuổi."
+msgid "Select Database Range"
+msgstr "Chọn phạm vi cơ sở dữ liệu"
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3149766\n"
+"12020000.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
-msgstr "<bookmark_value>Hàm DMAX</bookmark_value><bookmark_value>giá trị lớn nhất trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tìm kiếm;giá trị lớn nhất trong cột</bookmark_value>"
+msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+msgstr "<bookmark_value>cơ sở dữ liệu; lựa chọn (Calc)</bookmark_value>"
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149766\n"
-"115\n"
+"12020000.xhp\n"
+"hd_id3145068\n"
+"1\n"
"help.text"
-msgid "DMAX"
-msgstr "DMAX"
+msgid "Select Database Range"
+msgstr "Chọn phạm vi cơ sở dữ liệu"
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154903\n"
-"116\n"
+"12020000.xhp\n"
+"par_id3149655\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">Hàm DMAX trả về giá trị lớn nhất của một ô (trường) trong một cơ sở dữ liệu (mọi bản ghi) thỏa các tiêu chuẩn tìm kiếm đã xác định.</ahelp>"
+msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
+msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Lựa chọn một phạm vi cơ sở dữ liệu mà bạn đã xác định dưới <link href=\"text/scalc/01/12010000.xhp\" name=\"Dữ liệu > Xác định Phạm vi\">Dữ liệu > Xác định Phạm vi</link>.</ahelp></variable>"
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150771\n"
-"117\n"
+"12020000.xhp\n"
+"hd_id3153192\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Ranges"
+msgstr "Phạm vi"
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3159157\n"
-"118\n"
+"12020000.xhp\n"
+"par_id3154684\n"
+"4\n"
"help.text"
-msgid "DMAX(Database; DatabaseField; SearchCriteria)"
-msgstr "DMAX(Database; DatabaseField; SearchCriteria)"
+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\">Liệt kê những phạm vi cơ sở dữ liệu sẵn sàng. Để lựa chọn một phạm vi cơ sở dữ liệu nào đó, nhấn vào tên của nó, sau đó nhấn nút <emph>OK</emph>.</ahelp>"
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145420\n"
-"119\n"
+"12030000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Sort"
+msgstr "Sắp xếp"
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148442\n"
-"120\n"
+"12030000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Đối với mẫu thí dụ trên, để tìm biết cân nặng của đứa trẻ nặng nhất trong mỗi lớp (xin hãy cuộn lên), nhập công thức này vào ô B16:"
+msgid "Sort"
+msgstr "Sắp xếp"
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148804\n"
-"121\n"
+"12030000.xhp\n"
+"par_id3155922\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
+msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sắp xếp những hàng được chọn tùy theo các điều kiện bạn ghi rõ.</ahelp></variable> $[officename] tự động nhận ra và lựa chọn các phạm vi cơ sở dữ liệu."
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150510\n"
-"122\n"
+"12030000.xhp\n"
+"par_id3147428\n"
+"4\n"
"help.text"
-msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
-msgstr "Dưới Grade (Lớp), nhập <item type=\"input\">1, 2, 3,</item> v.v., cái này sau cái kia. Một khi nhập một số lớp thì chương trình hiển thị cân nặng của đứa trẻ nặng nhất."
+msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
+msgstr "Bạn không thể sắp xếp dữ liệu nếu tùy chọn <link href=\"text/shared/01/02230000.xhp\" name=\"Ghi thay đổi\">Ghi thay đổi</link> đã được bật."
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3159141\n"
+"12030100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
-msgstr "<bookmark_value>hàm DMIN</bookmark_value><bookmark_value>giá trị tối thiểu trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tìm kiếm;giá trị tối thiểu trong cột</bookmark_value>"
+msgid "Sort Criteria"
+msgstr "Tiêu chuẩn Sắp xếp"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159141\n"
-"123\n"
+"12030100.xhp\n"
+"bm_id3152350\n"
"help.text"
-msgid "DMIN"
-msgstr "DMIN"
+msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+msgstr "<bookmark_value>sắp xếp; tiêu chuẩn sắp xếp cho phạm vi cơ sở dữ liệu</bookmark_value>"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154261\n"
-"124\n"
+"12030100.xhp\n"
+"hd_id3152350\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">Hàm DMIN trả về nội dung tối thiểu của một ô (trường) trong một cơ sở dữ liệu mà tương ứng với tiêu chuẩn tìm kiếm đã ghi rõ.</ahelp>"
+msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Tiêu chuẩn Sắp xếp\">Tiêu chuẩn Sắp xếp</link>"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3147238\n"
-"125\n"
+"12030100.xhp\n"
+"par_id3151385\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Hãy ghi rõ những tùy chọn sắp xếp cho phạm vi đã chọn.</ahelp>"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148479\n"
-"126\n"
+"12030100.xhp\n"
+"par_id3152462\n"
+"24\n"
"help.text"
-msgid "DMIN(Database; DatabaseField; SearchCriteria)"
-msgstr "DMIN(Database; DatabaseField; SearchCriteria)"
+msgid "Ensure that you include any row and column titles in the selection."
+msgstr "Kiểm tra xem bạn đã bao gồm bất cứ tiêu đề hàng/cột trong vùng chọn."
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151050\n"
-"127\n"
+"12030100.xhp\n"
+"hd_id3147428\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Sort by"
+msgstr "Sắp xếp theo"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148925\n"
-"128\n"
+"12030100.xhp\n"
+"par_id3155854\n"
+"4\n"
"help.text"
-msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Để tìm khoảng cách trường hợp mà ngắn nhất cho các đứa trẻ trong mỗi lớp trong mẫu thí dụ trên (xin hãy cuộn lên), nhập công thức này vào ô B16:"
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149161\n"
-"129\n"
+"12030100.xhp\n"
+"hd_id3146121\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgid "Ascending"
+msgstr "Tăng dần"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148917\n"
-"130\n"
+"12030100.xhp\n"
+"par_id3148645\n"
+"6\n"
"help.text"
-msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
-msgstr "Trong hàng 14, dưới « Grade » (Lớp), nhập <item type=\"input\">1, 2, 3,</item> v.v., cái này sau cái kia. Kết quả là khoảng cách trường học mà ngắn nhất cho mỗi lớp."
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3154274\n"
+"12030100.xhp\n"
+"hd_id3155411\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>hàm DAVERAGE</bookmark_value><bookmark_value>số trung bình;trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tính;số trung bình trong cơ sở dữ liệu Calc</bookmark_value>"
+msgid "Descending"
+msgstr "Giảm dần"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154274\n"
-"131\n"
+"12030100.xhp\n"
+"par_id3151075\n"
+"8\n"
"help.text"
-msgid "DAVERAGE"
-msgstr "DAVERAGE"
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3166453\n"
-"132\n"
+"12030100.xhp\n"
+"hd_id3154492\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">Hàm DAVERAGE trả về trị trung bình của giá trị của tất cả các ô (trường) nằm trong tất cả các hàng (bản ghi cơ sở dữ liệu) thỏa các tiêu chuẩn tìm kiếm đã xác định.</ahelp>"
+msgid "Then by"
+msgstr "Rồi theo"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3146955\n"
-"133\n"
+"12030100.xhp\n"
+"par_id3156283\n"
+"10\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Select the column that you want to use as the secondary sort key."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150710\n"
-"134\n"
+"12030100.xhp\n"
+"hd_id3149413\n"
+"11\n"
"help.text"
-msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
-msgstr "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgid "Ascending"
+msgstr "Tăng dần"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3152943\n"
-"135\n"
+"12030100.xhp\n"
+"par_id3154018\n"
+"12\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149104\n"
-"136\n"
+"12030100.xhp\n"
+"hd_id3146972\n"
+"13\n"
"help.text"
-msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Để tìm cân nặng trung bình của tất cả các đứa trẻ cùng tuổi trong mẫu thí dụ trên (xin hãy cuộn lên) thì nhập công thức này vào ô B16:"
+msgid "Descending"
+msgstr "Giảm dần"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153688\n"
-"137\n"
+"12030100.xhp\n"
+"par_id3145640\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155587\n"
-"138\n"
+"12030100.xhp\n"
+"hd_id3150300\n"
+"21\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
-msgstr "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item> v.v., cái này sau cái kia. Kết quả là cân nặng trung bình của tất cả các đứa trẻ cùng tuổi."
+msgid "Sort Ascending/Descending"
+msgstr "Sắp tăng/giảm dần"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3159269\n"
+"12030100.xhp\n"
+"par_id3158212\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>hàm DPRODUCT</bookmark_value><bookmark_value>phép nhân;các nội dung ô trong cơ sở dữ liệu Calc</bookmark_value>"
+msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159269\n"
-"139\n"
+"12030100.xhp\n"
+"par_id3159236\n"
+"25\n"
"help.text"
-msgid "DPRODUCT"
-msgstr "DPRODUCT"
+msgid "Icons on the <emph>Standard</emph> toolbar"
+msgstr "Biểu tượng trên thanh công cụ <emph>Chuẩn</emph>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152879\n"
-"140\n"
+"12030200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">Hàm DPRODUCT thì nhân tất cả các ô của một phạm vi dữ liệu trong đó nội dung ô tương ứng với tiêu chuẩn tìm kiếm.</ahelp>"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149966\n"
-"141\n"
+"12030200.xhp\n"
+"bm_id3147228\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+msgstr "<bookmark_value>sắp xếp; các tùy chọn về phạm vi cơ sở dữ liệu</bookmark_value><bookmark_value>sắp xếp;ngôn ngữ Châu Á</bookmark_value><bookmark_value>ngôn ngữ Châu Á;sắp xếp</bookmark_value><bookmark_value>các quy tắc sắp xếp sổ điện thoại</bookmark_value><bookmark_value>thuật toán sắp xếp tự nhiên</bookmark_value>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154854\n"
-"142\n"
+"12030200.xhp\n"
+"hd_id3147228\n"
+"1\n"
"help.text"
-msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
-msgstr "DPRODUCT(Database; DatabaseField; SearchCriteria)"
+msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149802\n"
-"143\n"
+"12030200.xhp\n"
+"par_id3153770\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\">Đặt thêm tùy chọn sắp xếp.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148986\n"
-"144\n"
+"12030200.xhp\n"
+"hd_id3146976\n"
+"3\n"
"help.text"
-msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
-msgstr "Đối với mẫu thí dụ tiệc sinh nhật trên (xin hãy cuộn lên), không thể áp dụng hàm này một cách có ích."
+msgid "Case Sensitivity"
+msgstr "Phân biệt chữ hoa/thường"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3148462\n"
+"12030200.xhp\n"
+"par_id3153091\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
-msgstr "<bookmark_value>hàm STDEV</bookmark_value><bookmark_value>độ lệch chuẩn trong thống kê;dựa vào một mẫu phân bố</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\">Sắp xếp trước tiên theo chữ hoa, sau đó thì theo chữ thường. Đối với các ngôn ngữ Châu Á dùng chữ viết ghi ý, chương trình áp dụng các quy tắc đặc biệt.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3148462\n"
-"145\n"
+"12030200.xhp\n"
+"par_idN10637\n"
"help.text"
-msgid "DSTDEV"
-msgstr "DSTDEV"
+msgid "Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
+msgstr "Ghi chú về các ngôn ngữ Châu Á dùng chữ viết ghi ý: bật tùy chọn <emph>Phân biệt chữ hoa/thường</emph> để áp dụng chức năng đối chiếu đa cấp. Đối chiếu đa cấp thì các mục nhập trước tiên được so sánh theo dạng nguyên thuỷ, bỏ qua chữ hoa/thường hay dấu phụ. Một khi tìm các mục ước tính là trung thì phân biệt theo dấu phụ (so sánh cấp thứ hai). Vẫn còn ước tính là trùng thì phân biệt theo chữ hoa/thường, độ rộng ký tự và khác biệt tiếng Nhật Kana (so sánh cấp thứ ba)."
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154605\n"
-"146\n"
+"12030200.xhp\n"
+"hd_id3155856\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
-msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">Hàm DSTDEV tính độ lệch chuẩn của một dân số dựa vào một mẫu, dùng những số trong một cột cơ sở dữ liệu tương ứng với các điều kiện đã cho.</ahelp> Các bản ghi được xem như là một mẫu dữ liệu. Nghĩa là những đứa trẻ trong ví dụ đại diện cho một mặt cắt của tất cả các đứa trẻ. Lưu ý rằng không thể thu được một kết quả đại diện từ một mẫu nhỏ hơn một nghìn."
+msgid "Range contains column/row labels"
+msgstr "Phạm vi chứa nhãn cột/hàng"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149427\n"
-"147\n"
+"12030200.xhp\n"
+"par_id3154014\n"
+"6\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Bỏ sót hàng đầu hay cột đầu khỏi lựa chọn để sắp xếp.</ahelp> Thiết lập <emph>Hướng</emph> ở dưới hộp thoại thì xác định tên và chức năng của hộp chọn này."
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148661\n"
-"148\n"
+"12030200.xhp\n"
+"hd_id3147436\n"
+"7\n"
"help.text"
-msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
-msgstr "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgid "Include formats"
+msgstr "Bao gồm định dạng"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153945\n"
-"149\n"
+"12030200.xhp\n"
+"par_id3149377\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Bảo tồn định dạng hiện thời của ô bảng.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149934\n"
-"150\n"
+"12030200.xhp\n"
+"hd_id3147438\n"
"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
-msgstr "Để tìm độ lệch chuẩn của cân nặng của tất cả các đứa trẻ cùng tuổi trong mẫu thí dụ (xin hãy cuộn lên), nhập công thức này vào ô B16:"
+msgid "Enable natural sort"
+msgstr ""
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150630\n"
-"151\n"
+"12030200.xhp\n"
+"par_id3149378\n"
"help.text"
-msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
+msgstr ""
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153536\n"
-"152\n"
+"12030200.xhp\n"
+"hd_id3153878\n"
+"10\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
-msgstr "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item> v.v., cái này sau cái kia. Kết quả là độ lệch chuẩn của cân nặng của tất cả các đứa trẻ cùng tuổi này."
+msgid "Copy sort results to:"
+msgstr "Chép kết quả sắp xếp vào :"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3150429\n"
+"12030200.xhp\n"
+"par_id3156286\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
-msgstr "<bookmark_value>Hàm DSTDEVP </bookmark_value><bookmark_value>độ lệch chuẩn trong cơ sở dữ liệu;trên cơ sở dân số</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Sao chép danh sách đã sắp xếp vào phạm vi ô bạn ghi rõ.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150429\n"
-"153\n"
+"12030200.xhp\n"
+"hd_id3153418\n"
+"12\n"
"help.text"
-msgid "DSTDEVP"
-msgstr "DSTDEVP"
+msgid "Sort results"
+msgstr "Kết quả sắp xếp"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145598\n"
-"154\n"
+"12030200.xhp\n"
+"par_id3155602\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
-msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">Hàm DSTDEVP tính độ lệch chuẩn của một dân số dựa vào tất cả các ô của một phạm vi dữ liệu thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp> Các bản ghi trong ví dụ được xử lý như là toàn bộ dân số."
+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\">Hãy lựa chọn một <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\">phạm vi ô</link> trong đó bạn muốn hiển thị danh sách đã sắp xếp, hoặc nhập một phạm vi ô vào hộp nhập liệu.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145307\n"
-"155\n"
+"12030200.xhp\n"
+"hd_id3153707\n"
+"14\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Sort results"
+msgstr "Kết quả sắp xếp"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149484\n"
-"156\n"
+"12030200.xhp\n"
+"par_id3145642\n"
+"15\n"
"help.text"
-msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
-msgstr "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+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\">Nhập phạm vi ô trong đó bạn muốn hiển thị danh sách đã sắp xếp, hoặc chọn một phạm vi đặt tên trong danh sách.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153322\n"
-"157\n"
+"12030200.xhp\n"
+"hd_id3155445\n"
+"16\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Custom sort order"
+msgstr "Thứ tự sắp xếp riêng"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155431\n"
-"158\n"
+"12030200.xhp\n"
+"par_id3156385\n"
+"17\n"
"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
-msgstr "Để tìm độ lệch chuẩn của cân nặng cho tất cả các đứa trẻ cùng tuổi ở tiệc sinh nhật của Joe (xin hãy cuộn lên), nhập công thức này vào ô B16:"
+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\"> Nhấn vào đây, sau đó chọn thứ tự sắp xếp riêng đã muốn.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148411\n"
-"159\n"
+"12030200.xhp\n"
+"hd_id3154704\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "Custom sort order"
+msgstr "Thứ tự sắp xếp riêng"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3143271\n"
-"160\n"
+"12030200.xhp\n"
+"par_id3155962\n"
+"19\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
-msgstr "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item>, v.v., cái này sau cái kia. Kết quả là độ lệch chuẩn của cân nặng cho tất cả các trẻ con cùng tuổi cho ta đã kiểm tra cân nặng."
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3154794\n"
+"12030200.xhp\n"
+"hd_id3149257\n"
+"28\n"
"help.text"
-msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>hàm DSUM</bookmark_value><bookmark_value>tính;tổng trong cơ sở dữ liệu Calc</bookmark_value><bookmark_value>tổng;các ô trong cơ sở dữ liệu Calc</bookmark_value>"
+msgid "Language"
+msgstr "Ngôn ngữ"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154794\n"
-"161\n"
+"12030200.xhp\n"
+"hd_id3147004\n"
+"29\n"
"help.text"
-msgid "DSUM"
-msgstr "DSUM"
+msgid "Language"
+msgstr "Ngôn ngữ"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149591\n"
-"162\n"
+"12030200.xhp\n"
+"par_id3150787\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">Hàm DSUM trả về tổng của tất cả các ô trong một trường cơ sở dữ liệu nào đó trong tất cả các hàng (bản ghi) thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Hãy lựa chọn ngôn ngữ cho các quy tắc ngôn ngữ.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3146128\n"
-"163\n"
+"12030200.xhp\n"
+"hd_id3150344\n"
+"30\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150989\n"
-"164\n"
+"12030200.xhp\n"
+"par_id3155113\n"
+"33\n"
"help.text"
-msgid "DSUM(Database; DatabaseField; SearchCriteria)"
-msgstr "DSUM(Database; DatabaseField; SearchCriteria)"
+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\"> Hãy lựa chọn một tùy chọn sắp xếp cho ngôn ngữ đó.</ahelp> Chẳng hạn, bật tùy chọn « sổ điện thoại » cho tiếng Đức để bao gồm dấu hai chấm ở trên khi sắp xếp."
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159079\n"
-"165\n"
+"12030200.xhp\n"
+"hd_id3152580\n"
+"20\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Direction"
+msgstr "Hướng"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152766\n"
-"166\n"
+"12030200.xhp\n"
+"hd_id3154201\n"
+"22\n"
"help.text"
-msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
-msgstr "Để tìm biết chiều dài của tổ hợp các khoảng cách đi trường hợp của tất các đứa trẻ ở tiệc sinh nhật của Joe (xin hãy cuộn lên) thì nhập công thức này vào ô B16:"
+msgid "Top to Bottom (Sort Rows)"
+msgstr "Trên xuống dưới (sắp xếp cột)"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151312\n"
-"167\n"
+"12030200.xhp\n"
+"par_id3166430\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sắp xếp các hàng theo những giá trị trong các cột hoạt động của phạm vi đã chọn.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150596\n"
-"168\n"
+"12030200.xhp\n"
+"hd_id3145588\n"
+"24\n"
"help.text"
-msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
-msgstr "Nhập <item type=\"input\">2</item> vào hàng 14 dưới « Grade ». Vậy chương trình hiển thị tổng (1950) các khoảng cách đi trường học của tất cả các đứa trẻ học lớp 2."
+msgid "Left to Right (Sort Columns)"
+msgstr "Trái sang phải (sắp xếp cột)"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3155614\n"
+"12030200.xhp\n"
+"par_id3154370\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
-msgstr "<bookmark_value>hàm DVAR</bookmark_value><bookmark_value>phương sai;trên cơ sở mẫu đã lấy</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\">Sắp xếp các cột theo những giá trị trong các cột hoạt động của phạm vi đã chọn.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3155614\n"
-"170\n"
+"12030200.xhp\n"
+"hd_id3156290\n"
+"26\n"
"help.text"
-msgid "DVAR"
-msgstr "DVAR"
+msgid "Data area"
+msgstr "Vùng dữ liệu"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154418\n"
-"171\n"
+"12030200.xhp\n"
+"par_id3156446\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
-msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">Hàm DVAR trả về phương sai của tất cả các ô của một trường cơ sở dữ liệu trong tất cả các bản ghi thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp> Những bản ghi trong ví dụ được xử lý như là một mẫu dữ liệu. Không thể thu được một kết quả đại diện từ một dân số nhỏ hơn một nghìn."
+msgid "Displays the cell range that you want to sort."
+msgstr "Hiển thị phạm vi ô cần sắp xếp."
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154825\n"
-"172\n"
+"12040000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Filter"
+msgstr "Lọc"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156138\n"
-"173\n"
+"12040000.xhp\n"
+"hd_id3150767\n"
+"1\n"
"help.text"
-msgid "DVAR(Database; DatabaseField; SearchCriteria)"
-msgstr "DVAR(Database; DatabaseField; SearchCriteria)"
+msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Lọc\">Lọc</link>"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151257\n"
-"174\n"
+"12040000.xhp\n"
+"par_id3155131\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị các lệnh để lọc dữ liệu.</ahelp>"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153701\n"
-"175\n"
+"12040000.xhp\n"
+"par_id3146119\n"
+"7\n"
"help.text"
-msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Để tìm biết độ lệch của cân nặng của tất cả các đứa trẻ cùng tuổi trong mẫu thí dụ trên (xin hãy cuộn lên), nhập công thức này vào ô B16:"
+msgid "$[officename] automatically recognizes predefined database ranges."
+msgstr "$[officename] tự động nhận ra các phậm vi cơ sở dữ liệu đã xác định sẵn."
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153676\n"
-"176\n"
+"12040000.xhp\n"
+"par_id3153363\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "The following filtering options are available:"
+msgstr "Có sẵn những tùy chọn lọc theo đây:"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153798\n"
-"177\n"
+"12040000.xhp\n"
+"hd_id3153728\n"
+"4\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
-msgstr "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item> v.v., cái này sau cái kia. Bạn sẽ thấy kết quả là độ lệch của các giá trị cân nặng cho tất cả các đứa trẻ cùng tuổi này."
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Lọc chuẩn\">Lọc chuẩn</link>"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3153880\n"
+"12040000.xhp\n"
+"hd_id3159153\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
-msgstr "<bookmark_value>hàm DVARP</bookmark_value><bookmark_value>độphương sai;dựa vào dân số</bookmark_value>"
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Lọc cấp cao\">Lọc cấp cao</link>"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153880\n"
-"178\n"
+"12040100.xhp\n"
+"tit\n"
"help.text"
-msgid "DVARP"
-msgstr "DVARP"
+msgid "AutoFilter"
+msgstr "Tự động lọc"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155119\n"
-"179\n"
+"12040100.xhp\n"
+"hd_id3153541\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
-msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">Hàm DVARP tính phương sai của tất cả các giá trị ô trong một trường cơ sở dữ liệu trong tất cả các bản ghi thỏa các tiêu chuẩn tìm kiếm đã cho.</ahelp> Những bản ghi trong ví dụ được xử lý như là toàn bộ dân số."
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Tự động lọc\">Tự động lọc</link>"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145774\n"
-"180\n"
+"12040100.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Tự động lọc phạm vi ô đã chọn, và tạo các hộp liệt kê hàng đơn trong đó bạn có thể chọn những mục cần hiển thị.</ahelp>"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153776\n"
-"181\n"
+"12040100.xhp\n"
+"par_id3145171\n"
+"3\n"
"help.text"
-msgid "DVARP(Database; DatabaseField; SearchCriteria)"
-msgstr "DVARP(Database; DatabaseField; SearchCriteria)"
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Lọc mặc định\">Lọc mặc định</link>"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151110\n"
-"182\n"
+"12040201.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "More"
+msgstr "Nhiều"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147099\n"
-"183\n"
+"12040201.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
-msgstr "Để tìm phương sai của cân nặng của tất cả các đứa trẻ cùng tuổi ở tiệc sinh nhật của Joe (xin hãy cuộn lên), nhập công thức này vào ô B16:"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Nhiều\">Nhiều</link>"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147322\n"
-"184\n"
+"12040201.xhp\n"
+"par_id3159400\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Hiển thị thêm tùy chọn lọc.</ahelp></variable>"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146902\n"
-"185\n"
+"12040201.xhp\n"
+"hd_id3150791\n"
+"3\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
-msgstr "Trong hàng 14, dưới « Age » (Tuổi), nhập <item type=\"input\">7, 8, 9,</item>, v.v., cái này sau cái kia. Kết quả là phương sai của các giá trị cân nặng cho tất cả các đứa trẻ cùng tuổi này mà đến tiệc sinh nhật của Joe."
+msgid "Options"
+msgstr "Tùy chọn"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"tit\n"
+"12040201.xhp\n"
+"hd_id3154138\n"
+"5\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Gộp ô"
+msgid "Case sensitive"
+msgstr "Phân biệt chữ hoa/thường"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"hd_id3154765\n"
+"12040201.xhp\n"
+"par_id3147228\n"
+"6\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Gộp ô"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Phân biệt chữ hoa/thường khi lọc dữ liệu.</ahelp>"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3147406\n"
+"12040201.xhp\n"
+"hd_id3154908\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
-msgstr ""
+msgid "Range contains column labels"
+msgstr "Phạm vi chứa nhãn cột"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3154351\n"
+"12040201.xhp\n"
+"par_id3153768\n"
+"8\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
-msgstr ""
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Bao gồm các nhãn cột trong hàng đầu của một phạm vi ô.</ahelp>"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"tit\n"
+"12040201.xhp\n"
+"hd_id3155306\n"
+"9\n"
"help.text"
-msgid "Function Wizard"
-msgstr "Trợ lý Hàm"
+msgid "Copy results to"
+msgstr "Chép kết quả vào"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"bm_id3147426\n"
+"12040201.xhp\n"
+"par_id3154319\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
-msgstr "<bookmark_value>chèn hàm; Trợ lý Hàm</bookmark_value><bookmark_value>hàm;Trợ lý Hàm</bookmark_value><bookmark_value>Trợ lý; hàm</bookmark_value>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Bật tùy chọn này, rồi lựa chọn phạm vi ô trong đó bạn muốn hiển thị kết quả lọc.</ahelp> Bạn cũng có thể lựa chọn một phạm vi đặt tên trong danh sách."
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3147426\n"
-"1\n"
+"12040201.xhp\n"
+"hd_id3145272\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
-msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Hàm\">Trợ lý Hàm</link>"
+msgid "Regular expression"
+msgstr "Biểu thức chính quy"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3145271\n"
-"2\n"
+"12040201.xhp\n"
+"par_id3152576\n"
+"12\n"
"help.text"
-msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
-msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Mở <emph>Trợ lý Hàm</emph> để tạo các công thức bằng các chức năng tương tác.</ahelp></variable> Trước khi mở phần Trợ lý, bạn phải chọn một ô hoặc một phạm vi các ô cần thêm công thức."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Cho phép bạn sử dụng ký tự đại diện khi xác định bộ lọc.</ahelp> Để xem danh sách các biểu thức chính quy được $[officename] hỗ trợ, nhấn vào <link href=\"text/shared/01/02100001.xhp\" name=\"đây\">đây</link>."
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id8007446\n"
+"12040201.xhp\n"
+"par_id3149377\n"
+"33\n"
"help.text"
-msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
-msgstr "Bạn có thể tải toàn bộ đặc tả ODFF (Công thức Định dạng Tài liệu Mở) xuống địa chỉ Web của <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link>."
+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 "Bật tùy chọn <emph>Biểu thức chính quy</emph>, thì bạn có thể sử dụng biểu thức chính quy trong trường « Giá trị nếu hộp liêt kê « Điều kiện » được đặt thành « = » (EQUAL, bằng) hay « <> » (UNEQUAL, không bằng). Cũng vậy với những ô tương ứng bạn tham chiếu cho một bộ lọc cấp cao."
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159153\n"
-"60\n"
+"12040201.xhp\n"
+"hd_id3149958\n"
+"34\n"
"help.text"
-msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
-msgstr "Hộp thoại <emph>Trợ lý Hàm</emph> có 2 thẻ: <emph>Hàm</emph> được dùng để tạo công thức, và <emph>Cấu trúc</emph> để kiểm tra cách xây dựng công thức."
+msgid "No duplication"
+msgstr "Không nhân đôi"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154490\n"
-"3\n"
+"12040201.xhp\n"
+"par_id3153876\n"
+"35\n"
"help.text"
-msgid "Functions Tab"
-msgstr "Thẻ Hàm"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Loại trừ các hàng trùng trong danh sách dữ liệu đã lọc.</ahelp>"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149378\n"
-"5\n"
+"12040201.xhp\n"
+"hd_id3154018\n"
+"40\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Danh sách hàm theo phân loại\">Dánh sách hàm theo phân loại</link>"
+msgid "Keep filter criteria"
+msgstr "Giữ tiêu chuẩn lọc"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154730\n"
+"12040201.xhp\n"
+"par_id3149123\n"
+"41\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Bật tùy chọn <emph>Chép kết quả vào</emph>, sau đó ghi rõ phạm vi đích đến, trong đó bạn muốn hiển thị dữ liệu đã lọc. Bật tùy chọn này thì phạm vi đích đến còn lại được liên kết đến phạm vi nguồn. Trước tiên, bạn cần phải xác định phạm vi nguồn dưới mục trình đơn <emph>Dữ liệu > Xác định Phạm vi</emph> dưới dạng một phạm vi cơ sở dữ liệu.</ahelp> Sau đó, bạn có thể áp dụng lại bộ lọc vào bất cứ lúc sau nào : nhấn vào phạm vi nguồn, sau đó chọn lệnh <emph>Dữ liệu > Cập nhật Phạm vi</emph>."
+
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3149018\n"
"36\n"
"help.text"
-msgid "Category"
-msgstr "Loại"
+msgid "Data range"
+msgstr "Phạm vi dữ liệu"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153417\n"
+"12040201.xhp\n"
+"par_id3150042\n"
"37\n"
"help.text"
-msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
-msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Liệt kê tất cả các loại chứa các hàm khác nhau. Chọn một loại để xem các hàm chứa trong đó, được liệt kê trong danh sách bên dưới.</ahelp> Chọn « Tất cả » để xem tất cả các hàm có trong các loại, được liệt kê theo vần abc. Chọn « Dùng cuối » để liệt kê các hàm bạn vừa mới sử dụng trước đó. </variable>"
+msgid "Displays the cell range or the name of the cell range that you want to filter."
+msgstr "Hiển thị phạm vi ô hay tên của phạm vi ô cần lọc."
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150749\n"
-"6\n"
+"12040300.xhp\n"
+"tit\n"
"help.text"
-msgid "Function"
-msgstr "Hàm"
+msgid "Advanced Filter"
+msgstr "Lọc cấp cao"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155445\n"
-"7\n"
+"12040300.xhp\n"
+"hd_id3158394\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Hiển thị các hàm nằm trong loại được chọn. Bấm đúp vào một hàm để chọn nó.</ahelp> Bấm chuột 1 lần để hiển thị mô tả chức năng cho hàm."
+msgid "Advanced Filter"
+msgstr "Lọc cấp cao"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3159264\n"
-"8\n"
+"12040300.xhp\n"
+"par_id3156281\n"
+"2\n"
"help.text"
-msgid "Array"
-msgstr "Mảng"
+msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
+msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Xác định một bộ lọc cấp cao.</ahelp></variable>"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149566\n"
-"9\n"
+"12040300.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Chèn hàm được chọn vào trong phạm vi các ô dưới dạng một công thức mảng.</ahelp> Các công thức mảng hoạt động trên nhiều ô. Mỗi một ô trong mảng chứa công thức, không giống như chép lại công thức mà giống như một công thức chung được chia sẻ bởi tất cả các ô trong ma trận."
+msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155959\n"
-"61\n"
+"12040300.xhp\n"
+"hd_id3153771\n"
+"25\n"
"help.text"
-msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
-msgstr "Tuỳ chọn <emph>Mảng</emph> tương đương với khi bạn dùng <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter để nhập và xác nhận lại công thức trong bảng. Công thức chèn vào có dạng một công thức ma trận, biểu diễn bởi cặp ngoặc nhọn { }."
+msgid "Read filter criteria from"
+msgstr "Đọc tiêu chuẩn lọc từ"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3152993\n"
-"40\n"
+"12040300.xhp\n"
+"par_id3147426\n"
+"26\n"
"help.text"
-msgid "The maximum size of an array range is 128 by 128 cells."
-msgstr "Kích thước tối đa của một phạm vi mảng là 128 × 128 ô."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Hãy lựa chọn phạm vi đặt tên hay nhập phạm vi ô chứa những tiêu chuẩn lọc bạn muốn sử dụng.</ahelp>"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150367\n"
-"41\n"
+"12040300.xhp\n"
+"hd_id3153188\n"
+"27\n"
"help.text"
-msgid "Argument Input Fields"
-msgstr "Các trường tham số"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Nhiều\">Nhiều</link>"
-#: 04060000.xhp
+#: 12040400.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3145587\n"
-"15\n"
+"12040400.xhp\n"
+"tit\n"
"help.text"
-msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
-msgstr "Khi bạn bấm đúp chuột vào một hàm, bên phải hộp thoại sẽ có thêm các trường tham số cho hàm đó. Để chọn một ô để dùng làm tham số cho hàm, hãy bấm trực tiếp lên ô hoặc kéo phạm vi cần dùng trong bảng khi giữ chuột. Bạn cũng có thể nhập trực tiếp các giá trị số hay tham chiếu tới ô hay phạm vi vào các trường tương ứng trong hộp thoại. Khi nhập <link href=\"text/scalc/01/04060102.xhp\" name=\"nội dung ngày tháng\">nội dung ngày tháng</link>, hãy chú ý là bạn phải chọn đúng định dạng ngày tháng mà mình cần. Nhấn OK để chèn kết quả vào trong bảng tính."
+msgid "Remove Filter"
+msgstr "Bỏ lọc"
-#: 04060000.xhp
+#: 12040400.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3149408\n"
-"18\n"
+"12040400.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "Function Result"
-msgstr "Kết quả hàm"
+msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Bỏ lọc\">Bỏ lọc</link>"
-#: 04060000.xhp
+#: 12040400.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155809\n"
-"19\n"
+"12040400.xhp\n"
+"par_id3154760\n"
+"2\n"
"help.text"
-msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
-msgstr "Ngay sau khi bạn nhập các tham số cho hàm, kết quả của công thức sẽ được tính. Ô xem trước này báo cho bạn biết kết quả có được khi thực hiện công thức với các tham số đã cho. Nếu các tham số bị lỗi, ô này sẽ hiển thị <link href=\"text/scalc/05/02140000.xhp\" name=\"mã lỗi\">mã lỗi</link> tương ứng."
+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\">Gỡ bỏ bộ lọc khỏi phạm vi ô được chọn. Để hiệu lực chức năng này, hãy nhấn vào trong vùng ô cho đó bộ lọc đã được áp dụng.</ahelp>"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3148700\n"
-"23\n"
+"12040500.xhp\n"
+"tit\n"
"help.text"
-msgid "The required arguments are indicated by names in bold print."
-msgstr "Tên của các tham số cần phải có sẽ được in đậm."
+msgid "Hide AutoFilter"
+msgstr "Ẩn lọc tự động"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3153064\n"
-"22\n"
+"12040500.xhp\n"
+"bm_id3150276\n"
"help.text"
-msgid "f(x) (depending on the selected function)"
-msgstr "f(x) (tuỳ thuộc vào hàm được chọn)"
+msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+msgstr "<bookmark_value>phạm vi cơ sở dữ liệu; ẩn lọc tự động</bookmark_value>"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3157980\n"
-"24\n"
+"12040500.xhp\n"
+"hd_id3150276\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Cho phép bạn mở một <emph>Trợ lý Hàm</emph> cấp thấp hơn để lồng một hàm khác vào hàm đang tạo, thay vì một giá trị hay một tham chiếu.</ahelp>"
+msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Ẩn lọc tự động\">Ẩn lọc tự động</link>"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3145076\n"
-"25\n"
+"12040500.xhp\n"
+"par_id3156326\n"
+"2\n"
"help.text"
-msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
-msgstr "Tham số/Đối số/Tham chiếu ô (tuỳ thuộc vào hàm được chọn)"
+msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Ẩn các nút lọc tự động trong phạm vi ô đã chọn.</ahelp>"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159097\n"
-"26\n"
+"12050000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">Số trường văn bản được hiển thị sẽ tùy thuộc vào hàm đang chọn. Nhập các tham số theo cách trực tiếp vào trường tham số, hoặc bấm chuột vào một ô trong bảng.</ahelp>"
+msgid "Subtotals"
+msgstr "Tổng phụ"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154957\n"
-"51\n"
+"12050000.xhp\n"
+"hd_id3153822\n"
+"1\n"
"help.text"
-msgid "Result"
-msgstr "Kết quả"
+msgid "Subtotals"
+msgstr "Tổng phụ"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3150211\n"
-"52\n"
+"12050000.xhp\n"
+"par_id3145119\n"
+"2\n"
"help.text"
-msgid "Displays the calculation result or an error message."
-msgstr "Hiển thị kết quả tính toán được, hoặc một thông báo lỗi."
+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\">Tính tổng phụ cho mỗi cột bạn lựa chọn.</ahelp></variable> $[officename] sử dụng hàm SUM (tổng) để tự động tính các giá trị tổng phụ và tổng số tổng quát trong một phạm vi đã nhãn. Bạn cũng có thể sử dụng các hàm khác để làm phép tính này. $[officename] tự động nhận ra một vùng cơ sở dữ liệu đã xác định khi bạn đặt con trỏ vào nó."
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3151304\n"
-"43\n"
+"12050000.xhp\n"
+"par_id3153896\n"
+"3\n"
"help.text"
-msgid "Formula"
-msgstr "Công thức"
+msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
+msgstr "Ví dụ, bạn có thể tạo một bản tóm tắt buôn bán cho một mã bưu điện nào đó dựa vào dữ liệu từ một cơ sở dữ liệu khách."
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149898\n"
-"44\n"
+"12050000.xhp\n"
+"hd_id3163708\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\">Hiển thị công thức đã tạo ra. Bạn có thể gõ trực tiếp hoặc dùng Trợ lý Hàm để tạo công thức.</ahelp>"
+msgid "Delete"
+msgstr "Xoá"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3153249\n"
-"45\n"
+"12050000.xhp\n"
+"par_id3154125\n"
+"5\n"
"help.text"
-msgid "Back"
-msgstr "Lùi"
+msgid "Deletes the subtotal rows in the selected area."
+msgstr "Xoá các hàng tổng phụ trong vùng đã chọn."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3152869\n"
-"53\n"
+"12050100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Chọn lùi dần các thành phần đang có trong công thức.</ahelp>"
+msgid "1st, 2nd, 3rd Group"
+msgstr "Nhóm thứ 1, 2, 3"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3146966\n"
-"56\n"
+"12050100.xhp\n"
+"hd_id3149784\n"
+"1\n"
"help.text"
-msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
-msgstr "Để chọn một hàm đơn thay vì một hàm phức bao gồm nhiều hàm bên trong, bấm đúp chuột lên hàm xuất hiện trong cửa sổ công thức."
+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=\"Nhóm thứ 1, 2, 3\">Nhóm thứ 1, 2, 3</link>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3155762\n"
-"54\n"
+"12050100.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "Next"
-msgstr "Tiếp"
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Hãy ghi rõ thiết lập cho đến ba nhóm tổng phụ. Mỗi thẻ có bố trí trùng.</ahelp>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149316\n"
-"55\n"
+"12050100.xhp\n"
+"par_id3148797\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Di chuyển tới thành phần kế tiếp bên trong công thức.</ahelp> Nút này cho phép bạn gán các hàm vào trong công thức. Nếu bạn chọn một hàm và bấm nút <emph>Kế </emph>, hàm được chọn sẽ được thêm vào trong cửa sổ công thức."
+msgid "To insert subtotal values into a table:"
+msgstr "Để chèn vào một bảng các giá trị tổng phụ :"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159262\n"
-"57\n"
+"12050100.xhp\n"
+"par_id3154908\n"
+"13\n"
"help.text"
-msgid "Double-click a function in the selection window to transfer it to the formula window."
-msgstr "Bấm đúp chuột lên một hàm trong cửa sổ chọn để chuyển hàm đó vào trong cửa sổ công thức."
+msgid "Ensure that the columns of the table have labels."
+msgstr "Kiểm tra xem mỗi cột của bảng vẫn còn có nhãn."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3148745\n"
-"58\n"
+"12050100.xhp\n"
+"par_id3153968\n"
+"4\n"
"help.text"
-msgid "Cancel"
-msgstr "Thôi"
+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 "Hãy lựa chọn bảng hay vùng bảng cho đó bạn muốn tính tổng phụ, sau đó chọn mục trình đơn <emph>Dữ liệu > Tổng phụ</emph>."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3147402\n"
-"59\n"
+"12050100.xhp\n"
+"par_id3161831\n"
+"5\n"
"help.text"
-msgid "Closes the dialog without implementing the formula."
-msgstr "Đóng hộp thoại mà không triển khai công thức."
+msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
+msgstr "Trong hộp <emph>Nhóm lại theo</emph>, lựa chọn cột vào đó bạn muốn thêm các tổng phụ."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150534\n"
-"32\n"
+"12050100.xhp\n"
+"par_id3153188\n"
+"6\n"
"help.text"
-msgid "OK"
-msgstr "OK"
+msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
+msgstr "Trong hộp <emph>Tính tổng phụ</emph>, đánh dấu trong hộp chọn cho mỗi cột chứa các giá trị cần tính tổng phụ."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153029\n"
-"33\n"
+"12050100.xhp\n"
+"par_id3152460\n"
+"14\n"
"help.text"
-msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
-msgstr "Kết thúc <emph>Trợ lý Hàm</emph>, và chuyển công thức đã tạo vào các ô được chọn."
+msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
+msgstr "Trong hộp <emph>Dùng hàm</emph>, lựa chọn hàm cần dùng để tính tổng phụ."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3156400\n"
-"34\n"
+"12050100.xhp\n"
+"par_id3154321\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Danh sách hàm theo phân loại\">Dánh sách hàm theo phân loại</link>"
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3147610\n"
-"47\n"
+"12050100.xhp\n"
+"hd_id3156441\n"
+"7\n"
"help.text"
-msgid "Structure tab"
-msgstr "Thẻ Cấu trúc"
+msgid "Group by"
+msgstr "Nhóm lại theo"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153122\n"
-"48\n"
+"12050100.xhp\n"
+"par_id3154013\n"
+"8\n"
"help.text"
-msgid "On this page, you can view the structure of the function."
-msgstr "Trong thẻ này, bạn có thể xem cấu trúc của hàm."
+msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_GROUP\">Lựa chọn cột cần dùng để điều khiển tiến trình tính tổng phụ. Nếu nội dung của cột đã chọn bị thay đổi, các tổng phụ được tự động tính lại.</ahelp>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149350\n"
-"4\n"
+"12050100.xhp\n"
+"hd_id3154943\n"
+"9\n"
"help.text"
-msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
-msgstr "Nếu bạn khởi động <emph>Trợ lý Hàm</emph> trong khi con trỏ ô được đặt trong một ô đã có một hàm từ trước, thì thẻ <emph>Cấu trúc</emph> sẽ được mở và biểu diễn các thành phần của công thức đang có."
+msgid "Calculate subtotals for"
+msgstr "Tính tổng phụ cho"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3149014\n"
-"49\n"
+"12050100.xhp\n"
+"par_id3147125\n"
+"10\n"
"help.text"
-msgid "Structure"
-msgstr "Cấu trúc"
+msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_COLS\">Lựa chọn (những) cột chứa các giá trị cần tính tổng phụ.</ahelp>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3150481\n"
-"50\n"
+"12050100.xhp\n"
+"hd_id3156283\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
-msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\">Biểu diễn cấu trúc cây của hàm hiện có.</ahelp> Bạn có thể ẩn hoặc hiện các tham số của hàm bằng cách bấm lên dấu công hoặc dấu trừ nằm trước tham số đó."
+msgid "Use function"
+msgstr "Dùng hàm"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3148886\n"
-"63\n"
+"12050100.xhp\n"
+"par_id3145647\n"
+"12\n"
"help.text"
-msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
-msgstr "Các dấu chấm màu xanh tương ứng với các tham số hợp lệ. Các chấm đỏ tương ứng với kiểu dữ liệu nhập vào không hợp lệ. Ví dụ, nếu bạn dùng hàm SUM nhưng lại cho tham số dạng văn bản thì tham số này sẽ được tô sáng bằng màu đỏ, vì hàm SUM chỉ cho phép ta nhập giá trị số."
+msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_FUNC\">Lưa chọn hàm toán học cần dùng để tính tổng phụ.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
+"12050200.xhp\n"
"tit\n"
"help.text"
-msgid "Group"
-msgstr "Nhóm lại"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3153088\n"
+"12050200.xhp\n"
+"bm_id3154758\n"
+"help.text"
+msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
+msgstr "<bookmark_value>tổng phụ; tùy chọn sắp xếp</bookmark_value>"
+
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3154758\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
+msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3153821\n"
+"12050200.xhp\n"
+"par_id3154124\n"
"2\n"
"help.text"
-msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
-msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Xác định phạm vi ô đã chọn dưới dạng một nhóm các hàng hay cột.</ahelp></variable>"
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Hãy ghi rõ thiết lập để tính và hiển thị tổng phụ.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3145069\n"
+"12050200.xhp\n"
+"hd_id3156422\n"
"3\n"
"help.text"
-msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
-msgstr "Khi bạn nhóm lại một phạm vi ô, một biểu tượng phác thảo xuất hiện trong lề bên cạnh nhóm đó. Để ẩn hay hiển thị nhóm, nhấn vào biểu tượng này. Để rã nhóm vùng chọn, chọn lệnh <emph>Dữ liệu > Phác thảo ></emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Rã nhóm\"><emph>Rã nhóm</emph></link>."
+msgid "Page break between groups"
+msgstr "Ngắt trang giữa các nhóm"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3125863\n"
+"12050200.xhp\n"
+"par_id3147317\n"
"4\n"
"help.text"
-msgid "Include"
-msgstr "Chứa"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Chèn một trang mới vào phía mỗi nhóm dữ liệu đã tính tổng phụ.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3150448\n"
+"12050200.xhp\n"
+"hd_id3146985\n"
+"5\n"
+"help.text"
+msgid "Case sensitive"
+msgstr "Phân biệt chữ hoa/thường"
+
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3153190\n"
"6\n"
"help.text"
-msgid "Rows"
-msgstr "Hàng"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Tính lại các tổng phụ khi bạn thay đổi chữ hoa/thường của một nhãn dữ liệu.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3153194\n"
+"12050200.xhp\n"
+"hd_id3151119\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Nhóm lại những hàng đã chọn.</ahelp>"
+msgid "Pre-sort area according to groups"
+msgstr "Sắp xếp sẵn vùng tùy theo nhóm"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3145786\n"
+"12050200.xhp\n"
+"par_id3149664\n"
"8\n"
"help.text"
-msgid "Columns"
-msgstr "Cột"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sắp xếp vùng bạn đã chọn trong hộp <emph>Nhóm lại theo</emph> của các thẻ Nhóm tùy theo những cột bạn đã chọn.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3146984\n"
+"12050200.xhp\n"
+"hd_id3153951\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Nhóm lại những cột đã chọn.</ahelp>"
+msgid "Sort"
+msgstr "Sắp xếp"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"tit\n"
+"12050200.xhp\n"
+"hd_id3145252\n"
+"11\n"
"help.text"
-msgid "Optimal Column Width"
-msgstr "Bề rộng cột tối ưu"
+msgid "Include formats"
+msgstr "Bao gồm định dạng"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"bm_id3155628\n"
+"12050200.xhp\n"
+"par_id3147125\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; bề rộng cột tối ưu</bookmark_value><bookmark_value>cột; bề rộng tối ưu</bookmark_value><bookmark_value>bề rộng cột tối ưu</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Cũng tính các thuộc tính định dạng trong khi sắp xếp.</ahelp>"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"12050200.xhp\n"
+"hd_id3155418\n"
+"13\n"
"help.text"
-msgid "Optimal Column Width"
-msgstr "Bề rộng cột tối ưu"
+msgid "Custom sort order"
+msgstr "Thứ tự sắp xếp riêng"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3145068\n"
-"2\n"
+"12050200.xhp\n"
+"par_id3149400\n"
+"14\n"
"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
-msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Xác định chiều rộng cột tối ưu cho những cột đã chọn.</ahelp></variable> Chiều rộng cột tối ưu thì phụ thuộc vào mục nhập dài nhất bên trong cột đó. Bạn có thể chọn trong những <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"đơn vị đo\">đơn vị đo</link> sẵn sàng."
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Theo một thứ tự sắp xếp riêng bạn đã xác định dưới mục trình đơn <emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > Danh sách Sắp xếp</emph>.</ahelp>"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150767\n"
-"3\n"
+"12050200.xhp\n"
+"hd_id3149121\n"
+"15\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "Ascending"
+msgstr "Tăng dần"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150449\n"
-"4\n"
+"12050200.xhp\n"
+"par_id3155068\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
-msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Xác định thêm khoảng cách giữa mục nhập dài nhất trong một cột, và các viền cột theo chiều dọc.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sắp xếp từ giá trị nhỏ nhất lên giá trị lớn nhất. Bạn có thể xác định các quy tắc sắp xếp dưới mục trình đơn <emph>Dữ liệu > Sắp xếp > Tùy chọn</emph>. Bạn cũng có thể xác định giá trị mặc định dưới <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>.</ahelp>"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3145785\n"
-"5\n"
+"12050200.xhp\n"
+"hd_id3155443\n"
+"17\n"
"help.text"
-msgid "Default value"
-msgstr "Giá trị mặc định"
+msgid "Descending"
+msgstr "Giảm dần"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3146120\n"
-"6\n"
+"12050200.xhp\n"
+"par_id3153766\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Xác định chiều rộng cột tối ưu để hiển thị nội dung hoàn toàn của cột đó.</ahelp> Khoảng cách bổ sung cho chiều rộng cột tối ưu được đặt sẵn thành 0,254 cm."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sắp xếp từ giá trị lớn nhất xuống giá trị nhỏ nhất. Bạn có thể xác định các quy tắc sắp xếp dưới mục trình đơn <emph>Dữ liệu > Sắp xếp > Tùy chọn</emph>. Bạn cũng có thể xác định giá trị mặc định dưới <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>.</ahelp>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
+"12060000.xhp\n"
"tit\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "Hàm toán học"
-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3147124\n"
-"help.text"
-msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
-msgstr "<bookmark_value>hàm toán họa</bookmark_value><bookmark_value>Trợ lý Hàm; toán học</bookmark_value><bookmark_value>hàm; hàm toán học</bookmark_value><bookmark_value>hàm lượng giác</bookmark_value>"
+msgid "Multiple Operations"
+msgstr "Đa thao tác"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147124\n"
+"12060000.xhp\n"
+"hd_id3153381\n"
"1\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "Hàm toán học"
+msgid "Multiple Operations"
+msgstr "Đa thao tác"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154943\n"
+"12060000.xhp\n"
+"par_id3154140\n"
"2\n"
"help.text"
-msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
-msgstr "<variable id=\"mathematiktext\">Phân loại này chứa các hàm <emph>Toán học</emph> của Calc.</variable> Để mở <emph>Trợ lý Hàm</emph>, chọn lệnh trình đơn <link href=\"text/scalc/01/04060000.xhp\" name=\"Chèn > Hàm\"><emph>Chèn > Hàm</emph></link>."
+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\" visibility=\"visible\">Áp dụng cùng một công thức cho các ô khác nhau, nhưng với các giá trị tham số khác nhau.</ahelp></variable>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3146944\n"
+"12060000.xhp\n"
+"par_id3152598\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
-msgstr "<bookmark_value>hàm ABS</bookmark_value><bookmark_value>giá trị tuyệt đối</bookmark_value><bookmark_value>giá trị;tuyệt đối</bookmark_value>"
+msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
+msgstr "Hộp <emph>Hàng</emph> hay <emph>Cột</emph> phải chứa một tham chiếu đến ô đầu tiên của phạm vi đã chọn."
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146944\n"
-"33\n"
+"12060000.xhp\n"
+"par_id3154011\n"
+"16\n"
"help.text"
-msgid "ABS"
-msgstr "ABS"
+msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
+msgstr "Nếu bạn xuất ra MS Excel một bảng tính chứa nhiều thao tác, vị trí của mỗi ô chứa một công thức phải được xác định đầy đủ tương đối với phạm vi dữ liệu."
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154546\n"
-"34\n"
+"12060000.xhp\n"
+"hd_id3156441\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABS\">Trả về giá trị tuyệt đối của một số.</ahelp>"
+msgid "Defaults"
+msgstr "Mặc định"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154843\n"
-"35\n"
+"12060000.xhp\n"
+"hd_id3154492\n"
+"6\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Formulas"
+msgstr "Công thức"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147475\n"
-"36\n"
+"12060000.xhp\n"
+"par_id3151073\n"
+"7\n"
"help.text"
-msgid "ABS(Number)"
-msgstr "ABS(Số)"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Hãy nhập tham chiếu ô cho mỗi ô chứa một công thức bạn muốn dùng trong phép đa thao tác.</ahelp>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148438\n"
-"37\n"
+"12060000.xhp\n"
+"hd_id3154729\n"
+"8\n"
"help.text"
-msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
-msgstr "<emph>Số</emph> là số có giá trị tuyệt đối cần tính. Giá trị tuyệt đối của một số là giá trị của nó, không có dấu +/-."
+msgid "Row"
+msgstr "Hàng"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155823\n"
-"38\n"
+"12060000.xhp\n"
+"par_id3148456\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Hãy nhập tham chiếu ô nhập liệu cần dùng làm biến cho các hàng trong bảng dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152787\n"
-"39\n"
+"12060000.xhp\n"
+"hd_id3150718\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
-msgstr "<item type=\"input\">=N(123)</item> trả về 123"
+msgid "Column"
+msgstr "Cột"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148752\n"
-"40\n"
+"12060000.xhp\n"
+"par_id3150327\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=ABS(12)</item> returns 12."
-msgstr "<item type=\"input\">=N(123)</item> trả về 123"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Nhập tham chiếu ô nhập liêu cần dùng làm biến cho các cột trong bảng dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id320139\n"
+"12070000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ABS(0)</item> returns 0."
-msgstr "<item type=\"input\">=N(FALSE)</item> trả về 0"
+msgid "Consolidate"
+msgstr "Kết hợp"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150896\n"
+"12070000.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
-msgstr "<bookmark_value>hàm COUNTBLANK</bookmark_value><bookmark_value>đếm;ô rỗng</bookmark_value><bookmark_value>ô rỗng;đếm</bookmark_value>"
+msgid "Consolidate"
+msgstr "Kết hợp"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150896\n"
-"42\n"
+"12070000.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "COUNTBLANK"
-msgstr "COUNTBLANK"
+msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
+msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Kết hợp dữ liệu từ một hay nhiều phạm vi ô độc lập, và tính một phạm vi mơi dùng hàm bạn ghi rõ.</ahelp></variable>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155260\n"
-"43\n"
+"12070000.xhp\n"
+"hd_id3150010\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Trả về tổng số các ô còn rỗng.</ahelp>"
+msgid "Function"
+msgstr "Hàm"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145144\n"
-"44\n"
+"12070000.xhp\n"
+"par_id3149377\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Lựa chọn hàm cần dùng để kết hợp dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153931\n"
-"45\n"
+"12070000.xhp\n"
+"hd_id3147127\n"
+"10\n"
"help.text"
-msgid "COUNTBLANK(Range)"
-msgstr "COUNTBLANK(Phạm_vi)"
+msgid "Consolidation ranges"
+msgstr "Phạm vi kết hợp"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149512\n"
-"46\n"
+"12070000.xhp\n"
+"par_id3151075\n"
+"11\n"
"help.text"
-msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
-msgstr "Trả về số ô còn rỗng trong phạm vi ô <emph>Phạm_vi</emph>."
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Hiển thị những phạm vi ô cần kết hợp.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146139\n"
-"47\n"
+"12070000.xhp\n"
+"hd_id3147397\n"
+"12\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Source data range"
+msgstr "Phạm vi dữ liệu nguồn"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148586\n"
-"48\n"
+"12070000.xhp\n"
+"par_id3153836\n"
+"13\n"
"help.text"
-msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
-msgstr "<item type=\"input\">=COUNTBLANK(A1:B2)</item> trả về 4 nếu cả ô A1, A2, B1, B2 đều còn rỗng."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Ghi rõ phạm vi ô cần kết hợp với các phạm vi ô được liệt kê trong hộp <emph>Phạm vi kết hợp</emph>. Lựa chọn một phạm vi ô trên một trang tính, sau đó nhấn nút <emph>Thêm</emph>. Bạn cũng có thể chọn tên của một ô đã xác định sẵn trong danh sách <emph>Phạm vi dữ liệu nguồn</emph>.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153114\n"
+"12070000.xhp\n"
+"hd_id3155768\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>ACOS function</bookmark_value>"
-msgstr "<bookmark_value>hàm ACOS</bookmark_value>"
+msgid "Copy results to"
+msgstr "Chép kết quả vào"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153114\n"
-"50\n"
+"12070000.xhp\n"
+"par_id3147341\n"
+"16\n"
"help.text"
-msgid "ACOS"
-msgstr "ACOS"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Hiển thị ô đầu tiên trong phạm vi sẽ hiển thị kết quả kết hợp.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145163\n"
-"51\n"
+"12070000.xhp\n"
+"hd_id3147345\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCCOS\">Trả về giá trị lượng giác cosin ngược của một số.</ahelp>"
+msgid "Add"
+msgstr "Thêm"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153565\n"
-"52\n"
+"12070000.xhp\n"
+"par_id3155335\n"
+"18\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Thêm phạm vi ô được ghi rõ trong hộp <emph>Phạm vi dữ liệu nguồn</emph> vào hộp <emph>Phạm vi kết hợp</emph>.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150020\n"
-"53\n"
+"12070000.xhp\n"
+"hd_id3148630\n"
+"19\n"
"help.text"
-msgid "ACOS(Number)"
-msgstr "ACOS(Số)"
+msgid "More >>"
+msgstr "Nhiều >>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159134\n"
-"54\n"
+"12070000.xhp\n"
+"par_id3159239\n"
+"20\n"
"help.text"
-msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
-msgstr "Hàm này trả về cosin lượng giác ngược của <emph>Số</emph>, tức là góc (theo radian) có cosin Số. Góc được trả về thì nằm giữa 0 và π."
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Hiển thị thêm <link href=\"text/scalc/01/12070100.xhp\" name=\"tùy chọn\">tùy chọn</link>.</ahelp>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id679647\n"
+"12070100.xhp\n"
+"tit\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
+msgid "Consolidate by"
+msgstr "Kết hợp theo"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149882\n"
-"55\n"
+"12070100.xhp\n"
+"hd_id3151210\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Consolidate by"
+msgstr "Kết hợp theo"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150128\n"
-"56\n"
+"12070100.xhp\n"
+"hd_id3125864\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
-msgstr "<item type=\"input\">=ACOS(-1)</item> trả về 3.14159265358979 (π radian)"
+msgid "Consolidate by"
+msgstr "Kết hợp theo"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8792382\n"
+"12070100.xhp\n"
+"par_id3154909\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
-msgstr "<item type=\"input\">=DEGREES(ACOS(0.5))</item> trả về 60. Cosin của 60 độ là 0,5."
+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 "Hãy dùng phần này nếu các phạm vi ô bạn muốn kết hợp vẫn còn chứa nhãn. Bạn chỉ cần phải bật tùy chọn này nếu các phạm vi kết hợp chứa các nhãn tương tự, và dữ liệu được sắp đặt khác nhau."
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145355\n"
+"12070100.xhp\n"
+"hd_id3153968\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>ACOSH function</bookmark_value>"
-msgstr "<bookmark_value>hàm ACOSH</bookmark_value>"
+msgid "Row labels"
+msgstr "Nhãn hàng"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145355\n"
-"60\n"
+"12070100.xhp\n"
+"par_id3150441\n"
+"5\n"
"help.text"
-msgid "ACOSH"
-msgstr "ACOSH"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Dùng các nhãn hàng để sắp đặt dữ liệu đã kết hợp.</ahelp>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157993\n"
-"61\n"
+"12070100.xhp\n"
+"hd_id3146976\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Trả về cosin hyperbol ngược của một số.</ahelp>"
+msgid "Column labels"
+msgstr "Nhãn cột"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145295\n"
-"62\n"
+"12070100.xhp\n"
+"par_id3155411\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Dùng các nhãn cột để sắp đặt dữ liệu đã kết hợp.</ahelp>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151017\n"
-"63\n"
+"12070100.xhp\n"
+"hd_id3153191\n"
+"12\n"
"help.text"
-msgid "ACOSH(Number)"
-msgstr "ACOSH(Số)"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149000\n"
-"64\n"
+"12070100.xhp\n"
+"hd_id3159154\n"
+"8\n"
"help.text"
-msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
-msgstr "Hàm này trả về cosin hyperbol ngược của <emph>Số</emph>, tức là số có cosin hyperbol Số."
+msgid "Link to source data"
+msgstr "Liên kết đến dữ liệu nguồn"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6393932\n"
+"12070100.xhp\n"
+"par_id3146986\n"
+"9\n"
"help.text"
-msgid "Number must be greater than or equal to 1."
-msgstr "Số phải lớn hơn hay bằng với 1."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Liên kết dữ liệu trong phạm vi kết hợp tới dữ liệu nguồn, và tự động cập nhật kết quả của tiến trình kết hợp khi dữ liệu nguồn bị thay đổi.</ahelp>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150566\n"
-"65\n"
+"12070100.xhp\n"
+"hd_id3163708\n"
+"10\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "More <<"
+msgstr "Nhiều <<"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145629\n"
-"66\n"
+"12070100.xhp\n"
+"par_id3151118\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "Hides the additional options."
+msgstr "Ẩn các tùy chọn bổ sung."
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id951567\n"
+"12080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
-msgstr "<item type=\"input\">=ACOSH(COSH(4))</item> trả về 4."
+msgid "Group and Outline"
+msgstr "Nhóm lại và Phác thảo"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3149027\n"
+"12080000.xhp\n"
+"bm_id3152350\n"
"help.text"
-msgid "<bookmark_value>ACOT function</bookmark_value>"
-msgstr "<bookmark_value>hàm ACOT</bookmark_value>"
+msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
+msgstr "<bookmark_value>trang tính; phác thảo</bookmark_value><bookmark_value>phác thảo; trang tính</bookmark_value><bookmark_value>ẩn; chi tiết về trang tính</bookmark_value><bookmark_value>hiện; chi tiết về trang tính</bookmark_value><bookmark_value>nhóm lại;các ô</bookmark_value>"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149027\n"
-"70\n"
+"12080000.xhp\n"
+"hd_id3152350\n"
+"1\n"
"help.text"
-msgid "ACOT"
-msgstr "ACOT"
+msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
+msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Nhóm lại và Phác thảo\">Nhóm lại và Phác thảo</link>"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155818\n"
-"71\n"
+"12080000.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCCOT\">Trả về cotang ngước (arccotang) của số đã cho.</ahelp>"
+msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
+msgstr "Bạn có thể tạo một phác thảo của dữ liệu, và nhóm lại các hàng và cột, để có khả năng co lại và giãn ra các nhóm bằng một cú nhấn chuột riêng lẻ."
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153225\n"
-"72\n"
+"12080000.xhp\n"
+"hd_id3147229\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158419\n"
-"73\n"
+"12080000.xhp\n"
+"hd_id3153188\n"
+"4\n"
"help.text"
-msgid "ACOT(Number)"
-msgstr "ACOT(Số)"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154948\n"
-"74\n"
+"12080100.xhp\n"
+"tit\n"
"help.text"
-msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
-msgstr "Hàm này trả về cotang lượng giác ngược của <emph>Số</emph>, tức là góc (theo radian) có cotang Số. Góc trả về nằm giữa 0 và π."
+msgid "Hide Details"
+msgstr "Ẩn chi tiết"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5834528\n"
+"12080100.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
+msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
+msgstr "<bookmark_value>trang tính; ẩn chi tiết</bookmark_value>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147538\n"
-"75\n"
+"12080100.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Ẩn chi tiết\">Ẩn chi tiết</link>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155375\n"
-"76\n"
+"12080100.xhp\n"
+"par_id3154515\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ACOT(1)</item> trả về 0,785398163397448 (π/4 radian)."
+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\">Ẩn chi tiết về hàng/cột đã nhóm lại mà chứa con trỏ. Để ẩn tất cả các hàng/cột đã nhóm lại, lựa chọn bảng phác thảo, sau đó chọn lệnh này.</ahelp>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8589434\n"
+"12080100.xhp\n"
+"par_id3153252\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "<item type=\"input\">=DEGREES(ACOT(1))</item> trả về 45. Tang của 45 độ là 1."
+msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data - Group and Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
+msgstr ""
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3148426\n"
+"12080200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ACOTH function</bookmark_value>"
-msgstr "<bookmark_value>hàm ACOTH</bookmark_value>"
+msgid "Show Details"
+msgstr "Hiện chi tiết"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148426\n"
-"80\n"
+"12080200.xhp\n"
+"bm_id3153561\n"
"help.text"
-msgid "ACOTH"
-msgstr "ACOTH"
+msgid "<bookmark_value>tables; showing details</bookmark_value>"
+msgstr "<bookmark_value>bảng; hiển thị chi tiết</bookmark_value>"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147478\n"
-"81\n"
+"12080200.xhp\n"
+"hd_id3153561\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Trả về cotang hyperbol ngược của số đã cho.</ahelp>"
+msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Hiện chi tiết\">Hiện chi tiết</link>"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152585\n"
-"82\n"
+"12080200.xhp\n"
+"par_id3153822\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Hiển thị chi tiết về hàng/cột đã nhóm lại mà chứa con trỏ. Để hiển thị tất cả các hàng/cột đã nhóm lại, lựa chọn bảng phác thảo, sau đó chọn lệnh này.</ahelp>"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147172\n"
-"83\n"
+"12080200.xhp\n"
+"par_id3155922\n"
+"3\n"
"help.text"
-msgid "ACOTH(Number)"
-msgstr "ACOTH(Số)"
+msgid "To hide a selected group, choose <emph>Data - Group and Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
+msgstr ""
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146155\n"
-"84\n"
+"12080200.xhp\n"
+"par_id6036561\n"
"help.text"
-msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
-msgstr "Hàm này trả về cotang hyperbol ngược của <emph>Số</emph>, tức là số có cotang hyperbol Số."
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgstr "<link href=\"text/scalc/01/12080700.xhp\">Câu lệnh <emph>Hiện chi tiết</emph> trong bảng DataPilot</link>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5818659\n"
+"12080300.xhp\n"
+"tit\n"
"help.text"
-msgid "An error results if Number is between -1 and 1 inclusive."
-msgstr "Gặp lỗi nếu Số nằm giữa -1 và +1 (kể cả hai số đó)."
+msgid "Group"
+msgstr "Nhóm lại"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3083452\n"
-"85\n"
+"12080300.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150608\n"
-"86\n"
+"12080300.xhp\n"
+"par_id3153821\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
-msgstr "<item type=\"input\">=ACOTH(1.1)</item> trả về cotang hyperbol ngước của 1.1, xấp xỉ 1.52226."
+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\">Xác định phạm vi ô đã chọn dưới dạng một nhóm các hàng hay cột.</ahelp></variable>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145084\n"
+"12080300.xhp\n"
+"par_id3145069\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>ASIN function</bookmark_value>"
-msgstr "<bookmark_value>hàm ASIN</bookmark_value>"
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr "Khi bạn nhóm lại một phạm vi ô, một biểu tượng phác thảo xuất hiện trong lề bên cạnh nhóm đó. Để ẩn hay hiển thị nhóm, nhấn vào biểu tượng này. Để rã nhóm vùng chọn, chọn lệnh <emph>Dữ liệu > Phác thảo ></emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Rã nhóm\"><emph>Rã nhóm</emph></link>."
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145084\n"
-"90\n"
+"12080300.xhp\n"
+"hd_id3125863\n"
+"4\n"
"help.text"
-msgid "ASIN"
-msgstr "ASIN"
+msgid "Include"
+msgstr "Chứa"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156296\n"
-"91\n"
+"12080300.xhp\n"
+"hd_id3150448\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCSIN\">Trả về sin lượng giác ngược của một số.</ahelp>"
+msgid "Rows"
+msgstr "Hàng"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149716\n"
-"92\n"
+"12080300.xhp\n"
+"par_id3153194\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Nhóm lại những hàng đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156305\n"
-"93\n"
+"12080300.xhp\n"
+"hd_id3145786\n"
+"8\n"
"help.text"
-msgid "ASIN(Number)"
-msgstr "ASIN(Số)"
+msgid "Columns"
+msgstr "Cột"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150964\n"
-"94\n"
+"12080300.xhp\n"
+"par_id3146984\n"
+"9\n"
"help.text"
-msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
-msgstr "Hàm này trả về sin lượng giác ngược của <emph>Số</emph>, tức là góc (theo radian) có sin là Số. Góc được trả về nằm giữa -π/2 và +π/2."
+msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Nhóm lại những cột đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id203863\n"
+"12080400.xhp\n"
+"tit\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
+msgid "Ungroup"
+msgstr "Rã nhóm"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149448\n"
-"95\n"
+"12080400.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156100\n"
-"96\n"
+"12080400.xhp\n"
+"par_id3151384\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
+msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Rã nhóm vùng chọn. Trong một nhóm lồng nhau, những hàng/cột được thêm cuối cùng sẽ bị gỡ bỏ khỏi nhóm.</ahelp></variable>"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6853846\n"
+"12080400.xhp\n"
+"hd_id3151210\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
-msgstr "<item type=\"input\">=ASIN(1)</item> trả về 1,5707963267949 (π/2 radian)."
+msgid "Deactivate for"
+msgstr "Tắt cho"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8772240\n"
+"12080400.xhp\n"
+"hd_id3156280\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
-msgstr "<item type=\"input\">=DEGREES(ASIN(0.5))</item> trả về 30. Sin của 30 độ là 0,5."
+msgid "Rows"
+msgstr "Hàng"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151266\n"
+"12080400.xhp\n"
+"par_id3125864\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>ASINH function</bookmark_value>"
-msgstr "<bookmark_value>hàm ASINH</bookmark_value>"
+msgid "Removes selected rows from a group."
+msgstr "Gỡ bỏ khỏi một nhóm những hàng đã chọn."
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151266\n"
-"100\n"
+"12080400.xhp\n"
+"hd_id3147230\n"
+"7\n"
"help.text"
-msgid "ASINH"
-msgstr "ASINH"
+msgid "Columns"
+msgstr "Cột"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147077\n"
-"101\n"
+"12080400.xhp\n"
+"par_id3154685\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Trả về sin hyperbol ngược của một số.</ahelp>"
+msgid "Removes selected columns from a group."
+msgstr "Gỡ bỏ khỏi một nhóm những cột đã chọn."
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150763\n"
-"102\n"
+"12080500.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "AutoOutline"
+msgstr "Tự động Phác thảo"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150882\n"
-"103\n"
+"12080500.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "ASINH(Number)"
-msgstr "ASINH(Số)"
+msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"Tự động Phác thảo\">Tự động Phác thảo</link>"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147621\n"
-"104\n"
+"12080500.xhp\n"
+"par_id3145069\n"
+"2\n"
"help.text"
-msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
-msgstr "Hàm này trả về sin hyperbol ngược của <emph>Số</emph>, tức là số có sin hyperbol Số."
+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\">Nếu phạm vi đã chọn chứa công thức hay tham chiếu, $[officename] tự động phác thảo vùng chọn.</ahelp>"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153212\n"
-"105\n"
+"12080500.xhp\n"
+"par_id3148798\n"
+"10\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "For example, consider the following table:"
+msgstr "Chẳng hạn, xem bảng theo đây:"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156120\n"
-"106\n"
+"12080500.xhp\n"
+"par_id3154123\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
-msgstr "<item type=\"input\">=ASINH(-90)</item> trả về xấp xỉ -5,1929877."
+msgid "January"
+msgstr "Tháng Giêng"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4808496\n"
+"12080500.xhp\n"
+"par_id3154011\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
-msgstr "<item type=\"input\">=ASINH(SINH(4))</item> trả về 4."
+msgid "February"
+msgstr "Tháng Hai"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155996\n"
+"12080500.xhp\n"
+"par_id3152460\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>ATAN function</bookmark_value>"
-msgstr "<bookmark_value>hàm ATAN</bookmark_value>"
+msgid "March"
+msgstr "Tháng Ba"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155996\n"
-"110\n"
+"12080500.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "ATAN"
-msgstr "ATAN"
+msgid "1st Quarter"
+msgstr "Quý 1"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149985\n"
-"111\n"
+"12080500.xhp\n"
+"par_id3155854\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCTAN\">Trả về tang lượng giác ngược của một số.</ahelp>"
+msgid "April"
+msgstr "Tháng Tư"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151294\n"
-"112\n"
+"12080500.xhp\n"
+"par_id3148575\n"
+"16\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "May"
+msgstr "Tháng Năm"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150261\n"
-"113\n"
+"12080500.xhp\n"
+"par_id3145271\n"
+"17\n"
"help.text"
-msgid "ATAN(Number)"
-msgstr "ATAN(Số)"
+msgid "June"
+msgstr "Tháng Sáu"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147267\n"
-"114\n"
+"12080500.xhp\n"
+"par_id3145648\n"
+"18\n"
"help.text"
-msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
-msgstr "Hàm này trả về giá trị lượng giác là tang ngược của <emph>Số</emph>, tức là góc (theo radian) có tang là Số. Góc được trả về nằm giữa -π/2 và +π/2."
+msgid "2nd Quarter"
+msgstr "Quý 2"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6293527\n"
+"12080500.xhp\n"
+"par_id3153876\n"
+"19\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Để trả về góc theo độ, dùng hàm DEGREES."
+msgid "100"
+msgstr "100"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154054\n"
-"115\n"
+"12080500.xhp\n"
+"par_id3145251\n"
+"20\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "120"
+msgstr "120"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143229\n"
-"116\n"
+"12080500.xhp\n"
+"par_id3149400\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ATAN(1)</item> trả về 0.785398163397448 (π/4 radian)."
+msgid "130"
+msgstr "130"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8746299\n"
+"12080500.xhp\n"
+"par_id3150328\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "<item type=\"input\">=DEGREES(ATAN(1))</item> trả về 45. Tang của 45 độ là 1."
+msgid "350"
+msgstr "350"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153983\n"
+"12080500.xhp\n"
+"par_id3155443\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>ATAN2 function</bookmark_value>"
-msgstr "<bookmark_value>hàm ATAN2</bookmark_value>"
+msgid "100"
+msgstr "100"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153983\n"
-"120\n"
+"12080500.xhp\n"
+"par_id3153713\n"
+"24\n"
"help.text"
-msgid "ATAN2"
-msgstr "ATAN2"
+msgid "100"
+msgstr "100"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154297\n"
-"121\n"
+"12080500.xhp\n"
+"par_id3156385\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Trả về tang lượng giác ngược của những toạ độ x và y đã ghi rõ.</ahelp>"
+msgid "200"
+msgstr "200"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149758\n"
-"122\n"
+"12080500.xhp\n"
+"par_id3145230\n"
+"26\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "400"
+msgstr "400"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156013\n"
-"123\n"
+"12080500.xhp\n"
+"par_id3147363\n"
+"27\n"
"help.text"
-msgid "ATAN2(NumberX; NumberY)"
-msgstr "ATAN2(SốX; SốY)"
+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 "Mỗi ô cho quý 1 và 2 chứa một công thức tổng ba ô bên trái. Nếu bạn áp dụng chức năng <emph>Tự động Phác thảo</emph>, bảng này được nhóm lại theo hai quý."
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151168\n"
-"124\n"
+"12080500.xhp\n"
+"par_id3146918\n"
+"9\n"
"help.text"
-msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr "<emph>SốX</emph> là giá trị của toạ độ x."
+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 "Để gỡ bỏ phác thảo, lựa chọn bảng, sau đó chọn mục trình đơn <link href=\"text/scalc/01/12080600.xhp\" name=\"Dữ liệu > Nhóm lại và Phác thảo > Bỏ\">Dữ liệu > Nhóm lại và Phác thảo > Bỏ</link>."
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152798\n"
-"125\n"
+"12080600.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>NumberY</emph> is the value of the y coordinate."
-msgstr "<emph>SốY</emph> là giá trị của toạ độ y."
+msgid "Remove"
+msgstr "Bỏ"
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5036164\n"
+"12080600.xhp\n"
+"hd_id3148947\n"
+"1\n"
"help.text"
-msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
-msgstr "ATAN2 trả về tang lượng giác ngược, tức là góc (theo radian) nằm giữa trục X và một đường thẳng chạy từ điểm SốX, SốY đến gốc. Góc được trả về nằm giữa -π và +π."
+msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Bỏ\">Bỏ</link>"
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3001800\n"
+"12080600.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Để trả về góc theo độ, hãy dùng hàm DEGREES."
+msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Gỡ bỏ phác thảo khỏi phạm vi ô đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145663\n"
-"126\n"
+"12080700.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Show Details (Pivot Table)"
+msgstr "Hiện chi tiết (DataPilot)"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154692\n"
-"127\n"
+"12080700.xhp\n"
+"hd_id3344523\n"
"help.text"
-msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ATAN2(20;20)</item> trả về 0,785398163397448 (π/4 radian)."
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
+msgstr "<link href=\"text/scalc/01/12080700.xhp\">Hiện chi tiết (DataPilot)</link>"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1477095\n"
+"12080700.xhp\n"
+"par_id871303\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> trả về 45. Tang của 45 độ là 1."
+msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn một trang tính chi tiết có thêm thông tin về ô DataPilot hiện thời. Bạn cũng có thể nhấn đôi vào một ô DataPilot để chèn trang tính chi tiết. Trang tính mới hiển thị một tập hợp con các hàng từ nguồn dữ liệu gốc mà tạo thành dữ liệu kết quả được hiển thị trong ô hiện tại.</ahelp>"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155398\n"
+"12080700.xhp\n"
+"par_id7132480\n"
"help.text"
-msgid "<bookmark_value>ATANH function</bookmark_value>"
-msgstr "<bookmark_value>hàm ATANH</bookmark_value>"
+msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
+msgstr "Mục bị ẩn không phải được tính; các hàng cho mục ẩn được bao gồm. Chức năng <emph>Hiện chi tiết</emph> chỉ sẵn sàng cho bảng DataPilot dựa vào phạm vi ô hay dữ liệu của cơ sở dữ liệu."
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155398\n"
-"130\n"
+"12090000.xhp\n"
+"tit\n"
"help.text"
-msgid "ATANH"
-msgstr "ATANH"
+msgid "Pivot Table"
+msgstr "Xẻ bảng"
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148829\n"
-"131\n"
+"12090000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARTANHYP\">Trả về tang hyperbol ngược cua một số.</ahelp>"
+msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
+msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Bảng ưu tiên\">Bảng ưu tiên</link>"
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146997\n"
-"132\n"
+"12090000.xhp\n"
+"par_id3153562\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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 "Một bảng DataPilot cung cấp một bản tóm tắt về rất nhiều dữ liệu. Vậy bạn có thể sắp đặt lại bảng DataPilot để xem các bản tóm tắt khác nhau của dữ liệu."
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149912\n"
-"133\n"
+"12090000.xhp\n"
+"hd_id3155923\n"
+"3\n"
"help.text"
-msgid "ATANH(Number)"
-msgstr "ATANH(Số)"
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Xoá\">Xoá</link>"
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150521\n"
-"134\n"
+"12090000.xhp\n"
+"par_idN105FB\n"
"help.text"
-msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
-msgstr "Hàm này trả về tang hyperbol ngược của <emph>Số</emph>, tức là số có tang hyperbol Số."
+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=\"Hộp thoại DataPilot\">Hộp thoại DataPilot</link>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9357280\n"
+"12090100.xhp\n"
+"tit\n"
"help.text"
-msgid "Number must obey the condition -1 < number < 1."
-msgstr "Số phải thoả điều kiện « -1 < số < 1 »."
+msgid "Select Source"
+msgstr "Chọn nguồn"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148450\n"
-"135\n"
+"12090100.xhp\n"
+"hd_id3153663\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Select Source"
+msgstr "Chọn nguồn"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145419\n"
-"136\n"
+"12090100.xhp\n"
+"par_id3145119\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+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\">Mở một hộp thoại trong đó bạn có thể lựa chọn nguồn cho bảng DataPilot, sau đó thì tạo bảng riêng.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153062\n"
+"12090100.xhp\n"
+"hd_id3154760\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>COS function</bookmark_value>"
-msgstr "<bookmark_value>hàm COS</bookmark_value>"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153062\n"
-"149\n"
+"12090100.xhp\n"
+"par_id3150543\n"
+"6\n"
"help.text"
-msgid "COS"
-msgstr "COS"
+msgid "Select a data source for the pivot table."
+msgstr "Lựa chọn một nguồn dữ liệu cho bảng DataPilot."
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148803\n"
-"150\n"
+"12090100.xhp\n"
+"hd_id3148799\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COS\">Trả về cosin của góc đã cho (theo radian).</ahelp>"
+msgid "Current Selection"
+msgstr "Vùng chọn hiện thời"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150779\n"
-"151\n"
+"12090100.xhp\n"
+"par_id3125865\n"
+"8\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Sử dụng những ô đã chọn làm nguồn dữ liệu cho bảng DataPilot.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154213\n"
-"152\n"
+"12090100.xhp\n"
+"par_id3150011\n"
+"13\n"
"help.text"
-msgid "COS(Number)"
-msgstr "COS(Số)"
+msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
+msgstr "Các cột dữ liệu trong bảng DataPilot sử dụng cùng một định dạng số với hàng dữ liệu thứ nhất trong vùng chọn hiện thời."
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154285\n"
-"153\n"
+"12090100.xhp\n"
+"hd_id3147348\n"
+"9\n"
"help.text"
-msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
-msgstr "Trả về cosin (lượng giác) của <emph>Số</emph>, góc theo radian."
+msgid "Data source registered in $[officename]"
+msgstr "Nguồn dữ liệu được đăng ký với $[officename]"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id831019\n"
+"12090100.xhp\n"
+"par_id3145271\n"
+"10\n"
"help.text"
-msgid "To return the cosine of an angle in degrees, use the RADIANS function."
-msgstr "Để trả về cosin của một góc theo độ, hãy dùng hàm RADIANS."
+msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">Sử dụng một bảng hay truy vấn trong một cơ sở dữ liệu được đăng ký với $[officename] làm nguồn dữ liệu cho bảng DataPilot.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153579\n"
-"154\n"
+"12090100.xhp\n"
+"hd_id3146119\n"
+"11\n"
"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
+msgid "External source/interface"
+msgstr "Nguồn/giao diện bên ngoài"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147240\n"
-"155\n"
+"12090100.xhp\n"
+"par_id3145647\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
-msgstr "<item type=\"input\">=COS(PI()/2)</item> trả về 0, cosin của π/2 radian."
+msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramData\">Mở hộp thoại <emph>Bảng Dữ liệu</emph>, trong đó bạn có thể chỉnh sửa dữ liệu của đồ thị.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147516\n"
-"156\n"
+"12090100.xhp\n"
+"par_idN10670\n"
"help.text"
-msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
-msgstr "<item type=\"input\">=COS(RADIANS(60))</item> trả về 0,5, cosin của 60 độ."
+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=\"Hộp thoại DataPilot\">Hộp thoại DataPilot</link>"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154277\n"
+"12090101.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>COSH function</bookmark_value>"
-msgstr "<bookmark_value>hàm COSH</bookmark_value>"
+msgid "Select Data Source"
+msgstr "Chọn nguồn dữ liệu"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154277\n"
-"159\n"
+"12090101.xhp\n"
+"hd_id3143268\n"
+"1\n"
"help.text"
-msgid "COSH"
-msgstr "COSH"
+msgid "Select Data Source"
+msgstr "Chọn nguồn dữ liệu"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146946\n"
-"160\n"
+"12090101.xhp\n"
+"par_id3148552\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Trả về cosin hyperbol của một số.</ahelp>"
+msgid "Select the database and the table or query containing the data that you want to use."
+msgstr "Lựa chọn cơ sở dữ liệu và bảng hay truy vấn chứa dữ liệu cần dùng."
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149792\n"
-"161\n"
+"12090101.xhp\n"
+"hd_id3154140\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166440\n"
-"162\n"
+"12090101.xhp\n"
+"par_id3125863\n"
+"4\n"
"help.text"
-msgid "COSH(Number)"
-msgstr "COSH(Số)"
+msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
+msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150710\n"
-"163\n"
+"12090101.xhp\n"
+"hd_id3151041\n"
+"5\n"
"help.text"
-msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
-msgstr "Trả về cosin hyperbol của <emph>Số</emph>."
+msgid "Database"
+msgstr "Cơ sở dữ liệu"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153234\n"
-"164\n"
+"12090101.xhp\n"
+"par_id3156424\n"
+"6\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Hãy lựa chọn cơ sở dữ liệu mà chứa nguồn dữ liệu cần dùng.</ahelp>"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154099\n"
-"165\n"
+"12090101.xhp\n"
+"hd_id3145364\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
-msgstr "<item type=\"input\">=COSH(0)</item> trả về 1, cosin hyperbol của 0."
+msgid "Data source"
+msgstr "Nguồn dữ liệu"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152888\n"
+"12090101.xhp\n"
+"par_id3149260\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>COT function</bookmark_value>"
-msgstr "<bookmark_value>hàm COT</bookmark_value>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Hãy lựa chọn nguồn dữ liệu bạn muốn dùng.</ahelp>"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152888\n"
-"169\n"
+"12090101.xhp\n"
+"hd_id3147428\n"
+"9\n"
"help.text"
-msgid "COT"
-msgstr "COT"
+msgid "Type"
+msgstr "Kiểu"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153679\n"
-"170\n"
+"12090101.xhp\n"
+"par_id3150010\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COT\">Trò chuyện cotang của góc đã cho (theo radian).</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Nhấn vào kiểu nguồn cho nguồn dữ liệu đã chọn.</ahelp> Bạn có thể chọn trong bốn kiểu nguồn: « Bảng », « Truy vấn », « SQL » hay « SQL sở hữu »."
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152943\n"
-"171\n"
+"12090101.xhp\n"
+"par_id3147348\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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=\"Hộp thoại DataPilot\">Hộp thoại DataPilot</link>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154856\n"
-"172\n"
+"12090102.xhp\n"
+"tit\n"
"help.text"
-msgid "COT(Number)"
-msgstr "COT(Số)"
+msgid "Pivot Table"
+msgstr "Xẻ bảng"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149969\n"
-"173\n"
+"12090102.xhp\n"
+"bm_id2306894\n"
"help.text"
-msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
-msgstr "Trả về cotang (lượng giác) của <emph>Số</emph>, góc theo radian."
+msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
+msgstr "<bookmark_value>hàm DataPilot;hiện chi tiết</bookmark_value><bookmark_value>hàm DataPilot;tìm thêm chi tiết</bookmark_value>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3444624\n"
+"12090102.xhp\n"
+"hd_id3149165\n"
+"1\n"
"help.text"
-msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
-msgstr "Để trả về cotang của một góc theo độ, hãy dùng hàm RADIANS."
+msgid "Pivot Table"
+msgstr "Xẻ bảng"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6814477\n"
+"12090102.xhp\n"
+"par_id3155922\n"
+"13\n"
"help.text"
-msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
-msgstr "Cotang của một góc tương đương với 1 chia cho tang của góc đó."
+msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataPilotExec\">Ghi rõ bố trí của bảng được DataPilot tạo.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149800\n"
-"174\n"
+"12090102.xhp\n"
+"par_id3148798\n"
+"34\n"
"help.text"
-msgid "Examples:"
-msgstr "Thí dụ :"
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
+msgstr "DataPilot hiển thị các trường dữ liệu dưới dạng các nút mà bạn có thể kéo và thả để định nghĩa bảng DataPilot."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148616\n"
-"175\n"
+"12090102.xhp\n"
+"hd_id3154908\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
-msgstr "<item type=\"input\">=COT(PI()/4)</item> trả về 1, cotang của π/4 radian."
+msgid "Layout"
+msgstr "Bố trí"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148986\n"
-"176\n"
+"12090102.xhp\n"
+"par_id3150768\n"
+"19\n"
"help.text"
-msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
-msgstr "<item type=\"input\">=COT(RADIANS(45))</item> trả về 1, cotang của 45 độ."
+msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
+msgstr "<ahelp hid=\"HID_SC_DPLAY_SELECT\">Để xác định bố trí của một bảng DataPilot, kéo và thả các nút trường dữ liệu vào vùng kiểu <emph>Trường Trang, Trường Hàng, Trường Cột</emph> và <emph>Trường Dữ liệu</emph>.</ahelp> Bạn cũng có thể sử dụng chức năng kéo và thả để sắp đặt lại các trường dữ liệu trên một bảng DataPilot."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154337\n"
+"12090102.xhp\n"
+"par_id3147229\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>COTH function</bookmark_value>"
-msgstr "<bookmark_value>hàm COTH</bookmark_value>"
+msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
+msgstr "$[officename] tự động thêm một phụ đề vào mỗi nút được kéo vào vùng <emph>Trường Dữ liệu</emph>. Phụ đề chứa tên của trường dữ liệu, cũng như công thức đã tạo dữ liệu đó."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154337\n"
-"178\n"
+"12090102.xhp\n"
+"par_id3145749\n"
+"21\n"
"help.text"
-msgid "COTH"
-msgstr "COTH"
+msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
+msgstr "Để thay đổi hàm được trường dữ liệu dùng, nhấn đôi vào một nút trong vùng <emph>Trường dữ liệu</emph> để mở hộp thoại <link href=\"text/scalc/01/12090105.xhp\" name=\"Trường dữ liệu\">Trường dữ liệu</link>. Bạn cũng có thể nhấn đôi vào nút trong vùng <emph>Trường hàng</emph> hay <emph>Trường cột</emph>."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149419\n"
-"179\n"
+"12090102.xhp\n"
+"hd_id3149260\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COTHYP\">Trả về cotang hyperbol của một số (góc) đã cho.</ahelp>"
+msgid "Remove"
+msgstr "Bỏ"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149242\n"
-"180\n"
+"12090102.xhp\n"
+"par_id3150010\n"
+"27\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Gỡ bỏ khỏi bố trí bảng trường dữ liệu đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143280\n"
-"181\n"
+"12090102.xhp\n"
+"hd_id3145273\n"
+"26\n"
"help.text"
-msgid "COTH(Number)"
-msgstr "COTH(Số)"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154799\n"
-"182\n"
+"12090102.xhp\n"
+"par_id3146120\n"
+"25\n"
"help.text"
-msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
-msgstr "Trả về cotang hyperbol của <emph>Số</emph>."
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Mở hộp thoại <link href=\"text/scalc/01/12090105.xhp\" name=\"Trường Dữ liệu\"><emph>Trường Dữ liệu</emph></link>, trong đó bạn có thể thay đổi hàm liên quan đến trường đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155422\n"
-"183\n"
+"12090102.xhp\n"
+"hd_id3154944\n"
+"22\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "More"
+msgstr "Nhiều"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144754\n"
-"184\n"
+"12090102.xhp\n"
+"par_id3145647\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
-msgstr "<item type=\"input\">=COTH(1)</item> trả về cotang hyperbol của 1, xấp xỉ 1.3130."
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Hiển thị hay ẩn thêm tùy chọn về xác định một bảng DataPilot.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id6110552\n"
+"12090102.xhp\n"
+"hd_id3151073\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>CSC function</bookmark_value>"
-msgstr "<bookmark_value>hàm ASC</bookmark_value>"
+msgid "Result"
+msgstr "Kết quả"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9523234\n"
-"149\n"
+"12090102.xhp\n"
+"par_id3155417\n"
+"3\n"
"help.text"
-msgid "CSC"
-msgstr ""
+msgid "Specify the settings for displaying the results of the pivot table."
+msgstr "Ghi rõ thiết lập để hiển thị kết quả của bảng DataPilot."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4896433\n"
-"150\n"
+"12090102.xhp\n"
+"hd_id0509200913025625\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
-msgstr ""
+msgid "Selection from"
+msgstr "Chọn từ"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3534032\n"
-"151\n"
+"12090102.xhp\n"
+"par_id0509200913025615\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn vùng mà chứa dữ liệu cho bảng datapilot hiện tại.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4571344\n"
-"152\n"
+"12090102.xhp\n"
+"hd_id3155603\n"
+"4\n"
"help.text"
-msgid "CSC(Number)"
-msgstr "COSH(Số)"
+msgid "Results to"
+msgstr "Kết quả tới"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9859164\n"
-"153\n"
+"12090102.xhp\n"
+"par_id3153838\n"
+"5\n"
"help.text"
-msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
-msgstr "Trả về cosin (lượng giác) của <emph>Số</emph>, góc theo radian."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Lựa chọn vùng trong đó bạn muốn hiển thị kết quả của bảng DataPilot.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3428494\n"
+"12090102.xhp\n"
+"par_id3155961\n"
+"6\n"
"help.text"
-msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
-msgstr "Để trả về cosin của một góc theo độ, hãy dùng hàm RADIANS."
+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 "Nếu vùng được chọn đã chứa dữ liệu, chức năng DataPilot sẽ ghi đè lên dữ liệu đó. Để ngăn cản mất dữ liệu đã có, hãy cho phép DataPilot tự động lựa chọn vùng để hiển thị kết quả."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id2577161\n"
-"154\n"
+"12090102.xhp\n"
+"hd_id3147364\n"
+"7\n"
"help.text"
-msgid "Examples"
-msgstr "Ví dụ"
+msgid "Ignore empty rows"
+msgstr "Bỏ qua hàng rỗng"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3736803\n"
-"155\n"
+"12090102.xhp\n"
+"par_id3154022\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
-msgstr ""
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Bỏ qua các trường trống trong nguồn dữ liệu.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6016818\n"
-"156\n"
+"12090102.xhp\n"
+"hd_id3155114\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
-msgstr "<item type=\"input\">=COS(RADIANS(60))</item> trả về 0,5, cosin của 60 độ."
+msgid "Identify categories"
+msgstr "Nhận ra phân loại"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id9288877\n"
+"12090102.xhp\n"
+"par_id3145257\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>CSCH function</bookmark_value>"
-msgstr "<bookmark_value>hàm ASC</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Tự động gán hàng không có nhãn cho phân loại cao thứ nhì như hàng trên.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id4325650\n"
-"159\n"
+"12090102.xhp\n"
+"hd_id3149207\n"
+"14\n"
"help.text"
-msgid "CSCH"
-msgstr ""
+msgid "Total columns"
+msgstr "Tổng số cột"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id579916\n"
-"160\n"
+"12090102.xhp\n"
+"par_id3166426\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Trả về cosin hyperbol của một số.</ahelp>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Tính và hiển thị tổng số tổng quát của phép tính cột.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id5336768\n"
-"161\n"
+"12090102.xhp\n"
+"hd_id3150364\n"
+"16\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Total rows"
+msgstr "Tổng số hàng"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3108851\n"
-"162\n"
+"12090102.xhp\n"
+"par_id3152583\n"
+"17\n"
"help.text"
-msgid "CSCH(Number)"
-msgstr "COSH(Số)"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Tính và hiển thị tổng số tổng quát của phép tính hàng.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1394188\n"
-"163\n"
+"12090102.xhp\n"
+"par_idN10897\n"
"help.text"
-msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
-msgstr "Trả về cosin hyperbol của <emph>Số</emph>."
+msgid "Add filter"
+msgstr "Thêm bộ lọc"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id6037477\n"
-"164\n"
+"12090102.xhp\n"
+"par_idN1089B\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm một nút <emph>Lọc</emph> vào các bảng DataPilot dựa vào dữ liệu của cơ sở dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5426085\n"
-"165\n"
+"12090102.xhp\n"
+"par_idN108B2\n"
"help.text"
-msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
-msgstr ""
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Lọc</emph>.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145314\n"
+"12090102.xhp\n"
+"par_idN108C9\n"
"help.text"
-msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
-msgstr "<bookmark_value>hàm DEGREES</bookmark_value><bookmark_value>chuyển đổi;radian sang độ</bookmark_value>"
+msgid "Enable drill to details"
+msgstr "Bật hiện chi tiết"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145314\n"
-"188\n"
+"12090102.xhp\n"
+"par_idN108CD\n"
"help.text"
-msgid "DEGREES"
-msgstr "DEGREES"
+msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này và nhấn đôi vào một nhãn mục trên bảng để hiển thị hay ẩn chi tiết về mục đó. Tắt tùy chọn này và nhấn đôi vào một ô bảng để chỉnh sửa nội dung của ô đó.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149939\n"
-"189\n"
+"12090102.xhp\n"
+"par_idN108DC\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DEG\">Chuyển đổi radian sang độ.</ahelp>"
+msgid "To examine details inside a pivot table"
+msgstr "Để thấy chi tiết bên trong một bảng DataPilot"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150623\n"
-"190\n"
+"12090102.xhp\n"
+"par_idN108E0\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Do one of the following:"
+msgstr "Làm một của những hành động này:"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145600\n"
-"191\n"
+"12090102.xhp\n"
+"par_idN108E6\n"
"help.text"
-msgid "DEGREES(Number)"
-msgstr "DEGREES(Số)"
+msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+msgstr "Hãy lựa chọn một phạm vi các ô, và chọn mục trình đơn <emph>Dữ liệu > Nhóm lại và Phác thảo > Hiện chi tiết</emph>."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149484\n"
-"192\n"
+"12090102.xhp\n"
+"par_idN108EE\n"
"help.text"
-msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
-msgstr "<emph>Số</emph> là góc theo radian cần chuyển đổi sang độ."
+msgid "Double-click a field in the table."
+msgstr "Nhấn đôi vào một trường trên bảng."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3669545\n"
+"12090102.xhp\n"
+"par_idN108F1\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
+msgstr "Nếu bạn nhấn đôi vào một trường có các trường kề nhau cùng cấp, hộp thoại <emph>Hiện chi tiết</emph> sẽ mở :"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3459578\n"
+"12090102.xhp\n"
+"par_idN10900\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
-msgstr "<item type=\"input\">=DEGREES(PI())</item> trả về 180 độ."
+msgid "Show Detail"
+msgstr "Hiện chi tiết"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3148698\n"
+"12090102.xhp\n"
+"par_idN10904\n"
"help.text"
-msgid "<bookmark_value>EXP function</bookmark_value>"
-msgstr "<bookmark_value>hàm EXP</bookmark_value>"
+msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
+msgstr "<ahelp hid=\".\">Hãy chọn trường về đó bạn muốn xem chi tiết.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148698\n"
-"198\n"
+"12090102.xhp\n"
+"par_id3149817\n"
+"35\n"
"help.text"
-msgid "EXP"
-msgstr "EXP"
+msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
+msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"Phím tắt DataPilot\">Phím tắt DataPilot</link>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150592\n"
-"199\n"
+"12090103.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_EXP\">Trả về e lũy thừa một số.</ahelp> Hằng số e có giá trị xấp xỉ 2.71828182845904."
+msgid "Filter"
+msgstr "Lọc"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150351\n"
-"200\n"
+"12090103.xhp\n"
+"hd_id3153970\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Filter"
+msgstr "Lọc"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146786\n"
-"201\n"
+"12090103.xhp\n"
+"par_id3150448\n"
+"2\n"
"help.text"
-msgid "EXP(Number)"
-msgstr "EXP(Số)"
+msgid "Set the filtering options for the data."
+msgstr "Đặt các tùy chọn lọc cho dữ liệu."
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155608\n"
-"202\n"
+"12090103.xhp\n"
+"hd_id3151043\n"
+"3\n"
"help.text"
-msgid "<emph>Number</emph> is the power to which e is to be raised."
-msgstr "<emph>Số</emph> là lũy thừa cần tăng e."
+msgid "Filter Criteria"
+msgstr "Tiêu chuẩn Lọc"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154418\n"
-"203\n"
+"12090103.xhp\n"
+"par_id3150440\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
+msgstr "Bạn có khả năng xác định một bộ lọc mặc định cho dữ liệu, bằng cách lọc (v.d.) các tên trường, dùng tổ hợp các đối số biểu thức lôgic."
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156340\n"
-"204\n"
+"12090103.xhp\n"
+"hd_id3159153\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
-msgstr "<item type=\"input\">=EXP(1)</item> trả về 2,71828182845904, hằng số toán học e theo độ chính xác của trình Calc."
+msgid "Operator"
+msgstr "Toán tử"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145781\n"
+"12090103.xhp\n"
+"par_id3153093\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm FACT</bookmark_value><bookmark_value>thừa số;số</bookmark_value>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Lựa chọn một toán tử lôgic cho bộ lọc này.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145781\n"
-"208\n"
+"12090103.xhp\n"
+"hd_id3152462\n"
+"7\n"
"help.text"
-msgid "FACT"
-msgstr "FACT"
+msgid "Field name"
+msgstr "Tên trường"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151109\n"
-"209\n"
+"12090103.xhp\n"
+"par_id3155306\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Trả về giai thừa của một số.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Hãy lựa chọn trường bạn muốn sử dụng trong bộ lọc này. Không có tên trường, thì hiển thị nhãn cột.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146902\n"
-"210\n"
+"12090103.xhp\n"
+"hd_id3148575\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Condition"
+msgstr "Điều kiện"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154661\n"
-"211\n"
+"12090103.xhp\n"
+"par_id3147394\n"
+"10\n"
"help.text"
-msgid "FACT(Number)"
-msgstr "FACT(Số)"
+msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Hãy lựa chọn một toán tử để so sánh các giá trị <emph>Tên trường</emph> và <emph>Giá trị</emph>.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152952\n"
-"212\n"
+"12090103.xhp\n"
+"par_id3144764\n"
+"11\n"
"help.text"
-msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
-msgstr "Trả về Số!, giai thừa của <emph>Số</emph>, được tính theo dạng « 1*2*3*4* ... * Số »."
+msgid "The following operators are available:"
+msgstr "Có sẵn những toán tử này:"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3834650\n"
+"12090103.xhp\n"
+"par_id3153415\n"
+"12\n"
"help.text"
-msgid "=FACT(0) returns 1 by definition."
-msgstr "=FACT(0) trả về 1 theo định nghĩa."
+msgid "<emph>Conditions:</emph>"
+msgstr "<emph>Điều kiện:</emph>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8429517\n"
+"12090103.xhp\n"
+"par_id3150324\n"
+"13\n"
"help.text"
-msgid "The factorial of a negative number returns the \"invalid argument\" error."
-msgstr "Giai thừa của một số âm thì trả về lỗi « đối số sai »."
+msgid "="
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154569\n"
-"213\n"
+"12090103.xhp\n"
+"par_id3153714\n"
+"14\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "equal"
+msgstr "bằng"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154476\n"
-"216\n"
+"12090103.xhp\n"
+"par_id3154254\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=FACT(3)</item> returns 6."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "<"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147525\n"
-"214\n"
+"12090103.xhp\n"
+"par_id3154703\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=FACT(0)</item> returns 1."
-msgstr "<item type=\"input\">=N(TRUE)</item> trả về 1"
+msgid "less than"
+msgstr "nhỏ hơn"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3159084\n"
+"12090103.xhp\n"
+"par_id3155335\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
-msgstr "<bookmark_value>hàm INT</bookmark_value><bookmark_value>số;làm tròn xuống số nguyên gần nhất</bookmark_value><bookmark_value>làm tròn;xuống số nguyên gần nhất</bookmark_value>"
+msgid ">"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159084\n"
-"218\n"
+"12090103.xhp\n"
+"par_id3147003\n"
+"18\n"
"help.text"
-msgid "INT"
-msgstr "INT"
+msgid "greater than"
+msgstr "lớn hơn"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158441\n"
-"219\n"
+"12090103.xhp\n"
+"par_id3153270\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GANZZAHL\">Làm tròn một số xuống số nguyên gần nhất.</ahelp>"
+msgid "<="
+msgstr "<="
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146132\n"
-"220\n"
+"12090103.xhp\n"
+"par_id3145257\n"
+"20\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "less than or equal to"
+msgstr "nhỏ hơn hay bằng"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156146\n"
-"221\n"
+"12090103.xhp\n"
+"par_id3145134\n"
+"21\n"
"help.text"
-msgid "INT(Number)"
-msgstr "INT(Số)"
+msgid ">="
+msgstr ">="
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154117\n"
-"222\n"
+"12090103.xhp\n"
+"par_id3151214\n"
+"22\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
-msgstr "Trả về <emph>Số</emph> được làm tròn xuống số nguyên gần nhất."
+msgid "greater than or equal to"
+msgstr "lớn hơn hay bằng"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id153508\n"
+"12090103.xhp\n"
+"par_id3150345\n"
+"23\n"
"help.text"
-msgid "Negative numbers round down to the integer below."
-msgstr "Mỗi số âm thì bị làm tròn xuống số nguyên gần nhất."
+msgid "<>"
+msgstr "<>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155118\n"
-"223\n"
+"12090103.xhp\n"
+"par_id3159101\n"
+"24\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "not equal to"
+msgstr "không bằng"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156267\n"
-"224\n"
+"12090103.xhp\n"
+"hd_id3150886\n"
+"25\n"
"help.text"
-msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
-msgstr "<item type=\"input\">=MINUTE(8.999)</item> trả về 58"
+msgid "Value"
+msgstr "Giá trị"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147323\n"
-"225\n"
+"12090103.xhp\n"
+"par_id3155506\n"
+"26\n"
"help.text"
-msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
-msgstr "<item type=\"input\">=N(123)</item> trả về 123"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Hãy lựa chọn giá trị cần so sánh với trường đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150938\n"
+"12090103.xhp\n"
+"hd_id3146980\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
-msgstr "<bookmark_value>hàm EVEN</bookmark_value><bookmark_value>số;làm tròn lên/xuống số nguyên chẵn</bookmark_value><bookmark_value>làm tròn;lên/xuống số nguyên chẵn</bookmark_value>"
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Nhiều>>\">Nhiều>></link>"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150938\n"
-"227\n"
+"12090104.xhp\n"
+"tit\n"
"help.text"
-msgid "EVEN"
-msgstr "EVEN"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149988\n"
-"228\n"
+"12090104.xhp\n"
+"hd_id3149119\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GERADE\">Làm tròn một số dương lên số nguyên chẵn gần nhất; làm tròn một số âm xuống số nguyên chẵn gần nhất.</ahelp>"
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148401\n"
-"229\n"
+"12090104.xhp\n"
+"par_id3147102\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Hiển thị hay ẩn thêm tùy chọn lọc.</ahelp></variable>"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150830\n"
-"230\n"
+"12090104.xhp\n"
+"hd_id3147008\n"
+"3\n"
"help.text"
-msgid "EVEN(Number)"
-msgstr "EVEN(Số)"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153350\n"
-"231\n"
+"12090104.xhp\n"
+"hd_id3153662\n"
+"5\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
-msgstr "Trả về <emph>Số</emph> được làm tròn lên số nguyên chẵn, về hướng khác với số 0."
+msgid "Case sensitive"
+msgstr "Phân biệt chữ hoa/thường"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155508\n"
-"232\n"
+"12090104.xhp\n"
+"par_id3145673\n"
+"6\n"
"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
+msgid "Distinguishes between uppercase and lowercase letters."
+msgstr "Phân biệt giữa chữ hoa và chữ thường."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154361\n"
-"233\n"
+"12090104.xhp\n"
+"hd_id3156327\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
-msgstr "<item type=\"input\">=GESTEP(5;1)</item> trả về 1."
+msgid "Regular Expression"
+msgstr "Biểu thức chính quy"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8477736\n"
+"12090104.xhp\n"
+"par_id3151245\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "Allows you to use wildcards in the filter definition."
+msgstr "Cho phép bạn sử dụng ký tự đại diện trong lời định nghĩa bộ lọc."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id159611\n"
+"12090104.xhp\n"
+"par_id3147264\n"
+"29\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
-msgstr "<item type=\"input\">=ISEVEN_ADD(5)</item> trả về 0."
+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 "Bật tùy chọn <emph>Biểu thức chính quy</emph> thì cũng có thể sử dụng toán tử bằng EQUAL (=) và không bằng NOT EQUAL (<>) trong phép so sánh. Cũng có thể sử dụng những hàm này: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP, HLOOKUP."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6097598\n"
+"12090104.xhp\n"
+"hd_id3153379\n"
+"30\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
-msgstr "<item type=\"input\">=ISEVEN_ADD(5)</item> trả về 0."
+msgid "Unique records only"
+msgstr "Chỉ xét các bản ghi đơn nhất"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3147356\n"
+"12090104.xhp\n"
+"par_id3154138\n"
+"31\n"
"help.text"
-msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
-msgstr "<bookmark_value>hàm GCD</bookmark_value><bookmark_value>ước số chung lớn nhất</bookmark_value>"
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr "Loại trừ hàng trùng trong danh sách dữ liệu đã lọc."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147356\n"
-"237\n"
+"12090104.xhp\n"
+"hd_id3156282\n"
+"32\n"
"help.text"
-msgid "GCD"
-msgstr "GCD"
+msgid "Data area"
+msgstr "Vùng dữ liệu"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152465\n"
-"238\n"
+"12090104.xhp\n"
+"par_id3150768\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GGT\">Trả về ước số chung nhỏ nhất của hai hay nhiều số nguyên.</ahelp>"
+msgid "Displays the name of the filtered data area in the table."
+msgstr "Hiển thị tên của vùng dữ liệu đã lọc trên bảng."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2769249\n"
+"12090104.xhp\n"
+"hd_id3156424\n"
+"34\n"
"help.text"
-msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
-msgstr "Ước số chung lớn nhất là số nguyên dương lớn nhất có thể chia vào mỗi số nguyên đã cho, không có phần dư."
+msgid "More<<"
+msgstr "Nhiều<<"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150643\n"
-"239\n"
+"12090104.xhp\n"
+"par_id3125864\n"
+"35\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Hides the additional options."
+msgstr "Ẩn các tùy chọn bổ sung."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154524\n"
-"240\n"
+"12090104.xhp\n"
+"par_id3154011\n"
"help.text"
-msgid "GCD(Integer1; Integer2; ...; Integer30)"
-msgstr "GCD(Số_nguyên1; Số_nguyên2; ...; Số_nguyên30)"
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Danh sách Biểu thức Chính quy\">Danh sách Biểu thức Chính quy</link>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149340\n"
-"241\n"
+"12090105.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
-msgstr "<emph>Số_nguyên1 đến 30</emph> là đến 30 số nguyên có ước số chung nhỏ nhất cần tính."
+msgid "Data field"
+msgstr "Trường dữ liệu"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147317\n"
-"242\n"
+"12090105.xhp\n"
+"bm_id7292397\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr "<bookmark_value>tính;Data Pilot</bookmark_value>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151285\n"
-"243\n"
+"12090105.xhp\n"
+"hd_id3150871\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
-msgstr "<item type=\"input\">=GCD(16;32;24)</item> trả về kết quả 8, vì 8 là số lớn nhất có thể chia 16, 24 và 32 mà không có phần dư."
+msgid "Data field"
+msgstr "Trường dữ liệu"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1604663\n"
+"12090105.xhp\n"
+"par_id3154124\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
-msgstr "<item type=\"input\">=GCD(B1:B3)</item> mà các ô B1, B2, B3 chứa <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> thì trả về 3."
+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 "Nội dung của hộp thoại này là khác đối với các trường dữ liệu khác nhau trong vùng <emph>Dữ liệu</emph>, và các trường ngày tháng khác nhay trong vùng <emph>Hàng</emph> hay <emph>Cột</emph> của hộp thoại <link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot\">DataPilot</link>."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151221\n"
+"12090105.xhp\n"
+"hd_id3152596\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
-msgstr "<bookmark_value>hàm GCD_ADD</bookmark_value>"
+msgid "Subtotals"
+msgstr "Tổng phụ"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151221\n"
-"677\n"
+"12090105.xhp\n"
+"par_id3151113\n"
+"3\n"
"help.text"
-msgid "GCD_ADD"
-msgstr "GCD_ADD"
+msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_PIVOTSUBT\">Hãy ghi rõ những tổng phụ cần tính.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153257\n"
-"678\n"
+"12090105.xhp\n"
+"hd_id3145366\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\">Kết quả là ước số chung lớn nhất của một chuỗi số.</ahelp>"
+msgid "None"
+msgstr "Không có"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147548\n"
-"679\n"
+"12090105.xhp\n"
+"par_id3152576\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Không tính tổng phụ.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156205\n"
-"680\n"
+"12090105.xhp\n"
+"hd_id3154012\n"
+"6\n"
"help.text"
-msgid "GCD_ADD(Number(s))"
-msgstr "GCD_ADD(Các_số)"
+msgid "Automatic"
+msgstr "Tự động"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145150\n"
-"681\n"
+"12090105.xhp\n"
+"par_id3155856\n"
+"7\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "<emph>Số</emph> là một chuỗi đến 30 số."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Tự động tính tổng phụ.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150239\n"
-"682\n"
+"12090105.xhp\n"
+"hd_id3155411\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "User-defined"
+msgstr "Tự xác định"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159192\n"
-"683\n"
+"12090105.xhp\n"
+"par_id3149581\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
-msgstr "<item type=\"input\">=GCD_ADD(5;15;25)</item> trả về 5."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Bật tùy chọn này, rồi nhấn vào kiểu tổng phụ cần tính, trong danh sách.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156048\n"
+"12090105.xhp\n"
+"hd_id3147124\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
-msgstr "<bookmark_value>hàm ISEVEN</bookmark_value><bookmark_value>số nguyên chẵn</bookmark_value>"
+msgid "Function"
+msgstr "Hàm"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156048\n"
-"245\n"
+"12090105.xhp\n"
+"par_id3154490\n"
+"11\n"
"help.text"
-msgid "ISEVEN"
-msgstr "ISEVEN"
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Nhấn vào kiểu tổng phụ cần tính. Tùy chọn này chỉ sẵn sàng nếu tùy chọn <emph>Tự xác định</emph> cũng được bật.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149169\n"
-"246\n"
+"12090105.xhp\n"
+"hd_id3154944\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTGERADE\">Trả về Đúng nếu giá trị là một số nguyên chẵn, hoặc SAI nếu có giá trị lẻ.</ahelp>"
+msgid "Show elements without data"
+msgstr "Hiện phần tử không có dữ liệu"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146928\n"
-"247\n"
+"12090105.xhp\n"
+"par_id3149403\n"
+"15\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Bao gồm các cột/hàng rỗng trong bảng kết quả.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151203\n"
-"248\n"
+"12090105.xhp\n"
+"hd_id3149122\n"
+"12\n"
"help.text"
-msgid "ISEVEN(Value)"
-msgstr "ISEVEN(Giá_trị)"
+msgid "Name:"
+msgstr "Tên:"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150491\n"
-"249\n"
+"12090105.xhp\n"
+"par_id3150749\n"
+"13\n"
"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "<emph>Giá trị</emph> là giá trị cần kiểm tra."
+msgid "Lists the name of the selected data field."
+msgstr "Liệt kê tên của trường dữ liệu thứ hai."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3445844\n"
+"12090105.xhp\n"
+"par_idN106EC\n"
"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
-msgstr "Nếu Giá_trị không phải là một số nguyên thì bỏ qua bất cứ chữ số phía sau dấu thập phân. Dấu (+/-) của giá trị này cũng bị bỏ qua."
+msgid "More"
+msgstr "Nhiều"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154136\n"
-"250\n"
+"12090105.xhp\n"
+"par_idN106F0\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở rộng hay thu hẹp hộp thoại. Nút <emph>Nhiều</emph> chỉ hiển thị cho trường dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163813\n"
-"251\n"
+"12090105.xhp\n"
+"par_idN106F3\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8378856\n"
+"12090105.xhp\n"
+"par_idN106F7\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
-msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/scalc/01/12090106.xhp\">Tùy chọn Trường dữ liệu</link>. Nút <emph>Tùy chọn</emph> chỉ hiển thị cho trường kiểu cột, hàng hay trang.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7154759\n"
+"12090105.xhp\n"
+"par_idN10708\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISEVEN_ADD(5)</item> trả về 0."
+msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+msgstr "Nếu hộp thoại được mở rộng bằng nút <emph>Thêm tùy chọn</emph>, thì nó hiển thị thêm những mục dưới đây:"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1912289\n"
+"12090105.xhp\n"
+"par_idN1070B\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISEVEN(-2.1)</item> trả về TRUE"
+msgid "Displayed value"
+msgstr "Giá trị hiển thị"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5627307\n"
+"12090105.xhp\n"
+"par_idN1070F\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
-msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
+msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
+msgstr "<ahelp hid=\".\">Cho mỗi trường dữ liệu, bạn có thể chọn cách hiển thị.</ahelp> Đối với một số cách hiển thị nào đó, bạn cũng có thể chọn thêm thông tin về trường cơ bản và mục cơ bản."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156034\n"
+"12090105.xhp\n"
+"par_idN10712\n"
"help.text"
-msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
-msgstr "<bookmark_value>hàm ISODD</bookmark_value><bookmark_value>số nguyên lẻ</bookmark_value>"
+msgid "Type"
+msgstr "Kiểu"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156034\n"
-"255\n"
+"12090105.xhp\n"
+"par_idN10716\n"
"help.text"
-msgid "ISODD"
-msgstr "ISODD"
+msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+msgstr "<ahelp hid=\"1495371266\">Chọn kiểu phép tính giá trị đã hiển thị cho trường dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155910\n"
-"256\n"
+"12090105.xhp\n"
+"par_idN10724\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Có giá trị lẻ thì trả về Đúng; có giá trị chẵn thì trả về Sai.</ahelp>"
+msgid "Type"
+msgstr "Kiểu"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151006\n"
-"257\n"
+"12090105.xhp\n"
+"par_idN1072A\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Displayed value"
+msgstr "Giá trị hiển thị"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151375\n"
-"258\n"
+"12090105.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "ISODD(value)"
-msgstr "ISODD(giá_trị)"
+msgid "Normal"
+msgstr "Chuẩn"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155139\n"
-"259\n"
+"12090105.xhp\n"
+"par_idN10737\n"
"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "<emph>Giá trị</emph> là giá trị cần kiểm tra."
+msgid "Results are shown unchanged"
+msgstr "Kết quả được hiển thị mà không thay đổi"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9027680\n"
+"12090105.xhp\n"
+"par_idN1073E\n"
"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
-msgstr "Giá_trị không phải số nguyên thì bỏ qua bất cứ chữ số nào phía sau dấu thập phân. Dấu (+/-) của Giá_trị cũng bị bỏ qua."
+msgid "Difference from"
+msgstr "Hiệu từ"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163723\n"
-"260\n"
+"12090105.xhp\n"
+"par_idN10744\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
+msgstr "Từ mỗi kết quả, giá trị tham chiếu của nó (xem dưới) bị trừ, và hiệu được hiển thị. Tổng bên ngoài trường cơ bản được hiển thị dạng kết quả rỗng."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155345\n"
-"261\n"
+"12090105.xhp\n"
+"par_idN10747\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD(33)</item> trả về TRUE"
+msgid "<emph>Named item</emph>"
+msgstr "<emph>Mục đặt tên</emph>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9392986\n"
+"12090105.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
-msgstr "<item type=\"input\">=ISREF(4)</item> trả về FALSE (SAI)."
+msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
+msgstr "Đặt tên cơ bản thì giá trị tham chiếu cho một tổ hợp các mục trường là kết quả mà mục trong trường cơ bản được thay thế bằng mục cơ bản đã ghi rõ."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5971251\n"
+"12090105.xhp\n"
+"par_idN1074F\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD(3.999)</item> trả về ĐÚNG"
+msgid "<emph>Previous item or Next item</emph>"
+msgstr "<emph>Mục <emph>Lùi</emph> hay <emph>Kế</emph></emph>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4136478\n"
+"12090105.xhp\n"
+"par_idN10754\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD(-3.1)</item> trả về TRUE"
+msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+msgstr "Nếu « mục lùi » hay « mục kế » được ghi rõ làm mục cơ bản, thì giá trị tham chiếu là kết quả cho vế thấy được kế tiếp của trường cơ bản, theo thứ tự sắp xếp của trường cơ bản."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145213\n"
+"12090105.xhp\n"
+"par_idN1075B\n"
"help.text"
-msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
-msgstr "<bookmark_value>hàm LCM</bookmark_value><bookmark_value>bội số chung nhỏ nhất</bookmark_value>"
+msgid "% Of"
+msgstr "% của"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145213\n"
-"265\n"
+"12090105.xhp\n"
+"par_idN10761\n"
"help.text"
-msgid "LCM"
-msgstr "LCM"
+msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr "Mỗi kết quả được chia cho giá trị tham chiếu của nó. Giá trị tham chiếu được xác định bằng cùng một cách với « Hiệu từ ». Tổng số bên ngoài trường cơ bản được hiển thị dạng kết quả rỗng."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146814\n"
-"266\n"
+"12090105.xhp\n"
+"par_idN1076A\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KGV\">Trả về bội số chung nhỏ nhất của một hay nhiều số nguyên.</ahelp>"
+msgid "% Difference from"
+msgstr "% hiệu từ"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148632\n"
-"267\n"
+"12090105.xhp\n"
+"par_idN10770\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr "Từ mỗi kết quả, giá trị tham chiếu của nó bị trừ, và hiệu được chia cho giá trị tham chiếu. Giá trị tham chiếu được xác định bằng cùng một cách với « Hiệu từ ». Tổng số bên ngoài trường cơ bản được hiển thị dạng kết quả rỗng."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147279\n"
-"268\n"
+"12090105.xhp\n"
+"par_idN10777\n"
"help.text"
-msgid "LCM(Integer1; Integer2; ...; Integer30)"
-msgstr "LCM(Số_nguyên1; Số_nguyên2; ...; Số_nguyên30)"
+msgid "Running total in"
+msgstr "Tổng số liền theo"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156348\n"
-"269\n"
+"12090105.xhp\n"
+"par_idN1077D\n"
"help.text"
-msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
-msgstr "<emph>Số_nguyên1 đến 30</emph> là đến 30 số nguyên có bội số chung nhỏ nhất cần tính."
+msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
+msgstr "Mỗi kết quả được cộng với tổng các kết quả của những mục đi trước trong trường cơ bản, theo thứ tự sắp xếp của trường cơ bản, và tổng số được hiển thị."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156431\n"
-"270\n"
+"12090105.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Results are always summed, even if a different summary function was used to get each result."
+msgstr "Các kết quả lúc nào cũng được cộng lại, thậm chí nếu một hàm cộng lại riêng được dùng để tính mỗi kết quả."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154914\n"
-"271\n"
+"12090105.xhp\n"
+"par_idN10787\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
-msgstr "Nếu bạn nhập ba số <item type=\"input\">512</item>;<item type=\"input\">1024</item> và <item type=\"input\">2000</item> vào ba hộp văn bản cho Số_nguyên1, 2 và 3, thì trả về 128000."
+msgid "% of row"
+msgstr "% hàng"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154230\n"
+"12090105.xhp\n"
+"par_idN1078D\n"
"help.text"
-msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
-msgstr "<bookmark_value>hàm LCM_ADD</bookmark_value>"
+msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
+msgstr "Mỗi kết quả được chia cho tổng số kết quả cho hàng đó trong bảng DataPilot. Có vài trường dữ liệu thì dùng tổng số cho trường dữ liệu của kết quả. Có tổng phụ với hàm công lại được chọn thủ công, thì vẫn còn dùng tổng số với hàm cộng lại của trường dữ liệu."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154230\n"
-"684\n"
+"12090105.xhp\n"
+"par_idN10794\n"
"help.text"
-msgid "LCM_ADD"
-msgstr "LCM_ADD"
+msgid "% of column"
+msgstr "% cột"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149036\n"
-"685\n"
+"12090105.xhp\n"
+"par_idN1079A\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\">Kết quả là bội số chung nhỏ nhất của một chuỗi số.</ahelp>"
+msgid "Same as \"% of row\", but the total for the result's column is used."
+msgstr "Cũng vậy, nhưng dùng tổng số cho cột của kết quả."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153132\n"
-"686\n"
+"12090105.xhp\n"
+"par_idN107A1\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "% of total"
+msgstr "% tổng số"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154395\n"
-"687\n"
+"12090105.xhp\n"
+"par_idN107A7\n"
"help.text"
-msgid "LCM_ADD(Number(s))"
-msgstr "LCM_ADD(Các_số)"
+msgid "Same as \"% of row\", but the grand total for the result's data field is used."
+msgstr "Cũng vậy, nhưng dùng tổng số tổng quát cho trường dữ liệu của kết quả."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147377\n"
-"688\n"
+"12090105.xhp\n"
+"par_idN107AE\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "<emph>Số</emph> là một chuỗi đến 30 số."
+msgid "Index"
+msgstr "Số mũ"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145122\n"
-"689\n"
+"12090105.xhp\n"
+"par_idN107B4\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
+msgstr "Những tổng số hàng và cột, và tổng số tổng quát, tùy theo những quy tắc trên, được dùng để tính biểu thức này:"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145135\n"
-"690\n"
+"12090105.xhp\n"
+"par_idN107B7\n"
"help.text"
-msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
-msgstr "<item type=\"input\">=LCM_ADD(5;15;25)</item> trả về 75."
+msgid "( original result * grand total ) / ( row total * column total )"
+msgstr "( kết quả gốc * tổng số tổng quát ) / ( tổng số hàng * tổng số cột )"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155802\n"
+"12090105.xhp\n"
+"par_idN107BA\n"
"help.text"
-msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
-msgstr "<bookmark_value>hàm COMBIN</bookmark_value><bookmark_value>số sự tổ hợp</bookmark_value>"
+msgid "Base field"
+msgstr "Trường cơ bản"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155802\n"
-"273\n"
+"12090105.xhp\n"
+"par_idN107BE\n"
"help.text"
-msgid "COMBIN"
-msgstr "COMBIN"
+msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr "<ahelp hid=\"1495371267\">Hãy lựa chọn trường từ đó giá trị tương ứng được lấy làm cơ bản cho phép tính.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156172\n"
-"274\n"
+"12090105.xhp\n"
+"par_idN107C1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Trả về số tổ hợp có thể làm cho thành phần không lặp lại.</ahelp>"
+msgid "Base item"
+msgstr "Mục cơ bản"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156193\n"
-"275\n"
+"12090105.xhp\n"
+"par_idN107C5\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Hãy lựa chọn mục của trường cơ bản từ đó giá trị tương ứng được lấy làm cơ bản cho phép tính.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150223\n"
-"276\n"
+"12090106.xhp\n"
+"tit\n"
"help.text"
-msgid "COMBIN(Count1; Count2)"
-msgstr "COMBIN(Đếm1; Đếm2)"
+msgid "Data Field Options"
+msgstr "Tùy chọn Trường Dữ liệu"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150313\n"
-"277\n"
+"12090106.xhp\n"
+"bm_id711386\n"
"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "<emph>Đếm1</emph> là số các mục trong tập hợp."
+msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
+msgstr "<bookmark_value>ẩn;trường dữ liệu khỏi phép tính trong Data Pilot</bookmark_value><bookmark_value>tùy chọn hiển thị trong Data Pilot</bookmark_value><bookmark_value>sắp xếp; tùy chọn trong Data Pilot</bookmark_value><bookmark_value>tùy chọn trường dữ liệu cho Data Pilot</bookmark_value>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153830\n"
-"278\n"
+"12090106.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "<emph>Đếm2</emph> là số mục cần chọn trong tập hợp."
+msgid "Data Field Options"
+msgstr "Tùy chọn Trường Dữ liệu"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6807458\n"
+"12090106.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
-msgstr "Hàm COMBIN trả về số thứ tự có thể sắp đặt những mục này. Ví dụ, nếu một tập hợp chứa 3 mục (A, B, C), thì bạn có thể đặt ba thứ tự khác nhau : AB, AC, BC."
+msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
+msgstr "Bạn có khả năng ghi rõ thêm tùy chọn cho trường kiểu cột, hàng và dữ liệu trang trong <link href=\"text/scalc/01/12090105.xhp\">DataPilot</link>."
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7414471\n"
+"12090106.xhp\n"
+"par_idN10557\n"
"help.text"
-msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
-msgstr "Hàm COMBIN thực hiện công thức: Đếm1!/(Đếm2!*(Đếm1-Đếm2)!)"
+msgid "Sort by"
+msgstr "Sắp xếp theo"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153171\n"
-"279\n"
+"12090106.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgstr "<ahelp hid=\"1495387653\">Hãy lựa chọn trường dữ liệu theo đó bạn muốn sắp xếp các cột hay hàng.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153517\n"
-"280\n"
+"12090106.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "Ascending"
+msgstr "Tăng dần"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150284\n"
+"12090106.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
-msgstr "<bookmark_value>hàm COMBINA</bookmark_value><bookmark_value>số tổ hợp có lặp lại</bookmark_value>"
+msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384580\">Sắp xếp các giá trị từ nhỏ nhất lên lớn nhất. Nếu trường được chọn là trường cho đó hộp thoại được mở, thì các mục được sắp xếp theo tên. Nếu một trường dữ liệu được chọn, thì các mục được sắp xếp theo giá trị kết quả của trường dữ liệu được chọn.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150284\n"
-"282\n"
+"12090106.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "COMBINA"
-msgstr "COMBINA"
+msgid "Descending"
+msgstr "Giảm dần"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157894\n"
-"283\n"
+"12090106.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Trả về số tổ hợp có thể làm với những mục trong một tập hợp con, cũng lặp lại.</ahelp>"
+msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384581\">Sắp xếp các giá trị từ lớn nhất xuống nhỏ nhất. Nếu trường được chọn là trường cho đó hộp thoại được mở, thì các mục được sắp xếp theo tên. Nếu một trường dữ liệu được chọn, thì các mục được sắp xếp theo giá trị kết quả của trường dữ liệu được chọn.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145752\n"
-"284\n"
+"12090106.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Manual"
+msgstr "Bằng tay"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145765\n"
-"285\n"
+"12090106.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "COMBINA(Count1; Count2)"
-msgstr "COMBINA(Đếm1; Đếm2)"
+msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
+msgstr "<ahelp hid=\"1495384582\">Sắp xếp các giá trị theo thứ tự bảng chữ cái (abc).</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153372\n"
-"286\n"
+"12090106.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "<emph>Đếm1</emph> là số các mục trong tập hợp."
+msgid "Display options"
+msgstr "Hiện các tùy chọn"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155544\n"
-"287\n"
+"12090106.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "<emph>Đếm2</emph> là số mục cần chọn trong tập hợp."
+msgid "You can specify the display options for all row fields except for the last, innermost row field."
+msgstr "Bạn có khả năng ghi rõ tùy chọn cho tất cả các trường hàng, trừ trường hàng cuối cùng bên trong cùng."
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1997131\n"
+"12090106.xhp\n"
+"par_idN1058C\n"
"help.text"
-msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
-msgstr "Hàm COMBINA trả về số các phương pháp duy nhất có thể chọn những mục này, khi không phân biệt thứ tự chọn và cho phép lặp lại mục. Ví dụ, một tập hợp chứa ba mục A, B, C, thì bạn co thể chọn hai mục bằng 6 cách khác nhau : AB, BA, AC, CA, BC, CB."
+msgid "Layout"
+msgstr "Bố trí"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2052064\n"
+"12090106.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
-msgstr "Hàm COMBINA thực hiện công thức: (Đếm1+Đếm2-1)! / (Đếm2!(Đếm1-1)!)"
+msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr "<ahelp hid=\"1495387654\">Hãy lựa chọn chế độ bố trí cho trường trong hộp liệt kê.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154584\n"
-"288\n"
+"12090106.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Empty line after each item"
+msgstr "Dòng trống phía sau mỗi mục"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152904\n"
-"289\n"
+"12090106.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"1495385090\">Thêm một hàng rỗng phía sau dữ liệu cho mỗi mục trong bảng DataPilot.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156086\n"
+"12090106.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
-msgstr "<bookmark_value>hàm TRUNC</bookmark_value><bookmark_value>lần số;cắt ra</bookmark_value>"
+msgid "Show automatically"
+msgstr "Tự động hiện"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156086\n"
-"291\n"
+"12090106.xhp\n"
+"par_idN1059E\n"
"help.text"
-msgid "TRUNC"
-msgstr "TRUNC"
+msgid "Displays the top or bottom nn items when you sort by a specified field."
+msgstr "Hiển thị nn mục trên hay dưới khi bạn sắp xếp theo một trường đã ghi rõ."
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157866\n"
-"292\n"
+"12090106.xhp\n"
+"par_idN105A1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">Cắt ngắn một số bằng cách gỡ bỏ các lần số.</ahelp>"
+msgid "Show"
+msgstr "Hiện"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148499\n"
-"293\n"
+"12090106.xhp\n"
+"par_idN105A5\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
+msgstr "<ahelp hid=\"1495385091\">Bật tính năng tự động hiện.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148511\n"
-"294\n"
+"12090106.xhp\n"
+"par_idN105A8\n"
"help.text"
-msgid "TRUNC(Number; Count)"
-msgstr "TRUNC(Số; Đếm)"
+msgid "items"
+msgstr "mục"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150796\n"
-"295\n"
+"12090106.xhp\n"
+"par_idN105AC\n"
"help.text"
-msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
-msgstr "Trả về <emph>Số</emph> có nhiều nhất <emph>Đếm</emph> lần số. Các lần số thừa đơn giản bị gỡ bỏ, bất chấp dấu -/+."
+msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr "<ahelp hid=\"1495390209\">Hãy nhập số tối đa các mục bạn muốn tự động hiển thị.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150816\n"
-"296\n"
+"12090106.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
-msgstr "<item type=\"literal\">TRUNC(Number; 0)</item> ứng xử giống như <item type=\"literal\">INT(Number)</item> đối với các số dương, nhưng có kết quả là làm tròn về số không đối với các số âm."
+msgid "From"
+msgstr "Từ"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148548\n"
-"557\n"
+"12090106.xhp\n"
+"par_idN105B3\n"
"help.text"
-msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
-msgstr ""
+msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr "<ahelp hid=\"1495387655\">Hiển thị các mục trên hay dưới theo thứ tự sắp xếp đã ghi rõ.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152555\n"
-"297\n"
+"12090106.xhp\n"
+"par_idN105B6\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Using field"
+msgstr "Dùng trường"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152569\n"
-"298\n"
+"12090106.xhp\n"
+"par_idN105BA\n"
"help.text"
-msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
-msgstr "<item type=\"input\">=TRUNC(1.239;2)</item> trả về 1.23. Chữ số 9 bị mất."
+msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr "<ahelp hid=\"1495387656\">Hãy lựa chọn trường dữ liệu theo đó cần sắp xếp dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7050080\n"
+"12090106.xhp\n"
+"par_idN105BD\n"
"help.text"
-msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
-msgstr "<item type=\"input\">=TRUNC(-1.234999;3)</item> trả về -1,234. Tất cả các chữ số 9 đều bị mất."
+msgid "Hide items"
+msgstr "Ẩn mục"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153601\n"
+"12090106.xhp\n"
+"par_idN105C1\n"
"help.text"
-msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
-msgstr "<bookmark_value>hàm LN</bookmark_value><bookmark_value>lôga tự nhiên</bookmark_value>"
+msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr "<ahelp hid=\"59010\">Hãy lựa chọn những mục cần ẩn khỏi phép tính.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153601\n"
-"301\n"
+"12090106.xhp\n"
+"par_idN105C4\n"
"help.text"
-msgid "LN"
-msgstr "LN"
+msgid "Hierarchy"
+msgstr "Hệ đẳng cấp"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154974\n"
-"302\n"
+"12090106.xhp\n"
+"par_idN105C8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_LN\">Trả về lôga tự nhiên dựa vào hằng số e của một số.</ahelp> Hằng số e có giá trị xấp xỉ 2,71828182845904."
+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\">Hãy lựa chọn hộ đẳng cấp cần dùng. DataPilot phải dựa vào một dữ liệu nguồn bên ngoài mà chứa hệ đẳng cấp dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154993\n"
-"303\n"
+"12090200.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Refresh"
+msgstr "Cập nhật"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155284\n"
-"304\n"
+"12090200.xhp\n"
+"hd_id3151385\n"
+"1\n"
"help.text"
-msgid "LN(Number)"
-msgstr "LN(Số)"
+msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Cập nhật\">Cập nhật</link>"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155297\n"
-"305\n"
+"12090200.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
-msgstr "<emph>Số</emph> là giá trị có lôga tự nhiên cần tính."
+msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Cập nhật bảng DataPilot.</ahelp>"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153852\n"
-"306\n"
+"12090200.xhp\n"
+"par_id3150400\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+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 "Sau khi bạn nhập một bảng tính Excel chứa một bảng Pivot, hãy nhấn vào bảng đó, sau đó chọn mục trình đơn <emph>Dữ liệu > DataPilot > Cập nhật</emph>."
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153866\n"
-"307\n"
+"12090300.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
-msgstr "<item type=\"input\">=LN(3)</item> trả về lôga tự nhiên của 3 (xấp xỉ 1,0986)."
+msgid "Delete"
+msgstr "Xoá"
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5747245\n"
+"12090300.xhp\n"
+"hd_id3150276\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
-msgstr "<item type=\"input\">=VALUE(\"4321\")</item> trả về 4321."
+msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Xoá\">Xoá</link>"
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3109813\n"
+"12090300.xhp\n"
+"par_id3159400\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
-msgstr "<bookmark_value>hàm LOG</bookmark_value><bookmark_value>lôga</bookmark_value>"
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Xoá bảng DataPilot đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3109813\n"
-"311\n"
+"12090400.xhp\n"
+"tit\n"
"help.text"
-msgid "LOG"
-msgstr "LOG"
+msgid "Grouping"
+msgstr "Nhóm lại"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3109841\n"
-"312\n"
+"12090400.xhp\n"
+"par_idN1054D\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOG\">Trả về lôga của một số tới cơ sở đã ghi rõ.</ahelp>"
+msgid "Grouping"
+msgstr "Nhóm lại"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144719\n"
-"313\n"
+"12090400.xhp\n"
+"par_idN10551\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+msgstr "Các bảng DataPilot kiểu Nhóm lại thì hiển thị hộp thoại <emph>Nhóm lại</emph> cho hoặc giá trị hoặc ngày tháng."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144732\n"
-"314\n"
+"12090400.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "LOG(Number; Base)"
-msgstr "LOG(Số; Cơ_số)"
+msgid "Start"
+msgstr "Bắt đầu"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144746\n"
-"315\n"
+"12090400.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
-msgstr "<emph>Số</emph> là giá trị có lôga cần tính."
+msgid "Specifies the start of the grouping."
+msgstr "Ghi rõ đầu của tiến trình nhóm lại."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152840\n"
-"316\n"
+"12090400.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
-msgstr "<emph>Base</emph> (tùy chọn) là cơ số của phép toán lôgarit. Nếu bỏ qua, sẽ coi là cơ số 10."
+msgid "Automatically"
+msgstr "Tự động"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152860\n"
-"317\n"
+"12090400.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Specifies whether to start grouping at the smallest value."
+msgstr "Ghi rõ có nên bắt đầu nhóm lại ở giá trị nhỏ nhất, hay không."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154429\n"
-"318\n"
+"12090400.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
-msgstr "<item type=\"input\">=LOG(10;3)</item> trả về lôga với cơ số 3 của 10 (xấp xỉ 2.0959)."
+msgid "Manually at"
+msgstr "Bằng tay ở"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5577562\n"
+"12090400.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
-msgstr "<item type=\"input\">=LEN(12345.67)</item> trả về 8."
+msgid "Specifies whether to enter the start value for grouping yourself."
+msgstr "Ghi rõ nếu bạn nên tự nhập giá trị bắt đầu, hay không."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154187\n"
+"12090400.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
-msgstr "<bookmark_value>hàm LOG10</bookmark_value><bookmark_value>lôga cơ sở 10</bookmark_value>"
+msgid "End"
+msgstr "Kết thúc"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154187\n"
-"322\n"
+"12090400.xhp\n"
+"par_idN10581\n"
"help.text"
-msgid "LOG10"
-msgstr "LOG10"
+msgid "Specifies the end of the grouping."
+msgstr "Ghi rõ cuối của tiến trình nhóm lại."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155476\n"
-"323\n"
+"12090400.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOG10\">Trả về lôga cơ số 10 của một số.</ahelp>"
+msgid "Automatically"
+msgstr "Tự động"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155494\n"
-"324\n"
+"12090400.xhp\n"
+"par_idN10588\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Specifies whether to end grouping at the largest value."
+msgstr "Ghi rõ có nên kết thúc nhóm lại ở giá trị lớn nhất, hay không."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159294\n"
-"325\n"
+"12090400.xhp\n"
+"par_idN1058B\n"
"help.text"
-msgid "LOG10(Number)"
-msgstr "LOG10(Số)"
+msgid "Manually at"
+msgstr "Bằng tay ở"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159308\n"
-"326\n"
+"12090400.xhp\n"
+"par_idN1058F\n"
"help.text"
-msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
-msgstr "Trả về lôga cơ số 10 của <emph>Số</emph>."
+msgid "Specifies whether to enter the end value for grouping yourself."
+msgstr "Ghi rõ nếu bạn nên tự nhập giá trị kết thúc, hay không."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159328\n"
-"327\n"
+"12090400.xhp\n"
+"par_idN10592\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Group by"
+msgstr "Nhóm lại theo"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157916\n"
-"328\n"
+"12090400.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
-msgstr "<item type=\"input\">=LOG10(5)</item> trả về lôga cơ số 10 của 5 (xấp xỉ 0,69897)."
+msgid "Specifies the value range by which every group's limits are calculated."
+msgstr "Ghi rõ phạm vi giá trị theo đó tính các giới hạn của mọi nhóm."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152518\n"
+"12090400.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
-msgstr "<bookmark_value>hàm CEILING</bookmark_value><bookmark_value>làm tròn;lên bội số có mức độ thống kê</bookmark_value>"
+msgid "Number of days"
+msgstr "Số ngày"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152518\n"
-"332\n"
+"12090400.xhp\n"
+"par_idN1059D\n"
"help.text"
-msgid "CEILING"
-msgstr "CEILING"
+msgid "In the case of grouping date values, specifies the number of days to group by."
+msgstr "Trong trường hợp nhóm lại các giá trị dữ liệu, tùy chọn này ghi rõ số các ngày theo đó cần nhóm lại."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153422\n"
-"558\n"
+"12090400.xhp\n"
+"par_idN105A0\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Làm tròn một số lên bội số gần nhất có mức độ thống kê.</ahelp>"
+msgid "Intervals"
+msgstr "Khoảng"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153440\n"
-"334\n"
+"12090400.xhp\n"
+"par_idN105A4\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "In the case of grouping date values, specifies the intervals to group by."
+msgstr "Trong trường hợp nhóm lại các giá trị ngày tháng, tùy chọn này ghi rõ các khoảng theo đó cần nhóm lại."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153454\n"
-"335\n"
+"12090400.xhp\n"
+"par_idN105B2\n"
"help.text"
-msgid "CEILING(Number; Significance; Mode)"
-msgstr "CEILING(Số; Mức_thống_kê; Chế_độ)"
+msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153467\n"
-"336\n"
+"12100000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded up."
-msgstr "<emph>Số</emph> là số cần làm tròn lên."
+msgid "Refresh Range"
+msgstr "Cập nhật phạm vi"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155000\n"
-"337\n"
+"12100000.xhp\n"
+"bm_id3153662\n"
"help.text"
-msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
-msgstr "<emph>Mức_thống kê</emph> là số có bội số lên đó nên làm tròn giá trị."
+msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
+msgstr "<bookmark_value>phạm vi cơ sở dữ liệu; cập nhật</bookmark_value>"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155020\n"
-"559\n"
+"12100000.xhp\n"
+"hd_id3153662\n"
+"1\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr "<emph>Chế_độ</emph> là một giá trị còn tùy chọn. Đưa ra giá trị Chế_độ khác với số không, và Số là Mức_thống_kê là âm, thì làm tròn dựa vào giá trị tuyệt đối của Số. Tham số này bị bỏ qua khi xuất dạng MS Excel, vì Excel không nhận ra tham số thứ ba."
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Cập nhật phạm vị\">Cập nhật phạm vị</link>"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163792\n"
-"629\n"
+"12100000.xhp\n"
+"par_id3153088\n"
+"2\n"
"help.text"
-msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
-msgstr "Nếu cả hai tham số Số và Mức_thống_kê đều là âm và giá trị Chế_độ bằng số không hay không đưa a, thì có kết quả khác nhau trong hai chương trình $[officename] và Excel sau khi nhập vào. Vì vậy, nếu bạn xuất bảng tính sang Excel, hãy dùng Chế_độ=1 để thấy cùng một kết quả trong cả hai Excel và Calc."
+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\">Cập nhật một phạm vi dữ liệu mà được chèn từ một cơ sở dữ liệu bên ngoài. Dữ liệu trên trang tính được cập nhật để tương ứng với dữ liệu trong cơ sở dữ liệu ngoài.</ahelp></variable>"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145697\n"
-"338\n"
+"12120000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Validity"
+msgstr "Tính hợp lệ"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145710\n"
-"339\n"
+"12120000.xhp\n"
+"hd_id3156347\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
-msgstr "<item type=\"input\">=CEILING(-11;-2)</item> trả về -10"
+msgid "Validity"
+msgstr "Tính hợp lệ"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145725\n"
-"340\n"
+"12120000.xhp\n"
+"par_id3153252\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
-msgstr "<item type=\"input\">=CEILING(-11;-2;0)</item> trả về -10"
+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\">Định nghĩa dữ liệu nào hợp lệ co một ô hay phạm vi ô đã chọn.</ahelp></variable>"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145740\n"
-"341\n"
+"12120000.xhp\n"
+"par_idN105D1\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
-msgstr "<item type=\"input\">=CEILING(-11;-2;1)</item> trả về -12"
+msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
+msgstr "Bạn cũng có thể chèn một hộp liệt kê từ thanh công cụ <emph>Điều khiển</emph> và liên kết hộp liệt kê với một ô. Bằng cách đó, bạn có thể ghi rõ những giá trị hợp lệ trên trang <link href=\"text/shared/02/01170102.xhp\">Dữ liệu</link> của cửa sổ thuộc tính hộp liệt kê."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157762\n"
+"12120100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>PI function</bookmark_value>"
-msgstr "<bookmark_value>hàm Pi (π)</bookmark_value>"
+msgid "Criteria"
+msgstr "Tiêu chuẩn"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157762\n"
-"343\n"
+"12120100.xhp\n"
+"bm_id1464278\n"
"help.text"
-msgid "PI"
-msgstr "PI"
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgstr "<bookmark_value>danh sách lựa chọn;tính hợp lệ</bookmark_value>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157790\n"
-"344\n"
+"12120100.xhp\n"
+"hd_id3153032\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PI\">Trả về 3,14159265358979, giá trị của hằng số toán học π đến 14 lần số.</ahelp>"
+msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Tiêu chuẩn\">Tiêu chuẩn</link>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157809\n"
-"345\n"
+"12120100.xhp\n"
+"par_id3156327\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Ghi rõ những quy tắc thẩm tra cho (những) ô đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157822\n"
-"346\n"
+"12120100.xhp\n"
+"par_id3155923\n"
+"4\n"
"help.text"
-msgid "PI()"
-msgstr "PI()"
+msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
+msgstr "Ví dụ, bạn có thể xác định tiêu chuẩn như « Những số nằm giữa 1 và 10 », hay « Những chuỗi văn bản chứa đến 20 ký tự »."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157836\n"
-"347\n"
+"12120100.xhp\n"
+"hd_id3153896\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Allow"
+msgstr "Cho phép"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152370\n"
-"348\n"
+"12120100.xhp\n"
+"par_id3150400\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
-msgstr "<item type=\"input\">=PI()</item> trả về 3,14159265358979."
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Nhấn vào một tùy chọn thẩm tra cho (những) ô đã chọn.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152418\n"
+"12120100.xhp\n"
+"par_id3148797\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
-msgstr "<bookmark_value>hàm MULTINOMIAL</bookmark_value>"
+msgid "The following conditions are available:"
+msgstr "Có sẵn những điều kiện theo đây:"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152418\n"
-"635\n"
+"12120100.xhp\n"
+"par_id3150447\n"
+"18\n"
"help.text"
-msgid "MULTINOMIAL"
-msgstr "MULTINOMIAL"
+msgid "Condition"
+msgstr "Điều kiện"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152454\n"
-"636\n"
+"12120100.xhp\n"
+"par_id3155854\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\">Trả về giai thừa của tổng các đối số chia cho tích các giai thừa của các đối số.</ahelp>"
+msgid "Effect"
+msgstr "Hiệu ứng"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155646\n"
-"637\n"
+"12120100.xhp\n"
+"par_id3153092\n"
+"20\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "All values"
+msgstr "Mọi giá trị"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155660\n"
-"638\n"
+"12120100.xhp\n"
+"par_id3155411\n"
+"21\n"
"help.text"
-msgid "MULTINOMIAL(Number(s))"
-msgstr "MULTINOMIAL(Các_số)"
+msgid "No limitation."
+msgstr "Vô hạn."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155673\n"
-"639\n"
+"12120100.xhp\n"
+"par_id3147434\n"
+"22\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "<emph>Số</emph> là một chuỗi đến 30 số."
+msgid "Whole number"
+msgstr "Số nguyên"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155687\n"
-"640\n"
+"12120100.xhp\n"
+"par_id3154319\n"
+"23\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Only whole numbers corresponding to the condition."
+msgstr "Chỉ số nguyên tương ứng với điều kiện này."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155701\n"
-"641\n"
+"12120100.xhp\n"
+"par_id3145802\n"
+"24\n"
"help.text"
-msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
-msgstr "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> trả về 1260, nếu các ô F11 đến H11 đều chứa những giá trị <item type=\"input\">2</item>, <item type=\"input\">3</item> và <item type=\"input\">4</item>. Đây tương ứng với công thức « =(2+3+4)! / (2!*3!*4!) »."
+msgid "Decimal"
+msgstr "Thập phân"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155717\n"
+"12120100.xhp\n"
+"par_id3153160\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>POWER function</bookmark_value>"
-msgstr "<bookmark_value>hàm POWER</bookmark_value>"
+msgid "All numbers corresponding to the condition."
+msgstr "Mọi số tương ứng với điều kiện đó."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155717\n"
-"350\n"
+"12120100.xhp\n"
+"par_id3149377\n"
+"26\n"
"help.text"
-msgid "POWER"
-msgstr "POWER"
+msgid "Date"
+msgstr "Ngày"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159495\n"
-"351\n"
+"12120100.xhp\n"
+"par_id3150718\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_POTENZ\">Trả về một số tăng lũy thừa.</ahelp>"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "Mọi số tương ứng với điều kiện đó. Những giá trị được nhập vào được định dạng thích hợp lần kế tiếp hộp thoại này được gọi."
-#: 04060106.xhp
+#: 12120100.xhp
+#, fuzzy
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159513\n"
-"352\n"
+"12120100.xhp\n"
+"par_id3146969\n"
+"28\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Time"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nGiờ\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nThời gian"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159526\n"
-"353\n"
+"12120100.xhp\n"
+"par_id3155066\n"
+"29\n"
"help.text"
-msgid "POWER(Base; Exponent)"
-msgstr ""
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "Mọi số tương ứng với điều kiện đó. Những giá trị được nhập vào được định dạng thích hợp lần kế tiếp hộp thoại này được gọi."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159540\n"
-"354\n"
+"12120100.xhp\n"
+"par_idN106A0\n"
"help.text"
-msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
-msgstr "Trả về <emph>Cơ_số</emph> tăng lũy thừa <emph>Lũy_thừa</emph>."
+msgid "Cell range"
+msgstr "Phạm vi ô"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5081637\n"
+"12120100.xhp\n"
+"par_idN106A5\n"
"help.text"
-msgid "The same result may be achieved by using the exponentiation operator ^:"
-msgstr "Có thể làm cùng một kết quả bằng cách ùng toán tử mũ hoá « ^ »:"
+msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
+msgstr "Cho phép chỉ giá trị đưa ra trong một phạm vi ô. Phạm vi ô này có thể được ghi rõ dứt khoát, hoặc dưới dạng một phạm vi đặt tên. Phạm vi có thể chứa một cột ô hay một hàng ô. Nếu bạn ghi rõ một phạm vi các cột và hàng, chỉ dùng cột đầu."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9759514\n"
+"12120100.xhp\n"
+"par_idN106AB\n"
"help.text"
-msgid "<item type=\"literal\">Base^Exponent</item>"
-msgstr "<item type=\"literal\">Cơ_số^Lũy_thừa</item>"
+msgid "List"
+msgstr "Danh sách"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159580\n"
-"356\n"
+"12120100.xhp\n"
+"par_idN106B0\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+msgstr "Cho phép chỉ giá trị được ghi rõ theo danh sách. Cũng có thể hỗn hợp các chuỗi và giá trị. Số ước tính thành giá trị của nó, vì thế, nếu bạn nhập số 1 vào danh sách, mục nhập 100% cũng là hợp lệ."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159594\n"
-"357\n"
+"12120100.xhp\n"
+"par_id3154756\n"
+"30\n"
"help.text"
-msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
-msgstr "<item type=\"input\">=POWER(4;3)</item> trả về 64 (4 lũy thừa 3)."
+msgid "Text length"
+msgstr "Độ dài văn bản"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1614429\n"
+"12120100.xhp\n"
+"par_id3147339\n"
+"31\n"
"help.text"
-msgid "=4^3 also returns 4 to the power of 3."
-msgstr "=4^3 cũng trả về 4 lũy thừa 3 (4³)."
+msgid "Entries whose length corresponds to the condition."
+msgstr "Các mục nhập có chiều dài tương ứng với điều kiện."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152651\n"
+"12120100.xhp\n"
+"hd_id3154704\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
-msgstr "<bookmark_value>hàm SERIESSUM</bookmark_value>"
+msgid "Allow blank cells"
+msgstr "Cho phẹp ô trắng"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152651\n"
-"642\n"
+"12120100.xhp\n"
+"par_id3153967\n"
+"8\n"
"help.text"
-msgid "SERIESSUM"
-msgstr "SERIESSUM"
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">Cùng với tùy chọn <emph>Công cụ > Phát hiện > Nhãn dữ liệu sai</emph>, tùy chọn này xác định nếu ô trắng được hiển thị dạng dữ liệu sai (bị tắt) hay không (đã bật).</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152688\n"
-"643\n"
+"12120100.xhp\n"
+"par_idN10709\n"
"help.text"
-msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
-msgstr "<ahelp hid=\".\">Cộng lại những số hạng đầu tiên của một chuỗi lũy thừa.</ahelp>"
+msgid "Show selection list"
+msgstr "Hiện danh sách lựa chọn"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152708\n"
-"644\n"
+"12120100.xhp\n"
+"par_idN1070D\n"
"help.text"
-msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
-msgstr "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Hiển thị một danh sách các chuỗi hay giá trị trong chúng có thể chọn. Danh sách này cũng có thể được mở bằng cách lựa chọn ô, sau đó bấm tổ hợp phím Ctrl+D (Mac: Command+D).</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152724\n"
-"645\n"
+"12120100.xhp\n"
+"par_idN10724\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Sort entries ascending"
+msgstr "Sắp xếp các mục tăng dần"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_idN11BD9\n"
+"12120100.xhp\n"
+"par_idN10728\n"
"help.text"
-msgid "SERIESSUM(X; N; M; Coefficients)"
-msgstr "SERIESSUM(X; N; M; Hệ_số)"
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sắp xếp danh sách lựa chọn theo thứ tự tăng dần, và lọc các bản sao ra danh sách. Không bật tùy chọn này thì theo thứ tự của nguồn dữ liệu.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152737\n"
-"646\n"
+"12120100.xhp\n"
+"par_idN1073F\n"
"help.text"
-msgid "<emph>X</emph> is the input value for the power series."
-msgstr "<emph>X</emph> là giá trị nhập cho chuỗi lũy thừa."
+msgid "Source"
+msgstr "Nguồn"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144344\n"
-"647\n"
+"12120100.xhp\n"
+"par_idN10743\n"
"help.text"
-msgid "<emph>N</emph> is the initial power"
-msgstr "<emph>N</emph> là lũy thừa đầu tiên"
+msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
+msgstr "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Hãy nhập phạm vi ô chứa các giá trị hợp lệ hay văn bản.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144357\n"
-"648\n"
+"12120100.xhp\n"
+"par_idN1075A\n"
"help.text"
-msgid "<emph>M</emph> is the increment to increase N"
-msgstr "<emph>M</emph> Ià lượng gia theo đó cần tăng N"
+msgid "Entries"
+msgstr "Mục"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144370\n"
-"649\n"
+"12120100.xhp\n"
+"par_idN1075E\n"
"help.text"
-msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
-msgstr "<emph>Hệ số</emph> là một chuỗi các hệ số. Đối với mỗi hệ số, tổng chuỗi được kéo dài theo một phần."
+msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
+msgstr "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Hãy nhập những mục nhập mà sẽ là giá trị hợp lệ hay chuỗi văn bản.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144386\n"
+"12120100.xhp\n"
+"hd_id3163807\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm PRODUCT</bookmark_value><bookmark_value>số;nhân</bookmark_value><bookmark_value>nhân;số</bookmark_value>"
+msgid "Data"
+msgstr "Dữ liệu"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144386\n"
-"361\n"
+"12120100.xhp\n"
+"par_id3144502\n"
+"10\n"
"help.text"
-msgid "PRODUCT"
-msgstr "PRODUCT"
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Hãy chọn toán tử so sánh cần dùng.</ahelp> Những toán tử sẵn sàng thì phụ thuộc vào bạn đã chọn gì trong hộp <emph>Cho phép</emph>. Nếu bạn chọn « ở giữa » hay « không ở giữa », thì hai hộp nhập <emph>Tối thiểu</emph> và <emph>Tối đa</emph>. Không thì chỉ hộp <emph>Tối thiểu</emph>, <emph>Tối đa</emph> hay <emph>Giá trị</emph> sẽ xuất hiện."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144414\n"
-"362\n"
+"12120100.xhp\n"
+"hd_id3153782\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PRODUKT\">Nhận với nhau tất cả các số đưa ra dạng đối số, sau đó trả về tích.</ahelp>"
+msgid "Value"
+msgstr "Giá trị"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144433\n"
-"363\n"
+"12120100.xhp\n"
+"par_id3153266\n"
+"12\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
+msgstr "Hãy nhập giá trị cho tùy chọn thẩm tra dữ liệu bạn đã chọn trong hộp <emph>Cho phép</emph>."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144446\n"
-"364\n"
+"12120100.xhp\n"
+"hd_id3149814\n"
+"13\n"
"help.text"
-msgid "PRODUCT(Number1; Number2; ...; Number30)"
-msgstr "PRODUCT(Số1; Số2; ...; Số30)"
+msgid "Minimum"
+msgstr "Tối thiểu"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144460\n"
-"365\n"
+"12120100.xhp\n"
+"par_id3153199\n"
+"14\n"
"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
-msgstr "<emph>Số1 … Số30</emph> là đến 30 đối số làm tích cần tính."
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Nhập giá trị tối thiểu cho tùy chọn thẩm tra dữ liệu bạn đã chọn trong hộp <emph>Cho phép</emph>.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1589098\n"
+"12120100.xhp\n"
+"hd_id3149035\n"
+"15\n"
"help.text"
-msgid "PRODUCT returns number1 * number2 * number3 * ..."
-msgstr "PRODUCT trả về số1 * số2 * số3 * ..."
+msgid "Maximum"
+msgstr "Tối đa"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144480\n"
-"366\n"
+"12120100.xhp\n"
+"par_id3150089\n"
+"16\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Nhập giá trị tối đa cho tùy chọn thẩm tra dữ liệu bạn đã chọn trong hộp <emph>Cho phép</emph>.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144494\n"
-"367\n"
+"12120200.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
-msgstr "<item type=\"input\">=PRODUCT(2;3;4)</item> trả về 24."
+msgid "Input Help"
+msgstr "Trợ giúp Nhập liệu"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3160340\n"
+"12120200.xhp\n"
+"hd_id3156280\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm SUMSQ</bookmark_value><bookmark_value>phép cộng số bình phương</bookmark_value><bookmark_value>tổng;các số bình phương</bookmark_value>"
+msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Trợ giúp Nhập liệu\">Trợ giúp Nhập liệu</link>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160340\n"
-"369\n"
+"12120200.xhp\n"
+"par_id3147229\n"
+"2\n"
"help.text"
-msgid "SUMSQ"
-msgstr "SUMSQ"
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Nhập thông điệp bạn muốn hiển thị khi ô hay phạm vi ô được chọn trên trang tính.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160368\n"
-"370\n"
+"12120200.xhp\n"
+"hd_id3146986\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">Muốn tính tổng các bình phương của số (cộng lại các bình phương của các đối số) thì nhập chúng vào những trường văn bản.</ahelp>"
+msgid "Show input help when cell is selected"
+msgstr "Hiển thị trợ giúp nhập liệu khi ô được chọn"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160388\n"
-"371\n"
+"12120200.xhp\n"
+"par_id3153363\n"
+"4\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Hiển thị thông điệp mà bạn nhập vào hộp <emph>Nội dung</emph> khi ô hay phạm vi ô được chọn trên trang tính.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160402\n"
-"372\n"
+"12120200.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "SUMSQ(Number1; Number2; ...; Number30)"
-msgstr "SUMSQ(Số1; Số2; ...; Số30)"
+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 "Nếu bạn nhập một chuỗi văn bản vào hộp <emph>Nội dung</emph> của hộp thoại này, sau đó bỏ trống hộp chọn, chuỗi văn bản bị mất."
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160415\n"
-"373\n"
+"12120200.xhp\n"
+"hd_id3147394\n"
+"6\n"
"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
-msgstr "<emph>Số1 đến 30</emph> là đến 30 đối số có bình phương cần cộng lại."
+msgid "Contents"
+msgstr "Nội dung"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160436\n"
-"374\n"
+"12120200.xhp\n"
+"hd_id3149582\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Title"
+msgstr "Tựa đề"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160449\n"
-"375\n"
+"12120200.xhp\n"
+"par_id3149400\n"
+"9\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
-msgstr "Nếu bạn nhập những số <item type=\"input\">2</item>; <item type=\"input\">3</item> và <item type=\"input\">4</item> vào những hộp văn bản Số1, 2, 3 thì trả về 29."
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Hãy nhập tựa đề bạn muốn hiển thị khi ô hay phạm vi ô được lựa chọn.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3158247\n"
+"12120200.xhp\n"
+"hd_id3149121\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
-msgstr "<bookmark_value>hàm MOD</bookmark_value><bookmark_value>phần dư của phép chia</bookmark_value>"
+msgid "Input help"
+msgstr "Trợ giúp Nhập liệu"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158247\n"
-"387\n"
+"12120200.xhp\n"
+"par_id3150752\n"
+"11\n"
"help.text"
-msgid "MOD"
-msgstr "MOD"
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Hãy nhập thông điệp bạn muốn hiển thị khi ô hay phạm vi ô được lựa chọn.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158276\n"
-"388\n"
+"12120300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_REST\">Trả về phần dư khi số nguyên này chia cho số nguyên khác.</ahelp>"
+msgid "Error Alert"
+msgstr "Báo lỗi"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158294\n"
-"389\n"
+"12120300.xhp\n"
+"hd_id3153821\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Báo lỗi\">Báo lỗi</link>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158308\n"
-"390\n"
+"12120300.xhp\n"
+"par_id3153379\n"
+"2\n"
"help.text"
-msgid "MOD(Dividend; Divisor)"
-msgstr "MOD(Số_bị_chia; Ước_số)"
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Xác định thông điệp lỗi cần hiển thị khi dữ liệu sai được nhập vào ô.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158321\n"
-"391\n"
+"12120300.xhp\n"
+"par_id3154138\n"
+"25\n"
"help.text"
-msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
-msgstr "Đối với đối số số nguyên, hàm này trả về « Số bị chia mod Ước số », tức là phần dư khi <emph>Số bị chia</emph> bị chia cho <emph>Ước số</emph>."
+msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
+msgstr "Bạn cũng có thể khởi chạy một vĩ lệnh bằng một thông điệp lỗi. Một vĩ lệnh mẫu được cung cấp ở kết thúc của trang này."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158341\n"
-"392\n"
+"12120300.xhp\n"
+"hd_id3156280\n"
+"3\n"
"help.text"
-msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
-msgstr "Hàm này được thực hiện dưới dạng <item type=\"literal\">Số_bị_chia - Ước_số * INT(Số_bị_chia/Ước_số)</item> ; và công thức này cung cấp kết quả nếu các đối số khác số nguyên."
+msgid "Show error message when invalid values are entered."
+msgstr "Hiện thông điệp lỗi khi giá trị sai được nhập."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158361\n"
-"393\n"
+"12120300.xhp\n"
+"par_id3150768\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
+msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158374\n"
-"394\n"
+"12120300.xhp\n"
+"par_id3146984\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
-msgstr "<item type=\"input\">=MOD(22;3)</item> trả về 1, phân dư khi 22 bị chia cho 3."
+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 "Trong cả hai trường hợp, mục nhập sai bị xoá và giá trị trước được nhập lại vào ô. Cũng vậy nếu bạn đóng hộp thoại « Cảnh báo » và « Thông tin » bằng cách nhấn nút <emph>Thôi</emph>. Nếu bạn đóng hộp thoại bằng nút <emph>OK</emph>, mục nhập sai không bị xoá."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1278420\n"
+"12120300.xhp\n"
+"hd_id3152460\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
-msgstr "<item type=\"input\">=MOD(11.25;2.5)</item> trả về 1.25."
+msgid "Contents"
+msgstr "Nội dung"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144592\n"
+"12120300.xhp\n"
+"hd_id3148646\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
-msgstr "<bookmark_value>hàm QUOTIENT</bookmark_value><bookmark_value>phép chia</bookmark_value>"
+msgid "Action"
+msgstr "Hành vi"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144592\n"
-"652\n"
+"12120300.xhp\n"
+"par_id3151115\n"
+"9\n"
"help.text"
-msgid "QUOTIENT"
-msgstr "QUOTIENT"
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Hãy lựa chọn hành động bạn muốn xảy ra khi dữ liệu sai được nhập vào ô.</ahelp> Hành động « Dừng » từ chối mục nhập sai và hiển thị một hộp thoại sẽ chỉ đóng khi người dùng nhấn vào nút <emph>OK</emph>. Hai hộp thoại « Cảnh báo » và « Thông tin » hiển thị một hộp thoại có thể đóng khi bạn nhấn vào nút <emph>OK</emph> hay <emph>Thôi</emph>. Mục nhập sai chỉ bị từ chối khi bạn nhấn vào nút <emph>Thôi</emph>."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144627\n"
-"653\n"
+"12120300.xhp\n"
+"hd_id3156441\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Trả về phần số nguyên của một phép chia.</ahelp>"
+msgid "Browse"
+msgstr "Duyệt"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144646\n"
-"654\n"
+"12120300.xhp\n"
+"par_id3153160\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Mở hộp thoại <link href=\"text/shared/01/06130000.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link> trong đó bạn có thể lựa chọn vĩ lệnh cần thực hiện khi dữ liệu sai được nhập vào ô. Vĩ lệnh được thực hiện một khi thông điệp lỗi được hiển thị.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144659\n"
-"655\n"
+"12120300.xhp\n"
+"hd_id3153876\n"
+"12\n"
"help.text"
-msgid "QUOTIENT(Numerator; Denominator)"
-msgstr "QUOTIENT(Tử_số; Mẫu_số)"
+msgid "Title"
+msgstr "Tựa đề"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9038972\n"
+"12120300.xhp\n"
+"par_id3149410\n"
+"13\n"
"help.text"
-msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
-msgstr "Trả về phần số nguyên của <emph>Tử_số</emph> chia cho <emph>Mẫu_số</emph>."
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Hãy nhập tựa đề của vĩ lệnh hay thông điệp bạn muốn hiển thị khi dữ liệu sai được nhập vào ô.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7985168\n"
+"12120300.xhp\n"
+"hd_id3154510\n"
+"14\n"
"help.text"
-msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
-msgstr "Hàm QUOTIENT tương đương với <item type=\"literal\">INT(tử_số/mẫu_số)</item>, trừ nó có thể thông báo lỗi có mã lỗi khác."
+msgid "Error message"
+msgstr "Thông điệp lỗi"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144674\n"
-"656\n"
+"12120300.xhp\n"
+"par_id3149122\n"
+"15\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Hãy nhập thông điệp bạn muốn hiển thị khi dữ liệu sai được nhập vào ô.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144687\n"
-"657\n"
+"12120300.xhp\n"
+"par_id3150752\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
-msgstr "<item type=\"input\">=QUOTIENT(11;3)</item> trả về 3. Phần dư 2 bị mất."
+msgid "<emph>Sample macro:</emph>"
+msgstr "<emph>Vĩ lệnh mẫu :</emph>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144702\n"
+"format_graphic.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
-msgstr "<bookmark_value>hàm RADIANS</bookmark_value><bookmark_value>chuyển đổi;độ sang radian</bookmark_value>"
+msgid "Graphic"
+msgstr "Đồ họa"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144702\n"
-"377\n"
+"format_graphic.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "RADIANS"
-msgstr "RADIANS"
+msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
+msgstr "<link href=\"text/scalc/01/format_graphic.xhp\">Đồ họa</link>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158025\n"
-"378\n"
+"format_graphic.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RAD\">Chuyển đổi độ sang radian.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở một trình đơn con để chỉnh sửa các thuộc tính về đối tượng đã chọn.</ahelp>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158042\n"
-"379\n"
+"format_graphic.xhp\n"
+"par_id1650440\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\">Xác định Thuộc tính Văn bản</link>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158055\n"
-"380\n"
+"format_graphic.xhp\n"
+"par_id363475\n"
"help.text"
-msgid "RADIANS(Number)"
-msgstr "RADIANS(Số)"
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgstr "Đặt các thuộc tính bố trí và thả neo về văn bản trong đối tượng kiểu vẽ hay văn bản được chọn."
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158069\n"
-"381\n"
+"format_graphic.xhp\n"
+"par_id9746696\n"
"help.text"
-msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
-msgstr "<emph>Số</emph> là góc theo độ cần chuyển đổi sang radian."
+msgid "Points"
+msgstr "Điểm"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id876186\n"
+"format_graphic.xhp\n"
+"par_id2480544\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật/tắt chế độ <emph>Sửa điểm</emph> cho một con đường dạng tự do đã chèn.</ahelp>"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3939634\n"
+"func_date.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
-msgstr "<item type=\"input\">=RADIANS(90)</item> trả về 1,5707963267949, π/2 theo mức độ chính xác của Calc."
+msgid "DATE"
+msgstr "DATE"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3158121\n"
+"func_date.xhp\n"
+"bm_id3155511\n"
"help.text"
-msgid "<bookmark_value>ROUND function</bookmark_value>"
-msgstr "<bookmark_value>hàm ROUND</bookmark_value>"
+msgid "<bookmark_value>DATE function</bookmark_value>"
+msgstr "<bookmark_value>hàm DATE</bookmark_value>"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158121\n"
-"398\n"
+"func_date.xhp\n"
+"hd_id3155511\n"
+"3\n"
"help.text"
-msgid "ROUND"
-msgstr "ROUND"
+msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">Hàm DATE</link></variable>"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158150\n"
-"399\n"
+"func_date.xhp\n"
+"par_id3153551\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Làm tròn một số thành một số lần số nào đó.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
+msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Hàm này tính một ngày tháng được ghi rõ theo năm, tháng, ngày, và hiển thị nó theo định dạng của ô đó.</ahelp> Định dạng mặc định của một ô chứa hàm DATE là định dạng ngày tháng, nhưng bạn cũng có thể định dạng ô theo bất cứ định dạng số khác nào."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158169\n"
-"400\n"
+"func_date.xhp\n"
+"hd_id3148590\n"
+"5\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158182\n"
-"401\n"
+"func_date.xhp\n"
+"par_id3150474\n"
+"6\n"
"help.text"
-msgid "ROUND(Number; Count)"
-msgstr "ROUND(Số; Đếm)"
+msgid "DATE(Year; Month; Day)"
+msgstr "DATE(Năm; Tháng; Ngày)"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158196\n"
-"402\n"
+"func_date.xhp\n"
+"par_id3152815\n"
+"7\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
-msgstr "Trả về <emph>Số</emph> được làm tròn thành <emph>Đếm</emph> lần số. Đếm bị bỏ sót hay là số không thì hàm làm tròn thành số nguyên gần nhất. Đếm âm thì hàm làm tròn thành 10, 100, 1000 v.v. gần nhất."
+msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
+msgstr "<emph>Năm</emph> là một số nguyên nằm giữa 1583 và 9957, hay giữa 0 và 99."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id599688\n"
+"func_date.xhp\n"
+"par_id3153222\n"
+"174\n"
"help.text"
-msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
-msgstr "Hàm này làm tròn thành số gần nhất. So sánh hai hàm ROUNDDOWN (làm tròn xuống) và ROUNDUP (làm tròn lên)."
+msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
+msgstr ""
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145863\n"
-"404\n"
+"func_date.xhp\n"
+"par_id3155817\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>Month</emph> is an integer indicating the month."
+msgstr "<emph>Tháng</emph> là một số nguyên ngụ ý tháng."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145876\n"
-"405\n"
+"func_date.xhp\n"
+"par_id3153183\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
-msgstr "<item type=\"input\">=ROUND(2.348;2)</item> trả về 2.35"
+msgid "<emph>Day</emph> is an integer indicating the day of the month."
+msgstr "<emph>Ngày</emph> là một số nguyên ngụ ý ngày của tháng."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145899\n"
-"406\n"
+"func_date.xhp\n"
+"par_id3156260\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
-msgstr "<item type=\"input\">=ROUND(-32.4834;3)</item> trả về -32.483. Thay đổi định dạng ô để thấy tất cả số thập phân."
+msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
+msgstr "Giá trị cho tháng và ngày vượt quá giới hạn thì nó được mang lại tới chữ số kế tiếp. Nếu bạn nhập công thức <item type=\"input\">=DATE(00;12;31)</item>, kết quả là 12/31/00. Tuy nhiên, nếu bạn nhập công thức <item type=\"input\">=DATE(00;13;31)</item> kết quả là 1/31/01."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1371501\n"
+"func_date.xhp\n"
+"hd_id3147477\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
-msgstr "<item type=\"input\">=ROUND(2.348;0)</item> trả về 2."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4661702\n"
+"func_date.xhp\n"
+"par_id3152589\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
-msgstr "<item type=\"input\">=ROUND(2.5)</item> trả về 3."
+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> trả về 1/31/00 nếu định dạng của ô là Th/Ng/Nm."
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7868892\n"
+"func_datedif.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
-msgstr "<item type=\"input\">=ROUND(987.65;-2)</item> trả về 1000."
+msgid "DATEDIF"
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145991\n"
+"func_datedif.xhp\n"
+"bm_id3155511\n"
"help.text"
-msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
-msgstr "<bookmark_value>hàm ROUNDDOWN</bookmark_value>"
+msgid "<bookmark_value>DATEDIF function</bookmark_value>"
+msgstr "<bookmark_value>hàm DATE</bookmark_value>"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145991\n"
-"24\n"
+"func_datedif.xhp\n"
+"hd_id3155511\n"
"help.text"
-msgid "ROUNDDOWN"
-msgstr "ROUNDDOWN"
+msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
+msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">Hàm DATE</link></variable>"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146020\n"
-"25\n"
+"func_datedif.xhp\n"
+"par_id3153551\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Làm tròn một số xuống, về số 0, theo một độ chính xác nào đó.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146037\n"
-"26\n"
+"func_datedif.xhp\n"
+"hd_id3148590\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146051\n"
-"27\n"
+"func_datedif.xhp\n"
+"par_id3150474\n"
"help.text"
-msgid "ROUNDDOWN(Number; Count)"
-msgstr "ROUNDDOWN(Số; Đếm)"
+msgid "DATEDIF(Start date; End date; Interval)"
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146064\n"
-"28\n"
+"func_datedif.xhp\n"
+"par_id3152815\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
-msgstr "Trả về <emph>Số</emph> được làm tròn xuống (về số 0) theo <emph>Đếm</emph> lần số. « Đếm » bị bỏ sót hay là số 0 thì hàm làm tròn xuống một số nguyên. « Đếm » là số âm thì hàm làm tròn xuống 10, 100, 1000 v.v. gần nhất."
+msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2188787\n"
+"func_datedif.xhp\n"
+"par_id3155817\n"
"help.text"
-msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
-msgstr "Hàm này làm tròn thành số 0. Xem thêm hàm ROUNDUP và ROUND."
+msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163164\n"
-"30\n"
+"func_datedif.xhp\n"
+"par_id3153183\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163178\n"
-"31\n"
+"func_datedif.xhp\n"
+"par_id5735953\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
-msgstr "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> trả về 1.23."
+msgid "Value for \"Interval\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5833307\n"
+"func_datedif.xhp\n"
+"par_id8360850\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
-msgstr "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> trả về 45."
+msgid "Return value"
+msgstr "Giá trị trả về"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7726676\n"
+"func_datedif.xhp\n"
+"par_id9648731\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
-msgstr "<item type=\"input\">=ROUNDDOWN(-45.67)</item> trả về -45."
+msgid "\"d\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3729361\n"
+"func_datedif.xhp\n"
+"par_id908841\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
-msgstr "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> trả về 900."
+msgid "Number of whole days between Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163268\n"
+"func_datedif.xhp\n"
+"par_id8193914\n"
"help.text"
-msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
-msgstr "<bookmark_value>hàm ROUNDUP</bookmark_value>"
+msgid "\"m\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163268\n"
-"140\n"
+"func_datedif.xhp\n"
+"par_id9841608\n"
"help.text"
-msgid "ROUNDUP"
-msgstr "ROUNDUP"
+msgid "Number of whole months between Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163297\n"
-"141\n"
+"func_datedif.xhp\n"
+"par_id2701803\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Làm tròn một số lên, về hướng khác với số 0, đến một mức độ chính xác nào đó.</ahelp>"
+msgid "\"y\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163315\n"
-"142\n"
+"func_datedif.xhp\n"
+"par_id2136295\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "Number of whole years between Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163328\n"
-"143\n"
+"func_datedif.xhp\n"
+"par_id9200109\n"
"help.text"
-msgid "ROUNDUP(Number; Count)"
-msgstr "ROUNDUP(Số; Đếm)"
+msgid "\"ym\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163342\n"
-"144\n"
+"func_datedif.xhp\n"
+"par_id4186223\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
-msgstr "Trả về <emph>Số</emph> được làm tròn lên (về hướng khác với số 0) đến <emph>Đếm</emph> lần số. Đếm bị bỏ sót hay là số không thì hàm làm tròn lên một số nguyên. Đếm âm thì hàm làm tròn lên 10, 100, 1000 v.v. kế tiếp."
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9573961\n"
+"func_datedif.xhp\n"
+"par_id5766472\n"
"help.text"
-msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
-msgstr "Hàm này làm tròn về hướng khác với số không. So sánh hai hàm ROUNDDOWN (làm tròn xuống) và ROUNDUP (làm tròn lên)."
+msgid "\"md\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163381\n"
-"146\n"
+"func_datedif.xhp\n"
+"par_id1491134\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144786\n"
-"147\n"
+"func_datedif.xhp\n"
+"par_id5866472\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
-msgstr "<item type=\"input\">=ROUNDUP(1.1111;2)</item> trả về 1.12."
+msgid "\"yd\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7700430\n"
+"func_datedif.xhp\n"
+"par_id1591134\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
-msgstr "<item type=\"input\">=ROUNDUP(1.2345;1)</item> trả về 1.3."
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1180455\n"
+"func_datedif.xhp\n"
+"hd_id3147477\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
-msgstr "<item type=\"input\">=ROUNDUP(45.67;0)</item> trả về 46."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3405560\n"
+"func_datedif.xhp\n"
+"par_id3152589\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
-msgstr "<item type=\"input\">=ROUNDUP(-45.67)</item> trả về -46."
+msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3409527\n"
+"func_datedif.xhp\n"
+"par_id3252589\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
-msgstr "<item type=\"input\">=ROUNDUP(987.65;-2)</item> trả về 1000."
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id5256537\n"
+"func_datedif.xhp\n"
+"par_id3352589\n"
"help.text"
-msgid "<bookmark_value>SEC function</bookmark_value>"
-msgstr "<bookmark_value>hàm SKEW</bookmark_value>"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id5187204\n"
-"149\n"
+"func_datedif.xhp\n"
+"par_id3452589\n"
"help.text"
-msgid "SEC"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9954962\n"
-"150\n"
+"func_datedif.xhp\n"
+"par_id3752589\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
msgstr ""
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id422243\n"
-"151\n"
+"func_datevalue.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "DATEVALUE"
+msgstr "DATEVALUE"
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2055913\n"
-"152\n"
+"func_datevalue.xhp\n"
+"bm_id3145621\n"
"help.text"
-msgid "SEC(Number)"
-msgstr "SIN(Số)"
+msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>hàm DATEVALUE</bookmark_value>"
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9568170\n"
-"153\n"
+"func_datevalue.xhp\n"
+"hd_id3145621\n"
+"18\n"
"help.text"
-msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
-msgstr "Trả về sin (lượng giác) của <emph>Số</emph>, góc theo radian."
+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\">Hàm DATEVALUE</link></variable>"
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9047465\n"
+"func_datevalue.xhp\n"
+"par_id3145087\n"
+"19\n"
"help.text"
-msgid "To return the secant of an angle in degrees, use the RADIANS function."
-msgstr "Để trả về sin của một góc theo độ, hãy dùng hàm RADIANS."
+msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">Trả về số ngày tháng nội bộ cho văn bản, giữa nháy kép.</ahelp>"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9878918\n"
-"154\n"
+"func_datevalue.xhp\n"
+"par_id3149281\n"
+"20\n"
"help.text"
-msgid "Examples"
+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 "Số ngày tháng nội bộ được trả về dạng số. Số này được xác định bởi hệ thống ngày tháng được $[officename] dùng để tính ngày tháng."
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id0119200903491982\n"
+"help.text"
+msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+msgstr "Nếu chuỗi văn bản có chứa giá trị thời gian, DATEVALUE chỉ trả về phần nguyên của chuyển đổi."
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"hd_id3156294\n"
+"21\n"
+"help.text"
+msgid "Syntax"
+msgstr "Cú pháp"
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id3149268\n"
+"22\n"
+"help.text"
+msgid "DATEVALUE(\"Text\")"
+msgstr "DATEVALUE(\"Chuỗi\")"
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id3154819\n"
+"23\n"
+"help.text"
+msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+msgstr "<emph>Chuỗi</emph> là một biểu thức ngày tháng hợp lệ, và phải được nhập giữa nháy kép."
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"hd_id3156309\n"
+"24\n"
+"help.text"
+msgid "Example"
msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6935513\n"
-"155\n"
+"func_datevalue.xhp\n"
+"par_id3155841\n"
+"25\n"
"help.text"
-msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
-msgstr ""
+msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+msgstr "<emph>=DATEVALUE(\"1954-07-20\")</emph> trả về 19925."
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3954287\n"
-"156\n"
+"func_day.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
-msgstr "<item type=\"input\">=COS(RADIANS(60))</item> trả về 0,5, cosin của 60 độ."
+msgid "DAY"
+msgstr "DAY"
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id840005\n"
+"func_day.xhp\n"
+"bm_id3147317\n"
"help.text"
-msgid "<bookmark_value>SECH function</bookmark_value>"
-msgstr "<bookmark_value>hàm SEARCH</bookmark_value>"
+msgid "<bookmark_value>DAY function</bookmark_value>"
+msgstr "<bookmark_value>hàm DAY</bookmark_value>"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id8661934\n"
-"159\n"
+"func_day.xhp\n"
+"hd_id3147317\n"
+"106\n"
"help.text"
-msgid "SECH"
-msgstr ""
+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\">Hàm DAY</link></variable>"
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id408174\n"
-"160\n"
+"func_day.xhp\n"
+"par_id3147584\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Trả về sin hyperbol của một số.</ahelp>"
+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\">Trả về ngày của giá trị ngày tháng đã cho.</ahelp> Ngày được trả về dưới dạng một số nguyên nằm giữa 1 và 31. Bạn cũng có thể nhập một giá trị ngày/giờ âm."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id875988\n"
-"161\n"
+"func_day.xhp\n"
+"hd_id3150487\n"
+"108\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4985391\n"
-"162\n"
+"func_day.xhp\n"
+"par_id3149430\n"
+"109\n"
"help.text"
-msgid "SECH(Number)"
-msgstr "SINH(Số)"
+msgid "DAY(Number)"
+msgstr "DAY(Số)"
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1952124\n"
-"163\n"
+"func_day.xhp\n"
+"par_id3149443\n"
+"110\n"
"help.text"
-msgid "Returns the hyperbolic secant of <emph>Number</emph>."
-msgstr "Trả về sin hyperbol của <emph>Số</emph>."
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
+msgstr "<emph>Số</emph> là một giá trị thời gian dạng thập phân, cho đó trả về ngày của ngày tháng."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9838764\n"
-"164\n"
+"func_day.xhp\n"
+"hd_id3163809\n"
+"111\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1187764\n"
-"165\n"
+"func_day.xhp\n"
+"par_id3151200\n"
+"112\n"
"help.text"
-msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
-msgstr "<item type=\"input\">=SINH(0)</item> trả về 0, sin hyperbol của 0."
+msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+msgstr "DAY(1) trả về 31, vì $[officename] bắt đầu đếm từ số không ở ngày 30, tháng 12/1899."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144877\n"
+"func_day.xhp\n"
+"par_id3154130\n"
+"113\n"
"help.text"
-msgid "<bookmark_value>SIN function</bookmark_value>"
-msgstr "<bookmark_value>hàm SIN</bookmark_value>"
+msgid "DAY(NOW()) returns the current day."
+msgstr "DAY(NOW()) thì trả về ngày hiện thời."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144877\n"
-"408\n"
+"func_day.xhp\n"
+"par_id3159190\n"
+"114\n"
"help.text"
-msgid "SIN"
-msgstr "SIN"
+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) trả về 5 nếu bạn nhập 1901-08-05 vào ô C4 (giá trị ngày tháng có thể được định dạng lại khi bạn bấm phím Enter)."
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144906\n"
-"409\n"
+"func_days.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SIN\">Trả về sin của góc đã cho (theo radian).</ahelp>"
+msgid "DAYS"
+msgstr "DAYS"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144923\n"
-"410\n"
+"func_days.xhp\n"
+"bm_id3151328\n"
+"help.text"
+msgid "<bookmark_value>DAYS function</bookmark_value>"
+msgstr "<bookmark_value>hàm DAYS</bookmark_value>"
+
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"hd_id3151328\n"
+"116\n"
+"help.text"
+msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
+msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">Hàm DAYS</link></variable>"
+
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3155139\n"
+"117\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
+msgstr "<ahelp hid=\"HID_FUNC_TAGE\">Tính hiệu của hai giá trị ngày tháng.</ahelp> Kết quả trả về số các ngày nằm giữa hai ngày tháng."
+
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"hd_id3155184\n"
+"118\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144937\n"
-"411\n"
+"func_days.xhp\n"
+"par_id3149578\n"
+"119\n"
"help.text"
-msgid "SIN(Number)"
-msgstr "SIN(Số)"
+msgid "DAYS(Date2; Date1)"
+msgstr "DAYS(Ngày2; Ngày1)"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144950\n"
-"412\n"
+"func_days.xhp\n"
+"par_id3151376\n"
+"120\n"
"help.text"
-msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
-msgstr "Trả về sin (lượng giác) của <emph>Số</emph>, góc theo radian."
+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>Ngày1</emph> là ngày bắt đầu, <emph>Ngày2</emph> là ngày kết thúc. Nếu <emph>Ngày2</emph> sớm hơn <emph>Ngày1</emph> thì kết quả là một số âm."
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8079470\n"
+"func_days.xhp\n"
+"hd_id3151001\n"
+"121\n"
"help.text"
-msgid "To return the sine of an angle in degrees, use the RADIANS function."
-msgstr "Để trả về sin của một góc theo độ, hãy dùng hàm RADIANS."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144969\n"
-"413\n"
+"func_days.xhp\n"
+"par_id3159101\n"
+"123\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
+msgstr "=DAYS(\"2010-01-01\"; NOW()) trả về số các ngày từ hôm nay đến ngày 1, tháng 1/2010."
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144983\n"
-"414\n"
+"func_days.xhp\n"
+"par_id3163720\n"
+"172\n"
"help.text"
-msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
-msgstr "<item type=\"input\">=SIN(PI()/2)</item> trả về 1, sin của π/2 radian."
+msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
+msgstr "=DAYS(\"1990-10-10\";\"1980-10-10\") trả về 3652 ngày."
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3916440\n"
+"func_days360.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
-msgstr "<item type=\"input\">=SIN(RADIANS(30))</item> trả về 0,5, sin của 30 độ."
+msgid "DAYS360"
+msgstr "DAYS360"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163397\n"
+"func_days360.xhp\n"
+"bm_id3148555\n"
"help.text"
-msgid "<bookmark_value>SINH function</bookmark_value>"
-msgstr "<bookmark_value>hàm SINH</bookmark_value>"
+msgid "<bookmark_value>DAYS360 function</bookmark_value>"
+msgstr "<bookmark_value>hàm DAYS360</bookmark_value>"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163397\n"
-"418\n"
+"func_days360.xhp\n"
+"hd_id3148555\n"
+"124\n"
"help.text"
-msgid "SINH"
-msgstr "SINH"
+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\">Hàm DAYS360</link></variable>"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163426\n"
-"419\n"
+"func_days360.xhp\n"
+"par_id3156032\n"
+"125\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Trả về sin hyperbol của một số.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">Trả về hiệu của hai ngày tháng dựa vào năm 360-ngày được dùng trong phép tính tiền lãi.</ahelp>"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163444\n"
-"420\n"
+"func_days360.xhp\n"
+"hd_id3155347\n"
+"126\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163457\n"
-"421\n"
+"func_days360.xhp\n"
+"par_id3155313\n"
+"127\n"
"help.text"
-msgid "SINH(Number)"
-msgstr "SINH(Số)"
+msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
+msgstr "DAYS360(\"Ngày1\"; \"Ngày2\"; Kiểu)"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163471\n"
-"422\n"
+"func_days360.xhp\n"
+"par_id3145263\n"
+"128\n"
"help.text"
-msgid "Returns the hyperbolic sine of <emph>Number</emph>."
-msgstr "Trả về sin hyperbol của <emph>Số</emph>."
+msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+msgstr "Nếu <emph>Ngày2</emph> sớm hơn <emph>Ngày1</emph>, thì hàm sẽ trả về một số âm."
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163491\n"
-"423\n"
+"func_days360.xhp\n"
+"par_id3151064\n"
+"129\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+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 "Đối số tùy chọn <emph>Kiểu</emph> xác định kiểu phép tính hiệu. Nếu Kiểu=0, hoặc nếu không đưa ra đối số này, thì dùng phương pháp Mỹ (NASD, Hiệp hội Quốc gia Nhà buôn bán Chứng khoán). Nếu Kiểu <> 0, thì dùng phương pháp Âu."
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163504\n"
-"424\n"
+"func_days360.xhp\n"
+"hd_id3148641\n"
+"130\n"
"help.text"
-msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
-msgstr "<item type=\"input\">=SINH(0)</item> trả về 0, sin hyperbol của 0."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163596\n"
+"func_days360.xhp\n"
+"par_id3156348\n"
+"132\n"
"help.text"
-msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
-msgstr "<bookmark_value>hàm SUM</bookmark_value><bookmark_value>cộng;các số trong một số phạm vi ô</bookmark_value>"
+msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
+msgstr "=DAYS360(\"2000-01-01\";NOW()) trả về số các ngày trả tiền lãi từ ngày 1, tháng 1/2000 đến ngày hôm nay."
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163596\n"
-"428\n"
+"func_eastersunday.xhp\n"
+"tit\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "EASTERSUNDAY"
+msgstr "EASTERSUNDAY"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163625\n"
-"429\n"
+"func_eastersunday.xhp\n"
+"bm_id3152960\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMME\">Cộng lại tất cả các số trong một phạm vi ô nào đó.</ahelp>"
+msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+msgstr "<bookmark_value>hàm EASTERSUNDAY</bookmark_value>"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163643\n"
-"430\n"
+"func_eastersunday.xhp\n"
+"hd_id3152960\n"
+"175\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+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\">Hàm EASTERSUNDAY</link></variable>"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163656\n"
-"431\n"
+"func_eastersunday.xhp\n"
+"par_id3154570\n"
+"176\n"
"help.text"
-msgid "SUM(Number1; Number2; ...; Number30)"
-msgstr "SUM(Số1; Số2; ...; Số30)"
+msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Trả về ngày tháng của hôm Chủ Nhật Phục Sinh cho năm đã nhập vào.</ahelp>"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163671\n"
-"432\n"
+"func_eastersunday.xhp\n"
+"hd_id9460127\n"
"help.text"
-msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
-msgstr "<emph>Số 1 đến 30</emph> là đến 30 đối số cần cộng lại."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163690\n"
-"433\n"
+"func_eastersunday.xhp\n"
+"par_id2113711\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "EASTERSUNDAY(Year)"
+msgstr "EASTERSUNDAY(Năm)"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163704\n"
-"434\n"
+"func_eastersunday.xhp\n"
+"par_id3938413\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
-msgstr "Nếu bạn nhập những số <item type=\"input\">2</item>; <item type=\"input\">3</item> và <item type=\"input\">4</item> trong những hộp văn bản 1, 2, 3 thì trả về 9."
+msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
+msgstr "<emph>Năm</emph> là một số nguyên nằm giữa 1583 và 9956, hay giữa 1 và 99. Bạn cũng có thể tính ngày nghỉ khác bằng phép cộng đơn giản dùng ngày tháng này."
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151740\n"
-"556\n"
+"func_eastersunday.xhp\n"
+"par_id3156156\n"
+"177\n"
"help.text"
-msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
-msgstr "<item type=\"input\">=SUM(A1;A3;B5)</item> tính tổng của ba ô. <item type=\"input\">=SUM (A1:E10)</item> tính tổng mọi ô trong phạm vi ô A1 đến E10."
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgstr "Hôm Thứ Hai Phục Sinh = EASTERSUNDAY(Năm) + 1"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151756\n"
-"619\n"
+"func_eastersunday.xhp\n"
+"par_id3147521\n"
+"178\n"
"help.text"
-msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
-msgstr "Các điều kiện được liên kết bằng toán tử AND (và) có thể được dùng với hàm SUM() (tổng) bằng cách này:"
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr "Hôm Thứ Sáu Tuần Thánh = EASTERSUNDAY(Năm) - 2"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151774\n"
-"620\n"
+"func_eastersunday.xhp\n"
+"par_id3146072\n"
+"179\n"
"help.text"
-msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
-msgstr "Giả sử (ví dụ): bạn đã nhập vào một bảng các danh đơn hàng gửi. Cột A chứa giá trị ngày tháng của đơn hàng gửi, còn cột B chứa các số tiền. Bạn muốn tìm một công thức có thể sử dụng đổ trả về tổng số tất cả các số tiền chỉ cho một tháng nào đó, v.d. chỉ tổng số tiền cho thời kỳ ≥2008-01-01 đến <2008-02-01. Phạm vi các giá trị ngày tháng thì trải ra A1:140, phạm vi các số tiền cần cộng là B1:B40. C1 chứa ngày bắt đầu, 2008<item type=\"input\">-01-01</item>, của các đơn hàng gửi cần bao gồm, và C2 chứa ngày, 2008<item type=\"input\">-02-01</item>, mà không còn được bao gồm lại."
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr "Hôm Chủ Nhật lễ Hạ trần = EASTERSUNDAY(Năm) + 49"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151799\n"
-"621\n"
+"func_eastersunday.xhp\n"
+"par_id3149553\n"
+"180\n"
"help.text"
-msgid "Enter the following formula as an array formula:"
-msgstr "Nhập công thức sau dưới dạng một công thức mảng:"
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgstr "Hôm Thứ Hai lễ Hạ trần = EASTERSUNDAY(Năm) + 50"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151813\n"
-"622\n"
+"func_eastersunday.xhp\n"
+"hd_id3155120\n"
+"181\n"
"help.text"
-msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
-msgstr "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151828\n"
-"623\n"
+"func_eastersunday.xhp\n"
+"par_id3154472\n"
+"182\n"
"help.text"
-msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
-msgstr "Để nhập chuỗi này dưới dạng một công thức mảng, bạn cần phải bấm tổ hợp phím Shift <switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline> + Enter thay vì bấm phím Enter để đóng công thức. Công thức đã nhập thì sẽ hiển thị trên thanh <emph>Công thức</emph>, nằm trong dấu ngoặc móc."
+msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
+msgstr "=EASTERSUNDAY(2000 trả về 2000-04-23."
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151869\n"
-"624\n"
+"func_eastersunday.xhp\n"
+"par_id3150940\n"
+"184\n"
"help.text"
-msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
-msgstr "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgid "EASTERSUNDAY(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 trả về số dãy nội bộ 36688. Kết quả là 2000-06-11. Hãy định dạng số ngày dãy dạng ngày tháng, v.d. theo định dạng NNăm-Th-Ng."
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151884\n"
-"625\n"
+"func_edate.xhp\n"
+"tit\n"
"help.text"
-msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
-msgstr "Công thức này dựa vào sự thật là kết quả của một phép so sánh là 1 nếu tiêu chuẩn thoả, không thì 0. Các kết quả so sánh riêng sẽ được xử lý dạng mảng và được dùng để nhân ma trận; cuối cùng, các giá trị riêng sẽ được cộng lại để tạo ma trận kết quả."
+msgid "EDATE"
+msgstr "EDATE"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151957\n"
+"func_edate.xhp\n"
+"bm_id3151184\n"
"help.text"
-msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm SUMIF</bookmark_value><bookmark_value>cộng;những số đã ghi rõ</bookmark_value>"
+msgid "<bookmark_value>EDATE function</bookmark_value>"
+msgstr "<bookmark_value>hàm EDATE</bookmark_value>"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151957\n"
-"436\n"
+"func_edate.xhp\n"
+"hd_id3151184\n"
+"213\n"
"help.text"
-msgid "SUMIF"
-msgstr "SUMIF"
+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\">Hàm EDATE</link></variable>"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151986\n"
-"437\n"
+"func_edate.xhp\n"
+"par_id3150880\n"
+"214\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
-msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Thêm những ô được ghi rõ bởi một tiêu chuẩn đã cho.</ahelp> Hàm này được dùng để duyệt qua một phạm vi khi bạn tìm một giá trị nào đó."
+msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">Kết quả là một ngày tháng mà cách <emph>ngày bắt đầu</emph> một số <emph>tháng</emph>. Chỉ tính theo tháng, không dùng ngày cho phép tính này.</ahelp>"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152015\n"
-"438\n"
+"func_edate.xhp\n"
+"hd_id3154647\n"
+"215\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152028\n"
-"439\n"
+"func_edate.xhp\n"
+"par_id3153212\n"
+"216\n"
"help.text"
-msgid "SUMIF(Range; Criteria; SumRange)"
-msgstr "SUMIF(Phạm_vi; Tiêu_chuẩn; Phạm_vi_tổng)"
+msgid "EDATE(StartDate; Months)"
+msgstr "EDATE(Ngày_đầu; Tháng)"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152043\n"
-"440\n"
+"func_edate.xhp\n"
+"par_id3146860\n"
+"217\n"
"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "<emph>Phạm_vi</emph> là phạm vi cho đó các tiêu chuẩn sẽ được áp dụng."
+msgid "<emph>StartDate</emph> is a date."
+msgstr "<emph>Ngày_đầu</emph> là ngày bắt đầu, một ngày tháng."
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152062\n"
-"441\n"
+"func_edate.xhp\n"
+"par_id3152929\n"
+"218\n"
"help.text"
-msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
-msgstr "<emph>Tiêu_chuẩn</emph> là ô hiển thị các tiêu chuẩn tìm kiếm, hoặc tiêu chuẩn tìm kiếm chính nó. Để ghi tiêu chuẩn bên trong công thức, bao quanh nó trong nháy kép."
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Tháng</emph> là số các tháng nằm trước (âm) hay sau (dương) ngày bắt đầu."
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152083\n"
-"442\n"
+"func_edate.xhp\n"
+"hd_id3151289\n"
+"219\n"
"help.text"
-msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
-msgstr "<emph>Phạm_vi_tổng</emph> là phạm vi từ đó cộng lại các giá trị. Không đưa ra tham số này thì cộng lại các giá trị nằm trong Phạm_vi."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8347422\n"
+"func_edate.xhp\n"
+"par_id3155845\n"
+"220\n"
"help.text"
-msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
-msgstr "Hàm SUMIF hỗ trợ toán tử ghép dãy tham chiếu (~) chỉ trong tham số Criteria (tiêu chuẩn), và chỉ nếu không đưa ra tham số SumRange (phạm vi tổng)."
+msgid "What date is one month prior to 3.31.2001?"
+msgstr "Ngày nào nằm một tháng trước 3.31.2001?"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152110\n"
-"443\n"
+"func_edate.xhp\n"
+"par_id3155999\n"
+"221\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
+msgstr "<item type=\"input\">=EDATE(3.31.2001;-1)</item> trả về 2.28.2001."
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152148\n"
-"626\n"
+"func_eomonth.xhp\n"
+"tit\n"
"help.text"
-msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
-msgstr "Để cộng lại chỉ những số âm: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgid "EOMONTH"
+msgstr "EOMONTH"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6670125\n"
+"func_eomonth.xhp\n"
+"bm_id3150991\n"
"help.text"
-msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
-msgstr "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> — cộng lại những giá trị từ phạm vi B1:B10 chỉ nếu những giá trị tương ứng trong phạm vi A1:A10 >0."
+msgid "<bookmark_value>EOMONTH function</bookmark_value>"
+msgstr "<bookmark_value>hàm EOMONTH</bookmark_value>"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6062196\n"
+"func_eomonth.xhp\n"
+"hd_id3150991\n"
+"231\n"
"help.text"
-msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
-msgstr "Xem hàm COUNTIF() để tìm thêm mẫu ví dụ cú pháp có thể dùng với hàm SUMIF()."
+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\">Hàm EOMONTH</link></variable>"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152195\n"
+"func_eomonth.xhp\n"
+"par_id3152766\n"
+"232\n"
"help.text"
-msgid "<bookmark_value>TAN function</bookmark_value>"
-msgstr "<bookmark_value>hàm TAN</bookmark_value>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Trả về ngày tháng của ngày cuối cùng của một tháng cách <emph>ngày bắt đầu</emph> mấy tháng.</ahelp>"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152195\n"
-"446\n"
+"func_eomonth.xhp\n"
+"hd_id3150597\n"
+"233\n"
"help.text"
-msgid "TAN"
-msgstr "TAN"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152224\n"
-"447\n"
+"func_eomonth.xhp\n"
+"par_id3150351\n"
+"234\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TAN\">Trả về tang của góc đã cho (theo radian).</ahelp>"
+msgid "EOMONTH(StartDate; Months)"
+msgstr "EOMONTH(Ngày_đầu; Tháng)"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152242\n"
-"448\n"
+"func_eomonth.xhp\n"
+"par_id3146787\n"
+"235\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr "<emph>Ngày_đầu</emph> là ngày bắt đầu phép tính, một ngày tháng."
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152255\n"
-"449\n"
+"func_eomonth.xhp\n"
+"par_id3155615\n"
+"236\n"
"help.text"
-msgid "TAN(Number)"
-msgstr "TAN(Số)"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Tháng</emph> là số các tháng nằm trước (âm) hay sau (dương) ngày bắt đầu."
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152269\n"
-"450\n"
+"func_eomonth.xhp\n"
+"hd_id3156335\n"
+"237\n"
"help.text"
-msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
-msgstr "Trả về tang (lượng giác) của <emph>Số</emph>, góc theo radian."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5752128\n"
+"func_eomonth.xhp\n"
+"par_id3154829\n"
+"238\n"
"help.text"
-msgid "To return the tangent of an angle in degrees, use the RADIANS function."
-msgstr "Để trả về tang của một góc theo độ, hãy dùng hàm RADIANS."
+msgid "What is the last day of the month that falls 6 months after September 14 2001?"
+msgstr "Tháng nằm 6 tháng sau ngày 15, tháng 9/2001 kết thúc vào ngày nào?"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152287\n"
-"451\n"
+"func_eomonth.xhp\n"
+"par_id3156143\n"
+"239\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
+msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152301\n"
-"452\n"
+"func_eomonth.xhp\n"
+"par_id3156144\n"
+"239\n"
"help.text"
-msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
-msgstr "<item type=\"input\">=TAN(PI()/4) </item> trả về 1, tang của π/4 radian."
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgstr ""
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1804864\n"
+"func_hour.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
-msgstr "<item type=\"input\">=TAN(RADIANS(45))</item> trả về 1, tang của 45 độ."
+msgid "HOUR"
+msgstr "HOUR"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3165434\n"
+"func_hour.xhp\n"
+"bm_id3154725\n"
"help.text"
-msgid "<bookmark_value>TANH function</bookmark_value>"
-msgstr "<bookmark_value>hàm TANH</bookmark_value>"
+msgid "<bookmark_value>HOUR function</bookmark_value>"
+msgstr "<bookmark_value>hàm HOUR</bookmark_value>"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165434\n"
-"456\n"
+"func_hour.xhp\n"
+"hd_id3154725\n"
+"96\n"
"help.text"
-msgid "TANH"
-msgstr "TANH"
+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\">Hàm HOUR</link></variable>"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165462\n"
-"457\n"
+"func_hour.xhp\n"
+"par_id3149747\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TANHYP\">Trả về tang hyperbol của một số.</ahelp>"
+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\">Trả về giờ (tiếng) trong một giá trị thời gian đã cho.</ahelp> Giờ được trả về dưới dạng một số nguyên nằm giữa 0 và 23."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165480\n"
-"458\n"
+"func_hour.xhp\n"
+"hd_id3149338\n"
+"98\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165494\n"
-"459\n"
+"func_hour.xhp\n"
+"par_id3150637\n"
+"99\n"
"help.text"
-msgid "TANH(Number)"
-msgstr "TANH(Số)"
+msgid "HOUR(Number)"
+msgstr "HOUR(Số)"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165508\n"
-"460\n"
+"func_hour.xhp\n"
+"par_id3147547\n"
+"100\n"
"help.text"
-msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
-msgstr "Trả về tang hyperbol của <emph>Số</emph>."
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
+msgstr "<emph>Số</emph> là một giá trị thời gian dạng thập lục, cho đó cần trả về phần giờ."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165527\n"
-"461\n"
+"func_hour.xhp\n"
+"hd_id3153264\n"
+"101\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165541\n"
-"462\n"
+"func_hour.xhp\n"
+"par_id3159215\n"
+"103\n"
"help.text"
-msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
-msgstr "<item type=\"input\">=TANH(0)</item> trả về 0, tang hyperbol của 0."
+msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
+msgstr "<item type=\"input\">=HOUR(NOW())</item> trả về giờ (không có phút) hiện thời."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3165633\n"
+"func_hour.xhp\n"
+"par_id3145152\n"
+"104\n"
"help.text"
-msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
-msgstr "<bookmark_value>chức năng tự động lọc; subtotals</bookmark_value><bookmark_value>tổng;các dữ liệu đã lọc</bookmark_value><bookmark_value>dữ liệu đã lọc; tổng</bookmark_value><bookmark_value>hàm SUBTOTAL</bookmark_value>"
+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> trả về 17 nếu nội dung của ô C4 = <item type=\"input\">17:20:00</item>."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165633\n"
-"466\n"
+"func_hour.xhp\n"
+"par_id3154188\n"
+"105\n"
"help.text"
-msgid "SUBTOTAL"
-msgstr "SUBTOTAL"
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165682\n"
-"467\n"
+"func_minute.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
-msgstr "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Tính tổng phụ.</ahelp> Nếu một phạm vi nào đó đã chứa tổng phụ, chúng không được dùng để tính nữa. Hãy dùng hàm này với các bộ lọc tự động để xử lý những bản ghi đã được lọc mà thôi."
+msgid "MINUTE"
+msgstr "MINUTE"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165704\n"
-"495\n"
+"func_minute.xhp\n"
+"bm_id3149803\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<bookmark_value>MINUTE function</bookmark_value>"
+msgstr "<bookmark_value>hàm MINUTE</bookmark_value>"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165717\n"
-"496\n"
+"func_minute.xhp\n"
+"hd_id3149803\n"
+"66\n"
"help.text"
-msgid "SUBTOTAL(Function; Range)"
-msgstr "SUBTOTAL(Hàm; Phạm_vi)"
+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\">Hàm MINUTE</link></variable>"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165731\n"
-"497\n"
+"func_minute.xhp\n"
+"par_id3148988\n"
+"67\n"
"help.text"
-msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
-msgstr "<emph>Hàm</emph> là một số đại diện một của những hàm theo đây:"
+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\">Tính phần phút của một giá trị thời gian nội bộ.</ahelp> Số phút được trả về dưới dạng một số nằm giữa 0 và 59."
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165782\n"
-"469\n"
+"func_minute.xhp\n"
+"hd_id3154343\n"
+"68\n"
"help.text"
-msgid "Function index"
-msgstr "Chỉ mục hàm"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165806\n"
-"470\n"
+"func_minute.xhp\n"
+"par_id3148660\n"
+"69\n"
"help.text"
-msgid "Function"
-msgstr "Hàm"
+msgid "MINUTE(Number)"
+msgstr "MINUTE(Số)"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165833\n"
-"471\n"
+"func_minute.xhp\n"
+"par_id3154611\n"
+"70\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
+msgstr "<emph>Số</emph> là một giá trị thời gian kiểu thập phân, từ đó cần trả về phần phút."
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165856\n"
-"472\n"
+"func_minute.xhp\n"
+"hd_id3145374\n"
+"71\n"
"help.text"
-msgid "AVERAGE"
-msgstr "AVERAGE"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165883\n"
-"473\n"
+"func_minute.xhp\n"
+"par_id3148463\n"
+"72\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
+msgstr "<item type=\"input\">=MINUTE(8.999)</item> trả về 58"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165906\n"
-"474\n"
+"func_minute.xhp\n"
+"par_id3149419\n"
+"73\n"
"help.text"
-msgid "COUNT"
-msgstr "COUNT"
+msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
+msgstr "<item type=\"input\">=MINUTE(8.9999)</item> trả về 59"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165933\n"
-"475\n"
+"func_minute.xhp\n"
+"par_id3144755\n"
+"74\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
+msgstr "<item type=\"input\">=MINUTE(NOW())</item> trả về giá trị phút hiện thời."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165956\n"
-"476\n"
+"func_month.xhp\n"
+"tit\n"
"help.text"
-msgid "COUNTA"
-msgstr "COUNTA"
+msgid "MONTH"
+msgstr "MONTH"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165983\n"
-"477\n"
+"func_month.xhp\n"
+"bm_id3149936\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<bookmark_value>MONTH function</bookmark_value>"
+msgstr "<bookmark_value>hàm MONTH</bookmark_value>"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166006\n"
-"478\n"
+"func_month.xhp\n"
+"hd_id3149936\n"
+"76\n"
"help.text"
-msgid "MAX"
-msgstr "MAX"
+msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">Hàm MONTH</link></variable>"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166033\n"
-"479\n"
+"func_month.xhp\n"
+"par_id3153538\n"
+"77\n"
"help.text"
-msgid "5"
-msgstr "5"
+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\">Trả về phần tháng của giá trị ngày tháng đã cho.</ahelp> Phần tháng được trả về dưới dạng một số nguyên nằm giữa 1 và 12."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166056\n"
-"480\n"
+"func_month.xhp\n"
+"hd_id3149517\n"
+"78\n"
"help.text"
-msgid "MIN"
-msgstr "MIN"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143316\n"
-"481\n"
+"func_month.xhp\n"
+"par_id3145602\n"
+"79\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "MONTH(Number)"
+msgstr "MONTH(Số)"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143339\n"
-"482\n"
+"func_month.xhp\n"
+"par_id3149485\n"
+"80\n"
"help.text"
-msgid "PRODUCT"
-msgstr "PRODUCT"
+msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
+msgstr "<emph>Số</emph> là một giá trị thời gian dạng thập phân, cho đó cần trả về phần tháng."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143366\n"
-"483\n"
+"func_month.xhp\n"
+"hd_id3153322\n"
+"81\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143389\n"
-"484\n"
+"func_month.xhp\n"
+"par_id3149244\n"
+"83\n"
"help.text"
-msgid "STDEV"
-msgstr "STDEV"
+msgid "=MONTH(NOW()) returns the current month."
+msgstr "=MONTH(NOW()) trả về tháng hiện thời."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143416\n"
-"485\n"
+"func_month.xhp\n"
+"par_id3154790\n"
+"84\n"
"help.text"
-msgid "8"
-msgstr "8"
+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) trả về 7 nếu bạn nhập 2000-07-07 vào ô C4 (giá trị ngày tháng này có thể được định dạng khác một khi bạn bấm phím Enter)."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143439\n"
-"486\n"
+"func_networkdays.xhp\n"
+"tit\n"
"help.text"
-msgid "STDEVP"
-msgstr "STDEVP"
+msgid "NETWORKDAYS"
+msgstr "NETWORKDAYS"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143466\n"
-"487\n"
+"func_networkdays.xhp\n"
+"bm_id3151254\n"
"help.text"
-msgid "9"
-msgstr "9"
+msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
+msgstr "<bookmark_value>hàm NETWORKDAYS</bookmark_value>"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143489\n"
-"488\n"
+"func_networkdays.xhp\n"
+"hd_id3151254\n"
+"240\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">Hàm NETWORKDAYS</link></variable>"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143516\n"
-"489\n"
+"func_networkdays.xhp\n"
+"par_id3153788\n"
+"241\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Trả về số các ngày làm việc nằm giữa một <emph>ngày đầu</emph> và <emph>ngày cuối</emph>. Cũng có thể trờ các ngày nghỉ.</ahelp>"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143539\n"
-"490\n"
+"func_networkdays.xhp\n"
+"hd_id3148677\n"
+"242\n"
"help.text"
-msgid "VAR"
-msgstr "VAR"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143566\n"
-"491\n"
+"func_networkdays.xhp\n"
+"par_id3145775\n"
+"243\n"
"help.text"
-msgid "11"
-msgstr "11"
+msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
+msgstr "NETWORKDAYS(Ngày_đầu; Ngày_cuối; Ngày_nghỉ)"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143589\n"
-"492\n"
+"func_networkdays.xhp\n"
+"par_id3153885\n"
+"244\n"
"help.text"
-msgid "VARP"
-msgstr "VARP"
+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>Ngày_đầu</emph> là ngày từ đó cần tính. Nếu ngày đầu là một ngày làm việc thì nó cũng được bao gồm trong phép tính."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143606\n"
-"498\n"
+"func_networkdays.xhp\n"
+"par_id3151110\n"
+"245\n"
"help.text"
-msgid "<emph>Range</emph> is the range whose cells are included."
-msgstr "<emph>Phạm vi</emph> là phạm vi các ô được bao gồm."
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr "<emph>Ngày_cuối</emph> là ngày đến đó cần tính. Nếu ngày cuối là một ngày làm việc thì nó cũng được bao gồm trong phép tính."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3143625\n"
-"499\n"
+"func_networkdays.xhp\n"
+"par_id3154115\n"
+"246\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Ngày_nghỉ</emph> (tùy chọn) là một danh sách các ngày nghỉ (ngày không đi làm). Hãy nhập một phạm vi ô trong đó mỗi ô chứa một ngày nghỉ."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143638\n"
-"562\n"
+"func_networkdays.xhp\n"
+"hd_id3146902\n"
+"247\n"
"help.text"
-msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
-msgstr "Bạn có một bảng trong phạm vi ô « A1:B5 » chứa các thành phố trong cột A, và các số tương ứng trong cột B. Bạn đã sử dụng một bộ lọc tự động để hiển thị chỉ những hàm chứa thành phố Hamburg. Bạn muốn thấy tổng số các hình được hiển thị; tức là, chỉ tổng phụ cho những hàng đã lọc. Trong trường hợp này, công thức đúng là:"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143658\n"
-"563\n"
+"func_networkdays.xhp\n"
+"par_id3154661\n"
+"248\n"
"help.text"
-msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
-msgstr "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "Bao nhiêu ngày làm việc nằm giữa ngày 2001-12-15 và 2002-01-15? Ngày đầu nằm trong ô C3 và ngày cuối trong D3. Phạm vi các ô F3 đến J3 chứa những ngày nghỉ Nô-en và Năm Mới (Phương Tây): \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3143672\n"
+"func_networkdays.xhp\n"
+"par_id3147328\n"
+"249\n"
"help.text"
-msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
-msgstr "<bookmark_value>đồng Âu; chuyển đổi theo</bookmark_value><bookmark_value>hàm CONVERT</bookmark_value><bookmark_value>đồng Euro; chuyển đổi theo</bookmark_value>"
+msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
+msgstr "=NETWORKDAYS(C3;D3;F3:J3) trả về 17 ngày làm việc."
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3143672\n"
-"564\n"
+"func_now.xhp\n"
+"tit\n"
"help.text"
-msgid "EUROCONVERT"
-msgstr "EUROCONVERT"
+msgid "NOW"
+msgstr "NOW"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143708\n"
-"565\n"
+"func_now.xhp\n"
+"bm_id3150521\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Chuyển đổi tiền tệ Châu Âu cũ sang và từ đồng Âu (Euro €).</ahelp>"
+msgid "<bookmark_value>NOW function</bookmark_value>"
+msgstr "<bookmark_value>hàm NOW</bookmark_value>"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143731\n"
-"566\n"
+"func_now.xhp\n"
+"hd_id3150521\n"
+"47\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Cú pháp</emph>"
+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\">Hàm NOW</link></variable>"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143748\n"
-"567\n"
+"func_now.xhp\n"
+"par_id3148829\n"
+"48\n"
"help.text"
-msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
-msgstr "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+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\">Trả về ngày và giờ của hệ thống máy tính.</ahelp> Giá trị này được cập nhật khi nào bạn tính lại tài liệu, hay mỗi lần sửa đổi một giá trị ô."
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143763\n"
-"568\n"
+"func_now.xhp\n"
+"hd_id3146988\n"
+"49\n"
"help.text"
-msgid "<emph>Value</emph> is the amount of the currency to be converted."
-msgstr "<emph>Giá trị</emph> là số tiền cần chuyển đổi."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143782\n"
-"569\n"
+"func_now.xhp\n"
+"par_id3154897\n"
+"50\n"
"help.text"
-msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
-msgstr "<emph>Tiền_tệ1</emph> và <emph>Tiền_tệ2</emph> là đơn vị tiền tệ cần chuyển đổi từ và sang, riêng từng số. Đơn vị này phải được ghi rõ theo văn bản, từ viết tắt chính thức cho tiền tệ đó (.v.d. « EUR »). Các tỷ lê (được hiển thị cho mỗi đồng Âu) đa được Hội Đồng Âu đặt."
+msgid "NOW()"
+msgstr "NOW()"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301810\n"
+"func_now.xhp\n"
+"par_id4598529\n"
"help.text"
-msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
-msgstr "<emph>Full_precision</emph> là tùy chọn. Nếu bỏ qua hoặc trị là False, kết quả được làm tròn theo dạng thập phân của tiền tệ đổi tới. Nếu Full_precision có trị là True, kết quả không được làm tròn."
+msgid "NOW is a function without arguments."
+msgstr "NOW là một hàm không chấp nhận đối số."
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301815\n"
+"func_now.xhp\n"
+"hd_id3154205\n"
+"51\n"
"help.text"
-msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
-msgstr "<emph>Triangulation_precision</emph> là tùy chọn. Nếu Triangulation_precision được cho và trị >=3, kết quả trung gian của phép chuyển đổi ba bên (currency1,EUR,currency2) được làm tròn với độ chính xác đó. Nếu Triangulation_precision bị bỏ qua, kết quả trung gian không được làm tròn. Cũng vậy nếu Tiền tệ đổi tới là \"EUR\", Triangulation_precision được dùng mỗi khi cần có ba bên, và chuyển đổi từ EUR tới EUR được dùng."
+msgid "Example"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143819\n"
-"570\n"
+"func_now.xhp\n"
+"par_id3150774\n"
+"52\n"
"help.text"
-msgid "<emph>Examples</emph>"
-msgstr "<emph>Vi dụ</emph>"
+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> trả về hiệu của ngày tháng trong A1 và bây giờ. Định dạng kết quả dạng số."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143837\n"
-"571\n"
+"func_second.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
-msgstr "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> thì chuyển đổi 100 đồng silinh Ảo sang đồng Âu."
+msgid "SECOND"
+msgstr "SECOND"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143853\n"
-"572\n"
+"func_second.xhp\n"
+"bm_id3159390\n"
"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
-msgstr "<item type=\"input\">=CONVERT(100;\"EUR\";\"DEM\")</item> thì chuyển đổi 100 đồng Âu sang đồng Mác Đức."
+msgid "<bookmark_value>SECOND function</bookmark_value>"
+msgstr "<bookmark_value>hàm SECOND</bookmark_value>"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id0908200902090676\n"
+"func_second.xhp\n"
+"hd_id3159390\n"
+"86\n"
"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr "<bookmark_value>hàm COVAR</bookmark_value>"
+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\">Hàm SECOND</link></variable>"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902074836\n"
+"func_second.xhp\n"
+"par_id3148974\n"
+"87\n"
"help.text"
-msgid "CONVERT"
-msgstr "CONVERT"
+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\">Trả về phần giây của giá trị thời gian đã cho.</ahelp> Phần giây được trả về dưới dạng một số nguyên nằm giữa 0 và 59."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131122\n"
+"func_second.xhp\n"
+"hd_id3154362\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
-msgstr "<ahelp hid=\".\">Chuyển đổi một giá trị từ đơn vị đo này tới đơn vị đo khác. Các thừa số chuyển đổi được cho trong một danh sách trong phần cấu hình.</ahelp>"
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475420\n"
+"func_second.xhp\n"
+"par_id3148407\n"
+"89\n"
"help.text"
-msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
-msgstr "Một khi trong danh sách các thừa số chuyển đổi có gồm các tiền tệ cổ truyền châu Âu và đồng Ơ-rô (xem ví dụ dưới đây). Chúng tôi khuyến nghị dùng hàm mới EUROCONVERT để chuyển đổi loại tiền tệ đó."
+msgid "SECOND(Number)"
+msgstr "SECOND(Số)"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131071\n"
+"func_second.xhp\n"
+"par_id3155904\n"
+"90\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
+msgstr "<emph>Số</emph> là một giá trị thời gian, cho đó cần trả về phần giây."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131191\n"
+"func_second.xhp\n"
+"hd_id3149992\n"
+"91\n"
"help.text"
-msgid "CONVERT(value;\"text\";\"text\")"
-msgstr "CONVERT(value;\"text\";\"text\")"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131152\n"
+"func_second.xhp\n"
+"par_id3153350\n"
+"93\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
+msgstr "<item type=\"input\">=SECOND(NOW())</item> trả về phần giây của thời gian hiện thời."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id090820090213112\n"
+"func_second.xhp\n"
+"par_id3150831\n"
+"94\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
-msgstr "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> trả về giá trị theo đồng Ơ-rô của 100 Si-linh Áo."
+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> trả về 17 nếu nội dung của ô C4 = <item type=\"input\">12:20:17</item>."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475431\n"
+"func_time.xhp\n"
+"tit\n"
"help.text"
-msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
-msgstr "=CONVERT(100;\"EUR\";\"DEM\") chuyển đổi 100 Ơ-rô thành đồng Mác Đức."
+msgid "TIME"
+msgstr "TIME"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157177\n"
+"func_time.xhp\n"
+"bm_id3154073\n"
"help.text"
-msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
-msgstr "<bookmark_value>hàm ODD</bookmark_value><bookmark_value>làm tròn;lên/xuống số nguyên lẻ gần nhất</bookmark_value>"
+msgid "<bookmark_value>TIME function</bookmark_value>"
+msgstr "<bookmark_value>hàm TIME</bookmark_value>"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157177\n"
-"502\n"
+"func_time.xhp\n"
+"hd_id3154073\n"
+"149\n"
"help.text"
-msgid "ODD"
-msgstr "ODD"
+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\">Hàm TIME</link></variable>"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157205\n"
-"503\n"
+"func_time.xhp\n"
+"par_id3145762\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UNGERADE\">Làm tròn một số dương lên số nguyên lẻ gần nhất, và làm tròn một số âm xuống số nguyên lẻ gần nhất.</ahelp>"
+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\">Hàm TIME trả về giá trị thời gian hiện thời từ các giá trị giờ, phút và giây.</ahelp> Hàm này có thể được dùng để chuyển đổi một thời gian dựa vào ba giá trị đó sang một giá trị thời gian thập phân."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157223\n"
-"504\n"
+"func_time.xhp\n"
+"hd_id3155550\n"
+"151\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157237\n"
-"505\n"
+"func_time.xhp\n"
+"par_id3154584\n"
+"152\n"
"help.text"
-msgid "ODD(Number)"
-msgstr "ODD(Số)"
+msgid "TIME(Hour; Minute; Second)"
+msgstr "TIME(Giờ; Phút; Giây)"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157250\n"
-"506\n"
+"func_time.xhp\n"
+"par_id3152904\n"
+"153\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
-msgstr "Trả về <emph>Số</emph> được làm tròn lên số nguyên lẻ gần nhất, về hướng khác với số 0."
+msgid "Use an integer to set the <emph>Hour</emph>."
+msgstr "Đặt <emph>Giờ</emph> là một số nguyên."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157270\n"
-"507\n"
+"func_time.xhp\n"
+"par_id3151346\n"
+"154\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Use an integer to set the <emph>Minute</emph>."
+msgstr "Đặt <emph>Phút</emph> là một số nguyên."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157283\n"
-"508\n"
+"func_time.xhp\n"
+"par_id3151366\n"
+"155\n"
"help.text"
-msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "Use an integer to set the <emph>Second</emph>."
+msgstr "Đặt <emph>Giây</emph> là một số nguyên."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8746910\n"
+"func_time.xhp\n"
+"hd_id3145577\n"
+"156\n"
"help.text"
-msgid "<item type=\"input\">=ODD(1)</item> returns 1."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> trả về 1."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9636524\n"
+"func_time.xhp\n"
+"par_id3156076\n"
+"157\n"
"help.text"
-msgid "<item type=\"input\">=ODD(0)</item> returns 1."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> trả về 1."
+msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
+msgstr "<item type=\"input\">=TIME(0;0;0)</item> trả về 00:00:00"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5675527\n"
+"func_time.xhp\n"
+"par_id3156090\n"
+"158\n"
"help.text"
-msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> trả về 1."
+msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
+msgstr "<item type=\"input\">=TIME(4;20;4)</item> trả về 04:20:04"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157404\n"
+"func_timevalue.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
-msgstr "<bookmark_value>hàm FLOOR</bookmark_value><bookmark_value>làm tròn;xuống bội số gần nhất có mức độ thống kê</bookmark_value>"
+msgid "TIMEVALUE"
+msgstr "TIMEVALUE"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157404\n"
-"512\n"
+"func_timevalue.xhp\n"
+"bm_id3146755\n"
"help.text"
-msgid "FLOOR"
-msgstr "FLOOR"
+msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>hàm TIMEVALUE</bookmark_value>"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157432\n"
-"513\n"
+"func_timevalue.xhp\n"
+"hd_id3146755\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Làm tròn một số xuống bội số gần nhất có mức độ thống kê.</ahelp>"
+msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
+msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">Hàm TIMEVALUE</link></variable>"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157451\n"
-"514\n"
+"func_timevalue.xhp\n"
+"par_id3148502\n"
+"161\n"
"help.text"
-msgid "Syntax"
-msgstr "Cú pháp"
+msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">Hàm TIMEVALUE trả về số thời gian nội bộ từ một chuỗi văn bản nằm giữa nháy kép mà có thể hiển thị một định dạng mục nhập thời gian có thể dùng.</ahelp>"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157464\n"
-"515\n"
+"func_timevalue.xhp\n"
+"par_id3150794\n"
+"162\n"
"help.text"
-msgid "FLOOR(Number; Significance; Mode)"
-msgstr "FLOOR(Số; Mức_thống_kê; Chế_độ)"
+msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
+msgstr "Số nội bộ được ngụ ý dạng thập phân là kết quả của hệ thống dữ liệu được dùng dưới $[officename] để tính mục nhập dữ liệu."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157478\n"
-"516\n"
+"func_timevalue.xhp\n"
+"par_id011920090347118\n"
"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded down."
-msgstr "<emph>Số</emph> là số cần làm tròn."
+msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+msgstr "Nếu chuỗi văn bản có chứa năm, tháng, hoặc ngày, TIMEVALUE chỉ trả về phần lẻ thập phân của chuyển đổi."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157497\n"
-"517\n"
+"func_timevalue.xhp\n"
+"hd_id3150810\n"
+"163\n"
"help.text"
-msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
-msgstr "<emph>Mức_thống_kê</emph> là số chữ số có nghĩa khi làm tròn số."
+msgid "Syntax"
+msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157517\n"
-"561\n"
+"func_timevalue.xhp\n"
+"par_id3150823\n"
+"164\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr "<emph>Chế_độ</emph> là một giá trị tùy chọn. Nếu đưa ra giá trị Chế_độ khác 0, và nếu Số & Mức_thống_kê là âm, thì làm tròn dựa vào giá trị tuyệt đối của số. Tham số này bị bỏ qua khi xuất dạng MS Excel, vì Excel không nhận ra tham số thứ ba."
+msgid "TIMEVALUE(\"Text\")"
+msgstr "TIMEVALUE(\"Chuỗi\")"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163894\n"
-"630\n"
+"func_timevalue.xhp\n"
+"par_id3152556\n"
+"165\n"
"help.text"
-msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
-msgstr "Nếu cả hai tham số Số và Mức_thống_kê đều là âm và giá trị Chế_độ bằng số không hay không đưa a, thì có kết quả khác nhau trong hai chương trình $[officename] và Excel sau khi xuất ra. Vì vậy, nếu bạn xuất bảng tính sang Excel, hãy dùng Chế_độ=1 để thấy cùng một kết quả trong cả hai Excel và Calc."
+msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
+msgstr "<emph>Chuỗi</emph> là một biểu thức thời gian hợp lệ mà phải được nhập vào giữa nháy kép."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163932\n"
-"518\n"
+"func_timevalue.xhp\n"
+"hd_id3146815\n"
+"166\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163945\n"
-"519\n"
+"func_timevalue.xhp\n"
+"par_id3146829\n"
+"167\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
-msgstr "<item type=\"input\">=FLOOR( -11;-2)</item> trả về -12"
+msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+msgstr "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> trả về 0,67. Theo định dạng Gi:Ph:Gy thì có 16:00:00."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163966\n"
-"520\n"
+"func_timevalue.xhp\n"
+"par_id3153632\n"
+"168\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
-msgstr "<item type=\"input\">=FLOOR( -11;-2;0)</item> trả về -12"
+msgid "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
+msgstr "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> trả về 1. Nếu bạn sử dụng định dạng thời gian Gi:Ph:Gy, giá trị là 00:00:00."
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163988\n"
-"521\n"
+"func_today.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
-msgstr "<item type=\"input\">=FLOOR( -11;-2;1)</item> trả về -10"
+msgid "TODAY"
+msgstr "TODAY"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164086\n"
+"func_today.xhp\n"
+"bm_id3145659\n"
"help.text"
-msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
-msgstr "<bookmark_value>hàm SIGN</bookmark_value><bookmark_value>dấu đại số</bookmark_value>"
+msgid "<bookmark_value>TODAY function</bookmark_value>"
+msgstr "<bookmark_value>hàm TODAY</bookmark_value>"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164086\n"
-"523\n"
+"func_today.xhp\n"
+"hd_id3145659\n"
+"29\n"
"help.text"
-msgid "SIGN"
-msgstr "SIGN"
+msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">Hàm TODAY</link></variable>"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164115\n"
-"524\n"
+"func_today.xhp\n"
+"par_id3153759\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Trả về dấu (+/-) của một số. Trả về 1 nếu số là dương, -1 nếu là âm, và 0 nếu là số 0.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
+msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">Trả về ngày tháng hiện thời của hệ thống trên máy tính đó.</ahelp> Giá trị được cập nhật khi bạn mở lại tài liệu hay sửa đổi giá trị của tài liệu."
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164136\n"
-"525\n"
+"func_today.xhp\n"
+"hd_id3154051\n"
+"31\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164150\n"
-"526\n"
+"func_today.xhp\n"
+"par_id3153154\n"
+"32\n"
"help.text"
-msgid "SIGN(Number)"
-msgstr "SIGN(Số)"
+msgid "TODAY()"
+msgstr "TODAY()"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164164\n"
-"527\n"
+"func_today.xhp\n"
+"par_id3154741\n"
+"33\n"
"help.text"
-msgid "<emph>Number</emph> is the number whose sign is to be determined."
-msgstr "<emph>Số</emph> là số có dấu (+/-) cần quyết định."
+msgid "TODAY is a function without arguments."
+msgstr "Hàm TODAY không chấp nhận đối số."
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164183\n"
-"528\n"
+"func_today.xhp\n"
+"hd_id3153627\n"
+"34\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164197\n"
-"529\n"
+"func_today.xhp\n"
+"par_id3156106\n"
+"35\n"
"help.text"
-msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
-msgstr "<item type=\"input\">=GESTEP(5;1)</item> trả về 1."
+msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgstr "<item type=\"input\">TODAY()</item> trả về ngày tháng hiện thời của máy tính trên máy tính đó."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164212\n"
-"530\n"
+"func_weekday.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
-msgstr "<item type=\"input\">=N(TRUE)</item> trả về 1"
+msgid "WEEKDAY"
+msgstr "WEEKDAY"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164252\n"
+"func_weekday.xhp\n"
+"bm_id3154925\n"
"help.text"
-msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
-msgstr "<bookmark_value>hàm MROUND</bookmark_value><bookmark_value>bôi số gần nhất</bookmark_value>"
+msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
+msgstr "<bookmark_value>hàm WEEKDAY</bookmark_value>"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164252\n"
-"658\n"
+"func_weekday.xhp\n"
+"hd_id3154925\n"
+"136\n"
"help.text"
-msgid "MROUND"
-msgstr "MROUND"
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">Hàm WEEKDAY</link></variable>"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164288\n"
-"659\n"
+"func_weekday.xhp\n"
+"par_id3154228\n"
+"137\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Trả về một số được làm tròn thành bội số gần nhất của một số khác.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
+msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Trả về hôm của tuần đối với giá trị ngày tháng đã cho.</ahelp> Hôm được trả về dưới dạng một số nguyên nằm giữa 1 (hôm Chủ Nhật) và 7 (hôm Thứ Bảy) nếu không có kiểu, hay ghi rõ kiểu=1. Nếu kiểu=2, thì đánh số bắt đầu từ hôm Thứ Hai là 1; nếu kiểu=3, thì đánh số bắt đầu từ hôm Thứ Hai là 0."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164306\n"
-"660\n"
+"func_weekday.xhp\n"
+"hd_id3147217\n"
+"138\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164320\n"
-"661\n"
+"func_weekday.xhp\n"
+"par_id3149033\n"
+"139\n"
"help.text"
-msgid "MROUND(Number; Multiple)"
-msgstr "MROUND(Số; Bội)"
+msgid "WEEKDAY(Number; Type)"
+msgstr "WEEKDAY(Số; Kiểu)"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3486434\n"
+"func_weekday.xhp\n"
+"par_id3149046\n"
+"140\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
-msgstr "Trả về <emph>Số</emph> được làm tròn thành bội số cho <emph>Bội</emph>."
+msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
+msgstr "<emph>Số</emph> là một giá trị ngày tháng dạng thập phân, cho đó cần trả về hôm của tuần."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3068636\n"
+"func_weekday.xhp\n"
+"par_id3154394\n"
+"141\n"
"help.text"
-msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
-msgstr "Một sự thực hiện xen kẽ là <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
+msgstr "<emph>Kiểu</emph> xác định kiểu phép tính. Đối với Kiểu=1, các hôm trong tuần được đếm bắt đầu từ Hôm Chủ Nhật (đây là mặc định ngay cả khi không đưa ra tham số Kiểu). Đối với Kiểu=2, các hôm trong tuần được đếm bắt đầu từ Hôm Thứ Hai là 1. Đối với kiểu=3, các hôm trong tuần được đếm bắt đầu từ Hôm Thứ Hai là 0."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164333\n"
-"662\n"
+"func_weekday.xhp\n"
+"par_id3156188\n"
+"142\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
+msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164347\n"
-"663\n"
+"func_weekday.xhp\n"
+"hd_id3153836\n"
+"143\n"
"help.text"
-msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
-msgstr "<item type=\"input\">=MROUND(15.5;3)</item> trả về 15, vì 15,5 gần với 15 (= 3*5) hơn với 18 (= 3*6)."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_idN14DD6\n"
+"func_weekday.xhp\n"
+"par_id3150317\n"
+"144\n"
"help.text"
-msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
-msgstr "<item type=\"input\">=MROUND(1.4;0.5)</item> trả về 1,5 (= 0.5*3)."
+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\") trả về 4 (không đưa ra tham số Kiểu thì dùng số đếm tiêu chuẩn. Đếm tiêu chuẩn bắt đầu từ Hôm Chủ Nhật là ngày số 1. Ngày 15, tháng 6/2000 là một hôm Thứ Tư, thì là ngày số 4)."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164375\n"
+"func_weekday.xhp\n"
+"par_id3153174\n"
+"145\n"
"help.text"
-msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
-msgstr "<bookmark_value>hàm SQRT</bookmark_value><bookmark_value>căn bậc hai;số dương</bookmark_value>"
+msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
+msgstr "=WEEKDAY(\"1996-07-24\";2) trả về 3 (tham số Kiểu là 2, thì hôm Thứ Hai là ngày số 1. Ngày 24, tháng 7/1996 là một hôm Thứ Tư, thì là ngày số 3)."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164375\n"
-"532\n"
+"func_weekday.xhp\n"
+"par_id3153525\n"
+"146\n"
"help.text"
-msgid "SQRT"
-msgstr "SQRT"
+msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
+msgstr "=WEEKDAY(\"1996-07-24\";1) trả về 4 (tham số Kiểu là 1, thì hôm Chủ Nhật là ngày số 1. Ngày 24, tháng 7/1996 là một hôm Thứ Tư, thì là ngày số 4)."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164404\n"
-"533\n"
+"func_weekday.xhp\n"
+"par_id3150575\n"
+"147\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WURZEL\">Trả về căn bậc hai dương của một số.</ahelp>"
+msgid "=WEEKDAY(NOW()) returns the number of the current day."
+msgstr "=WEEKDAY(NOW()) trả về số của hôm hiện thời."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164424\n"
-"534\n"
+"func_weekday.xhp\n"
+"par_id3150588\n"
+"171\n"
+"help.text"
+msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+msgstr "Để cấu tạo một hàm ngụ ý nếu một ngày trong ô A1 là một ngày làm việc hay không, hãy sử dụng hai hàm IF và WEEKDAY như theo đây: <br/>IF(WEEKDAY(A1;2)<6;\"Ngày làm việc\";\"Cuối tuần\")"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKNUM"
+msgstr "WEEKNUM"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"bm_id3159161\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr "<bookmark_value>hàm WEEKNUM</bookmark_value>"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"hd_id3159161\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">Hàm WEEKNUM</link></variable>"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3149770\n"
+"55\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">Hàm WEEKNUM tính số thứ tự tuần của năm cho giá trị ngày tháng nội bộ.</ahelp>"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_idN105E4\n"
+"help.text"
+msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+msgstr "Tiêu Chuẩn Quốc Tế ISO 8601 cho là hôm Thứ Hai là hôm thứ nhất của tuần. Một tuần nằm qua hai năm được gán một số trong năm chứa phần lớn các ngày của tuần đó. Có nghĩa là tuần số 1 của bất cứ năm nào là tuần chứa ngày 4, tháng 1."
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"hd_id3153055\n"
+"56\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164437\n"
-"535\n"
+"func_weeknum.xhp\n"
+"par_id3147236\n"
+"57\n"
"help.text"
-msgid "SQRT(Number)"
-msgstr "SQRT(Số)"
+msgid "WEEKNUM(Number; Mode)"
+msgstr "WEEKNUM(Số; Chế_độ)"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164451\n"
-"536\n"
+"func_weeknum.xhp\n"
+"par_id3147511\n"
+"58\n"
"help.text"
-msgid "Returns the positive square root of <emph>Number</emph>."
-msgstr "Trả về căn bậc hai dương của <emph>Số</emph>."
+msgid "<emph>Number</emph> is the internal date number."
+msgstr "<emph>Số</emph> là số của ngày tháng nội bộ."
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6870021\n"
+"func_weeknum.xhp\n"
+"par_id3154269\n"
+"59\n"
"help.text"
-msgid "Number must be positive."
-msgstr "Số phải là dương."
+msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
+msgstr "<emph>Chế_độ</emph> đặt đầu của tuần và kiểu phép tính."
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164471\n"
-"537\n"
+"func_weeknum.xhp\n"
+"par_id3148930\n"
+"60\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "1 = Sunday"
+msgstr "1 = Chủ Nhật"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164484\n"
-"538\n"
+"func_weeknum.xhp\n"
+"par_id3154280\n"
+"61\n"
"help.text"
-msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> trả về 0."
+msgid "2 = Monday"
+msgstr "2 = Thứ Hai"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3591723\n"
+"func_weeknum.xhp\n"
+"hd_id3146948\n"
+"62\n"
"help.text"
-msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
-msgstr "<item type=\"input\">=SQRT(-16)</item> trả về một lỗi kiểu <item type=\"literal\">đối số sai</item>."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164560\n"
+"func_weeknum.xhp\n"
+"par_id3150704\n"
+"65\n"
"help.text"
-msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
-msgstr "<bookmark_value>hàm SQRTPI</bookmark_value><bookmark_value>căn bậc hai;tích Pi (π)</bookmark_value>"
+msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
+msgstr "=WEEKNUM(\"1995-01-01\";1) trả về 1"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164560\n"
-"665\n"
+"func_weeknum.xhp\n"
+"par_id3149792\n"
+"64\n"
"help.text"
-msgid "SQRTPI"
-msgstr "SQRTPI"
+msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+msgstr "=WEEKNUM(\"1995-01-01\";2) trả về 52. Nếu tuần bắt đầu vào hôm Thứ Hai, hôm Chủ Nhật thuộc về tuần cuối cùng của năm trước."
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164596\n"
-"666\n"
+"func_weeknumadd.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Trả về căn bậc hai của (π nhân với một số).</ahelp>"
+msgid "WEEKNUM_ADD"
+msgstr "WEEKNUM_ADD"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164614\n"
-"667\n"
+"func_weeknumadd.xhp\n"
+"bm_id3166443\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>hàm WEEKNUM_ADD</bookmark_value>"
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"hd_id3166443\n"
+"222\n"
+"help.text"
+msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">Hàm WEEKNUM_ADD</link></variable>"
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3152945\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">Kết quả ngụ ý số thứ tự của một tuần lịch cho một ngày tháng nào đó.</ahelp>"
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_idN105DD\n"
+"help.text"
+msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
+msgstr "Hàm WEEKNUM_ADD được thiết kế để tính các số thứ tự tuần đúng như chương trình Microsoft Excel. Hãy sử dụng hàm <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link>, hoặc định dạng các ô ngày tháng dùng mã định dạng WW, khi bạn cần dùng số thứ tự tuần kiểu ISO 8601."
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"hd_id3153745\n"
+"224\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164627\n"
-"668\n"
+"func_weeknumadd.xhp\n"
+"par_id3153685\n"
+"225\n"
"help.text"
-msgid "SQRTPI(Number)"
-msgstr "SQRTPI(Số)"
+msgid "WEEKNUM_ADD(Date; ReturnType)"
+msgstr "WEEKNUM_ADD(Ngày; Kiểu_trả_về)"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1501510\n"
+"func_weeknumadd.xhp\n"
+"par_id3159277\n"
+"226\n"
"help.text"
-msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
-msgstr "Trả về căn bậc hai dương của (π nhân với <emph>Số</emph>)."
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr "<emph>Ngày</emph> là ngày tháng bên trong tuần của lịch."
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9929197\n"
+"func_weeknumadd.xhp\n"
+"par_id3154098\n"
+"227\n"
"help.text"
-msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
-msgstr "Đây tương đương với <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
+msgstr "<emph>Kiểu_trả_về</emph> là 1 nếu tuần bắt đầu vào hôm Chủ Nhật, hay 2 nếu tuần bắt đầu vào hôm Thứ Hai."
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164641\n"
-"669\n"
+"func_weeknumadd.xhp\n"
+"hd_id3152886\n"
+"228\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164654\n"
-"670\n"
+"func_weeknumadd.xhp\n"
+"par_id3149973\n"
+"229\n"
"help.text"
-msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
-msgstr "<item type=\"input\">=SQRTPI(2)</item> trả về căn bậc hai của (2π), xấp xỉ 2,506628."
+msgid "In which week number does 12.24.2001 fall?"
+msgstr "Ngày 2001-24-12 nằm trong tuần số nào?"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164669\n"
+"func_weeknumadd.xhp\n"
+"par_id3149914\n"
+"230\n"
"help.text"
-msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
-msgstr "<bookmark_value>số ngẫu nhiên; nằm giữa các giới hạn</bookmark_value><bookmark_value>hàm RANDBETWEEN</bookmark_value>"
+msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
+msgstr "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> trả về 52."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164669\n"
-"671\n"
+"func_workday.xhp\n"
+"tit\n"
"help.text"
-msgid "RANDBETWEEN"
-msgstr "RANDBETWEEN"
+msgid "WORKDAY"
+msgstr "WORKDAY"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164711\n"
-"672\n"
+"func_workday.xhp\n"
+"bm_id3149012\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Trả về một số nguyên ngẫu nhiên nằm trong một phạm vi đã ghi rõ.</ahelp>"
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "<bookmark_value>hàm WORKDAY</bookmark_value>"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164745\n"
-"673\n"
+"func_workday.xhp\n"
+"hd_id3149012\n"
+"186\n"
+"help.text"
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">Hàm WORKDAY</link></variable>"
+
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3149893\n"
+"187\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\">Kết quả là một số kiểu dữ liệu mà có thể được định dạng dạng ngày tháng. Vì vậy bạn thấy ngày tháng của một ngày cách <emph>ngày đầu</emph> một số <emph>ngày làm việc</emph> nào đó.</ahelp>"
+
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"hd_id3146944\n"
+"188\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164758\n"
-"674\n"
+"func_workday.xhp\n"
+"par_id3154844\n"
+"189\n"
"help.text"
-msgid "RANDBETWEEN(Bottom; Top)"
-msgstr "RANDBETWEEN(Dưới; Trên)"
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr "WORKDAY(Ngày_đầu; Ngày; Ngày_nghỉ)"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7112338\n"
+"func_workday.xhp\n"
+"par_id3147469\n"
+"190\n"
"help.text"
-msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
-msgstr "Trả về một số nguyên ngẫu nhiên nằm giữa hai số nguyên <emph>Dưới</emph> và <emph>Trên</emph> (kể cả hai số đó)."
+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>Ngày_đầu</emph> là ngày từ đó cần tính. Nếu ngày đầu là một ngày làm việc thì nó cũng được bao gồm trong phép tính."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2855616\n"
+"func_workday.xhp\n"
+"par_id3153038\n"
+"191\n"
"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-msgstr "Hàm này tạo một số ngẫu nhiên mỗi khi Calc tính toán lại. Để bắt Calc tính lại nhấn Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+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>Ngày</emph> là số các ngày làm việc. Giá trị dương ngụ ý kết quả nằm sau ngày đầu, còn giá trị âm ngụ ý kết quả nằm trước ngày đầu."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2091433\n"
+"func_workday.xhp\n"
+"par_id3150693\n"
+"192\n"
"help.text"
-msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr "Để tạo ra các số ngẫu nhiên mà không bao giờ tính lại, hãy sao chép những ô chứa hàm này, sau đó dùng câu lệnh <item type=\"menuitem\">Sửa > Dán đặc biệt</item> (với tùy chọn <item type=\"menuitem\">Dán tất cả</item> và <item type=\"menuitem\">Công thức</item> không bật, và <item type=\"menuitem\">Numbers</item> bật)."
+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>Ngày_nghỉ</emph> là danh sách các ngày nghỉ còn tùy chọn. Ngày nghỉ là ngày không đi làm. Hãy nhập một phạm vi chứa một ngày nghỉ mỗi ô."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164772\n"
-"675\n"
+"func_workday.xhp\n"
+"hd_id3150141\n"
+"193\n"
"help.text"
msgid "Example"
-msgstr "Thí dụ"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164785\n"
-"676\n"
+"func_workday.xhp\n"
+"par_id3152782\n"
+"194\n"
"help.text"
-msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
-msgstr "<item type=\"input\">=RANDBETWEEN(20;30)</item> trả về một số nguyên nằm giữa 20 và 30."
+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 "Đếm 17 ngày làm việc phía sau ngày 1, tháng 1/2001 thì tới ngày tháng nào? Nhập ngày đầu « 2001-12-01 » vào ô C3, và số các ngày làm việc vào ô D3. Phạm vi các ô F3 đến J3 chứa những ngày nghĩ Nô-en và Năm Mới (Phương Tây) này: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164800\n"
+"func_workday.xhp\n"
+"par_id3146142\n"
+"195\n"
"help.text"
-msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
-msgstr "<bookmark_value>hàm RAND</bookmark_value><bookmark_value>số ngẫu nhiên;nằm giữa 0 và 1</bookmark_value>"
+msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr "=WORKDAY(C3;D3;F3:J3) trả về 2001-12-28. Định dạng số ngày tháng dãy theo một ngày tháng, v.d. theo định dạng NNăm-Th-Ng."
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164800\n"
-"542\n"
+"func_year.xhp\n"
+"tit\n"
"help.text"
-msgid "RAND"
-msgstr "RAND"
+msgid "YEAR"
+msgstr "YEAR"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164829\n"
-"543\n"
+"func_year.xhp\n"
+"bm_id3153982\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Trả về một số ngẫu nhiên nằm giữa 0 và 1.</ahelp>"
+msgid "<bookmark_value>YEAR function</bookmark_value>"
+msgstr "<bookmark_value>hàm YEAR</bookmark_value>"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164870\n"
-"545\n"
+"func_year.xhp\n"
+"hd_id3153982\n"
+"37\n"
+"help.text"
+msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">Hàm YEAR</link></variable>"
+
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3147496\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_JAHR\">Trả về năm dạng số tùy theo các quy tắc tính nội bộ.</ahelp>"
+
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"hd_id3146090\n"
+"39\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164884\n"
-"546\n"
+"func_year.xhp\n"
+"par_id3154304\n"
+"40\n"
"help.text"
-msgid "RAND()"
-msgstr "RAND()"
+msgid "YEAR(Number)"
+msgstr "YEAR(Số)"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5092318\n"
+"func_year.xhp\n"
+"par_id3156013\n"
+"41\n"
"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-msgstr "Hàm này tạo một số ngẫu nhiên mỗi khi Calc tính toán lại. Để bắt Calc tính lại nhấn Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
+msgstr "<emph>Số</emph> hiển thị giá trị ngày tháng nội bộ cho đó cần trả về năm."
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9312417\n"
+"func_year.xhp\n"
+"hd_id3152797\n"
+"42\n"
"help.text"
-msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr "Để tạo ra các số ngẫu nhiên mà không bao giờ tính lại, hãy sao chép mỗi ô chứa « =RAND() », và dùng lệnh trình đơn <item type=\"menuitem\">Sửa > Dán đặc biệt</item> (với hay tùy chọn <item type=\"menuitem\">Dán tất cả</item> và <item type=\"menuitem\">Công thức</item> không bật và tùy chọn <item type=\"menuitem\">Số</item> bật)."
+msgid "Examples"
+msgstr "Ví dụ"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9089022\n"
+"func_year.xhp\n"
+"par_id3145668\n"
+"43\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
+msgstr "<item type=\"input\">=YEAR(1)</item> trả về 1899"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9569078\n"
+"func_year.xhp\n"
+"par_id3151168\n"
+"44\n"
"help.text"
-msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
-msgstr "<item type=\"input\">=RAND()</item> trả về một số ngẫu nhiên nằm giữa 0 và 1."
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr "<item type=\"input\">=YEAR(2)</item> trả về 1900"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164897\n"
+"func_year.xhp\n"
+"par_id3150115\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
-msgstr "<bookmark_value>hàm COUNTIF</bookmark_value><bookmark_value>đếm;những ô đã ghi rõ</bookmark_value>"
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr "<item type=\"input\">=YEAR(33333.33)</item> trả về 1991"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164897\n"
-"547\n"
+"func_yearfrac.xhp\n"
+"tit\n"
"help.text"
-msgid "COUNTIF"
-msgstr "COUNTIF"
+msgid "YEARFRAC"
+msgstr "YEARFRAC"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164926\n"
-"548\n"
+"func_yearfrac.xhp\n"
+"bm_id3148735\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Trả về số ô mà thoả môt số tiêu chuẩn nào đó trong một phạm vi ô.</ahelp>"
+msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
+msgstr "<bookmark_value>hàm YEARFRAC</bookmark_value>"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164953\n"
-"549\n"
+"func_yearfrac.xhp\n"
+"hd_id3148735\n"
+"196\n"
+"help.text"
+msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">Hàm YEARFRAC</link></variable>"
+
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3150899\n"
+"197\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> Kết quả là một số nằm giữa 0 và 1, đại diện phần của năm giữa <emph>Ngày_đầu</emph> và <emph>Ngày_cuối</emph>.</ahelp>"
+
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"hd_id3155259\n"
+"198\n"
"help.text"
msgid "Syntax"
msgstr "Cú pháp"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164967\n"
-"550\n"
+"func_yearfrac.xhp\n"
+"par_id3155823\n"
+"199\n"
"help.text"
-msgid "COUNTIF(Range; Criteria)"
-msgstr "COUNTIF(Phạm_vi; Tiêu_chuẩn)"
+msgid "YEARFRAC(StartDate; EndDate; Basis)"
+msgstr "YEARFRAC(Ngày_đầu; Ngày_cuối; Cơ_bản)"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164980\n"
-"551\n"
+"func_yearfrac.xhp\n"
+"par_id3145144\n"
+"200\n"
"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "<emph>Phạm_vi</emph> là phạm vi cho đó các tiêu chuẩn sẽ được áp dụng."
+msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
+msgstr "<emph>Ngày_đầu</emph> và <emph>Ngày_cuối</emph> là hai giá trị ngày tháng."
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165000\n"
-"552\n"
+"func_yearfrac.xhp\n"
+"par_id3149954\n"
+"201\n"
"help.text"
-msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
-msgstr "<emph>Tiêu_chuẩn</emph> ngụ ý tiêu chuẩn có dạng số, biểu thức hay chuỗi ký tự. Các tiêu chuẩn này quyết định những ô nào được đếm. Bạn cũng có thể nhập một chuỗi tìm kiếm có dạng biểu thức chính quy, v.d. « b.* » để tìm mọi từ bắt đầu với b. Cũng có thể ngụ ý một phạm vi ô chứa tiêu chuẩn tìm kiếm. Khi tìm kiếm một chuỗi văn bản nghĩa chữ, có nên bao quanh nó bằng nháy kép."
+msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
+msgstr "<emph>Cơ_bản</emph> được chọn trong danh sách các tùy chọn, và ngụ ý nên tính năm như thế nào."
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165037\n"
-"553\n"
+"func_yearfrac.xhp\n"
+"par_id3146847\n"
+"202\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Basis"
+msgstr "Cơ bản"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166505\n"
-"627\n"
+"func_yearfrac.xhp\n"
+"par_id3155956\n"
+"203\n"
"help.text"
-msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
-msgstr "A1:A10 là một phạm vi ô chứa những số từ <item type=\"input\">2000</item> đến <item type=\"input\">2009</item>. Ô B1 chứa số <item type=\"input\">2006</item>. Vào ô B2, bạn nhập công thức:"
+msgid "Calculation"
+msgstr "Phép tính"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3581652\n"
+"func_yearfrac.xhp\n"
+"par_id3154502\n"
+"204\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> trả về 1"
+msgid "0 or missing"
+msgstr "0 hay thiếu"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id708639\n"
+"func_yearfrac.xhp\n"
+"par_id3149877\n"
+"205\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> trả về 1."
+msgid "US method (NASD), 12 months of 30 days each"
+msgstr "Phương pháp Mỹ (NASD), 12 tháng, mỗi tháng có 30 ngày"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5169225\n"
+"func_yearfrac.xhp\n"
+"par_id3148766\n"
+"250\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item> trả về 3."
+msgid "1"
+msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2118594\n"
+"func_yearfrac.xhp\n"
+"par_id3154326\n"
+"206\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> — khi ô B1 chứa <item type=\"input\">2006</item> thì hàm này trả về 6."
+msgid "Exact number of days in months, exact number of days in year"
+msgstr "Số ngày chính xác trong tháng, số ngày chính xác trong năm"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id166020\n"
+"func_yearfrac.xhp\n"
+"par_id3145245\n"
+"251\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> mà ô C2 chứa chuỗi <item type=\"input\">>2006</item> thì đếm số ô trong phạm vi « A1:A10 » mà lớn hơn (nằm sau) 2006."
+msgid "2"
+msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6386913\n"
+"func_yearfrac.xhp\n"
+"par_id3155620\n"
+"207\n"
"help.text"
-msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
-msgstr "Để đếm chỉ những số âm: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgid "Exact number of days in month, year has 360 days"
+msgstr "Số ngày chính xác trong tháng, năm có 360 ngày"
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"tit\n"
+"func_yearfrac.xhp\n"
+"par_id3145297\n"
+"252\n"
"help.text"
-msgid "Remove Dependents"
-msgstr "Bỏ đồ phụ thuộc"
+msgid "3"
+msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"bm_id3147335\n"
+"func_yearfrac.xhp\n"
+"par_id3148394\n"
+"208\n"
"help.text"
-msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
-msgstr "<bookmark_value>ô bảng; gỡ bỏ đồ phụ thuộc</bookmark_value>"
+msgid "Exact number of days in month, year has 365 days"
+msgstr "Số ngày chính xác trong tháng, năm có 365 ngày"
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"hd_id3147335\n"
-"1\n"
+"func_yearfrac.xhp\n"
+"par_id3151022\n"
+"253\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
-msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Bỏ đồ phụ thuộc\">Bỏ đồ phụ thuộc</link>"
+msgid "4"
+msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"par_id3148663\n"
-"2\n"
+"func_yearfrac.xhp\n"
+"par_id3150931\n"
+"209\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Xoá một cấp các mũi tên tìm vết được tạo bởi câu lệnh <emph>Tìm vết phụ thuộc</emph>.</ahelp>"
+msgid "European method, 12 months of 30 days each"
+msgstr "Phương pháp Âu, có 12 tháng, mỗi tháng có 30 ngày"
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"tit\n"
+"func_yearfrac.xhp\n"
+"hd_id3145626\n"
+"210\n"
"help.text"
-msgid "Manual Break"
-msgstr "Chỗ ngắt tự làm"
+msgid "Example"
+msgstr "Ví dụ"
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"bm_id3153192\n"
+"func_yearfrac.xhp\n"
+"par_id3149007\n"
+"211\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; chèn chỗ ngắt</bookmark_value><bookmark_value>chèn; ngắt</bookmark_value><bookmark_value>ngắt trang; chèn vào bảng tính</bookmark_value>"
+msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
+msgstr "Giữa ngày 2008-01-01 và 2008-07-01 có phần năm nào?"
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3153192\n"
-"1\n"
+"func_yearfrac.xhp\n"
+"par_id3154632\n"
+"212\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
-msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Chỗ ngắt tự làm\">Chỗ ngắt tự làm</link>"
+msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
+msgstr "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) trả về 0,50."
-#: 04010000.xhp
+#: solver.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3125864\n"
-"2\n"
+"solver.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Lệnh này chèn các ngắt hàng hoặc cột tự làm vào bảng để đảm bảo rằng dữ liệu được in ra như ý bạn muốn. Bạn có thể chèn vào một ngắt trang nằm ngang phía trên, hoặc một ngắt trang nằm dọc ở bên trái của ô đang làm việc.</ahelp>"
+msgid "Solver"
+msgstr "Giải phương trình"
-#: 04010000.xhp
+#: solver.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3155133\n"
-"3\n"
+"solver.xhp\n"
+"bm_id7654652\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
-msgstr "Chọn <link href=\"text/scalc/01/02190000.xhp\" name=\"Sửa > Xoá chỗ ngắt tự làm\">Sửa > Xoá chỗ ngắt tự làm</link> để xoá các chỗ ngắt bạn đã tạo ra."
+msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
+msgstr "<bookmark_value>tìm mục đích;giải phương trình</bookmark_value><bookmark_value>thao tác « nếu thì »;giải phương trình</bookmark_value><bookmark_value>giải ngược</bookmark_value><bookmark_value>bộ giải</bookmark_value>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"tit\n"
+"solver.xhp\n"
+"hd_id9216284\n"
"help.text"
-msgid "Criteria"
-msgstr "Tiêu chuẩn"
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Giải phương trình</link></variable>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"bm_id1464278\n"
+"solver.xhp\n"
+"par_id9210486\n"
"help.text"
-msgid "<bookmark_value>selection lists;validity</bookmark_value>"
-msgstr "<bookmark_value>danh sách lựa chọn;tính hợp lệ</bookmark_value>"
+msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Giải phương trình</emph>. Một dụng cụ giải giúp bạn giải phương trình có nhiều biến không rõ, dùng phương pháp tìm mục đích.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153032\n"
-"1\n"
+"solver.xhp\n"
+"par_id8538773\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
-msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Tiêu chuẩn\">Tiêu chuẩn</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập hay nhấn vào tham chiếu ô của ô đích. Trường này nhận địa chỉ của ô có giá trị cần tối ưu hoá.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3156327\n"
-"2\n"
+"solver.xhp\n"
+"par_id7564012\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Ghi rõ những quy tắc thẩm tra cho (những) ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thử giải phương trình đại diện giá trị tối đa của ô đích.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155923\n"
-"4\n"
+"solver.xhp\n"
+"par_id1186254\n"
"help.text"
-msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
-msgstr "Ví dụ, bạn có thể xác định tiêu chuẩn như « Những số nằm giữa 1 và 10 », hay « Những chuỗi văn bản chứa đến 20 ký tự »."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thử giải phương trình đại diện giá trị tối thiểu của ô đích.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153896\n"
-"5\n"
+"solver.xhp\n"
+"par_id7432477\n"
"help.text"
-msgid "Allow"
-msgstr "Cho phép"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thử giải phương trình để gần như một giá trị đã cho của ô đích.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150400\n"
-"6\n"
+"solver.xhp\n"
+"par_id7141026\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Nhấn vào một tùy chọn thẩm tra cho (những) ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập giá trị hay một tham chiếu ô.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3148797\n"
-"17\n"
+"solver.xhp\n"
+"par_id8531449\n"
"help.text"
-msgid "The following conditions are available:"
-msgstr "Có sẵn những điều kiện theo đây:"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập phạm vi ô có thể thay đổi.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150447\n"
-"18\n"
+"solver.xhp\n"
+"par_id9183935\n"
"help.text"
-msgid "Condition"
-msgstr "Điều kiện"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập một tham chiếu ô.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155854\n"
-"19\n"
+"solver.xhp\n"
+"par_id946684\n"
"help.text"
-msgid "Effect"
-msgstr "Hiệu ứng"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một toán tử trong danh sách.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153092\n"
-"20\n"
+"solver.xhp\n"
+"par_id9607226\n"
"help.text"
-msgid "All values"
-msgstr "Mọi giá trị"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập giá trị hay một tham chiếu ô.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155411\n"
-"21\n"
+"solver.xhp\n"
+"par_id1939451\n"
"help.text"
-msgid "No limitation."
-msgstr "Vô hạn."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để thu nhỏ hay phục hồi hộp thoại. Bạn có thể nhấn vào hay lựa chọn ô trên trang tính. Bạn cũng có thể tự nhập một tham chiếu vào hộp nhập vào.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3147434\n"
-"22\n"
+"solver.xhp\n"
+"par_id9038972\n"
"help.text"
-msgid "Whole number"
-msgstr "Số nguyên"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để gỡ bỏ hàng khỏi danh sách. Bất cứ hàng nào nằm bên dưới hàng này thì đi lên.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3154319\n"
-"23\n"
+"solver.xhp\n"
+"par_id2423780\n"
"help.text"
-msgid "Only whole numbers corresponding to the condition."
-msgstr "Chỉ số nguyên tương ứng với điều kiện này."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Tùy chọn</emph>.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3145802\n"
-"24\n"
+"solver.xhp\n"
+"par_id2569658\n"
"help.text"
-msgid "Decimal"
-msgstr "Thập phân"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để giải phương trình tùy theo thiết lập hiện thời. Thiết lập hộp thoại được giữ lại đến khi bạn đóng tài liệu hiện tại.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153160\n"
-"25\n"
+"solver.xhp\n"
+"par_id5474410\n"
"help.text"
-msgid "All numbers corresponding to the condition."
-msgstr "Mọi số tương ứng với điều kiện đó."
+msgid "To solve equations with the solver"
+msgstr "Để giải phương trình bằng dụng cụ Giải phương trình"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3149377\n"
-"26\n"
+"solver.xhp\n"
+"par_id2216559\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+msgstr "Mục đích của tiến trình giải phương trình là tìm những giá trị biến đổi của một phương trình mà đưa đến một giá trị đã tối ưu hoá trong <emph>ô đích</emph>, cũng được gọi như là « mục tiêu ». Bạn có thể chọn nếu giá trị trong ô đích nên là giá trị tối đa, giá trị tối thiểu, hay gần như một giá trị đã cho."
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150718\n"
-"27\n"
+"solver.xhp\n"
+"par_id7869502\n"
"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
-msgstr "Mọi số tương ứng với điều kiện đó. Những giá trị được nhập vào được định dạng thích hợp lần kế tiếp hộp thoại này được gọi."
+msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
+msgstr "Những giá trị biến đổi đầu tiên được chèn vào một phạm vi ô hình chữ nhật được bạn nhập vào hộp <emph>Bằng cách thay đổi các ô</emph>."
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3146969\n"
-"28\n"
+"solver.xhp\n"
+"par_id9852900\n"
"help.text"
-msgid "Time"
-msgstr "Giờ"
+msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+msgstr "Bạn có khả năng định nghĩa một dãy các điều kiện hạn chế mà đặt ràng buộc cho một số nào đó. Chẳng hạn, bạn có thể đặt ràng buộc ằng một của những biến hay ô không thể lớn hơn một biến khác, hay không phải lớn hơn một giá trị đã cho. Bạn cũng có thể xác định ràng buộc rằng một hay nhiều biến phải là số nguyên (giá trị không có phần thập phân), hay giá trị nhị phân (chỉ cho phép là 0 hay 1)."
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155066\n"
-"29\n"
+"solver.xhp\n"
+"par_id5323953\n"
"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
-msgstr "Mọi số tương ứng với điều kiện đó. Những giá trị được nhập vào được định dạng thích hợp lần kế tiếp hộp thoại này được gọi."
+msgid "The default solver engine supports only linear equations."
+msgstr "Cơ chế giải mặc định chỉ hỗ trợ phương trình tuyến tính."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106A0\n"
+"solver_options.xhp\n"
+"tit\n"
"help.text"
-msgid "Cell range"
-msgstr "Phạm vi ô"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106A5\n"
+"solver_options.xhp\n"
+"hd_id2794274\n"
"help.text"
-msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
-msgstr "Cho phép chỉ giá trị đưa ra trong một phạm vi ô. Phạm vi ô này có thể được ghi rõ dứt khoát, hoặc dưới dạng một phạm vi đặt tên. Phạm vi có thể chứa một cột ô hay một hàng ô. Nếu bạn ghi rõ một phạm vi các cột và hàng, chỉ dùng cột đầu."
+msgid "Options"
+msgstr "Tùy chọn"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106AB\n"
+"solver_options.xhp\n"
+"par_id6776940\n"
"help.text"
-msgid "List"
-msgstr "Danh sách"
+msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
+msgstr "Hộp thoại <emph>Tùy chọn</emph> cho <link href=\"text/scalc/01/solver.xhp\">Bộ giải</link> được dùng để đặt một số tùy chọn nào đó."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106B0\n"
+"solver_options.xhp\n"
+"par_id393993\n"
"help.text"
-msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
-msgstr "Cho phép chỉ giá trị được ghi rõ theo danh sách. Cũng có thể hỗn hợp các chuỗi và giá trị. Số ước tính thành giá trị của nó, vì thế, nếu bạn nhập số 1 vào danh sách, mục nhập 100% cũng là hợp lệ."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Lựa chọn một cơ chế giải. Hộp liệt kê này bị tắt nếu chỉ có một cơ chế giải được cài đặt. Cơ chế giải bổ sung có thể được cài đặt dạng phần mở rộng.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3154756\n"
-"30\n"
+"solver_options.xhp\n"
+"par_id5871761\n"
"help.text"
-msgid "Text length"
-msgstr "Độ dài văn bản"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cấu hình bộ giải hiện thời.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3147339\n"
-"31\n"
+"solver_options.xhp\n"
+"par_id6531266\n"
"help.text"
-msgid "Entries whose length corresponds to the condition."
-msgstr "Các mục nhập có chiều dài tương ứng với điều kiện."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nếu mục nhập hiện thời trong hộp liệt kê <emph>Thiết lập</emph> cho phép chỉnh sửa giá trị, bạn có thể nhấn nút <emph>Sửa</emph>. Một hộp thoại xuất hiện, bạn có thể sửa đổi giá trị này.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3154704\n"
-"7\n"
+"solver_options.xhp\n"
+"par_id3912778\n"
"help.text"
-msgid "Allow blank cells"
-msgstr "Cho phẹp ô trắng"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhập hay thay đổi giá trị.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153967\n"
-"8\n"
+"solver_options.xhp\n"
+"par_id3163853\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">Cùng với tùy chọn <emph>Công cụ > Phát hiện > Nhãn dữ liệu sai</emph>, tùy chọn này xác định nếu ô trắng được hiển thị dạng dữ liệu sai (bị tắt) hay không (đã bật).</ahelp>"
+msgid "Use the Options dialog to configure the current solver engine."
+msgstr "Hãy sử dụng hộp thoại <emph>Tùy chọn</emph> để cấu hình cơ chế giải hiện thời."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10709\n"
+"solver_options.xhp\n"
+"par_id121158\n"
"help.text"
-msgid "Show selection list"
-msgstr "Hiện danh sách lựa chọn"
+msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
+msgstr "Bạn có dịp cài đặt thêm cơ chế giải dưới dạng phần mở rộng, nếu công bố. Hãy mở <emph>Công cụ > Bộ Quản lý Phần mở rộng</emph> và duyệt tới địa chỉ Web cung cấp các phần mở rộng (Extensions) tìm các phần mở rộng thích hợp."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1070D\n"
+"solver_options.xhp\n"
+"par_id3806878\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Hiển thị một danh sách các chuỗi hay giá trị trong chúng có thể chọn. Danh sách này cũng có thể được mở bằng cách lựa chọn ô, sau đó bấm tổ hợp phím Ctrl+D (Mac: Command+D).</ahelp>"
+msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
+msgstr "Trong hộp liệt kê, hãy lựa chọn cơ chế giải cần dùng và cấu hình. Hộp này bị tắt nếu chỉ có một cơ chế giải được cài đặt."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10724\n"
+"solver_options.xhp\n"
+"par_id130619\n"
"help.text"
-msgid "Sort entries ascending"
-msgstr "Sắp xếp các mục tăng dần"
+msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
+msgstr "Trong hộp <emph>Thiết lập</emph>, hãy kiểm tra tất cả các thiết lập bạn muốn sử dụng cho thao tác tìm mục đích hiện thời. Nếu tùy chọn đang chỉnh sửa cũng cung cấp thêm tùy chọn, thì nút <emph>Sửa</emph> được bật lên. Nhấn vào nút <emph>Sửa</emph> để mở một hộp thoại trong đó bạn có thể sửa đổi giá trị này."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10728\n"
+"solver_options.xhp\n"
+"par_id9999694\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sắp xếp danh sách lựa chọn theo thứ tự tăng dần, và lọc các bản sao ra danh sách. Không bật tùy chọn này thì theo thứ tự của nguồn dữ liệu.</ahelp>"
+msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
+msgstr "Bấm nút <emph>OK</emph> để đồng ý với các thay đổi vừa mới làm, và để trở về hộp thoại <link href=\"text/scalc/01/solver.xhp\">Bộ giải</link>."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1073F\n"
+"text2columns.xhp\n"
+"tit\n"
"help.text"
-msgid "Source"
-msgstr "Nguồn"
+msgid "Text to Columns"
+msgstr "Văn bản sang Cột"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10743\n"
+"text2columns.xhp\n"
+"bm_id8004394\n"
"help.text"
-msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
-msgstr "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Hãy nhập phạm vi ô chứa các giá trị hợp lệ hay văn bản.</ahelp>"
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr "<bookmark_value>văn bản sang cột</bookmark_value>"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1075A\n"
+"text2columns.xhp\n"
+"hd_id2300180\n"
"help.text"
-msgid "Entries"
-msgstr "Mục"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Văn bản sang Cột</link>"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1075E\n"
+"text2columns.xhp\n"
+"par_id655232\n"
"help.text"
-msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
-msgstr "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Hãy nhập những mục nhập mà sẽ là giá trị hợp lệ hay chuỗi văn bản.</ahelp>"
+msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
+msgstr "<variable id=\"text2columns\">Chức năng này mở hộp thoại <emph>Văn bản sang Cột</emph>, trong đó bạn nhập thiết lập để mở rộng nội dung của mỗi ô đã chọn ra nhiều ô. </variable>"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3163807\n"
-"9\n"
+"text2columns.xhp\n"
+"hd_id9599597\n"
"help.text"
-msgid "Data"
-msgstr "Dữ liệu"
+msgid "To expand cell contents to multiple cells"
+msgstr "Để mở rộng nội dung ô ra nhiều ô"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3144502\n"
-"10\n"
+"text2columns.xhp\n"
+"par_id2021546\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Hãy chọn toán tử so sánh cần dùng.</ahelp> Những toán tử sẵn sàng thì phụ thuộc vào bạn đã chọn gì trong hộp <emph>Cho phép</emph>. Nếu bạn chọn « ở giữa » hay « không ở giữa », thì hai hộp nhập <emph>Tối thiểu</emph> và <emph>Tối đa</emph>. Không thì chỉ hộp <emph>Tối thiểu</emph>, <emph>Tối đa</emph> hay <emph>Giá trị</emph> sẽ xuất hiện."
+msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
+msgstr "Bạn có khả năng mở rộng ô chứa các giá trị định giới bằng dấu phẩy (CSV) ra nhiều ô cùng hàng."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153782\n"
-"11\n"
+"text2columns.xhp\n"
+"par_id2623981\n"
"help.text"
-msgid "Value"
-msgstr "Giá trị"
+msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
+msgstr "Ví dụ, ô A1 chứa những giá trị định giới bằng dấu phẩu <item type=\"literal\">1,2,3,4</item>, và ô A2 chứa chuỗi văn bản <item type=\"literal\">A,B,C,D</item>."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153266\n"
-"12\n"
+"text2columns.xhp\n"
+"par_id7242042\n"
"help.text"
-msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
-msgstr "Hãy nhập giá trị cho tùy chọn thẩm tra dữ liệu bạn đã chọn trong hộp <emph>Cho phép</emph>."
+msgid "Select the cell or cells that you want to expand."
+msgstr "Hãy lựa chọn (những) ô bạn muốn mở rộng."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3149814\n"
-"13\n"
+"text2columns.xhp\n"
+"par_id6999420\n"
"help.text"
-msgid "Minimum"
-msgstr "Tối thiểu"
+msgid "Choose <emph>Data - Text to Columns</emph>."
+msgstr "Chọn mục trình đơn <emph>Dữ liệu > Văn bản sang Cột</emph>."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153199\n"
-"14\n"
+"text2columns.xhp\n"
+"par_id6334116\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Nhập giá trị tối thiểu cho tùy chọn thẩm tra dữ liệu bạn đã chọn trong hộp <emph>Cho phép</emph>.</ahelp>"
+msgid "You see the Text to Columns dialog."
+msgstr "Bạn sẽ thấy hộp thoại <emph>Văn bản sang Cột</emph>."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3149035\n"
-"15\n"
+"text2columns.xhp\n"
+"par_id9276406\n"
"help.text"
-msgid "Maximum"
-msgstr "Tối đa"
+msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
+msgstr "Hãy bật những tùy chọn phân cách thích hợp. Ô xem thử hiển thị nội dung ô hiện thời được chuyển dạng sang nhiều ô."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150089\n"
-"16\n"
+"text2columns.xhp\n"
+"par_id8523819\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Nhập giá trị tối đa cho tùy chọn thẩm tra dữ liệu bạn đã chọn trong hộp <emph>Cho phép</emph>.</ahelp>"
+msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
+msgstr "Bạn có thể lựa chọn một chiều rộng trường, sau đó nhấn vào thước đo trong ô xem thử để đặt các vị trí phân cách ô."
+
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id1517380\n"
+"help.text"
+msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+msgstr "Bạn có thể lựa chọn hay nhập ký tự phân cách để xác định vị trí của mỗi điểm ngắt. Ký tự phân cách bị gỡ bỏ khỏi nội dung ô kết quả."
+
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id7110812\n"
+"help.text"
+msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
+msgstr "Trong mẫu thí dụ, bạn đặt dấu phẩy là ký tự phân cách. Hai ô A1 và B1 sẽ được mở rộng ra bốn ô. A1 chứa 1, A2 chứa 2, v.v."
diff --git a/source/vi/helpcontent2/source/text/scalc/02.po b/source/vi/helpcontent2/source/text/scalc/02.po
index 8a3f2e9f70e..9705c7b568a 100644
--- a/source/vi/helpcontent2/source/text/scalc/02.po
+++ b/source/vi/helpcontent2/source/text/scalc/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,279 +15,153 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
+"02130000.xhp\n"
"tit\n"
"help.text"
-msgid "Zoom Out"
-msgstr "Thu nhỏ"
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"bm_id3153561\n"
-"help.text"
-msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
-msgstr "<bookmark_value>ô xem trang;giảm tỷ lệ</bookmark_value><bookmark_value>thu nhỏ;giảm kích cỡ ô xem trang</bookmark_value>"
+msgid "Number format: Currency"
+msgstr "Định dạng số : Tiền tệ"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
-"hd_id3153561\n"
+"02130000.xhp\n"
+"hd_id3152892\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
-msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Thu nhỏ\">Thu nhỏ</link>"
+msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
+msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Định dạng số : Tiền tệ\">Định dạng số : Tiền tệ</link>"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
-"par_id3151246\n"
+"02130000.xhp\n"
+"par_id3148837\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:ZoomOut\">Thu nhỏ vùng được hiển thị trong tài liệu hiện thời (giảm kích cỡ của văn bản và các đối tượng khác, hiển thị toàn tài liệu). Hệ số thu/phóng hiện thời được hiển thị trên <emph>Thanh trạng thái</emph>.</ahelp>"
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3150398\n"
-"4\n"
-"help.text"
-msgid "The minimum zoom factor is 20%."
-msgstr "Hệ số thu nhỏ tối thiểu là 20% (÷5)."
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3153770\n"
-"help.text"
-msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Biểu tượng</alt></image>"
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3150440\n"
-"3\n"
-"help.text"
-msgid "Zooming Out"
-msgstr "Thu nhỏ"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert"
-msgstr "Chèn"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"bm_id3156329\n"
-"help.text"
-msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
-msgstr "<bookmark_value>chèn; đối tượng, biểu tượng thanh công cụ</bookmark_value>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3156329\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Chèn\">Chèn</link>"
+msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Áp dụng định dạng tiền tệ mặc định cho các ô đã chọn.</ahelp>"
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3147336\n"
-"2\n"
+"02130000.xhp\n"
+"par_id3155267\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertCtrl\">Nhấn vào mũi tên bên cạnh biểu tượng, để mở thanh công cụ <emph>Chèn </emph>, dùng đó bạn có thể thêm các đồ họa và ký tự đặc biệt vào bảng hiện thời.</ahelp>"
+msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Biểu tượng</alt></image>"
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3148664\n"
+"02130000.xhp\n"
+"par_id3150214\n"
"3\n"
"help.text"
-msgid "Tools bar icon:"
-msgstr "Biểu tượng thanh công cụ :"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_id3150767\n"
-"help.text"
-msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Biểu tượng</alt></image>"
+msgid "Number Format: Currency"
+msgstr "Định dạng số : Tiền tệ"
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3146120\n"
+"02130000.xhp\n"
+"par_id3146776\n"
"4\n"
"help.text"
-msgid "Insert"
-msgstr "Chèn"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_id3153188\n"
-"6\n"
-"help.text"
-msgid "You can select the following icons:"
-msgstr "Bạn có thể chọn những biểu tượng này:"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id4283883\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Khung nổi\">Khung nổi</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3149410\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Ký tự đặc biệt\">Ký tự đặc biệt</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3151117\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
-msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Từ tập tin\">Từ tập tin</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3633533\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
-msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Công thức\">Công thức</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_idN10769\n"
-"help.text"
-msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
-msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chèn đồ thị\">Đồ thị</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id7581408\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
-msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"Đối tượng OLE\">Đối tượng OLE</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>."
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
+"02140000.xhp\n"
"tit\n"
"help.text"
-msgid "Number Format: Delete Decimal Place"
-msgstr "Định dạng số : Xoá bớt chữ số thập phân"
+msgid "Number format: Percent"
+msgstr "Định dạng số : Phần trăm"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"hd_id3149164\n"
+"02140000.xhp\n"
+"hd_id3156329\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
-msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Định dạng số : Xoá lần số\">Định dạng số: Xoá bớt chữ số thập phân</link>"
+msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
+msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Định dạng số : Phần trăm\">Định dạng số : Phần trăm</link>"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3147264\n"
+"02140000.xhp\n"
+"par_id3155629\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">Xóa bớt một chữ số thập phân khỏi các số trong những ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatPercent\">Áp dụng định dạng phần trăm cho các ô đã chọn.</ahelp>"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3145173\n"
+"02140000.xhp\n"
+"par_id3153968\n"
"help.text"
-msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Biểu tượng</alt></image>"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3154686\n"
+"02140000.xhp\n"
+"par_id3151114\n"
"3\n"
"help.text"
-msgid "Number Format: Delete Decimal Place"
-msgstr "Định dạng số: Xoá bớt chữ số thập phân"
+msgid "Number Format: Percent"
+msgstr "Định dạng số : Phần trăm"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"tit\n"
+"02140000.xhp\n"
+"bm_id3149260\n"
"help.text"
-msgid "Number format: Currency"
-msgstr "Định dạng số : Tiền tệ"
+msgid "<bookmark_value>percentage calculations</bookmark_value>"
+msgstr "<bookmark_value>phép tính phần trăm</bookmark_value>"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"hd_id3152892\n"
-"1\n"
+"02140000.xhp\n"
+"par_id3149260\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
-msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Định dạng số : Tiền tệ\">Định dạng số : Tiền tệ</link>"
+msgid "You can also enter a percentage sign (%) after a number in a cell:"
+msgstr "Cũng có thể gõ dấu phần trăm (%) sau con số trong ô :"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3148837\n"
-"2\n"
+"02140000.xhp\n"
+"par_id3155411\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Áp dụng định dạng tiền tệ mặc định cho các ô đã chọn.</ahelp>"
+msgid "1% corresponds to 0.01"
+msgstr "1% tương ứng với 0.01"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3155267\n"
+"02140000.xhp\n"
+"par_id3145749\n"
+"7\n"
"help.text"
-msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Biểu tượng</alt></image>"
+msgid "1 + 16% corresponds to 116% or 1.16"
+msgstr "1 + 16% tương ứng với 116% hay 1.16"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3150214\n"
-"3\n"
+"02140000.xhp\n"
+"par_id3148575\n"
+"8\n"
"help.text"
-msgid "Number Format: Currency"
-msgstr "Định dạng số : Tiền tệ"
+msgid "1%% corresponds to 0.0001"
+msgstr "1%% tương ứng với 0.0001"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3146776\n"
-"4\n"
+"02140000.xhp\n"
+"par_id3159153\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>."
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
#: 02150000.xhp
msgctxt ""
@@ -341,152 +215,151 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>."
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
+"02160000.xhp\n"
"tit\n"
"help.text"
-msgid "Accept"
-msgstr "Chấp nhận"
-
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
-msgstr "<bookmark_value>thanh công thức; chấp nhận chuỗi nhập vào</bookmark_value><bookmark_value>hàm; biểu tượng chấp nhận chuỗi nhập vào</bookmark_value>"
+msgid "Number Format: Add Decimal Place"
+msgstr "Định dạng số : Thêm chữ số thập phân"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"hd_id3143267\n"
+"02160000.xhp\n"
+"hd_id3150275\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
-msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Chấp nhận\">Chấp nhận</link>"
+msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Định dạng số: Thêm chữ số thập phân\">Định dạng số: Thêm chữ số thập phân</link>"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3151245\n"
+"02160000.xhp\n"
+"par_id3150792\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_OK\">Chấp nhận nội dung của <emph>Trường nhập vào</emph>, sau đó chèn nội dung đó vào ô hiện thời.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">Thêm một chữ số thập phân vào các số trong những ô đã chọn.</ahelp>"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3150769\n"
+"02160000.xhp\n"
+"par_id3145787\n"
"help.text"
-msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Biểu tượng</alt></image>"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3125864\n"
+"02160000.xhp\n"
+"par_id3149262\n"
"3\n"
"help.text"
-msgid "Accept"
-msgstr "Chấp nhận"
+msgid "Number Format: Add Decimal Place"
+msgstr "Định dạng số : Thêm chữ số thập phân"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
+"02170000.xhp\n"
"tit\n"
"help.text"
-msgid "Number format: Percent"
-msgstr "Định dạng số : Phần trăm"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Định dạng số : Xoá bớt chữ số thập phân"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3156329\n"
+"02170000.xhp\n"
+"hd_id3149164\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
-msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Định dạng số : Phần trăm\">Định dạng số : Phần trăm</link>"
+msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Định dạng số : Xoá lần số\">Định dạng số: Xoá bớt chữ số thập phân</link>"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3155629\n"
+"02170000.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatPercent\">Áp dụng định dạng phần trăm cho các ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">Xóa bớt một chữ số thập phân khỏi các số trong những ô đã chọn.</ahelp>"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3153968\n"
+"02170000.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Biểu tượng</alt></image>"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3151114\n"
+"02170000.xhp\n"
+"par_id3154686\n"
"3\n"
"help.text"
-msgid "Number Format: Percent"
-msgstr "Định dạng số : Phần trăm"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Định dạng số : Xoá bớt chữ số thập phân"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"bm_id3149260\n"
+"06010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>percentage calculations</bookmark_value>"
-msgstr "<bookmark_value>phép tính phần trăm</bookmark_value>"
+msgid "Sheet Area"
+msgstr "Vùng bảng tính"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3149260\n"
-"5\n"
+"06010000.xhp\n"
+"bm_id3156326\n"
"help.text"
-msgid "You can also enter a percentage sign (%) after a number in a cell:"
-msgstr "Cũng có thể gõ dấu phần trăm (%) sau con số trong ô :"
+msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
+msgstr "<bookmark_value>thanh công thức; tên vùng bảng tính</bookmark_value><bookmark_value>tên vùng bảng tính</bookmark_value><bookmark_value>hiển thị; tham chiếu ô</bookmark_value><bookmark_value>tham chiếu ô; hiển thị</bookmark_value>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3155411\n"
-"6\n"
+"06010000.xhp\n"
+"hd_id3156326\n"
+"1\n"
"help.text"
-msgid "1% corresponds to 0.01"
-msgstr "1% tương ứng với 0.01"
+msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
+msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Hộp tên</link>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3145749\n"
-"7\n"
+"06010000.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "1 + 16% corresponds to 116% or 1.16"
-msgstr "1 + 16% tương ứng với 116% hay 1.16"
+msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_POS\">Hiển thị tham chiếu cho ô hiện thời, phạm vi của các ô đả chọn, hoặc tên của vùng. Cũng có thể chọn phạm vi các ô, sau đó gõ vào <emph>Hộp tên</emph> tên cho phạm vi đó.</ahelp>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3148575\n"
-"8\n"
+"06010000.xhp\n"
+"par_id3163710\n"
"help.text"
-msgid "1%% corresponds to 0.0001"
-msgstr "1%% tương ứng với 0.0001"
+msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Hộp tổ hợp: vùng bảng tính</alt></image>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3159153\n"
-"10\n"
+"06010000.xhp\n"
+"par_id3151118\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
+msgid "Name Box"
+msgstr "Hộp tên"
+
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_id3152596\n"
+"6\n"
+"help.text"
+msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
+msgstr "Để nhảy tới một ô riêng, hoặc để chọn một phạm vi ô, gõ vào hộp này tham chiếu ô hay tham chiếu phạm vi ô, v.d. « F1 » hay « A1:C4 »."
#: 06030000.xhp
msgctxt ""
@@ -557,48 +430,91 @@ msgctxt ""
msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
msgstr "Nhấn vào biểu tượng <emph>Chấp nhận</emph> (dấu kiểm màu lục) để dùng công thức được hiển thị trong trường nhập vào."
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
+"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Number Format: Add Decimal Place"
-msgstr "Định dạng số : Thêm chữ số thập phân"
+msgid "Function"
+msgstr "Hàm"
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3150275\n"
+"06040000.xhp\n"
+"bm_id3150084\n"
+"help.text"
+msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgstr "<bookmark_value>thanh công thức; hàm</bookmark_value><bookmark_value>hàm; biểu tượng thanh công thức</bookmark_value>"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3150084\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
-msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Định dạng số: Thêm chữ số thập phân\">Định dạng số: Thêm chữ số thập phân</link>"
+msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Hàm\">Hàm</link>"
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150792\n"
+"06040000.xhp\n"
+"par_id3151245\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">Thêm một chữ số thập phân vào các số trong những ô đã chọn.</ahelp>"
+msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">Thêm một công thức vào ô hiện thời. Nhấn vào biểu tượng này, sau đó gõ công thức vào <emph>Trường nhập vào</emph>.</ahelp>"
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3145787\n"
+"06040000.xhp\n"
+"par_id3153360\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Biểu tượng</alt></image>"
+msgid "This icon is only available when the <emph>Input line</emph> box is not active."
+msgstr "Biểu tượng này chỉ sẵn sàng khi hộp <emph>Trường nhập vào</emph> bị ẩn."
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3149262\n"
-"3\n"
+"06040000.xhp\n"
+"par_id3153770\n"
"help.text"
-msgid "Number Format: Add Decimal Place"
-msgstr "Định dạng số: Thêm chữ số thập phân"
+msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Biểu tượng</alt></image>"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3153951\n"
+"4\n"
+"help.text"
+msgid "Function"
+msgstr "Hàm"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input line"
+msgstr "Trường nhập vào"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3153821\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
+msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Trường nhập vào\">Trường nhập vào</link>"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3155922\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Gõ công thức bạn muốn thêm vào ô hiện thời. Cũng có thể nhấn vào biểu tượng <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Trợ lý hàm</link> để chèn vào công thức một hàm đã xác định sẵn.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -651,119 +567,56 @@ msgctxt ""
msgid "Cancel"
msgstr "Thôi"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
+"06070000.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Chèn ô"
+msgid "Accept"
+msgstr "Chấp nhận"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"bm_id3150275\n"
+"06070000.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
-msgstr "<bookmark_value>chèn; ô, biểu tượng thanh công cụ</bookmark_value>"
+msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
+msgstr "<bookmark_value>thanh công thức; chấp nhận chuỗi nhập vào</bookmark_value><bookmark_value>hàm; biểu tượng chấp nhận chuỗi nhập vào</bookmark_value>"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"hd_id3150275\n"
+"06070000.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
-msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Chèn ô\">Chèn ô</link>"
+msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Chấp nhận\">Chấp nhận</link>"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"par_id3156024\n"
+"06070000.xhp\n"
+"par_id3151245\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsCellsCtrl\">Nhấn vào mũi tên bên cạnh biểu tượng, để mở thanh công cụ <emph>Chèn ô</emph>, dùng đó bạn có thể chèn các ô, hàng và cột vào bảng hiện thời.</ahelp>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"par_id3150398\n"
-"3\n"
-"help.text"
-msgid "Tools bar icon:"
-msgstr "Biểu tượng thanh công cụ :"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"par_id3150767\n"
-"5\n"
-"help.text"
-msgid "You can select the following icons:"
-msgstr "Bạn có thể chọn những biểu tượng này:"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3150439\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Chèn ô bên dưới\">Chèn ô bên dưới</link>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3146119\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Chèn ô bên phải\">Chèn ô bên phải</link>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3153190\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Hàng\">Hàng</link>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3153726\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cột\">Cột</link>"
-
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input line"
-msgstr "Trường nhập vào"
+msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_OK\">Chấp nhận nội dung của <emph>Trường nhập vào</emph>, sau đó chèn nội dung đó vào ô hiện thời.</ahelp>"
-#: 06050000.xhp
+#: 06070000.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3153821\n"
-"1\n"
+"06070000.xhp\n"
+"par_id3150769\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
-msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Trường nhập vào\">Trường nhập vào</link>"
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Biểu tượng</alt></image>"
-#: 06050000.xhp
+#: 06070000.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"06070000.xhp\n"
+"par_id3125864\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Gõ công thức bạn muốn thêm vào ô hiện thời. Cũng có thể nhấn vào biểu tượng <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Trợ lý hàm</link> để chèn vào công thức một hàm đã xác định sẵn.</ahelp>"
+msgid "Accept"
+msgstr "Chấp nhận"
#: 06080000.xhp
msgctxt ""
@@ -817,6 +670,32 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Nhấn vào sắc thái định dạng bạn muốn áp dụng, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Position in document"
+msgstr "Vị trí trong tài liệu"
+
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"hd_id3145119\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Vị trí trong tài liệu\">Vị trí trong tài liệu</link>"
+
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"par_id3147265\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:StatusDocPos\">Hiển thị số hiệu bảng hiện thời, và tổng số bảng trong bảng tính.</ahelp>"
+
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -869,68 +748,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Mẫ lỗi\">Mã lỗi</link>"
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Function"
-msgstr "Hàm"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"bm_id3150084\n"
-"help.text"
-msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
-msgstr "<bookmark_value>thanh công thức; hàm</bookmark_value><bookmark_value>hàm; biểu tượng thanh công thức</bookmark_value>"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3150084\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
-msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Hàm\">Hàm</link>"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3151245\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">Thêm một công thức vào ô hiện thời. Nhấn vào biểu tượng này, sau đó gõ công thức vào <emph>Trường nhập vào</emph>.</ahelp>"
-
-#: 06040000.xhp
-#, fuzzy
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153360\n"
-"3\n"
-"help.text"
-msgid "This icon is only available when the <emph>Input line</emph> box is not active."
-msgstr "Biểu tượng này chỉ sẵn sàng khi hộp <emph>Trường nhập vào</emph> bị ẩn."
-
-#: 06040000.xhp
-#, fuzzy
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153770\n"
-"help.text"
-msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Biểu tượng</alt></image>"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153951\n"
-"4\n"
-"help.text"
-msgid "Function"
-msgstr "Hàm"
-
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -979,8 +796,8 @@ msgctxt ""
"10050000.xhp\n"
"par_id3155854\n"
"help.text"
-msgid "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3151116\" src=\"cmd/sc_zoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgstr ""
#: 10050000.xhp
msgctxt ""
@@ -991,88 +808,269 @@ msgctxt ""
msgid "Zoom In"
msgstr "Phóng to"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
+"10060000.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet Area"
-msgstr "Vùng bảng tính"
+msgid "Zoom Out"
+msgstr "Thu nhỏ"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"bm_id3156326\n"
+"10060000.xhp\n"
+"bm_id3153561\n"
"help.text"
-msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
-msgstr "<bookmark_value>thanh công thức; tên vùng bảng tính</bookmark_value><bookmark_value>tên vùng bảng tính</bookmark_value><bookmark_value>hiển thị; tham chiếu ô</bookmark_value><bookmark_value>tham chiếu ô; hiển thị</bookmark_value>"
+msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
+msgstr "<bookmark_value>ô xem trang;giảm tỷ lệ</bookmark_value><bookmark_value>thu nhỏ;giảm kích cỡ ô xem trang</bookmark_value>"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3156326\n"
+"10060000.xhp\n"
+"hd_id3153561\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
-msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Hộp tên</link>"
+msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
+msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Thu nhỏ\">Thu nhỏ</link>"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3149656\n"
+"10060000.xhp\n"
+"par_id3151246\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_POS\">Hiển thị tham chiếu cho ô hiện thời, phạm vi của các ô đả chọn, hoặc tên của vùng. Cũng có thể chọn phạm vi các ô, sau đó gõ vào <emph>Hộp tên</emph> tên cho phạm vi đó.</ahelp>"
+msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ZoomOut\">Thu nhỏ vùng được hiển thị trong tài liệu hiện thời (giảm kích cỡ của văn bản và các đối tượng khác, hiển thị toàn tài liệu). Hệ số thu/phóng hiện thời được hiển thị trên <emph>Thanh trạng thái</emph>.</ahelp>"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3163710\n"
+"10060000.xhp\n"
+"par_id3150398\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
-msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Hộp tổ hợp: vùng bảng tính</alt></image>"
+msgid "The minimum zoom factor is 20%."
+msgstr "Hệ số thu nhỏ tối thiểu là 20% (÷5)."
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3151118\n"
+"10060000.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Biểu tượng</alt></image>"
+
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"par_id3150440\n"
+"3\n"
+"help.text"
+msgid "Zooming Out"
+msgstr "Thu nhỏ"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert"
+msgstr "Chèn"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"bm_id3156329\n"
+"help.text"
+msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>chèn; đối tượng, biểu tượng thanh công cụ</bookmark_value>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3156329\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Chèn\">Chèn</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3147336\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCtrl\">Nhấn vào mũi tên bên cạnh biểu tượng, để mở thanh công cụ <emph>Chèn </emph>, dùng đó bạn có thể thêm các đồ họa và ký tự đặc biệt vào bảng hiện thời.</ahelp>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3148664\n"
+"3\n"
+"help.text"
+msgid "Tools bar icon:"
+msgstr "Biểu tượng thanh công cụ :"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Biểu tượng</alt></image>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3146120\n"
"4\n"
"help.text"
-msgid "Name Box"
-msgstr "Hộp tên"
+msgid "Insert"
+msgstr "Chèn"
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3152596\n"
+"18010000.xhp\n"
+"par_id3153188\n"
"6\n"
"help.text"
-msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
-msgstr "Để nhảy tới một ô riêng, hoặc để chọn một phạm vi ô, gõ vào hộp này tham chiếu ô hay tham chiếu phạm vi ô, v.d. « F1 » hay « A1:C4 »."
+msgid "You can select the following icons:"
+msgstr "Bạn có thể chọn những biểu tượng này:"
-#: 08010000.xhp
+#: 18010000.xhp
msgctxt ""
-"08010000.xhp\n"
+"18010000.xhp\n"
+"hd_id4283883\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Khung nổi\">Khung nổi</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3149410\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Ký tự đặc biệt\">Ký tự đặc biệt</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3151117\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Từ tập tin\">Từ tập tin</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3633533\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Công thức\">Công thức</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_idN10769\n"
+"help.text"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chèn đồ thị\">Đồ thị</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id7581408\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"Đối tượng OLE\">Đối tượng OLE</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
"tit\n"
"help.text"
-msgid "Position in document"
-msgstr "Vị trí trong tài liệu"
+msgid "Insert Cells"
+msgstr "Chèn ô"
-#: 08010000.xhp
+#: 18020000.xhp
msgctxt ""
-"08010000.xhp\n"
-"hd_id3145119\n"
+"18020000.xhp\n"
+"bm_id3150275\n"
+"help.text"
+msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>chèn; ô, biểu tượng thanh công cụ</bookmark_value>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150275\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
-msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Vị trí trong tài liệu\">Vị trí trong tài liệu</link>"
+msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
+msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Chèn ô\">Chèn ô</link>"
-#: 08010000.xhp
+#: 18020000.xhp
msgctxt ""
-"08010000.xhp\n"
-"par_id3147265\n"
+"18020000.xhp\n"
+"par_id3156024\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:StatusDocPos\">Hiển thị số hiệu bảng hiện thời, và tổng số bảng trong bảng tính.</ahelp>"
+msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsCellsCtrl\">Nhấn vào mũi tên bên cạnh biểu tượng, để mở thanh công cụ <emph>Chèn ô</emph>, dùng đó bạn có thể chèn các ô, hàng và cột vào bảng hiện thời.</ahelp>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150398\n"
+"3\n"
+"help.text"
+msgid "Tools bar icon:"
+msgstr "Biểu tượng thanh công cụ :"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150767\n"
+"5\n"
+"help.text"
+msgid "You can select the following icons:"
+msgstr "Bạn có thể chọn những biểu tượng này:"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150439\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Chèn ô bên dưới\">Chèn ô bên dưới</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3146119\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Chèn ô bên phải\">Chèn ô bên phải</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153190\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Hàng\">Hàng</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153726\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cột\">Cột</link>"
diff --git a/source/vi/helpcontent2/source/text/scalc/04.po b/source/vi/helpcontent2/source/text/scalc/04.po
index a4656cfd426..5171ac3a0c9 100644
--- a/source/vi/helpcontent2/source/text/scalc/04.po
+++ b/source/vi/helpcontent2/source/text/scalc/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2012-07-04 18:58+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -410,7 +410,6 @@ msgid "In the page preview: Moves to the next print page."
msgstr "Trong ô xem thử trang: di chuyển về trang in kế tiếp"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3146885\n"
@@ -429,7 +428,6 @@ msgid "Moves one screen to the left."
msgstr "Di chuyển bên trái theo một màn hình."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3149013\n"
@@ -480,7 +478,6 @@ msgid "Adds the next sheet to the current selection of sheets. If all the sheets
msgstr "Thêm bảng kế tiếp vào các bảng được chọn hiện thời. Nếu mọi bảng trong bảng tính được chọn, phím tắt này chỉ chọn bảng kế tiếp. Nó khiến bảng kế tiếp là bảng hiện thời."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3145826\n"
@@ -508,7 +505,6 @@ msgid "Selects the data range that contains the cursor. A range is a contiguous
msgstr "Chọn phạm vi dữ liệu chứa con trỏ. Phạm vi là phạm vi các ô liên tục chứa dữ liệu và có cột/hàng rỗng bao quanh."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3151233\n"
@@ -586,7 +582,6 @@ msgid "Moves the cursor down one cell in a selected range. To specify the direct
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id5961180\n"
@@ -1059,7 +1054,6 @@ msgid "Ungroups the selected data range."
msgstr "Rã nhóm phạm vi dữ liệu đã chọn."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3151264\n"
@@ -1078,7 +1072,6 @@ msgid "Increases the height of current row (only in <link href=\"text/shared/opt
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3151297\n"
@@ -1097,7 +1090,6 @@ msgid "Decreases the height of current row (only in <link href=\"text/shared/opt
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3155997\n"
@@ -1116,7 +1108,6 @@ msgid "Increases the width of the current column."
msgstr "Tăng bề rộng của cột hiện thời."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154046\n"
@@ -1313,7 +1304,6 @@ msgid "Standard format"
msgstr "Định dạng chuẩn"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154205\n"
@@ -1375,7 +1365,6 @@ msgid "Changes the focus by moving backwards through the areas and buttons of th
msgstr "Chuyển đổi tiêu điểm (mục hoạt động) bằng cách di chuyển lùi qua các vùng và nút trong hộp thoại. Hãy bấm phím Shift-Tab cho đến khi kích hoạt mục thích hợp."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3148484\n"
@@ -1394,7 +1383,6 @@ msgid "Moves the focus up one item in the current dialog area."
msgstr "Chuyển tiêu điểm lên theo một mục trong vùng hộp thoại hiện thời."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154273\n"
@@ -1413,7 +1401,6 @@ msgid "Moves the focus down one item in the current dialog area."
msgstr "Chuyển tiêu điểm xuống theo một mục trong vùng hộp thoại hiện thời."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3148912\n"
@@ -1432,7 +1419,6 @@ msgid "Moves the focus one item to the left in the current dialog area."
msgstr "Chuyển tiêu điểm qua bên trái theo một mục trong vùng hộp thoại hiện thời."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3150712\n"
@@ -1547,7 +1533,7 @@ msgctxt ""
"155\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mũi tên lên"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Mũi tên lên"
#: 01020000.xhp
msgctxt ""
@@ -1565,7 +1551,7 @@ msgctxt ""
"153\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mũi tên xuống"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Mũi tên xuống"
#: 01020000.xhp
msgctxt ""
@@ -1583,7 +1569,7 @@ msgctxt ""
"151\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mũi tên trái"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Mũi tên trái"
#: 01020000.xhp
msgctxt ""
diff --git a/source/vi/helpcontent2/source/text/scalc/05.po b/source/vi/helpcontent2/source/text/scalc/05.po
index 8f0a9134a36..1e22951703e 100644
--- a/source/vi/helpcontent2/source/text/scalc/05.po
+++ b/source/vi/helpcontent2/source/text/scalc/05.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
-"PO-Revision-Date: 2011-04-05 23:27+0200\n"
-"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2013-02-12 23:40+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
@@ -14,6 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1360712412.0\n"
#: 02140000.xhp
msgctxt ""
@@ -825,7 +826,7 @@ msgctxt ""
"par_id8277230\n"
"help.text"
msgid "A1: 1 B1: <Empty> C1: =B1 (displays 0)"
-msgstr ""
+msgstr "A1: 1 B1: <rỗng> C1: =B1 (hiển thị 0)"
#: empty_cells.xhp
msgctxt ""
@@ -969,7 +970,7 @@ msgctxt ""
"par_id2629474\n"
"help.text"
msgid "A1: <Empty>"
-msgstr ""
+msgstr "A1: <rỗng>"
#: empty_cells.xhp
msgctxt ""
diff --git a/source/vi/helpcontent2/source/text/scalc/guide.po b/source/vi/helpcontent2/source/text/scalc/guide.po
index c4d795a1705..d3d71a89b4f 100644
--- a/source/vi/helpcontent2/source/text/scalc/guide.po
+++ b/source/vi/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1771 +15,1436 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
+"address_auto.xhp\n"
"tit\n"
"help.text"
-msgid "Using Scenarios"
-msgstr "Dùng kịch bản"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"bm_id3149664\n"
-"help.text"
-msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
-msgstr "<bookmark_value>kịch bản; tạo/sửa/xoá</bookmark_value><bookmark_value>mở;kịch bản</bookmark_value><bookmark_value>chọn;kịch bản trong Bộ điều hướng</bookmark_value>"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"hd_id3125863\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
-msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Dùng kịch bản\">Dùng kịch bản</link></variable>"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3150869\n"
-"2\n"
-"help.text"
-msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
-msgstr "Một kịch bản $[officename] Calc là một tập hợp các giá trị của ô có thể được dùng trong các phép tính của bạn. Bạn có thể gán tên cho mọi kịch bản trên trang tính. Xác định một vài kịch bản trên cùng một trang tính, mỗi kịch bản với một vài giá trị khác nhau trong các ô đó. Sau đó bạn có thể dễ dàng chuyển đổi các tập hợp các giá trị ô này theo tên của chúng và có thể ngay lập tức quan sát các kết quả. Các kịch bản này là một công cụ để thử nghiệm câu hỏi dạng \"what-if\" (cái gì sẽ xảy ra nếu...?)."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"hd_id3149255\n"
-"15\n"
-"help.text"
-msgid "Creating Your Own Scenarios"
-msgstr "Tự tạo kịch bản cho bạn"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154704\n"
-"16\n"
-"help.text"
-msgid "To create a scenario, select all the cells that provide the data for the scenario."
-msgstr "Để tạo một kịch bản, chọn tất cả các ô cung cấp dữ liệu cho kịch bản."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154020\n"
-"17\n"
-"help.text"
-msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
-msgstr ""
+msgid "Recognizing Names as Addressing"
+msgstr "Nhận tên dưới dạng địa chỉ"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3150364\n"
-"18\n"
+"address_auto.xhp\n"
+"bm_id3148797\n"
"help.text"
-msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
-msgstr "Chọn <emph>Công cụ > Kịch bản</emph>. Hộp thoại <emph>Tạo kịch bản</emph> sẽ mở ra."
+msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
+msgstr "<bookmark_value>tự động đánh địa chỉ trong bảng</bookmark_value><bookmark_value>đánh địa chỉ với ngôn ngữ tự nhiên</bookmark_value><bookmark_value>công thức; dùng nhãn hàng/cột</bookmark_value><bookmark_value>văn bản trong ô; làm địa chỉ</bookmark_value><bookmark_value>đánh địa chỉ; tự động</bookmark_value><bookmark_value>bật/tắt nhận dạng tên</bookmark_value><bookmark_value>phần đầu hàng;sử dụng trong công thức</bookmark_value><bookmark_value>phần đầu cột;sử dụng trong công thức</bookmark_value><bookmark_value>cột; tự động tìm nhãn</bookmark_value><bookmark_value>hàng; tự động tìm nhãn</bookmark_value><bookmark_value>nhận dạng; nhãn cột và hàng</bookmark_value>"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3166426\n"
-"19\n"
+"address_auto.xhp\n"
+"hd_id3148797\n"
+"20\n"
"help.text"
-msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
-msgstr "Nhập tên cho kịch bản mới và giữ nguyên các trường khác với các giá trị mặc định của chúng. Nhấn <emph>OK</emph> để đóng hộp thoại. Kịch bản mới của bạn sẽ tự động được kích hoạt."
+msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
+msgstr "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Nhận Tên dưới dạng địa chỉ\">Nhận Tên dưới dạng địa chỉ</link></variable>"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"hd_id3149664\n"
-"3\n"
+"address_auto.xhp\n"
+"par_id3152597\n"
+"21\n"
"help.text"
-msgid "Using Scenarios"
-msgstr "Dùng kịch bản"
+msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
+msgstr "Bạn có thể dùng các ô văn bản để chỉ hàng hoặc cột chứa những ô đó."
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3153415\n"
-"11\n"
+"address_auto.xhp\n"
+"par_id3156283\n"
"help.text"
-msgid "Scenarios can be selected in the Navigator:"
-msgstr "Các kịch bản có thể được chọn trong Bộ điều hướng:"
+msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"4.1291in\" height=\"1.6709in\" localize=\"true\"><alt id=\"alt_id3154942\">Ví dụ về bảng tính</alt></image>"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3150752\n"
-"12\n"
+"address_auto.xhp\n"
+"par_id3154512\n"
+"22\n"
"help.text"
-msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
-msgstr "Mở Bộ điều hướng với biểu tượng <emph>Bộ điều hướng</emph> <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Biểu tượng Bộ điều hướng</alt></image> trên thanh <emph>Chuẩn</emph>."
+msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
+msgstr "Trong bảng tính ví dụ này, bạn có thể dùng dãy <item type=\"literal\">'Column One'</item> trong một công thức để chỉ các ô từ <item type=\"literal\">B3</item> đến <item type=\"literal\">B5</item>, hoặc <item type=\"literal\">'Column Two'</item> để chỉ các ô từ <item type=\"literal\">C2</item> đến <item type=\"literal\">C5</item>. Bạn cũng có thể dùng <item type=\"literal\">'Row One'</item> để chỉ các ô từ <item type=\"literal\">B3</item> đến <item type=\"literal\">D3</item>, hoặc <item type=\"literal\">'Row Two'</item> đối với các ô từ <item type=\"literal\">B4</item> đến <item type=\"literal\">D4</item>. Kết quả mà công thức dựa theo tên ô trả về, ví dụ, công thức <item type=\"literal\">SUM('Column One')</item>, sẽ cho 600."
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3155764\n"
-"13\n"
+"address_auto.xhp\n"
+"par_id3155443\n"
+"24\n"
"help.text"
-msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/navipi/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
+msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
msgstr ""
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154256\n"
-"14\n"
-"help.text"
-msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
-msgstr "Trong Bộ điều hướng, bạn có thể thấy các kịch bản được định nghĩa kèm theo lời bình đã được nhập vào khi tạo kịch bản."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id1243629\n"
-"help.text"
-msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
-msgstr "Nhấn đúp vào tên một kịch bản trong Bộ vđể ứng dụng kịch bản đó vào trang tính hiện thời."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id9044770\n"
-"help.text"
-msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
-msgstr "Để xóa một kịch bản, nhấn chuột phải vào tên kịch bản trong Bộ điều hướng và chọn <emph>Xóa</emph>."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3674123\n"
-"help.text"
-msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
-msgstr "Để sửa một kịch bản, nhấn chuột phải vào tên của nó trong Bộ điều hướng và chọn <emph>Thuộc tính</emph>."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3424481\n"
-"help.text"
-msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
-msgstr "Để ẩn đường viền của một tập hợp các ô là bộ phận của một kịch bản, hãy mở hộp thoại <emph>Thuộc tính</emph> cho mỗi kịch bản tác động đến các ô và gột hộp kiểm tra <emph>Hiển thị viền</emph>. Việc ẩn đường viền này đồng thời cũng gỡ bỏ hộp danh sách trên trang tính nơi mà bạn có thể chọn các kịch bản."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154368\n"
-"22\n"
-"help.text"
-msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
-msgstr "Nếu bạn muốn biết giá trị nào trong kịch bản tác động đến các giá trị khác, hãy chọn <emph>Công cụ > Dò tìm > Theo vết phụ thuộc</emph>. Bạn có thể thấy các mũi tên chỉ tới các ô phụ thuộc trực tiếp vào ô đang xét."
-
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3154484\n"
-"29\n"
+"address_auto.xhp\n"
+"par_id3149210\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
-msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Tạo kịch bản\">Tạo kịch bản</link>"
+msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
+msgstr "Nếu bạn muốn Calc tự động nhận tên, tên đó phải được bắt đầu bằng chữ cái và chỉ gồm chữ và số. Nếu bạn tự mình nhập tên vào trong công thức, hãy đặt tên đó trong dấu nháy đơn ('). Nếu trong tên cũng có dấu nháy đơn, hãy dùng dấu chéo ngược, kiểu như <item type=\"literal\">'Harry\\'s Bar'.</item>"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
+"auto_off.xhp\n"
"tit\n"
"help.text"
-msgid "Applying Multiple Sheets"
-msgstr "Ứng dụng nhiều trang tính"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"bm_id3154759\n"
-"help.text"
-msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
-msgstr "<bookmark_value>trang tính; chèn</bookmark_value><bookmark_value>chèn; trang tính</bookmark_value><bookmark_value>trang tính; lựa chọn nhiều</bookmark_value><bookmark_value>phụ thêm trang tính</bookmark_value><bookmark_value>lựa chọn;nhiều trang tính</bookmark_value><bookmark_value>nhiều trang tính</bookmark_value><bookmark_value>tính;nhiều trang tính</bookmark_value>"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3154759\n"
-"9\n"
-"help.text"
-msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
-msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Ứng dụng nhiều trang tính\">Ứng dụng nhiều trang tính</link></variable>"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3148576\n"
-"10\n"
-"help.text"
-msgid "Inserting a Sheet"
-msgstr "Chèn một trang tính"
+msgid "Deactivating Automatic Changes"
+msgstr "Tắt chế độ Tự động Thay đổi"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id3154731\n"
-"4\n"
+"auto_off.xhp\n"
+"bm_id3149456\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
-msgstr "Chọn <item type=\"menuitem\">Chèn > Bảng</item> để chèn một trang mới hoặc trang có sẵn từ tập tin khác."
+msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
+msgstr "<bookmark_value>tắt chế độ; tự động thay đổi</bookmark_value><bookmark_value>bảng; tắt chế độ tự động thay đổi</bookmark_value><bookmark_value>Bật/tắt chức năng Tự động nhập</bookmark_value><bookmark_value>văn bản trong ô;chức năng Tự động nhập</bookmark_value><bookmark_value>các ô;chức năng Tự động nhập văn bản</bookmark_value><bookmark_value>hỗ trợ nhập liệu trong bảng tính</bookmark_value><bookmark_value>thay đổi; nhập các ô</bookmark_value><bookmark_value>Chức năng Tự động sửa lỗi;nội dung ô</bookmark_value><bookmark_value>nhập ô;chức năng Tự động nhập</bookmark_value><bookmark_value>chữ thường;chức năng Tự động nhập (trong ô)</bookmark_value><bookmark_value>chữ hoa;chức năng Tự động Nhập (trong ô)</bookmark_value><bookmark_value>định dạng ngày;tránh chuyển đổi sang</bookmark_value><bookmark_value>bật/tắt hoàn tất số</bookmark_value><bookmark_value>bật/tắt hoàn tất văn bản</bookmark_value><bookmark_value>bật/tắt hoàn tất từ</bookmark_value>"
-#: multitables.xhp
-#, fuzzy
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id05092009140203598\n"
+"auto_off.xhp\n"
+"hd_id3149456\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại trong đó bạn có thể thêm ngôn ngữ vào danh sách.</ahelp>"
+msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
+msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Tắt chế độ tự thay đổi\">Tắt chế độ tự thay đổi</link></variable>"
-#: multitables.xhp
-#, fuzzy
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id05092009140203523\n"
+"auto_off.xhp\n"
+"par_id3156442\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại trong đó bạn có thể thêm ngôn ngữ vào danh sách.</ahelp>"
+msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
+msgstr "Mặc định, $[officename] tự động sửa những lỗi hay gặp và áp dụng định dạng khi bạn gõ. Bạn có thể lập tức huỷ bỏ những thay đổi tự động bằng cách nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id050920091402035\n"
+"auto_off.xhp\n"
+"par_id3145273\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chấn để chọn tất cả các bảng trong tài liệu.</ahelp>"
+msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
+msgstr "Dưới đây là cách bạn có thể tắt và bật lại chế độ tự động sửa lỗi trong $[officename] Calc:"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id0509200914020391\n"
+"auto_off.xhp\n"
+"hd_id3145748\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chấn để bỏ chọn tất cả các bảng trong tài liệu, ngoại trừ bảng hiện tại.</ahelp>"
+msgid "Automatic Text or Number Completion"
+msgstr "Tự điền nốt số hoặc văn bản"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"hd_id3154491\n"
-"11\n"
+"auto_off.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "Selecting Multiple Sheets"
-msgstr "Chọn nhiều trang"
+msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
+msgstr "Khi bạn nhập nội dung vào ô, $[officename] Calc tự động gợi ý các dữ liệu đã nhập trong cùng cột. Tính năng này gọi là <emph>Tự động Nhập</emph>."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id3145251\n"
+"auto_off.xhp\n"
+"par_id3153878\n"
"6\n"
"help.text"
-msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
-msgstr ""
+msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
+msgstr "Để bật hoặc tắt chế độ Tự động Nhập, bạn đánh dấu hoặc bỏ dấu hộp kiểm <link href=\"text/scalc/01/06130000.xhp\" name=\"Công cụ > Nội dung ô > Tự động Nhập\"><emph>Công cụ > Nội dung ô > Tự động Nhập</emph></link>."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_idN106B7\n"
+"auto_off.xhp\n"
+"hd_id3146972\n"
+"21\n"
"help.text"
-msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
-msgstr "Bạn có thể sử dụng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down để chọn nhiều trang tính một lúc bằng bàn phím."
+msgid "Automatic Conversion to Date Format"
+msgstr "Tự động chuyển sang định dạng ngày"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"hd_id3155600\n"
-"12\n"
+"auto_off.xhp\n"
+"par_id3153707\n"
+"22\n"
"help.text"
-msgid "Undoing a Selection"
-msgstr "Hủy bước một lựa chọn"
+msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
+msgstr "$[officename] Calc tự động chuyển đổi một số nội dung phù hợp sang ngày tháng. Ví dụ, nếu bạn nhập <emph>1.1</emph>, Calc sẽ chuyển nó thành ngày 1 tháng 1 của năm hiện thời, tuỳ thuộc vào thiết lập miền địa phương của hệ thống, và rồi hiển thị nó ở định dạng ngày tháng trong ô."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id3146969\n"
-"13\n"
+"auto_off.xhp\n"
+"par_id3159267\n"
+"23\n"
"help.text"
-msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
-msgstr ""
+msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
+msgstr "Để đảm bảo nội dung được định dạng thành văn bản, bạn phải thêm một dấu lược (') ở đầu nội dung. Dấu lược sẽ không hiển thị trong ô."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"hd_id3156382\n"
-"15\n"
+"auto_off.xhp\n"
+"hd_id3150043\n"
+"7\n"
"help.text"
-msgid "Calculating Across Multiple Sheets"
-msgstr "Tính toán qua nhiểu trang tính"
+msgid "Quotation Marks Replaced by Custom Quotes"
+msgstr "Dấu trích dẫn sẽ được thay thế bởi dấu khác do bạn chọn"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
+"auto_off.xhp\n"
"par_id3155333\n"
-"16\n"
-"help.text"
-msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
-msgstr "Bạn có thể đề cập tới một vùng các trang tính trong công thức bằng cách chỉ định trang đầu và cuối của vùng, ví dụ <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item> tổng hợp tất cả các ô A1 trên Bảng1 đến Bảng3."
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Spreadsheets"
-msgstr "Định dạng Bảng tính"
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"bm_id3154125\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
-msgstr "<bookmark_value>văn bản trong ô bảng; định dạng</bookmark_value><bookmark_value>bảng tính;định dạng</bookmark_value><bookmark_value>nền;ô bảng và trang</bookmark_value><bookmark_value>viền;ô bảng và trang</bookmark_value><bookmark_value>định dạng;bảng tính</bookmark_value><bookmark_value>số; tùy chọn định dạng cho các ô đã chọn</bookmark_value><bookmark_value>ô bảng; định dạng số</bookmark_value><bookmark_value>tiền tệ;định dạng</bookmark_value>"
+msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
+msgstr "Chọn <emph>Công cụ > Tự động Sửa lỗi</emph>. Chuyển tới thẻ <emph>Dấu trích dẫn riêng</emph> và bỏ chọn mục <emph>Thay thế</emph>."
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3154125\n"
-"6\n"
+"auto_off.xhp\n"
+"hd_id3149565\n"
+"11\n"
"help.text"
-msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
-msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Thiết kế Bảng tính\">Định dạng Bảng tính</link></variable>"
+msgid "Cell Content Always Begins With Uppercase"
+msgstr "Nội dung của ô luôn bắt đầu bằng chữ hoa"
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3153912\n"
+"auto_off.xhp\n"
+"par_id3147001\n"
"13\n"
"help.text"
-msgid "Formatting Text in a Spreadsheet"
-msgstr "Định dạng Văn bản trong một Bảng tính"
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"par_id3144772\n"
-"14\n"
-"help.text"
-msgid "Select the text you want to format."
-msgstr "Chọn văn bản mà bạn muốn định dạng."
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
+msgstr "Chọn <item type=\"menuitem\">Công cụs - Tùy chỉnh Tự động sửa</item>. Rồi vào tab <item type=\"menuitem\">Tùy chọn</item>. Bỏ đánh dấu <item type=\"menuitem\">Viết hoa kí tự đầu mỗi câu</item>."
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3155268\n"
+"auto_off.xhp\n"
+"hd_id3150345\n"
"15\n"
"help.text"
-msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
-msgstr "Chọn các thuộc tính văn bản được ưa thích từ thanh <emph>Định dạng</emph>. Bạn cũng có thể chọn <emph>Định dạng > Ô</emph>. Hộp thoại <emph>Định dạng ô</emph> sẽ xuất hiện, từ đó bạn có thể chọn các thuộc tính văn bản đa dạng trên trang thẻ <emph>Phông</emph>."
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"hd_id3149899\n"
-"16\n"
-"help.text"
-msgid "Formatting Numbers in a Spreadsheet"
-msgstr "Định dạng Số trong một Bảng tính"
+msgid "Replace Word With Another Word"
+msgstr "Thay thế từ này bằng từ khác"
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3159226\n"
+"auto_off.xhp\n"
+"par_id3166425\n"
"17\n"
"help.text"
-msgid "Select the cells containing the numbers you want to format."
-msgstr "Chọn các ô chứa các số mà bạn muốn định dạng."
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"par_id3150046\n"
-"18\n"
-"help.text"
-msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
-msgstr "Để định dạng các số trong định dạng tiền tệ mặc định hay dưới dạng phần trăm, hãy chọn các biểu tượng trên thanh <emph>Định dạng</emph>. Với các định dạng khác, chọn<emph>Định dạng > Ô</emph>. Bạn có thể chọn từ các định dạng định sẵn hoặc tự mình xác định trên trang thẻ <emph>Số</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
+msgstr "Chọn <item type=\"menuitem\">Công cụs - Tùy chỉnh Tự động sửa</item>. Vào tab <item type=\"menuitem\">Thay thế</item>. Chọn một cặp từ nhấn <item type=\"menuitem\">Xóa</item>."
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3153483\n"
+"auto_off.xhp\n"
+"par_id3152992\n"
"19\n"
"help.text"
-msgid "Formatting Borders and Backgrounds for Cells and Pages"
-msgstr "Định dạng Viền và Nền cho các Ô và Trang"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Công cụ > Nội dung ô > Tự động Nhập\">Công cụ > Nội dung ô > Tự động Nhập</link>"
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3154733\n"
+"auto_off.xhp\n"
+"par_id3154368\n"
"20\n"
"help.text"
-msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
-msgstr ""
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Công cụ > Tự động Sửa lỗi\">Công cụ > Tự động Sửa lỗi</link>"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3145116\n"
-"21\n"
+"autofilter.xhp\n"
+"tit\n"
"help.text"
-msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
-msgstr "Để áp dụng các thuộc tính định dạng vào một bảng tổng thể, hãy chọn <emph>Định dạng > Trang</emph>. Ví dụ, bạn có thể xác định phần đầu trang hay chân trang sẽ xuất hiện trên mỗi trang được in."
+msgid "Applying AutoFilter"
+msgstr "Áp dụng Tự động Lọc"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3145389\n"
-"22\n"
+"autofilter.xhp\n"
+"bm_id3156423\n"
"help.text"
-msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
-msgstr "Một bức ảnh mà bạn đã nạp với <item type=\"menuitem\"> Định dạng > Trang > Nền</item> chỉ hiện thị khi in hoặc khi xem thử trang. Để cũng mở một ảnh nền trên màn hình, chèn ảnh đồ họa bằng cách chọn <item type=\"menuitem\">Chèn > Ảnh > Từ tập tin</item> và đặt ảnh đằng sau các ô bằng cách chọn <item type=\"menuitem\">Định dạng > Sắp đặt > Xuống dưới</item>. Sử dụng <link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link>."
+msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
+msgstr "<bookmark_value>bộ lọc, xem thêm chức năng Tự động Lọc</bookmark_value><bookmark_value>chức năng Tự động Lọc;áp dụng</bookmark_value><bookmark_value>bảng; lọc giá trị</bookmark_value><bookmark_value>số; lọc bảng</bookmark_value><bookmark_value>cột; chức năng Tự động Lọc</bookmark_value><bookmark_value>trình đơn thả xuống trong cột của bảng</bookmark_value><bookmark_value>vùng cơ sở dữ liệu; chức năng Tự động Lọc</bookmark_value>"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id2837916\n"
+"autofilter.xhp\n"
+"hd_id3156423\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\">Tùy chọn Định dạng Số</link>"
+msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
+msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Áp dụng Tự động Lọc\">Áp dụng Tự động Lọc</link></variable>"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id2614215\n"
+"autofilter.xhp\n"
+"par_id3147427\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
-msgstr "<link href=\"text/scalc/guide/background.xhp\">Nền cho ô bảng</link>"
+msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
+msgstr "Chức năng <emph>Lọc tự động</emph> chèn một hộp chọn trong một hoặc nhiều cột dữ liệu để bạn chọn ra những bản ghi (hàng) cần hiển thị."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"tit\n"
+"autofilter.xhp\n"
+"par_id3152576\n"
+"9\n"
"help.text"
-msgid "Applying Goal Seek"
-msgstr "Ứng dụng Tìm Mục Tiêu"
+msgid "Select the columns you want to use AutoFilter on."
+msgstr "Chọn các cột bạn muốn Tự động Lọc."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"bm_id3145068\n"
+"autofilter.xhp\n"
+"par_id3153157\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
-msgstr "<bookmark_value>tìm mục tiêu;ví dụ</bookmark_value><bookmark_value>phương trình khi tìm mục tiêu</bookmark_value><bookmark_value>tính;biến trong phương trình</bookmark_value><bookmark_value>biến;giải phương trình</bookmark_value><bookmark_value>ví dụ;tìm mục tiêu</bookmark_value>"
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
+msgstr "Chọn <emph>Dữ liệu > Lọc > Tự động Lọc</emph>. Mũi tên của hộp chọn hiện lên trên hàng đầu của vùng chọn."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"hd_id3145068\n"
-"22\n"
+"autofilter.xhp\n"
+"par_id3154510\n"
+"11\n"
"help.text"
-msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
-msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Ứng dụng Tìm mục tiêu\">Ứng dụng Tìm mục tiêu</link></variable>"
+msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
+msgstr "Bắt đầu lọc bằng cách bấm vào mũi tên thả xuống trong tiêu đề cột và chọn một mục."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3145171\n"
-"2\n"
+"autofilter.xhp\n"
+"par_id3155064\n"
+"13\n"
"help.text"
-msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
-msgstr "Với sự trợ giúp của chức năng Tìm Mục Tiêu, bạn có thể tính một giá trị mà, làm một phần của công thức, dẫn đến kết quả mà bạn chỉ định cho công thức. Vì vậy bạn xác định công thức với một vài giá trị cố định và một giá trị biến và kết quả cho công thức."
+msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
+msgstr "Chỉ những hàng thoả mãn điều kiện mới được hiển thị. Những hàng còn lại bị lọc bỏ. Bạn có thể biết các hàng nào bị lọc nhờ số thứ tự của hàng. Các cột có áp dụng bộ lọc được đánh dấu bằng nút có hình mũi tên khác màu."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"hd_id3153966\n"
-"14\n"
+"autofilter.xhp\n"
+"par_id9216589\n"
"help.text"
-msgid "Goal Seek Example"
-msgstr "Ví dụ về Tìm Mục Tiêu"
+msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
+msgstr "Khi bạn áp dụng thêm một bộ lọc tự động cho một cột khác trong một vùng dữ liệu đã được lọc rồi, các hộp chọn sau sẽ chỉ liệt kê dữ liệu đã lọc."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3150871\n"
-"4\n"
+"autofilter.xhp\n"
+"par_id3153714\n"
+"12\n"
"help.text"
-msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
-msgstr "Để tính lãi hàng năm (I), hãy tạo một bảng với các giá trị về tư bản (C), số năm (n) và tỉ lệ lãi xuất (i). Công thức sẽ là:"
+msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
+msgstr "Để hiển thị tất cả các bản ghi, chọn mục <emph>-tất cả-</emph> trong hộp chọn \"Lọc tự động\". Nếu bạn chọn <emph>-Chuẩn-</emph>, hộp thoại <emph>Bộ lọc chuẩn</emph> sẽ xuất hiện để bạn thiết lập một bộ lọc chuẩn. Chọn <emph>-10 giá trị lớn nhất-</emph> để chỉ hiển thị 10 giá trị lớn nhất."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3152596\n"
-"5\n"
+"autofilter.xhp\n"
+"par_id3147340\n"
+"19\n"
"help.text"
-msgid "I = C * n* i"
-msgstr "I = C * n* i"
+msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
+msgstr "Để thôi không dùng Tự động Lọc, hãy chọn lại tất cả các ô đã chọn ở bước 1 và chọn lại <emph>Dữ liệu > Lọc > Tự động Lọc</emph>."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3155335\n"
-"15\n"
+"autofilter.xhp\n"
+"par_id4303415\n"
"help.text"
-msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
-msgstr "Giả sử tỉ lệ lãi xuất <item type=\"literal\">i</item> là 7.5% và số năm <item type=\"literal\">n</item> là 1 năm không đổi. Tuy nhiên, bạn muốn biết lượng tư bản đầu tư <item type=\"literal\">C</item> đã được thay đổi ở mức nào để có thể đạt được mức lợi nhuận thu lại cụ thể <item type=\"literal\">I</item>. Với ví dụ này, hãy tính toán lượng tư bản <item type=\"literal\">C</item> được yêu cầu nếu bạn muốn thu được một lợi nhuận hàng năm $15 000."
+msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
+msgstr "Để gán bộ lọc tự động mới cho các bảng khác, bạn phải đặt một vùng cơ sở dữ liệu cho mỗi bảng."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3155960\n"
-"6\n"
+"autofilter.xhp\n"
+"par_id3159236\n"
+"14\n"
"help.text"
-msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
-msgstr "Nhập mỗi giá trị cho Tư bản <item type=\"literal\">C</item> (một giá trị tùy ý dạng <item type=\"literal\">$100 000</item>), số năm <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), và tỉ lệ lãi xuất <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) trong mỗi ô. Nhập công thức để tính lãi xuất <item type=\"literal\">I</item> trong một ô khác. Thay cho <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, và <item type=\"literal\">i</item>, hãy sử dụng tham chiếu <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\"> tới ô</link> với giá trị tương ứng."
+msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
+msgstr "Các chức năng số học cũng có thể lấy giá trị trong các ô không được hiển thị do không thoả mãn điều kiện của bộ lọc. Ví dụ, tổng của toàn bộ cột sẽ bao gồm cả các giá trị trong những ô đã bị lọc bỏ. Hãy sử dụng hàm <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> nếu bạn chỉ cần lấy tổng của những ô xuất hiện do thoả mãn điều kiện của bộ lọc."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3147001\n"
+"autofilter.xhp\n"
+"par_id3152985\n"
"16\n"
"help.text"
-msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
-msgstr "Đặt con trỏ vào ô chứa lãi xuất <item type=\"literal\">I</item>, và chọn <emph>Công cụ > Tìm Mục Tiêu</emph>. Hộp thoại <emph>Tìm mục tiêu</emph> sẽ mở ra."
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Dữ liệu > Lọc > Tự động Lọc\">Dữ liệu > Lọc > Tự động Lọc</link>"
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3150088\n"
+"autofilter.xhp\n"
+"par_id3154484\n"
"17\n"
"help.text"
-msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
-msgstr "Ô đúng đã được nhập trong trường <emph>Ô công thức</emph>."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3166426\n"
-"18\n"
-"help.text"
-msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
-msgstr "Đặt con trỏ vào trong trường <emph>Ô biến đổi</emph>. Trong trang tính, nhấn vào ô chứa giá trị cần thay đổi, trong ví dụ này, đó chính là ô chứa giá trị tư bản <item type=\"literal\">C</item>."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3150369\n"
-"19\n"
-"help.text"
-msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
-msgstr "Nhập kết quả dự kiến của công thức vào hộp văn bản <emph>Giá trị đích</emph>. Trong ví dụ này, giá trị là 15 000. Nhấn <emph>OK</emph>."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3146978\n"
-"20\n"
-"help.text"
-msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
-msgstr "Một hộp thoại xuất hiện sẽ cho bạn biết Tìm mục tiêu đã thành công. Nhấn <emph>Có</emph> để nhập kết quả vào ô với giá trị biến đổi."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3149409\n"
-"23\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Tìm mục tiêu\">Tìm mục tiêu</link>"
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
+"autoformat.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Fractions"
-msgstr "Nhập phân số"
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"bm_id3155411\n"
-"help.text"
-msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
-msgstr "<bookmark_value>phân số; nhập vào</bookmark_value><bookmark_value>con số; nhập phân số</bookmark_value><bookmark_value>chèn;phân số</bookmark_value>"
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"hd_id3155411\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
-msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Nhập phân số \">Nhập phân số </link></variable>"
+msgid "Using AutoFormat for Tables"
+msgstr "Dùng Tự động định dạng trong bảng"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3153968\n"
-"40\n"
+"autoformat.xhp\n"
+"bm_id3155132\n"
"help.text"
-msgid "You can enter a fractional number in a cell and use it for calculation:"
-msgstr "Bạn có thể nhập một số dưới dạng phân số vào một ô và dùng nó để tính toán:"
+msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
+msgstr "<bookmark_value>bảng; chức năng Tự động Định dạng</bookmark_value><bookmark_value>định nghĩa; chức năng Tự động Định dạng cho bảng</bookmark_value><bookmark_value>chức năng Tự động Định dạng;định nghĩa và áp dụng định dạng</bookmark_value><bookmark_value>định dạng; tự động định dạng bảng tính</bookmark_value><bookmark_value>tự động định dạng trong bảng tính</bookmark_value><bookmark_value>bảng; chức năng Tự động định dạng</bookmark_value>"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3155133\n"
-"42\n"
+"autoformat.xhp\n"
+"hd_id3155132\n"
+"11\n"
"help.text"
-msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
-msgstr "Nhập « 0 1/5 » vào một ô, và nhấn phím nhập. Trong dòng nhập phía trên bảng tính, bạn sẽ thấy giá trị « 0.2 », được sử dụng cho phép tính."
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Dùng Tự động Định dạng trong Bảng\">Áp dụng Tự động Định dạng cho một Phạm vi Ô đã Chọn</link></variable>"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3145750\n"
-"43\n"
+"autoformat.xhp\n"
+"par_id3149401\n"
+"12\n"
"help.text"
-msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
-msgstr "Nếu bạn nhập « 0 1/2 », chức năng Tự động Sửa lỗi sẽ thay thế 3 kí tự 1, / và 2 bằng một kí tự đơn. Ứng dụng tương tự cho 1/4 và 3/4. Sự thay thế này được quy định trong <emph>Công cụ > Tự động Sửa lỗi > (thẻ) Thay thế</emph>."
+msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
+msgstr "Bạn có thể dùng chức năng Tự động Định dạng để áp dụng nhanh một định dạng lên một trang tính hoặc một phạm vi ô đã chọn."
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3145367\n"
-"44\n"
+"autoformat.xhp\n"
+"par_idN10702\n"
"help.text"
-msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
-msgstr "Nếu bạn muốn thấy các phân số đa kí số ví dụ như « 1/10 », bạn phải thay đổi định dạng ô thành ô xem phân số đa kí số. Mở trình đơn ngữ cảnh của ô đó và chọn <emph>Định dạng ô</emph>. Chọn « Phân số » từ trường <emph>Loại</emph>, và sau đó chọn « -1234 10/81 ». Sau đó bạn có thể nhập các phân số như 12/23 hay 12/32 — tuy nhiên các phân số này sẽ bị tự động giảm để cuối cùng bạn có ví dụ là 3/8."
+msgid "To Apply an AutoFormat to a Sheet or Selected Cell Range"
+msgstr "Để Tự động định dạng cho một bảng hoặc một vùng chọn"
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"tit\n"
+"autoformat.xhp\n"
+"par_idN106CE\n"
"help.text"
-msgid "Filtering Pivot Tables"
-msgstr "Lọc các bảng DataPilot"
+msgid "Select the cells, including the column and row headers, that you want to format."
+msgstr "Chọn các ô, bao gồm tiêu đề của cột và hàng, mà bạn cần định dạng."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"bm_id3150792\n"
+"autoformat.xhp\n"
+"par_idN106D5\n"
"help.text"
-msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
-msgstr "<bookmark_value>chức năng DataPilot; lọc bảng</bookmark_value><bookmark_value>lọc;bảng DataPilot</bookmark_value>"
+msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
+msgstr "Chọn <item type=\"menuitem\">Định dạng > Tự động Định dạng</item>."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"hd_id3150792\n"
+"autoformat.xhp\n"
+"par_id3151242\n"
+"27\n"
"help.text"
-msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Lọc các bảng DataPilot\">Lọc các bảng DataPilot</link></variable>"
+msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
+msgstr "Để chọn thuộc tính bao gồm trong Tự động Định dạng, bấm <emph>Thêm</emph>."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id3153192\n"
+"autoformat.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "You can use filters to remove unwanted data from a pivot table."
-msgstr "Bạn có thể dùng các bộ lọc để xoá bỏ dữ liệu không cần thiết ra khỏi bảng DataPilot."
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id3150441\n"
+"autoformat.xhp\n"
+"par_idN1075D\n"
"help.text"
-msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
-msgstr "Bấm nút <emph>Lọc</emph> trong bảng để mở hộp thoại điều kiện lọc. Hoặc bạn có thể mở trình đơn ngữ cảnh của bảng DataPilot và chọn lệnh <emph>Lọc</emph>. Hộp thoại <link href=\"text/scalc/01/12090103.xhp\" name=\"Lọc\"><emph>Lọc</emph></link> xuất hiện. Tại đây bạn có thể lọc bảng DataPilot."
+msgid "The format is applied to the selected range of cells."
+msgstr "Định dạng đó sẽ được áp dụng lên vùng chọn."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id315044199\n"
+"autoformat.xhp\n"
+"par_id3149210\n"
+"14\n"
"help.text"
-msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
-msgstr ""
+msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
+msgstr "Nếu bạn không thấy nội dung của ô được đổi màu, hãy chọn <item type=\"menuitem\">Xem > Tô sáng Giá trị</item>."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344485\n"
+"autoformat.xhp\n"
+"par_id3155379\n"
+"22\n"
"help.text"
-msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
-msgstr ""
+msgid "To Define an AutoFormat for Spreadsheets"
+msgstr "Để định nghĩa một Định dạng Tự động cho bảng tính"
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344449\n"
+"autoformat.xhp\n"
+"par_id3148868\n"
+"26\n"
"help.text"
-msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
-msgstr ""
+msgid "You can define a new AutoFormat that is available to all spreadsheets."
+msgstr "Bạn có thể định nghĩa một Định dạng Tự động cho mọi bảng tính."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344493\n"
+"autoformat.xhp\n"
+"par_id3152985\n"
+"23\n"
"help.text"
-msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
-msgstr "Đánh dấu trong hộp chọn <emph>Liên kết đến tập tin</emph> để chèn tập tin dạng liên kết."
+msgid "Format a sheet."
+msgstr "Định dạng một bảng."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344431\n"
+"autoformat.xhp\n"
+"par_id3145384\n"
+"24\n"
"help.text"
-msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
-msgstr ""
+msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
+msgstr "Chọn <item type=\"menuitem\">Sửa > Chọn Tất cả</item>."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344484\n"
+"autoformat.xhp\n"
+"par_id3153815\n"
+"25\n"
"help.text"
-msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
-msgstr ""
+msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
+msgstr "Chọn <item type=\"menuitem\">Định dạng > Tự động Định dạng</item>."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344578\n"
+"autoformat.xhp\n"
+"par_idN107A9\n"
"help.text"
-msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
-msgstr ""
+msgid "Click <emph>Add</emph>."
+msgstr "Nhấn <emph>Thêm</emph>."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344584\n"
+"autoformat.xhp\n"
+"par_idN10760\n"
"help.text"
-msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
-msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
+msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the format."
+msgstr "Trong ô <emph>Tên</emph> của hộp thoại <emph>Thêm Định dạng Tự động</emph>, nhập một tên mới cho định dạng."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344811\n"
+"autoformat.xhp\n"
+"par_idN107C3\n"
"help.text"
-msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
-msgstr ""
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344884\n"
+"autoformat.xhp\n"
+"par_id3159203\n"
+"28\n"
"help.text"
-msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
-msgstr "Bạn cũng có thể nhấn vào trang Trợ giúp và nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Định dạng > Tự động Định dạng\">Định dạng > Tự động Định dạng</link>"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
+"background.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Tables (Transposing)"
-msgstr "Xoay bảng (Chuyển vị)"
+msgid "Defining Background Colors or Background Graphics"
+msgstr "Xác định Màu Nền hay Ảnh Nền"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"bm_id3154346\n"
+"background.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
-msgstr "<bookmark_value>bảng; hoán vị</bookmark_value><bookmark_value>hoán vị bảng</bookmark_value><bookmark_value>đảo bảng</bookmark_value><bookmark_value>hoán đổi bảng</bookmark_value><bookmark_value>cột; hoán đổi với các hàng</bookmark_value><bookmark_value>hàng; hoán đổi với cột</bookmark_value><bookmark_value>bảng; xoay</bookmark_value><bookmark_value>xoay; bảng</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; hình nền</bookmark_value><bookmark_value>hình nền; khoảng ô</bookmark_value><bookmark_value>bảng; hình nền</bookmark_value><bookmark_value>ô; hình nền</bookmark_value><bookmark_value>hàng; xem thêm ô</bookmark_value><bookmark_value>cột;xem thêm ô</bookmark_value>"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"hd_id3154346\n"
+"background.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
-msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Xoay bảng (Chuyển vị)\">Xoay bảng (Chuyển vị)</link></variable>"
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3154013\n"
-"2\n"
-"help.text"
-msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
-msgstr "Trong $[officename] Calc, có một cách để « xoay » một bảng tính để biến các hàng thành cột và cột thành hàng."
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3153142\n"
-"3\n"
-"help.text"
-msgid "Select the cell range that you want to transpose."
-msgstr "Chọn vùng ô mà bạn muốn chuyển vị."
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3153191\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Edit - Cut</emph>."
-msgstr "Chọn lệnh <emph>Sửa > Cắt</emph>."
+msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
+msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Xác định Màu Nền hay Ảnh Nền\"> Xác định Màu Nền hay Ảnh Nền</link> </variable>"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3148575\n"
-"6\n"
+"background.xhp\n"
+"par_id9520249\n"
"help.text"
-msgid "Click the cell that is to be the top left cell in the result."
-msgstr "Nhấn vào ô sẽ là ô bên trái phía trên cùng của kết quả."
+msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
+msgstr "Bạn có khả năng xác định một màu nền, hoặc dùng một đồ họa làm nền, cho phạm vi ô trong $[officename] Calc."
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3156286\n"
-"7\n"
+"background.xhp\n"
+"hd_id3144760\n"
+"16\n"
"help.text"
-msgid "Choose <emph>Edit - Paste Special</emph>."
-msgstr "Chọn lệnh <emph>Sửa > Dán đặc biệt</emph>."
+msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
+msgstr "Áp dụng Màu Nền cho một Bảng tính $[officename] Calc"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3144764\n"
-"8\n"
+"background.xhp\n"
+"par_id3155429\n"
+"17\n"
"help.text"
-msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
-msgstr "Trong hộp thoại, đánh dấu <emph>Dán tất cả</emph> và <emph>Chuyển vị</emph>."
+msgid "Select the cells."
+msgstr "Lựa chọn các ô."
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3155600\n"
-"9\n"
+"background.xhp\n"
+"par_id3149260\n"
+"18\n"
"help.text"
-msgid "If you now click OK the columns and rows are transposed."
-msgstr "Và bây giờ khi bạn nhấn <emph>OK</emph>, các hàng và cột sẽ được chuyển vị cho nhau."
+msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
+msgstr "Chọn lệnh trình đơn <emph>Định dạng > Các ô</emph> (hay lệnh <emph>Định dạng các ô</emph> trong trình đơn ngữ cảnh)."
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3146969\n"
-"10\n"
+"background.xhp\n"
+"par_id3152938\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Dán đặc biệt\">Dán đặc biệt</link>"
+msgid "On the <emph>Background</emph> tab page, select the background color."
+msgstr "Trên trang thẻ <emph>Nền</emph>, chọn màu nền."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"tit\n"
+"background.xhp\n"
+"hd_id3146974\n"
+"20\n"
"help.text"
-msgid "Inserting External Data in Table (WebQuery)"
-msgstr "Chèn Dữ liệu bên Ngoài vào Bảng (WebQuery)"
+msgid "Graphics in the Background of Cells"
+msgstr "Đồ họa trong Nền của Ô"
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"bm_id3154346\n"
+"background.xhp\n"
+"par_id3155414\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
-msgstr "<bookmark_value>truy vấn HTML WebQuery</bookmark_value><bookmark_value>dãy; chèn vào bảng</bookmark_value><bookmark_value>dữ liệu ngoài; chèn</bookmark_value><bookmark_value>bảng; chèn thông tin ngoài</bookmark_value><bookmark_value>trang Web; nhập dữ liệu</bookmark_value><bookmark_value>lọc truy vấn WebQuery</bookmark_value><bookmark_value>chèn; dữ liệu ngoài</bookmark_value><bookmark_value>nguồn dữ liệu; dữ liệu ngoài</bookmark_value>"
+msgid "Choose <emph>Insert - Picture - From File</emph>."
+msgstr "Chọn lệnh <emph>Chèn > Ảnh > Từ tập tin</emph>."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3125863\n"
-"2\n"
+"background.xhp\n"
+"par_id3149664\n"
+"22\n"
"help.text"
-msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
-msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Chèn Dữ liệu bên Ngoài vào Bảng (WebQuery)\">Chèn Dữ liệu bên Ngoài vào Bảng (WebQuery)</link></variable>"
+msgid "Select the graphic and click <emph>Open</emph>."
+msgstr "Lựa chọn đồ họa rồi nhấn vào nút <emph>Mở</emph>."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3155131\n"
-"3\n"
+"background.xhp\n"
+"par_id3153575\n"
+"23\n"
"help.text"
-msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
-msgstr "Với sự trợ giúp của bộ lọc nhập <emph>Truy vấn Trang Web ($[officename] Calc)</emph>, bạn có thể chèn các bảng từ tài liệu HTML vào trong một bảng tính Calc."
+msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
+msgstr "Đồ họa được chèn và thả neo vào ô hiện tại. Bạn vẫn còn có thể di chuyển và co giãn đồ họa đó. Trong trình đơn ngữ cảnh, bạn cũng có thể sử dụng lệnh <emph>Sắp đặt > Xuống dưới</emph> để đặt ảnh đó về nền. Để lựa chọn một đồ họa đã được đặt về nền, hãy dùng <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link> </caseinline><defaultinline>Bộ điều hướng</defaultinline></switchinline>."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3148575\n"
-"4\n"
+"background.xhp\n"
+"par_id51576\n"
"help.text"
-msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
-msgstr "Bạn có thể dùng phương pháp tương tự để chèn các dãy được xác định bằng tên từ Calc hoặc một bảng tính MS Excel."
+msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
+msgstr "<link href=\"text/shared/guide/background.xhp\">Hình mờ</link>"
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149664\n"
-"5\n"
+"background.xhp\n"
+"par_id3156180\n"
+"30\n"
"help.text"
-msgid "The following insert methods are available:"
-msgstr "Phương pháp chèn sau đây có thể được áp dụng:"
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Trang thẻ Nền\">Trang thẻ <emph>Nền</emph></link>"
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3146976\n"
-"6\n"
+"background.xhp\n"
+"par_id7601245\n"
"help.text"
-msgid "Inserting by Dialog"
-msgstr "Chèn bằng Hộp thoại"
+msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
+msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Định dạng Bảng tính</link>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3154319\n"
-"7\n"
+"borders.xhp\n"
+"tit\n"
"help.text"
-msgid "Set the cell cursor at the cell where the new content will be inserted."
-msgstr "Đặt con trỏ vào ô sẽ được nhập dữ liệu mới."
+msgid "User Defined Borders in Cells"
+msgstr "Viền do người dùng định nghĩa cho ô"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3145750\n"
-"8\n"
+"borders.xhp\n"
+"bm_id3457441\n"
"help.text"
-msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
-msgstr "Chọn lệnh <emph>Chèn > Liên kết tới dữ liệu bên ngoài</emph>. Lệnh này sẽ mở hộp thoại <link href=\"text/scalc/01/04090000.xhp\">Dữ liệu bên ngoài</link>."
+msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
+msgstr "<bookmark_value>các ô;viền</bookmark_value><bookmark_value>sắp đặt đường;các ô</bookmark_value><bookmark_value>viền;các ô</bookmark_value>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149958\n"
-"9\n"
+"borders.xhp\n"
+"hd_id4544816\n"
"help.text"
-msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
-msgstr "Nhập địa chỉ URL của tài liệu HTML hoặc tên của bảng tính. Nhấn <item type=\"keycode\">Enter</item> khi bạn đã hoàn thành. Nhắp chuột vào nút <emph>...</emph> để mở một hộp thoại chọn tập tin."
+msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
+msgstr "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">Viền do người dùng định nghĩa cho các ô</link></variable>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149400\n"
-"10\n"
+"borders.xhp\n"
+"par_id2320017\n"
"help.text"
-msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
-msgstr "Trong hộp danh sách lớn của hộp thoại, chọn vùng được đặt tên hoặc các bảng mà bạn muốn chèn."
+msgid "You can apply a variety of different lines to selected cells."
+msgstr "Bạn có thể dùng nhiều đường khác nhau cho các ô được chọn."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3155064\n"
-"11\n"
+"borders.xhp\n"
+"par_id8055665\n"
"help.text"
-msgid "You can also specify that the ranges or tables are updated every n seconds."
-msgstr "Bạn cũng có thể xác định rằng các vùng hay các bảng này được cập nhật sau mỗi n giây (mà n là một con số)."
+msgid "Select the cell or a block of cells."
+msgstr "Chọn ô hoặc các ô."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3155443\n"
-"30\n"
+"borders.xhp\n"
+"par_id9181188\n"
"help.text"
-msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
-msgstr "Bộ lọc nhập có thể tạo các tên cho vùng ô trên bánh đà. Trong khi định dạng được giữ nguyên đến mức có thể thì bộ lọc này lại không định nạp được bất kỳ bức ảnh nào."
+msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
+msgstr "Chọn <item type=\"menuitem\">Định dạng > Các ô</item>."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3149021\n"
-"12\n"
+"borders.xhp\n"
+"par_id9947508\n"
"help.text"
-msgid "Inserting by Navigator"
-msgstr "Chèn bằng Bộ điều hướng"
+msgid "In the dialog, click the <emph>Borders</emph> tab."
+msgstr "Trong hộp thoại, nhấn vào thẻ <emph>Viền</emph>."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3153965\n"
-"14\n"
+"borders.xhp\n"
+"par_id7907956\n"
"help.text"
-msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
-msgstr "Mở hai tài liệu: bảng tính $[officename] Calc nơi dữ liệu ngoài sẽ được chèn vào (tài liệu đích) và tài liệu mà từ đó tài liệu ngoài được xuất (tài liệu nguồn)."
+msgid "Choose the border options you want to apply and click OK."
+msgstr "Chọn những tùy chọn viền bạn muốn áp dụng, sau đó nhấn vào nút <emph>OK</emph>."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3150205\n"
-"16\n"
+"borders.xhp\n"
+"par_id1342204\n"
"help.text"
-msgid "In the target document open the Navigator."
-msgstr "Trong tài liệu nguồn, hãy mở Bộ điều hướng."
+msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
+msgstr "Trong vùng <emph>Sắp đặt đường</emph> có một số tùy chọn để áp dụng nhiều kiểu dáng viền cùng lúc."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3152990\n"
-"18\n"
+"borders.xhp\n"
+"hd_id4454481\n"
"help.text"
-msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
-msgstr "Trong hộp tổ hợp phía dưới của Bộ điều hướng, hãy chọn tài liệu nguồn. Lúc này, Bộ điều hướng sẽ hiển thị tên của các vùng và các vùng cơ sở dữ liệu hay các bảng có trong tài liệu nguồn."
+msgid "Selection of cells"
+msgstr "Lựa chọn ô"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3148842\n"
-"20\n"
+"borders.xhp\n"
+"par_id7251503\n"
"help.text"
-msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
-msgstr "Trong Bộ điều hướng, hãy chọn chế độ kéo <emph>Chèn dạng liên kết</emph><image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Biểu tượng</alt></image>."
+msgid "Depending on the selection of cells, the area looks different."
+msgstr "Phụ thuộc vào sự lựa chọn các ô, vùng có hình thức khác nhau."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3157978\n"
-"22\n"
+"borders.xhp\n"
+"par_id8716696\n"
"help.text"
-msgid "Drag the desired external data from the Navigator into the target document."
-msgstr "Kéo dữ liệu ngoài mà bạn muốn từ Bộ điều hướng vào trong tài liệu đích."
+msgid "Selection"
+msgstr "Vùng chọn"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3144768\n"
-"23\n"
+"borders.xhp\n"
+"par_id4677877\n"
"help.text"
-msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
-msgstr "Nếu bạn đã tải một tài liệu HTML với bộ lọc <emph>Truy vấn trang Web</emph> dưới dạng tài liệu nguồn, bạn sẽ thấy các bảng trong Bộ điều hướng, được đặt tên liên tiếp từ « HTML_bảng1 » trở đi, và có hai tên vùng đã được tạo ra:"
+msgid "Line arrangement area"
+msgstr "Vùng sắp đặt đường"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3152873\n"
-"24\n"
+"borders.xhp\n"
+"par_id807824\n"
"help.text"
-msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
-msgstr "<item type=\"literal\">HTML_tất cả</item> — chỉ rõ toàn bộ tài liệu"
+msgid "One cell"
+msgstr "Một ô"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149897\n"
-"25\n"
+"borders.xhp\n"
+"par_id8473464\n"
"help.text"
-msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
-msgstr "<item type=\"literal\">HTML_bảng</item> — chỉ rõ tất cả các bảng HTML trong tài liệu"
+msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
+msgstr "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2709inch\" height=\"1.6146inch\"><alt id=\"alt_id1737113\">các đường viền cho một ô</alt></image>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3149126\n"
-"26\n"
+"borders.xhp\n"
+"par_id3509933\n"
"help.text"
-msgid "Editing the external data"
-msgstr "Sửa dữ liệu ngoài"
+msgid "Cells in a column"
+msgstr "Các ô trong cột"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3159228\n"
-"27\n"
+"borders.xhp\n"
+"par_id6635639\n"
"help.text"
-msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
-msgstr "Chọn lệnh <emph>Sửa > Liên kết</emph>. Tại đây bạn có thể sửa liên kết tới dữ liệu ngoài."
+msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
+msgstr "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2917inch\" height=\"1.6146inch\"><alt id=\"alt_id1680959\">viền cho cột được chọn</alt></image>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3154650\n"
-"28\n"
+"borders.xhp\n"
+"par_id8073366\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
-msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Hộp thoại dữ liệu ngoài\">Hộp thoại dữ liệu ngoài</link>"
+msgid "Cells in a row"
+msgstr "Các ô trong hàng"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id6054567\n"
"help.text"
-msgid "Only Copy Visible Cells"
-msgstr "Chỉ chép những ô được hiển thị"
+msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
+msgstr "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2811inch\" height=\"1.6146inch\"><alt id=\"alt_id9623096\">viền trong hàng được chọn</alt></image>"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"bm_id3150440\n"
+"borders.xhp\n"
+"par_id466322\n"
"help.text"
-msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
-msgstr "<bookmark_value>ô; chép/xoá/định dạng/di chuyển</bookmark_value><bookmark_value>hàng;ẩn và hiện</bookmark_value><bookmark_value>sao chép; chỉ các ô hiện</bookmark_value><bookmark_value>định dạng;chỉ các ô hiện</bookmark_value><bookmark_value>di chuyển;chỉ các ô hiện</bookmark_value><bookmark_value>xoá;chỉ các ô hiện</bookmark_value><bookmark_value>các ô không xuất hiện</bookmark_value><bookmark_value>lọc;chỉ chép các ô hiện</bookmark_value><bookmark_value>các ô ẩn</bookmark_value>"
+msgid "Cells in a block of 2x2 or more"
+msgstr "Các ô trong khối 2×2 hoặc hơn nữa"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"hd_id3150440\n"
-"1\n"
+"borders.xhp\n"
+"par_id4511551\n"
"help.text"
-msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
-msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Chỉ sao chép các ô xuất hiện\">Chỉ sao chép các ô được hiển thị</link></variable>"
+msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
+msgstr "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2917inch\" height=\"1.6252inch\"><alt id=\"alt_id8139591\">viền trong một khối được chọn</alt></image>"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3148577\n"
-"2\n"
+"borders.xhp\n"
+"par_id5383465\n"
"help.text"
-msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
-msgstr "Giả sử rằng bạn đã ẩn đi vài hàng trong một phạm vi các ô. Giờ bạn muốn sao chép, xoá hay định dạng các ô còn lại, vẫn đang được hiển thị."
+msgid "You cannot apply borders to multiple selections."
+msgstr "Bạn không thể đặt viền cho nhiều vùng chọn."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3154729\n"
-"3\n"
+"borders.xhp\n"
+"hd_id7790154\n"
"help.text"
-msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
-msgstr "Cách $[officename] thực hiện công việc này tuỳ thuộc vào cách bạn ẩn các ô bằng một bộ lọc hay bằng tay."
+msgid "Default Settings"
+msgstr "Thiết lập mặc định"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3155603\n"
-"4\n"
+"borders.xhp\n"
+"par_id2918485\n"
"help.text"
-msgid "Method and Action"
-msgstr "Phương thức và Hành động"
+msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
+msgstr "Nhấn vào một của những biểu tượng <emph>Mặc định</emph> để đặt (lại) nhiều viền cùng lúc."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3150751\n"
-"5\n"
+"borders.xhp\n"
+"par_id1836909\n"
"help.text"
-msgid "Result"
-msgstr "Kết quả"
+msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
+msgstr "Đường màu xám mảnh bên trong biểu tượng thì ngụ ý viền sẽ bị đặt lại hay bị xoá."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3149018\n"
-"6\n"
+"borders.xhp\n"
+"par_id5212561\n"
"help.text"
-msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
-msgstr "Các ô được lọc bởi chức năng Tự động Lọc, các bộ lọc chuẩn hoặc nâng cao."
+msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
+msgstr "Đường tối bên trong biểu tượng thì ngụ ý đường sẽ được đặt bằng kiểu dáng đường và màu đường đã chọn."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3150044\n"
-"7\n"
+"borders.xhp\n"
+"par_id4818872\n"
"help.text"
-msgid "Copy, delete, move, or format a selection of currently visible cells."
-msgstr "Sao chép, xoá, di chuyển hoặc định dạng một vùng có các ô được hiển thị."
+msgid "The thick gray lines inside an icon show the lines that will not be changed."
+msgstr "Đường màu xám dày bên trong biểu tượng thì ngụ ý đường sẽ không thay đổi."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3146918\n"
-"8\n"
+"borders.xhp\n"
+"hd_id8989226\n"
"help.text"
-msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
-msgstr "Chỉ có những ô được hiển thị trong vùng chọn là được sao chép, xoá, di chuyển hoặc định dạng."
+msgid "Examples"
+msgstr "Thí dụ"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3166427\n"
-"12\n"
+"borders.xhp\n"
+"par_id622577\n"
"help.text"
-msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
-msgstr "Các ô bị giấu đi bằng lệnh <emph>Ẩn</emph> trong trình đơn ngữ cảnh trên tiêu đề hàng hoặc cột, hoặc thông qua một <link href=\"text/scalc/01/12080000.xhp\" name=\"phác thảo\">phác thảo</link>."
+msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
+msgstr "Chọn một khối khoảng 8×8 ô, sau đó chọn lệnh <emph>Định dạng > Ô > Viền</emph>."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3152990\n"
-"13\n"
+"borders.xhp\n"
+"par_id8119754\n"
"help.text"
-msgid "Copy, delete, move, or format a selection of currently visible cells."
-msgstr "Sao chép, xoá, di chuyển hoặc định dạng một vùng có các ô được hiển thị."
+msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
+msgstr "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.1354inch\" height=\"0.25inch\"><alt id=\"alt_id7261268\">hàng biểu tượng mặc định cho thẻ Viền</alt></image>"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3154371\n"
-"14\n"
+"borders.xhp\n"
+"par_id8964201\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "Tất cả các ô trong vùng chọn, bao gồm cả những ô đã được giấu đi, sẽ được sao chép, xoá, di chuyển hoặc định dạng."
+msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
+msgstr "Bấm vào biểu tượng bên trái để xoá tất cả các đường viền. Việc này sẽ xoá tất cả các đường viền bên ngoài, bên trong và các đường chéo."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id6048463\n"
"help.text"
-msgid "Deleting Pivot Tables"
-msgstr "Xoá bảng DataPilot"
+msgid "Click the second icon from the left to set an outer border and to remove all other lines."
+msgstr "Nhấn vào biểu tượng thứ hai từ cạnh bên trái để đặt một đường viền bên ngoài và gỡ bỏ các đường khác."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"bm_id3153726\n"
+"borders.xhp\n"
+"par_id1495406\n"
"help.text"
-msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
-msgstr "<bookmark_value>chức năng DataPilot; xoá bảng</bookmark_value><bookmark_value>xoá;bảng DataPilot</bookmark_value>"
+msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
+msgstr "Bấm vào biểu tượng ngoài cùng bên phải để đặt viền bên ngoài. Các đường bên trong không thay đổi, ngoại trừ các đường chéo sẽ bị xoá."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"hd_id3153726\n"
-"31\n"
+"borders.xhp\n"
+"par_id9269386\n"
"help.text"
-msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Xoá các bảng Deleting\">Xoá các bảng DataPilot</link></variable>"
+msgid "Now you can continue to see which lines the other icons will set or remove."
+msgstr "Sau đó, bạn có thể sử dụng các biểu tượng khác, để thấy những đường nào mỗi biểu tượng sẽ đặt hay gỡ bỏ."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"par_id3154014\n"
-"32\n"
+"borders.xhp\n"
+"hd_id3593554\n"
"help.text"
-msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
-msgstr "Để xoá một bảng DataPilot, chọn một ô bất kỳ trong bảng rồi chọn <emph>Xoá</emph> trong trình đơn ngữ cảnh của ô."
+msgid "User Defined Settings"
+msgstr "Thiết lập tự xác định"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id4018066\n"
"help.text"
-msgid "Converting Text to Numbers"
-msgstr "Chuyển đổi văn bản thành số"
+msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
+msgstr "Trong vùng <emph>Tự xác định</emph>, bạn có thể nhấn chuột để đặt hay gỡ bỏ mỗi đường riêng. Ô xem thử hiển thị các đường theo ba tình trạng khác nhau."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"bm_id3145068\n"
+"borders.xhp\n"
+"par_id8004699\n"
"help.text"
-msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
-msgstr ""
+msgid "Repeatedly click an edge or a corner to switch through the three different states."
+msgstr "Nhấn nhiều lần vào một cạnh hay góc để chuyển đổi qua ba tình trạng khác nhau."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"hd_id0908200901265171\n"
+"borders.xhp\n"
+"par_id8037659\n"
"help.text"
-msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
-msgstr "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Đổi văn bản thành số</link></variable>"
+msgid "Line types"
+msgstr "Kiểu đường"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265127\n"
+"borders.xhp\n"
+"par_id2305978\n"
"help.text"
-msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
-msgstr "Calc đổi văn bản bên trong ô thành giá trị số tương ứng nếu một phép chuyển đổi minh xác là có thể. Nếu không thể chuyển đổi, Calc trả về sai số #VALUE!."
+msgid "Image"
+msgstr "Ảnh"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265196\n"
+"borders.xhp\n"
+"par_id8716086\n"
"help.text"
-msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
-msgstr "Chỉ các số nguyên bao gồm số mũ được chuyển đổi, và ngày giờ ISO 8601 trong định dạng mở rộng của chúng có dấu phân cách. Mọi trường hợp khác, như các phân số với thập phân với dấu phân tách thập phân, hoặc ngày tháng khác với ISO 8601, sẽ không được chuyển đổi, như thế chuỗi văn bản sẽ bị phụ thuộc việc bản địa hóa. Khoảng trắng dẫn đầu và nối sau bị bỏ qua."
+msgid "Meaning"
+msgstr "Nghĩa"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265220\n"
+"borders.xhp\n"
+"par_id3978087\n"
"help.text"
-msgid "The following ISO 8601 formats are converted:"
-msgstr "Các định dạng ISO 8601 sau đây được chuyển đổi:"
+msgid "A black line"
+msgstr "Đường màu đen"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265288\n"
+"borders.xhp\n"
+"par_id4065065\n"
"help.text"
-msgid "CCYY-MM-DD"
-msgstr "CCYY-MM-DD"
+msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
+msgstr "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id9379863\">đường liền nét cho viền do người dùng đặt</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265267\n"
+"borders.xhp\n"
+"par_id6987823\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm"
-msgstr "CCYY-MM-DDThh:mm"
+msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
+msgstr "Đường màu đen thì đặt đường tương ứng của các ô đã chọn. Đường này cũng được hiển thị dạng đường chấm chấm khi bạn chọn kiểu dáng kích cỡ 0.05 điểm. Chọn kiểu dáng đường đôi thì hiển thị đường đôi."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265248\n"
+"borders.xhp\n"
+"par_id1209143\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm:ss"
-msgstr "CCYY-MM-DDThh:mm:ss"
+msgid "A gray line"
+msgstr "Đường màu xám"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265374\n"
+"borders.xhp\n"
+"par_id6653340\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm:ss,s"
-msgstr "CCYY-MM-DDThh:mm:ss,s"
+msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
+msgstr "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id6972563\">đường xám cho viền do người dùng đặt</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265327\n"
+"borders.xhp\n"
+"par_id2278817\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm:ss.s"
-msgstr "CCYY-MM-DDThh:mm:ss.s"
+msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
+msgstr "Đường màu xám được hiển thị khi đường tương ứng của các ô đã chọn sẽ không thay đổi. Không có đường sẽ bị đặt hay bị gỡ bỏ ở vị trí này."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265399\n"
+"borders.xhp\n"
+"par_id5374919\n"
"help.text"
-msgid "hh:mm"
-msgstr "hh:mm"
+msgid "A white line"
+msgstr "Đường màu trắng"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265347\n"
+"borders.xhp\n"
+"par_id52491\n"
"help.text"
-msgid "hh:mm:ss"
-msgstr "hh:mm:ss"
+msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
+msgstr "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id3801080\">đường trắng cho viền do người dùng đặt</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265349\n"
+"borders.xhp\n"
+"par_id372325\n"
"help.text"
-msgid "hh:mm:ss,s"
-msgstr "hh:mm:ss,s"
+msgid "A white line is shown when the corresponding line of the selected cells will be removed."
+msgstr "Đường màu trắng được hiển thị khi đường tương ứng của các ô đã chọn sẽ bị gỡ bỏ."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265342\n"
+"borders.xhp\n"
+"hd_id7282937\n"
"help.text"
-msgid "hh:mm:ss.s"
-msgstr "hh:mm:ss.s"
+msgid "Examples"
+msgstr "Thí dụ"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265491\n"
+"borders.xhp\n"
+"par_id4230780\n"
"help.text"
-msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
-msgstr "Mã thế kỉ CC có thể được bỏ trống. Thay cho dấu phân cách ngày và giờ, phải dùng chính xác chỉ một kí tự dấu cách."
+msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
+msgstr "Chọn một ô, sau đó chọn <emph>Định dạng > Các ô > Viền</emph>."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265467\n"
+"borders.xhp\n"
+"par_id1712393\n"
"help.text"
-msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
-msgstr "Nếu ngày tháng được cho, nó phải là một ngày lịch Gregorian hợp lệ. Trong trường hợp này thời gian phải nằm trong khoảng 00:00 tới 23:59:59.99999..."
+msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
+msgstr "Bấm vào cạnh bên dưới để đặt một đường rất mảnh làm viền dưới. Tất cả các đường khác sẽ bị xoá khỏi ô."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265420\n"
+"borders.xhp\n"
+"par_id5149693\n"
"help.text"
-msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
-msgstr "Nếu cho chỉ một chuỗi thời gian, có thể sẽ có một giá trị giờ lớn hơn 24, trong khi phút và giây có giá trị cực đại là 59."
+msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
+msgstr "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id9467452\">đặt một đường viền mảnh bên dưới</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265448\n"
+"borders.xhp\n"
+"par_id5759453\n"
"help.text"
-msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
-msgstr "Chuyển đổi được thực hiện chỉ cho một tham số duy nhất, như trong =A1+A2, hay =\"1E2\"+1. Tham số vùng ô sẽ không ảnh hưởng, vì thế SUM(A1:A2) khác với A1+A2 nếu một trong hai iô có chứa một chuỗi khả chuyển."
+msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
+msgstr "Chọn một kiểu đường đậm hơn và bấm vào cạnh bên dưới. Việc này sẽ đặt một nét đậm hơn làm viền dưới."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id090820090126540\n"
+"borders.xhp\n"
+"par_id6342051\n"
"help.text"
-msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
-msgstr "Các chuối trong côg thức cũng sẽ được chuyển đổi, chẳng hạn =\"1999-11-22\"+42, sẽ trả về ngày tháng là 42 ngày sau ngày 22 tháng 11 năm 1999. Việc tính toán các ngày tháng liên quan tới bản địa hóa có dạng các chuỗi trong công thức sẽ trả về sai số. Ví dụ, các chuỗi ngày tháng bản địa hóa \"11/22/1999\" hay \"22.11.1999\" không thể dùng cho chuyển đổi tự động."
+msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
+msgstr "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id7431562\">đặt một nét đậm hơn làm đường viền</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"hd_id1005200903485368\n"
+"borders.xhp\n"
+"par_id5775322\n"
"help.text"
-msgid "Example"
-msgstr "Thí dụ"
+msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
+msgstr "Bấm vào biểu tượng <emph>Mặc định</emph> thứ hai từ bên trái để đặt cả bốn đường viền. Sau đó lặp đi lặp lại thao tác bấm chuột vào cạnh bên dưới tới khi một đường màu trắng hiện ra. Việc này sẽ xoá viền bên dưới."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id1005200903485359\n"
+"borders.xhp\n"
+"par_id2882778\n"
"help.text"
-msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
-msgstr ""
+msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
+msgstr "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2709inch\" height=\"1.1354inch\"><alt id=\"alt_id8155766.00000001\">xoá viền bên dưới</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id1005200903485341\n"
+"borders.xhp\n"
+"par_id8102053\n"
"help.text"
-msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
-msgstr ""
+msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
+msgstr "Bạn có thể kết hợp một số kiểu và loại đường khác nhau. Ảnh cuối cùng biểu diễn cách thức đặt đường viền đậm hơn bên ngoài (đường đậm màu đen) trong khi tất cả các đường chéo bên trong ô không bị ảnh hưởng (đường màu xám)."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265544\n"
+"borders.xhp\n"
+"par_id2102420\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
+msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
+msgstr "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id5380718\">ví dụ về đặt đường viền nâng cao</alt></image>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
+"calc_date.xhp\n"
"tit\n"
"help.text"
-msgid "Inserting and Editing Comments"
-msgstr "Chèn và Sửa Ghi Chú"
+msgid "Calculating With Dates and Times"
+msgstr "Tính toán với Ngày và Thời gian"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"bm_id3153968\n"
+"calc_date.xhp\n"
+"bm_id3146120\n"
"help.text"
-msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
-msgstr "<bookmark_value>ghi chú; trên các ô</bookmark_value><bookmark_value>ô;ghi chú</bookmark_value><bookmark_value>nhận xét; trên ô</bookmark_value><bookmark_value>nhận xét trên ô</bookmark_value><bookmark_value>định dạng;ghi chú trên ô</bookmark_value><bookmark_value>xem;ghi chú trên ô</bookmark_value>"
+msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
+msgstr "<bookmark_value>ngày; trong ô</bookmark_value><bookmark_value>thời gian; trong ô</bookmark_value><bookmark_value>các ô;định dạng ngày và thời gian</bookmark_value><bookmark_value>giá trị ngày và thời gian hiện tại</bookmark_value>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"hd_id3153968\n"
-"31\n"
+"calc_date.xhp\n"
+"hd_id3146120\n"
+"11\n"
"help.text"
-msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
-msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Chèn và Sửa Ghi Chú\">Chèn và Sửa Ghi Chú</link></variable>"
+msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
+msgstr "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Tính toán với ngày và thời gian\">Tính toán với Ngày và Thời gian</link></variable>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3150440\n"
-"32\n"
+"calc_date.xhp\n"
+"par_id3154320\n"
+"12\n"
"help.text"
-msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
-msgstr "Bạn có thể gán một ghi chú vào mỗi ô bằng cách chọn <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Note\"><emph>Chèn > Ghi chú</emph></link>. Ghi chú này sẽ được chỉ thị bằng một hình vuông nhỏ màu đỏ, gọi là vật chỉ thị ghi chú, trong ô đó."
+msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
+msgstr "Trong $[officename] Calc, bạn có thể tính toán với giá trị ngày và thời gian hiện tại. Ví dụ, để biết chính xác tuổi của bạn tới từng giây hoặc từng giờ, hãy làm theo các bước sau:"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3145750\n"
-"34\n"
+"calc_date.xhp\n"
+"par_id3150750\n"
+"13\n"
"help.text"
-msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
-msgstr "Ghi chú này sẽ hiển thị khi bạn đặt con trỏ chuột bên trên ô đó, với điều kiện là bạn đã kích hoạt mục <emph>Trợ giúp > Gợi ý</emph> hay <emph>Trợ giúp > Gợi ý Mở rộng</emph>."
+msgid "In a spreadsheet, enter your birthday in cell A1."
+msgstr "Trong một bảng tính, nhập ngày sinh của bạn trong ô A1."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3148575\n"
-"33\n"
+"calc_date.xhp\n"
+"par_id3145642\n"
+"14\n"
"help.text"
-msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
-msgstr "Khi chọn một ô, bạn có thể chọn <emph>Hiển thị ghi chú</emph> từ trình đơn ngữ cảnh của ô đó. Làm như vậy sẽ giúp cho ghi chú của bạn hiển thị cho đến khi bạn khử hoạt tính lệnh <emph>Hiển thị ghi chú</emph> trong cùng một trình đơn ngữ cảnh."
+msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
+msgstr "Nhập công thức sau trong ô A3: <item type=\"literal\">=NOW()-A1</item>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3149958\n"
-"35\n"
+"calc_date.xhp\n"
+"par_id3149020\n"
+"52\n"
"help.text"
-msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
-msgstr "Để sửa một ghi chú hiển thị cố định, chỉ cần nhắp chuột lên nó. Nếu bạn xóa toàn bộ văn bản của ghi chú thì ghi chú này cũng sẽ tự mất đi."
+msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
+msgstr "Sau khi nhấn <item type=\"keycode\">Enter</item> bạn sẽ thấy kết quả ở dạng ngày. Vì kết quả phải là số ngày giữa 2 ngày tháng, bạn phải định dạng ô A3 dưới dạng số."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_idN10699\n"
+"calc_date.xhp\n"
+"par_id3155335\n"
+"53\n"
"help.text"
-msgid "Move or resize each comment as you like."
-msgstr "Di chuyển và chỉnh lại kích cỡ ghi chú theo ý bạn."
+msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
+msgstr "Đặt con trỏ trong ô A3, bấm chuột phải để mở trình đơn ngữ cảnh và chọn <emph>Định dạng ô</emph>."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_idN1069D\n"
+"calc_date.xhp\n"
+"par_id3147343\n"
+"54\n"
"help.text"
-msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
-msgstr "Định dạng mỗi ghi chú bằng cách chỉ định màu nền, tính trong suốt, kiểu dáng đường viền và cách canh lề văn bản. Chọn các lệnh từ trình đơn ngữ cảnh của ghi chú."
+msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
+msgstr "Hộp thoại <emph>Định dạng ô</emph> xuất hiện. Trong thẻ <emph>Số</emph>, loại <emph>Số</emph> sẽ được chọn. Định dạng được đặt thành \"General\", làm cho kết quả của một phép tính chứa dữ liệu ngày tháng sẽ được hiển thị dưới dạng ngày tháng. Để hiển thị kết quả dưới dạng số, hãy đặt định dạng số thành \"-1,234\" và đóng hộp thoại lại bằng nút <emph>OK</emph> ."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3144764\n"
-"38\n"
+"calc_date.xhp\n"
+"par_id3147001\n"
+"15\n"
"help.text"
-msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
-msgstr ""
+msgid "The number of days between today's date and the specified date is displayed in cell A3."
+msgstr "Giá trị hiển thị trong ô A3 là số ngày giữa hôm nay và ngày được cho."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3150715\n"
-"39\n"
+"calc_date.xhp\n"
+"par_id3150304\n"
+"16\n"
"help.text"
-msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
-msgstr "Để hiển thị lời gợi ý trợ giúp cho ô được chọn, hãy sử dụng <emph>Dữ liệu > Hợp lệ > Trợ giúp nhập liệu</emph>."
+msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
+msgstr "Thử với một số công thức khác: trong ô A4 ta nhập « =A3*24 » để tính số giờ, trong A5 ta nhập « =A4*60 » để tính số phút, và trong A6 ta nhập « =A5*60 » để tính số giây. Nhấn <item type=\"keycode\">Enter</item> sau mỗi công thức."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3153707\n"
-"36\n"
+"calc_date.xhp\n"
+"par_id3149207\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
-msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Chèn > Ghi chú\">Chèn > Ghi chú</link>"
+msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
+msgstr "Thời gian từ khi bạn sinh ra đến giờ sẽ được tính toán và hiển thị dưới nhiều đơn vị tính khác nhau. Các giá trị được tính chính xác từ giá trị bạn nhập vào trong công thức cuối cùng và nhấn <item type=\"keycode\">Enter</item>. Giá trị này không được tự động cập nhật, mặc dù giá trị hàm \"Now\" (bây giờ) trả về là liên tục thay đổi. Trong trình đơn <emph>Công cụ</emph>, mục <emph>Nội dung ô > Tự động Tính</emph> thường được bật; tuy nhiên, việc tự động tính toán lại không áp dụng cho hàm NOW. Điều này nhằm đảm bảo máy tính của bạn không lãng phí tài nguyên vào việc cập nhật liên tục các bảng tính."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
+"calc_series.xhp\n"
"tit\n"
"help.text"
-msgid "Using AutoFormat for Tables"
-msgstr "Dùng Tự động định dạng trong bảng"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"bm_id3155132\n"
-"help.text"
-msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
-msgstr "<bookmark_value>bảng; chức năng Tự động Định dạng</bookmark_value><bookmark_value>định nghĩa; chức năng Tự động Định dạng cho bảng</bookmark_value><bookmark_value>chức năng Tự động Định dạng;định nghĩa và áp dụng định dạng</bookmark_value><bookmark_value>định dạng; tự động định dạng bảng tính</bookmark_value><bookmark_value>tự động định dạng trong bảng tính</bookmark_value><bookmark_value>bảng; chức năng Tự động định dạng</bookmark_value>"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"hd_id3155132\n"
-"11\n"
-"help.text"
-msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
-msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Dùng Tự động Định dạng trong Bảng\">Áp dụng Tự động Định dạng cho một Phạm vi Ô đã Chọn</link></variable>"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"par_id3149401\n"
-"12\n"
-"help.text"
-msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
-msgstr "Bạn có thể dùng chức năng Tự động Định dạng để áp dụng nhanh một định dạng lên một trang tính hoặc một phạm vi ô đã chọn."
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"par_idN10702\n"
-"help.text"
-msgid "To Apply an AutoFormat to a Sheet or Selected Cell Range"
-msgstr "Để Tự động định dạng cho một bảng hoặc một vùng chọn"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"par_idN106CE\n"
-"help.text"
-msgid "Select the cells, including the column and row headers, that you want to format."
-msgstr "Chọn các ô, bao gồm tiêu đề của cột và hàng, mà bạn cần định dạng."
+msgid "Automatically Calculating Series"
+msgstr "Tự động Tính Nối tiếp"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN106D5\n"
+"calc_series.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "Chọn <item type=\"menuitem\">Định dạng > Tự động Định dạng</item>."
+msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
+msgstr "<bookmark_value>dãy; tính</bookmark_value><bookmark_value>tính; dãy</bookmark_value><bookmark_value>cấp số cộng</bookmark_value><bookmark_value>cấp số nhân</bookmark_value><bookmark_value>chuỗi các ngày</bookmark_value><bookmark_value>tính toán mũ 2</bookmark_value><bookmark_value>ô; tự động điền</bookmark_value><bookmark_value>tự động điền ô</bookmark_value><bookmark_value>chức năng Tự động Điền</bookmark_value><bookmark_value>điền;ô, tự động</bookmark_value>"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3151242\n"
-"27\n"
+"calc_series.xhp\n"
+"hd_id3150769\n"
+"6\n"
"help.text"
-msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
-msgstr "Để chọn thuộc tính bao gồm trong Tự động Định dạng, bấm <emph>Thêm</emph>."
+msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
+msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Tự động tính chuỗi\">Tự động điền dữ liệu dựa vào các ô liền kề</link></variable>"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN10715\n"
+"calc_series.xhp\n"
+"par_idN106A8\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
+msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
+msgstr "Bạn có thể tự động điền dữ liệu vào các ô với lệnh Tự động Điền hoặc lệnh Chuỗi."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN1075D\n"
+"calc_series.xhp\n"
+"par_idN106D3\n"
"help.text"
-msgid "The format is applied to the selected range of cells."
-msgstr "Định dạng đó sẽ được áp dụng lên vùng chọn."
+msgid "Using AutoFill"
+msgstr "Sử dụng Tự động Điền"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3149210\n"
-"14\n"
+"calc_series.xhp\n"
+"par_idN106D7\n"
"help.text"
-msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
-msgstr "Nếu bạn không thấy nội dung của ô được đổi màu, hãy chọn <item type=\"menuitem\">Xem > Tô sáng Giá trị</item>."
+msgid "AutoFill automatically generates a data series based on a defined pattern."
+msgstr "Chức năng Tự động Điền tự động tạo ra một chuỗi dữ liệu dựa trên một mẫu định sẵn."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3155379\n"
-"22\n"
+"calc_series.xhp\n"
+"par_id3154319\n"
+"7\n"
"help.text"
-msgid "To Define an AutoFormat for Spreadsheets"
-msgstr "Để định nghĩa một Định dạng Tự động cho bảng tính"
+msgid "On a sheet, click in a cell, and type a number."
+msgstr "Trong một bảng tính, chọn một ô và gõ vào đó một con số."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3148868\n"
-"26\n"
+"calc_series.xhp\n"
+"par_idN106CB\n"
"help.text"
-msgid "You can define a new AutoFormat that is available to all spreadsheets."
-msgstr "Bạn có thể định nghĩa một Định dạng Tự động cho mọi bảng tính."
+msgid "Click in another cell and then click back in the cell where you typed the number."
+msgstr "Chọn một ô khác và nhấn lại vào ô mà bạn vừa nhập số vào."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3152985\n"
-"23\n"
+"calc_series.xhp\n"
+"par_id3145272\n"
+"16\n"
"help.text"
-msgid "Format a sheet."
-msgstr "Định dạng một bảng."
+msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
+msgstr "Kéo chốt điền nằm ở góc dưới bên phải của ô qua các ô mà bạn muốn điền, sau đó thả chuột ra."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3145384\n"
-"24\n"
+"calc_series.xhp\n"
+"par_id3145801\n"
+"17\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
-msgstr "Chọn <item type=\"menuitem\">Sửa > Chọn Tất cả</item>."
+msgid "The cells are filled with ascending numbers."
+msgstr "Các ô khác sẽ được điền vào các giá trị liên tiếp từ ô đầu."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3153815\n"
-"25\n"
+"calc_series.xhp\n"
+"par_idN106EE\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "Chọn <item type=\"menuitem\">Định dạng > Tự động Định dạng</item>."
+msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
+msgstr "Để tạo nhanh một danh sách các ngày liên tiếp nhau, nhập \"Thứ Hai\" trong một ô, sau đó kéo chốt điền."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN107A9\n"
+"calc_series.xhp\n"
+"par_id9720145\n"
"help.text"
-msgid "Click <emph>Add</emph>."
-msgstr "Nhấn <emph>Thêm</emph>."
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN10760\n"
+"calc_series.xhp\n"
+"par_id3154490\n"
+"18\n"
"help.text"
-msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the format."
-msgstr "Trong ô <emph>Tên</emph> của hộp thoại <emph>Thêm Định dạng Tự động</emph>, nhập một tên mới cho định dạng."
+msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
+msgstr ""
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN107C3\n"
+"calc_series.xhp\n"
+"par_idN10737\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
+msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
+msgstr "Bạn có thể bấm đúp chuột vào chốt điền để tự động điền tất cả các cột trống của khối dữ liệu hiện thời. Ví dụ, đầu tiên bạn nhập Th1 vào trong ô A1 và kéo chốt điền xuống tới A12 để điền tự động 12 tháng vào trong cột đầu tiên. Sau đó nhập một số giá trị vào ô B1 và C1. Chọn 2 ô này, sau đó bấm đúp vào chốt điền. Calc sẽ tự điền đầy khối dữ liệu B1:C12."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3159203\n"
-"28\n"
+"calc_series.xhp\n"
+"par_idN10713\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Định dạng > Tự động Định dạng\">Định dạng > Tự động Định dạng</link>"
+msgid "Using a Defined Series"
+msgstr "Dùng một chuỗi giá trị đã định nghĩa"
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"tit\n"
+"calc_series.xhp\n"
+"par_id3150749\n"
+"9\n"
"help.text"
-msgid "Changing Table Views"
-msgstr "Thay đổi ô Xem bảng"
+msgid "Select the cell range in the sheet that you want to fill."
+msgstr "Chọn phạm vi các ô trong bảng mà bạn muốn điền dữ liệu."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"bm_id3147304\n"
+"calc_series.xhp\n"
+"par_id3154754\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
-msgstr "<bookmark_value>đầu hàng; ẩn</bookmark_value><bookmark_value>đầu cột; ẩn</bookmark_value><bookmark_value>bảng; ô xem</bookmark_value><bookmark_value>ô xem; bảng</bookmark_value><bookmark_value>lưới; ẩn đường trong trang</bookmark_value><bookmark_value>ẩn; đầu trang/đường lưới</bookmark_value><bookmark_value>thay đổi; ô xem bảng</bookmark_value>"
+msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
+msgstr "Chọn <item type=\"menuitem\">Sửa > Điền > Chuỗi</item>."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"hd_id3147304\n"
-"1\n"
+"calc_series.xhp\n"
+"par_idN10716\n"
"help.text"
-msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
-msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Thay đổi ô Xem bảng\">Thay đổi ô Xem bảng</link></variable>"
+msgid "Select the parameters for the series."
+msgstr "Chọn các tham số cho dãy."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153192\n"
-"2\n"
+"calc_series.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "To hide column and line headers in a table:"
-msgstr "Để ẩn một cách cố định cột và đầu dòng trong một bảng:"
+msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
+msgstr "Nếu bạn chọn một cấp <emph>số cộng</emph>, giá trị Tăng/Giảm dần mà bạn nhập vào sẽ được <emph>cộng</emph> vào giá trị hiện thời trong chuỗi để tạo thành giá trị tiếp theo."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153768\n"
-"3\n"
+"calc_series.xhp\n"
+"par_idN1073C\n"
"help.text"
-msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
-msgstr ""
+msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
+msgstr "Nếu bạn chọn một cấp <emph>nhân</emph>, giá trị Tăng/giảm dần mà bạn nhập sẽ được <emph>nhân</emph> lên với giá trị hiện tại để tạo thành giá trị tiếp theo."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3147436\n"
-"4\n"
+"calc_series.xhp\n"
+"par_idN10747\n"
"help.text"
-msgid "To hide grid lines:"
-msgstr "Để ẩn đường lưới:"
+msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
+msgstr "Nếu bạn chọn một chuỗi <emph>Ngày tháng</emph>, giá trị Tăng/Giảm dần mà bạn nhập sẽ được cộng vào theo đơn vị thời gian được chọn."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153726\n"
-"5\n"
+"calc_series.xhp\n"
+"par_id3159173\n"
+"20\n"
"help.text"
-msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
-msgstr ""
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Danh sách Sắp xếp\">Danh sách Sắp xếp</link>"
#: calc_timevalues.xhp
msgctxt ""
@@ -1842,581 +1507,6 @@ msgctxt ""
msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
msgstr "Trong công thức, một ngày 24 giờ có giá trị là 1 và một giờ có giá trị 1/24. Giá trị logic trong ngoặc là 0 hoặc 1, tương ứng với 0 hoặc 24 giờ. Kết quả được trả về bởi công thức được tự động giả sử trong định dạng thời gian theo thứ tự của các toán hàng."
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Numbers as Text"
-msgstr "Định dạng Số dưới dạng Văn bản"
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
-msgstr "<bookmark_value>số; dạng văn bản</bookmark_value><bookmark_value>định dạng văn bản; dùng cho số</bookmark_value><bookmark_value>số; nhập vào không có định dạng số</bookmark_value><bookmark_value>định dạng; số dạng văn bản</bookmark_value><bookmark_value>định dạng ô; văn bản/số</bookmark_value><bookmark_value>định dạng; số dạng văn bản</bookmark_value>"
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"hd_id3145068\n"
-"46\n"
-"help.text"
-msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
-msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Định dạng Số dưới dạng Văn bản\">Định dạng Số dưới dạng Văn bản</link></variable>"
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3156280\n"
-"43\n"
-"help.text"
-msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
-msgstr "Bạn có thể định dạng các số dưới dạng văn bản trong $[officename] Calc. Mở trình đơn ngữ cảnh của một ô hoặc một vùng các ô và chọn <emph>Định dạng ô > Số</emph>, sau đó chọn mục « Văn bản » từ danh sách <emph>Loại</emph>. Bất kì số nào được nhập sau vào vùng được định dạng đều được chuyển sang dạng văn bản. Hiển thị các « số » này được canh đều phía bên trái, như với văn bản khác."
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3149377\n"
-"44\n"
-"help.text"
-msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
-msgstr "Nếu bạn đã nhập các số thông thường vào các ô và sau đó thay đổi định dạng của các ô này thành dạng « văn bản », những số này sẽ vẫn là những số thông thường. Chúng sẽ không bị chuyển đổi. Chỉ có những số được nhập vào sau đó, hoặc các số sau đó được sửa thì mới trở thành các số dạng văn bản."
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3144765\n"
-"45\n"
-"help.text"
-msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
-msgstr "Nếu bạn quyết định nhập trực tiếp một số dạng văn bản, trước tiên hãy nhập dấu nháy ('). Ví dụ, với các năm trong tiêu đề cột, bạn có thể nhập « '1999 », « 2000 » và « '2001 ». Dấu nháy này không hiển thị trong ô, nó chỉ cho biết là mục này đã được nhận dạng như một văn bản. Dấu này rất hữu ích nếu như, giả dụ, bạn nhập một số điện thoại hay một mã bưu điện bắt đầu với số 0, vì một số 0 đứng đầu một dãy các ký số sẽ bị bỏ đi trong định dạng số."
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3156284\n"
-"47\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"tit\n"
-"help.text"
-msgid "Saving and Opening Sheets in HTML"
-msgstr "Lưu và Mở bảng tính theo HTML"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"bm_id3150542\n"
-"help.text"
-msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
-msgstr "<bookmark_value>HTML; bảng tính</bookmark_value><bookmark_value>bảng tính; HTML</bookmark_value><bookmark_value>lưu;bảng tính theo HTML</bookmark_value><bookmark_value>mở; bảng tính theo HTML</bookmark_value>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"hd_id3150542\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
-msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Lưu và Mở bảng tính theo HTML\">Lưu và Mở bảng tính theo HTML</link></variable>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"hd_id3154124\n"
-"2\n"
-"help.text"
-msgid "Saving Sheets in HTML"
-msgstr "Lưu bảng tính theo HTML"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3145785\n"
-"3\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc lưu tất cả các trang tính của một tài liệu Calc với nhau dưới dạng tài liệu HTML. Ở phần đầu của tài liệu HTML, một tiêu đề và một danh sách các siêu liên kết tự động được thêm vào mà dẫn đến các trang tính riêng lẻ trong tài liệu."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3155854\n"
-"4\n"
-"help.text"
-msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
-msgstr "Các số được thể hiện dưới dạng viết. Hơn nữa, trong thẻ HTML <SDVAL>, giá trị số nội bộ chính xác được viết ra do đó sau khi mở tài liệu HTML bằng <item type=\"productname\">%PRODUCTNAME</item>, bạn sẽ biết là mình đã có các giá trị chính xác."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3153188\n"
-"5\n"
-"help.text"
-msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
-msgstr "Để lưu tài liệu Calc hiện thời dưới dạng HTML, chọn <emph>Tập tin > Lưu dạng</emph>."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3148645\n"
-"6\n"
-"help.text"
-msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
-msgstr "Trong hộp danh sách <emph>Lưu dạng Kiểu</emph>, trong vùng với các bộ lọc <item type=\"productname\">%PRODUCTNAME</item> Calc khác, chọn tập tin dạng « Tài liệu HTML (<item type=\"productname\">%PRODUCTNAME</item> Calc) »."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3154729\n"
-"7\n"
-"help.text"
-msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
-msgstr "Nhập <emph>Tên tập tin</emph> và nhấn <emph>Lưu</emph>."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"hd_id3149379\n"
-"8\n"
-"help.text"
-msgid "Opening Sheets in HTML"
-msgstr "Mở Bảng tính theo HTML"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3149959\n"
-"10\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> đưa ra các bộ lọc khác nhau để mở các tập tin HTML có thể được chọn dưới <emph>Tập tin > Mở</emph> trong hộp danh sách <emph>Tập tin kiểu</emph>."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3146969\n"
-"15\n"
-"help.text"
-msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
-msgstr "Chọn loại tập tin « Tài liệu HTML (<item type=\"productname\">%PRODUCTNAME</item> Calc) » để mở trong <item type=\"productname\">%PRODUCTNAME</item> Calc."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3155446\n"
-"16\n"
-"help.text"
-msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
-msgstr "Bạn có thể sử dụng tất cả tùy chọn cho <item type=\"productname\">%PRODUCTNAME</item> Calc. Tuy nhiên, không phải tất cả mọi tùy chọn của <item type=\"productname\">%PRODUCTNAME</item> Calc dùng cho việc soạn thảo đều được lưu với định dạng HTML."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3150370\n"
-"17\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Tập tin > Mở\">Tập tin > Mở</link>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3150199\n"
-"18\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Tập tin > Lưu dạng\">Tập tin > Lưu dạng</link>"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"tit\n"
-"help.text"
-msgid "Updating Pivot Tables"
-msgstr "Cập nhật bảng DataPilot"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"bm_id3150792\n"
-"help.text"
-msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
-msgstr "<bookmark_value>nhập bảng quay</bookmark_value><bookmark_value>hàm DataPilot; làm mới các bảng</bookmark_value>tính lại;bảng DataPilot<bookmark_value>;cập nhật;bảng DataPilot</bookmark_value>"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"hd_id3150792\n"
-"33\n"
-"help.text"
-msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Cập nhật bảng DataPilot \">Cập nhật bảng DataPilot</link></variable>"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"par_id3154684\n"
-"34\n"
-"help.text"
-msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
-msgstr "Nếu dữ liệu của bảng tính nguồn đã bị thay đổi, $[officename] tính lại bảng DataPilot. Để tính lại các bảng, hãy chọn <emph>Dữ liệu > DataPilot > Cập nhật</emph>. Làm tương tự sau khi bạn đã nhập một bảng quay Excel vào trong bảng tính $[officename] Calc."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"tit\n"
-"help.text"
-msgid "Addresses and References, Absolute and Relative"
-msgstr "Địa chỉ và Tham chiếu, Tuyệt đối và Tương đối"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"bm_id3156423\n"
-"help.text"
-msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
-msgstr "<bookmark_value>đặt địa chỉ; tương đối và tuyệt đối</bookmark_value><bookmark_value>tham chiếu; tuyệt đối/tương đối</bookmark_value><bookmark_value>địa chỉ tuyệt đối trong bảng tính</bookmark_value><bookmark_value>địa chỉ tương đối</bookmark_value><bookmark_value>tham chiếu tuyệt đối trong bảng tính</bookmark_value><bookmark_value>tham chiếu tương đối</bookmark_value><bookmark_value>tham chiếu; tới ô</bookmark_value><bookmark_value>ô; tham chiếu</bookmark_value>"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3156423\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
-msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Địa chỉ và Tham chiếu, Tuyệt đối và Tương đối\">Địa chỉ và Tham chiếu, Tuyệt đối và Tương đối</link></variable>"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3163712\n"
-"3\n"
-"help.text"
-msgid "Relative Addressing"
-msgstr "Đặt địa chỉ tương đối"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3146119\n"
-"4\n"
-"help.text"
-msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
-msgstr "Ô trong Cột A, Hàng 1 được đặt là « A1 ». Bạn có thể đặt một vùng các ô kề sát nhau bằng cách trước tiên nhập toạ độ của ô ở phía trên bên trái của vùng, sau đó dấu hai chấm, sau đó toạ độ của ô ở phía dưới. Ví dụ, hình vuông tạo ra bởi bốn ô đầu tiên trông góc trái phía trên được đặt là « A1:B2 »."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3154730\n"
-"5\n"
-"help.text"
-msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
-msgstr "Bạn có thể tạo ra một tham chiếu tương đối cho « A1:B2 » bằng cách ghi địa chỉ theo cách này. Tương đối ở đây có nghĩa là tham chiếu cho vùng sẽ tự động được điều chỉnh khi bạn sao các công thức đó."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3149377\n"
-"6\n"
-"help.text"
-msgid "Absolute Addressing"
-msgstr "Địa chỉ tuyệt đối"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3154943\n"
-"7\n"
-"help.text"
-msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
-msgstr "Tham chiếu tuyệt đối là mặt đối lập của địa chỉ tuyệt đối. Trong tham số tuyệt đối, một kí hiệu đô la được đặt ở đằng trước mỗi kí tự và chữ số, ví dụ « $A$1:$B$2 »."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147338\n"
-"36\n"
-"help.text"
-msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
-msgstr "$[officename] có thể chuyển đổi tham chiếu hiện thời, trong đó con trỏ được đặt trong dòng nhập, từ tương đối sang tuyệt đối và ngược lại, bằng cách nhấn tổ hợp phím <item type=\"keycode\">Shift+F4</item>. Nếu bạn bắt đầu với một địa chỉ tương đối dạng « A1 », lần thứ nhất khi bạn hãy nhấn tổ hợp phím này, cả hàng và cột sẽ được đặt thành tham chiếu tuyệt đối ($A$1). Lần thứ hai, chỉ có hàng (A$1) và lần thứ ba, chỉ có cột ($A1) được chuyển. Nếu bạn nhấn tổ hợp phím này thêm lần nữa, thì tham chiếu của cả hàng và cột sẽ chuyển về trạng thái tương đối ban đầu (A1)."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3153963\n"
-"52\n"
-"help.text"
-msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
-msgstr "$[officename] Calc hiển thị tham chiếu cho một công thức. Ví dụ như, nếu bạn nhắp chuột vào công thức « =SUM(A1:C5;D15:D24) » trong một ô, thì hai vùng tham chiếu trong trang tính sẽ được tô sáng bằng màu. Ví dụ, phần tử của công thức « A1:C5 » có thể được tô sáng màu xanh và vùng ô cần tìm được viền quanh cũng cùng sắc màu xanh đó. Thành phần công thức tiếp theo « D15:D24 » có thể được đánh dấu bằng màu đỏ bằng cách tương tự."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3154704\n"
-"29\n"
-"help.text"
-msgid "When to Use Relative and Absolute References"
-msgstr "Khi nào nên dùng Tham chiếu Tuyệt đối và Tương đối"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147346\n"
-"8\n"
-"help.text"
-msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
-msgstr "Dựa vào đâu để phân biệt một tham chiếu tương đối? Giả sử bạn muốn tính trong ô E1 tổng các ô trong vùng « A1:B2 ». Công thức nên nhập vào E1 sẽ là: … =SUM(A1:B2) ». Nếu sau đó bạn quyết định chèn một cột mới đằng trước cột A, thì các thành tố mà bạn muốn thêm vào sẽ ở « B1:C2 » và công thức sẽ ở trong F1, chứ không phải E1 nữa. Sau khi chèn xong cột mới, bạn sẽ phải kiểm tra và chỉnh lại tất cả các công thức trong trang đó và có thể ở cả những trang khác."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3155335\n"
-"9\n"
-"help.text"
-msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
-msgstr "Rất may mắn, vì $[officename] có thể thực hiện thao tác này giúp bạn. Sau khi đã chèn một cột mới A, công thức « =SUM(A1:B2) » sẽ tự động cập nhật thành « =SUM(B1:C2) ». Số hàng cũng sẽ tự động được điều chỉnh khi một hàng mới 1 được chèn vào. Tham chiếu tương đối và tuyệt đối luôn được điều chỉnh trong $[officename] Calc mỗi khi vùng tham chiếu được dời đi. Tuy nhiên cần chú ý nếu như bạn đang sao một công thức vì trong trường hợp đó, chỉ có các tham chiếu tương đối mới được điều chỉnh, không phải tham chiếu tuyệt đối."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3145791\n"
-"39\n"
-"help.text"
-msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
-msgstr "Tham chiếu tuyệt đối được sử dụng khi một phép tính đề cập tới một ô cụ thể trong trang tính của bạn. Nếu một công thức đề cập chính xác tới ô này mà được chép tương đối tới một ô bên dưới ô ban đầu, thì tham chiếu này cũng sẽ được dời xuống dưới nếu như bạn không xác định các ô đó là tuyệt đối."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147005\n"
-"10\n"
-"help.text"
-msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
-msgstr "Ngoài việc chèn các ô hay cột mới thì tham chiếu cũng sẽ thay đổi khi một công thức đang tính đề cập tới các ô cụ thể được chép tới một vùng khác của trang tính. Giả sử bạn nhập công thức « =SUM(A1:A9) » trong hàng 10. Nếu bạn muốn tính tổng cho cột kế tiếp ở bên phải, chỉ cần chép công thức này tới ô bên phải. Bản sao công thức này trong cột B sẽ tự động điều chỉnh thành « =SUM(B1:B9) »."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"tit\n"
-"help.text"
-msgid "Moving Cells by Drag-and-Drop"
-msgstr "Di chuyển ô bằng Kéo và Thả"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"bm_id3155686\n"
-"help.text"
-msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
-msgstr "<bookmark_value>kéo và thả; di chuyển ô</bookmark_value><bookmark_value>ô; di chuyển bằng kéo và thả</bookmark_value><bookmark_value>cột; di chuyển bằng kéo và thả</bookmark_value><bookmark_value>di chuyển;các ô bằng kéo và thả</bookmark_value><bookmark_value>chèn;các ô, bằng kéo và thả</bookmark_value>"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"hd_id986358\n"
-"help.text"
-msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
-msgstr "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Di chuyển ô bằng Kéo và Thả</link></variable>"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2760093\n"
-"help.text"
-msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
-msgstr "Khi bạn kéo và thả một vùng chọn các ô trên một trang tính Calc, các ô này thông thường sẽ ghi đè lên các ô đang dùng trong vùng mà bạn nhả chuột. Đây là <emph>chế độ ghi đè</emph> bình thường."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9527268\n"
-"help.text"
-msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
-msgstr "Nếu bạn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> trong khi thả chuột, <emph>chế độ chèn</emph> sẽ được kích hoạt."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id79653\n"
-"help.text"
-msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
-msgstr "Trong chế độ chèn, các ô hiện hữu mà bạn nhả chuột vào đó sẽ được chuyển sang bên phải hay xuống dưới, và các ô được nhả sẽ được chèn vào các vị trí trống mà không bị ghi đè lên."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id8676717\n"
-"help.text"
-msgid "The surrounding box of the moved cells looks different in insert mode."
-msgstr "Hộp các ô được di chuyển bao quanh sẽ trông khác đi trong chế độ chèn."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id3968932\n"
-"help.text"
-msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
-msgstr "Trong chế độ ghi đè, bạn có thể thấy tất cả bốn đường viền xung quanh vùng được chọn. Trong chế độ chèn, bạn chỉ thấy viền bên trái khi các ô đích sẽ được dời sang bên phải. Bạn chỉ thấy viền bên trên khi các ô đích được dời xuống dưới."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id7399517\n"
-"help.text"
-msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
-msgstr "Việc vùng đích được chuyển sang phải hay xuống đáy phụ thuộc vào khoảng cách giữa các ô nguồn và ô đích, nếu bạn di chuyển trong cùng một trang tính. Và sẽ phụ thuộc vào số các ô ngang và ô dọc trong vùng được di chuyển, nếu bạn chuyển sang một trang tính khác."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id8040406\n"
-"help.text"
-msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
-msgstr "Nếu bạn di chuyển các ô trong chế độ chèn trong cùng hàng (chỉ hàng ngang) thì sau khi chèn, tất cả các ô này sẽ được chuyển sang bên trái để lấp đầy vùng nguồn."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2586748\n"
-"help.text"
-msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
-msgstr ""
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5814081\n"
-"help.text"
-msgid "Keys pressed while releasing the mouse button"
-msgstr "Phím được bấm trong khi nhả chuột"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id6581316\n"
-"help.text"
-msgid "Result"
-msgstr "Kết quả"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9906613\n"
-"help.text"
-msgid "No key"
-msgstr "Không có phím"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2815637\n"
-"help.text"
-msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
-msgstr "Các ô được di chuyển và ghi đè lên những ô này trong vùng đích. Các ô nguồn đã được làm trống."
-
-#: move_dragdrop.xhp
-#, fuzzy
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id6161687\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
-msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id4278389\n"
-"help.text"
-msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
-msgstr "Các ô được chép và ghi đè lên những ô này trong vùng đích. Các ô nguồn giữ nguyên."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2805566\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
-msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5369121\n"
-"help.text"
-msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
-msgstr "Liên kết tới các ô nguồn được chèn và ghi đè lên những ô trong vùng đích. Các ô nguồn được giữ nguyên."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9518723\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
-msgstr "Phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2926419\n"
-"help.text"
-msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
-msgstr "Các ô được dời và làm dịch chuyển những ô trong vùng đích sang bên phải hoặc xuống dưới. Các ô nguồn được làm trống, ngoại trừ khi bạn dời chúng trong cùng hàng trên cùng trang tính."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id4021423\n"
-"help.text"
-msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
-msgstr "Nếu bạn dời trong cùng hàng trên cùng trang tính, các ô tại vùng nguồn sẽ di chuyển sang bên phải, và sau đó cả hàng sẽ di chuyển để phủ đầy vùng nguồn."
-
-#: move_dragdrop.xhp
-#, fuzzy
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2783898\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
-msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2785119\n"
-"help.text"
-msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
-msgstr "Các ô được chép và di chuyển những ô trong vùng đích sang bên phải hay xuống đáy. Các ô nguồn được giữ nguyên."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id584124\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
-msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5590990\n"
-"help.text"
-msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
-msgstr "Liên kết với các ô nguồn được chèn và làm di chuyển những ô trong vùng đích sang bên phải hoặc xuống dưới. Các ô nguồn được giữ nguyên."
-
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2426,7 +1516,6 @@ msgid "Calculating in Spreadsheets"
msgstr "Tính toán trong bảng tính"
#: calculate.xhp
-#, fuzzy
msgctxt ""
"calculate.xhp\n"
"bm_id3150791\n"
@@ -2459,7 +1548,6 @@ msgid "Click in a cell, and type a number"
msgstr "Chọn một ô và gõ vào một số"
#: calculate.xhp
-#, fuzzy
msgctxt ""
"calculate.xhp\n"
"par_idN10656\n"
@@ -2508,7 +1596,6 @@ msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</i
msgstr "Gõ vào một công thức, ví dụ như <item type=\"literal\">=A3 * A4 / 100.</item>"
#: calculate.xhp
-#, fuzzy
msgctxt ""
"calculate.xhp\n"
"par_idN1068B\n"
@@ -2532,84 +1619,133 @@ msgctxt ""
msgid "When you edit a formula, the new result is calculated automatically."
msgstr "Khi bạn sửa một công thức, kết quả mới được tự động tính toán và cập nhật."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
+"cell_enter.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Text"
-msgstr "Xoay văn bản"
+msgid "Entering Values"
+msgstr "Nhập giá trị"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"bm_id3151112\n"
+"cell_enter.xhp\n"
+"bm_id3150868\n"
"help.text"
-msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
-msgstr "<bookmark_value>ô; xoay văn bản</bookmark_value><bookmark_value>xoay; văn bản trong ô</bookmark_value><bookmark_value>văn bản trong ô; viết theo chiều dọc</bookmark_value>"
+msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
+msgstr "<bookmark_value>giá trị; nhập vào nhiều ô</bookmark_value><bookmark_value>nhập;giá trị</bookmark_value><bookmark_value>phạm vi ô;chọn để nhập dữ liệu</bookmark_value><bookmark_value>vùng, xem thêm phạm vi ô</bookmark_value>"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"hd_id3151112\n"
-"1\n"
+"cell_enter.xhp\n"
+"hd_id3405255\n"
"help.text"
-msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
-msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Xoay văn bản\">Xoay văn bản</link></variable>"
+msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
+msgstr "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Nhập giá trị</link></variable>"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3145171\n"
-"2\n"
+"cell_enter.xhp\n"
+"par_id7147129\n"
"help.text"
-msgid "Select the cells whose text you want to rotate."
-msgstr "Chọn các ô chứa văn bản mà bạn muốn xoay."
+msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
+msgstr "Calc có thể đơn giản hoá việc nhập dữ liệu và giá trị vào nhiều ô. Bạn có thể thay đổi một số thiết lập theo ý mình."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3155133\n"
-"3\n"
+"cell_enter.xhp\n"
+"hd_id5621509\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
-msgstr "Chọn lệnh <emph>Định dạng > Ô</emph>. Bạn sẽ thấy hộp thoại <emph>Định dạng ô</emph>."
+msgid "To Enter Values Into a Range of Cells Manually"
+msgstr "Để tự tay nhập các giá trị vào nhiều ô"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3155854\n"
-"4\n"
+"cell_enter.xhp\n"
+"par_id8200018\n"
"help.text"
-msgid "Click the <emph>Alignment</emph> tab."
-msgstr "Nhấn vào thẻ <emph>Sắp hàng</emph>."
+msgid "There are two features that assist you when you enter a block of data manually."
+msgstr "Có hai chức năng hỗ trợ việc nhập dữ liệu bằng tay cho một phạm vi được chọn."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3147426\n"
-"5\n"
+"cell_enter.xhp\n"
+"hd_id1867427\n"
"help.text"
-msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
-msgstr "Trong vùng <emph>Hướng văn bản</emph>, dùng chuột để chọn hướng xoay của văn bản trên bánh xe xem thử. Nhấn <emph>OK</emph>."
+msgid "Area Detection for New Rows"
+msgstr "Phát hiện vùng chọn đối với các hàng mới"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3148456\n"
-"7\n"
+"cell_enter.xhp\n"
+"par_id7908871\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
-msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Định dạng > Ô\">Định dạng > Ô</link>"
+msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
+msgstr "Trong một hàng bên dưới hàng tiêu đề, bạn có thể chuyển sang ô kế tiếp bằng phím <item type=\"keycode\">Tab</item>. Sau khi nhập giá trị vào ô cuối cùng của hàng, hãy nhấn <item type=\"keycode\">Enter</item>. Calc sẽ đặt vị trí con trỏ ở dưới ô đầu tiên của khối hiện tại."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3154944\n"
-"8\n"
+"cell_enter.xhp\n"
+"par_id6196783\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Định dạng > Ô > Sắp hàng\">Định dạng > Ô > Sắp hàng</link>"
+msgid "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
+msgstr "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"6.4437inch\" height=\"2.1252inch\"><alt id=\"alt_id6473586\">phát hiện vùng</alt></image>"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id8118839\n"
+"help.text"
+msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
+msgstr "Trong hàng 3, nhấn Tab để tiến từ ô B3 tới C3, D3, và E3. Rồi nhấn Enter để tiến tới ô B4."
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id3583788\n"
+"help.text"
+msgid "Area Selection"
+msgstr "Chọn vùng"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id2011780\n"
+"help.text"
+msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
+msgstr "Kéo và thả chuột để chọn vùng mà bạn muốn nhập các giá trị. Nhưng bạn phải bắt đầu kéo chuột từ ô cuối cùng của vùng và thả chuột khi đã chọn ô đầu tiên. Giờ bạn có thể bắt đầu nhập các giá trị vào vùng. Luôn giữ phím <item type=\"keycode\">Tab</item> để chuyển tới ô kế tiếp. Bạn sẽ không rời khỏi vùng đã chọn."
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id7044282\n"
+"help.text"
+msgid "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
+msgstr "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"6.4437inch\" height=\"2.1252inch\"><alt id=\"alt_id2811365\">chọn vùng</alt></image>"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id3232520\n"
+"help.text"
+msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
+msgstr "Chọn vùng từ E7 tới B3. Giờ ô B3 đang chờ bạn nhập liệu. Nhấn <item type=\"keycode\">Tab</item> để chuyển tới ô tiếp theo ở trong vùng đã chọn."
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id8950163\n"
+"help.text"
+msgid "To Enter Values to a Range of Cells Automatically"
+msgstr "Để nhập các giá trị cho các ô một cách tự động"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id633869\n"
+"help.text"
+msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
+msgstr "Xem phần <link href=\"text/scalc/guide/calc_series.xhp\">Tự động nhập các giá trị dựa vào các ô lân cận</link>."
#: cell_protect.xhp
msgctxt ""
@@ -2655,7 +1791,6 @@ msgid "Protection can be provided by means of a password, but it does not have t
msgstr "Có thể bảo vệ bằng mật khẩu, hoặc không có mật khẩu. Đặt mật khẩu để bảo vệ thì phải nhập mật khẩu đúng để hủy bảo vệ."
#: cell_protect.xhp
-#, fuzzy
msgctxt ""
"cell_protect.xhp\n"
"par_id3148576\n"
@@ -2699,7 +1834,6 @@ msgid "Select the protection options that you want. All options will be applied
msgstr ""
#: cell_protect.xhp
-#, fuzzy
msgctxt ""
"cell_protect.xhp\n"
"par_id31529866655\n"
@@ -2783,14 +1917,13 @@ msgid "If you forget your password, you cannot deactivate the protection. If you
msgstr "Nếu bạn quên mất mật khẩu, bạn sẽ không thể tắt chức năng bảo vệ được. Nếu bạn chỉ muốn bảo vệ các ô khỏi những thay đổi do sơ xuất, hãy đặt bảo vệ cho bảng tính, nhưng không dùng mật khẩu."
#: cell_protect.xhp
-#, fuzzy
msgctxt ""
"cell_protect.xhp\n"
"par_id3153810\n"
"13\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr "Nhấn <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
#: cell_protect.xhp
msgctxt ""
@@ -2800,1190 +1933,448 @@ msgctxt ""
msgid "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
msgstr "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"tit\n"
-"help.text"
-msgid "Defining Database Ranges"
-msgstr "Đặt phạm vi cho cơ sở dữ liệu"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"bm_id3154758\n"
-"help.text"
-msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
-msgstr "<bookmark_value>bảng; phạm vi CSDL</bookmark_value><bookmark_value>phạm vi CSDL; xác định</bookmark_value><bookmark_value>phạm vi; xác định phạm vi CSDL</bookmark_value><bookmark_value>xác định;phạm vi CSDL</bookmark_value>"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"hd_id3154758\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
-msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Xác định phạm vi CSDL\">Xác định phạm vi Cơ sở dữ liệu</link></variable>"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3153768\n"
-"81\n"
-"help.text"
-msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
-msgstr "Bạn có thể đặt một phạm vi các ô trong bảng thành một cơ sở dữ liệu. Mỗi một hàng trong phạm vi CSDL này tương ứng với một bản ghi và mỗi ô tương ứng với một trường. Bạn có thể sắp xếp, nhóm lại, tìm kiếm và thực hiện các phép tính toán trên phạm vi đã chọn đúng như trong CSDL."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3145801\n"
-"82\n"
-"help.text"
-msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
-msgstr "Bạn chỉ có thể sửa và truy cập vào phạm vi CSDL trong một bảng có chứa phạm vi. Bạn không thể truy cập vào phạm vi CSDL trong khi xem Nguồn Dữ liệu %PRODUCTNAME ."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10648\n"
-"help.text"
-msgid "To define a database range"
-msgstr "Để đặt Phạm vi cho Cơ sở dữ liệu"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3155064\n"
-"41\n"
-"help.text"
-msgid "Select the range of cells that you want to define as a database range."
-msgstr "Chọn phạm vi các ô mà bạn muốn đặt làm phạm vi CSDL."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10654\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
-msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Xác định phạm vi</item>."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3153715\n"
-"72\n"
-"help.text"
-msgid "In the <emph>Name</emph> box, enter a name for the database range."
-msgstr "Trong hộp <emph>Tên</emph>, nhập một tên cho phạm vi CSDL."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "Click <emph>More</emph>."
-msgstr "Chọn <emph>Thêm</emph>."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3154253\n"
-"42\n"
-"help.text"
-msgid "Specify the options for the database range."
-msgstr "Đặt các tuỳ chọn cho phạm vi CSDL."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10675\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"tit\n"
-"help.text"
-msgid "Naming Cells"
-msgstr "Đặt tên ô"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"bm_id3147434\n"
-"help.text"
-msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
-msgstr "<bookmark_value>ô; xác định tên</bookmark_value><bookmark_value>tên; xác định cho các ô</bookmark_value><bookmark_value>giá trị; xác định tên</bookmark_value><bookmark_value>xác định hằng số</bookmark_value><bookmark_value>biến; xác định tên</bookmark_value><bookmark_value>phạm vi ô; xác định tên</bookmark_value><bookmark_value>xác định; tên cho vùng ô</bookmark_value><bookmark_value>công thức; xác định tên</bookmark_value><bookmark_value>định địa chỉ; bằng các tên đã xác định</bookmark_value><bookmark_value>tên ô; xác định/định địa chỉ</bookmark_value><bookmark_value>tham chiếu; bằng tên đã xác định</bookmark_value><bookmark_value>tên ô được phép</bookmark_value>"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id3147434\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
-msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Đặt tên ô\">Đặt tên ô</link></variable>"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id4391918\n"
-"help.text"
-msgid "Allowed names"
-msgstr "Tên hợp lệ"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id2129581\n"
-"help.text"
-msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
-msgstr "Các tên trong Calc có thể chứa các chữ cái, chữ số, và một số kí tự đặc biệt. Các tên phải bắt đầu với một chữ cái hoặc một kí tự gạch dưới."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id1120029\n"
-"help.text"
-msgid "Allowed special characters:"
-msgstr "Ký tự đặc biệt được phép:"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3362224\n"
-"help.text"
-msgid "underline (_)"
-msgstr "gạch chân (_)"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id4891506\n"
-"help.text"
-msgid "period (.) - allowed within a name, but not as first or last character"
-msgstr "dấu chấm (.) được dùng trong một tên, nhưng không được là kí tự đầu hoặc cuối"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id2816553\n"
-"help.text"
-msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
-msgstr "trống ( ) được dùng trong một tên nhưng không được là kí tự đầu hoặc cuối, và cũng không được dùng cho vùng ô"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id328989\n"
-"help.text"
-msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
-msgstr "Các tên phải không được trùng với tham chiếu ô. Ví dụ, tên A1 là không hợp lệ vì A1 đã là tham chiếu ô cho ô bên trái phía trên cùng."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id32898987\n"
-"help.text"
-msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
-msgstr ""
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id4769737\n"
-"help.text"
-msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
-msgstr "Tên cho vùng ô không được phép có kí tự trống. Kí tự trống chỉ được dùng để đặt tên cho những ô, trang và tài liệu đơn lẻ."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id1226233\n"
-"help.text"
-msgid "Naming cells and formulas"
-msgstr "Đặt tên ô và công thức"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id5489364\n"
-"help.text"
-msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
-msgstr "Cách thuận tiện để tạo tham chiếu dễ đọc cho ô và vùng ô trong công thức là đặt tên cho vùng đó. Ví dụ, bạn có thể đặt tên cho vùng « A1:B2 » <emph>Bắt đầu</emph>. Sau đó bạn có thể viết một công thức chẩng hạn như « =SUM(Start) ». Thậm chí sau khi đã chèn hoặc xóa các hàng hay cột, $[officename] vẫn gán cho các vùng này một tên xác định. Tên của vùng không được chứa bất kì một dấu cách nào."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id953398\n"
-"help.text"
-msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
-msgstr "Ví dụ, đọc một công thức về thuế hàng hóa sẽ dễ hơn nhiều nếu bạn viết nó dạng « = Số lượng * Thuế_tỉ lệ » thay vì viết « = A5 * B12 ». Trong trường hợp này, bạn sẽ đặt tên ô A5 là « Số lượng », và ô B12 là « Thuế_tỉ lệ »."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id4889675\n"
-"help.text"
-msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
-msgstr "Dùng hộp thoại <emph>Xác định tên</emph> để xác định tên cho công thức hay các phần của công thức mà bạn thường dùng. Để chỉ định các tên cho vùng, hãy"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3153954\n"
-"3\n"
-"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Chọn một ô hay vùng ô, sau đó chọn <emph>Chèn > Tên > Xác định</emph>. Hộp thoại <emph>Xác định tên</emph> sẽ mở ra."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3156283\n"
-"4\n"
-"help.text"
-msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
-msgstr "Đánh tên của vùng được chọn trong trường <emph>Tên</emph>. Nhấn nút <emph>Thêm</emph>. Tên mới đã xác định sẽ hiển thị trong danh sách bên dưới. Nhấn nút <emph>OK</emph> để đóng hộp thoại."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id5774101\n"
-"help.text"
-msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
-msgstr "Bạn cũng có thể đặt tên cho các vùng ô khác trong hộp thoại này bằng cách nhập tên trong trường và sau đó chọn các ô tương ứng."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3154942\n"
-"5\n"
-"help.text"
-msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
-msgstr "Nếu bạn nhập tên trong một công thức, sau khi một số kí tự đầu tiên được nhập vào, bạn sẽ thấy tên đầy đủ dưới dạng gợi ý."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3154510\n"
-"6\n"
-"help.text"
-msgid "Press the Enter key in order to accept the name from the tip."
-msgstr "Nhấn <item type=\"keycode\">Enter</item> để dùng tên đã gợi ý."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3150749\n"
-"7\n"
-"help.text"
-msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
-msgstr "Nếu một số tên bắt đầu với các ký tự giống nhau, bạn có thể dùng phím <item type=\"keycode\">Tab</item> để cuộn qua tất cả các tên."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3153711\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Chèn > Tên > Xác định\">Chèn > Tên > Xác định</link>"
-
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
+"cell_unprotect.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Values"
-msgstr "Nhập giá trị"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"bm_id3150868\n"
-"help.text"
-msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
-msgstr "<bookmark_value>giá trị; nhập vào nhiều ô</bookmark_value><bookmark_value>nhập;giá trị</bookmark_value><bookmark_value>phạm vi ô;chọn để nhập dữ liệu</bookmark_value><bookmark_value>vùng, xem thêm phạm vi ô</bookmark_value>"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"hd_id3405255\n"
-"help.text"
-msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
-msgstr "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Nhập giá trị</link></variable>"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id7147129\n"
-"help.text"
-msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
-msgstr "Calc có thể đơn giản hoá việc nhập dữ liệu và giá trị vào nhiều ô. Bạn có thể thay đổi một số thiết lập theo ý mình."
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"hd_id5621509\n"
-"help.text"
-msgid "To Enter Values Into a Range of Cells Manually"
-msgstr "Để tự tay nhập các giá trị vào nhiều ô"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id8200018\n"
-"help.text"
-msgid "There are two features that assist you when you enter a block of data manually."
-msgstr "Có hai chức năng hỗ trợ việc nhập dữ liệu bằng tay cho một phạm vi được chọn."
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"hd_id1867427\n"
-"help.text"
-msgid "Area Detection for New Rows"
-msgstr "Phát hiện vùng chọn đối với các hàng mới"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id7908871\n"
-"help.text"
-msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
-msgstr "Trong một hàng bên dưới hàng tiêu đề, bạn có thể chuyển sang ô kế tiếp bằng phím <item type=\"keycode\">Tab</item>. Sau khi nhập giá trị vào ô cuối cùng của hàng, hãy nhấn <item type=\"keycode\">Enter</item>. Calc sẽ đặt vị trí con trỏ ở dưới ô đầu tiên của khối hiện tại."
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id6196783\n"
-"help.text"
-msgid "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
-msgstr "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"6.4437inch\" height=\"2.1252inch\"><alt id=\"alt_id6473586\">phát hiện vùng</alt></image>"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id8118839\n"
-"help.text"
-msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
-msgstr "Trong hàng 3, nhấn Tab để tiến từ ô B3 tới C3, D3, và E3. Rồi nhấn Enter để tiến tới ô B4."
+msgid "Unprotecting Cells"
+msgstr "Bỏ bảo vệ cho các ô"
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"hd_id3583788\n"
+"cell_unprotect.xhp\n"
+"bm_id3153252\n"
"help.text"
-msgid "Area Selection"
-msgstr "Chọn vùng"
+msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
+msgstr "<bookmark_value>bảo vệ ô; bỏ bảo vệ</bookmark_value><bookmark_value>bảo vệ; bỏ bảo vệ các ô</bookmark_value><bookmark_value>bỏ bảo vệ các ô</bookmark_value>"
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id2011780\n"
+"cell_unprotect.xhp\n"
+"hd_id3153252\n"
+"14\n"
"help.text"
-msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
-msgstr "Kéo và thả chuột để chọn vùng mà bạn muốn nhập các giá trị. Nhưng bạn phải bắt đầu kéo chuột từ ô cuối cùng của vùng và thả chuột khi đã chọn ô đầu tiên. Giờ bạn có thể bắt đầu nhập các giá trị vào vùng. Luôn giữ phím <item type=\"keycode\">Tab</item> để chuyển tới ô kế tiếp. Bạn sẽ không rời khỏi vùng đã chọn."
+msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
+msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Bỏ bảo vệ cho các ô\">Bỏ bảo vệ cho các ô</link></variable>"
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id7044282\n"
+"cell_unprotect.xhp\n"
+"par_id3151112\n"
+"15\n"
"help.text"
-msgid "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
-msgstr "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"6.4437inch\" height=\"2.1252inch\"><alt id=\"alt_id2811365\">chọn vùng</alt></image>"
+msgid "Click the sheet for which you want to cancel the protection."
+msgstr "Bấm vào bảng tính mà bạn muốn bỏ bảo vệ."
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id3232520\n"
+"cell_unprotect.xhp\n"
+"par_id3149656\n"
+"16\n"
"help.text"
-msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
-msgstr "Chọn vùng từ E7 tới B3. Giờ ô B3 đang chờ bạn nhập liệu. Nhấn <item type=\"keycode\">Tab</item> để chuyển tới ô tiếp theo ở trong vùng đã chọn."
+msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
+msgstr "Chọn <emph>Công cụ > Bảo vệ Tài liệu</emph>, sau đó chọn <emph>Bảng tính</emph> hoặc <emph>Tài liệu</emph> để gỡ bỏ dấu kiểm chỉ thị trạng thái được bảo vệ."
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"hd_id8950163\n"
+"cell_unprotect.xhp\n"
+"par_id3145171\n"
+"17\n"
"help.text"
-msgid "To Enter Values to a Range of Cells Automatically"
-msgstr "Để nhập các giá trị cho các ô một cách tự động"
+msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
+msgstr "Nếu bạn đã gán một mật khẩu lúc chọn bảo vệ, hãy nhập lại mật khẩu đó vào trong hộp thoại và nhấn <emph>OK</emph>."
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id633869\n"
+"cell_unprotect.xhp\n"
+"par_id3153771\n"
+"18\n"
"help.text"
-msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
-msgstr "Xem phần <link href=\"text/scalc/guide/calc_series.xhp\">Tự động nhập các giá trị dựa vào các ô lân cận</link>."
+msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
+msgstr "Giờ bạn có thể sửa lại các ô, xem các công thức, và tất cả các ô sẽ được in ra nếu bạn chọn lệnh in, cho tới khi bạn bật lại chế độ bảo vệ cho tài liệu hay bảng tính."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
+"cellcopy.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Row Height or Column Width"
-msgstr "Thay đổi chiều cao hàng hay chiều rộng cột"
+msgid "Only Copy Visible Cells"
+msgstr "Chỉ chép những ô được hiển thị"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"bm_id3145748\n"
+"cellcopy.xhp\n"
+"bm_id3150440\n"
"help.text"
-msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
-msgstr "<bookmark_value>chiều cao của ô</bookmark_value><bookmark_value>chiều cao ô</bookmark_value><bookmark_value>chiều rộng ô</bookmark_value><bookmark_value>ô; chiều cao và chiều rộng</bookmark_value><bookmark_value>chiều rộng của ô</bookmark_value><bookmark_value>chiều rộng cột</bookmark_value><bookmark_value>hàng; chiều cao</bookmark_value><bookmark_value>cột; chiều rộng</bookmark_value><bookmark_value>thay đổi;chiều cao/rộng của hàng/cột</bookmark_value>"
+msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
+msgstr "<bookmark_value>ô; chép/xoá/định dạng/di chuyển</bookmark_value><bookmark_value>hàng;ẩn và hiện</bookmark_value><bookmark_value>sao chép; chỉ các ô hiện</bookmark_value><bookmark_value>định dạng;chỉ các ô hiện</bookmark_value><bookmark_value>di chuyển;chỉ các ô hiện</bookmark_value><bookmark_value>xoá;chỉ các ô hiện</bookmark_value><bookmark_value>các ô không xuất hiện</bookmark_value><bookmark_value>lọc;chỉ chép các ô hiện</bookmark_value><bookmark_value>các ô ẩn</bookmark_value>"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3145748\n"
+"cellcopy.xhp\n"
+"hd_id3150440\n"
"1\n"
"help.text"
-msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
-msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Thay đổi chiều cao hàng hay chiều rộng cột\">Thay đổi chiều cao hàng hay chiều rộng cột</link></variable>"
+msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
+msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Chỉ sao chép các ô xuất hiện\">Chỉ sao chép các ô được hiển thị</link></variable>"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154017\n"
+"cellcopy.xhp\n"
+"par_id3148577\n"
"2\n"
"help.text"
-msgid "You can change the height of the rows with the mouse or through the dialog."
-msgstr "Bạn có thể thay đổi chiều cao của hàng bằng chuột hoặc thông qua hộp thoại."
+msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
+msgstr "Giả sử rằng bạn đã ẩn đi vài hàng trong một phạm vi các ô. Giờ bạn muốn sao chép, xoá hay định dạng các ô còn lại, vẫn đang được hiển thị."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154702\n"
+"cellcopy.xhp\n"
+"par_id3154729\n"
"3\n"
"help.text"
-msgid "What is described here for rows and row height applies accordingly for columns and column width."
-msgstr "Những nhân tố mô tả tại đây được ứng dụng cho hàng và chiềy cao hàng, và do đó cũng được ứng dụng cho cột và chiều rộng cột."
+msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
+msgstr "Cách $[officename] thực hiện công việc này tuỳ thuộc vào cách bạn ẩn các ô bằng một bộ lọc hay bằng tay."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3153963\n"
+"cellcopy.xhp\n"
+"par_id3155603\n"
"4\n"
"help.text"
-msgid "Using the mouse to change the row height or column width"
-msgstr "Dùng chuột để thay đổi chiều cao hàng vàhay chiều rộng cột"
+msgid "Method and Action"
+msgstr "Phương thức và Hành động"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154020\n"
+"cellcopy.xhp\n"
+"par_id3150751\n"
"5\n"
"help.text"
-msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
-msgstr "Nhắp chuột trong vùng đầu trang, vào đường ngăn cách bên dưới hàng hiện tại, duy trì nhấn chuột và kéo lên hoặc xuống để thay đổi chiều cao hàng."
+msgid "Result"
+msgstr "Kết quả"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3159237\n"
+"cellcopy.xhp\n"
+"par_id3149018\n"
"6\n"
"help.text"
-msgid "Select the optimal row height by double-clicking the separator below the row."
-msgstr "Chọn chiều cao hàng lý tưởng bằng cách kích đúp vào đường ngăn cách bên dưới hàng."
+msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
+msgstr "Các ô được lọc bởi chức năng Tự động Lọc, các bộ lọc chuẩn hoặc nâng cao."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3154659\n"
+"cellcopy.xhp\n"
+"par_id3150044\n"
"7\n"
"help.text"
-msgid "Using the dialog to change the row height or column width"
-msgstr "Dùng hộp thoại để thay đổi chiều cao hàng hay chiều rộng cột"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr "Sao chép, xoá, di chuyển hoặc định dạng một vùng có các ô được hiển thị."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3150367\n"
+"cellcopy.xhp\n"
+"par_id3146918\n"
"8\n"
"help.text"
-msgid "Click the row so that you achieve the focus."
-msgstr "Nhắp chuột vào hàng để làm nổi nó."
-
-#: row_height.xhp
-msgctxt ""
-"row_height.xhp\n"
-"par_id3166432\n"
-"9\n"
-"help.text"
-msgid "Start the context menu on the header at the left-hand side."
-msgstr "Mở trình đơn ngữ cảnh trên đầu trang ở phía tay trái."
-
-#: row_height.xhp
-msgctxt ""
-"row_height.xhp\n"
-"par_id3150519\n"
-"10\n"
-"help.text"
-msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
-msgstr "Bạn sẽ thấy lệnh <emph>Độ cao hàng</emph> và <emph>Tối ưu độ cao hàng</emph>. Một hộp thoại sẽ hiện ra khi bạn chọn 2 lệnh trên."
-
-#: row_height.xhp
-msgctxt ""
-"row_height.xhp\n"
-"par_id3154487\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
-msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Chiều cao hàng\">Chiều cao hàng</link>"
+msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
+msgstr "Chỉ có những ô được hiển thị trong vùng chọn là được sao chép, xoá, di chuyển hoặc định dạng."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3149408\n"
+"cellcopy.xhp\n"
+"par_id3166427\n"
"12\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
-msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\" Chiều cao tối ưu của hàng\">Chiều cao tối ưu của hàng</link>"
+msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
+msgstr "Các ô bị giấu đi bằng lệnh <emph>Ẩn</emph> trong trình đơn ngữ cảnh trên tiêu đề hàng hoặc cột, hoặc thông qua một <link href=\"text/scalc/01/12080000.xhp\" name=\"phác thảo\">phác thảo</link>."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3153305\n"
+"cellcopy.xhp\n"
+"par_id3152990\n"
"13\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
-msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Chiều rộng cột\">Chiều rộng cột</link>"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr "Sao chép, xoá, di chuyển hoặc định dạng một vùng có các ô được hiển thị."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3153815\n"
+"cellcopy.xhp\n"
+"par_id3154371\n"
"14\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
-msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Chiều rộng tối ưu của cột\">Chiều rộng tối ưu của cột</link>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"tit\n"
-"help.text"
-msgid "Freezing Rows or Columns as Headers"
-msgstr "Hàng hay cột đông cứng dạng đầu trang"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"bm_id3154684\n"
-"help.text"
-msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
-msgstr "<bookmark_value>bảng; làm đông</bookmark_value><bookmark_value>hàng tiêu đề; làm đông trong khi chia bảng</bookmark_value><bookmark_value>hàng; làm đông </bookmark_value><bookmark_value>cột; làm đông </bookmark_value><bookmark_value>làm động hàng hay cột</bookmark_value><bookmark_value>đầu trang; làm động trong khi chia bảng</bookmark_value><bookmark_value>tránh cuộn trong bảng</bookmark_value><bookmark_value>cửa sổ; chia</bookmark_value><bookmark_value>bảng; chia cửa sổ</bookmark_value>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"hd_id3154684\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
-msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Hàng hay cột đông cứng dạng đầu trang\">Hàng hay cột đông cứng dạng đầu trang</link></variable>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3148576\n"
-"2\n"
-"help.text"
-msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
-msgstr "Nếu bạn có các hàng hay cột dữ liệu dài mở rộng vượt quá vùng hiển thị của bảng tính, bạn có thể làm đông chúng lại, điều này giúp bạn có thể nhìn được các hàng và cột trong khi cuộn qua phần còn lại của dữ liệu."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3156441\n"
-"3\n"
-"help.text"
-msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
-msgstr "Chọn hàng bên dưới, hoặc cột bên phải của hàng hoặc cột đó mà bạn muốn để chúng trong vùng bị làm đông. Tất cả các hàng bên trên hay các cột ở bên trái vùng chọn đều bị làm đông."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3153158\n"
-"13\n"
-"help.text"
-msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
-msgstr "Để đông cứng cả hàng và cột, chọn <emph>ô</emph> ở bên dưới hàng đó và ở bên phải của cột mà bạn muốn làm đông."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3156286\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Window - Freeze</emph>."
-msgstr "Chọn <emph>Cửa sổ > Làm đông</emph>."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3151073\n"
-"5\n"
-"help.text"
-msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
-msgstr "Để khử hoạt tính, tiếp tục chọn <emph>Cửa sổ > Làm đông</emph> (mục bật/tắt)."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3155335\n"
-"7\n"
-"help.text"
-msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
-msgstr "Nếu vùng xác định có thể cuộn được, áp dụng lệnh <emph>Cửa sổ > Xẻ</emph>."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3147345\n"
-"8\n"
-"help.text"
-msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
-msgstr "Nếu bạn muốn in một hàng nào đó trên tất cả các trang của tài liệu, hãy chọn <emph>Định dạng > Phạm vi in > Sửa</emph>."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3147004\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Cửa sổ > Đông\">Cửa sổ > Đông</link>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3150088\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
-msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Cửa sổ > Xẻ\">Cửa sổ > Xẻ</link>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3150304\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Định dạng > Vùng in > Sửa\">Định dạng > Vùng in > Sửa</link>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"tit\n"
-"help.text"
-msgid "Recognizing Names as Addressing"
-msgstr "Nhận tên dưới dạng địa chỉ"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"bm_id3148797\n"
-"help.text"
-msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
-msgstr "<bookmark_value>tự động đánh địa chỉ trong bảng</bookmark_value><bookmark_value>đánh địa chỉ với ngôn ngữ tự nhiên</bookmark_value><bookmark_value>công thức; dùng nhãn hàng/cột</bookmark_value><bookmark_value>văn bản trong ô; làm địa chỉ</bookmark_value><bookmark_value>đánh địa chỉ; tự động</bookmark_value><bookmark_value>bật/tắt nhận dạng tên</bookmark_value><bookmark_value>phần đầu hàng;sử dụng trong công thức</bookmark_value><bookmark_value>phần đầu cột;sử dụng trong công thức</bookmark_value><bookmark_value>cột; tự động tìm nhãn</bookmark_value><bookmark_value>hàng; tự động tìm nhãn</bookmark_value><bookmark_value>nhận dạng; nhãn cột và hàng</bookmark_value>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"hd_id3148797\n"
-"20\n"
-"help.text"
-msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
-msgstr "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Nhận Tên dưới dạng địa chỉ\">Nhận Tên dưới dạng địa chỉ</link></variable>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3152597\n"
-"21\n"
-"help.text"
-msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
-msgstr "Bạn có thể dùng các ô văn bản để chỉ hàng hoặc cột chứa những ô đó."
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3156283\n"
-"help.text"
-msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
-msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"4.1291in\" height=\"1.6709in\" localize=\"true\"><alt id=\"alt_id3154942\">Ví dụ về bảng tính</alt></image>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3154512\n"
-"22\n"
-"help.text"
-msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
-msgstr "Trong bảng tính ví dụ này, bạn có thể dùng dãy <item type=\"literal\">'Column One'</item> trong một công thức để chỉ các ô từ <item type=\"literal\">B3</item> đến <item type=\"literal\">B5</item>, hoặc <item type=\"literal\">'Column Two'</item> để chỉ các ô từ <item type=\"literal\">C2</item> đến <item type=\"literal\">C5</item>. Bạn cũng có thể dùng <item type=\"literal\">'Row One'</item> để chỉ các ô từ <item type=\"literal\">B3</item> đến <item type=\"literal\">D3</item>, hoặc <item type=\"literal\">'Row Two'</item> đối với các ô từ <item type=\"literal\">B4</item> đến <item type=\"literal\">D4</item>. Kết quả mà công thức dựa theo tên ô trả về, ví dụ, công thức <item type=\"literal\">SUM('Column One')</item>, sẽ cho 600."
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3155443\n"
-"24\n"
-"help.text"
-msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
-msgstr ""
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3149210\n"
-"37\n"
-"help.text"
-msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
-msgstr "Nếu bạn muốn Calc tự động nhận tên, tên đó phải được bắt đầu bằng chữ cái và chỉ gồm chữ và số. Nếu bạn tự mình nhập tên vào trong công thức, hãy đặt tên đó trong dấu nháy đơn ('). Nếu trong tên cũng có dấu nháy đơn, hãy dùng dấu chéo ngược, kiểu như <item type=\"literal\">'Harry\\'s Bar'.</item>"
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"tit\n"
-"help.text"
-msgid "Applying Filters"
-msgstr "Ứng dụng bộ lọc"
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"bm_id3153896\n"
-"help.text"
-msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
-msgstr "<bookmark_value>bộ lọc; áp dụng/gỡ bỏ</bookmark_value><bookmark_value>hàng;gỡ bỏ/hiển thị lại theo bộ lọc</bookmark_value><bookmark_value>gỡ bỏ;bộ lọc</bookmark_value>"
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"hd_id3153896\n"
-"70\n"
-"help.text"
-msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
-msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Ứng dụng bộ lọc\">Ứng dụng bộ lọc</link></variable>"
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3150869\n"
-"2\n"
-"help.text"
-msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
-msgstr "Bộ lọc và bộ lọc cấp cao giúp bạn làm việc trên một số hàng (bản ghi) đã được lọc trong chuỗi dữ liệu. Trong các bảng tính $[officename], có rất nhiều khả năng để sử dụng bộ lọc."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3155131\n"
-"3\n"
-"help.text"
-msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
-msgstr "Một ứng dụng của chức năng <emph>Lọc tự động</emph> là nhanh chóng thu hẹp việc hiển thị cho các bản ghi có các đầu mục giống nhau trong một trường dữ liệu."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3146119\n"
-"4\n"
-"help.text"
-msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
-msgstr "Trong hội thoại <emph>Lọc</emph>, bạn cũng có thể xác định các vùng chứa các giá trị trong trường dữ liệu cụ thể. Bạn có thế dùng bộ lọc tiêu chuẩn để kết nối đến ba điều kiện với một trong hai toán tử logic AND hoặc OR."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3150010\n"
-"5\n"
-"help.text"
-msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
-msgstr "<emph>Lọc cao cấp</emph> vượt quá giới hạn 3 điều kiện và cho phép lên tới tổng 8 điều kiện lọc. Với bộ lọc cao cấp bạn có thể nhập trực tiếp các điều kiện vào trong bảng tính."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id9384746\n"
-"help.text"
-msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
-msgstr "Để gỡ bỏ một bộ lọc để thấy các ô lần nữa, hãy nhấn vào bên trong vùng ở đó đã áp dụng bộ lọc, sau đó chọn mục trình đơn <item type=\"menuitem\">Dữ liệu > Lọc > Bỏ lọc</item>."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_idN10663\n"
-"help.text"
-msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
-msgstr "Khi bạn lựa chọn nhiều hàng từ một vùng ở đó đã áp dụng một bộ lọc, vùng chọn này có thể bao gồm cả hai các hàng hiện rõ và các hàng bị bộ lọc ẩn. Sau đó, nếu bạn áp dụng định dạng, hoặc xoá những hàng được chọn, thì hành động này chỉ áp dụng cho những hàng hiện rõ. Không ảnh hưởng đến hàng ẩn."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id218817\n"
-"help.text"
-msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
-msgstr "Đây là mặt đối lập với hàng bạn đã tự ẩn dùng câu lệnh <emph>Định dạng > Hàng > Ẩn hàng</emph>. Hàng bị ẩn bằng tay thì cũng bị xoá khi bạn xoá một vùng chọn chứa nó."
+msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
+msgstr "Tất cả các ô trong vùng chọn, bao gồm cả những ô đã được giấu đi, sẽ được sao chép, xoá, di chuyển hoặc định dạng."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
+"cellreference_dragdrop.xhp\n"
"tit\n"
"help.text"
-msgid "Automatically Calculating Series"
-msgstr "Tự động Tính Nối tiếp"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"bm_id3150769\n"
-"help.text"
-msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
-msgstr "<bookmark_value>dãy; tính</bookmark_value><bookmark_value>tính; dãy</bookmark_value><bookmark_value>cấp số cộng</bookmark_value><bookmark_value>cấp số nhân</bookmark_value><bookmark_value>chuỗi các ngày</bookmark_value><bookmark_value>tính toán mũ 2</bookmark_value><bookmark_value>ô; tự động điền</bookmark_value><bookmark_value>tự động điền ô</bookmark_value><bookmark_value>chức năng Tự động Điền</bookmark_value><bookmark_value>điền;ô, tự động</bookmark_value>"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"hd_id3150769\n"
-"6\n"
-"help.text"
-msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
-msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Tự động tính chuỗi\">Tự động điền dữ liệu dựa vào các ô liền kề</link></variable>"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN106A8\n"
-"help.text"
-msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
-msgstr "Bạn có thể tự động điền dữ liệu vào các ô với lệnh Tự động Điền hoặc lệnh Chuỗi."
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN106D3\n"
-"help.text"
-msgid "Using AutoFill"
-msgstr "Sử dụng Tự động Điền"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN106D7\n"
-"help.text"
-msgid "AutoFill automatically generates a data series based on a defined pattern."
-msgstr "Chức năng Tự động Điền tự động tạo ra một chuỗi dữ liệu dựa trên một mẫu định sẵn."
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_id3154319\n"
-"7\n"
-"help.text"
-msgid "On a sheet, click in a cell, and type a number."
-msgstr "Trong một bảng tính, chọn một ô và gõ vào đó một con số."
+msgid "Referencing Cells by Drag-and-Drop"
+msgstr "Tham chiếu các ô bằng cách Kéo Thả"
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106CB\n"
+"cellreference_dragdrop.xhp\n"
+"bm_id3154686\n"
"help.text"
-msgid "Click in another cell and then click back in the cell where you typed the number."
-msgstr "Chọn một ô khác và nhấn lại vào ô mà bạn vừa nhập số vào."
+msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
+msgstr "<bookmark_value>kéo và thả; tham chiếu các ô</bookmark_value><bookmark_value>ô; tham chiếu bằng thao tác kéo thả </bookmark_value><bookmark_value>tham chiếu;chèn bằng cách kéo thả</bookmark_value><bookmark_value>chèn;tham chiếu, bằng kéo thả</bookmark_value>"
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3145272\n"
+"cellreference_dragdrop.xhp\n"
+"hd_id3154686\n"
"16\n"
"help.text"
-msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
-msgstr "Kéo chốt điền nằm ở góc dưới bên phải của ô qua các ô mà bạn muốn điền, sau đó thả chuột ra."
+msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
+msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Tham chiếu tới các ô bằng cách Kéo Thả\">Tham chiếu ô bằng cách Kéo Thả</link></variable>"
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3145801\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3156444\n"
"17\n"
"help.text"
-msgid "The cells are filled with ascending numbers."
-msgstr "Các ô khác sẽ được điền vào các giá trị liên tiếp từ ô đầu."
+msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
+msgstr "Nhờ bộ điều hướng, bạn có thể tham chiếu các ô từ bảng này sang bảng khác trong cùng tài liệu hoặc trong tài liệu khác. Các ô sẽ được chèn vào dưới dạng bản sao, liên kết hoặc siêu liên kết. Phạm vi các ô chèn vào phải được xác định với một cái tên trong tập tin gốc để có thể chèn vào trong tập tin đích."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106EE\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3152576\n"
+"25\n"
"help.text"
-msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
-msgstr "Để tạo nhanh một danh sách các ngày liên tiếp nhau, nhập \"Thứ Hai\" trong một ô, sau đó kéo chốt điền."
+msgid "Open the document that contains the source cells."
+msgstr "Mở tài liệu chứa các ô nguồn."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id9720145\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154011\n"
+"26\n"
"help.text"
-msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
-msgstr ""
+msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgstr "Để đặt phạm vi nguồn, chọn các ô và chọn lệnh <emph>Chèn > Tên > Xác định</emph>. Lưu lại tài liệu nguồn và không đóng nó."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3154490\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3151073\n"
"18\n"
"help.text"
-msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
-msgstr ""
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN10737\n"
-"help.text"
-msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
-msgstr "Bạn có thể bấm đúp chuột vào chốt điền để tự động điền tất cả các cột trống của khối dữ liệu hiện thời. Ví dụ, đầu tiên bạn nhập Th1 vào trong ô A1 và kéo chốt điền xuống tới A12 để điền tự động 12 tháng vào trong cột đầu tiên. Sau đó nhập một số giá trị vào ô B1 và C1. Chọn 2 ô này, sau đó bấm đúp vào chốt điền. Calc sẽ tự điền đầy khối dữ liệu B1:C12."
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN10713\n"
-"help.text"
-msgid "Using a Defined Series"
-msgstr "Dùng một chuỗi giá trị đã định nghĩa"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_id3150749\n"
-"9\n"
-"help.text"
-msgid "Select the cell range in the sheet that you want to fill."
-msgstr "Chọn phạm vi các ô trong bảng mà bạn muốn điền dữ liệu."
+msgid "Open the sheet in which you want to insert something."
+msgstr "Mở bảng tính mà bạn muốn chèn nội dung vào."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3154754\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154732\n"
"19\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
-msgstr "Chọn <item type=\"menuitem\">Sửa > Điền > Chuỗi</item>."
+msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
+msgstr "Mở <link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link>. Trong hộp nằm dưới của Bộ điều hướng bạn chọn tập tin nguồn."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10716\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3150752\n"
+"22\n"
"help.text"
-msgid "Select the parameters for the series."
-msgstr "Chọn các tham số cho dãy."
+msgid "In the Navigator, the source file object appears under \"Range names\"."
+msgstr "Trong Bộ điều hướng, đối tượng tập tin nguồn xuất hiện trong phần « Tên phạm vi »."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10731\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154754\n"
+"27\n"
"help.text"
-msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
-msgstr "Nếu bạn chọn một cấp <emph>số cộng</emph>, giá trị Tăng/Giảm dần mà bạn nhập vào sẽ được <emph>cộng</emph> vào giá trị hiện thời trong chuỗi để tạo thành giá trị tiếp theo."
+msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
+msgstr "Bằng biểu tượng <emph>Chế độ kéo</emph> trong Bộ điều hướng, bạn có thể chọn tham chiếu là siêu liên kết, liên kết hoặc bản sao."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN1073C\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154256\n"
+"23\n"
"help.text"
-msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
-msgstr "Nếu bạn chọn một cấp <emph>nhân</emph>, giá trị Tăng/giảm dần mà bạn nhập sẽ được <emph>nhân</emph> lên với giá trị hiện tại để tạo thành giá trị tiếp theo."
+msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
+msgstr "Bấm vào tên trong phần « Tên phạm vi » ở trong Bộ điều hướng, và kéo nó vào bảng hiện thời, tới ô bạn muốn chèn tham chiếu vào."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10747\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3149565\n"
+"24\n"
"help.text"
-msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
-msgstr "Nếu bạn chọn một chuỗi <emph>Ngày tháng</emph>, giá trị Tăng/Giảm dần mà bạn nhập sẽ được cộng vào theo đơn vị thời gian được chọn."
+msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
+msgstr "Bạn có thể dùng phương thức này để chèn vào một phạm vi từ bảng khác cũng trong tài liệu vào bảng hiện thời. Chọn tài liệu đang làm việc làm nguồn tham chiếu giống như bước 4 ở trên."
-#: calc_series.xhp
+#: cellreferences.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3159173\n"
-"20\n"
+"cellreferences.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
-msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Danh sách Sắp xếp\">Danh sách Sắp xếp</link>"
+msgid "Referencing a Cell in Another Document"
+msgstr "Tham chiếu một ô trong tài liệu khác"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"tit\n"
+"cellreferences.xhp\n"
+"bm_id3147436\n"
"help.text"
-msgid "Deactivating Automatic Changes"
-msgstr "Tắt chế độ Tự động Thay đổi"
+msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
+msgstr "<bookmark_value>tham chiếu bảng</bookmark_value> <bookmark_value>tham chiếu; tới các ô trong bảng/tài liệu khác</bookmark_value> <bookmark_value>ô; tác động trong tài liệu khác</bookmark_value> <bookmark_value>tài liệu;tham chiếu</bookmark_value>"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"bm_id3149456\n"
+"cellreferences.xhp\n"
+"hd_id3147436\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
-msgstr "<bookmark_value>tắt chế độ; tự động thay đổi</bookmark_value><bookmark_value>bảng; tắt chế độ tự động thay đổi</bookmark_value><bookmark_value>Bật/tắt chức năng Tự động nhập</bookmark_value><bookmark_value>văn bản trong ô;chức năng Tự động nhập</bookmark_value><bookmark_value>các ô;chức năng Tự động nhập văn bản</bookmark_value><bookmark_value>hỗ trợ nhập liệu trong bảng tính</bookmark_value><bookmark_value>thay đổi; nhập các ô</bookmark_value><bookmark_value>Chức năng Tự động sửa lỗi;nội dung ô</bookmark_value><bookmark_value>nhập ô;chức năng Tự động nhập</bookmark_value><bookmark_value>chữ thường;chức năng Tự động nhập (trong ô)</bookmark_value><bookmark_value>chữ hoa;chức năng Tự động Nhập (trong ô)</bookmark_value><bookmark_value>định dạng ngày;tránh chuyển đổi sang</bookmark_value><bookmark_value>bật/tắt hoàn tất số</bookmark_value><bookmark_value>bật/tắt hoàn tất văn bản</bookmark_value><bookmark_value>bật/tắt hoàn tất từ</bookmark_value>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
+msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Tham chiếu tới các bảng khác\">Tham chiếu tới các bảng khác</link></variable>"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"cellreferences.xhp\n"
+"par_id9663075\n"
"help.text"
-msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
-msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Tắt chế độ tự thay đổi\">Tắt chế độ tự thay đổi</link></variable>"
+msgid "In a sheet cell you can show a reference to a cell in another sheet."
+msgstr "Trong một ô, bạn có thể đặt một tham chiếu tới một ô trong bảng khác."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3156442\n"
-"2\n"
+"cellreferences.xhp\n"
+"par_id1879329\n"
"help.text"
-msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
-msgstr "Mặc định, $[officename] tự động sửa những lỗi hay gặp và áp dụng định dạng khi bạn gõ. Bạn có thể lập tức huỷ bỏ những thay đổi tự động bằng cách nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
+msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
+msgstr "Làm tương tự, ta có thể tạo tham chiếu tới một ô trong một tài liệu khác, miễn là tài liệu đó đã được lưu thành 1 tập tin."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3145273\n"
-"3\n"
+"cellreferences.xhp\n"
+"hd_id7122409\n"
"help.text"
-msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
-msgstr "Dưới đây là cách bạn có thể tắt và bật lại chế độ tự động sửa lỗi trong $[officename] Calc:"
+msgid "To Reference a Cell in the Same Document"
+msgstr "Tham chiếu một ô trong cùng tài liệu"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3145748\n"
-"4\n"
+"cellreferences.xhp\n"
+"par_id2078005\n"
"help.text"
-msgid "Automatic Text or Number Completion"
-msgstr "Tự điền nốt số hoặc văn bản"
+msgid "Open a new, empty spreadsheet."
+msgstr "Mở một bảng tính mới, chưa có gì."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3154730\n"
-"5\n"
+"cellreferences.xhp\n"
+"par_id4943693\n"
"help.text"
-msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
-msgstr "Khi bạn nhập nội dung vào ô, $[officename] Calc tự động gợi ý các dữ liệu đã nhập trong cùng cột. Tính năng này gọi là <emph>Tự động Nhập</emph>."
+msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
+msgstr "Để lấy ví dụ, hãy nhập công thức sau trong ô A1 của Bảng1:"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3153878\n"
-"6\n"
+"cellreferences.xhp\n"
+"par_id9064302\n"
"help.text"
-msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
-msgstr "Để bật hoặc tắt chế độ Tự động Nhập, bạn đánh dấu hoặc bỏ dấu hộp kiểm <link href=\"text/scalc/01/06130000.xhp\" name=\"Công cụ > Nội dung ô > Tự động Nhập\"><emph>Công cụ > Nội dung ô > Tự động Nhập</emph></link>."
+msgid "<item type=\"literal\">=Sheet2.A1</item>"
+msgstr "<item type=\"literal\">=Sheet2.A1</item>"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3146972\n"
-"21\n"
+"cellreferences.xhp\n"
+"par_id7609790\n"
"help.text"
-msgid "Automatic Conversion to Date Format"
-msgstr "Tự động chuyển sang định dạng ngày"
+msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
+msgstr "Chọn thẻ <emph>Bảng2</emph> ở dưới bảng tính. Đặt con trỏ trong ô A1 và nhập vào một văn bản hoặc một con số."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3153707\n"
-"22\n"
+"cellreferences.xhp\n"
+"par_id809961\n"
"help.text"
-msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
-msgstr "$[officename] Calc tự động chuyển đổi một số nội dung phù hợp sang ngày tháng. Ví dụ, nếu bạn nhập <emph>1.1</emph>, Calc sẽ chuyển nó thành ngày 1 tháng 1 của năm hiện thời, tuỳ thuộc vào thiết lập miền địa phương của hệ thống, và rồi hiển thị nó ở định dạng ngày tháng trong ô."
+msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
+msgstr "Nếu bạn chuyển lại về Bảng1, bạn sẽ thấy nội dung của ô A1 tại đó. Nếu nội dung của Bảng2.A1 bị thay đổi, nội dung của Bảng1.A1 cũng thay đổi theo."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3159267\n"
-"23\n"
+"cellreferences.xhp\n"
+"hd_id9209570\n"
"help.text"
-msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
-msgstr "Để đảm bảo nội dung được định dạng thành văn bản, bạn phải thêm một dấu lược (') ở đầu nội dung. Dấu lược sẽ không hiển thị trong ô."
+msgid "To Reference a Cell in Another Document"
+msgstr "Tham chiếu một ô trong tài liệu khác"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3150043\n"
-"7\n"
+"cellreferences.xhp\n"
+"par_id5949278\n"
"help.text"
-msgid "Quotation Marks Replaced by Custom Quotes"
-msgstr "Dấu trích dẫn sẽ được thay thế bởi dấu khác do bạn chọn"
+msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
+msgstr "Chọn <emph>Tập tin > Mở</emph> để mở một tài liệu bảng tính đã có."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3155333\n"
-"9\n"
+"cellreferences.xhp\n"
+"par_id8001953\n"
"help.text"
-msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
-msgstr "Chọn <emph>Công cụ > Tự động Sửa lỗi</emph>. Chuyển tới thẻ <emph>Dấu trích dẫn riêng</emph> và bỏ chọn mục <emph>Thay thế</emph>."
+msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
+msgstr "Chọn <emph>Tập tin > Mới</emph> để tạo một tài liệu bảng tính mới. Đặt con trỏ trong ô mà bạn muốn chèn dữ liệu bên ngoài vào, và nhập dấu bằng để bắt đầu viết công thức."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3149565\n"
-"11\n"
+"cellreferences.xhp\n"
+"par_id8571123\n"
"help.text"
-msgid "Cell Content Always Begins With Uppercase"
-msgstr "Nội dung của ô luôn bắt đầu bằng chữ hoa"
+msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
+msgstr "Giờ chuyển về tài liệu đã mở trước đó. Chọn ô có chứa dữ liệu cần chèn vào tài liệu mới."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3147001\n"
-"13\n"
+"cellreferences.xhp\n"
+"par_id8261665\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
-msgstr "Chọn <item type=\"menuitem\">Công cụs - Tùy chỉnh Tự động sửa</item>. Rồi vào tab <item type=\"menuitem\">Tùy chọn</item>. Bỏ đánh dấu <item type=\"menuitem\">Viết hoa kí tự đầu mỗi câu</item>."
+msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
+msgstr "Chuyển ngược về bảng tính mới. Trong dòng nhập công thức, bạn sẽ thấy $[officename] Calc đã tự động thêm vào công thức chuỗi tham chiếu tới ô vừa chọn."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3150345\n"
-"15\n"
+"cellreferences.xhp\n"
+"par_id5888241\n"
"help.text"
-msgid "Replace Word With Another Word"
-msgstr "Thay thế từ này bằng từ khác"
+msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
+msgstr "Tham chiếu tới một ô trong tài liệu khác sẽ bao gồm tên tài liệu đó trong dấu nháy đơn, theo sau là dấu thăng #, sau đó tên của bảng tính trong tài liệu đó cùng với tên ô, ngăn cách bởi dấu chấm."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3166425\n"
-"17\n"
+"cellreferences.xhp\n"
+"par_id7697683\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
-msgstr "Chọn <item type=\"menuitem\">Công cụs - Tùy chỉnh Tự động sửa</item>. Vào tab <item type=\"menuitem\">Thay thế</item>. Chọn một cặp từ nhấn <item type=\"menuitem\">Xóa</item>."
+msgid "Confirm the formula by clicking the green check mark."
+msgstr "Xác nhận công thức bằng cách bấm vào dấu kiểm màu xanh lục."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3152992\n"
-"19\n"
+"cellreferences.xhp\n"
+"par_id7099826\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Công cụ > Nội dung ô > Tự động Nhập\">Công cụ > Nội dung ô > Tự động Nhập</link>"
+msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
+msgstr "Nếu bạn kéo hộp trong góc dưới bên phải của ô hiện hành để chọn một phạm vi, $[officename] tự động chèn các tham chiếu tương ứng với các ô bên cạnh. Kết quả là tên bảng sẽ được bắt đầu bằng dấu đô-la « $ » để báo hiệu đây là một tham chiếu tuyệt đối."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3154368\n"
-"20\n"
+"cellreferences.xhp\n"
+"par_id674459\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Công cụ > Tự động Sửa lỗi\">Công cụ > Tự động Sửa lỗi</link>"
+msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
+msgstr "Nếu bạn xem xét tên của tài liệu khác trong công thức, bạn sẽ nhận ra rằng nó được viết dưới dạng địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. Điều này có nghĩa là bạn cũng có thể nhập vào một địa chỉ URL từ Internet."
#: cellreferences_url.xhp
msgctxt ""
@@ -4090,1365 +2481,554 @@ msgctxt ""
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
msgstr ""
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"tit\n"
-"help.text"
-msgid "Navigating Through Sheets Tabs"
-msgstr "Điều hướng qua các thẻ trang tính"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"bm_id3150769\n"
-"help.text"
-msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; hiển thị nhiều</bookmark_value><bookmark_value>thẻ bảng;sử dụng</bookmark_value><bookmark_value>xem;nhiều bảng tính</bookmark_value>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"hd_id3150769\n"
-"4\n"
-"help.text"
-msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
-msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Điều hướng qua các thẻ trang tính\">Điều hướng qua các thẻ trang tính</link></variable>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3153771\n"
-"3\n"
-"help.text"
-msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
-msgstr "Mặc định là $[officename] hiển thị 3 trang tính « Trang1 » đến « Trang3 » trong mỗi bảng tính mới. Bạn có thể chuyển đổi giữa các trang tính trong một bảng tính sử dụng các tab trang ở phía dưới màn hình."
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_idN106AF\n"
-"help.text"
-msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
-msgstr "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Thẻ trang tính</alt></image>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3153144\n"
-"help.text"
-msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Biểu tượng</alt></image>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3147396\n"
-"5\n"
-"help.text"
-msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
-msgstr "Sử dụng các nút điều hướng để hiển thị tất cả các trang tính trong tài liệu của bạn. Nhấn nút ở cực trái hoặc cực phải sẽ tự hiển thị thẻ trang đầu hoặc cuối theo thứ tự. Các nút giữa cho phép người dùng cuộn tiến hoặc lùi giữa các thẻ trang. Để hiển thị một trang tính hãy nhấn chuột lên thẻ của trang đó."
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3149379\n"
-"6\n"
-"help.text"
-msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
-msgstr "Nếu không có đủ khoảng trống để hiển thị tất cả các thẻ trang, bạn có thể mở rộng nó bằng cách chỉ tới đường ngăn cách giữa thanh cuộn và thẻ trang, nhấn chuột và giữ nguyên, kéo sang bên phải. Bằng cách này, bạn sẽ chia khoảng cách giữa các tab trang và thanh cuộn ngang"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"tit\n"
-"help.text"
-msgid "Applying Multiple Operations"
-msgstr "Ứng dụng nhiều thao tác"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"bm_id3147559\n"
-"help.text"
-msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
-msgstr "<bookmark_value>nhiều thao tác</bookmark_value><bookmark_value>thao tác nếu-thì; hai biến</bookmark_value><bookmark_value>bảng; nhiều thao tác trong</bookmark_value><bookmark_value>bảng dữ liệu; nhiều thao tác trong</bookmark_value><bookmark_value>bảng phân loại chéo</bookmark_value>"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3147559\n"
-"5\n"
-"help.text"
-msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
-msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Ứng dụng nhiều thao tác\">Ứng dụng nhiều thao tác</link></variable>"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3145171\n"
-"1\n"
-"help.text"
-msgid "Multiple Operations in Columns or Rows"
-msgstr "Nhiều thao tác trong Cột hay Hàng"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id4123966\n"
-"help.text"
-msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
-msgstr "Lệnh <item type=\"menuitem\">Dữ liệu > Nhiều thao tác</item> tạo một công cụ dự định cho các câu hỏi dạng \"what if\". Trong bảng tính của bạn, hãy nhập một công thức để tính kết quả từ các giá trị đã có trong những ô khác. Sau đó, bạn hãy lập một vùng ô để nhập vào một vài giá trị cố định, lệnh <emph>Nhiều thao tác</emph> sẽ tính kết quả dựa theo công thức đó."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3156424\n"
-"2\n"
-"help.text"
-msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
-msgstr "Trong trường <emph>Công thức</emph>, hãy nhập tham chiếu ô vào công thức có ứng dụng vùng dữ liệu. Trong trường <emph>Ô nhập vào cột/hàng</emph>, hãy nhập tham chiếu ô vào ô tương ứng có vai trò là một phần của công thức. Điều này được giải thích thông qua ví dụ sau:"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3159153\n"
-"7\n"
-"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153189\n"
-"8\n"
-"help.text"
-msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
-msgstr "Bạn sản xuất đồ chơi và bán với giá $10 mỗi chiếc. Mối đồ chơi chỉ mất $2 chi phí sản xuất, hơn nữa bạn đã cố định chi phí vào khoảng $10 000 mỗi năm. Hỏi bạn sẽ kiếm được lợi nhuận mỗi năm là bao nhiêu nếu bạn bán ra một số đồ chơi nhất định?"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id6478774\n"
-"help.text"
-msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
-msgstr "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">vùng trang tính Nếu-Thì</alt></image>"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3145239\n"
-"41\n"
-"help.text"
-msgid "Calculating With One Formula and One Variable"
-msgstr "Tính toán với một công thức và một biến"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3146888\n"
-"42\n"
-"help.text"
-msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
-msgstr "Để tính lợi nhuận, trước tiên hãy nhập bất kì một con số nào để chỉ số lượng (hàng bán ra), trong ví dụ này ta lấy 2000. Lợi nhuận được tính theo công thức « Lợi nhuận=Số lượng*(Giá bán-Chi phí trực tiếp) - Chi phí cố định ». Nhập công thức này vào ô B5."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3157875\n"
-"43\n"
-"help.text"
-msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
-msgstr "Trong cột D, nhập lượng bán hàng năm, theo trình tự từ trên xuống dưới, ví dụ 500 tới 5000, từng bước 500."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3159115\n"
-"44\n"
-"help.text"
-msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
-msgstr "Chọn vùng D2:E11, các giá trị trong cột D và các ô trống dọc theo cột E."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149723\n"
-"45\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple operations</emph>."
-msgstr "Chọn <emph>Dữ liệu > Nhiều thao tác</emph>."
-
-#: multioperation.xhp
-#, fuzzy
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149149\n"
-"46\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
-msgstr "Đặt con trỏ trong trường <emph>Công thức</emph>, nhắp chuột vào ô B5."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149355\n"
-"47\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
-msgstr "Đặt con trỏ trong trường <emph>Ô nhập cột</emph> và nhắp chuột vào ô B4. Điều này có nghĩa là số lượng của B4 chính là biến trong công thức này, và được thay thế bằng các giá trị trong cột được chọn."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149009\n"
-"48\n"
-"help.text"
-msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
-msgstr "Đóng hộp thoại với nút <emph>OK</emph>. Bạn có thể thấy lợi nhuận với các đại lượng khác nhau trong cột E."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3148725\n"
-"49\n"
-"help.text"
-msgid "Calculating with Several Formulas Simultaneously"
-msgstr "Tính toán đồng thời với một vài Công thức"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3146880\n"
-"50\n"
-"help.text"
-msgid "Delete column E."
-msgstr "Xóa cột E."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154675\n"
-"51\n"
-"help.text"
-msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
-msgstr "Nhập công thức sau trong C5: « = B5/B4 ». Bây giờ bạn hãy tính lợi nhuận hàng năm của mỗi sản phẩm."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3148885\n"
-"52\n"
-"help.text"
-msgid "Select the range D2:F11, thus three columns."
-msgstr "Chọn vùng D2:F11, tương ứng 3 cột."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3147474\n"
-"53\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple Operations</emph>."
-msgstr "Chọn <emph>Dữ liệu > Nhiều thao tác</emph>."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154846\n"
-"54\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
-msgstr "Đặt con trỏ trong trường <emph>Công thức</emph>, chọn ô B5 qua C5."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153931\n"
-"55\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
-msgstr "Đặt con trỏ trong trường <emph>Ô nhập cột</emph> và nhắp chuột vào ô B4."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3150862\n"
-"56\n"
-"help.text"
-msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
-msgstr "Đóng hộp thoại với nút <emph>OK</emph>. Bạn sẽ thấy kết quả lợi nhuận trong cột E và lợi nhuận hàng năm cho mỗi sản phẩm tron cột F."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3146139\n"
-"3\n"
-"help.text"
-msgid "Multiple Operations Across Rows and Columns"
-msgstr "Nhiều thao tác giao với hàng và cột"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3148584\n"
-"4\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> cho phép bạn tiến hành nhiều thao tác chung cho hàng và cột trong đối tượng được gọi như là « bảng chéo ». Ô công thức phải tham chiếu tới vùng dữ liệu được sắp xếp trong cả hàng và cột. Chọn vùng quy định bởi cả hai vùng dữ liệu và hướng tới hộp thoại <emph>Nhiều thao tác</emph>. Nhập tham chiếu của công thức vào trường <emph>Công thức</emph>. Trường <emph>Ô nhập hàng</emph> và <emph>Ô nhập cột</emph> được dùng để nhập tham chiếu vào các ô tương ứng của công thức này."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3149949\n"
-"57\n"
-"help.text"
-msgid "Calculating with Two Variables"
-msgstr "Tính toán khi có hai biến"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154808\n"
-"58\n"
-"help.text"
-msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
-msgstr "Coi cột A và B thuộc cùng một bảng xét bên trên. Bây giờ bạn có thể muốn thay đổi không chỉ số lượng sản phẩm sản xuất ra hàng năm mà cả giá bán, và bạn rất quan tâm đến lợi nhuận thu được trong mỗi trường hợp."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149731\n"
-"59\n"
-"help.text"
-msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
-msgstr "Mở rộng bảng trên. Từ D2 đến D11 chứa các số 500, 1000 và vân vân, cho đến 5000. Từ E1 đến H1 nhập vào các số 8, 10, 15 và 20."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3152810\n"
-"95\n"
-"help.text"
-msgid "Select the range D1:H11."
-msgstr "Chọn vùng D1:H11"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153620\n"
-"96\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple Operations</emph>."
-msgstr "Chọn <emph>Dữ liệu > Nhiều thao tác</emph>."
-
-#: multioperation.xhp
-#, fuzzy
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149981\n"
-"97\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
-msgstr "Đặt con trỏ trong trường <emph>Công thức</emph>, nhắp chuột vào ô B5."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3156113\n"
-"98\n"
-"help.text"
-msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
-msgstr "Đặt con trỏ trong trường <emph>Ô nhập hàng</emph> và nhắp chuột vào ô B1. Điều này có nghĩa là B1, biểu thị giá bán, là một biến được nhập theo chiều ngang (với các giá trị 8, 10. 15 và 20)."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154049\n"
-"99\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
-msgstr "Đặt con trỏ trong trường <emph>Ô nhập cột</emph> và nhắp chuột vào B4. Điều này cho biết B4, biểu thị số lượng, là một biến được nhập theo chiều dọc."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149141\n"
-"100\n"
-"help.text"
-msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
-msgstr "Đóng hộp thoại bằng cách nhấn nút OK. Bạn có thể thấy kết quả lợi nhuận tương ứng với các giá bán khác nhau trong vùng E2:H11."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3155104\n"
-"101\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
-msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Nhiều thao tác\">Nhiều tham tác</link>"
-
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
+"cellstyle_by_formula.xhp\n"
"tit\n"
"help.text"
-msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
-msgstr "Phím tắt (Khả năng truy cập bảng %PRODUCTNAME Calc)"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"bm_id3145120\n"
-"help.text"
-msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
-msgstr "<bookmark_value>khả năng truy cập; lối tắt %PRODUCTNAME Calc tắt</bookmark_value><bookmark_value>phím tắt; khả năng truy cập đến %PRODUCTNAME Calc</bookmark_value>"
+msgid "Assigning Formats by Formula"
+msgstr "Gán định dạng theo công thức"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"hd_id3145120\n"
-"1\n"
+"cellstyle_by_formula.xhp\n"
+"bm_id3145673\n"
"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Phím tắt (Khả năng truy cập đến %PRODUCTNAME Calc)\">Phím tắt (<item type=\"productname\">%PRODUCTNAME</item> Khả năng truy cập đến Calc)</link></variable>"
+msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
+msgstr "<bookmark_value>định dạng; gán theo công thức</bookmark_value><bookmark_value>định dạng ô; gán theo công thức</bookmark_value><bookmark_value>ví dụ về hàm STYLE</bookmark_value><bookmark_value>kiểu dáng ô;gán theo công thức</bookmark_value><bookmark_value>công thức;gán định dạng ô</bookmark_value>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3154760\n"
+"cellstyle_by_formula.xhp\n"
+"hd_id3145673\n"
"13\n"
"help.text"
-msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
-msgstr "Cũng đề cập đến danh sách các phím tắt dùng cho phép Calc <item type=\"productname\">%PRODUCTNAME</item> và <item type=\"productname\">%PRODUCTNAME</item> nói chung."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3153360\n"
-"12\n"
-"help.text"
-msgid "Cell Selection Mode"
-msgstr "Chế độ chọn ô"
-
-#: keyboard.xhp
-#, fuzzy
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3150870\n"
-"help.text"
-msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Biểu tượng</alt></image>"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3154319\n"
-"11\n"
-"help.text"
-msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
-msgstr "Trong hộp văn bản có một nút để thu nhỏ hộp thoại, nhấn <item type=\"keycode\">F2</item> để vào chế độ lựa chọn ô. Chọn bất cứ số nào của ô, sau đó nhấn tiếp <item type=\"keycode\">F2</item> để hiển thị hộp thoại."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3145272\n"
-"10\n"
-"help.text"
-msgid "In the cell selection mode, you can use the common navigation keys to select cells."
-msgstr "Trong chế độ chọn ô, bạn có thể sử dụng phím điều hướng chung để chọn các ô."
+msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
+msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Gán định dạng theo công thức\">Gán định dạng theo công thức</link></variable>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"hd_id3148646\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3150275\n"
"14\n"
"help.text"
-msgid "Controlling the Outline"
-msgstr "Điều khiển Phác thảo"
+msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
+msgstr "Hàm STYLE() có thể được đưa vào một công thức sẵn có trong ô. Ví dụ, kết hợp với hàm CURRENT, bạn có thể tô màu một ô theo giá trị của nó. Công thức « =...+STYLE(IF(CURRENT()>3; \"Đỏ\"; \"Lục\")) » áp dụng cho kiểu dáng ô \"Đỏ\" đối với các ô có giá trị lớn hơn 3, còn không sẽ dùng kiểu dáng \"Lục\"."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3146120\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3151385\n"
"15\n"
"help.text"
-msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
-msgstr "Bạn có thể sử dụng bàn phím trong <link href=\"text/scalc/01/12080000.xhp\" name=\"Phác thảo\">Phác thảo</link>:"
+msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
+msgstr "Nếu bạn muốn áp dụng một công thức cho tất cả các ô trong vùng chọn, bạn có thể dùng chức năng <emph>Tìm và Thay thế</emph>."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3147394\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3149456\n"
"16\n"
"help.text"
-msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
-msgstr "Nhấn <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> cho đến khi cửa sổ phác thảo nằm ngang hoặc thẳng đứng trở nên rõ nét."
+msgid "Select all the desired cells."
+msgstr "Chọn tất cả các ô cần xử lý."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3149379\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3148797\n"
"17\n"
"help.text"
-msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
-msgstr "<item type=\"keycode\">Tab</item> — xoay vòng thông qua tất cả các nút hiển thị từ đỉnh tới đáy hoặc từ trái sang phải."
+msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
+msgstr "Chọn lệnh <emph>Sửa > Tìm và Thay thế</emph>."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3156286\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3150767\n"
"18\n"
"help.text"
-msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
-msgstr "<item type=\"keycode\">Shift+Tab</item> — xoay vòng qua tất cả các nút hiển thị theo hướng ngược lại."
+msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
+msgstr "Với điều kiện <item type=\"menuitem\">Tìm kiếm gì</item>, nhập: .<item type=\"literal\">*</item>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3149403\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3153770\n"
"19\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 đến Command+8</caseinline><defaultinline>Ctrl+1 đến Ctrl+8</defaultinline></switchinline> - hiển thị đến các mức cho trước, ẩn những mức cao hơn."
+msgid "\".*\" is a regular expression that designates the contents of the current cell."
+msgstr "« .* » là một biểu thức chính quy tương đương với nội dung của ô hiện thời."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3150329\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3153143\n"
"20\n"
"help.text"
-msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
-msgstr "Sử dụng <item type=\"keycode\">+</item> hay <item type=\"keycode\">-</item> để hiển thị hay ẩn nhóm phác thảo trông rõ."
+msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+msgstr "Nhập công thức sau trong trường <item type=\"menuitem\">Thay thế bằng</item>: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155446\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3146975\n"
"21\n"
"help.text"
-msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
-msgstr "Bấm <item type=\"keycode\">Enter</item> để kích hoạt nút được chọn."
+msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
+msgstr "Ký  tự « & » tương ứng với nội dung hiện thời của trường <emph>Tìm kiếm</emph>. Vì đây là công thức, nên ký tự đầu tiên phải là dấu bằng. Ở đây ta giả sử rằng 2 kiểu dáng « Đỏ » và « Lục » đã được ta định nghĩa trước đó."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3154253\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3149262\n"
"22\n"
"help.text"
-msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
-msgstr "Dùng mũi tên <item type=\"keycode\">Lên</item>, <item type=\"keycode\">Xuống</item>, <item type=\"keycode\">Trái</item> hay <item type=\"keycode\">Phải</item> để xoay vòng qua tất cả các nút trong cấp hiện thời."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3147343\n"
-"8\n"
-"help.text"
-msgid "Selecting a Drawing Object or a Graphic"
-msgstr "Chọn một Đối tượng Vẽ hay một Đồ họa"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_idN107AA\n"
-"help.text"
-msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
-msgstr "Chọn <emph>Xem > Thanh công cụ > Vẽ</emph> để mở thanh công cụ <emph>Vẽ</emph>."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3155333\n"
-"7\n"
-"help.text"
-msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
-msgstr "Nhấn <item type=\"keycode\">F6</item> cho đến khi thanh công cụ <emph>Vẽ</emph> được chọn."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3150345\n"
-"4\n"
-"help.text"
-msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
-msgstr "Nếu công cụ lựa chọn đang được kích hoạt, nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. Đối tượng hình vẽ đầu tiên trong bản sẽ được chọn."
+msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
+msgstr "Đánh dấu trường <link href=\"text/shared/01/02100000.xhp\" name=\"Biểu thức chính quy\"><emph>Biểu thức chính quy</emph></link> và <emph>Chỉ vùng chọn hiện có</emph>. Nhấn <emph>Tìm tất cả</emph>."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3159240\n"
-"3\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3144767\n"
+"24\n"
"help.text"
-msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
-msgstr "Bạn có thể chuyển chú ý vào tài liệu với tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6."
+msgid "All cells with contents that were included in the selection are now highlighted."
+msgstr "Ta sẽ thấy tất cả các ô có nội dung nằm trong vùng chọn sẽ được tô sáng."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155379\n"
-"2\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3147127\n"
+"23\n"
"help.text"
-msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
-msgstr "Bây giờ bạn có thể dùng phím <item type=\"keycode\">Tab</item> để chọn đối tượng vẽ hay đồ họa tiếp theo và dùng <item type=\"keycode\">Shift+Tab</item> để chọn đối tượng hoặc đồ họa đã hiển thị trước đó."
+msgid "Click <item type=\"menuitem\">Replace all</item>."
+msgstr "Nhấn <item type=\"menuitem\">Thay thế tất cả</item>."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
+"cellstyle_conditional.xhp\n"
"tit\n"
"help.text"
-msgid "Copying Formulas"
-msgstr "Chép công thức"
-
-#: formula_copy.xhp
-msgctxt ""
-"formula_copy.xhp\n"
-"bm_id3151113\n"
-"help.text"
-msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
-msgstr "<bookmark_value>công thức; chép và dán</bookmark_value><bookmark_value>chép; công thức </bookmark_value><bookmark_value>dán; công thức</bookmark_value>"
-
-#: formula_copy.xhp
-msgctxt ""
-"formula_copy.xhp\n"
-"hd_id3151113\n"
-"54\n"
-"help.text"
-msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
-msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Chép công thức\">Chép công thức</link></variable>"
+msgid "Applying Conditional Formatting"
+msgstr "Áp dụng Định dạng có điều kiện"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3156424\n"
-"11\n"
+"cellstyle_conditional.xhp\n"
+"bm_id3149263\n"
"help.text"
-msgid "There are various ways to copy a formula. One suggested method is:"
-msgstr "Có nhiều cách khác nhau để chép công thức. Một cách gợi ý là:"
+msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
+msgstr "<bookmark_value>định dạng có điều kiện; ô</bookmark_value><bookmark_value>ô; định dạng có điều kiện</bookmark_value><bookmark_value>định dạng; định dạng có điều kiện</bookmark_value><bookmark_value>kiểu dáng;kiểu dáng có điều kiện</bookmark_value><bookmark_value>định dạng ô; có điều kiện</bookmark_value><bookmark_value>số ngẫu nhiên;ví dụ</bookmark_value><bookmark_value>kiểu dáng ô;sao chép</bookmark_value><bookmark_value>sao chép; kiểu dáng ô</bookmark_value><bookmark_value>bảng;sao chép kiểu dáng ô</bookmark_value>"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3150439\n"
-"30\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149263\n"
+"24\n"
"help.text"
-msgid "Select the cell containing the formula."
-msgstr "Chọn ô chứa công thức."
+msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
+msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Áp dụng Định dạng có điều kiện\">Áp dụng Định dạng có điều kiện</link></variable>"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3154319\n"
-"31\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159156\n"
+"25\n"
"help.text"
-msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
-msgstr "Chọn <emph>Sửa > Chép</emph>, hoặc nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ C để chép."
+msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
+msgstr "Dùng lệnh <emph>Định dạng > Định dạng có điều kiện</emph>, hộp thoại xuất hiện cho phép bạn định nghĩa tối đa ba điều kiện cho mỗi ô. Các ô được chọn nếu thoả mãn các điều kiện này thì sẽ có định dạng riêng."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3159155\n"
-"32\n"
+"cellstyle_conditional.xhp\n"
+"par_id8039796\n"
"help.text"
-msgid "Select the cell into which you want the formula to be copied."
-msgstr "Chọn ô mà bạn muốn chép công thức vào đó"
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr "Để sử dụng tính năng định dạng có điều kiện, chức năng Tự động Tính phải được bật. Chọn <emph>Công cụ > Nội dung ô > Tự động Tính</emph> (bạn sẽ thấy một dấu kiểm bên cạnh lệnh này khi nó được bật)."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3153728\n"
-"33\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154944\n"
+"26\n"
"help.text"
-msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
-msgstr "Chọn <emph>Sửa > Chép</emph>, hoặc nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. Công thức sẽ được đặt vàp ô mới."
+msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
+msgstr "Bạn có thể dùng chức năng định dạng có điều kiện để tô sáng các tổng số lớn hơn giá trị trung bình của tất cả các tổng chả hạn. Nếu tổng số thay đổi, định dạng cũng sẽ thay đổi theo và bạn không cần phải áp dụng các kiểu dáng theo cách thủ công."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3149961\n"
-"34\n"
+"cellstyle_conditional.xhp\n"
+"hd_id4480727\n"
"help.text"
-msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
-msgstr "Nếu bạn muốn chép một công thức vào nhiều ô, có một cách dễ dàng và nhanh chóng để chép vào các vùng ô bên cạnh."
+msgid "To Define the Conditions"
+msgstr "Để chỉ định điều kiện"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3149400\n"
-"12\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154490\n"
+"27\n"
"help.text"
-msgid "Select the cell containing the formula."
-msgstr "Chọn ô chứa công thức."
+msgid "Select the cells to which you want to apply a conditional style."
+msgstr "Chọn các ô mà bạn muốn áp dụng định dạng có điều kiện."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3154018\n"
-"13\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155603\n"
+"28\n"
"help.text"
-msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
-msgstr "Đặt chuột lên phía dưới bên phải viền được tô sáng của ô, và tiếp tục giữ chuột kéo xuống cho đến khi con trỏ chuyển tới một ký hiệu chữ thập."
+msgid "Choose <emph>Format - Conditional Formatting</emph>."
+msgstr "Chọn <emph>Định dạng > Định dạng có điều kiện</emph>."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3150749\n"
-"14\n"
+"cellstyle_conditional.xhp\n"
+"par_id3146969\n"
+"29\n"
"help.text"
-msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
-msgstr "Tiếp tục nhấn chuột trong khi kéo xuống hoặc tới phía bên phải trên tất cả các ô để chép công thức vào ô mà bạn muốn."
+msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
+msgstr "Nhập các điều kiện vào trong hộp thoại. Hộp thoại này được mô tả chi tiết trong phần <link href=\"text/scalc/01/05120000.xhp\" name=\"Trợ giúp $[officename]\">Trợ giúp $[officename]</link>, và một ví dụ cũng được cho dưới đây:"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3153714\n"
-"15\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3155766\n"
+"38\n"
"help.text"
-msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
-msgstr "Khi bạn thả chuột ra, công thức sẽ được sao vào trong các ô và tự động điều chỉnh."
+msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
+msgstr "Ví dụ về định dạng có điều kiện: tô sáng tổng ở trên/dưới giá trị trung bình"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3156385\n"
-"53\n"
+"cellstyle_conditional.xhp\n"
+"hd_id4341868\n"
"help.text"
-msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
-msgstr "Nếu bạn không muốn các giá trị và văn bản tự điều chỉnh, hãy giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo. Tuy nhiên, các công thức do đó luôn luôn được điều chỉnh."
+msgid "Step1: Generate Number Values"
+msgstr "Bước 1: Sinh giá trị số"
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"tit\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150043\n"
+"39\n"
"help.text"
-msgid "Pivot Table"
-msgstr "Xẻ bảng"
+msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
+msgstr "Giả sử bạn muốn làm nổi bật các giá trị nhất định trong các bảng mình có. Ví dụ, trong một bảng doanh thu, bạn có thể dùng màu lục để tô nền cho tất cả các giá trị lớn hơn trị trung bình, và tô màu đỏ cho những giá trị nhỏ hơn. Điều này hoàn toàn có thể được tự động thực hiện nếu bạn biết dùng chức năng định dạng có điều kiện."
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"bm_id3150448\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155337\n"
+"40\n"
"help.text"
-msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
-msgstr "<bookmark_value>chức năng DataPilot; giới thiệu</bookmark_value><bookmark_value>bảng Trọng tâm, xem chức năng DataPilot</bookmark_value>"
+msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
+msgstr "Trước tiên, bạn hãy soạn một bảng giá trị có nhiều giá trị khác nhau. Đối với ví dụ này, bạn hãy lấy các con số ngẫu nhiên:"
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"hd_id3150448\n"
-"7\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149565\n"
+"41\n"
"help.text"
-msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
-msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"DataPilot\">DataPilot</link></variable>"
+msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
+msgstr "Trong một ô, hãy nhập công thức « =RAND() », và bạn sẽ thu được một số ngẫu nhiên nằm giữa 0 và 1. Nếu bạn muốn số nguyên giữa 0 và 50, hãy nhập công thức « =INT(RAND()*50) »."
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"par_id3156024\n"
-"2\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149258\n"
+"42\n"
"help.text"
-msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
-msgstr "Chức năng <emph>DataPilot</emph> (còn gọi là <emph>Bảng Trọng Tâm</emph>) cho phép bạn kết hợp, so sánh và phân tích một khối lượng lớn dữ liệu. Bạn có thể xem nhiều kết luận từ các nguồn dữ liệu khác nhau, và hiển thị chi tiết các vùng cần lưu ý, và tạo các báo cáo dựa trên đó."
+msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
+msgstr "Sao chép công thức lại để tạo một hàng có toàn các số ngẫu nhiên. Bấm vào góc phải bên dưới của ô đã chọn, và kéo nó sang phải tới hết phạm vi cần chọn."
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"par_id3145069\n"
-"9\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159236\n"
+"43\n"
"help.text"
-msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
-msgstr "Một bảng được tạo bằng chức năng <link href=\"text/scalc/01/12090000.xhp\" name=\"DataPilot\">DataPilot</link> là một bảng tương tác. Dữ liệu có thể được sắp xếp, phân bố lại hoặc tổng hợp lại theo nhiều cách khác nhau."
+msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
+msgstr "Làm tương tự, hãy kéo xuống góc của ô cùng bên phải để tạo thêm nhiều hàng số ngẫu nhiên khác."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"tit\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149211\n"
+"44\n"
"help.text"
-msgid "Cells in Currency Format"
-msgstr "Các ô ở dạng tiền tệ"
+msgid "Step 2: Define Cell Styles"
+msgstr "Bước 2: Chỉ định kiểu dáng ô"
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"bm_id3156329\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154659\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
-msgstr "<bookmark_value>dạng tiền tệ; bảng tính</bookmark_value><bookmark_value>ô; định dạng tiền tệ</bookmark_value><bookmark_value>định dạng tiền tệ quốc tế</bookmark_value><bookmark_value>định dạng; định dạng tiền tệ trong ô</bookmark_value><bookmark_value>tiền tệ; tiền tệ mặc định</bookmark_value><bookmark_value>mặc định;định dạng tiền tệ</bookmark_value><bookmark_value>thay đổi;định dạng tiền tệ</bookmark_value>"
+msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
+msgstr "Bước tiếp theo là áp dụng một kiểu dáng ô cho tất cả các giá trị biểu diễn doanh thu lớn hơn trung bình, và một kiểu dáng cho các giá trị nhỏ hơn. Hãy đảm bảo rằng cửa sổ <emph>Kiểu dáng và Định dạng</emph> được hiển thị trước khi tiếp tục."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"hd_id3156329\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150883\n"
"46\n"
"help.text"
-msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
-msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Các ô có định dạng tiền tệ\">Các ô có định dạng tiền tệ</link></variable>"
+msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
+msgstr "Bấm vào một ô trống và chọn lệnh <emph>Định dạng ô</emph> trong trình đơn ngữ cảnh."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3153968\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155529\n"
"47\n"
"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
-msgstr ""
+msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
+msgstr "Trong hộp thoại <emph>Định dạng ô</emph> của thẻ <emph>Nền</emph>, chọn một màu nền. Bấm <emph>OK</emph>."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3150010\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154484\n"
"48\n"
"help.text"
-msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
-msgstr "Việc trao đổi các tài liệu <item type=\"productname\">%PRODUCTNAME</item> Calc có thể gây hiểu lầm, nếu tài liệu <item type=\"productname\">%PRODUCTNAME</item> Calc của bạn được mở trên một máy có sử dụng đinh dạng tiền tệ khác."
-
-#: currency_format.xhp
-msgctxt ""
-"currency_format.xhp\n"
-"par_id3156442\n"
-"52\n"
-"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
-msgstr "Trong <item type=\"productname\">%PRODUCTNAME</item> Calc bạn có thể thiết lập sao cho một giá trị số ở dạng tiền tệ như « 1,234.50 € » (đồng Âu), sẽ được giữ nguyên ở dạng Euro mà không trở thành dollar trên một máy khác."
+msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
+msgstr "Trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>, bấm vào biểu tượng <emph>Kiểu dáng mới từ vùng chọn</emph>. Nhập tên của kiểu dáng mới. Trong ví dụ này, ta chọn tên « Trên »."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3151075\n"
+"cellstyle_conditional.xhp\n"
+"par_id3152889\n"
"49\n"
"help.text"
-msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
-msgstr "Bạn có thể thay đổi định dạng tiền tệ trong hộp thoại <item type=\"menuitem\">Định dạng ô</item> (chọn tab <item type=\"menuitem\">Định dạng - Ô - Số</item>) theo hai thiết đặt quốc gia. Trong hộp tổ hợp <item type=\"menuitem\">Ngôn ngữ</item> chọn thiết đặt cơ bản cho dấu phân cách phần thập phân và phần ngàn. Trong hộp danh sách <item type=\"menuitem\">Định dạng</item> kí hiệu tiền tệ và vị trí của nó."
+msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
+msgstr "Để đặt kiểu dáng thứ hai, ta bấm lại vào một ô trống và tiến hành các bước tương tự. Gán một màu nền khác cho ô và đặt tên kiểu dáng (v.d.) là « Dưới »."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3150749\n"
-"50\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3148704\n"
+"60\n"
"help.text"
-msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
-msgstr "Ví dụ, nếu ngôn ngữ được đặt là \"Mặc định\" và bạn dùng thiết lập tiếng Đức trên hệ thống, thì định dạng tiền tệ sẽ là \"1.234,00 €\". Dấu chấm được dùng trước các con số hàng nghìn, và dấu phẩy ngăn cách hàng đơn vị. Nếu bạn chọn mục \"$ Anh (Mỹ)\" trong danh sách <emph>Định dạng</emph>, bạn sẽ thu được định dạng sau: \"$ 1.234,00\". Như bạn thấy, dấu ngăn cách vẫn được giữ nguyên, chỉ có ký hiệu tiền tệ là được thay thế, nhưng định dạng chú thích vẫn là như cũ theo thiết lập bản địa hóa."
+msgid "Step 3: Calculate Average"
+msgstr "Bước 3: tính giá trị trung bình"
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3145640\n"
+"cellstyle_conditional.xhp\n"
+"par_id3148837\n"
"51\n"
"help.text"
-msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
-msgstr "Nếu trong phần <emph>Ngôn ngữ</emph>, bạn chuyển các ô thành thiết lập \"Anh (Mỹ)\", thì các thiết lập của vùng địa lý Anh-Mỹ sẽ được dùng và định dạng tiền tệ mặc định sẽ thành \"$ 1,234.00\"."
-
-#: currency_format.xhp
-msgctxt ""
-"currency_format.xhp\n"
-"par_id3154255\n"
-"53\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Multiple Cells"
-msgstr "Chọn nhiều ô"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
-msgstr "<bookmark_value>ô; chọn</bookmark_value><bookmark_value>đánh dấu ô</bookmark_value><bookmark_value>chọn;ô</bookmark_value><bookmark_value>vùng chọn nhều ô</bookmark_value><bookmark_value> chế độ chọn trong bảng tính</bookmark_value><bookmark_value>bảng; chọn phạm vi</bookmark_value>"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
-msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Chọn nhiều ô\">Chọn nhiều ô</link></variable>"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3145272\n"
-"2\n"
-"help.text"
-msgid "Select a rectangular range"
-msgstr "Chọn một vùng vuông góc"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149261\n"
-"3\n"
-"help.text"
-msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
-msgstr "Ấn giứ nút chuột, kéo từ một góc tới góc đối diện chéo của vùng."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3151119\n"
-"4\n"
-"help.text"
-msgid "Mark a single cell"
-msgstr "Đánh dấu một ô đơn"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3146975\n"
-"19\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Thực hiện một trong số thao tác sau:"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3163710\n"
-"20\n"
-"help.text"
-msgid "Click, then Shift-click the cell."
-msgstr "Nhấn chuột, sau đó ấn giữ phím Shift trong khi nhấn vào ô."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149959\n"
-"5\n"
-"help.text"
-msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
-msgstr "Ấn giữ nút chuột, kéo một vùng qua hai ô, không được nhả chuột và sau đó kéo trở lại ô đầu tiên. Giờ bạn có thể di chuyển ô riêng lẻ bằng kéo và nhả chuột (kéo và thả)."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3154942\n"
-"6\n"
-"help.text"
-msgid "Select various dispersed cells"
-msgstr "Chọn các ô phân tán khác nhau"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id1001200901072060\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Thực hiện một trong số thao tác sau:"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3156284\n"
-"7\n"
-"help.text"
-msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
-msgstr "Đánh dấu ít nhất một ô. Sau đó, trong khi nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, nhắp chuột vào mỗi ô cần bổ sung."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id1001200901072023\n"
-"help.text"
-msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3146971\n"
-"8\n"
-"help.text"
-msgid "Switch marking mode"
-msgstr "Chuyển chế độ đánh dấu"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3155064\n"
-"9\n"
-"help.text"
-msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
-msgstr "Trên thanh trạng thái, nhắp chuột vào hộp ghi chú CHUẨN / MỞ RỘNG / THÊM để chuyển chế độ đánh dấu"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3159264\n"
-"10\n"
-"help.text"
-msgid "Field contents"
-msgstr "Nội dung trường"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3155337\n"
-"11\n"
-"help.text"
-msgid "Effect of clicking the mouse"
-msgstr "Hiệu ứng của việc nhắp chuột"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149568\n"
-"12\n"
-"help.text"
-msgid "STD"
-msgstr "CHUẨN"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3148486\n"
-"13\n"
-"help.text"
-msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
-msgstr "Thao tác nhắp chuột sẽ chọn ô mà bạn đã đặt chuột vào đó. Xóa dấu tất cả các ô đã được đánh dấu."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3150090\n"
-"14\n"
-"help.text"
-msgid "EXT"
-msgstr "MỞ RỘNG"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3150305\n"
-"15\n"
-"help.text"
-msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3145587\n"
-"16\n"
-"help.text"
-msgid "ADD"
-msgstr "THÊM"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3154368\n"
-"17\n"
-"help.text"
-msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
-msgstr "Nhấn chuột trong một ô sẽ thêm vào những ô đã được đánh dấu sẵn. Nhấn chuột tiếp vào một ô được đánh dấu sẽ bỏ dấu đi. Một cách khác là nhấn chuột trong khi giữ <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>."
+msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
+msgstr "Trong ví dụ này, ta sẽ tính giá trị trung bình của các số ngẫu nhiên. Kết quả sẽ đặt trong một ô:"
-#: mark_cells.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"mark_cells.xhp\n"
-"par_id3154487\n"
-"18\n"
+"cellstyle_conditional.xhp\n"
+"par_id3144768\n"
+"52\n"
"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
-msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Thanh trạng thái\">Thanh trạng thái</link>"
+msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
+msgstr "Đặt con trỏ trong một ô trống, ví dụ như J14, và chọn <emph>Chèn > Hàm</emph>."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"tit\n"
+"cellstyle_conditional.xhp\n"
+"par_id3156016\n"
+"53\n"
"help.text"
-msgid "Entering a Number with Leading Zeros"
-msgstr "Nhập một số bắt đầu bằng số 0"
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
+msgstr "Chọn hàm AVERAGE. Dùng chuột chọn tất cả các số ngẫu nhiên. Nếu bạn không thấy hết toàn bộ các số cần chọn vì hộp thoại <emph>Trợ lý Hàm</emph> đã che mất, bạn có thể tạm thời thu nhỏ hộp thoại này đi bằng biểu tượng <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Thu nhỏ hoặc Phóng to\">Thu nhỏ / Phóng to</link>."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"bm_id3147560\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153246\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
-msgstr "<bookmark_value>giá trị số không; nhập số không đứng đầu</bookmark_value><bookmark_value>số; với số không đứng đầu</bookmark_value><bookmark_value>số không đứng đầu</bookmark_value><bookmark_value>số nguyên với số không đứng đầu</bookmark_value><bookmark_value>số; thay đổi định dạng văn bản/số</bookmark_value><bookmark_value>ô; thay đổi định dạng văn bản/số</bookmark_value><bookmark_value>định dạng; thay đổi cho văn bản/số</bookmark_value><bookmark_value>văn bản trong ô; đổi thành các số</bookmark_value><bookmark_value>chuyển đổi; văn bản sang số</bookmark_value>"
+msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
+msgstr "Đóng Trợ lí hàm với <item type=\"menuitem\">OK</item>."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"hd_id3147560\n"
-"67\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149898\n"
+"50\n"
"help.text"
-msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
-msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Nhập số bắt đầu bằng số 0\">Nhập số bắt đầu bằng số 0</link></variable>"
+msgid "Step 4: Apply Cell Styles"
+msgstr "Bước 4: Áp dụng kiểu dáng ô"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3153194\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149126\n"
"55\n"
"help.text"
-msgid "There are various ways to enter integers starting with a zero:"
-msgstr "Có nhiều cách để nhập các số nguyên bắt đầu bằng số 0:"
+msgid "Now you can apply the conditional formatting to the sheet:"
+msgstr "Giờ bạn có thể áp dụng các định dạng có điều kiện cho bảng:"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3146119\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150049\n"
"56\n"
"help.text"
-msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
-msgstr "Nhập số dưới dạng văn bản. Cách dễ nhất là nhập số bắt đầu với một dấu lược (ví dụ, <item type=\"input\">'0987</item>). Dấu lược này sẽ không xuất hiện trong ô, và số này sẽ được định dạng như văn bản. Tuy nhiên, vì số ở trong định dạng văn bản nên bạn không thể tính được."
+msgid "Select all cells with the random numbers."
+msgstr "Chọn tất cả các ô có số ngẫu nhiên."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154013\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153801\n"
"57\n"
"help.text"
-msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
-msgstr "Định dạng một ô với một định dạng số ví dụ như <item type=\"input\">\\0000</item>. Định dạng này có thể được gán trong trường <emph>Mã định dạng</emph> dưới <emph>Định dạng > Ô > (thẻ) Số</emph>, và quy định hiển thị ô dạng « luôn đặt một số 0 lên đầu và sau đó đến số nguyên, có ít nhất 3 lần số, không thì điền bằng số không bên trái »."
+msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
+msgstr "Chọn lệnh <emph>Định dạng > Định dạng có điều kiện</emph>."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3153158\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153013\n"
"58\n"
"help.text"
-msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
-msgstr "Nếu bạn muốn ứng dụng một định dạng số vào một cột các số trong định dạng văn bản (ví dụ, văn bản « 000123 » trở thành số « 123 »), hãy làm như sau:"
-
-#: integer_leading_zero.xhp
-msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3149377\n"
-"59\n"
-"help.text"
-msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
-msgstr "Chọn cột có các ký số được tìm thấy trong định dạng văn bản. Đặt định dạng ô trong cột đó thành « Số »."
-
-#: integer_leading_zero.xhp
-msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154944\n"
-"60\n"
-"help.text"
-msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr ""
+msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
+msgstr "Đặt các điều kiện như sau: nếu giá trị của ô nhỏ hơn J14, dùng kiểu dáng ô « Dưới », và nếu giá trị ô lớn hơn hoặc bằng J14, dùng kiểu dáng « Trên »."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154510\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3155761\n"
"61\n"
"help.text"
-msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item>"
-msgstr "Trong hộp <emph>Tìm kiếm</emph>, nhập <item type=\"input\">^[0-9]</item>"
+msgid "Step 5: Copy Cell Style"
+msgstr "Bước 5: Chép kiểu dáng ô"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3155068\n"
+"cellstyle_conditional.xhp\n"
+"par_id3145320\n"
"62\n"
"help.text"
-msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
-msgstr "Trong hộp <emph>Thay thế bằng</emph>, nhập <item type=\"input\">&</item>"
+msgid "To apply the conditional formatting to other cells later:"
+msgstr "Để áp dụng kiểu dáng có điều kiện cho các ô khác sau đó:"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3149018\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153074\n"
"63\n"
"help.text"
-msgid "Check <emph>Regular expressions</emph>"
-msgstr ""
+msgid "Click one of the cells that has been assigned conditional formatting."
+msgstr "Bấm vào một ô đã được định dạng bằng lệnh Định dạng có điều kiện."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3156382\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149051\n"
"64\n"
"help.text"
-msgid "Check <emph>Current selection only</emph>"
-msgstr ""
+msgid "Copy the cell to the clipboard."
+msgstr "Chép ô đó vào trong bảng nháp."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3146916\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150436\n"
"65\n"
"help.text"
-msgid "Click <emph>Replace All</emph>"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"tit\n"
-"help.text"
-msgid "Referencing a Cell in Another Document"
-msgstr "Tham chiếu một ô trong tài liệu khác"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"bm_id3147436\n"
-"help.text"
-msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
-msgstr "<bookmark_value>tham chiếu bảng</bookmark_value> <bookmark_value>tham chiếu; tới các ô trong bảng/tài liệu khác</bookmark_value> <bookmark_value>ô; tác động trong tài liệu khác</bookmark_value> <bookmark_value>tài liệu;tham chiếu</bookmark_value>"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"hd_id3147436\n"
-"9\n"
-"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
-msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Tham chiếu tới các bảng khác\">Tham chiếu tới các bảng khác</link></variable>"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id9663075\n"
-"help.text"
-msgid "In a sheet cell you can show a reference to a cell in another sheet."
-msgstr "Trong một ô, bạn có thể đặt một tham chiếu tới một ô trong bảng khác."
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id1879329\n"
-"help.text"
-msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
-msgstr "Làm tương tự, ta có thể tạo tham chiếu tới một ô trong một tài liệu khác, miễn là tài liệu đó đã được lưu thành 1 tập tin."
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"hd_id7122409\n"
-"help.text"
-msgid "To Reference a Cell in the Same Document"
-msgstr "Tham chiếu một ô trong cùng tài liệu"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id2078005\n"
-"help.text"
-msgid "Open a new, empty spreadsheet."
-msgstr "Mở một bảng tính mới, chưa có gì."
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id4943693\n"
-"help.text"
-msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
-msgstr "Để lấy ví dụ, hãy nhập công thức sau trong ô A1 của Bảng1:"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id9064302\n"
-"help.text"
-msgid "<item type=\"literal\">=Sheet2.A1</item>"
-msgstr "<item type=\"literal\">=Sheet2.A1</item>"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id7609790\n"
-"help.text"
-msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
-msgstr "Chọn thẻ <emph>Bảng2</emph> ở dưới bảng tính. Đặt con trỏ trong ô A1 và nhập vào một văn bản hoặc một con số."
+msgid "Select the cells that are to receive this same formatting."
+msgstr "Chọn các ô cần có định dạng này."
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id809961\n"
+"cellstyle_conditional.xhp\n"
+"par_id3147298\n"
+"66\n"
"help.text"
-msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
-msgstr "Nếu bạn chuyển lại về Bảng1, bạn sẽ thấy nội dung của ô A1 tại đó. Nếu nội dung của Bảng2.A1 bị thay đổi, nội dung của Bảng1.A1 cũng thay đổi theo."
+msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
+msgstr "Chọn <emph>Sửa > Dán đặc biệt</emph>. Hộp thoại <emph>Dán đặc biệt</emph> xuất hiện."
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"hd_id9209570\n"
+"cellstyle_conditional.xhp\n"
+"par_id3166465\n"
+"67\n"
"help.text"
-msgid "To Reference a Cell in Another Document"
-msgstr "Tham chiếu một ô trong tài liệu khác"
+msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
+msgstr "Trong phần <emph>Lựa chọn</emph>, chỉ đánh dấu hộp <emph>Định dạng</emph>. Tất cả các hộp khác, ta bỏ không đánh dấu. Nhấn <emph>OK</emph>."
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id5949278\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159123\n"
+"68\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
-msgstr "Chọn <emph>Tập tin > Mở</emph> để mở một tài liệu bảng tính đã có."
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Định dạng - Định dạng có điều kiện\">Định dạng > Định dạng có điều kiện</link>"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8001953\n"
+"cellstyle_minusvalue.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
-msgstr "Chọn <emph>Tập tin > Mới</emph> để tạo một tài liệu bảng tính mới. Đặt con trỏ trong ô mà bạn muốn chèn dữ liệu bên ngoài vào, và nhập dấu bằng để bắt đầu viết công thức."
+msgid "Highlighting Negative Numbers"
+msgstr "Tô sáng các số âm"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8571123\n"
+"cellstyle_minusvalue.xhp\n"
+"bm_id3147434\n"
"help.text"
-msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
-msgstr "Giờ chuyển về tài liệu đã mở trước đó. Chọn ô có chứa dữ liệu cần chèn vào tài liệu mới."
+msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
+msgstr "<bookmark_value>số âm</bookmark_value><bookmark_value>số; tô sáng các số âm</bookmark_value><bookmark_value>tô sáng;số âm</bookmark_value><bookmark_value>màu;định dạng số</bookmark_value><bookmark_value>định dạng số;màu</bookmark_value>"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8261665\n"
+"cellstyle_minusvalue.xhp\n"
+"hd_id3147434\n"
+"31\n"
"help.text"
-msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
-msgstr "Chuyển ngược về bảng tính mới. Trong dòng nhập công thức, bạn sẽ thấy $[officename] Calc đã tự động thêm vào công thức chuỗi tham chiếu tới ô vừa chọn."
+msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
+msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Tô sáng các số âm\">Tô sáng các số âm</link></variable>"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id5888241\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3153878\n"
+"33\n"
"help.text"
-msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
-msgstr "Tham chiếu tới một ô trong tài liệu khác sẽ bao gồm tên tài liệu đó trong dấu nháy đơn, theo sau là dấu thăng #, sau đó tên của bảng tính trong tài liệu đó cùng với tên ô, ngăn cách bởi dấu chấm."
+msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
+msgstr "Bạn có thể định dạng các ô chứa số với một số định dạng số để tô đỏ các số âm. Hoặc, bạn có thể đặt định dạng số riêng của mình trong đó các số âm được tô sáng với một màu khác."
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id7697683\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3155600\n"
+"34\n"
"help.text"
-msgid "Confirm the formula by clicking the green check mark."
-msgstr "Xác nhận công thức bằng cách bấm vào dấu kiểm màu xanh lục."
+msgid "Select the cells and choose <emph>Format - Cells</emph>."
+msgstr "Chọn các ô và chọn <emph>Định dạng > Các ô</emph>."
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id7099826\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3146969\n"
+"35\n"
"help.text"
-msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
-msgstr "Nếu bạn kéo hộp trong góc dưới bên phải của ô hiện hành để chọn một phạm vi, $[officename] tự động chèn các tham chiếu tương ứng với các ô bên cạnh. Kết quả là tên bảng sẽ được bắt đầu bằng dấu đô-la « $ » để báo hiệu đây là một tham chiếu tuyệt đối."
+msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
+msgstr "Trong thẻ <emph>Số</emph>, chọn một định dạng số và đánh dấu hộp kiểm <emph>Số âm màu đỏ</emph>. Nhấn <emph>OK</emph>."
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id674459\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3145640\n"
+"36\n"
"help.text"
-msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
-msgstr "Nếu bạn xem xét tên của tài liệu khác trong công thức, bạn sẽ nhận ra rằng nó được viết dưới dạng địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. Điều này có nghĩa là bạn cũng có thể nhập vào một địa chỉ URL từ Internet."
+msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
+msgstr "Định dạng số của ô được định trong hai thành phần. Định dạng cho các số dương (gồm có số không) được đặt trước dấu chấm phẩy; sau dấu chấm phẩy là phần công thức chỉ định cho các số âm. Bạn có thể thay đổi mã (RED) trong phần <emph>Mã định dạng</emph>. Ví dụ, thay vì \"RED\" (Đỏ), hãy nhập \"YELLOW\" (vàng). Nếu như mã mới xuất hiện trong danh sách sau khi nhấn biểu tượng <emph>Thêm</emph>, thì mã được nhập đã hợp lệ."
#: consolidate.xhp
msgctxt ""
@@ -5921,768 +3501,869 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Nhập tập tin văn bản\">Nhập tập tin văn bản</link>"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
+"csv_formula.xhp\n"
"tit\n"
"help.text"
-msgid "Filter: Applying Advanced Filters"
-msgstr "Lọc : Ứng dụng bộ lọc cấp cao"
+msgid "Importing and Exporting Text Files"
+msgstr "Nhập và xuất các tập tin văn bản"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"bm_id3148798\n"
+"csv_formula.xhp\n"
+"bm_id3153726\n"
"help.text"
-msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
-msgstr "<bookmark_value>lọc;xác định các bộ lọc cấp cao</bookmark_value><bookmark_value>bộ lọc cấp cao</bookmark_value><bookmark_value>xác định; bộ lọc cấp cao</bookmark_value><bookmark_value>phạm vi cơ sở dữ liệu;bộ lọc cấp cao</bookmark_value>"
+msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
+msgstr "<bookmark_value>tập tin csv;công thức</bookmark_value><bookmark_value>công thức; xuất nhập dưới dạng csv</bookmark_value><bookmark_value>xuất, công thức dưới dạng csv</bookmark_value><bookmark_value>nhập, tập tin csv chứa công thức</bookmark_value>"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"hd_id3148798\n"
+"csv_formula.xhp\n"
+"hd_id3153726\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
+msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Nhập và xuất các tập tin văn bản\">Nhập và xuất các tập tin văn bản</link></variable>"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149402\n"
+"2\n"
+"help.text"
+msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
+msgstr "Các tập tin CSV (Comma Separated Values) là những văn bản chứa nội dung các ô trong một bảng tính. Dấu phẩy, dấu chấm phẩy hoặc một ký tự đặc biệt thường được dùng để ngăn cách các ô với nhau. Các chuỗi văn bản được đưa vào trong các dấu ngoặc, còn các giá trị số thì để nguyên."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"hd_id3150715\n"
+"15\n"
+"help.text"
+msgid "To Import a CSV File"
+msgstr "Nhập khẩu một tập tin CSV"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153709\n"
+"16\n"
+"help.text"
+msgid "Choose <emph>File - Open</emph>."
+msgstr "Chọn <emph>Tập tin > Mở</emph>."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155445\n"
+"17\n"
+"help.text"
+msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
+msgstr "Trong phần <emph>Kiểu tập tin</emph>, hãy chọn định dạng « Văn bản CSV ». Chọn tập tin và nhấn <emph>Mở</emph>. Khi một tập tin có đuôi là « .csv », kiểu tập tin sẽ được tự động nhận ra."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149565\n"
"18\n"
"help.text"
-msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
-msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Lọc: áp dụng bộ lọc cấp cao\">Lọc: áp dụng bộ lọc cấp cao</link></variable>"
+msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
+msgstr "Bạn sẽ thấy hộp thoại <item type=\"menuitem\">Nhập khẩu văn bản</item>. Nhấn <item type=\"menuitem\">OK</item>."
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145785\n"
+"csv_formula.xhp\n"
+"par_id3149255\n"
"19\n"
"help.text"
-msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
-msgstr "chép phần đầu cột của vùng trang sẽ được lọc sang một vùng trống của trang, sau đó nhập tiêu chuẩn cho lọc trong một hàng bên dưới phần đầu trang. Dữ liệu được sắp xếp theo chiều ngang trong một hàng sẽ luôn được nối với AND còn dữ liệu được sắp xếp theo chiều dọc trong một cột thường được nối với OR"
+msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153142\n"
+"csv_formula.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "To Export Formulas and Values as CSV Files"
+msgstr "Xuất công thức và giá trị thành tập tin CSV"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150342\n"
+"4\n"
+"help.text"
+msgid "Click the sheet to be written as a csv file."
+msgstr "Bấm vào bảng cần chuyển thành tập tin csv."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3166423\n"
+"5\n"
+"help.text"
+msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
+msgstr "Nếu bạn muốn xuất các công thức dưới dạng công thức, ví dụ như dạng « =SUM(A1:B5) », hãy làm theo các bước sau:"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155111\n"
+"6\n"
+"help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150200\n"
+"7\n"
+"help.text"
+msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
+msgstr "Trong phần <emph>Hiển thị</emph>, đánh dấu hộp <emph>Công thức</emph>. Nhấn <emph>OK</emph>."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3154484\n"
+"8\n"
+"help.text"
+msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
+msgstr "Nếu bạn cần xuất các kết quả tính toán thay vì công thức, hãy bỏ dấu kiểm trong hộp <emph>Công thức</emph>."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3148702\n"
+"9\n"
+"help.text"
+msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
+msgstr "Chọn <emph>Tập tin > Lưu dạng</emph>. Hộp thoại <emph>Lưu dạng</emph> sẽ hiện ra."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153912\n"
+"10\n"
+"help.text"
+msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
+msgstr "Trong trường <item type=\"menuitem\">Kiểu tập tin</item> chọn định dạng \"Văn bản CSV\"."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3157978\n"
+"13\n"
+"help.text"
+msgid "Enter a name and click <emph>Save</emph>."
+msgstr "Nhập tên và nhấn <emph>Lưu</emph>."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3152869\n"
+"23\n"
+"help.text"
+msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
+msgstr "Trong hộp thoại <emph>Xuất tập tin văn bản</emph> hiện ra, hãy chọn bộ ký tự mã hoá và các ký tự ngăn cách trường và văn bản cho dữ liệu xuất ra, sau đó nhấn <emph>OK</emph>."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150050\n"
+"14\n"
+"help.text"
+msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
+msgstr "Nếu cần, sau khi lưu lại tập tin, hãy bỏ hộp kiểm <emph>Công thức</emph> để hiển thị lại các kết quả tính được trong bảng."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153487\n"
"20\n"
"help.text"
-msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
-msgstr "Khi bạn đã tạo ra một ma trận lọc, hãy chọn vùng trang để lọc. Mở hộp thoại <emph>Lọc cấp cao</emph> bằng cách chọn <emph>Dữ liệu > Lọc > Lọc cấp cao</emph>, và xác định các điều kiện lọc."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153726\n"
+"csv_formula.xhp\n"
+"par_id3153008\n"
"21\n"
"help.text"
-msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
-msgstr "Sau đó nhấn <emph>OK</emph>, và bạn sẽ nhận thấy rằng chỉ có những hàng từ trang gốc đáp ứng các tiêu chuẩn tìm kiếm là vẫn hiển thị. Tất cả các hàng khác tạm thời bị ẩn đi và có thể được xuất hiện bằng lệnh <emph>Định dạng > Hàng > Hiển thị</emph>."
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Xuất tập tin văn bản\">Xuất tập tin văn bản</link>"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149664\n"
+"csv_formula.xhp\n"
+"par_id3155595\n"
"22\n"
"help.text"
-msgid "<emph>Example</emph>"
-msgstr "<emph>Ví dụ</emph>"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
+msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Nhập tập tin văn bản\">Nhập tập tin văn bản</link>"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147427\n"
-"23\n"
+"currency_format.xhp\n"
+"tit\n"
"help.text"
-msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
-msgstr "Nạp một bảng tính với một lượng lớn các bản ghi. Ta sẽ dùng tài liệu giả thuyết <emph>Doanh thu</emph>, tuy nhiên bạn có thể dùng bất kì một tài liệu nào. Tài liệu này có cách sắp đặt như sau:"
+msgid "Cells in Currency Format"
+msgstr "Các ô ở dạng tiền tệ"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154510\n"
-"24\n"
+"currency_format.xhp\n"
+"bm_id3156329\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "<emph>A</emph>"
+msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
+msgstr "<bookmark_value>dạng tiền tệ; bảng tính</bookmark_value><bookmark_value>ô; định dạng tiền tệ</bookmark_value><bookmark_value>định dạng tiền tệ quốc tế</bookmark_value><bookmark_value>định dạng; định dạng tiền tệ trong ô</bookmark_value><bookmark_value>tiền tệ; tiền tệ mặc định</bookmark_value><bookmark_value>mặc định;định dạng tiền tệ</bookmark_value><bookmark_value>thay đổi;định dạng tiền tệ</bookmark_value>"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150327\n"
-"25\n"
+"currency_format.xhp\n"
+"hd_id3156329\n"
+"46\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "<emph>B</emph>"
+msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
+msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Các ô có định dạng tiền tệ\">Các ô có định dạng tiền tệ</link></variable>"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154756\n"
-"26\n"
+"currency_format.xhp\n"
+"par_id3153968\n"
+"47\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "<emph>C</emph>"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
+msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155335\n"
-"27\n"
+"currency_format.xhp\n"
+"par_id3150010\n"
+"48\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "<emph>D</emph>"
+msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
+msgstr "Việc trao đổi các tài liệu <item type=\"productname\">%PRODUCTNAME</item> Calc có thể gây hiểu lầm, nếu tài liệu <item type=\"productname\">%PRODUCTNAME</item> Calc của bạn được mở trên một máy có sử dụng đinh dạng tiền tệ khác."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146315\n"
-"28\n"
+"currency_format.xhp\n"
+"par_id3156442\n"
+"52\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "<emph>E</emph>"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
+msgstr "Trong <item type=\"productname\">%PRODUCTNAME</item> Calc bạn có thể thiết lập sao cho một giá trị số ở dạng tiền tệ như « 1,234.50 € » (đồng Âu), sẽ được giữ nguyên ở dạng Euro mà không trở thành dollar trên một máy khác."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145790\n"
-"29\n"
+"currency_format.xhp\n"
+"par_id3151075\n"
+"49\n"
"help.text"
-msgid "<emph>1</emph>"
-msgstr "<emph>1</emph>"
+msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
+msgstr "Bạn có thể thay đổi định dạng tiền tệ trong hộp thoại <item type=\"menuitem\">Định dạng ô</item> (chọn tab <item type=\"menuitem\">Định dạng - Ô - Số</item>) theo hai thiết đặt quốc gia. Trong hộp tổ hợp <item type=\"menuitem\">Ngôn ngữ</item> chọn thiết đặt cơ bản cho dấu phân cách phần thập phân và phần ngàn. Trong hộp danh sách <item type=\"menuitem\">Định dạng</item> kí hiệu tiền tệ và vị trí của nó."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3159239\n"
-"30\n"
+"currency_format.xhp\n"
+"par_id3150749\n"
+"50\n"
"help.text"
-msgid "Month"
-msgstr "Tháng"
+msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
+msgstr "Ví dụ, nếu ngôn ngữ được đặt là \"Mặc định\" và bạn dùng thiết lập tiếng Đức trên hệ thống, thì định dạng tiền tệ sẽ là \"1.234,00 €\". Dấu chấm được dùng trước các con số hàng nghìn, và dấu phẩy ngăn cách hàng đơn vị. Nếu bạn chọn mục \"$ Anh (Mỹ)\" trong danh sách <emph>Định dạng</emph>, bạn sẽ thu được định dạng sau: \"$ 1.234,00\". Như bạn thấy, dấu ngăn cách vẫn được giữ nguyên, chỉ có ký hiệu tiền tệ là được thay thế, nhưng định dạng chú thích vẫn là như cũ theo thiết lập bản địa hóa."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150086\n"
-"31\n"
+"currency_format.xhp\n"
+"par_id3145640\n"
+"51\n"
"help.text"
-msgid "Standard"
-msgstr "Chuẩn"
+msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
+msgstr "Nếu trong phần <emph>Ngôn ngữ</emph>, bạn chuyển các ô thành thiết lập \"Anh (Mỹ)\", thì các thiết lập của vùng địa lý Anh-Mỹ sẽ được dùng và định dạng tiền tệ mặc định sẽ thành \"$ 1,234.00\"."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150202\n"
-"32\n"
+"currency_format.xhp\n"
+"par_id3154255\n"
+"53\n"
"help.text"
-msgid "Business"
-msgstr "Kinh doanh"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150883\n"
-"33\n"
+"database_define.xhp\n"
+"tit\n"
"help.text"
-msgid "Luxury"
-msgstr "Hàng xa xỉ"
+msgid "Defining Database Ranges"
+msgstr "Đặt phạm vi cho cơ sở dữ liệu"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3152987\n"
-"34\n"
+"database_define.xhp\n"
+"bm_id3154758\n"
"help.text"
-msgid "Suite"
-msgstr "Bộ"
+msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
+msgstr "<bookmark_value>bảng; phạm vi CSDL</bookmark_value><bookmark_value>phạm vi CSDL; xác định</bookmark_value><bookmark_value>phạm vi; xác định phạm vi CSDL</bookmark_value><bookmark_value>xác định;phạm vi CSDL</bookmark_value>"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154486\n"
-"35\n"
+"database_define.xhp\n"
+"hd_id3154758\n"
+"31\n"
"help.text"
-msgid "<emph>2</emph>"
-msgstr "<emph>2</emph>"
+msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
+msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Xác định phạm vi CSDL\">Xác định phạm vi Cơ sở dữ liệu</link></variable>"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3148839\n"
-"36\n"
+"database_define.xhp\n"
+"par_id3153768\n"
+"81\n"
"help.text"
-msgid "January"
-msgstr "Tháng Giêng"
+msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
+msgstr "Bạn có thể đặt một phạm vi các ô trong bảng thành một cơ sở dữ liệu. Mỗi một hàng trong phạm vi CSDL này tương ứng với một bản ghi và mỗi ô tương ứng với một trường. Bạn có thể sắp xếp, nhóm lại, tìm kiếm và thực hiện các phép tính toán trên phạm vi đã chọn đúng như trong CSDL."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153816\n"
-"37\n"
+"database_define.xhp\n"
+"par_id3145801\n"
+"82\n"
"help.text"
-msgid "125600"
-msgstr "125600"
+msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
+msgstr "Bạn chỉ có thể sửa và truy cập vào phạm vi CSDL trong một bảng có chứa phạm vi. Bạn không thể truy cập vào phạm vi CSDL trong khi xem Nguồn Dữ liệu %PRODUCTNAME ."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3157978\n"
-"38\n"
+"database_define.xhp\n"
+"par_idN10648\n"
"help.text"
-msgid "200500"
-msgstr "200500"
+msgid "To define a database range"
+msgstr "Để đặt Phạm vi cho Cơ sở dữ liệu"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155268\n"
-"39\n"
+"database_define.xhp\n"
+"par_id3155064\n"
+"41\n"
"help.text"
-msgid "240000"
-msgstr "240000"
+msgid "Select the range of cells that you want to define as a database range."
+msgstr "Chọn phạm vi các ô mà bạn muốn đặt làm phạm vi CSDL."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153286\n"
-"40\n"
+"database_define.xhp\n"
+"par_idN10654\n"
"help.text"
-msgid "170000"
-msgstr "170000"
+msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
+msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Xác định phạm vi</item>."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146782\n"
-"41\n"
+"database_define.xhp\n"
+"par_id3153715\n"
+"72\n"
"help.text"
-msgid "<emph>3</emph>"
-msgstr "<emph>3</emph>"
+msgid "In the <emph>Name</emph> box, enter a name for the database range."
+msgstr "Trong hộp <emph>Tên</emph>, nhập một tên cho phạm vi CSDL."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149900\n"
-"42\n"
+"database_define.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "February"
-msgstr "Tháng Hai"
+msgid "Click <emph>More</emph>."
+msgstr "Chọn <emph>Thêm</emph>."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154763\n"
-"43\n"
+"database_define.xhp\n"
+"par_id3154253\n"
+"42\n"
"help.text"
-msgid "160000"
-msgstr "160000"
+msgid "Specify the options for the database range."
+msgstr "Đặt các tuỳ chọn cho phạm vi CSDL."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150050\n"
-"44\n"
+"database_define.xhp\n"
+"par_idN10675\n"
"help.text"
-msgid "180300"
-msgstr "180300"
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153801\n"
-"45\n"
+"database_filter.xhp\n"
+"tit\n"
"help.text"
-msgid "362000"
-msgstr "362000"
+msgid "Filtering Cell Ranges"
+msgstr "Lọc phạm vi các ô"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154708\n"
-"46\n"
+"database_filter.xhp\n"
+"bm_id3153541\n"
"help.text"
-msgid "220000"
-msgstr "220000"
+msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
+msgstr "<bookmark_value>phạm vi ô;áp dụng/gỡ bỏ bộ lọc</bookmark_value><bookmark_value>lọc;phạm vi ô/phạm vi cơ sở dữ liệu</bookmark_value><bookmark_value>phạm vi cơ sở dữ liệu;áp dụng/gỡ bỏ bộ lọc</bookmark_value><bookmark_value>gỡ bỏ;bộ lọc phạm vi ô</bookmark_value>"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3151191\n"
+"database_filter.xhp\n"
+"hd_id3153541\n"
"47\n"
"help.text"
-msgid "<emph>4</emph>"
-msgstr "<emph>4</emph>"
+msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
+msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Lọc phạm vi ô\">Lọc phạm vi ô</link></variable>"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147250\n"
+"database_filter.xhp\n"
+"par_id3145069\n"
"48\n"
"help.text"
-msgid "March"
-msgstr "Tháng Ba"
+msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
+msgstr "Bạn có thể dùng nhiều bộ lọc để lọc các phạm vi ô trong bảng tính. Một bộ lọc chuẩn có các tuỳ chọn mà bạn chỉ định để lọc dữ liệu. Một bộ lọc Tự động lọc dữ liệu theo một giá trị hoặc chuỗi được chỉ định. Một bộ lọc nâng cao dùng các tiêu chuẩn hình thành từ nhiều ô khác nhau."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153334\n"
-"49\n"
+"database_filter.xhp\n"
+"par_idN10682\n"
"help.text"
-msgid "170000"
-msgstr "170000"
+msgid "To Apply a Standard Filter to a Cell Range"
+msgstr "Để áp dụng một bộ lọc chuẩn cho một phạm vi các ô"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3151391\n"
+"database_filter.xhp\n"
+"par_id3150398\n"
"50\n"
"help.text"
-msgid "and so on..."
-msgstr "và vân vân."
+msgid "Click in a cell range."
+msgstr "Chọn phạm vi các ô cần áp dụng."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147300\n"
+"database_filter.xhp\n"
+"par_idN10693\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
+msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Lọc > Bộ lọc Chuẩn</item>."
+
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3156422\n"
"51\n"
"help.text"
-msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
-msgstr "Ví dụ: Chép hàng 1 cùng các phần đầu (tên trường) tới hàng 20. Nhập các điều kiện lọc liên kết với OR (hoặc) trong hàng 21, 22, vân vân."
+msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
+msgstr "Trong hộp thoại <emph>Bộ lọc chuẩn</emph>, chọn các tuỳ chọn lọc mà bạn cần."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3159115\n"
+"database_filter.xhp\n"
+"par_idN106A5\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
+
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3153143\n"
"52\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "<emph>A</emph>"
+msgid "The records that match the filter options that you specified are shown."
+msgstr "Chỉ có các bản ghi thoả mãn điều kiện của bộ lọc mới được hiển thị."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146886\n"
+"database_filter.xhp\n"
+"par_id3153728\n"
"53\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "<emph>B</emph>"
+msgid "To Apply an AutoFilter to a Cell Range"
+msgstr "Để áp dụng chế độ Tự động Lọc cho một Phạm vi các ô"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153124\n"
+"database_filter.xhp\n"
+"par_id3144764\n"
"54\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "<emph>C</emph>"
+msgid "Click in a cell range or a database range."
+msgstr "Chọn phạm vi ô hoặc phạm vi cơ sở dữ liệu cần xử lý."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3152979\n"
-"55\n"
+"database_filter.xhp\n"
+"par_id9303872\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "<emph>D</emph>"
+msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
+msgstr "Nếu bạn muốn áp dụng nhiều lần chức năng Tự động Lọc lên cùng một bảng, trước hết bạn phải đặt phạm vi cơ sở dữ liệu rồi mới áp dụng Tự động Lọc lên phạm vi đó."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145827\n"
-"56\n"
+"database_filter.xhp\n"
+"par_id3154944\n"
+"55\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "<emph>E</emph>"
+msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
+msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Lọc > Tự động Lọc</item>."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149892\n"
-"57\n"
+"database_filter.xhp\n"
+"par_idN106DB\n"
"help.text"
-msgid "<emph>20</emph>"
-msgstr "<emph>20</emph>"
+msgid "An arrow button is added to the head of each column in the database range."
+msgstr "Một nút mũi tên sẽ xuất hiện trên đầu mỗi cột nằm trong phạm vi CSDL."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150693\n"
-"58\n"
+"database_filter.xhp\n"
+"par_id3153878\n"
+"56\n"
"help.text"
-msgid "Month"
-msgstr "Tháng"
+msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
+msgstr "Bấm vào nút mũi tên trên cột có chứa các giá trị hoặc chuỗi mà bạn muốn dùng làm tiêu chuẩn của bộ lọc."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147475\n"
-"59\n"
+"database_filter.xhp\n"
+"par_idN10749\n"
"help.text"
-msgid "Standard"
-msgstr "Chuẩn"
+msgid "Select the value or string that you want to use as the filter criteria."
+msgstr "Chọn giá trị hay chuỗi mà bạn muốn dùng làm tiêu chuẩn để lọc."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154846\n"
-"60\n"
+"database_filter.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "Business"
-msgstr "Kinh doanh"
+msgid "The records that match the filter criteria that you selected are shown."
+msgstr "Các bản ghi phù hợp với tiêu chuẩn lọc mà bạn chọn sẽ được hiển thị."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153082\n"
-"61\n"
+"database_filter.xhp\n"
+"par_idN106E8\n"
"help.text"
-msgid "Luxury"
-msgstr "Hàng xa xỉ"
+msgid "To Remove a Filter From a Cell Range"
+msgstr "Để xoá một bộ lọc khỏi phạm vi các ô"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149506\n"
-"62\n"
+"database_filter.xhp\n"
+"par_idN1075C\n"
"help.text"
-msgid "Suite"
-msgstr "Bộ"
+msgid "Click in a filtered cell range."
+msgstr "Chọn phạm vi các ô được lọc."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149188\n"
-"63\n"
+"database_filter.xhp\n"
+"par_idN106EC\n"
"help.text"
-msgid "<emph>21</emph>"
-msgstr "<emph>21</emph>"
+msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
+msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Lọc > Bỏ bộ lọc</item>."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149956\n"
-"64\n"
+"database_filter.xhp\n"
+"par_id4525284\n"
"help.text"
-msgid "January"
-msgstr "Tháng Giêng"
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr ""
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150865\n"
-"65\n"
+"database_sort.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>22</emph>"
-msgstr "<emph>22</emph>"
+msgid "Sorting Data"
+msgstr "Dữ liệu sắp thứ tự"
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155957\n"
-"66\n"
+"database_sort.xhp\n"
+"bm_id3150767\n"
"help.text"
-msgid "<160000"
-msgstr "<160000"
+msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
+msgstr "<bookmark_value>vùng cơ sở dữ liệu; sắp xếp</bookmark_value><bookmark_value>sắp xếp; vùng cơ sở dữ liệu</bookmark_value><bookmark_value>dữ liệu;sắp xếp trong cơ sở dữ liệu</bookmark_value>"
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153566\n"
-"67\n"
+"database_sort.xhp\n"
+"hd_id3150767\n"
+"44\n"
"help.text"
-msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
-msgstr "Chỉ rõ rằng chỉ có các hàng có giá trị <item type=\"literal\">Tháng Giêng</item> trong các ô <emph>Tháng</emph> OR (hoặc) một giá trị thấp hơn 160000 trong các ô <emph>Chuẩn</emph> sẽ được hiển thị."
+msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
+msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sắp xếp vùng cơ sở dữ liệu\">Sắp xếp vùng cơ sở dữ liệu</link></variable>"
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147372\n"
-"68\n"
+"database_sort.xhp\n"
+"par_id3145751\n"
+"45\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
-msgstr "Chọn <emph>Dữ liệu > Lọc > Lọc cấp cao</emph>, sau đó chọn vùng «A20:E22 ». Sau khi nhấn <emph>OK</emph>, chỉ có các hàng được lọc mới được hiển thị. Các hàng khác sẽ bị ẩn đi."
+msgid "Click in a database range."
+msgstr "Bấm vào một vùng cơ sở dữ liệu."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"tit\n"
+"database_sort.xhp\n"
+"par_id121020081121549\n"
"help.text"
-msgid "Importing and Exporting Text Files"
-msgstr "Nhập và xuất các tập tin văn bản"
+msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
+msgstr "Nếu bạn chọn một vùng các ô, chỉ các ô này sẽ được sắp thứ tự. Nếu bạn nhắp vào một ô hiện không được chọn, thì toàn bộ vùng cơ sở dữ liệu sẽ được sắp thứ tự"
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"bm_id3153726\n"
+"database_sort.xhp\n"
+"par_idN10635\n"
"help.text"
-msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
-msgstr "<bookmark_value>tập tin csv;công thức</bookmark_value><bookmark_value>công thức; xuất nhập dưới dạng csv</bookmark_value><bookmark_value>xuất, công thức dưới dạng csv</bookmark_value><bookmark_value>nhập, tập tin csv chứa công thức</bookmark_value>"
+msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
+msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Sắp xếp</item>."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3153726\n"
-"1\n"
+"database_sort.xhp\n"
+"par_id121020081121547\n"
"help.text"
-msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
-msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Nhập và xuất các tập tin văn bản\">Nhập và xuất các tập tin văn bản</link></variable>"
+msgid "The range of cells that will get sorted is shown in inverted colors."
+msgstr "Vùng các ô sẽ được sắp thứ tự được hiển thị đảo màu"
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149402\n"
-"2\n"
+"database_sort.xhp\n"
+"par_idN10645\n"
"help.text"
-msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
-msgstr "Các tập tin CSV (Comma Separated Values) là những văn bản chứa nội dung các ô trong một bảng tính. Dấu phẩy, dấu chấm phẩy hoặc một ký tự đặc biệt thường được dùng để ngăn cách các ô với nhau. Các chuỗi văn bản được đưa vào trong các dấu ngoặc, còn các giá trị số thì để nguyên."
+msgid "Select the sort options that you want."
+msgstr "Chọn tuỳ chọn sắp xếp mà bạn cần."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3150715\n"
-"15\n"
+"database_sort.xhp\n"
+"par_idN1063D\n"
"help.text"
-msgid "To Import a CSV File"
-msgstr "Nhập khẩu một tập tin CSV"
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153709\n"
-"16\n"
+"database_sort.xhp\n"
+"par_id1846980\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>."
-msgstr "Chọn <emph>Tập tin > Mở</emph>."
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr ""
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155445\n"
-"17\n"
+"datapilot.xhp\n"
+"tit\n"
"help.text"
-msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
-msgstr "Trong phần <emph>Kiểu tập tin</emph>, hãy chọn định dạng « Văn bản CSV ». Chọn tập tin và nhấn <emph>Mở</emph>. Khi một tập tin có đuôi là « .csv », kiểu tập tin sẽ được tự động nhận ra."
+msgid "Pivot Table"
+msgstr "Xẻ bảng"
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149565\n"
-"18\n"
+"datapilot.xhp\n"
+"bm_id3150448\n"
"help.text"
-msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
-msgstr "Bạn sẽ thấy hộp thoại <item type=\"menuitem\">Nhập khẩu văn bản</item>. Nhấn <item type=\"menuitem\">OK</item>."
+msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
+msgstr "<bookmark_value>chức năng DataPilot; giới thiệu</bookmark_value><bookmark_value>bảng Trọng tâm, xem chức năng DataPilot</bookmark_value>"
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149255\n"
-"19\n"
+"datapilot.xhp\n"
+"hd_id3150448\n"
+"7\n"
"help.text"
-msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
-msgstr ""
+msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
+msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"DataPilot\">DataPilot</link></variable>"
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3154022\n"
-"3\n"
+"datapilot.xhp\n"
+"par_id3156024\n"
+"2\n"
"help.text"
-msgid "To Export Formulas and Values as CSV Files"
-msgstr "Xuất công thức và giá trị thành tập tin CSV"
+msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
+msgstr "Chức năng <emph>DataPilot</emph> (còn gọi là <emph>Bảng Trọng Tâm</emph>) cho phép bạn kết hợp, so sánh và phân tích một khối lượng lớn dữ liệu. Bạn có thể xem nhiều kết luận từ các nguồn dữ liệu khác nhau, và hiển thị chi tiết các vùng cần lưu ý, và tạo các báo cáo dựa trên đó."
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150342\n"
-"4\n"
+"datapilot.xhp\n"
+"par_id3145069\n"
+"9\n"
"help.text"
-msgid "Click the sheet to be written as a csv file."
-msgstr "Bấm vào bảng cần chuyển thành tập tin csv."
+msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
+msgstr "Một bảng được tạo bằng chức năng <link href=\"text/scalc/01/12090000.xhp\" name=\"DataPilot\">DataPilot</link> là một bảng tương tác. Dữ liệu có thể được sắp xếp, phân bố lại hoặc tổng hợp lại theo nhiều cách khác nhau."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3166423\n"
-"5\n"
+"datapilot_createtable.xhp\n"
+"tit\n"
"help.text"
-msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
-msgstr "Nếu bạn muốn xuất các công thức dưới dạng công thức, ví dụ như dạng « =SUM(A1:B5) », hãy làm theo các bước sau:"
+msgid "Creating Pivot Tables"
+msgstr "Tạo các bảng DataPilot"
-#: csv_formula.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155111\n"
-"6\n"
+"datapilot_createtable.xhp\n"
+"bm_id3148491\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
-msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
+msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
+msgstr "<bookmark_value>Bảng DataPilot</bookmark_value><bookmark_value>chức năng DataPilot; gọi và áp dụng</bookmark_value>"
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150200\n"
+"datapilot_createtable.xhp\n"
+"hd_id3148491\n"
"7\n"
"help.text"
-msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
-msgstr "Trong phần <emph>Hiển thị</emph>, đánh dấu hộp <emph>Công thức</emph>. Nhấn <emph>OK</emph>."
+msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Tạo các bảng DataPilot\">Tạo các bảng DataPilot</link></variable>"
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3154484\n"
+"datapilot_createtable.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
-msgstr "Nếu bạn cần xuất các kết quả tính toán thay vì công thức, hãy bỏ dấu kiểm trong hộp <emph>Công thức</emph>."
+msgid "Position the cursor within a range of cells containing values, row and column headings."
+msgstr "Đặt con trỏ trong phạm vi các ô chứa giá trị, phần đầu hàng và cột."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3148702\n"
+"datapilot_createtable.xhp\n"
+"par_id3147264\n"
"9\n"
"help.text"
-msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
-msgstr "Chọn <emph>Tập tin > Lưu dạng</emph>. Hộp thoại <emph>Lưu dạng</emph> sẽ hiện ra."
+msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
+msgstr "Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>. Hộp thoại <emph>Chọn nguồn</emph> xuất hiện. Chọn <emph>Vùng chọn hiện thời</emph> và nhấn <emph>OK</emph>. Các phần đầu của bảng sẽ xuất hiện dưới dạng nút trong hộp thoại <emph>DataPilot</emph>. Di chuyển các nút nếu cần và thả chúng vào vùng bố trí « Trường Trang », « Trường Cột », « Trường Hàng » và « Trường Dữ Liệu »."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153912\n"
+"datapilot_createtable.xhp\n"
+"par_id3150868\n"
"10\n"
"help.text"
-msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
-msgstr "Trong trường <item type=\"menuitem\">Kiểu tập tin</item> chọn định dạng \"Văn bản CSV\"."
+msgid "Drag the desired buttons into one of the four areas."
+msgstr "Kéo các nút cần dùng vào một trong bốn vùng."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3157978\n"
-"13\n"
+"datapilot_createtable.xhp\n"
+"par_id7599414\n"
"help.text"
-msgid "Enter a name and click <emph>Save</emph>."
-msgstr "Nhập tên và nhấn <emph>Lưu</emph>."
+msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
+msgstr "Nút được kéo vào trong <emph>Trường trang</emph> sẽ tạo ra một nút và một hộp danh sách nằm bên trên bảng DataPilot được tạo ra. Hộp danh sách cho phép ta lọc nội dung của các thành phần được chọn trong bảng DataPilot. Bạn có thể dùng phương thức kéo-thả bên trong bảng DataPilot để dùng một trường trang khác làm bộ lọc."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3152869\n"
-"23\n"
+"datapilot_createtable.xhp\n"
+"par_id3154011\n"
+"11\n"
"help.text"
-msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
-msgstr "Trong hộp thoại <emph>Xuất tập tin văn bản</emph> hiện ra, hãy chọn bộ ký tự mã hoá và các ký tự ngăn cách trường và văn bản cho dữ liệu xuất ra, sau đó nhấn <emph>OK</emph>."
+msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
+msgstr "Nếu nút được thả vào trong <emph>Trường Dữ liệu</emph>, nó sẽ tạo ra một phụ chú hiển thị công thức dùng để tính toán dữ liệu."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150050\n"
-"14\n"
+"datapilot_createtable.xhp\n"
+"par_id3146974\n"
+"16\n"
"help.text"
-msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
-msgstr "Nếu cần, sau khi lưu lại tập tin, hãy bỏ hộp kiểm <emph>Công thức</emph> để hiển thị lại các kết quả tính được trong bảng."
+msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
+msgstr "Bằng cách bấm đúp vào một trường trong vùng <emph>Trường Dữ liệu</emph>, bạn có thể bật hộp thoại <link href=\"text/scalc/01/12090105.xhp\" name=\"Trường Dữ liệu\"><emph>Trường Dữ liệu</emph></link> lên."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153487\n"
-"20\n"
+"datapilot_createtable.xhp\n"
+"par_id3156286\n"
+"17\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
msgstr ""
-#: csv_formula.xhp
-msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153008\n"
-"21\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
-msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Xuất tập tin văn bản\">Xuất tập tin văn bản</link>"
-
-#: csv_formula.xhp
-msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155595\n"
-"22\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
-msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Nhập tập tin văn bản\">Nhập tập tin văn bản</link>"
-
-#: datapilot_grouping.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_grouping.xhp\n"
-"tit\n"
-"help.text"
-msgid "Grouping Pivot Tables"
-msgstr "Nhóm lại các bảng DataPilot"
-
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"bm_id4195684\n"
+"datapilot_createtable.xhp\n"
+"par_id3150329\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
-msgstr "<bookmark_value>nhóm; bảng DataPilot</bookmark_value><bookmark_value>chức năng DataPilot;nhóm lại các mục trong bảng</bookmark_value><bookmark_value>rã nhóm các mục trong bảng DataPilot</bookmark_value>"
+msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
+msgstr "Thứ tự nút có thể được thay đổi bất kỳ lúc nào bằng cách dùng chuột di chuyển chúng sang vị trí khác trong vùng bằng."
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10643\n"
+"datapilot_createtable.xhp\n"
+"par_id3153714\n"
+"14\n"
"help.text"
-msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Nhóm lại các bảng DataPilot</link></variable>"
+msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
+msgstr "Bỏ một nút ra khỏi vùng bằng cách lấy chuột kéo nó từ trong vùng ra ngoài chỗ đặt các nút khác ở bên phải hộp thoại."
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10661\n"
+"datapilot_createtable.xhp\n"
+"par_id3147338\n"
+"15\n"
"help.text"
-msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
-msgstr "Bảng DataPilot thu được có thể chứa rất nhiều mục khác nhau. Bằng cách nhóm chúng lại, bạn có thể làm cho tài liệu dễ đọc hơn."
+msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgstr ""
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10667\n"
+"datapilot_createtable.xhp\n"
+"par_id3154020\n"
+"18\n"
"help.text"
-msgid "Select a cell or range of cells in the pivot table."
-msgstr "Chọn một ô hoặc một phạm vi các ô trong bảng DataPilot."
+msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
+msgstr "Thoát khỏi hộp thoại DataPilot bằng cách nhấn OK. Một nút <emph>Lọc</emph> sẽ được chèn vào, hoặc một nút trang đối với mỗi trường dữ liệu mà bạn thả vào trong vùng <emph>Trường Trang</emph>. Bảng DataPilot được chèn xuống dưới các nút đó."
-#: datapilot_grouping.xhp
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN1066B\n"
+"datapilot_deletetable.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Data - Group and Outline - Group</emph>."
-msgstr "Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Nhóm lại</emph>."
+msgid "Deleting Pivot Tables"
+msgstr "Xoá bảng DataPilot"
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN1066E\n"
+"datapilot_deletetable.xhp\n"
+"bm_id3153726\n"
"help.text"
-msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
-msgstr "Tuỳ thuộc vào định dạng của ô được chọn, hoặc một nhóm trường mới sẽ được thêm vào bảng DataPilot, hoặc bạn có thể thấy một trong hai hộp thoại <link href=\"text/scalc/01/12090400.xhp\">Nhóm lại</link> cho giá trị hoặc cho giá trị ngày tháng."
+msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>chức năng DataPilot; xoá bảng</bookmark_value><bookmark_value>xoá;bảng DataPilot</bookmark_value>"
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_id3328653\n"
+"datapilot_deletetable.xhp\n"
+"hd_id3153726\n"
+"31\n"
"help.text"
-msgid "The pivot table must be organized in a way that grouping can be applied."
-msgstr "Để nhóm lại các bảng DataPilot, chúng phải được tổ chức theo cách thích hợp."
+msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Xoá các bảng Deleting\">Xoá các bảng DataPilot</link></variable>"
-#: datapilot_grouping.xhp
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10682\n"
+"datapilot_deletetable.xhp\n"
+"par_id3154014\n"
+"32\n"
"help.text"
-msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
-msgstr "Để xoá một sự nhóm lại, nhấn vào trong nhóm đó rồi chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Rã nhóm</emph>."
+msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
+msgstr "Để xoá một bảng DataPilot, chọn một ô bất kỳ trong bảng rồi chọn <emph>Xoá</emph> trong trình đơn ngữ cảnh của ô."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"tit\n"
@@ -6691,7 +4372,6 @@ msgid "Editing Pivot Tables"
msgstr "Sửa các bảng DataPilot"
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"bm_id3148663\n"
@@ -6700,7 +4380,6 @@ msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><boo
msgstr "<bookmark_value>chức năng DataPilot; sửa bảng</bookmark_value><bookmark_value>sửa;bảng DataPilot</bookmark_value>"
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"hd_id3148663\n"
@@ -6710,7 +4389,6 @@ msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapi
msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Sửa các bảng DataPilot\">Sửa các bảng DataPilot</link></variable>"
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3150868\n"
@@ -6729,7 +4407,6 @@ msgid "By dragging the button to a different position in the same row you can al
msgstr "Bằng cách kéo rê nút tới vị trí khác trong cùng hàng, bạn có thể thay đổi thứ tự các cột trong bảng. Nếu bạn kéo nút sang lề trái của bảng vào trong phần tiêu đề hàng, bạn có thể chuyển cột thành ra một hàng."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id1648915\n"
@@ -6738,7 +4415,6 @@ msgid "In the Pivot Table dialog, you can drag a button to the <emph>Page Fields
msgstr "Trong hộp thoại DataPilot, bạn có thể kéo một nút vào trong vùng <emph>Trường Trang</emph> để tạo ra một nút và một danh sách chọn ở trên bảng DataPilot được tạo ra. Danh sách chọn có thể lọc bảng DataPilot theo nội dung của các mục được chọn. Bạn có thể dùng thao tác kéo-thả bên trong bảng DataPilot vừa tạo để lấy một trường trang khác làm bộ lọc."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3147434\n"
@@ -6748,7 +4424,6 @@ msgid "To remove a button from the table, just drag it out of the pivot table. R
msgstr "Để xoá một nút khỏi bảng, chỉ việc kéo nó ra khỏi bảng DataPilot. Nhả chuột khi con trỏ chuột nằm bên trong bảng sẽ xuất hiện biểu tượng « không được phép ». Nút đã được xoá."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3156442\n"
@@ -6758,7 +4433,6 @@ msgid "To edit the pivot table, click a cell inside the pivot table and open the
msgstr "Để sửa bảng DataPilot, bấm vào một ô bên trong bảng DataPilot và mở trình đơn ngữ cảnh. Trong trình đơn ngữ cảnh bạn sẽ thấy lệnh <emph>Bắt đầu</emph> dùng để bật hộp thoại <emph>DataPilot</emph> cho bảng DataPilot hiện có."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id2666096\n"
@@ -6774,149 +4448,292 @@ msgctxt ""
msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
+"datapilot_filtertable.xhp\n"
"tit\n"
"help.text"
-msgid "Using Rounded Off Numbers"
-msgstr "Dùng các số được làm tròn"
+msgid "Filtering Pivot Tables"
+msgstr "Lọc các bảng DataPilot"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"bm_id3153361\n"
+"datapilot_filtertable.xhp\n"
+"bm_id3150792\n"
"help.text"
-msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
-msgstr "<bookmark_value>số; làm tròn</bookmark_value><bookmark_value>số làm tròn</bookmark_value><bookmark_value>các số đúng trong $[officename] Calc</bookmark_value><bookmark_value>lần số; hiển thị</bookmark_value><bookmark_value>thay đổi; số lần số</bookmark_value><bookmark_value>giá trị; làm tròn trong phép tính</bookmark_value><bookmark_value>tính;giá trị làm tròn</bookmark_value><bookmark_value>số; lần số</bookmark_value><bookmark_value>độ chính xác được hiển thị</bookmark_value><bookmark_value>độ chính xác làm tròn</bookmark_value><bookmark_value>bảng tính; giá trị được hiển thị</bookmark_value>"
+msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>chức năng DataPilot; lọc bảng</bookmark_value><bookmark_value>lọc;bảng DataPilot</bookmark_value>"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3156422\n"
-"2\n"
+"datapilot_filtertable.xhp\n"
+"hd_id3150792\n"
"help.text"
-msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
-msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Dùng số làm tròn\">Dùng số làm tròn</link></variable>"
+msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Lọc các bảng DataPilot\">Lọc các bảng DataPilot</link></variable>"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153726\n"
-"3\n"
+"datapilot_filtertable.xhp\n"
+"par_id3153192\n"
"help.text"
-msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
-msgstr "Trong $[officename] Calc, tất cả các số thập phân hiển thị đều được làm tròn tới hai lần số."
+msgid "You can use filters to remove unwanted data from a pivot table."
+msgstr "Bạn có thể dùng các bộ lọc để xoá bỏ dữ liệu không cần thiết ra khỏi bảng DataPilot."
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3152596\n"
-"4\n"
+"datapilot_filtertable.xhp\n"
+"par_id3150441\n"
"help.text"
-msgid "To change this for selected cells"
-msgstr "Thay đổi việc làm tròn cho các ô được chọn"
+msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
+msgstr "Bấm nút <emph>Lọc</emph> trong bảng để mở hộp thoại điều kiện lọc. Hoặc bạn có thể mở trình đơn ngữ cảnh của bảng DataPilot và chọn lệnh <emph>Lọc</emph>. Hộp thoại <link href=\"text/scalc/01/12090103.xhp\" name=\"Lọc\"><emph>Lọc</emph></link> xuất hiện. Tại đây bạn có thể lọc bảng DataPilot."
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3154321\n"
-"5\n"
+"datapilot_filtertable.xhp\n"
+"par_id315044199\n"
"help.text"
-msgid "Mark all the cells you want to modify."
-msgstr "Đánh dấu tất cả các ô mà bạn muốn thay đổi."
+msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3147428\n"
-"6\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344485\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
-msgstr "Chọn lệnh <emph>Định dạng > Ô</emph> và chuyển sang thẻ trang <emph>Số</emph>."
+msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153876\n"
-"7\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344449\n"
"help.text"
-msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
-msgstr "Trong trường <emph>Loại</emph>, chọn <emph>Số</emph>. Dưới <emph>Tùy chọn</emph>, thay đổi số <emph>lần số</emph> và nhấn <emph>OK</emph> để đóng hộp thoại."
+msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3155415\n"
-"8\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344493\n"
"help.text"
-msgid "To change this everywhere"
+msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
+msgstr "Đánh dấu trong hộp chọn <emph>Liên kết đến tập tin</emph> để chèn tập tin dạng liên kết."
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344431\n"
+"help.text"
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
msgstr ""
-#: rounding_numbers.xhp
-#, fuzzy
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3150715\n"
-"9\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344484\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
+msgstr ""
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344578\n"
+"help.text"
+msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
+msgstr ""
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344584\n"
+"help.text"
+msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153707\n"
-"10\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344811\n"
"help.text"
-msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
-msgstr "Chuyển đến trang <emph>Tính</emph>. Thay đổ số <emph>Lần số</emph> và nhấn <emph>OK</emph> để đóng hộp thoại."
+msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3154755\n"
-"11\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344884\n"
"help.text"
-msgid "To calculate with the rounded off numbers instead of the internal exact values"
-msgstr "Tính toán với các số làm tròn thay cho các giá trị chính xác nội bộ"
+msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
+msgstr "Bạn cũng có thể nhấn vào trang Trợ giúp và nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
-#: rounding_numbers.xhp
-#, fuzzy
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3150045\n"
-"12\n"
+"datapilot_grouping.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
-msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
+msgid "Grouping Pivot Tables"
+msgstr "Nhóm lại các bảng DataPilot"
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3146920\n"
-"13\n"
+"datapilot_grouping.xhp\n"
+"bm_id4195684\n"
"help.text"
-msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
-msgstr "Chuyển tới trang <emph>Tính</emph>. Đánh dấu trường <emph>Độ chính xác như đã hiển thị</emph> và nhấn <emph>OK</emph> để đóng hộp thoại."
+msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
+msgstr "<bookmark_value>nhóm; bảng DataPilot</bookmark_value><bookmark_value>chức năng DataPilot;nhóm lại các mục trong bảng</bookmark_value><bookmark_value>rã nhóm các mục trong bảng DataPilot</bookmark_value>"
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3145790\n"
-"14\n"
+"datapilot_grouping.xhp\n"
+"par_idN10643\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Số\">Số</link>"
+msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Nhóm lại các bảng DataPilot</link></variable>"
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3147005\n"
-"15\n"
+"datapilot_grouping.xhp\n"
+"par_idN10661\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
-msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Tính\">Tính</link>"
+msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
+msgstr "Bảng DataPilot thu được có thể chứa rất nhiều mục khác nhau. Bằng cách nhóm chúng lại, bạn có thể làm cho tài liệu dễ đọc hơn."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10667\n"
+"help.text"
+msgid "Select a cell or range of cells in the pivot table."
+msgstr "Chọn một ô hoặc một phạm vi các ô trong bảng DataPilot."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>."
+msgstr "Chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Nhóm lại</emph>."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
+msgstr "Tuỳ thuộc vào định dạng của ô được chọn, hoặc một nhóm trường mới sẽ được thêm vào bảng DataPilot, hoặc bạn có thể thấy một trong hai hộp thoại <link href=\"text/scalc/01/12090400.xhp\">Nhóm lại</link> cho giá trị hoặc cho giá trị ngày tháng."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_id3328653\n"
+"help.text"
+msgid "The pivot table must be organized in a way that grouping can be applied."
+msgstr "Để nhóm lại các bảng DataPilot, chúng phải được tổ chức theo cách thích hợp."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10682\n"
+"help.text"
+msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
+msgstr "Để xoá một sự nhóm lại, nhấn vào trong nhóm đó rồi chọn <emph>Dữ liệu > Nhóm lại và Phác thảo > Rã nhóm</emph>."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Pivot Table Output Ranges"
+msgstr "Chọn các phạm vi đầu ra DataPilot"
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
+msgstr "<bookmark_value>chức năng DataPilot; bảo vệ dữ liệu khỏi bị ghi đè</bookmark_value><bookmark_value>phạm vi đầu ra của bảng DataPilot</bookmark_value>"
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"hd_id3148663\n"
+"19\n"
+"help.text"
+msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
+msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Chọn các phạm vi đầu ra DataPilot\">Chọn các phạm vi đầu ra DataPilot</link></variable>"
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3154123\n"
+"20\n"
+"help.text"
+msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
+msgstr "Nhấn chuột vào nút <emph>Nhiều</emph> bên trong hộp thoại <emph>DataPilot</emph>. Hộp thoại sẽ được mở rộng."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3153771\n"
+"21\n"
+"help.text"
+msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
+msgstr "Bạn có thể chọn vùng cho trước để tạo bảng DataPilot, từ hộp <emph>Kết quả tới</emph>. Nếu chuỗi các kết quả không được đặt tên, hãy nhập tên từ ô phía trên bên trái của dãy vào vùng bên phải của hộp <emph>Kết quả tới</emph>. Bạn cũng có thể nhấn chuột vào ô thích hợp để nhập các tên vào."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3146974\n"
+"23\n"
+"help.text"
+msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
+msgstr "Nếu bạn đánh dấu vào hộp kiểm tra <emph>Bỏ qua các hàng rỗng</emph>, thì các hàng này sẽ không được tính đến khi bảng DataPilot được tạo ra."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3145273\n"
+"24\n"
+"help.text"
+msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
+msgstr "Nếu hộp kiểm tra <emph>Nhận ra phân loại</emph> được đánh dấu, thì các phân loại sẽ được xác định bởi các đề mục của chúng và do đó được chia ra khi bảng DataPilot được thiết lập."
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Updating Pivot Tables"
+msgstr "Cập nhật bảng DataPilot"
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>nhập bảng quay</bookmark_value><bookmark_value>hàm DataPilot; làm mới các bảng</bookmark_value>tính lại;bảng DataPilot<bookmark_value>;cập nhật;bảng DataPilot</bookmark_value>"
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"hd_id3150792\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Cập nhật bảng DataPilot \">Cập nhật bảng DataPilot</link></variable>"
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"par_id3154684\n"
+"34\n"
+"help.text"
+msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
+msgstr "Nếu dữ liệu của bảng tính nguồn đã bị thay đổi, $[officename] tính lại bảng DataPilot. Để tính lại các bảng, hãy chọn <emph>Dữ liệu > DataPilot > Cập nhật</emph>. Làm tương tự sau khi bạn đã nhập một bảng quay Excel vào trong bảng tính $[officename] Calc."
#: dbase_files.xhp
msgctxt ""
@@ -7142,6 +4959,275 @@ msgctxt ""
msgid "Only the data on the current sheet is exported."
msgstr "Chỉ các dữ liệu trong bảng đang tính sẽ được xuất."
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Themes for Sheets"
+msgstr "Chọn sắc thái cho bảng tính"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
+msgstr "<bookmark_value>chọn sắc thái cho trang tính</bookmark_value><bookmark_value>bố trí;bảng tính</bookmark_value><bookmark_value>kiểu dáng ô bảng; lựa chọn</bookmark_value><bookmark_value>lựa chọn;sắc thái định dạng</bookmark_value><bookmark_value>trang tính;định dạng sắc thái</bookmark_value><bookmark_value>định dạng;sắc thái cho trang tính</bookmark_value><bookmark_value>định dạng;sắc thái cho trang tính</bookmark_value>"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"hd_id3150791\n"
+"6\n"
+"help.text"
+msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
+msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Chọn sắc thái cho bảng tính\">Chọn sắc thái cho bảng tính</link></variable>"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3145786\n"
+"13\n"
+"help.text"
+msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
+msgstr "Bảng tính Calc $[officename] thường đi kèm với một tập hợp các sắc thái định dạng mà bạn có thể ứng dụng vào bảng tính của mình."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154490\n"
+"16\n"
+"help.text"
+msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
+msgstr "Các sắc thái không thể chèn vào bảng tính Calc và cũng không thể bị thay đổi. Tuy nhiên, bạn có thể thay đổi kiểu dáng của chúng sau khi ứng dụng chúng vào một bảng tính"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154757\n"
+"17\n"
+"help.text"
+msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
+msgstr "Trước khi đinh dạng sắc thái vào bảng tính, bạn phải ứng dụng ít nhất một kiểu dáng ô tùy chỉnh vào các ô trên bảng tính. Sau đó bạn có thể thay đổi định dạng ô bằng cách chọn và ứng dụng một sắc thái trong hộp thoại <emph>Chọn sắc thái</emph>."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3156382\n"
+"18\n"
+"help.text"
+msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
+msgstr "Để ứng dụng một kiểu dáng ô tùy chỉnh vào một ô, bạn có thể mở cửa sổ <emph>Kiểu dáng và Định dạng</emph>, và trong hộp danh sách bên dưới, đặt ô xem <emph>Kiểu dáng Tự chọn</emph>. Một danh sách các kiểu dáng ô tùy chỉnh đã tồn tại sẽ được mở ra. Nhấp đôi chuột vào tên từ cửa sổ <emph>Kiểu dáng và Định dạng</emph> để ứng dụng kiểu dáng này cho các ô được chọn."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3153963\n"
+"19\n"
+"help.text"
+msgid "To apply a theme to a spreadsheet:"
+msgstr "Để ứng dụng sắc thái vào một bảng tính:"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146920\n"
+"15\n"
+"help.text"
+msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
+msgstr "Nhấp chuột vào biểu tượng <emph>Chọn sắc thái</emph> trong thanh <emph>Công cụ</emph>."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3148488\n"
+"20\n"
+"help.text"
+msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
+msgstr "Hộp thoại <emph>Chọn sắc thái</emph> sẽ xuất hiện. Hộp thoại này liệt kê các sắc thái sẵn có dùng cho toàn bộ bảng tính còn cửa sổ <emph>Kiểu dáng và Định dạng</emph> liệt kê các kiểu dáng tùy chỉnh cho các ô cụ thể."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3155114\n"
+"9\n"
+"help.text"
+msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
+msgstr "Trong hộp thoại <emph>Lựa chọn Sắc thái</emph>, chọn sắc thái mà bạn muốn ứng dụng vào bảng tính."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150090\n"
+"21\n"
+"help.text"
+msgid "Click OK"
+msgstr "Nhấn vào nút OK"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150201\n"
+"22\n"
+"help.text"
+msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
+msgstr "Ngay sau khi bạn chọn một sắc thái khác trong hội thoại<emph>Lựa chọn Sắc thái</emph>, một vài trong số thuộc tính kiểu dáng tùy chỉnh sẽ được ứng dụng vào bảng tính hiện thời. Những thay đồi sẽ ngay lập tức hiện rõ trong bảng tính của bạn."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146979\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Lựa chọn Sắc thái\">Lựa chọn Sắc thái</link>."
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"tit\n"
+"help.text"
+msgid "Copying to Multiple Sheets"
+msgstr "Chép tới nhiều bảng"
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"bm_id3149456\n"
+"help.text"
+msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
+msgstr "<bookmark_value>sao chép;giá trị vào nhiều trang tính</bookmark_value><bookmark_value>dán;giá trị vào nhiều trang tính</bookmark_value><bookmark_value>dữ liệu;vào nhiều trang tính</bookmark_value> <bookmark_value>trang tính; đa điền đồng thời</bookmark_value>"
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"hd_id3149456\n"
+"3\n"
+"help.text"
+msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
+msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Chép tới nhiều trang tính\">Chép tới nhiều trang tính</link></variable>"
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3150868\n"
+"6\n"
+"help.text"
+msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
+msgstr "Trong bảng tính $[officename] Calc, bạn có thể chèn các giá trị, văn bản hay công thức được sao đồng thời vào các bảng đã chọn trong cùng tài liệu."
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3153768\n"
+"8\n"
+"help.text"
+msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_idN10614\n"
+"help.text"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr "Bạn có thể sử dụng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down để chọn nhiều trang tính một lúc bằng bàn phím."
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3147435\n"
+"7\n"
+"help.text"
+msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
+msgstr "Này khi bạn chèn giá trị, đoạn văn hay công thức vào trang tính đang chỉnh sửa, chúng cũng xuất hiện ở vị trí trùng trong các trang tính được chọn. Ví dụ, dữ liệu được nhập vào ô A1 của trang tính đang chỉnh sửa cũng được tự động nhập vào ô A1 của bất cứ trang tính khác nào được chọn."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Filters"
+msgstr "Ứng dụng bộ lọc"
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"bm_id3153896\n"
+"help.text"
+msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
+msgstr "<bookmark_value>bộ lọc; áp dụng/gỡ bỏ</bookmark_value><bookmark_value>hàng;gỡ bỏ/hiển thị lại theo bộ lọc</bookmark_value><bookmark_value>gỡ bỏ;bộ lọc</bookmark_value>"
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"hd_id3153896\n"
+"70\n"
+"help.text"
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
+msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Ứng dụng bộ lọc\">Ứng dụng bộ lọc</link></variable>"
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150869\n"
+"2\n"
+"help.text"
+msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
+msgstr "Bộ lọc và bộ lọc cấp cao giúp bạn làm việc trên một số hàng (bản ghi) đã được lọc trong chuỗi dữ liệu. Trong các bảng tính $[officename], có rất nhiều khả năng để sử dụng bộ lọc."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3155131\n"
+"3\n"
+"help.text"
+msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
+msgstr "Một ứng dụng của chức năng <emph>Lọc tự động</emph> là nhanh chóng thu hẹp việc hiển thị cho các bản ghi có các đầu mục giống nhau trong một trường dữ liệu."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3146119\n"
+"4\n"
+"help.text"
+msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
+msgstr "Trong hội thoại <emph>Lọc</emph>, bạn cũng có thể xác định các vùng chứa các giá trị trong trường dữ liệu cụ thể. Bạn có thế dùng bộ lọc tiêu chuẩn để kết nối đến ba điều kiện với một trong hai toán tử logic AND hoặc OR."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150010\n"
+"5\n"
+"help.text"
+msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
+msgstr "<emph>Lọc cao cấp</emph> vượt quá giới hạn 3 điều kiện và cho phép lên tới tổng 8 điều kiện lọc. Với bộ lọc cao cấp bạn có thể nhập trực tiếp các điều kiện vào trong bảng tính."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id9384746\n"
+"help.text"
+msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
+msgstr "Để gỡ bỏ một bộ lọc để thấy các ô lần nữa, hãy nhấn vào bên trong vùng ở đó đã áp dụng bộ lọc, sau đó chọn mục trình đơn <item type=\"menuitem\">Dữ liệu > Lọc > Bỏ lọc</item>."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_idN10663\n"
+"help.text"
+msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
+msgstr "Khi bạn lựa chọn nhiều hàng từ một vùng ở đó đã áp dụng một bộ lọc, vùng chọn này có thể bao gồm cả hai các hàng hiện rõ và các hàng bị bộ lọc ẩn. Sau đó, nếu bạn áp dụng định dạng, hoặc xoá những hàng được chọn, thì hành động này chỉ áp dụng cho những hàng hiện rõ. Không ảnh hưởng đến hàng ẩn."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id218817\n"
+"help.text"
+msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
+msgstr "Đây là mặt đối lập với hàng bạn đã tự ẩn dùng câu lệnh <emph>Định dạng > Hàng > Ẩn hàng</emph>. Hàng bị ẩn bằng tay thì cũng bị xoá khi bạn xoá một vùng chọn chứa nó."
+
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7350,713 +5436,796 @@ msgctxt ""
msgid "Use the Navigator for inserting objects and links within the same document or from other open documents."
msgstr "Sử dụng Bộ điều hướng để chèn đối tượng và liên kết trong cùng tài liệu hoặc từ các tài liệu mở khác."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
+"format_table.xhp\n"
"tit\n"
"help.text"
-msgid "Instructions for Using $[officename] Calc"
-msgstr "Hướng dẫn sử dụng $[officename] Calc"
+msgid "Formatting Spreadsheets"
+msgstr "Định dạng Bảng tính"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"bm_id3150770\n"
+"format_table.xhp\n"
+"bm_id3154125\n"
"help.text"
-msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
-msgstr "<bookmark_value>Tài liệu Sử dụng như Thế nào về Calc</bookmark_value><bookmark_value>hướng dẫn; $[officename] Calc</bookmark_value>"
+msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
+msgstr "<bookmark_value>văn bản trong ô bảng; định dạng</bookmark_value><bookmark_value>bảng tính;định dạng</bookmark_value><bookmark_value>nền;ô bảng và trang</bookmark_value><bookmark_value>viền;ô bảng và trang</bookmark_value><bookmark_value>định dạng;bảng tính</bookmark_value><bookmark_value>số; tùy chọn định dạng cho các ô đã chọn</bookmark_value><bookmark_value>ô bảng; định dạng số</bookmark_value><bookmark_value>tiền tệ;định dạng</bookmark_value>"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3150770\n"
-"1\n"
+"format_table.xhp\n"
+"hd_id3154125\n"
+"6\n"
"help.text"
-msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
-msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Hướng dẫn Sử dụng $[officename] Calc\">Hướng dẫn Sử dụng $[officename] Calc</link></variable>"
+msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
+msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Thiết kế Bảng tính\">Định dạng Bảng tính</link></variable>"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3145748\n"
-"2\n"
+"format_table.xhp\n"
+"hd_id3153912\n"
+"13\n"
"help.text"
-msgid "Formatting Tables and Cells"
-msgstr "Định dạng Bảng và Ô"
+msgid "Formatting Text in a Spreadsheet"
+msgstr "Định dạng Văn bản trong một Bảng tính"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3154022\n"
-"3\n"
+"format_table.xhp\n"
+"par_id3144772\n"
+"14\n"
"help.text"
-msgid "Entering Values and Formulas"
-msgstr "Nhập các Giá trị và Công thức"
+msgid "Select the text you want to format."
+msgstr "Chọn văn bản mà bạn muốn định dạng."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3152899\n"
-"4\n"
+"format_table.xhp\n"
+"par_id3155268\n"
+"15\n"
"help.text"
-msgid "Entering References"
-msgstr "Nhập Tham chiếu"
+msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
+msgstr "Chọn các thuộc tính văn bản được ưa thích từ thanh <emph>Định dạng</emph>. Bạn cũng có thể chọn <emph>Định dạng > Ô</emph>. Hộp thoại <emph>Định dạng ô</emph> sẽ xuất hiện, từ đó bạn có thể chọn các thuộc tính văn bản đa dạng trên trang thẻ <emph>Phông</emph>."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3155382\n"
-"5\n"
+"format_table.xhp\n"
+"hd_id3149899\n"
+"16\n"
"help.text"
-msgid "Database Ranges in Tables"
-msgstr "Phạm vi Cơ sở Dữ liệu trong Bảng"
+msgid "Formatting Numbers in a Spreadsheet"
+msgstr "Định dạng Số trong một Bảng tính"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3159229\n"
-"6\n"
+"format_table.xhp\n"
+"par_id3159226\n"
+"17\n"
"help.text"
-msgid "Advanced Calculations"
-msgstr "Phép tính Cấp cao"
+msgid "Select the cells containing the numbers you want to format."
+msgstr "Chọn các ô chứa các số mà bạn muốn định dạng."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3153070\n"
-"7\n"
+"format_table.xhp\n"
+"par_id3150046\n"
+"18\n"
"help.text"
-msgid "Printing and Page Preview"
-msgstr "In và Xem thử trang"
+msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
+msgstr "Để định dạng các số trong định dạng tiền tệ mặc định hay dưới dạng phần trăm, hãy chọn các biểu tượng trên thanh <emph>Định dạng</emph>. Với các định dạng khác, chọn<emph>Định dạng > Ô</emph>. Bạn có thể chọn từ các định dạng định sẵn hoặc tự mình xác định trên trang thẻ <emph>Số</emph>."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3150437\n"
-"8\n"
+"format_table.xhp\n"
+"hd_id3153483\n"
+"19\n"
"help.text"
-msgid "Importing and Exporting Documents"
-msgstr "Nhập và Xuất Tài liệu"
+msgid "Formatting Borders and Backgrounds for Cells and Pages"
+msgstr "Định dạng Viền và Nền cho các Ô và Trang"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3166464\n"
-"9\n"
+"format_table.xhp\n"
+"par_id3154733\n"
+"20\n"
"help.text"
-msgid "Miscellaneous"
-msgstr "Linh tinh"
+msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
+msgstr ""
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"tit\n"
+"format_table.xhp\n"
+"par_id3145116\n"
+"21\n"
"help.text"
-msgid "Validity of Cell Contents"
-msgstr "Tính hợp lệ của nội dung ô"
+msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
+msgstr "Để áp dụng các thuộc tính định dạng vào một bảng tổng thể, hãy chọn <emph>Định dạng > Trang</emph>. Ví dụ, bạn có thể xác định phần đầu trang hay chân trang sẽ xuất hiện trên mỗi trang được in."
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"bm_id3156442\n"
+"format_table.xhp\n"
+"par_id3145389\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
-msgstr "<bookmark_value>giá trị; giới hạn khi nhập vào</bookmark_value><bookmark_value>giới hạn; xác định giới hạn giá trị khi nhập vào</bookmark_value><bookmark_value>nội dung ô được phép</bookmark_value><bookmark_value>tính hợp lệ dữ liệu</bookmark_value><bookmark_value>tính hợp lệ</bookmark_value><bookmark_value>ô; tính hợp lệ</bookmark_value><bookmark_value>thông điệp báo lỗi; xác định dữ liệu sai nhập vào</bookmark_value><bookmark_value>các thao tác trong trường hợp sai nhập vào</bookmark_value><bookmark_value>lời gợi ý trợ giúp; xác định văn bản để nhập vào ô</bookmark_value><bookmark_value>ghi chú;văn bản trợ giúp dành cho ô</bookmark_value><bookmark_value>ô; xác định trợ giúp về cách nhập vào</bookmark_value><bookmark_value>vĩ lệnh; chạy khi sai nhập vào</bookmark_value><bookmark_value>dữ liệu; kiểm tra tính hợp lệ</bookmark_value>"
+msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
+msgstr "Một bức ảnh mà bạn đã nạp với <item type=\"menuitem\"> Định dạng > Trang > Nền</item> chỉ hiện thị khi in hoặc khi xem thử trang. Để cũng mở một ảnh nền trên màn hình, chèn ảnh đồ họa bằng cách chọn <item type=\"menuitem\">Chèn > Ảnh > Từ tập tin</item> và đặt ảnh đằng sau các ô bằng cách chọn <item type=\"menuitem\">Định dạng > Sắp đặt > Xuống dưới</item>. Sử dụng <link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link>."
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"hd_id3156442\n"
-"22\n"
+"format_table.xhp\n"
+"par_id2837916\n"
"help.text"
-msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
-msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Tính hợp lệ của nội dung ô\">Tính hợp lệ của nội dung ô</link></variable>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Tùy chọn Định dạng Số</link>"
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156283\n"
-"2\n"
+"format_table.xhp\n"
+"par_id2614215\n"
"help.text"
-msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
-msgstr "Với mỗi ô, bạn có thể xác định mục là hợp lệ không. Những mục không hợp lệ trong ô thì sẽ được loại ra."
+msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
+msgstr "<link href=\"text/scalc/guide/background.xhp\">Nền cho ô bảng</link>"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3145252\n"
-"3\n"
+"format_value.xhp\n"
+"tit\n"
"help.text"
-msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
-msgstr "Quy tắc tính hợp lệ được kích hoạt khi một giá trị mới được nhập vào. Nếu một giá trị không hợp lệ đã được chèn vào ô, hoặc nếu bạn chèn một giá trị vào ô bằng một trong hai cách kéo và thả chuột hoặc chép và dán, thì quy tắc tính hợp lệ này không có hiệu lực."
+msgid "Formatting Numbers With Decimals"
+msgstr "Định dạng Số thập phân"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id5174718\n"
+"format_value.xhp\n"
+"bm_id3145367\n"
"help.text"
-msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
-msgstr "Bạn có thể chọn <emph>Công cụ > Dò tìm</emph> bất cứ khi nào và chọn lệnh <link href=\"text/scalc/01/06030800.xhp\" name=\"Nhãn dữ liệu sai\"><emph>Nhãn dữ liệu sai</emph></link> để hiển thị các ô chứa các giá trị không hợp lệ."
+msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
+msgstr "<bookmark_value>số; định dạng trong bảng</bookmark_value><bookmark_value>định dạng; số trong bảng</bookmark_value><bookmark_value>bảng; định dạng số</bookmark_value><bookmark_value>mặc định; định dạng số trong bảng tính</bookmark_value><bookmark_value>lần số;định dạng số</bookmark_value><bookmark_value>định dạng;số thập phân</bookmark_value><bookmark_value>định dạng;thêm/bớt chữ số thập phân</bookmark_value><bookmark_value>định dạng số; thêm/bớt chữ số thập phân trong ô</bookmark_value><bookmark_value>xóa; lần số</bookmark_value><bookmark_value>lần số; thêm/xóa</bookmark_value>"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"hd_id3155603\n"
+"format_value.xhp\n"
+"hd_id3145367\n"
+"4\n"
+"help.text"
+msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
+msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Định dạng số thập phân\">Định dạng số thập phân</link></variable>"
+
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3148576\n"
"5\n"
"help.text"
-msgid "Using Cell Contents Validity"
-msgstr "Dùng tính hợp lệ của nội dung ô"
+msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
+msgstr "Nhập một số vào trong bảng, ví dụ số « 1234,5678 ». Số này sẽ được mở ra trong định dạng số mặc định, với 2 lần số. Bạn sẽ thấy số « 1234,56 » khi xác nhận mục này. Chỉ có số hiển thị trong tài liệu mới được làm tròn; bên trong, số này giữ lại tất cả 4 kí tự thập phân đằng sau dấu thập phân."
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3155959\n"
-"6\n"
+"format_value.xhp\n"
+"par_id3154012\n"
+"12\n"
"help.text"
-msgid "Select the cells for which you want to define a new validity rule."
-msgstr "Chọn các ô mà bạn muốn xác định một quy tắc tính hợp lệ mới."
+msgid "To format numbers with decimals:"
+msgstr "Định dạng số thập phân:"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3148837\n"
-"8\n"
+"format_value.xhp\n"
+"par_id3147394\n"
+"6\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
-msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Tính hợp lệ</item>."
+msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
+msgstr "Đặt con trỏ vào số đó và chọn <emph>Định dạng > Ô</emph> để mở hộp thoại <emph>Định dạng ô</emph>."
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156020\n"
+"format_value.xhp\n"
+"par_id3153157\n"
"9\n"
"help.text"
-msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
-msgstr "Trên trang tthẻab <emph>Tiêu chuẩn</emph>, nhập các điều kiện cho giá trị mới nhập vào trong các ô."
+msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
+msgstr "Trên thẻ <emph>Số</emph> bạn sẽ thấy một vùng chọn các định dạng số ban đầu. Ở cuối trang bên phải trong hộp thoại bạn sẽ thấy một ô xem thử của số mà bạn đang chọn sẽ trông thế nào sau khi bạn đã định dạng nó cụ thể."
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3159208\n"
+"format_value.xhp\n"
+"par_id3155766\n"
+"help.text"
+msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149021\">Biểu tượng</alt></image>"
+
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3149256\n"
"10\n"
"help.text"
-msgid "In the <emph>Allow</emph> field, select an option."
-msgstr "Trong trường <emph>Cho phép</emph>, nhấn vào một tùy chọn."
+msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
+msgstr "Nếu bạn chỉ muốn sửa đổi số chữ số thập phân, cách dễ nhất là sử dụng các biểu tượng <emph>Định dạng số: Thêm chữ số thập phân</emph> hoặc <emph>Định dạng số: Xóa bớt chữ số thập phân</emph> trên thanh <emph>Định dạng</emph>."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3153011\n"
-"11\n"
+"format_value_userdef.xhp\n"
+"tit\n"
"help.text"
-msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
-msgstr "Nếu bạn chọn « Số nguyên » thì các giá trị như « 12.5 » sẽ không được phép. Chọn « Ngày » sẽ cho phép thông tin cả trong định dạng ngày tháng địa phương và định dạng của một <link href=\"text/sbasic/shared/03030101.xhp\" name=\"ngày chuỗi\">ngày chuỗi</link>. Tương tự, điều kiện « Giờ » cho phép cá giá trị thời gian chẳng hạn « 12:00 » hoặc các số biểu thị chuỗi thời gian. « Độ dài văn bản » quy định các ô chỉ được chứa văn bản."
+msgid "User-defined Number Formats"
+msgstr "Đinh dạng số do người sử dụng quy định"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id9224829\n"
+"format_value_userdef.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "Select \"List\" to enter a list of valid entries."
-msgstr "Chọn « Danh sách » để nhập một danh sách các mục hợp lệ."
+msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
+msgstr "<bookmark_value>số; định dạng do người dùng xác định trong bảng</bookmark_value><bookmark_value>định dạng; số do người dùng xác định</bookmark_value><bookmark_value>định dạng số; tỷ</bookmark_value><bookmark_value>mã định dạng; định dạng số do người dùng xác định</bookmark_value>"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149317\n"
-"13\n"
+"format_value_userdef.xhp\n"
+"hd_id3143268\n"
+"26\n"
"help.text"
-msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
-msgstr "Chọn điều kiện tiếp theo dưới <emph>Dữ liệu</emph>. Với những gì bạn chọn, các tùy chọn bổ sung sẽ có thể được chọn."
+msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
+msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"Định dạng số do người sử dụng quy đinh\">Định dạng số do người sử dụng quy đinh</link></variable>"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3151389\n"
-"15\n"
+"format_value_userdef.xhp\n"
+"par_id3150400\n"
+"1\n"
"help.text"
-msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
-msgstr "Sau khi đã quyết định các điều kiện cho tính hợp lệ của ô, bạn có thể sử dụng hai trang thẻ khác để tạo hộp thông điệp:"
+msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr "Bạn có thể xác định kiểu định dạng số cho riêng mình để hiển thị các số trong phép tính <item type=\"productname\">%PRODUCTNAME</item> Calc."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3159261\n"
-"16\n"
+"format_value_userdef.xhp\n"
+"par_id3150767\n"
+"2\n"
"help.text"
-msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
-msgstr "Trên trang thẻ <emph>Trợ giúp Nhập liệu</emph>, nhập tiêu đề và văn bản của lời khuyên, lời khuyên này sau đó sẽ được hiển thị nếu bạn chọn ô đó."
+msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
+msgstr "Ví dụ như: để hiển thị số « 10 200 000 » có dạng 10,2 triệu :"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156396\n"
-"17\n"
+"format_value_userdef.xhp\n"
+"par_id3150868\n"
+"3\n"
"help.text"
-msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
-msgstr "Trên trang thẻ <emph>Báo lỗi</emph>, chọn các thao tác để tiến hành khi gặp một lỗi."
+msgid "Select the cells to which you want to apply a new, user-defined format."
+msgstr "Chọn các ô mà bạn muốn ứng dụng một định dạng mới do người sử dụng quy định."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3147416\n"
-"18\n"
+"format_value_userdef.xhp\n"
+"par_id3149664\n"
+"4\n"
"help.text"
-msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
-msgstr "Nếu bạn chọn thao tác « Dừng », các mục không hợp lệ sẽ không được chấp nhận, và giữ nguyên nội dung của ô trước đó."
+msgid "Choose <emph>Format - Cells - Numbers</emph>."
+msgstr "Chọn <emph>Định dạng > Ô > Số</emph>."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3150033\n"
-"19\n"
+"format_value_userdef.xhp\n"
+"par_id3149260\n"
+"5\n"
"help.text"
-msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
-msgstr "Chọn mục « Cảnh báo » hoặc « thông tin » để hiển thị một hộp thoại trong đó mục này có thể bị hủy bỏ hoặc được chấp nhận."
+msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
+msgstr "Trong hộp danh sách <emph>Loại</emph>, chọn « Tự xác định »."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149947\n"
-"20\n"
+"format_value_userdef.xhp\n"
+"par_id3148646\n"
+"6\n"
"help.text"
-msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
-msgstr "Nếu bạn chọn mục « Vĩ lệnh », sau đó dùng nút <emph>Duyệt</emph>, bạn có thể chỉ định một vĩ lệnh hoạt động khi có một lỗi xảy ra."
+msgid "In the <emph>Format code</emph> text box enter the following code:"
+msgstr "Trong hộp văn bản <emph>Mã định dạng</emph>, nhập vào mã sau:"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149011\n"
-"35\n"
+"format_value_userdef.xhp\n"
+"par_id3152596\n"
+"7\n"
"help.text"
-msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
-msgstr "Để hiển thị một thông điệp báo lỗi, chọn <emph>Hiển thị thông điệp báo lỗi khi giá trị không hợp lệ được nhập vào</emph>."
+msgid "0.0,, \"Million\""
+msgstr "0.0,, \"Million\""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3148586\n"
-"21\n"
+"format_value_userdef.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
-msgstr "Sau khi thay đổi thao tác cho một ô trên trang thẻ <emph>Báo lỗi</emph> và nhấn <emph>OK</emph> để đóng hộp thoại, trước hết bạn phải chọn một ô khác trước khsự thay đổi này xảy ra."
+msgid "Click OK."
+msgstr "Nhấn vào nút <emph>OK</emph>"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3154805\n"
-"30\n"
+"format_value_userdef.xhp\n"
+"par_id3155417\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
-msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Dữ liệu > Tính hợp lệ\">Dữ liệu > Tính hợp lệ</link>"
+msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
+msgstr "Bảng sau cho thấy các hiệu ứng của việc làm tròn, dấu tách hàng nghìn (,), dấu tách thập phân (.) và ký tự giữ chỗ « # » và « 0 »."
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"tit\n"
+"format_value_userdef.xhp\n"
+"par_id3146971\n"
+"10\n"
"help.text"
-msgid "Defining Background Colors or Background Graphics"
-msgstr "Xác định Màu Nền hay Ảnh Nền"
+msgid "Number"
+msgstr "Số"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"bm_id3149346\n"
+"format_value_userdef.xhp\n"
+"par_id3154757\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
-msgstr "<bookmark_value>bảng tính; hình nền</bookmark_value><bookmark_value>hình nền; khoảng ô</bookmark_value><bookmark_value>bảng; hình nền</bookmark_value><bookmark_value>ô; hình nền</bookmark_value><bookmark_value>hàng; xem thêm ô</bookmark_value><bookmark_value>cột;xem thêm ô</bookmark_value>"
+msgid ".#,, \"Million\""
+msgstr ".#,, \"Million\""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3149346\n"
-"1\n"
+"format_value_userdef.xhp\n"
+"par_id3147338\n"
+"12\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
-msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Xác định Màu Nền hay Ảnh Nền\"> Xác định Màu Nền hay Ảnh Nền</link> </variable>"
+msgid "0.0,, \"Million\""
+msgstr "0.0,, \"Million\""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id9520249\n"
+"format_value_userdef.xhp\n"
+"par_id3146920\n"
+"13\n"
"help.text"
-msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
-msgstr "Bạn có khả năng xác định một màu nền, hoặc dùng một đồ họa làm nền, cho phạm vi ô trong $[officename] Calc."
+msgid "#,, \"Million\""
+msgstr "#,, \"Million\""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3144760\n"
+"format_value_userdef.xhp\n"
+"par_id3147344\n"
+"14\n"
+"help.text"
+msgid "10200000"
+msgstr "10200000"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3147003\n"
+"15\n"
+"help.text"
+msgid "10.2 Million"
+msgstr "10.2 triệu"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3166426\n"
"16\n"
"help.text"
-msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
-msgstr "Áp dụng Màu Nền cho một Bảng tính $[officename] Calc"
+msgid "10.2 Million"
+msgstr "10.2 triệu"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3155429\n"
+"format_value_userdef.xhp\n"
+"par_id3155113\n"
"17\n"
"help.text"
-msgid "Select the cells."
-msgstr "Lựa chọn các ô."
+msgid "10 Million"
+msgstr "10 triệu"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3149260\n"
+"format_value_userdef.xhp\n"
+"par_id3150369\n"
"18\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
-msgstr "Chọn lệnh trình đơn <emph>Định dạng > Các ô</emph> (hay lệnh <emph>Định dạng các ô</emph> trong trình đơn ngữ cảnh)."
+msgid "500000"
+msgstr "500000"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3152938\n"
+"format_value_userdef.xhp\n"
+"par_id3145585\n"
"19\n"
"help.text"
-msgid "On the <emph>Background</emph> tab page, select the background color."
-msgstr "Trên trang thẻ <emph>Nền</emph>, chọn màu nền."
+msgid ".5 Million"
+msgstr ".5 triệu"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3146974\n"
+"format_value_userdef.xhp\n"
+"par_id3154486\n"
"20\n"
"help.text"
-msgid "Graphics in the Background of Cells"
-msgstr "Đồ họa trong Nền của Ô"
+msgid "0.5 Million"
+msgstr "0.5 triệu"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3155414\n"
+"format_value_userdef.xhp\n"
+"par_id3146114\n"
"21\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - From File</emph>."
-msgstr "Chọn lệnh <emph>Chèn > Ảnh > Từ tập tin</emph>."
+msgid "1 Million"
+msgstr "1 triệu"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3149664\n"
+"format_value_userdef.xhp\n"
+"par_id3155810\n"
"22\n"
"help.text"
-msgid "Select the graphic and click <emph>Open</emph>."
-msgstr "Lựa chọn đồ họa rồi nhấn vào nút <emph>Mở</emph>."
+msgid "100000000"
+msgstr "100000000"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3153575\n"
+"format_value_userdef.xhp\n"
+"par_id3153818\n"
"23\n"
"help.text"
-msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
-msgstr "Đồ họa được chèn và thả neo vào ô hiện tại. Bạn vẫn còn có thể di chuyển và co giãn đồ họa đó. Trong trình đơn ngữ cảnh, bạn cũng có thể sử dụng lệnh <emph>Sắp đặt > Xuống dưới</emph> để đặt ảnh đó về nền. Để lựa chọn một đồ họa đã được đặt về nền, hãy dùng <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link> </caseinline><defaultinline>Bộ điều hướng</defaultinline></switchinline>."
+msgid "100. Million"
+msgstr "100. triệu"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id51576\n"
+"format_value_userdef.xhp\n"
+"par_id3151241\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
-msgstr "<link href=\"text/shared/guide/background.xhp\">Hình mờ</link>"
+msgid "100.0 Million"
+msgstr "100.0 triệu"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3156180\n"
-"30\n"
+"format_value_userdef.xhp\n"
+"par_id3144771\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Trang thẻ Nền\">Trang thẻ <emph>Nền</emph></link>"
+msgid "100 Million"
+msgstr "100 triệu"
-#: background.xhp
+#: formula_copy.xhp
msgctxt ""
-"background.xhp\n"
-"par_id7601245\n"
+"formula_copy.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
-msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Định dạng Bảng tính</link>"
+msgid "Copying Formulas"
+msgstr "Chép công thức"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"tit\n"
+"formula_copy.xhp\n"
+"bm_id3151113\n"
"help.text"
-msgid "Text Superscript / Subscript"
-msgstr "Chỉ số trên/dưới trong văn bản"
+msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
+msgstr "<bookmark_value>công thức; chép và dán</bookmark_value><bookmark_value>chép; công thức </bookmark_value><bookmark_value>dán; công thức</bookmark_value>"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"bm_id3151112\n"
+"formula_copy.xhp\n"
+"hd_id3151113\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
-msgstr "<bookmark_value>chỉ số trên trong ô</bookmark_value><bookmark_value>chỉ số dưới trong ô</bookmark_value><bookmark_value>ô; chỉ số trên/dưới</bookmark_value><bookmark_value>ký tự;chỉ số trên/dưới</bookmark_value>"
+msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
+msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Chép công thức\">Chép công thức</link></variable>"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"hd_id3151112\n"
-"1\n"
+"formula_copy.xhp\n"
+"par_id3156424\n"
+"11\n"
"help.text"
-msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
-msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Chỉ số trên/dưới văn bản\">Chỉ số trên/dưới trong văn bản</link></variable>"
+msgid "There are various ways to copy a formula. One suggested method is:"
+msgstr "Có nhiều cách khác nhau để chép công thức. Một cách gợi ý là:"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3154684\n"
-"2\n"
+"formula_copy.xhp\n"
+"par_id3150439\n"
+"30\n"
"help.text"
-msgid "In the cell, select the character that you want to put in superscript or subscript."
-msgstr "Hãy chọn ký tự trong ô mà bạn muốn chuyển thành chỉ số trên hay chỉ số dưới."
+msgid "Select the cell containing the formula."
+msgstr "Chọn ô chứa công thức."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3150439\n"
-"3\n"
+"formula_copy.xhp\n"
+"par_id3154319\n"
+"31\n"
"help.text"
-msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
-msgstr "Ví dụ, nếu bạn muốn viết H20 với chỉ số trên là 2, hãy chọn 2 trong ô (không phải trong dòng nhập)."
+msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
+msgstr "Chọn <emph>Sửa > Chép</emph>, hoặc nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ C để chép."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3149260\n"
-"4\n"
+"formula_copy.xhp\n"
+"par_id3159155\n"
+"32\n"
"help.text"
-msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
-msgstr "Mở trình đơn ngữ cảnh cho kí tự đã chọn và chọn mục <emph>Ký tự</emph>. Bạn sẽ thấy hộp thoại <emph>Ký tự</emph>."
+msgid "Select the cell into which you want the formula to be copied."
+msgstr "Chọn ô mà bạn muốn chép công thức vào đó"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153142\n"
-"5\n"
+"formula_copy.xhp\n"
+"par_id3153728\n"
+"33\n"
"help.text"
-msgid "Click the <emph>Font Position</emph> tab."
-msgstr "Nhắp chuột vào thẻ <emph>Vị trí phông</emph>."
+msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
+msgstr "Chọn <emph>Sửa > Chép</emph>, hoặc nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. Công thức sẽ được đặt vàp ô mới."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153954\n"
-"6\n"
+"formula_copy.xhp\n"
+"par_id3149961\n"
+"34\n"
"help.text"
-msgid "Select the <emph>Subscript</emph> option and click OK."
-msgstr "Bật tùy chọn <emph>Chỉ số dưới</emph> và nhấn <emph>OK</emph>."
+msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
+msgstr "Nếu bạn muốn chép một công thức vào nhiều ô, có một cách dễ dàng và nhanh chóng để chép vào các vùng ô bên cạnh."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153876\n"
-"7\n"
+"formula_copy.xhp\n"
+"par_id3149400\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Trình đơn ngữ cảnh K Ký tự > Vị trí phông\">Trình đơn ngữ cảnh K Ký tự > Vị trí phông</link>"
+msgid "Select the cell containing the formula."
+msgstr "Chọn ô chứa công thức."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"tit\n"
+"formula_copy.xhp\n"
+"par_id3154018\n"
+"13\n"
"help.text"
-msgid "Creating Pivot Tables"
-msgstr "Tạo các bảng DataPilot"
+msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
+msgstr "Đặt chuột lên phía dưới bên phải viền được tô sáng của ô, và tiếp tục giữ chuột kéo xuống cho đến khi con trỏ chuyển tới một ký hiệu chữ thập."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"bm_id3148491\n"
+"formula_copy.xhp\n"
+"par_id3150749\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
-msgstr "<bookmark_value>Bảng DataPilot</bookmark_value><bookmark_value>chức năng DataPilot; gọi và áp dụng</bookmark_value>"
+msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
+msgstr "Tiếp tục nhấn chuột trong khi kéo xuống hoặc tới phía bên phải trên tất cả các ô để chép công thức vào ô mà bạn muốn."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"hd_id3148491\n"
-"7\n"
+"formula_copy.xhp\n"
+"par_id3153714\n"
+"15\n"
"help.text"
-msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Tạo các bảng DataPilot\">Tạo các bảng DataPilot</link></variable>"
+msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
+msgstr "Khi bạn thả chuột ra, công thức sẽ được sao vào trong các ô và tự động điều chỉnh."
-#: datapilot_createtable.xhp
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3156023\n"
-"8\n"
+"formula_copy.xhp\n"
+"par_id3156385\n"
+"53\n"
"help.text"
-msgid "Position the cursor within a range of cells containing values, row and column headings."
-msgstr "Đặt con trỏ trong phạm vi các ô chứa giá trị, phần đầu hàng và cột."
+msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
+msgstr "Nếu bạn không muốn các giá trị và văn bản tự điều chỉnh, hãy giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo. Tuy nhiên, các công thức do đó luôn luôn được điều chỉnh."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3147264\n"
+"formula_enter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Entering Formulas"
+msgstr "Nhập công thức"
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"bm_id3150868\n"
+"help.text"
+msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
+msgstr "<bookmark_value>thanh công thức; dòng nhập</bookmark_value><bookmark_value>dòng nhập trong thanh công thức</bookmark_value><bookmark_value>công thức;nhập</bookmark_value><bookmark_value>chèn;công thức</bookmark_value>"
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"hd_id3150868\n"
"9\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
-msgstr "Chọn <emph>Dữ liệu > DataPilot > Bắt đầu</emph>. Hộp thoại <emph>Chọn nguồn</emph> xuất hiện. Chọn <emph>Vùng chọn hiện thời</emph> và nhấn <emph>OK</emph>. Các phần đầu của bảng sẽ xuất hiện dưới dạng nút trong hộp thoại <emph>DataPilot</emph>. Di chuyển các nút nếu cần và thả chúng vào vùng bố trí « Trường Trang », « Trường Cột », « Trường Hàng » và « Trường Dữ Liệu »."
+msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
+msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Nhập công thức\">Nhập công thức</link></variable>"
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3150868\n"
-"10\n"
+"formula_enter.xhp\n"
+"par_id6848353\n"
"help.text"
-msgid "Drag the desired buttons into one of the four areas."
-msgstr "Kéo các nút cần dùng vào một trong bốn vùng."
+msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
+msgstr "Bạn có thể nhập công thức bằng một số cách sau: sử dụng các biểu tượng, hay gõ trên bàn phím, hoặc kết hợp cả 2 cách trên."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id7599414\n"
+"formula_enter.xhp\n"
+"par_id3145364\n"
+"10\n"
"help.text"
-msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
-msgstr "Nút được kéo vào trong <emph>Trường trang</emph> sẽ tạo ra một nút và một hộp danh sách nằm bên trên bảng DataPilot được tạo ra. Hộp danh sách cho phép ta lọc nội dung của các thành phần được chọn trong bảng DataPilot. Bạn có thể dùng phương thức kéo-thả bên trong bảng DataPilot để dùng một trường trang khác làm bộ lọc."
+msgid "Click the cell in which you want to enter the formula."
+msgstr "Chọn ô mà bạn muốn điền công thức vào."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3154011\n"
+"formula_enter.xhp\n"
+"par_id3150012\n"
"11\n"
"help.text"
-msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
-msgstr "Nếu nút được thả vào trong <emph>Trường Dữ liệu</emph>, nó sẽ tạo ra một phụ chú hiển thị công thức dùng để tính toán dữ liệu."
+msgid "Click the <emph>Function</emph> icon on the Formula Bar."
+msgstr "Chọn biểu tượng <emph>Hàm</emph> trên thanh <emph>Công thức</emph>."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3146974\n"
-"16\n"
+"formula_enter.xhp\n"
+"par_id3156441\n"
+"12\n"
"help.text"
-msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
-msgstr "Bằng cách bấm đúp vào một trường trong vùng <emph>Trường Dữ liệu</emph>, bạn có thể bật hộp thoại <link href=\"text/scalc/01/12090105.xhp\" name=\"Trường Dữ liệu\"><emph>Trường Dữ liệu</emph></link> lên."
+msgid "You will now see an equals sign in the input line and you can begin to input the formula."
+msgstr "Bạn sẽ thấy một dấu bằng trong dòng nhập và có thể bắt đầu nhập công thức."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3156286\n"
-"17\n"
+"formula_enter.xhp\n"
+"par_id3153726\n"
+"3\n"
"help.text"
-msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
-msgstr ""
+msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
+msgstr "Sau khi nhập các giá trị yêu cầu, nhấn phím <item type=\"keycode\">Enter</item> hoặc nút <emph>Chấp nhận</emph> để chèn kết quả vào trong ô kích hoạt. Nếu bạn muốn xóa mục trong dòng nhập, hãy ấn phím <item type=\"keycode\">Esc</item> hoặc nút <emph>Thôi</emph>."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3150329\n"
-"13\n"
+"formula_enter.xhp\n"
+"par_id3147394\n"
+"8\n"
"help.text"
-msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
-msgstr "Thứ tự nút có thể được thay đổi bất kỳ lúc nào bằng cách dùng chuột di chuyển chúng sang vị trí khác trong vùng bằng."
+msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
+msgstr "Bạn cũng có thể nhập trực tiếp các giá trị và công thức vào ô, ngay cả khi bạn không thể nhìn thấy con trỏ nhập. Các công thức phải luôn được bắt đầu với dấu bằng."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3153714\n"
-"14\n"
+"formula_enter.xhp\n"
+"par_id4206976\n"
"help.text"
-msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
-msgstr "Bỏ một nút ra khỏi vùng bằng cách lấy chuột kéo nó từ trong vùng ra ngoài chỗ đặt các nút khác ở bên phải hộp thoại."
+msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
+msgstr "Bạn cũng có thể nhấn phím + hoặc - trên vùng số của bàn phím để bắt đầu nhập một công thức. Nhớ là phải luôn bật phím khoá con số NumLock. Ví dụ như, hãy nhấn các phím trong chuỗi sau:"
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3147338\n"
-"15\n"
+"formula_enter.xhp\n"
+"par_id1836909\n"
"help.text"
-msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgid "+ 5 0 - 8 Enter"
+msgstr "+ 5 0 - 8 Enter"
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id8171330\n"
+"help.text"
+msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
+msgstr "Bạn sẽ thấy kết quả <item type=\"literal\">42</item> trong ô. Ô này chứa công thức <item type=\"literal\">=+50-8</item>."
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3155764\n"
+"6\n"
+"help.text"
+msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
msgstr ""
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3154020\n"
-"18\n"
+"formula_enter.xhp\n"
+"par_id3149210\n"
+"7\n"
"help.text"
-msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
-msgstr "Thoát khỏi hộp thoại DataPilot bằng cách nhấn OK. Một nút <emph>Lọc</emph> sẽ được chèn vào, hoặc một nút trang đối với mỗi trường dữ liệu mà bạn thả vào trong vùng <emph>Trường Trang</emph>. Bảng DataPilot được chèn xuống dưới các nút đó."
+msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
+msgstr "<variable id=\"tip\">Nếu bạn muốn xem phép tính các phần tử riêng lẻ của một công thức, hãy chọn các phần tử tương ứng và nhấn phím F9. Ví dụ như, trong công thức « =SUM(A1:B12)*SUM(C1:D12) » chọn phần « SUM(C1:D12) » và nhấn F9 để xem tổng số phụ cho phần này. </variable>"
-#: text_wrap.xhp
+#: formula_enter.xhp
msgctxt ""
-"text_wrap.xhp\n"
+"formula_enter.xhp\n"
+"par_id3150304\n"
+"5\n"
+"help.text"
+msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
+msgstr "Nếu có một lỗi xuất hiện trong khi lập công thức, thì một <link href=\"text/scalc/05/02140000.xhp\" name=\"thông điệp báo lỗi\">thông điệp báo lỗi</link> sẽ xuất hiện trong ô hiện thời."
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3152993\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Thanh công thức\">Thanh công thức</link>"
+
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
"tit\n"
"help.text"
-msgid "Writing Multi-line Text"
-msgstr "Viết văn bản nhiều dòng"
+msgid "Displaying Formulas or Values"
+msgstr "Hiển thị Công thức hay Giá trị"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"bm_id3154346\n"
+"formula_value.xhp\n"
+"bm_id3153195\n"
"help.text"
-msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
-msgstr "<bookmark_value>văn bản trong ô; nhiều dòng</bookmark_value><bookmark_value>ô; ngắt văn bản</bookmark_value><bookmark_value>ngắt trong ô</bookmark_value><bookmark_value>văn bản đa dòng trong ô</bookmark_value>"
+msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
+msgstr "<bookmark_value>công thức; hiển thị trong ô</bookmark_value><bookmark_value>giá trị; hiển thị trong bảng</bookmark_value><bookmark_value>bảng; hiển thị công thức/giá trị</bookmark_value><bookmark_value> hiển thị kết quả hay hiển thị công thức</bookmark_value><bookmark_value>hiển thị; công thức thay cho kết quả</bookmark_value>"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"hd_id3154346\n"
-"42\n"
+"formula_value.xhp\n"
+"hd_id3153195\n"
+"1\n"
"help.text"
-msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
-msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Viết văn bản nhiều dòng\">Viết văn bản nhiều dòng</link></variable>"
+msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
+msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Hiển thị Công thức hay Giá trị\">Hiển thị Công thức hay Giá trị</link></variable>"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3156280\n"
-"41\n"
+"formula_value.xhp\n"
+"par_id3150010\n"
+"2\n"
"help.text"
-msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut only works directly in the cell, not in the input line."
-msgstr "Nhấn tổ hợp phím<switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter để chèn một chỗ ngắt giữa dòng bằng tay. Phím tắt này chỉ trực tiếp hoạt động trong ô, không trong dòng nhập vào."
+msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
+msgstr "Nếu bạn muốn hiển thị các công thức trong ô, ví dụ như trong dạng « =SUM(A1:B5) », theo các quá trình sau:"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3153142\n"
-"43\n"
+"formula_value.xhp\n"
+"par_id3151116\n"
+"3\n"
"help.text"
-msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
-msgstr "Nếu bạn muốn văn bản tự động ngắt tại viền bên phải của ô, hãy thực hiện như sau:"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3153951\n"
-"44\n"
+"formula_value.xhp\n"
+"par_id3146120\n"
+"4\n"
"help.text"
-msgid "Select all the cells where you want the text to break at the right border."
-msgstr "Chọn tất cả các ô mà bạn muốn văn bản được ngắt ở viền bên phải."
+msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
+msgstr "Trong vùng <emph>Hiển thị</emph>, đánh dấu hộp <emph>Công thức</emph>. Nhấn <emph>OK</emph>."
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3148575\n"
-"45\n"
+"formula_value.xhp\n"
+"par_id3147396\n"
+"5\n"
"help.text"
-msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
-msgstr "Trong hộp thoại <emph>Định dạng > Ô > Chỉnh canh</emph>, hãy đánh dấu tùy chọn <emph>Tự động ngắt dòng</emph> và nhấn <emph>OK</emph>."
+msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
+msgstr "Nếu bạn muốn xem kết quả phép tính thay vì xem công thức, bạn không được đánh dấu vào hộp <emph>Công thức</emph>."
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3145799\n"
-"46\n"
+"formula_value.xhp\n"
+"par_id3153157\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
-msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Định dạng > Ô\">Định dạng > Ô</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr ""
#: formulas.xhp
msgctxt ""
@@ -8272,1484 +6441,2475 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Hàm\">Trợ lý Hàm</link>"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
+"fraction_enter.xhp\n"
"tit\n"
"help.text"
-msgid "Renaming Sheets"
-msgstr "Đặt lại tên trang tính"
+msgid "Entering Fractions"
+msgstr "Nhập phân số"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"bm_id3150398\n"
+"fraction_enter.xhp\n"
+"bm_id3155411\n"
"help.text"
-msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
-msgstr "<bookmark_value>đặt lại tên trang tính</bookmark_value><bookmark_value>thẻ trang;đặt lại tên</bookmark_value><bookmark_value>bảng; đặt lại tên</bookmark_value><bookmark_value>tên; trang tính</bookmark_value>"
+msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
+msgstr "<bookmark_value>phân số; nhập vào</bookmark_value><bookmark_value>con số; nhập phân số</bookmark_value><bookmark_value>chèn;phân số</bookmark_value>"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"hd_id3150398\n"
-"11\n"
+"fraction_enter.xhp\n"
+"hd_id3155411\n"
+"41\n"
"help.text"
-msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
-msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Đặt lại tên trang tính\">Đặt lại tên trang tính</link></variable>"
+msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
+msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Nhập phân số \">Nhập phân số </link></variable>"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3155131\n"
-"12\n"
+"fraction_enter.xhp\n"
+"par_id3153968\n"
+"40\n"
"help.text"
-msgid "Click the name of the sheet that you want to change."
-msgstr "Nhấn vào tên của trang tính mà bạn muốn thay đổi."
+msgid "You can enter a fractional number in a cell and use it for calculation:"
+msgstr "Bạn có thể nhập một số dưới dạng phân số vào một ô và dùng nó để tính toán:"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3146976\n"
-"13\n"
+"fraction_enter.xhp\n"
+"par_id3155133\n"
+"42\n"
"help.text"
-msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
-msgstr "Mở trình đơn ngữ cảnh và chọn lệnh <emph>Đổi tên tờ</emph>. Một hộp thoại sẽ hiện ra cho bạn nhập tên mới."
+msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
+msgstr "Nhập « 0 1/5 » vào một ô, và nhấn phím nhập. Trong dòng nhập phía trên bảng tính, bạn sẽ thấy giá trị « 0.2 », được sử dụng cho phép tính."
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3149260\n"
+"fraction_enter.xhp\n"
+"par_id3145750\n"
+"43\n"
+"help.text"
+msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
+msgstr "Nếu bạn nhập « 0 1/2 », chức năng Tự động Sửa lỗi sẽ thay thế 3 kí tự 1, / và 2 bằng một kí tự đơn. Ứng dụng tương tự cho 1/4 và 3/4. Sự thay thế này được quy định trong <emph>Công cụ > Tự động Sửa lỗi > (thẻ) Thay thế</emph>."
+
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"par_id3145367\n"
+"44\n"
+"help.text"
+msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
+msgstr "Nếu bạn muốn thấy các phân số đa kí số ví dụ như « 1/10 », bạn phải thay đổi định dạng ô thành ô xem phân số đa kí số. Mở trình đơn ngữ cảnh của ô đó và chọn <emph>Định dạng ô</emph>. Chọn « Phân số » từ trường <emph>Loại</emph>, và sau đó chọn « -1234 10/81 ». Sau đó bạn có thể nhập các phân số như 12/23 hay 12/32 — tuy nhiên các phân số này sẽ bị tự động giảm để cuối cùng bạn có ví dụ là 3/8."
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Goal Seek"
+msgstr "Ứng dụng Tìm Mục Tiêu"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
+msgstr "<bookmark_value>tìm mục tiêu;ví dụ</bookmark_value><bookmark_value>phương trình khi tìm mục tiêu</bookmark_value><bookmark_value>tính;biến trong phương trình</bookmark_value><bookmark_value>biến;giải phương trình</bookmark_value><bookmark_value>ví dụ;tìm mục tiêu</bookmark_value>"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3145068\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
+msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Ứng dụng Tìm mục tiêu\">Ứng dụng Tìm mục tiêu</link></variable>"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3145171\n"
+"2\n"
+"help.text"
+msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
+msgstr "Với sự trợ giúp của chức năng Tìm Mục Tiêu, bạn có thể tính một giá trị mà, làm một phần của công thức, dẫn đến kết quả mà bạn chỉ định cho công thức. Vì vậy bạn xác định công thức với một vài giá trị cố định và một giá trị biến và kết quả cho công thức."
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3153966\n"
+"14\n"
+"help.text"
+msgid "Goal Seek Example"
+msgstr "Ví dụ về Tìm Mục Tiêu"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3150871\n"
+"4\n"
+"help.text"
+msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
+msgstr "Để tính lãi hàng năm (I), hãy tạo một bảng với các giá trị về tư bản (C), số năm (n) và tỉ lệ lãi xuất (i). Công thức sẽ là:"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3152596\n"
+"5\n"
+"help.text"
+msgid "I = C * n* i"
+msgstr "I = C * n* i"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3155335\n"
"15\n"
"help.text"
-msgid "Enter a new name for the sheet and click <emph>OK</emph>."
-msgstr "Nhập tên mới cho trang tính và nhấn nút <emph>OK</emph>."
+msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
+msgstr "Giả sử tỉ lệ lãi xuất <item type=\"literal\">i</item> là 7.5% và số năm <item type=\"literal\">n</item> là 1 năm không đổi. Tuy nhiên, bạn muốn biết lượng tư bản đầu tư <item type=\"literal\">C</item> đã được thay đổi ở mức nào để có thể đạt được mức lợi nhuận thu lại cụ thể <item type=\"literal\">I</item>. Với ví dụ này, hãy tính toán lượng tư bản <item type=\"literal\">C</item> được yêu cầu nếu bạn muốn thu được một lợi nhuận hàng năm $15 000."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3149667\n"
-"27\n"
+"goalseek.xhp\n"
+"par_id3155960\n"
+"6\n"
"help.text"
-msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
-msgstr "Tương tự, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> và nhấn chuột lên bất kì tên một trang nào và nhập trực tiếp tên mới vào."
+msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
+msgstr "Nhập mỗi giá trị cho Tư bản <item type=\"literal\">C</item> (một giá trị tùy ý dạng <item type=\"literal\">$100 000</item>), số năm <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), và tỉ lệ lãi xuất <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) trong mỗi ô. Nhập công thức để tính lãi xuất <item type=\"literal\">I</item> trong một ô khác. Thay cho <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, và <item type=\"literal\">i</item>, hãy sử dụng tham chiếu <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\"> tới ô</link> với giá trị tương ứng."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502833\n"
+"goalseek.xhp\n"
+"par_id3147001\n"
+"16\n"
"help.text"
-msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
-msgstr "Tên trang có thể chứa hầu hết các kí tự. Nếu bạn muốn lưu lại dưới dạng Microsoft Excel thì một số giới hạn sẽ được áp dụng."
+msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
+msgstr "Đặt con trỏ vào ô chứa lãi xuất <item type=\"literal\">I</item>, và chọn <emph>Công cụ > Tìm Mục Tiêu</emph>. Hộp thoại <emph>Tìm mục tiêu</emph> sẽ mở ra."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050283\n"
+"goalseek.xhp\n"
+"par_id3150088\n"
+"17\n"
"help.text"
-msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
-msgstr "Khi lưu lại dưới định dạng của Microsoft Excel, những kí tự sau không được có mặt trên tên trang:"
+msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
+msgstr "Ô đúng đã được nhập trong trường <emph>Ô công thức</emph>."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050281\n"
+"goalseek.xhp\n"
+"par_id3166426\n"
+"18\n"
"help.text"
-msgid "colon :"
-msgstr "dấu hai chấm :"
+msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
+msgstr "Đặt con trỏ vào trong trường <emph>Ô biến đổi</emph>. Trong trang tính, nhấn vào ô chứa giá trị cần thay đổi, trong ví dụ này, đó chính là ô chứa giá trị tư bản <item type=\"literal\">C</item>."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502897\n"
+"goalseek.xhp\n"
+"par_id3150369\n"
+"19\n"
"help.text"
-msgid "back slash \\"
-msgstr "Dấu gạch chéo ngược \\"
+msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
+msgstr "Nhập kết quả dự kiến của công thức vào hộp văn bản <emph>Giá trị đích</emph>. Trong ví dụ này, giá trị là 15 000. Nhấn <emph>OK</emph>."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050299\n"
+"goalseek.xhp\n"
+"par_id3146978\n"
+"20\n"
"help.text"
-msgid "forward slash /"
-msgstr "dấu chéo thuận /"
+msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
+msgstr "Một hộp thoại xuất hiện sẽ cho bạn biết Tìm mục tiêu đã thành công. Nhấn <emph>Có</emph> để nhập kết quả vào ô với giá trị biến đổi."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502913\n"
+"goalseek.xhp\n"
+"par_id3149409\n"
+"23\n"
"help.text"
-msgid "question mark ?"
-msgstr "dấu hỏi ?"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Tìm mục tiêu\">Tìm mục tiêu</link>"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050298\n"
+"html_doc.xhp\n"
+"tit\n"
"help.text"
-msgid "asterisk *"
-msgstr "dấu sao *"
+msgid "Saving and Opening Sheets in HTML"
+msgstr "Lưu và Mở bảng tính theo HTML"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502969\n"
+"html_doc.xhp\n"
+"bm_id3150542\n"
"help.text"
-msgid "left square bracket ["
-msgstr "dấu mở ngoặc vuông trái ["
+msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
+msgstr "<bookmark_value>HTML; bảng tính</bookmark_value><bookmark_value>bảng tính; HTML</bookmark_value><bookmark_value>lưu;bảng tính theo HTML</bookmark_value><bookmark_value>mở; bảng tính theo HTML</bookmark_value>"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502910\n"
+"html_doc.xhp\n"
+"hd_id3150542\n"
+"1\n"
"help.text"
-msgid "right square bracket ]"
-msgstr "dấu mở ngoặc vuông phải ]"
+msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
+msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Lưu và Mở bảng tính theo HTML\">Lưu và Mở bảng tính theo HTML</link></variable>"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502971\n"
+"html_doc.xhp\n"
+"hd_id3154124\n"
+"2\n"
"help.text"
-msgid "single quote ' as the first or last character of the name"
-msgstr "dấu nháy đơn ' như là kí tự đầu hay của tên"
+msgid "Saving Sheets in HTML"
+msgstr "Lưu bảng tính theo HTML"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050307\n"
+"html_doc.xhp\n"
+"par_id3145785\n"
+"3\n"
"help.text"
-msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
-msgstr "Trong tham chiếu tới ô, tên của trang phải được đặt trong dấu nháy đơn ' nếu như tên chứa các kí tự khác ngoài số hay abc hay gạch dưới. Nếu bạn muốn sử dụng dấu nháy đơn trong tên thì bạn phải điền 2 dấu nháy. Ví dụ bạn muốn tham chiếu tới ô A1 trong một trang với tên sau:"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc lưu tất cả các trang tính của một tài liệu Calc với nhau dưới dạng tài liệu HTML. Ở phần đầu của tài liệu HTML, một tiêu đề và một danh sách các siêu liên kết tự động được thêm vào mà dẫn đến các trang tính riêng lẻ trong tài liệu."
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503071\n"
+"html_doc.xhp\n"
+"par_id3155854\n"
+"4\n"
"help.text"
-msgid "This year's sheet"
-msgstr "This year's sheet"
+msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
+msgstr "Các số được thể hiện dưới dạng viết. Hơn nữa, trong thẻ HTML <SDVAL>, giá trị số nội bộ chính xác được viết ra do đó sau khi mở tài liệu HTML bằng <item type=\"productname\">%PRODUCTNAME</item>, bạn sẽ biết là mình đã có các giá trị chính xác."
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503054\n"
+"html_doc.xhp\n"
+"par_id3153188\n"
+"5\n"
"help.text"
-msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
-msgstr "Tham chiếu phải được đặt trong ngoặc đơn, và nếu có ngoặc đơn ở trong tên thì bạn phải sử dụng hai dấu:"
+msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
+msgstr "Để lưu tài liệu Calc hiện thời dưới dạng HTML, chọn <emph>Tập tin > Lưu dạng</emph>."
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503069\n"
+"html_doc.xhp\n"
+"par_id3148645\n"
+"6\n"
"help.text"
-msgid "'This year''s sheet'.A1"
-msgstr "'This year''s sheet'.A1"
+msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
+msgstr "Trong hộp danh sách <emph>Lưu dạng Kiểu</emph>, trong vùng với các bộ lọc <item type=\"productname\">%PRODUCTNAME</item> Calc khác, chọn tập tin dạng « Tài liệu HTML (<item type=\"productname\">%PRODUCTNAME</item> Calc) »."
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3155444\n"
+"html_doc.xhp\n"
+"par_id3154729\n"
+"7\n"
+"help.text"
+msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
+msgstr "Nhập <emph>Tên tập tin</emph> và nhấn <emph>Lưu</emph>."
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"hd_id3149379\n"
+"8\n"
+"help.text"
+msgid "Opening Sheets in HTML"
+msgstr "Mở Bảng tính theo HTML"
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3149959\n"
+"10\n"
+"help.text"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> đưa ra các bộ lọc khác nhau để mở các tập tin HTML có thể được chọn dưới <emph>Tập tin > Mở</emph> trong hộp danh sách <emph>Tập tin kiểu</emph>."
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3146969\n"
+"15\n"
+"help.text"
+msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr "Chọn loại tập tin « Tài liệu HTML (<item type=\"productname\">%PRODUCTNAME</item> Calc) » để mở trong <item type=\"productname\">%PRODUCTNAME</item> Calc."
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3155446\n"
"16\n"
"help.text"
-msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
-msgstr "Tên của một trang tính độc lập với tên của bảng tính. Bạn có thể nhập tên bảng tính khi lần đầu tiên bạn lưu nó dưới dạng một tập tin. Tài liệu này có thể chứa đến 256 trang tính riêng rẻ với những tên khác nhau."
+msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
+msgstr "Bạn có thể sử dụng tất cả tùy chọn cho <item type=\"productname\">%PRODUCTNAME</item> Calc. Tuy nhiên, không phải tất cả mọi tùy chọn của <item type=\"productname\">%PRODUCTNAME</item> Calc dùng cho việc soạn thảo đều được lưu với định dạng HTML."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: html_doc.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
+"html_doc.xhp\n"
+"par_id3150370\n"
+"17\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Tập tin > Mở\">Tập tin > Mở</link>"
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3150199\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Tập tin > Lưu dạng\">Tập tin > Lưu dạng</link>"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
"tit\n"
"help.text"
-msgid "Selecting Pivot Table Output Ranges"
-msgstr "Chọn các phạm vi đầu ra DataPilot"
+msgid "Entering a Number with Leading Zeros"
+msgstr "Nhập một số bắt đầu bằng số 0"
-#: datapilot_tipps.xhp
-#, fuzzy
+#: integer_leading_zero.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"bm_id3148663\n"
+"integer_leading_zero.xhp\n"
+"bm_id3147560\n"
"help.text"
-msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
-msgstr "<bookmark_value>chức năng DataPilot; bảo vệ dữ liệu khỏi bị ghi đè</bookmark_value><bookmark_value>phạm vi đầu ra của bảng DataPilot</bookmark_value>"
+msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
+msgstr "<bookmark_value>giá trị số không; nhập số không đứng đầu</bookmark_value><bookmark_value>số; với số không đứng đầu</bookmark_value><bookmark_value>số không đứng đầu</bookmark_value><bookmark_value>số nguyên với số không đứng đầu</bookmark_value><bookmark_value>số; thay đổi định dạng văn bản/số</bookmark_value><bookmark_value>ô; thay đổi định dạng văn bản/số</bookmark_value><bookmark_value>định dạng; thay đổi cho văn bản/số</bookmark_value><bookmark_value>văn bản trong ô; đổi thành các số</bookmark_value><bookmark_value>chuyển đổi; văn bản sang số</bookmark_value>"
-#: datapilot_tipps.xhp
-#, fuzzy
+#: integer_leading_zero.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"hd_id3148663\n"
+"integer_leading_zero.xhp\n"
+"hd_id3147560\n"
+"67\n"
+"help.text"
+msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
+msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Nhập số bắt đầu bằng số 0\">Nhập số bắt đầu bằng số 0</link></variable>"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153194\n"
+"55\n"
+"help.text"
+msgid "There are various ways to enter integers starting with a zero:"
+msgstr "Có nhiều cách để nhập các số nguyên bắt đầu bằng số 0:"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146119\n"
+"56\n"
+"help.text"
+msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
+msgstr "Nhập số dưới dạng văn bản. Cách dễ nhất là nhập số bắt đầu với một dấu lược (ví dụ, <item type=\"input\">'0987</item>). Dấu lược này sẽ không xuất hiện trong ô, và số này sẽ được định dạng như văn bản. Tuy nhiên, vì số ở trong định dạng văn bản nên bạn không thể tính được."
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154013\n"
+"57\n"
+"help.text"
+msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
+msgstr "Định dạng một ô với một định dạng số ví dụ như <item type=\"input\">\\0000</item>. Định dạng này có thể được gán trong trường <emph>Mã định dạng</emph> dưới <emph>Định dạng > Ô > (thẻ) Số</emph>, và quy định hiển thị ô dạng « luôn đặt một số 0 lên đầu và sau đó đến số nguyên, có ít nhất 3 lần số, không thì điền bằng số không bên trái »."
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153158\n"
+"58\n"
+"help.text"
+msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
+msgstr "Nếu bạn muốn ứng dụng một định dạng số vào một cột các số trong định dạng văn bản (ví dụ, văn bản « 000123 » trở thành số « 123 »), hãy làm như sau:"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149377\n"
+"59\n"
+"help.text"
+msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
+msgstr "Chọn cột có các ký số được tìm thấy trong định dạng văn bản. Đặt định dạng ô trong cột đó thành « Số »."
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154944\n"
+"60\n"
+"help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Tìm và Thay thế</emph>"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154510\n"
+"61\n"
+"help.text"
+msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item>"
+msgstr "Trong hộp <emph>Tìm kiếm</emph>, nhập <item type=\"input\">^[0-9]</item>"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3155068\n"
+"62\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
+msgstr "Trong hộp <emph>Thay thế bằng</emph>, nhập <item type=\"input\">&</item>"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149018\n"
+"63\n"
+"help.text"
+msgid "Check <emph>Regular expressions</emph>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3156382\n"
+"64\n"
+"help.text"
+msgid "Check <emph>Current selection only</emph>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146916\n"
+"65\n"
+"help.text"
+msgid "Click <emph>Replace All</emph>"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
+msgstr "Phím tắt (Khả năng truy cập bảng %PRODUCTNAME Calc)"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"bm_id3145120\n"
+"help.text"
+msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
+msgstr "<bookmark_value>khả năng truy cập; lối tắt %PRODUCTNAME Calc tắt</bookmark_value><bookmark_value>phím tắt; khả năng truy cập đến %PRODUCTNAME Calc</bookmark_value>"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3145120\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Phím tắt (Khả năng truy cập đến %PRODUCTNAME Calc)\">Phím tắt (<item type=\"productname\">%PRODUCTNAME</item> Khả năng truy cập đến Calc)</link></variable>"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154760\n"
+"13\n"
+"help.text"
+msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
+msgstr "Cũng đề cập đến danh sách các phím tắt dùng cho phép Calc <item type=\"productname\">%PRODUCTNAME</item> và <item type=\"productname\">%PRODUCTNAME</item> nói chung."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3153360\n"
+"12\n"
+"help.text"
+msgid "Cell Selection Mode"
+msgstr "Chế độ chọn ô"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Biểu tượng</alt></image>"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154319\n"
+"11\n"
+"help.text"
+msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
+msgstr "Trong hộp văn bản có một nút để thu nhỏ hộp thoại, nhấn <item type=\"keycode\">F2</item> để vào chế độ lựa chọn ô. Chọn bất cứ số nào của ô, sau đó nhấn tiếp <item type=\"keycode\">F2</item> để hiển thị hộp thoại."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3145272\n"
+"10\n"
+"help.text"
+msgid "In the cell selection mode, you can use the common navigation keys to select cells."
+msgstr "Trong chế độ chọn ô, bạn có thể sử dụng phím điều hướng chung để chọn các ô."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3148646\n"
+"14\n"
+"help.text"
+msgid "Controlling the Outline"
+msgstr "Điều khiển Phác thảo"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3146120\n"
+"15\n"
+"help.text"
+msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
+msgstr "Bạn có thể sử dụng bàn phím trong <link href=\"text/scalc/01/12080000.xhp\" name=\"Phác thảo\">Phác thảo</link>:"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3147394\n"
+"16\n"
+"help.text"
+msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
+msgstr "Nhấn <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> cho đến khi cửa sổ phác thảo nằm ngang hoặc thẳng đứng trở nên rõ nét."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149379\n"
+"17\n"
+"help.text"
+msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
+msgstr "<item type=\"keycode\">Tab</item> — xoay vòng thông qua tất cả các nút hiển thị từ đỉnh tới đáy hoặc từ trái sang phải."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3156286\n"
+"18\n"
+"help.text"
+msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
+msgstr "<item type=\"keycode\">Shift+Tab</item> — xoay vòng qua tất cả các nút hiển thị theo hướng ngược lại."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149403\n"
"19\n"
"help.text"
-msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
-msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Chọn các phạm vi đầu ra DataPilot\">Chọn các phạm vi đầu ra DataPilot</link></variable>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 đến Command+8</caseinline><defaultinline>Ctrl+1 đến Ctrl+8</defaultinline></switchinline> - hiển thị đến các mức cho trước, ẩn những mức cao hơn."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3154123\n"
+"keyboard.xhp\n"
+"par_id3150329\n"
"20\n"
"help.text"
-msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
-msgstr "Nhấn chuột vào nút <emph>Nhiều</emph> bên trong hộp thoại <emph>DataPilot</emph>. Hộp thoại sẽ được mở rộng."
+msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
+msgstr "Sử dụng <item type=\"keycode\">+</item> hay <item type=\"keycode\">-</item> để hiển thị hay ẩn nhóm phác thảo trông rõ."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3153771\n"
+"keyboard.xhp\n"
+"par_id3155446\n"
"21\n"
"help.text"
-msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
-msgstr "Bạn có thể chọn vùng cho trước để tạo bảng DataPilot, từ hộp <emph>Kết quả tới</emph>. Nếu chuỗi các kết quả không được đặt tên, hãy nhập tên từ ô phía trên bên trái của dãy vào vùng bên phải của hộp <emph>Kết quả tới</emph>. Bạn cũng có thể nhấn chuột vào ô thích hợp để nhập các tên vào."
+msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
+msgstr "Bấm <item type=\"keycode\">Enter</item> để kích hoạt nút được chọn."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3146974\n"
-"23\n"
+"keyboard.xhp\n"
+"par_id3154253\n"
+"22\n"
"help.text"
-msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
-msgstr "Nếu bạn đánh dấu vào hộp kiểm tra <emph>Bỏ qua các hàng rỗng</emph>, thì các hàng này sẽ không được tính đến khi bảng DataPilot được tạo ra."
+msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
+msgstr "Dùng mũi tên <item type=\"keycode\">Lên</item>, <item type=\"keycode\">Xuống</item>, <item type=\"keycode\">Trái</item> hay <item type=\"keycode\">Phải</item> để xoay vòng qua tất cả các nút trong cấp hiện thời."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3145273\n"
-"24\n"
+"keyboard.xhp\n"
+"hd_id3147343\n"
+"8\n"
"help.text"
-msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
-msgstr "Nếu hộp kiểm tra <emph>Nhận ra phân loại</emph> được đánh dấu, thì các phân loại sẽ được xác định bởi các đề mục của chúng và do đó được chia ra khi bảng DataPilot được thiết lập."
+msgid "Selecting a Drawing Object or a Graphic"
+msgstr "Chọn một Đối tượng Vẽ hay một Đồ họa"
-#: autofilter.xhp
+#: keyboard.xhp
msgctxt ""
-"autofilter.xhp\n"
+"keyboard.xhp\n"
+"par_idN107AA\n"
+"help.text"
+msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
+msgstr "Chọn <emph>Xem > Thanh công cụ > Vẽ</emph> để mở thanh công cụ <emph>Vẽ</emph>."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155333\n"
+"7\n"
+"help.text"
+msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
+msgstr "Nhấn <item type=\"keycode\">F6</item> cho đến khi thanh công cụ <emph>Vẽ</emph> được chọn."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150345\n"
+"4\n"
+"help.text"
+msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
+msgstr "Nếu công cụ lựa chọn đang được kích hoạt, nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. Đối tượng hình vẽ đầu tiên trong bản sẽ được chọn."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3159240\n"
+"3\n"
+"help.text"
+msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
+msgstr "Bạn có thể chuyển chú ý vào tài liệu với tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155379\n"
+"2\n"
+"help.text"
+msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
+msgstr "Bây giờ bạn có thể dùng phím <item type=\"keycode\">Tab</item> để chọn đối tượng vẽ hay đồ họa tiếp theo và dùng <item type=\"keycode\">Shift+Tab</item> để chọn đối tượng hoặc đồ họa đã hiển thị trước đó."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
"tit\n"
"help.text"
-msgid "Applying AutoFilter"
-msgstr "Áp dụng Tự động Lọc"
+msgid "Freezing Rows or Columns as Headers"
+msgstr "Hàng hay cột đông cứng dạng đầu trang"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"bm_id3156423\n"
+"line_fix.xhp\n"
+"bm_id3154684\n"
"help.text"
-msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
-msgstr "<bookmark_value>bộ lọc, xem thêm chức năng Tự động Lọc</bookmark_value><bookmark_value>chức năng Tự động Lọc;áp dụng</bookmark_value><bookmark_value>bảng; lọc giá trị</bookmark_value><bookmark_value>số; lọc bảng</bookmark_value><bookmark_value>cột; chức năng Tự động Lọc</bookmark_value><bookmark_value>trình đơn thả xuống trong cột của bảng</bookmark_value><bookmark_value>vùng cơ sở dữ liệu; chức năng Tự động Lọc</bookmark_value>"
+msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
+msgstr "<bookmark_value>bảng; làm đông</bookmark_value><bookmark_value>hàng tiêu đề; làm đông trong khi chia bảng</bookmark_value><bookmark_value>hàng; làm đông </bookmark_value><bookmark_value>cột; làm đông </bookmark_value><bookmark_value>làm động hàng hay cột</bookmark_value><bookmark_value>đầu trang; làm động trong khi chia bảng</bookmark_value><bookmark_value>tránh cuộn trong bảng</bookmark_value><bookmark_value>cửa sổ; chia</bookmark_value><bookmark_value>bảng; chia cửa sổ</bookmark_value>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"hd_id3156423\n"
-"6\n"
+"line_fix.xhp\n"
+"hd_id3154684\n"
+"1\n"
"help.text"
-msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
-msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Áp dụng Tự động Lọc\">Áp dụng Tự động Lọc</link></variable>"
+msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
+msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Hàng hay cột đông cứng dạng đầu trang\">Hàng hay cột đông cứng dạng đầu trang</link></variable>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3147427\n"
+"line_fix.xhp\n"
+"par_id3148576\n"
+"2\n"
+"help.text"
+msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
+msgstr "Nếu bạn có các hàng hay cột dữ liệu dài mở rộng vượt quá vùng hiển thị của bảng tính, bạn có thể làm đông chúng lại, điều này giúp bạn có thể nhìn được các hàng và cột trong khi cuộn qua phần còn lại của dữ liệu."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156441\n"
+"3\n"
+"help.text"
+msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
+msgstr "Chọn hàng bên dưới, hoặc cột bên phải của hàng hoặc cột đó mà bạn muốn để chúng trong vùng bị làm đông. Tất cả các hàng bên trên hay các cột ở bên trái vùng chọn đều bị làm đông."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3153158\n"
+"13\n"
+"help.text"
+msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
+msgstr "Để đông cứng cả hàng và cột, chọn <emph>ô</emph> ở bên dưới hàng đó và ở bên phải của cột mà bạn muốn làm đông."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156286\n"
+"4\n"
+"help.text"
+msgid "Choose <emph>Window - Freeze</emph>."
+msgstr "Chọn <emph>Cửa sổ > Làm đông</emph>."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3151073\n"
+"5\n"
+"help.text"
+msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
+msgstr "Để khử hoạt tính, tiếp tục chọn <emph>Cửa sổ > Làm đông</emph> (mục bật/tắt)."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3155335\n"
"7\n"
"help.text"
-msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
-msgstr "Chức năng <emph>Lọc tự động</emph> chèn một hộp chọn trong một hoặc nhiều cột dữ liệu để bạn chọn ra những bản ghi (hàng) cần hiển thị."
+msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
+msgstr "Nếu vùng xác định có thể cuộn được, áp dụng lệnh <emph>Cửa sổ > Xẻ</emph>."
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3152576\n"
+"line_fix.xhp\n"
+"par_id3147345\n"
+"8\n"
+"help.text"
+msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
+msgstr "Nếu bạn muốn in một hàng nào đó trên tất cả các trang của tài liệu, hãy chọn <emph>Định dạng > Phạm vi in > Sửa</emph>."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3147004\n"
"9\n"
"help.text"
-msgid "Select the columns you want to use AutoFilter on."
-msgstr "Chọn các cột bạn muốn Tự động Lọc."
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Cửa sổ > Đông\">Cửa sổ > Đông</link>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3153157\n"
+"line_fix.xhp\n"
+"par_id3150088\n"
"10\n"
"help.text"
-msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
-msgstr "Chọn <emph>Dữ liệu > Lọc > Tự động Lọc</emph>. Mũi tên của hộp chọn hiện lên trên hàng đầu của vùng chọn."
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Cửa sổ > Xẻ\">Cửa sổ > Xẻ</link>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3154510\n"
+"line_fix.xhp\n"
+"par_id3150304\n"
"11\n"
"help.text"
-msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
-msgstr "Bắt đầu lọc bằng cách bấm vào mũi tên thả xuống trong tiêu đề cột và chọn một mục."
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Định dạng > Vùng in > Sửa\">Định dạng > Vùng in > Sửa</link>"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3155064\n"
-"13\n"
+"main.xhp\n"
+"tit\n"
"help.text"
-msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
-msgstr "Chỉ những hàng thoả mãn điều kiện mới được hiển thị. Những hàng còn lại bị lọc bỏ. Bạn có thể biết các hàng nào bị lọc nhờ số thứ tự của hàng. Các cột có áp dụng bộ lọc được đánh dấu bằng nút có hình mũi tên khác màu."
+msgid "Instructions for Using $[officename] Calc"
+msgstr "Hướng dẫn sử dụng $[officename] Calc"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id9216589\n"
+"main.xhp\n"
+"bm_id3150770\n"
"help.text"
-msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
-msgstr "Khi bạn áp dụng thêm một bộ lọc tự động cho một cột khác trong một vùng dữ liệu đã được lọc rồi, các hộp chọn sau sẽ chỉ liệt kê dữ liệu đã lọc."
+msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
+msgstr "<bookmark_value>Tài liệu Sử dụng như Thế nào về Calc</bookmark_value><bookmark_value>hướng dẫn; $[officename] Calc</bookmark_value>"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3153714\n"
-"12\n"
+"main.xhp\n"
+"hd_id3150770\n"
+"1\n"
"help.text"
-msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
-msgstr "Để hiển thị tất cả các bản ghi, chọn mục <emph>-tất cả-</emph> trong hộp chọn \"Lọc tự động\". Nếu bạn chọn <emph>-Chuẩn-</emph>, hộp thoại <emph>Bộ lọc chuẩn</emph> sẽ xuất hiện để bạn thiết lập một bộ lọc chuẩn. Chọn <emph>-10 giá trị lớn nhất-</emph> để chỉ hiển thị 10 giá trị lớn nhất."
+msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Hướng dẫn Sử dụng $[officename] Calc\">Hướng dẫn Sử dụng $[officename] Calc</link></variable>"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3147340\n"
+"main.xhp\n"
+"hd_id3145748\n"
+"2\n"
+"help.text"
+msgid "Formatting Tables and Cells"
+msgstr "Định dạng Bảng và Ô"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "Entering Values and Formulas"
+msgstr "Nhập các Giá trị và Công thức"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3152899\n"
+"4\n"
+"help.text"
+msgid "Entering References"
+msgstr "Nhập Tham chiếu"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3155382\n"
+"5\n"
+"help.text"
+msgid "Database Ranges in Tables"
+msgstr "Phạm vi Cơ sở Dữ liệu trong Bảng"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3159229\n"
+"6\n"
+"help.text"
+msgid "Advanced Calculations"
+msgstr "Phép tính Cấp cao"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3153070\n"
+"7\n"
+"help.text"
+msgid "Printing and Page Preview"
+msgstr "In và Xem thử trang"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3150437\n"
+"8\n"
+"help.text"
+msgid "Importing and Exporting Documents"
+msgstr "Nhập và Xuất Tài liệu"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3166464\n"
+"9\n"
+"help.text"
+msgid "Miscellaneous"
+msgstr "Linh tinh"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Multiple Cells"
+msgstr "Chọn nhiều ô"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
+msgstr "<bookmark_value>ô; chọn</bookmark_value><bookmark_value>đánh dấu ô</bookmark_value><bookmark_value>chọn;ô</bookmark_value><bookmark_value>vùng chọn nhều ô</bookmark_value><bookmark_value> chế độ chọn trong bảng tính</bookmark_value><bookmark_value>bảng; chọn phạm vi</bookmark_value>"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3153361\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
+msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Chọn nhiều ô\">Chọn nhiều ô</link></variable>"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3145272\n"
+"2\n"
+"help.text"
+msgid "Select a rectangular range"
+msgstr "Chọn một vùng vuông góc"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149261\n"
+"3\n"
+"help.text"
+msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
+msgstr "Ấn giứ nút chuột, kéo từ một góc tới góc đối diện chéo của vùng."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3151119\n"
+"4\n"
+"help.text"
+msgid "Mark a single cell"
+msgstr "Đánh dấu một ô đơn"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3146975\n"
"19\n"
"help.text"
-msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
-msgstr "Để thôi không dùng Tự động Lọc, hãy chọn lại tất cả các ô đã chọn ở bước 1 và chọn lại <emph>Dữ liệu > Lọc > Tự động Lọc</emph>."
+msgid "Do one of the following:"
+msgstr "Thực hiện một trong số thao tác sau:"
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id4303415\n"
+"mark_cells.xhp\n"
+"par_id3163710\n"
+"20\n"
"help.text"
-msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
-msgstr "Để gán bộ lọc tự động mới cho các bảng khác, bạn phải đặt một vùng cơ sở dữ liệu cho mỗi bảng."
+msgid "Click, then Shift-click the cell."
+msgstr "Nhấn chuột, sau đó ấn giữ phím Shift trong khi nhấn vào ô."
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3159236\n"
+"mark_cells.xhp\n"
+"par_id3149959\n"
+"5\n"
+"help.text"
+msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
+msgstr "Ấn giữ nút chuột, kéo một vùng qua hai ô, không được nhả chuột và sau đó kéo trở lại ô đầu tiên. Giờ bạn có thể di chuyển ô riêng lẻ bằng kéo và nhả chuột (kéo và thả)."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3154942\n"
+"6\n"
+"help.text"
+msgid "Select various dispersed cells"
+msgstr "Chọn các ô phân tán khác nhau"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072060\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr "Thực hiện một trong số thao tác sau:"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3156284\n"
+"7\n"
+"help.text"
+msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
+msgstr "Đánh dấu ít nhất một ô. Sau đó, trong khi nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, nhắp chuột vào mỗi ô cần bổ sung."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072023\n"
+"help.text"
+msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3146971\n"
+"8\n"
+"help.text"
+msgid "Switch marking mode"
+msgstr "Chuyển chế độ đánh dấu"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155064\n"
+"9\n"
+"help.text"
+msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
+msgstr "Trên thanh trạng thái, nhắp chuột vào hộp ghi chú CHUẨN / MỞ RỘNG / THÊM để chuyển chế độ đánh dấu"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3159264\n"
+"10\n"
+"help.text"
+msgid "Field contents"
+msgstr "Nội dung trường"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155337\n"
+"11\n"
+"help.text"
+msgid "Effect of clicking the mouse"
+msgstr "Hiệu ứng của việc nhắp chuột"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149568\n"
+"12\n"
+"help.text"
+msgid "STD"
+msgstr "CHUẨN"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3148486\n"
+"13\n"
+"help.text"
+msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
+msgstr "Thao tác nhắp chuột sẽ chọn ô mà bạn đã đặt chuột vào đó. Xóa dấu tất cả các ô đã được đánh dấu."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3150090\n"
"14\n"
"help.text"
-msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
-msgstr "Các chức năng số học cũng có thể lấy giá trị trong các ô không được hiển thị do không thoả mãn điều kiện của bộ lọc. Ví dụ, tổng của toàn bộ cột sẽ bao gồm cả các giá trị trong những ô đã bị lọc bỏ. Hãy sử dụng hàm <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> nếu bạn chỉ cần lấy tổng của những ô xuất hiện do thoả mãn điều kiện của bộ lọc."
+msgid "EXT"
+msgstr "MỞ RỘNG"
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3152985\n"
+"mark_cells.xhp\n"
+"par_id3150305\n"
+"15\n"
+"help.text"
+msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3145587\n"
"16\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Dữ liệu > Lọc > Tự động Lọc\">Dữ liệu > Lọc > Tự động Lọc</link>"
+msgid "ADD"
+msgstr "THÊM"
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3154484\n"
+"mark_cells.xhp\n"
+"par_id3154368\n"
"17\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
-msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
+msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
+msgstr "Nhấn chuột trong một ô sẽ thêm vào những ô đã được đánh dấu sẵn. Nhấn chuột tiếp vào một ô được đánh dấu sẽ bỏ dấu đi. Một cách khác là nhấn chuột trong khi giữ <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>."
-#: cellreference_dragdrop.xhp
+#: mark_cells.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
+"mark_cells.xhp\n"
+"par_id3154487\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Thanh trạng thái\">Thanh trạng thái</link>"
+
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing Cells by Drag-and-Drop"
-msgstr "Tham chiếu các ô bằng cách Kéo Thả"
+msgid "Entering Matrix Formulas"
+msgstr "Nhập Công thức Ma trận"
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"bm_id3154686\n"
+"matrixformula.xhp\n"
+"bm_id3153969\n"
"help.text"
-msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
-msgstr "<bookmark_value>kéo và thả; tham chiếu các ô</bookmark_value><bookmark_value>ô; tham chiếu bằng thao tác kéo thả </bookmark_value><bookmark_value>tham chiếu;chèn bằng cách kéo thả</bookmark_value><bookmark_value>chèn;tham chiếu, bằng kéo thả</bookmark_value>"
+msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
+msgstr "<bookmark_value>ma trận; nhập công thức ma trận</bookmark_value><bookmark_value>công thức; công thức ma trận</bookmark_value><bookmark_value>chèn;công thức ma trận</bookmark_value>"
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"hd_id3154686\n"
-"16\n"
+"matrixformula.xhp\n"
+"hd_id3153969\n"
+"13\n"
"help.text"
-msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
-msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Tham chiếu tới các ô bằng cách Kéo Thả\">Tham chiếu ô bằng cách Kéo Thả</link></variable>"
+msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
+msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Nhập Công thức Ma trận\">Nhập Công thức Ma trận</link></variable>"
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3156444\n"
-"17\n"
+"matrixformula.xhp\n"
+"par_id3153144\n"
+"14\n"
"help.text"
-msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
-msgstr "Nhờ bộ điều hướng, bạn có thể tham chiếu các ô từ bảng này sang bảng khác trong cùng tài liệu hoặc trong tài liệu khác. Các ô sẽ được chèn vào dưới dạng bản sao, liên kết hoặc siêu liên kết. Phạm vi các ô chèn vào phải được xác định với một cái tên trong tập tin gốc để có thể chèn vào trong tập tin đích."
+msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
+msgstr "Sau đây là một ví dụ về cách bạn có thể nhập một công thức ma trận, không đi vào chi tiết của các hàm ma trận."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3152576\n"
-"25\n"
+"matrixformula.xhp\n"
+"par_id3153188\n"
+"15\n"
"help.text"
-msgid "Open the document that contains the source cells."
-msgstr "Mở tài liệu chứa các ô nguồn."
+msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
+msgstr "Giả sử bạn đã nhập 10 số trong cột A và B (A1:A10 và B1:B10), và bạn muốn tính tổng của mỗi hàng trong cột C."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154011\n"
-"26\n"
+"matrixformula.xhp\n"
+"par_id3154321\n"
+"16\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Để đặt phạm vi nguồn, chọn các ô và chọn lệnh <emph>Chèn > Tên > Xác định</emph>. Lưu lại tài liệu nguồn và không đóng nó."
+msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
+msgstr "Dùng chuột, chọn vùng C1:C10 trong đó các kết quả sẽ được hiển thị."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3151073\n"
+"matrixformula.xhp\n"
+"par_id3149260\n"
+"17\n"
+"help.text"
+msgid "Press F2, or click in the input line of the Formula bar."
+msgstr "Nhấn phím <item type=\"keycode\">F2</item> hoặc nhắp chuột vào dòng nhập của thanh <emph>Công thức</emph>."
+
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3154944\n"
"18\n"
"help.text"
-msgid "Open the sheet in which you want to insert something."
-msgstr "Mở bảng tính mà bạn muốn chèn nội dung vào."
+msgid "Enter an equal sign (=)."
+msgstr "Nhập dấu bằng (=)."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154732\n"
+"matrixformula.xhp\n"
+"par_id3145252\n"
"19\n"
"help.text"
-msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
-msgstr "Mở <link href=\"text/scalc/01/02110000.xhp\" name=\"Bộ điều hướng\">Bộ điều hướng</link>. Trong hộp nằm dưới của Bộ điều hướng bạn chọn tập tin nguồn."
+msgid "Select the range A1:A10, which contains the first values for the sum formula."
+msgstr "Chọn vùng A1:A10, nơi sẽ chứa các giá trị đầu tiên của công thức tổng."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3150752\n"
-"22\n"
+"matrixformula.xhp\n"
+"par_id3144767\n"
+"20\n"
"help.text"
-msgid "In the Navigator, the source file object appears under \"Range names\"."
-msgstr "Trong Bộ điều hướng, đối tượng tập tin nguồn xuất hiện trong phần « Tên phạm vi »."
+msgid "Press the (+) key from the numerical keypad."
+msgstr "Nhấn phím (+) từ vùng số trên bàn phím."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154754\n"
-"27\n"
+"matrixformula.xhp\n"
+"par_id3154018\n"
+"21\n"
"help.text"
-msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
-msgstr "Bằng biểu tượng <emph>Chế độ kéo</emph> trong Bộ điều hướng, bạn có thể chọn tham chiếu là siêu liên kết, liên kết hoặc bản sao."
+msgid "Select the numbers in the second column in cells B1:B10."
+msgstr "Chọn các số trong cột thứ hai trong các ô B1:B10."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154256\n"
-"23\n"
+"matrixformula.xhp\n"
+"par_id3150716\n"
+"22\n"
"help.text"
-msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
-msgstr "Bấm vào tên trong phần « Tên phạm vi » ở trong Bộ điều hướng, và kéo nó vào bảng hiện thời, tới ô bạn muốn chèn tham chiếu vào."
+msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgstr "Kết thúc nhập liệu vào ma trận bằng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3149565\n"
-"24\n"
+"matrixformula.xhp\n"
+"par_id3145640\n"
+"23\n"
"help.text"
-msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
-msgstr "Bạn có thể dùng phương thức này để chèn vào một phạm vi từ bảng khác cũng trong tài liệu vào bảng hiện thời. Chọn tài liệu đang làm việc làm nguồn tham chiếu giống như bước 4 ở trên."
+msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
+msgstr "Vùng ma trận tự động được bảo vệ tránh khỏi những thay đổi, chẳng hạn như xóa hàng hay cột. Tuy nhiên, cũng có thể sửa bất kì một định dạng nào, ví dụ như nền trong ô."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
+"move_dragdrop.xhp\n"
"tit\n"
"help.text"
-msgid "Using Print Ranges on a Spreadsheet"
-msgstr "Sử dụng Phạm vi In trên Bảng tính"
+msgid "Moving Cells by Drag-and-Drop"
+msgstr "Di chuyển ô bằng Kéo và Thả"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"bm_id14648\n"
+"move_dragdrop.xhp\n"
+"bm_id3155686\n"
"help.text"
-msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
-msgstr "<bookmark_value>xuất; ô bảng</bookmark_value><bookmark_value>in; ô bảng</bookmark_value><bookmark_value>phạm vi; phạm vi in</bookmark_value><bookmark_value>xuất PDF của phạm vi in </bookmark_value><bookmark_value>phạm vi ô bảng; in</bookmark_value><bookmark_value>ô bảng; phạm vi in</bookmark_value><bookmark_value>phạm vi in</bookmark_value><bookmark_value>dọn, xem thêm xoá</bookmark_value><bookmark_value>xác định;phạm vi in</bookmark_value><bookmark_value>mở rộng phạm vi in</bookmark_value><bookmark_value>xoá; phạm vi in</bookmark_value>"
+msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
+msgstr "<bookmark_value>kéo và thả; di chuyển ô</bookmark_value><bookmark_value>ô; di chuyển bằng kéo và thả</bookmark_value><bookmark_value>cột; di chuyển bằng kéo và thả</bookmark_value><bookmark_value>di chuyển;các ô bằng kéo và thả</bookmark_value><bookmark_value>chèn;các ô, bằng kéo và thả</bookmark_value>"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108D7\n"
+"move_dragdrop.xhp\n"
+"hd_id986358\n"
"help.text"
-msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
-msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Xác định phạm vi in trên một trang tính</link></variable>"
+msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
+msgstr "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Di chuyển ô bằng Kéo và Thả</link></variable>"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108F5\n"
+"move_dragdrop.xhp\n"
+"par_id2760093\n"
"help.text"
-msgid "You can define which range of cells on a spreadsheet to print."
-msgstr "Bạn có thể xác định vùng của các ô trên một bảng tính để in."
+msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
+msgstr "Khi bạn kéo và thả một vùng chọn các ô trên một trang tính Calc, các ô này thông thường sẽ ghi đè lên các ô đang dùng trong vùng mà bạn nhả chuột. Đây là <emph>chế độ ghi đè</emph> bình thường."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108FB\n"
+"move_dragdrop.xhp\n"
+"par_id9527268\n"
"help.text"
-msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
-msgstr "Các ô trên trang tính không thuộc vùng in đã được xác định sẽ không được in hoặc xuất. Các trang tính không có vùng in xác định trước cũng không được in hay xuất đến một tập tin PDF, trừ phi tài liệu này sử dụng định dạng tập tin Excel."
+msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
+msgstr "Nếu bạn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> trong khi thả chuột, <emph>chế độ chèn</emph> sẽ được kích hoạt."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1077A\n"
+"move_dragdrop.xhp\n"
+"par_id79653\n"
"help.text"
-msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
-msgstr "Với các tập tin được mở trong định dạng Excel, tất cả các trang tính không chứa một vùng in được xác định trước đều vẫn còn được in. Điều này tương tự xảy ra khi bạn xuất bảng tính được định dạng Excel tới một tập tin PDF."
+msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
+msgstr "Trong chế độ chèn, các ô hiện hữu mà bạn nhả chuột vào đó sẽ được chuyển sang bên phải hay xuống dưới, và các ô được nhả sẽ được chèn vào các vị trí trống mà không bị ghi đè lên."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108FE\n"
+"move_dragdrop.xhp\n"
+"par_id8676717\n"
"help.text"
-msgid "To Define a Print Range"
-msgstr "Xác định một vùng in"
+msgid "The surrounding box of the moved cells looks different in insert mode."
+msgstr "Hộp các ô được di chuyển bao quanh sẽ trông khác đi trong chế độ chèn."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10905\n"
+"move_dragdrop.xhp\n"
+"par_id3968932\n"
"help.text"
-msgid "Select the cells that you want to print."
-msgstr "Chọn các ô bạn muốn in."
+msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
+msgstr "Trong chế độ ghi đè, bạn có thể thấy tất cả bốn đường viền xung quanh vùng được chọn. Trong chế độ chèn, bạn chỉ thấy viền bên trái khi các ô đích sẽ được dời sang bên phải. Bạn chỉ thấy viền bên trên khi các ô đích được dời xuống dưới."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10909\n"
+"move_dragdrop.xhp\n"
+"par_id7399517\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Define</emph>."
-msgstr "Chọn <emph>Định dạng > Phạm vi in > Xác định</emph>."
+msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
+msgstr "Việc vùng đích được chuyển sang phải hay xuống đáy phụ thuộc vào khoảng cách giữa các ô nguồn và ô đích, nếu bạn di chuyển trong cùng một trang tính. Và sẽ phụ thuộc vào số các ô ngang và ô dọc trong vùng được di chuyển, nếu bạn chuyển sang một trang tính khác."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10910\n"
+"move_dragdrop.xhp\n"
+"par_id8040406\n"
"help.text"
-msgid "To Add Cells to a Print Range"
-msgstr "Thêm ô vào một vùng in"
+msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
+msgstr "Nếu bạn di chuyển các ô trong chế độ chèn trong cùng hàng (chỉ hàng ngang) thì sau khi chèn, tất cả các ô này sẽ được chuyển sang bên trái để lấp đầy vùng nguồn."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10917\n"
+"move_dragdrop.xhp\n"
+"par_id2586748\n"
"help.text"
-msgid "Select the cells that you want to add to the existing print range."
-msgstr "Chọn các ô bạn muốn thêm vào một vùng in hiện thời."
+msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
+msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1091B\n"
+"move_dragdrop.xhp\n"
+"par_id5814081\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Add</emph>."
-msgstr "Chọn <emph>Định dạng > Phạm vi in > Thêm</emph>."
+msgid "Keys pressed while releasing the mouse button"
+msgstr "Phím được bấm trong khi nhả chuột"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10922\n"
+"move_dragdrop.xhp\n"
+"par_id6581316\n"
"help.text"
-msgid "To Clear a Print Range"
-msgstr "Gột một vùng in"
+msgid "Result"
+msgstr "Kết quả"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10929\n"
+"move_dragdrop.xhp\n"
+"par_id9906613\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
-msgstr "Chọn <emph>Định dạng > Phạm vi in > Bỏ</emph>."
+msgid "No key"
+msgstr "Không có phím"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10953\n"
+"move_dragdrop.xhp\n"
+"par_id2815637\n"
"help.text"
-msgid "Using the Page Break Preview to Edit Print Ranges"
-msgstr "Dùng công cụ <emph>Xem thử chỗ ngắt trang</emph> để sửa phạm vi in"
+msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
+msgstr "Các ô được di chuyển và ghi đè lên những ô này trong vùng đích. Các ô nguồn đã được làm trống."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1093E\n"
+"move_dragdrop.xhp\n"
+"par_id6161687\n"
"help.text"
-msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
-msgstr "Trong ô <emph>Xem thử chỗ ngắt trang</emph>, phạm vi in và vùng ngắt trang được tô viền màu xanh và được đánh số trang màu xám ở giữa. Vùng không được in có nền xám."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
+msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_id3153143\n"
-"8\n"
+"move_dragdrop.xhp\n"
+"par_id4278389\n"
"help.text"
-msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
-msgstr "Để xác định một vùng ngắt trang mới, hãy kéo đường viền tới một vị trí mới. Khi bạn xác định một vùng ngắt trang mới, một chỗ ngắt trang tự động sẽ được thay thế bằng chỗ ngắt tạo bằng tay."
+msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
+msgstr "Các ô được chép và ghi đè lên những ô này trong vùng đích. Các ô nguồn giữ nguyên."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10930\n"
+"move_dragdrop.xhp\n"
+"par_id2805566\n"
"help.text"
-msgid "To View and Edit Print Ranges"
-msgstr "Để xem và sửa phạm vi in"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10937\n"
+"move_dragdrop.xhp\n"
+"par_id5369121\n"
"help.text"
-msgid "Choose <emph>View - Page Break Preview</emph>."
-msgstr "Chọn <emph>Xem > Xem thử chỗ ngắt trang</emph>."
+msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
+msgstr "Liên kết tới các ô nguồn được chèn và ghi đè lên những ô trong vùng đích. Các ô nguồn được giữ nguyên."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1082A\n"
+"move_dragdrop.xhp\n"
+"par_id9518723\n"
"help.text"
-msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
-msgstr "Để thay đổi hệ số thu/phóng của ô <emph>Xem thử chỗ ngắt trang</emph>, hãy kích đúp vào giá trị phần trăm trên thanh <emph>Trạng thái</emph>, và chọn một hệ số thu/phóng mới."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
+msgstr "Phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10836\n"
+"move_dragdrop.xhp\n"
+"par_id2926419\n"
"help.text"
-msgid "Edit the print range."
-msgstr "Sửa phạm vi in."
+msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
+msgstr "Các ô được dời và làm dịch chuyển những ô trong vùng đích sang bên phải hoặc xuống dưới. Các ô nguồn được làm trống, ngoại trừ khi bạn dời chúng trong cùng hàng trên cùng trang tính."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10944\n"
+"move_dragdrop.xhp\n"
+"par_id4021423\n"
"help.text"
-msgid "To change the size of a print range, drag a border of the range to a new location."
-msgstr "Để thay đổi kích cỡ của một phạm vi in, kéo viền của vùng đó vào một vị trí mới."
+msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
+msgstr "Nếu bạn dời trong cùng hàng trên cùng trang tính, các ô tại vùng nguồn sẽ di chuyển sang bên phải, và sau đó cả hàng sẽ di chuyển để phủ đầy vùng nguồn."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_id3151075\n"
-"12\n"
+"move_dragdrop.xhp\n"
+"par_id2783898\n"
"help.text"
-msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
-msgstr "Để xóa một chỗ ngắt trang thực hiện bằng tay được chứa trong vùng in, hãy kéo viền của chỗ ngắt trang đó ra bên ngoài vùng in."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
+msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10948\n"
+"move_dragdrop.xhp\n"
+"par_id2785119\n"
"help.text"
-msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
-msgstr "Để làm sạch vùng in, kéo viền của vùng đó lên trên viền đối diện của vùng."
+msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr "Các ô được chép và di chuyển những ô trong vùng đích sang bên phải hay xuống đáy. Các ô nguồn được giữ nguyên."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10862\n"
+"move_dragdrop.xhp\n"
+"par_id584124\n"
"help.text"
-msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
-msgstr "Để rời khỏi ô <emph>Xem thử chỗ ngắt trang</emph>, chọn <emph>Xem > Chuẩn</emph>."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN109CF\n"
+"move_dragdrop.xhp\n"
+"par_id5590990\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\">Sửa phạm vi in</link>"
+msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr "Liên kết với các ô nguồn được chèn và làm di chuyển những ô trong vùng đích sang bên phải hoặc xuống dưới. Các ô nguồn được giữ nguyên."
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
+"multi_tables.xhp\n"
"tit\n"
"help.text"
-msgid "User Defined Borders in Cells"
-msgstr "Viền do người dùng định nghĩa cho ô"
+msgid "Navigating Through Sheets Tabs"
+msgstr "Điều hướng qua các thẻ trang tính"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"bm_id3457441\n"
+"multi_tables.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
-msgstr "<bookmark_value>các ô;viền</bookmark_value><bookmark_value>sắp đặt đường;các ô</bookmark_value><bookmark_value>viền;các ô</bookmark_value>"
+msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
+msgstr "<bookmark_value>bảng tính; hiển thị nhiều</bookmark_value><bookmark_value>thẻ bảng;sử dụng</bookmark_value><bookmark_value>xem;nhiều bảng tính</bookmark_value>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id4544816\n"
+"multi_tables.xhp\n"
+"hd_id3150769\n"
+"4\n"
"help.text"
-msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
-msgstr "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">Viền do người dùng định nghĩa cho các ô</link></variable>"
+msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
+msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Điều hướng qua các thẻ trang tính\">Điều hướng qua các thẻ trang tính</link></variable>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2320017\n"
+"multi_tables.xhp\n"
+"par_id3153771\n"
+"3\n"
"help.text"
-msgid "You can apply a variety of different lines to selected cells."
-msgstr "Bạn có thể dùng nhiều đường khác nhau cho các ô được chọn."
+msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
+msgstr "Mặc định là $[officename] hiển thị 3 trang tính « Trang1 » đến « Trang3 » trong mỗi bảng tính mới. Bạn có thể chuyển đổi giữa các trang tính trong một bảng tính sử dụng các tab trang ở phía dưới màn hình."
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8055665\n"
+"multi_tables.xhp\n"
+"par_idN106AF\n"
"help.text"
-msgid "Select the cell or a block of cells."
-msgstr "Chọn ô hoặc các ô."
+msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
+msgstr "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Thẻ trang tính</alt></image>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9181188\n"
+"multi_tables.xhp\n"
+"par_id3153144\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
-msgstr "Chọn <item type=\"menuitem\">Định dạng > Các ô</item>."
+msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Biểu tượng</alt></image>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9947508\n"
+"multi_tables.xhp\n"
+"par_id3147396\n"
+"5\n"
"help.text"
-msgid "In the dialog, click the <emph>Borders</emph> tab."
-msgstr "Trong hộp thoại, nhấn vào thẻ <emph>Viền</emph>."
+msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
+msgstr "Sử dụng các nút điều hướng để hiển thị tất cả các trang tính trong tài liệu của bạn. Nhấn nút ở cực trái hoặc cực phải sẽ tự hiển thị thẻ trang đầu hoặc cuối theo thứ tự. Các nút giữa cho phép người dùng cuộn tiến hoặc lùi giữa các thẻ trang. Để hiển thị một trang tính hãy nhấn chuột lên thẻ của trang đó."
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id7907956\n"
+"multi_tables.xhp\n"
+"par_id3149379\n"
+"6\n"
"help.text"
-msgid "Choose the border options you want to apply and click OK."
-msgstr "Chọn những tùy chọn viền bạn muốn áp dụng, sau đó nhấn vào nút <emph>OK</emph>."
+msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
+msgstr "Nếu không có đủ khoảng trống để hiển thị tất cả các thẻ trang, bạn có thể mở rộng nó bằng cách chỉ tới đường ngăn cách giữa thanh cuộn và thẻ trang, nhấn chuột và giữ nguyên, kéo sang bên phải. Bằng cách này, bạn sẽ chia khoảng cách giữa các tab trang và thanh cuộn ngang"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1342204\n"
+"multioperation.xhp\n"
+"tit\n"
"help.text"
-msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
-msgstr "Trong vùng <emph>Sắp đặt đường</emph> có một số tùy chọn để áp dụng nhiều kiểu dáng viền cùng lúc."
+msgid "Applying Multiple Operations"
+msgstr "Ứng dụng nhiều thao tác"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id4454481\n"
+"multioperation.xhp\n"
+"bm_id3147559\n"
"help.text"
-msgid "Selection of cells"
-msgstr "Lựa chọn ô"
+msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
+msgstr "<bookmark_value>nhiều thao tác</bookmark_value><bookmark_value>thao tác nếu-thì; hai biến</bookmark_value><bookmark_value>bảng; nhiều thao tác trong</bookmark_value><bookmark_value>bảng dữ liệu; nhiều thao tác trong</bookmark_value><bookmark_value>bảng phân loại chéo</bookmark_value>"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id7251503\n"
+"multioperation.xhp\n"
+"hd_id3147559\n"
+"5\n"
"help.text"
-msgid "Depending on the selection of cells, the area looks different."
-msgstr "Phụ thuộc vào sự lựa chọn các ô, vùng có hình thức khác nhau."
+msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
+msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Ứng dụng nhiều thao tác\">Ứng dụng nhiều thao tác</link></variable>"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8716696\n"
+"multioperation.xhp\n"
+"hd_id3145171\n"
+"1\n"
"help.text"
-msgid "Selection"
-msgstr "Vùng chọn"
+msgid "Multiple Operations in Columns or Rows"
+msgstr "Nhiều thao tác trong Cột hay Hàng"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4677877\n"
+"multioperation.xhp\n"
+"par_id4123966\n"
"help.text"
-msgid "Line arrangement area"
-msgstr "Vùng sắp đặt đường"
+msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
+msgstr "Lệnh <item type=\"menuitem\">Dữ liệu > Nhiều thao tác</item> tạo một công cụ dự định cho các câu hỏi dạng \"what if\". Trong bảng tính của bạn, hãy nhập một công thức để tính kết quả từ các giá trị đã có trong những ô khác. Sau đó, bạn hãy lập một vùng ô để nhập vào một vài giá trị cố định, lệnh <emph>Nhiều thao tác</emph> sẽ tính kết quả dựa theo công thức đó."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id807824\n"
+"multioperation.xhp\n"
+"par_id3156424\n"
+"2\n"
"help.text"
-msgid "One cell"
-msgstr "Một ô"
+msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
+msgstr "Trong trường <emph>Công thức</emph>, hãy nhập tham chiếu ô vào công thức có ứng dụng vùng dữ liệu. Trong trường <emph>Ô nhập vào cột/hàng</emph>, hãy nhập tham chiếu ô vào ô tương ứng có vai trò là một phần của công thức. Điều này được giải thích thông qua ví dụ sau:"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8473464\n"
+"multioperation.xhp\n"
+"hd_id3159153\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
-msgstr "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2709inch\" height=\"1.6146inch\"><alt id=\"alt_id1737113\">các đường viền cho một ô</alt></image>"
+msgid "Examples"
+msgstr "Thí dụ"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id3509933\n"
+"multioperation.xhp\n"
+"par_id3153189\n"
+"8\n"
"help.text"
-msgid "Cells in a column"
-msgstr "Các ô trong cột"
+msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
+msgstr "Bạn sản xuất đồ chơi và bán với giá $10 mỗi chiếc. Mối đồ chơi chỉ mất $2 chi phí sản xuất, hơn nữa bạn đã cố định chi phí vào khoảng $10 000 mỗi năm. Hỏi bạn sẽ kiếm được lợi nhuận mỗi năm là bao nhiêu nếu bạn bán ra một số đồ chơi nhất định?"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6635639\n"
+"multioperation.xhp\n"
+"par_id6478774\n"
"help.text"
-msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
-msgstr "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2917inch\" height=\"1.6146inch\"><alt id=\"alt_id1680959\">viền cho cột được chọn</alt></image>"
+msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
+msgstr "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">vùng trang tính Nếu-Thì</alt></image>"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8073366\n"
+"multioperation.xhp\n"
+"hd_id3145239\n"
+"41\n"
"help.text"
-msgid "Cells in a row"
-msgstr "Các ô trong hàng"
+msgid "Calculating With One Formula and One Variable"
+msgstr "Tính toán với một công thức và một biến"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6054567\n"
+"multioperation.xhp\n"
+"par_id3146888\n"
+"42\n"
"help.text"
-msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
-msgstr "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2811inch\" height=\"1.6146inch\"><alt id=\"alt_id9623096\">viền trong hàng được chọn</alt></image>"
+msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
+msgstr "Để tính lợi nhuận, trước tiên hãy nhập bất kì một con số nào để chỉ số lượng (hàng bán ra), trong ví dụ này ta lấy 2000. Lợi nhuận được tính theo công thức « Lợi nhuận=Số lượng*(Giá bán-Chi phí trực tiếp) - Chi phí cố định ». Nhập công thức này vào ô B5."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id466322\n"
+"multioperation.xhp\n"
+"par_id3157875\n"
+"43\n"
"help.text"
-msgid "Cells in a block of 2x2 or more"
-msgstr "Các ô trong khối 2×2 hoặc hơn nữa"
+msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
+msgstr "Trong cột D, nhập lượng bán hàng năm, theo trình tự từ trên xuống dưới, ví dụ 500 tới 5000, từng bước 500."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4511551\n"
+"multioperation.xhp\n"
+"par_id3159115\n"
+"44\n"
"help.text"
-msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
-msgstr "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2917inch\" height=\"1.6252inch\"><alt id=\"alt_id8139591\">viền trong một khối được chọn</alt></image>"
+msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
+msgstr "Chọn vùng D2:E11, các giá trị trong cột D và các ô trống dọc theo cột E."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5383465\n"
+"multioperation.xhp\n"
+"par_id3149723\n"
+"45\n"
"help.text"
-msgid "You cannot apply borders to multiple selections."
-msgstr "Bạn không thể đặt viền cho nhiều vùng chọn."
+msgid "Choose <emph>Data - Multiple operations</emph>."
+msgstr "Chọn <emph>Dữ liệu > Nhiều thao tác</emph>."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id7790154\n"
+"multioperation.xhp\n"
+"par_id3149149\n"
+"46\n"
"help.text"
-msgid "Default Settings"
-msgstr "Thiết lập mặc định"
+msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
+msgstr "Đặt con trỏ trong trường <emph>Công thức</emph>, nhắp chuột vào ô B5."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2918485\n"
+"multioperation.xhp\n"
+"par_id3149355\n"
+"47\n"
"help.text"
-msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
-msgstr "Nhấn vào một của những biểu tượng <emph>Mặc định</emph> để đặt (lại) nhiều viền cùng lúc."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
+msgstr "Đặt con trỏ trong trường <emph>Ô nhập cột</emph> và nhắp chuột vào ô B4. Điều này có nghĩa là số lượng của B4 chính là biến trong công thức này, và được thay thế bằng các giá trị trong cột được chọn."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1836909\n"
+"multioperation.xhp\n"
+"par_id3149009\n"
+"48\n"
"help.text"
-msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
-msgstr "Đường màu xám mảnh bên trong biểu tượng thì ngụ ý viền sẽ bị đặt lại hay bị xoá."
+msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
+msgstr "Đóng hộp thoại với nút <emph>OK</emph>. Bạn có thể thấy lợi nhuận với các đại lượng khác nhau trong cột E."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5212561\n"
+"multioperation.xhp\n"
+"hd_id3148725\n"
+"49\n"
"help.text"
-msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
-msgstr "Đường tối bên trong biểu tượng thì ngụ ý đường sẽ được đặt bằng kiểu dáng đường và màu đường đã chọn."
+msgid "Calculating with Several Formulas Simultaneously"
+msgstr "Tính toán đồng thời với một vài Công thức"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4818872\n"
+"multioperation.xhp\n"
+"par_id3146880\n"
+"50\n"
"help.text"
-msgid "The thick gray lines inside an icon show the lines that will not be changed."
-msgstr "Đường màu xám dày bên trong biểu tượng thì ngụ ý đường sẽ không thay đổi."
+msgid "Delete column E."
+msgstr "Xóa cột E."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id8989226\n"
+"multioperation.xhp\n"
+"par_id3154675\n"
+"51\n"
"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
+msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
+msgstr "Nhập công thức sau trong C5: « = B5/B4 ». Bây giờ bạn hãy tính lợi nhuận hàng năm của mỗi sản phẩm."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id622577\n"
+"multioperation.xhp\n"
+"par_id3148885\n"
+"52\n"
"help.text"
-msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
-msgstr "Chọn một khối khoảng 8×8 ô, sau đó chọn lệnh <emph>Định dạng > Ô > Viền</emph>."
+msgid "Select the range D2:F11, thus three columns."
+msgstr "Chọn vùng D2:F11, tương ứng 3 cột."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8119754\n"
+"multioperation.xhp\n"
+"par_id3147474\n"
+"53\n"
"help.text"
-msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
-msgstr "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.1354inch\" height=\"0.25inch\"><alt id=\"alt_id7261268\">hàng biểu tượng mặc định cho thẻ Viền</alt></image>"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "Chọn <emph>Dữ liệu > Nhiều thao tác</emph>."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8964201\n"
+"multioperation.xhp\n"
+"par_id3154846\n"
+"54\n"
"help.text"
-msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
-msgstr "Bấm vào biểu tượng bên trái để xoá tất cả các đường viền. Việc này sẽ xoá tất cả các đường viền bên ngoài, bên trong và các đường chéo."
+msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
+msgstr "Đặt con trỏ trong trường <emph>Công thức</emph>, chọn ô B5 qua C5."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6048463\n"
+"multioperation.xhp\n"
+"par_id3153931\n"
+"55\n"
"help.text"
-msgid "Click the second icon from the left to set an outer border and to remove all other lines."
-msgstr "Nhấn vào biểu tượng thứ hai từ cạnh bên trái để đặt một đường viền bên ngoài và gỡ bỏ các đường khác."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
+msgstr "Đặt con trỏ trong trường <emph>Ô nhập cột</emph> và nhắp chuột vào ô B4."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1495406\n"
+"multioperation.xhp\n"
+"par_id3150862\n"
+"56\n"
"help.text"
-msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
-msgstr "Bấm vào biểu tượng ngoài cùng bên phải để đặt viền bên ngoài. Các đường bên trong không thay đổi, ngoại trừ các đường chéo sẽ bị xoá."
+msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
+msgstr "Đóng hộp thoại với nút <emph>OK</emph>. Bạn sẽ thấy kết quả lợi nhuận trong cột E và lợi nhuận hàng năm cho mỗi sản phẩm tron cột F."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9269386\n"
+"multioperation.xhp\n"
+"hd_id3146139\n"
+"3\n"
"help.text"
-msgid "Now you can continue to see which lines the other icons will set or remove."
-msgstr "Sau đó, bạn có thể sử dụng các biểu tượng khác, để thấy những đường nào mỗi biểu tượng sẽ đặt hay gỡ bỏ."
+msgid "Multiple Operations Across Rows and Columns"
+msgstr "Nhiều thao tác giao với hàng và cột"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id3593554\n"
+"multioperation.xhp\n"
+"par_id3148584\n"
+"4\n"
"help.text"
-msgid "User Defined Settings"
-msgstr "Thiết lập tự xác định"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> cho phép bạn tiến hành nhiều thao tác chung cho hàng và cột trong đối tượng được gọi như là « bảng chéo ». Ô công thức phải tham chiếu tới vùng dữ liệu được sắp xếp trong cả hàng và cột. Chọn vùng quy định bởi cả hai vùng dữ liệu và hướng tới hộp thoại <emph>Nhiều thao tác</emph>. Nhập tham chiếu của công thức vào trường <emph>Công thức</emph>. Trường <emph>Ô nhập hàng</emph> và <emph>Ô nhập cột</emph> được dùng để nhập tham chiếu vào các ô tương ứng của công thức này."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4018066\n"
+"multioperation.xhp\n"
+"hd_id3149949\n"
+"57\n"
"help.text"
-msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
-msgstr "Trong vùng <emph>Tự xác định</emph>, bạn có thể nhấn chuột để đặt hay gỡ bỏ mỗi đường riêng. Ô xem thử hiển thị các đường theo ba tình trạng khác nhau."
+msgid "Calculating with Two Variables"
+msgstr "Tính toán khi có hai biến"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8004699\n"
+"multioperation.xhp\n"
+"par_id3154808\n"
+"58\n"
"help.text"
-msgid "Repeatedly click an edge or a corner to switch through the three different states."
-msgstr "Nhấn nhiều lần vào một cạnh hay góc để chuyển đổi qua ba tình trạng khác nhau."
+msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
+msgstr "Coi cột A và B thuộc cùng một bảng xét bên trên. Bây giờ bạn có thể muốn thay đổi không chỉ số lượng sản phẩm sản xuất ra hàng năm mà cả giá bán, và bạn rất quan tâm đến lợi nhuận thu được trong mỗi trường hợp."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8037659\n"
+"multioperation.xhp\n"
+"par_id3149731\n"
+"59\n"
"help.text"
-msgid "Line types"
-msgstr "Kiểu đường"
+msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
+msgstr "Mở rộng bảng trên. Từ D2 đến D11 chứa các số 500, 1000 và vân vân, cho đến 5000. Từ E1 đến H1 nhập vào các số 8, 10, 15 và 20."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2305978\n"
+"multioperation.xhp\n"
+"par_id3152810\n"
+"95\n"
"help.text"
-msgid "Image"
-msgstr "Ảnh"
+msgid "Select the range D1:H11."
+msgstr "Chọn vùng D1:H11"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8716086\n"
+"multioperation.xhp\n"
+"par_id3153620\n"
+"96\n"
"help.text"
-msgid "Meaning"
-msgstr "Nghĩa"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "Chọn <emph>Dữ liệu > Nhiều thao tác</emph>."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id3978087\n"
+"multioperation.xhp\n"
+"par_id3149981\n"
+"97\n"
"help.text"
-msgid "A black line"
-msgstr "Đường màu đen"
+msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
+msgstr "Đặt con trỏ trong trường <emph>Công thức</emph>, nhắp chuột vào ô B5."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4065065\n"
+"multioperation.xhp\n"
+"par_id3156113\n"
+"98\n"
"help.text"
-msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
-msgstr "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id9379863\">đường liền nét cho viền do người dùng đặt</alt></image>"
+msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
+msgstr "Đặt con trỏ trong trường <emph>Ô nhập hàng</emph> và nhắp chuột vào ô B1. Điều này có nghĩa là B1, biểu thị giá bán, là một biến được nhập theo chiều ngang (với các giá trị 8, 10. 15 và 20)."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6987823\n"
+"multioperation.xhp\n"
+"par_id3154049\n"
+"99\n"
"help.text"
-msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
-msgstr "Đường màu đen thì đặt đường tương ứng của các ô đã chọn. Đường này cũng được hiển thị dạng đường chấm chấm khi bạn chọn kiểu dáng kích cỡ 0.05 điểm. Chọn kiểu dáng đường đôi thì hiển thị đường đôi."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
+msgstr "Đặt con trỏ trong trường <emph>Ô nhập cột</emph> và nhắp chuột vào B4. Điều này cho biết B4, biểu thị số lượng, là một biến được nhập theo chiều dọc."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1209143\n"
+"multioperation.xhp\n"
+"par_id3149141\n"
+"100\n"
"help.text"
-msgid "A gray line"
-msgstr "Đường màu xám"
+msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
+msgstr "Đóng hộp thoại bằng cách nhấn nút OK. Bạn có thể thấy kết quả lợi nhuận tương ứng với các giá bán khác nhau trong vùng E2:H11."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6653340\n"
+"multioperation.xhp\n"
+"par_id3155104\n"
+"101\n"
"help.text"
-msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
-msgstr "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id6972563\">đường xám cho viền do người dùng đặt</alt></image>"
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Nhiều thao tác\">Nhiều tham tác</link>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2278817\n"
+"multitables.xhp\n"
+"tit\n"
"help.text"
-msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
-msgstr "Đường màu xám được hiển thị khi đường tương ứng của các ô đã chọn sẽ không thay đổi. Không có đường sẽ bị đặt hay bị gỡ bỏ ở vị trí này."
+msgid "Applying Multiple Sheets"
+msgstr "Ứng dụng nhiều trang tính"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5374919\n"
+"multitables.xhp\n"
+"bm_id3154759\n"
"help.text"
-msgid "A white line"
-msgstr "Đường màu trắng"
+msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
+msgstr "<bookmark_value>trang tính; chèn</bookmark_value><bookmark_value>chèn; trang tính</bookmark_value><bookmark_value>trang tính; lựa chọn nhiều</bookmark_value><bookmark_value>phụ thêm trang tính</bookmark_value><bookmark_value>lựa chọn;nhiều trang tính</bookmark_value><bookmark_value>nhiều trang tính</bookmark_value><bookmark_value>tính;nhiều trang tính</bookmark_value>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id52491\n"
+"multitables.xhp\n"
+"hd_id3154759\n"
+"9\n"
"help.text"
-msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
-msgstr "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id3801080\">đường trắng cho viền do người dùng đặt</alt></image>"
+msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
+msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Ứng dụng nhiều trang tính\">Ứng dụng nhiều trang tính</link></variable>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id372325\n"
+"multitables.xhp\n"
+"hd_id3148576\n"
+"10\n"
"help.text"
-msgid "A white line is shown when the corresponding line of the selected cells will be removed."
-msgstr "Đường màu trắng được hiển thị khi đường tương ứng của các ô đã chọn sẽ bị gỡ bỏ."
+msgid "Inserting a Sheet"
+msgstr "Chèn một trang tính"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id7282937\n"
+"multitables.xhp\n"
+"par_id3154731\n"
+"4\n"
"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
+msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
+msgstr "Chọn <item type=\"menuitem\">Chèn > Bảng</item> để chèn một trang mới hoặc trang có sẵn từ tập tin khác."
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4230780\n"
+"multitables.xhp\n"
+"par_id05092009140203598\n"
"help.text"
-msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
-msgstr "Chọn một ô, sau đó chọn <emph>Định dạng > Các ô > Viền</emph>."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại trong đó bạn có thể thêm ngôn ngữ vào danh sách.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1712393\n"
+"multitables.xhp\n"
+"par_id05092009140203523\n"
"help.text"
-msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
-msgstr "Bấm vào cạnh bên dưới để đặt một đường rất mảnh làm viền dưới. Tất cả các đường khác sẽ bị xoá khỏi ô."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại trong đó bạn có thể thêm ngôn ngữ vào danh sách.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5149693\n"
+"multitables.xhp\n"
+"par_id050920091402035\n"
"help.text"
-msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
-msgstr "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id9467452\">đặt một đường viền mảnh bên dưới</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chấn để chọn tất cả các bảng trong tài liệu.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5759453\n"
+"multitables.xhp\n"
+"par_id0509200914020391\n"
"help.text"
-msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
-msgstr "Chọn một kiểu đường đậm hơn và bấm vào cạnh bên dưới. Việc này sẽ đặt một nét đậm hơn làm viền dưới."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chấn để bỏ chọn tất cả các bảng trong tài liệu, ngoại trừ bảng hiện tại.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6342051\n"
+"multitables.xhp\n"
+"hd_id3154491\n"
+"11\n"
"help.text"
-msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
-msgstr "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id7431562\">đặt một nét đậm hơn làm đường viền</alt></image>"
+msgid "Selecting Multiple Sheets"
+msgstr "Chọn nhiều trang"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5775322\n"
+"multitables.xhp\n"
+"par_id3145251\n"
+"6\n"
"help.text"
-msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
-msgstr "Bấm vào biểu tượng <emph>Mặc định</emph> thứ hai từ bên trái để đặt cả bốn đường viền. Sau đó lặp đi lặp lại thao tác bấm chuột vào cạnh bên dưới tới khi một đường màu trắng hiện ra. Việc này sẽ xoá viền bên dưới."
+msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
+msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2882778\n"
+"multitables.xhp\n"
+"par_idN106B7\n"
"help.text"
-msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
-msgstr "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2709inch\" height=\"1.1354inch\"><alt id=\"alt_id8155766.00000001\">xoá viền bên dưới</alt></image>"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr "Bạn có thể sử dụng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down để chọn nhiều trang tính một lúc bằng bàn phím."
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8102053\n"
+"multitables.xhp\n"
+"hd_id3155600\n"
+"12\n"
"help.text"
-msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
-msgstr "Bạn có thể kết hợp một số kiểu và loại đường khác nhau. Ảnh cuối cùng biểu diễn cách thức đặt đường viền đậm hơn bên ngoài (đường đậm màu đen) trong khi tất cả các đường chéo bên trong ô không bị ảnh hưởng (đường màu xám)."
+msgid "Undoing a Selection"
+msgstr "Hủy bước một lựa chọn"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2102420\n"
+"multitables.xhp\n"
+"par_id3146969\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
-msgstr "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id5380718\">ví dụ về đặt đường viền nâng cao</alt></image>"
+msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
+msgstr ""
-#: userdefined_function.xhp
+#: multitables.xhp
msgctxt ""
-"userdefined_function.xhp\n"
+"multitables.xhp\n"
+"hd_id3156382\n"
+"15\n"
+"help.text"
+msgid "Calculating Across Multiple Sheets"
+msgstr "Tính toán qua nhiểu trang tính"
+
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id3155333\n"
+"16\n"
+"help.text"
+msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
+msgstr "Bạn có thể đề cập tới một vùng các trang tính trong công thức bằng cách chỉ định trang đầu và cuối của vùng, ví dụ <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item> tổng hợp tất cả các ô A1 trên Bảng1 đến Bảng3."
+
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
"tit\n"
"help.text"
-msgid "User-Defined Functions"
-msgstr "Các hàm do người sử dụng quy định"
+msgid "Inserting and Editing Comments"
+msgstr "Chèn và Sửa Ghi Chú"
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"bm_id3155411\n"
+"note_insert.xhp\n"
+"bm_id3153968\n"
"help.text"
-msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
-msgstr "<bookmark_value>hàm; do người sử dụng quy định</bookmark_value><bookmark_value>hàm do người sử dụng quy định</bookmark_value><bookmark_value> IDE Basic dùng cho các hàm do người sử dụng quy định</bookmark_value><bookmark_value>IDE; IDE Basic</bookmark_value><bookmark_value>lập trình;hàm</bookmark_value>"
+msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
+msgstr "<bookmark_value>ghi chú; trên các ô</bookmark_value><bookmark_value>ô;ghi chú</bookmark_value><bookmark_value>nhận xét; trên ô</bookmark_value><bookmark_value>nhận xét trên ô</bookmark_value><bookmark_value>định dạng;ghi chú trên ô</bookmark_value><bookmark_value>xem;ghi chú trên ô</bookmark_value>"
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3155411\n"
-"1\n"
+"note_insert.xhp\n"
+"hd_id3153968\n"
+"31\n"
"help.text"
-msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
-msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Tự xác định hàm\">Hàm do người sử dụng quy định</link></variable>"
+msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
+msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Chèn và Sửa Ghi Chú\">Chèn và Sửa Ghi Chú</link></variable>"
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3153969\n"
-"2\n"
+"note_insert.xhp\n"
+"par_id3150440\n"
+"32\n"
"help.text"
-msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
-msgstr "Bạn có thể ứng dụng các hàm do người sử dụng quy định trong $[officename] Calc theo các cách sau:"
+msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
+msgstr "Bạn có thể gán một ghi chú vào mỗi ô bằng cách chọn <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Note\"><emph>Chèn > Ghi chú</emph></link>. Ghi chú này sẽ được chỉ thị bằng một hình vuông nhỏ màu đỏ, gọi là vật chỉ thị ghi chú, trong ô đó."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145366\n"
-"4\n"
+"note_insert.xhp\n"
+"par_id3145750\n"
+"34\n"
"help.text"
-msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
-msgstr "Bạn có thể tự xác định các hàm cho mình bằng cách sử dụng IDE Basic. Phương pháp này yêu cầu một số kiến thức cơ bản về lập trình."
+msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
+msgstr "Ghi chú này sẽ hiển thị khi bạn đặt con trỏ chuột bên trên ô đó, với điều kiện là bạn đã kích hoạt mục <emph>Trợ giúp > Gợi ý</emph> hay <emph>Trợ giúp > Gợi ý Mở rộng</emph>."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3153768\n"
-"3\n"
+"note_insert.xhp\n"
+"par_id3148575\n"
+"33\n"
"help.text"
-msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
-msgstr "Bạn có thể lập trình các hàm dạng <link href=\"text/scalc/01/04060111.xhp\" name=\"phần bổ trợ\">phần bổ trợ</link>. Phương pháp này yêu cầu kiến thức nâng cao về lập trình."
+msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
+msgstr "Khi chọn một ô, bạn có thể chọn <emph>Hiển thị ghi chú</emph> từ trình đơn ngữ cảnh của ô đó. Làm như vậy sẽ giúp cho ghi chú của bạn hiển thị cho đến khi bạn khử hoạt tính lệnh <emph>Hiển thị ghi chú</emph> trong cùng một trình đơn ngữ cảnh."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3149260\n"
-"6\n"
+"note_insert.xhp\n"
+"par_id3149958\n"
+"35\n"
"help.text"
-msgid "Defining A Function Using %PRODUCTNAME Basic"
-msgstr "Xác định một hàm bằng cách sử dụng %PRODUCTNAME Basic"
+msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
+msgstr "Để sửa một ghi chú hiển thị cố định, chỉ cần nhắp chuột lên nó. Nếu bạn xóa toàn bộ văn bản của ghi chú thì ghi chú này cũng sẽ tự mất đi."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148456\n"
-"7\n"
+"note_insert.xhp\n"
+"par_idN10699\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
-msgstr "Chọn <item type=\"menuitem\">Công cụ > Vĩ lệnh > Tổ chức vĩ lệnh > %PRODUCTNAME Basic</item>."
+msgid "Move or resize each comment as you like."
+msgstr "Di chuyển và chỉnh lại kích cỡ ghi chú theo ý bạn."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3154510\n"
-"8\n"
+"note_insert.xhp\n"
+"par_idN1069D\n"
"help.text"
-msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
-msgstr "Nhấn nút <emph>Sửa</emph>. Bạn sẽ thấy môi trường phát triển hợp nhất (IDE) Basic."
+msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
+msgstr "Định dạng mỗi ghi chú bằng cách chỉ định màu nền, tính trong suốt, kiểu dáng đường viền và cách canh lề văn bản. Chọn các lệnh từ trình đơn ngữ cảnh của ghi chú."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150327\n"
-"9\n"
+"note_insert.xhp\n"
+"par_id3144764\n"
+"38\n"
"help.text"
-msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
-msgstr "Nhập mã hàm. Trong ví dụ này, ta xác định một hàm <item type=\"literal\">VOL(a; b; c)</item> để tính thể tích của một vật rắn hình chữ nhật với mặt có chiều dài <item type=\"literal\">a</item>, <item type=\"literal\">b</item> và <item type=\"literal\">c</item>:"
+msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
+msgstr ""
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3155443\n"
-"10\n"
+"note_insert.xhp\n"
+"par_id3150715\n"
+"39\n"
"help.text"
-msgid "Close the Basic-IDE window."
-msgstr "Đóng cửa sổ IDE Basic."
+msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
+msgstr "Để hiển thị lời gợi ý trợ giúp cho ô được chọn, hãy sử dụng <emph>Dữ liệu > Hợp lệ > Trợ giúp nhập liệu</emph>."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150043\n"
-"11\n"
+"note_insert.xhp\n"
+"par_id3153707\n"
+"36\n"
"help.text"
-msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
-msgstr "Hàm của bạn sẽ tự động được lưu trong mô-đun mặc định và sẵn sàng để dùng. Nếu bạn ứng dụng hàm này trong một tài liệu Calc để sử dụng trên một máy tính khác, bạn có thể chép hàm đó sang tài liệu Calc như được miêu tả trong phần tiếp theo."
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Chèn > Ghi chú\">Chèn > Ghi chú</link>"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3147340\n"
-"18\n"
+"numbers_text.xhp\n"
+"tit\n"
"help.text"
-msgid "Copying a Function To a Document"
-msgstr "Chép một hàm sang một tài liệu"
+msgid "Converting Text to Numbers"
+msgstr "Chuyển đổi văn bản thành số"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145232\n"
-"19\n"
+"numbers_text.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
-msgstr "Trong giai đoạn 2 của « Xác định một hàm bằng cách sử dụng %PRODUCTNAME Basic », trong hộp thoại <emph>Vĩ lệnh</emph>, bạn đã nhắp chuột lên <emph>Sửa</emph>. Theo chế độ mặc định, trong trường <emph>Vĩ lệnh từ</emph>, mô-đun <emph>Vĩ lệnh của tôi > Chuẩn > Mô-đun1</emph> được chọn. Thư viện <emph>Chuẩn</emph> nằm cục bộ trong thư mục người dùng của bạn."
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
+msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3154022\n"
-"20\n"
+"numbers_text.xhp\n"
+"hd_id0908200901265171\n"
"help.text"
-msgid "If you want to copy the user-defined function to a Calc document:"
-msgstr "Nếu bạn muốn chép hàm do người sử dụng quy định sang một tài liệu Calc:"
+msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
+msgstr "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Đổi văn bản thành số</link></variable>"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150304\n"
-"21\n"
+"numbers_text.xhp\n"
+"par_id0908200901265127\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
-msgstr "Chọn <item type=\"menuitem\">Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</item> ."
+msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
+msgstr "Calc đổi văn bản bên trong ô thành giá trị số tương ứng nếu một phép chuyển đổi minh xác là có thể. Nếu không thể chuyển đổi, Calc trả về sai số #VALUE!."
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150086\n"
-"22\n"
+"numbers_text.xhp\n"
+"par_id0908200901265196\n"
"help.text"
-msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
-msgstr "Trong trường <emph>Vĩ lệnh từ</emph>, hãy chọn <emph>Vĩ lệnh của tôi > Chuẩn > Mô-đun1</emph> và nhấn nút <emph>Sửa</emph>."
+msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
+msgstr "Chỉ các số nguyên bao gồm số mũ được chuyển đổi, và ngày giờ ISO 8601 trong định dạng mở rộng của chúng có dấu phân cách. Mọi trường hợp khác, như các phân số với thập phân với dấu phân tách thập phân, hoặc ngày tháng khác với ISO 8601, sẽ không được chuyển đổi, như thế chuỗi văn bản sẽ bị phụ thuộc việc bản địa hóa. Khoảng trắng dẫn đầu và nối sau bị bỏ qua."
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3166430\n"
-"23\n"
+"numbers_text.xhp\n"
+"par_id0908200901265220\n"
"help.text"
-msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
-msgstr "Trong IDE Basic, chọn nguồn của hàm do người sử dụng quy định của bạn và chép nó tới bảng nháp."
+msgid "The following ISO 8601 formats are converted:"
+msgstr "Các định dạng ISO 8601 sau đây được chuyển đổi:"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_idN1081D\n"
+"numbers_text.xhp\n"
+"par_id0908200901265288\n"
"help.text"
-msgid "Close the Basic-IDE."
-msgstr "Đóng IDE Basic."
+msgid "CCYY-MM-DD"
+msgstr "CCYY-MM-DD"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150517\n"
-"24\n"
+"numbers_text.xhp\n"
+"par_id0908200901265267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
-msgstr "Chọn <item type=\"menuitem\">Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</item> ."
+msgid "CCYY-MM-DDThh:mm"
+msgstr "CCYY-MM-DDThh:mm"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145384\n"
-"25\n"
+"numbers_text.xhp\n"
+"par_id0908200901265248\n"
"help.text"
-msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
-msgstr "Trong trường <emph>Vĩ lệnh từ</emph>, chọn <emph>(Tên của tài liệu Calc) > Chuẩn > Mô-đun1</emph>. Nhấn nút <emph>Sửa</emph>."
+msgid "CCYY-MM-DDThh:mm:ss"
+msgstr "CCYY-MM-DDThh:mm:ss"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148699\n"
-"26\n"
+"numbers_text.xhp\n"
+"par_id0908200901265374\n"
"help.text"
-msgid "Paste the clipboard contents in the Basic-IDE of the document."
-msgstr "Dán nội dung trên bảng nháp vào IDE Basic của tài liệu."
+msgid "CCYY-MM-DDThh:mm:ss,s"
+msgstr "CCYY-MM-DDThh:mm:ss,s"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3153305\n"
+"numbers_text.xhp\n"
+"par_id0908200901265327\n"
+"help.text"
+msgid "CCYY-MM-DDThh:mm:ss.s"
+msgstr "CCYY-MM-DDThh:mm:ss.s"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265399\n"
+"help.text"
+msgid "hh:mm"
+msgstr "hh:mm"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265347\n"
+"help.text"
+msgid "hh:mm:ss"
+msgstr "hh:mm:ss"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265349\n"
+"help.text"
+msgid "hh:mm:ss,s"
+msgstr "hh:mm:ss,s"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265342\n"
+"help.text"
+msgid "hh:mm:ss.s"
+msgstr "hh:mm:ss.s"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265491\n"
+"help.text"
+msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
+msgstr "Mã thế kỉ CC có thể được bỏ trống. Thay cho dấu phân cách ngày và giờ, phải dùng chính xác chỉ một kí tự dấu cách."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265467\n"
+"help.text"
+msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
+msgstr "Nếu ngày tháng được cho, nó phải là một ngày lịch Gregorian hợp lệ. Trong trường hợp này thời gian phải nằm trong khoảng 00:00 tới 23:59:59.99999..."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265420\n"
+"help.text"
+msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
+msgstr "Nếu cho chỉ một chuỗi thời gian, có thể sẽ có một giá trị giờ lớn hơn 24, trong khi phút và giây có giá trị cực đại là 59."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265448\n"
+"help.text"
+msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
+msgstr "Chuyển đổi được thực hiện chỉ cho một tham số duy nhất, như trong =A1+A2, hay =\"1E2\"+1. Tham số vùng ô sẽ không ảnh hưởng, vì thế SUM(A1:A2) khác với A1+A2 nếu một trong hai iô có chứa một chuỗi khả chuyển."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id090820090126540\n"
+"help.text"
+msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
+msgstr "Các chuối trong côg thức cũng sẽ được chuyển đổi, chẳng hạn =\"1999-11-22\"+42, sẽ trả về ngày tháng là 42 ngày sau ngày 22 tháng 11 năm 1999. Việc tính toán các ngày tháng liên quan tới bản địa hóa có dạng các chuỗi trong công thức sẽ trả về sai số. Ví dụ, các chuỗi ngày tháng bản địa hóa \"11/22/1999\" hay \"22.11.1999\" không thể dùng cho chuyển đổi tự động."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"hd_id1005200903485368\n"
+"help.text"
+msgid "Example"
+msgstr "Thí dụ"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id1005200903485359\n"
+"help.text"
+msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
+msgstr ""
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id1005200903485341\n"
+"help.text"
+msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
+msgstr ""
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265544\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"tit\n"
+"help.text"
+msgid "Printing Sheet Details"
+msgstr "In chi tiết trang tính"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
+msgstr "<bookmark_value>in; chi tiết trang tính</bookmark_value><bookmark_value>trang tính; in các chi tiết</bookmark_value><bookmark_value>lưới; in lưới trang</bookmark_value><bookmark_value>công thức; in, thay cho kết quả</bookmark_value><bookmark_value>ghi chú; in</bookmark_value><bookmark_value>đồ thị; in</bookmark_value><bookmark_value>lưới trang; in</bookmark_value><bookmark_value>ô; in lưới</bookmark_value><bookmark_value>viền; in ô</bookmark_value><bookmark_value>giá trị 0; in</bookmark_value><bookmark_value>giá trị vô giá trị; in</bookmark_value><bookmark_value>đối tượng vẽ ;in</bookmark_value>"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"hd_id3154346\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
+msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"In chi tiết trang\">In chi tiết trang</link></variable>"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3153728\n"
+"2\n"
+"help.text"
+msgid "When printing a sheet you can select which details are to be printed:"
+msgstr "khi in môt trang tính, bạn có thể chọn các chi tiết để in:"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150010\n"
+"3\n"
+"help.text"
+msgid "Row and column headers"
+msgstr "Đầu Hàng và Cột"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154013\n"
+"4\n"
+"help.text"
+msgid "Sheet grid"
+msgstr "Lưới trang"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145273\n"
+"5\n"
+"help.text"
+msgid "Comments"
+msgstr "Chú thích"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145801\n"
+"6\n"
+"help.text"
+msgid "Objects and graphics"
+msgstr "Đối tượng và đồ họa"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154491\n"
+"7\n"
+"help.text"
+msgid "Charts"
+msgstr "Đồ thị"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154731\n"
+"8\n"
+"help.text"
+msgid "Drawing objects"
+msgstr "Đối tượng vẽ"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3149400\n"
+"9\n"
+"help.text"
+msgid "Formulas"
+msgstr "Công thức"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150752\n"
+"10\n"
+"help.text"
+msgid "To choose the details proceed as follows:"
+msgstr "Để chọn các chi tiết, làm như sau:"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145640\n"
+"11\n"
+"help.text"
+msgid "Select the sheet you want to print."
+msgstr "Chọn trang mà bạn muốn in."
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150042\n"
"12\n"
"help.text"
-msgid "Applying a User-defined Function in $[officename] Calc"
-msgstr "Ứng dụng hàm do người sử dụng quy định trong $[officename] Calc"
+msgid "Choose <emph>Format - Page</emph>."
+msgstr "Chọn lệnh <emph>Định dạng > Trang</emph>."
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148869\n"
+"print_details.xhp\n"
+"par_id3147340\n"
"13\n"
"help.text"
-msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
-msgstr "Khi đã xác đinh hàm <item type=\"literal\">VOL(a; b; c)</item> trong IDE Basic, bạn có thể ứng dụng nó giống như các hàm có sẵn của chương trình $[officename] Calc."
+msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
+msgstr "Lệnh này không hiển thị nếu trang đã được mở với chế độ bảo vệ khỏi ghi. Trong trường hợp này, hãy nhắp chuột vào biểu tượng <emph>Sửa tập tin</emph> trên thanh <emph>Chuẩn</emph>."
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148606\n"
+"print_details.xhp\n"
+"par_id3146916\n"
"14\n"
"help.text"
-msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
-msgstr "Mở tài liệu Calc và nhập các số cho các tham số hàm <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, và <item type=\"literal\">c</item> trong các ô A1, B1, và C1."
+msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
+msgstr "Chọn thẻ <emph>Trang</emph>. Trong vùng <emph>In</emph> hãy đánh dấu các chi tiết mà bạn muốn in và nhấn nút <emph>OK</emph>."
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3156019\n"
+"print_details.xhp\n"
+"par_id3145789\n"
"15\n"
"help.text"
-msgid "Set the cursor in another cell and enter the following:"
-msgstr "Đặt con trỏ vào một ô khác và nhập:"
+msgid "Print the document."
+msgstr "In tài liệu."
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3155264\n"
+"print_details.xhp\n"
+"par_id3150345\n"
"16\n"
"help.text"
-msgid "=VOL(A1;B1;C1)"
-msgstr "=VOL(A1;B1;C1)"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem > Xem thử chỗ ngắt trang\">Xem > Xem thử chỗ ngắt trang</link>"
-#: userdefined_function.xhp
+#: print_exact.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3146776\n"
-"17\n"
+"print_exact.xhp\n"
+"tit\n"
"help.text"
-msgid "The function is evaluated and you will see the result in the selected cell."
-msgstr "Hàm này sẽ được đánh giá và bạn sẽ thấy kết quả hiển thị trong ô đã chọn."
+msgid "Defining Number of Pages for Printing"
+msgstr "Xác định số trang để in"
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"tit\n"
+"print_exact.xhp\n"
+"bm_id3153194\n"
"help.text"
-msgid "Highlighting Negative Numbers"
-msgstr "Tô sáng các số âm"
+msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
+msgstr "<bookmark_value>in; đếm trang</bookmark_value><bookmark_value>trang; in ra số đếm trang</bookmark_value><bookmark_value>ngắt trang; xem thử bảng tính</bookmark_value><bookmark_value>sửa; vùng in</bookmark_value><bookmark_value>xem; vùng in</bookmark_value><bookmark_value>xem thử; ngắt trang để in</bookmark_value>"
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"bm_id3147434\n"
+"print_exact.xhp\n"
+"hd_id3153194\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
-msgstr "<bookmark_value>số âm</bookmark_value><bookmark_value>số; tô sáng các số âm</bookmark_value><bookmark_value>tô sáng;số âm</bookmark_value><bookmark_value>màu;định dạng số</bookmark_value><bookmark_value>định dạng số;màu</bookmark_value>"
+msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
+msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Xác định số trang để in\">Xác định số trang để in</link></variable>"
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"hd_id3147434\n"
-"31\n"
+"print_exact.xhp\n"
+"par_id3153771\n"
+"2\n"
"help.text"
-msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
-msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Tô sáng các số âm\">Tô sáng các số âm</link></variable>"
+msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
+msgstr "Nếu một trang quá lớn so với một tờ giấy in đơn, thì $[officename] Calc sẽ in trang đó chia đều thành một vài trang. Vì việc ngắt trang tự động không thường xuyên được tiến hành tại các vị trí tối ưu nên bạn có thể tự mình xác định việc phân trang."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3153878\n"
-"33\n"
+"print_exact.xhp\n"
+"par_id3159155\n"
+"3\n"
"help.text"
-msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
-msgstr "Bạn có thể định dạng các ô chứa số với một số định dạng số để tô đỏ các số âm. Hoặc, bạn có thể đặt định dạng số riêng của mình trong đó các số âm được tô sáng với một màu khác."
+msgid "Go to the sheet to be printed."
+msgstr "Đi đến trang để in."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3155600\n"
-"34\n"
+"print_exact.xhp\n"
+"par_id3150012\n"
+"4\n"
"help.text"
-msgid "Select the cells and choose <emph>Format - Cells</emph>."
-msgstr "Chọn các ô và chọn <emph>Định dạng > Các ô</emph>."
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "Chọn <emph>Xem > Xem thử chỗ ngắt trang</emph>."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3146969\n"
-"35\n"
+"print_exact.xhp\n"
+"par_id3146974\n"
+"5\n"
"help.text"
-msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
-msgstr "Trong thẻ <emph>Số</emph>, chọn một định dạng số và đánh dấu hộp kiểm <emph>Số âm màu đỏ</emph>. Nhấn <emph>OK</emph>."
+msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
+msgstr "Bạn sẽ thấy việc phân tự động các trang tính được thể hiện qua các trang in. Vùng in được tự động tạo ra được chỉ thị bằng các đường màu xanh đậm, và vùng in do người sử dụng quy định được chỉ thị bằng các đường màu xanh nhạt. Chỗ ngắt trang (ngắt hàng và cột) được đánh dấu bằng đường màu đen."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3145640\n"
-"36\n"
+"print_exact.xhp\n"
+"par_id3152578\n"
+"6\n"
"help.text"
-msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
-msgstr "Định dạng số của ô được định trong hai thành phần. Định dạng cho các số dương (gồm có số không) được đặt trước dấu chấm phẩy; sau dấu chấm phẩy là phần công thức chỉ định cho các số âm. Bạn có thể thay đổi mã (RED) trong phần <emph>Mã định dạng</emph>. Ví dụ, thay vì \"RED\" (Đỏ), hãy nhập \"YELLOW\" (vàng). Nếu như mã mới xuất hiện trong danh sách sau khi nhấn biểu tượng <emph>Thêm</emph>, thì mã được nhập đã hợp lệ."
+msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
+msgstr "Bạn có thể dùng chuột để chuyển các đường màu xanh. Tiếp đó bạn sẽ tìm thấy nhiều tùy chọn trong trình đơn ngữ cảnh, bao gồm thêm một vùng in bổ sung, dời thang tỉ lệ và chèn các chỗ ngắt cột và dòng hướng dẫn bổ sung."
+
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3151073\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem > Xem thử chỗ ngắt trang\">Xem > Xem thử chỗ ngắt trang</link>"
#: print_landscape.xhp
msgctxt ""
@@ -9934,1732 +9094,1771 @@ msgctxt ""
msgid "<link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link>"
msgstr "<link href=\"text/scalc/guide/printranges.xhp\">Xác định Phạm vi In trên một Trang tính</link>"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
+"print_title_row.xhp\n"
"tit\n"
"help.text"
-msgid "Calculating With Dates and Times"
-msgstr "Tính toán với Ngày và Thời gian"
+msgid "Printing Rows or Columns on Every Page"
+msgstr "In hàng hoặc cột trên mọi trang"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"bm_id3146120\n"
+"print_title_row.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
-msgstr "<bookmark_value>ngày; trong ô</bookmark_value><bookmark_value>thời gian; trong ô</bookmark_value><bookmark_value>các ô;định dạng ngày và thời gian</bookmark_value><bookmark_value>giá trị ngày và thời gian hiện tại</bookmark_value>"
+msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
+msgstr "<bookmark_value>in; các trang tính trên nhiều tờ giấy</bookmark_value><bookmark_value>trang tính; in trên nhiều tờ giấy</bookmark_value><bookmark_value>hàng; lặp lại khi in</bookmark_value><bookmark_value>cột; lặp lại khi in</bookmark_value><bookmark_value>lặp lại; cột/hàng trên trang in</bookmark_value><bookmark_value>hàng tiêu đề; in trên tất cả các tờ giấy</bookmark_value><bookmark_value>đầu trang; in trên tờ giấy</bookmark_value><bookmark_value>chân trang; in trên tờ giấy</bookmark_value><bookmark_value>in; hàng/cột dạng tiêu đề bảng</bookmark_value><bookmark_value>tiêu đề;lặp lại hàng/cột dạng</bookmark_value>"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"hd_id3146120\n"
-"11\n"
+"print_title_row.xhp\n"
+"hd_id3153727\n"
+"21\n"
"help.text"
-msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
-msgstr "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Tính toán với ngày và thời gian\">Tính toán với Ngày và Thời gian</link></variable>"
+msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
+msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"In hàng hoặc cột trên mọi trang\">In hàng hoặc cột trên mọi trang</link></variable>"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3154320\n"
-"12\n"
+"print_title_row.xhp\n"
+"par_id3154014\n"
+"2\n"
"help.text"
-msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
-msgstr "Trong $[officename] Calc, bạn có thể tính toán với giá trị ngày và thời gian hiện tại. Ví dụ, để biết chính xác tuổi của bạn tới từng giây hoặc từng giờ, hãy làm theo các bước sau:"
+msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
+msgstr "Nếu trang tính của bạn quá lớn và phải in thành nhiều tờ giấy, bạn có thể thiết lập các hàng hay cột để lặp lại trên mỗi trang được in."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3150750\n"
-"13\n"
+"print_title_row.xhp\n"
+"par_id3146975\n"
+"7\n"
"help.text"
-msgid "In a spreadsheet, enter your birthday in cell A1."
-msgstr "Trong một bảng tính, nhập ngày sinh của bạn trong ô A1."
+msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
+msgstr "Ví dụ như, nếu bạn muốn in hai hàng trên của trang tính và cột đầu tiên (A) trên tất cả các trang, hãy thực hiện như sau:"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3145642\n"
-"14\n"
+"print_title_row.xhp\n"
+"par_id3163710\n"
+"8\n"
"help.text"
-msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
-msgstr "Nhập công thức sau trong ô A3: <item type=\"literal\">=NOW()-A1</item>"
+msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
+msgstr "Chọn <emph>Định dạng > Phạm vi in > Sửa</emph>. Hộp thoại <emph>Sửa > Phạm vi in</emph> sẽ mở ra."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3149020\n"
-"52\n"
+"print_title_row.xhp\n"
+"par_id3149958\n"
+"9\n"
"help.text"
-msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
-msgstr "Sau khi nhấn <item type=\"keycode\">Enter</item> bạn sẽ thấy kết quả ở dạng ngày. Vì kết quả phải là số ngày giữa 2 ngày tháng, bạn phải định dạng ô A3 dưới dạng số."
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
+msgstr "Nhắp chuột vào biểu tượng ở xa bên phải của vùng <emph>Hàng cần lặp lại</emph>."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3155335\n"
-"53\n"
+"print_title_row.xhp\n"
+"par_id3145800\n"
+"10\n"
"help.text"
-msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
-msgstr "Đặt con trỏ trong ô A3, bấm chuột phải để mở trình đơn ngữ cảnh và chọn <emph>Định dạng ô</emph>."
+msgid "The dialog shrinks so that you can see more of the sheet."
+msgstr "Hộp thoại sẽ thu nhỏ do đó bạn có thể thấy được nhiều phần hơn trong trang tính."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3147343\n"
-"54\n"
+"print_title_row.xhp\n"
+"par_id3155602\n"
+"11\n"
"help.text"
-msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
-msgstr "Hộp thoại <emph>Định dạng ô</emph> xuất hiện. Trong thẻ <emph>Số</emph>, loại <emph>Số</emph> sẽ được chọn. Định dạng được đặt thành \"General\", làm cho kết quả của một phép tính chứa dữ liệu ngày tháng sẽ được hiển thị dưới dạng ngày tháng. Để hiển thị kết quả dưới dạng số, hãy đặt định dạng số thành \"-1,234\" và đóng hộp thoại lại bằng nút <emph>OK</emph> ."
+msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
+msgstr "Chọn hai hàng đầu tiên và, ví dụ, nhắp chuột vào ô A1 và kéo tới A2."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3147001\n"
+"print_title_row.xhp\n"
+"par_id3154018\n"
+"12\n"
+"help.text"
+msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
+msgstr "Trong hộp thoại đã thu nhỏ, bạn sẽ thấy « $1:$2 ». Các hàng 1 và 2 chính là các hàng sẽ được lặp lại."
+
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3153707\n"
+"13\n"
+"help.text"
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
+msgstr "Nhấn vào biểu tượng phía ngoài bên phải của vùng <emph>Hàng cần lặp lại</emph>. Hộp thoại sẽ được phục hồi lại."
+
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3155443\n"
+"14\n"
+"help.text"
+msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
+msgstr "Nếu bạn cũng muốn cột A được lặp lại, nhấn vào biểu tượng ở phía ngoài bên phải của vùng <emph>Cột cần lặp lại</emph>."
+
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3154256\n"
"15\n"
"help.text"
-msgid "The number of days between today's date and the specified date is displayed in cell A3."
-msgstr "Giá trị hiển thị trong ô A3 là số ngày giữa hôm nay và ngày được cho."
+msgid "Click column A (not in the column header)."
+msgstr "Nhắp chuột vào cột A (không phải vào phần đầu cột)."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3150304\n"
+"print_title_row.xhp\n"
+"par_id3154704\n"
"16\n"
"help.text"
-msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
-msgstr "Thử với một số công thức khác: trong ô A4 ta nhập « =A3*24 » để tính số giờ, trong A5 ta nhập « =A4*60 » để tính số phút, và trong A6 ta nhập « =A5*60 » để tính số giây. Nhấn <item type=\"keycode\">Enter</item> sau mỗi công thức."
+msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
+msgstr "Nhắp chuột vào biểu tượng một lần nữa ở phía ngoài bên phải của vùng <emph>Cột cần lặp lại</emph>."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3149207\n"
+"print_title_row.xhp\n"
+"par_id3150088\n"
"17\n"
"help.text"
-msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
-msgstr "Thời gian từ khi bạn sinh ra đến giờ sẽ được tính toán và hiển thị dưới nhiều đơn vị tính khác nhau. Các giá trị được tính chính xác từ giá trị bạn nhập vào trong công thức cuối cùng và nhấn <item type=\"keycode\">Enter</item>. Giá trị này không được tự động cập nhật, mặc dù giá trị hàm \"Now\" (bây giờ) trả về là liên tục thay đổi. Trong trình đơn <emph>Công cụ</emph>, mục <emph>Nội dung ô > Tự động Tính</emph> thường được bật; tuy nhiên, việc tự động tính toán lại không áp dụng cho hàm NOW. Điều này nhằm đảm bảo máy tính của bạn không lãng phí tài nguyên vào việc cập nhật liên tục các bảng tính."
+msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
+msgstr "Các hàng cần lặp lại là các hàng trong trang tính. Bạn có thể xác định đầu trang và chân trang để in trên mỗi trang in độc lập với trang này dưới mục trình đơn <emph>Định dạng > Trang</emph>."
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"tit\n"
+"print_title_row.xhp\n"
+"par_id3155380\n"
+"18\n"
"help.text"
-msgid "User-defined Number Formats"
-msgstr "Đinh dạng số do người sử dụng quy định"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem > Xem thử chỗ ngắt trang\">Xem > Xem thử chỗ ngắt trang</link>"
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"bm_id3143268\n"
+"print_title_row.xhp\n"
+"par_id3154371\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
-msgstr "<bookmark_value>số; định dạng do người dùng xác định trong bảng</bookmark_value><bookmark_value>định dạng; số do người dùng xác định</bookmark_value><bookmark_value>định dạng số; tỷ</bookmark_value><bookmark_value>mã định dạng; định dạng số do người dùng xác định</bookmark_value>"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Định dạng > Vùng in > Sửa\">Định dạng > Vùng in > Sửa</link>"
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"hd_id3143268\n"
-"26\n"
+"print_title_row.xhp\n"
+"par_id3146113\n"
+"20\n"
"help.text"
-msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
-msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"Định dạng số do người sử dụng quy đinh\">Định dạng số do người sử dụng quy đinh</link></variable>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Định dạng > Trang > (Đầu/Chân trang)\">Định dạng > Trang > (Đầu/Chân trang)</link>"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150400\n"
-"1\n"
+"printranges.xhp\n"
+"tit\n"
"help.text"
-msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
-msgstr "Bạn có thể xác định kiểu định dạng số cho riêng mình để hiển thị các số trong phép tính <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgid "Using Print Ranges on a Spreadsheet"
+msgstr "Sử dụng Phạm vi In trên Bảng tính"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150767\n"
-"2\n"
+"printranges.xhp\n"
+"bm_id14648\n"
"help.text"
-msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
-msgstr "Ví dụ như: để hiển thị số « 10 200 000 » có dạng 10,2 triệu :"
+msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
+msgstr "<bookmark_value>xuất; ô bảng</bookmark_value><bookmark_value>in; ô bảng</bookmark_value><bookmark_value>phạm vi; phạm vi in</bookmark_value><bookmark_value>xuất PDF của phạm vi in </bookmark_value><bookmark_value>phạm vi ô bảng; in</bookmark_value><bookmark_value>ô bảng; phạm vi in</bookmark_value><bookmark_value>phạm vi in</bookmark_value><bookmark_value>dọn, xem thêm xoá</bookmark_value><bookmark_value>xác định;phạm vi in</bookmark_value><bookmark_value>mở rộng phạm vi in</bookmark_value><bookmark_value>xoá; phạm vi in</bookmark_value>"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150868\n"
-"3\n"
+"printranges.xhp\n"
+"par_idN108D7\n"
"help.text"
-msgid "Select the cells to which you want to apply a new, user-defined format."
-msgstr "Chọn các ô mà bạn muốn ứng dụng một định dạng mới do người sử dụng quy định."
+msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
+msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Xác định phạm vi in trên một trang tính</link></variable>"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3149664\n"
-"4\n"
+"printranges.xhp\n"
+"par_idN108F5\n"
"help.text"
-msgid "Choose <emph>Format - Cells - Numbers</emph>."
-msgstr "Chọn <emph>Định dạng > Ô > Số</emph>."
+msgid "You can define which range of cells on a spreadsheet to print."
+msgstr "Bạn có thể xác định vùng của các ô trên một bảng tính để in."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3149260\n"
-"5\n"
+"printranges.xhp\n"
+"par_idN108FB\n"
"help.text"
-msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
-msgstr "Trong hộp danh sách <emph>Loại</emph>, chọn « Tự xác định »."
+msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
+msgstr "Các ô trên trang tính không thuộc vùng in đã được xác định sẽ không được in hoặc xuất. Các trang tính không có vùng in xác định trước cũng không được in hay xuất đến một tập tin PDF, trừ phi tài liệu này sử dụng định dạng tập tin Excel."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3148646\n"
-"6\n"
+"printranges.xhp\n"
+"par_idN1077A\n"
"help.text"
-msgid "In the <emph>Format code</emph> text box enter the following code:"
-msgstr "Trong hộp văn bản <emph>Mã định dạng</emph>, nhập vào mã sau:"
+msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
+msgstr "Với các tập tin được mở trong định dạng Excel, tất cả các trang tính không chứa một vùng in được xác định trước đều vẫn còn được in. Điều này tương tự xảy ra khi bạn xuất bảng tính được định dạng Excel tới một tập tin PDF."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3152596\n"
-"7\n"
+"printranges.xhp\n"
+"par_idN108FE\n"
"help.text"
-msgid "0.0,, \"Million\""
-msgstr "0.0,, \"Million\""
+msgid "To Define a Print Range"
+msgstr "Xác định một vùng in"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3144764\n"
-"8\n"
+"printranges.xhp\n"
+"par_idN10905\n"
"help.text"
-msgid "Click OK."
-msgstr "Nhấn vào nút <emph>OK</emph>"
+msgid "Select the cells that you want to print."
+msgstr "Chọn các ô bạn muốn in."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155417\n"
-"9\n"
+"printranges.xhp\n"
+"par_idN10909\n"
"help.text"
-msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
-msgstr "Bảng sau cho thấy các hiệu ứng của việc làm tròn, dấu tách hàng nghìn (,), dấu tách thập phân (.) và ký tự giữ chỗ « # » và « 0 »."
+msgid "Choose <emph>Format - Print Ranges - Define</emph>."
+msgstr "Chọn <emph>Định dạng > Phạm vi in > Xác định</emph>."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146971\n"
-"10\n"
+"printranges.xhp\n"
+"par_idN10910\n"
"help.text"
-msgid "Number"
-msgstr "Số"
+msgid "To Add Cells to a Print Range"
+msgstr "Thêm ô vào một vùng in"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3154757\n"
-"11\n"
+"printranges.xhp\n"
+"par_idN10917\n"
"help.text"
-msgid ".#,, \"Million\""
-msgstr ".#,, \"Million\""
+msgid "Select the cells that you want to add to the existing print range."
+msgstr "Chọn các ô bạn muốn thêm vào một vùng in hiện thời."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147338\n"
-"12\n"
+"printranges.xhp\n"
+"par_idN1091B\n"
"help.text"
-msgid "0.0,, \"Million\""
-msgstr "0.0,, \"Million\""
+msgid "Choose <emph>Format - Print Ranges - Add</emph>."
+msgstr "Chọn <emph>Định dạng > Phạm vi in > Thêm</emph>."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146920\n"
-"13\n"
+"printranges.xhp\n"
+"par_idN10922\n"
"help.text"
-msgid "#,, \"Million\""
-msgstr "#,, \"Million\""
+msgid "To Clear a Print Range"
+msgstr "Gột một vùng in"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147344\n"
-"14\n"
+"printranges.xhp\n"
+"par_idN10929\n"
"help.text"
-msgid "10200000"
-msgstr "10200000"
+msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
+msgstr "Chọn <emph>Định dạng > Phạm vi in > Bỏ</emph>."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147003\n"
-"15\n"
+"printranges.xhp\n"
+"par_idN10953\n"
"help.text"
-msgid "10.2 Million"
-msgstr "10.2 triệu"
+msgid "Using the Page Break Preview to Edit Print Ranges"
+msgstr "Dùng công cụ <emph>Xem thử chỗ ngắt trang</emph> để sửa phạm vi in"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3166426\n"
-"16\n"
+"printranges.xhp\n"
+"par_idN1093E\n"
"help.text"
-msgid "10.2 Million"
-msgstr "10.2 triệu"
+msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
+msgstr "Trong ô <emph>Xem thử chỗ ngắt trang</emph>, phạm vi in và vùng ngắt trang được tô viền màu xanh và được đánh số trang màu xám ở giữa. Vùng không được in có nền xám."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155113\n"
-"17\n"
+"printranges.xhp\n"
+"par_id3153143\n"
+"8\n"
"help.text"
-msgid "10 Million"
-msgstr "10 triệu"
+msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
+msgstr "Để xác định một vùng ngắt trang mới, hãy kéo đường viền tới một vị trí mới. Khi bạn xác định một vùng ngắt trang mới, một chỗ ngắt trang tự động sẽ được thay thế bằng chỗ ngắt tạo bằng tay."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150369\n"
-"18\n"
+"printranges.xhp\n"
+"par_idN10930\n"
"help.text"
-msgid "500000"
-msgstr "500000"
+msgid "To View and Edit Print Ranges"
+msgstr "Để xem và sửa phạm vi in"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3145585\n"
-"19\n"
+"printranges.xhp\n"
+"par_idN10937\n"
"help.text"
-msgid ".5 Million"
-msgstr ".5 triệu"
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "Chọn <emph>Xem > Xem thử chỗ ngắt trang</emph>."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3154486\n"
-"20\n"
+"printranges.xhp\n"
+"par_idN1082A\n"
"help.text"
-msgid "0.5 Million"
-msgstr "0.5 triệu"
+msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
+msgstr "Để thay đổi hệ số thu/phóng của ô <emph>Xem thử chỗ ngắt trang</emph>, hãy kích đúp vào giá trị phần trăm trên thanh <emph>Trạng thái</emph>, và chọn một hệ số thu/phóng mới."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146114\n"
-"21\n"
+"printranges.xhp\n"
+"par_idN10836\n"
"help.text"
-msgid "1 Million"
-msgstr "1 triệu"
+msgid "Edit the print range."
+msgstr "Sửa phạm vi in."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155810\n"
-"22\n"
+"printranges.xhp\n"
+"par_idN10944\n"
"help.text"
-msgid "100000000"
-msgstr "100000000"
+msgid "To change the size of a print range, drag a border of the range to a new location."
+msgstr "Để thay đổi kích cỡ của một phạm vi in, kéo viền của vùng đó vào một vị trí mới."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3153818\n"
-"23\n"
+"printranges.xhp\n"
+"par_id3151075\n"
+"12\n"
"help.text"
-msgid "100. Million"
-msgstr "100. triệu"
+msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
+msgstr "Để xóa một chỗ ngắt trang thực hiện bằng tay được chứa trong vùng in, hãy kéo viền của chỗ ngắt trang đó ra bên ngoài vùng in."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3151241\n"
-"24\n"
+"printranges.xhp\n"
+"par_idN10948\n"
"help.text"
-msgid "100.0 Million"
-msgstr "100.0 triệu"
+msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
+msgstr "Để làm sạch vùng in, kéo viền của vùng đó lên trên viền đối diện của vùng."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3144771\n"
-"25\n"
+"printranges.xhp\n"
+"par_idN10862\n"
"help.text"
-msgid "100 Million"
-msgstr "100 triệu"
+msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
+msgstr "Để rời khỏi ô <emph>Xem thử chỗ ngắt trang</emph>, chọn <emph>Xem > Chuẩn</emph>."
-#: edit_multitables.xhp
+#: printranges.xhp
msgctxt ""
-"edit_multitables.xhp\n"
+"printranges.xhp\n"
+"par_idN109CF\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\">Sửa phạm vi in</link>"
+
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
"tit\n"
"help.text"
-msgid "Copying to Multiple Sheets"
-msgstr "Chép tới nhiều bảng"
+msgid "Addresses and References, Absolute and Relative"
+msgstr "Địa chỉ và Tham chiếu, Tuyệt đối và Tương đối"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"bm_id3149456\n"
+"relativ_absolut_ref.xhp\n"
+"bm_id3156423\n"
"help.text"
-msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
-msgstr "<bookmark_value>sao chép;giá trị vào nhiều trang tính</bookmark_value><bookmark_value>dán;giá trị vào nhiều trang tính</bookmark_value><bookmark_value>dữ liệu;vào nhiều trang tính</bookmark_value> <bookmark_value>trang tính; đa điền đồng thời</bookmark_value>"
+msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
+msgstr "<bookmark_value>đặt địa chỉ; tương đối và tuyệt đối</bookmark_value><bookmark_value>tham chiếu; tuyệt đối/tương đối</bookmark_value><bookmark_value>địa chỉ tuyệt đối trong bảng tính</bookmark_value><bookmark_value>địa chỉ tương đối</bookmark_value><bookmark_value>tham chiếu tuyệt đối trong bảng tính</bookmark_value><bookmark_value>tham chiếu tương đối</bookmark_value><bookmark_value>tham chiếu; tới ô</bookmark_value><bookmark_value>ô; tham chiếu</bookmark_value>"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"hd_id3149456\n"
-"3\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3156423\n"
+"53\n"
"help.text"
-msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
-msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Chép tới nhiều trang tính\">Chép tới nhiều trang tính</link></variable>"
+msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
+msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Địa chỉ và Tham chiếu, Tuyệt đối và Tương đối\">Địa chỉ và Tham chiếu, Tuyệt đối và Tương đối</link></variable>"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3150868\n"
-"6\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3163712\n"
+"3\n"
"help.text"
-msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
-msgstr "Trong bảng tính $[officename] Calc, bạn có thể chèn các giá trị, văn bản hay công thức được sao đồng thời vào các bảng đã chọn trong cùng tài liệu."
+msgid "Relative Addressing"
+msgstr "Đặt địa chỉ tương đối"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3153768\n"
-"8\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3146119\n"
+"4\n"
"help.text"
-msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
-msgstr ""
+msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
+msgstr "Ô trong Cột A, Hàng 1 được đặt là « A1 ». Bạn có thể đặt một vùng các ô kề sát nhau bằng cách trước tiên nhập toạ độ của ô ở phía trên bên trái của vùng, sau đó dấu hai chấm, sau đó toạ độ của ô ở phía dưới. Ví dụ, hình vuông tạo ra bởi bốn ô đầu tiên trông góc trái phía trên được đặt là « A1:B2 »."
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_idN10614\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
-msgstr "Bạn có thể sử dụng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down để chọn nhiều trang tính một lúc bằng bàn phím."
+msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
+msgstr "Bạn có thể tạo ra một tham chiếu tương đối cho « A1:B2 » bằng cách ghi địa chỉ theo cách này. Tương đối ở đây có nghĩa là tham chiếu cho vùng sẽ tự động được điều chỉnh khi bạn sao các công thức đó."
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3147435\n"
-"7\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3149377\n"
+"6\n"
"help.text"
-msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
-msgstr "Này khi bạn chèn giá trị, đoạn văn hay công thức vào trang tính đang chỉnh sửa, chúng cũng xuất hiện ở vị trí trùng trong các trang tính được chọn. Ví dụ, dữ liệu được nhập vào ô A1 của trang tính đang chỉnh sửa cũng được tự động nhập vào ô A1 của bất cứ trang tính khác nào được chọn."
+msgid "Absolute Addressing"
+msgstr "Địa chỉ tuyệt đối"
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"tit\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3154943\n"
+"7\n"
"help.text"
-msgid "Applying Sort Lists"
-msgstr "Ứng dụng Danh sách Sắp xếp"
+msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
+msgstr "Tham chiếu tuyệt đối là mặt đối lập của địa chỉ tuyệt đối. Trong tham số tuyệt đối, một kí hiệu đô la được đặt ở đằng trước mỗi kí tự và chữ số, ví dụ « $A$1:$B$2 »."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"bm_id3150870\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147338\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
-msgstr "<bookmark_value>điền;danh sách tùy biến</bookmark_value><bookmark_value>danh sách sắp xếp;áp dụng</bookmark_value><bookmark_value>xác định;danh sách sắp xếp</bookmark_value><bookmark_value>danh sách cấp số nhân</bookmark_value><bookmark_value>danh sách cấp số cộng</bookmark_value><bookmark_value>chuỗi;danh sách sắp xếp</bookmark_value><bookmark_value>danh sách; do người sử dụng quy định</bookmark_value><bookmark_value>danh sách tùy biến</bookmark_value>"
+msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
+msgstr "$[officename] có thể chuyển đổi tham chiếu hiện thời, trong đó con trỏ được đặt trong dòng nhập, từ tương đối sang tuyệt đối và ngược lại, bằng cách nhấn tổ hợp phím <item type=\"keycode\">Shift+F4</item>. Nếu bạn bắt đầu với một địa chỉ tương đối dạng « A1 », lần thứ nhất khi bạn hãy nhấn tổ hợp phím này, cả hàng và cột sẽ được đặt thành tham chiếu tuyệt đối ($A$1). Lần thứ hai, chỉ có hàng (A$1) và lần thứ ba, chỉ có cột ($A1) được chuyển. Nếu bạn nhấn tổ hợp phím này thêm lần nữa, thì tham chiếu của cả hàng và cột sẽ chuyển về trạng thái tương đối ban đầu (A1)."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"hd_id3150870\n"
-"3\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3153963\n"
+"52\n"
"help.text"
-msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
-msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Áp dụng Danh sách Sắp xếp\">Áp dụng Danh sách Sắp xếp</link></variable>"
+msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
+msgstr "$[officename] Calc hiển thị tham chiếu cho một công thức. Ví dụ như, nếu bạn nhắp chuột vào công thức « =SUM(A1:C5;D15:D24) » trong một ô, thì hai vùng tham chiếu trong trang tính sẽ được tô sáng bằng màu. Ví dụ, phần tử của công thức « A1:C5 » có thể được tô sáng màu xanh và vùng ô cần tìm được viền quanh cũng cùng sắc màu xanh đó. Thành phần công thức tiếp theo « D15:D24 » có thể được đánh dấu bằng màu đỏ bằng cách tương tự."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3159154\n"
-"7\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3154704\n"
+"29\n"
"help.text"
-msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
-msgstr "Danh sách sắp xếp cho phép bạn nhập một mẩu thông tin vào trong ô, sau đó kéo nó để lấp vào trong một danh sách liên tiếp các mục."
+msgid "When to Use Relative and Absolute References"
+msgstr "Khi nào nên dùng Tham chiếu Tuyệt đối và Tương đối"
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3148645\n"
-"4\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147346\n"
+"8\n"
"help.text"
-msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
-msgstr "Ví dụ, nhập văn bản « Th1 « hay « Tháng Một » vào trong một ô trống. Chọn ô này và nhắp chuột vào góc phải phía dưới của viền ô. Sau đó kéo các ô được chọn này sang bên phải hay xuống dưới. Khi bạn nhả chuột, các ô được tô sáng sẽ được lấp bằng tên của các tháng."
+msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
+msgstr "Dựa vào đâu để phân biệt một tham chiếu tương đối? Giả sử bạn muốn tính trong ô E1 tổng các ô trong vùng « A1:B2 ». Công thức nên nhập vào E1 sẽ là: … =SUM(A1:B2) ». Nếu sau đó bạn quyết định chèn một cột mới đằng trước cột A, thì các thành tố mà bạn muốn thêm vào sẽ ở « B1:C2 » và công thức sẽ ở trong F1, chứ không phải E1 nữa. Sau khi chèn xong cột mới, bạn sẽ phải kiểm tra và chỉnh lại tất cả các công thức trong trang đó và có thể ở cả những trang khác."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id2367931\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3155335\n"
+"9\n"
"help.text"
-msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
-msgstr ""
+msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
+msgstr "Rất may mắn, vì $[officename] có thể thực hiện thao tác này giúp bạn. Sau khi đã chèn một cột mới A, công thức « =SUM(A1:B2) » sẽ tự động cập nhật thành « =SUM(B1:C2) ». Số hàng cũng sẽ tự động được điều chỉnh khi một hàng mới 1 được chèn vào. Tham chiếu tương đối và tuyệt đối luôn được điều chỉnh trong $[officename] Calc mỗi khi vùng tham chiếu được dời đi. Tuy nhiên cần chú ý nếu như bạn đang sao một công thức vì trong trường hợp đó, chỉ có các tham chiếu tương đối mới được điều chỉnh, không phải tham chiếu tuyệt đối."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3152577\n"
-"5\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3145791\n"
+"39\n"
"help.text"
-msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
-msgstr ""
+msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
+msgstr "Tham chiếu tuyệt đối được sử dụng khi một phép tính đề cập tới một ô cụ thể trong trang tính của bạn. Nếu một công thức đề cập chính xác tới ô này mà được chép tương đối tới một ô bên dưới ô ban đầu, thì tham chiếu này cũng sẽ được dời xuống dưới nếu như bạn không xác định các ô đó là tuyệt đối."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3147434\n"
-"6\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147005\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
-msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Danh sách Sắp xếp\">Danh sách Sắp xếp</link>"
+msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
+msgstr "Ngoài việc chèn các ô hay cột mới thì tham chiếu cũng sẽ thay đổi khi một công thức đang tính đề cập tới các ô cụ thể được chép tới một vùng khác của trang tính. Giả sử bạn nhập công thức « =SUM(A1:A9) » trong hàng 10. Nếu bạn muốn tính tổng cho cột kế tiếp ở bên phải, chỉ cần chép công thức này tới ô bên phải. Bản sao công thức này trong cột B sẽ tự động điều chỉnh thành « =SUM(B1:B9) »."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
+"rename_table.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Formulas"
-msgstr "Nhập công thức"
+msgid "Renaming Sheets"
+msgstr "Đặt lại tên trang tính"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"bm_id3150868\n"
+"rename_table.xhp\n"
+"bm_id3150398\n"
"help.text"
-msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
-msgstr "<bookmark_value>thanh công thức; dòng nhập</bookmark_value><bookmark_value>dòng nhập trong thanh công thức</bookmark_value><bookmark_value>công thức;nhập</bookmark_value><bookmark_value>chèn;công thức</bookmark_value>"
+msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
+msgstr "<bookmark_value>đặt lại tên trang tính</bookmark_value><bookmark_value>thẻ trang;đặt lại tên</bookmark_value><bookmark_value>bảng; đặt lại tên</bookmark_value><bookmark_value>tên; trang tính</bookmark_value>"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"hd_id3150868\n"
-"9\n"
+"rename_table.xhp\n"
+"hd_id3150398\n"
+"11\n"
"help.text"
-msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
-msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Nhập công thức\">Nhập công thức</link></variable>"
+msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
+msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Đặt lại tên trang tính\">Đặt lại tên trang tính</link></variable>"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id6848353\n"
+"rename_table.xhp\n"
+"par_id3155131\n"
+"12\n"
"help.text"
-msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
-msgstr "Bạn có thể nhập công thức bằng một số cách sau: sử dụng các biểu tượng, hay gõ trên bàn phím, hoặc kết hợp cả 2 cách trên."
+msgid "Click the name of the sheet that you want to change."
+msgstr "Nhấn vào tên của trang tính mà bạn muốn thay đổi."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3145364\n"
-"10\n"
+"rename_table.xhp\n"
+"par_id3146976\n"
+"13\n"
"help.text"
-msgid "Click the cell in which you want to enter the formula."
-msgstr "Chọn ô mà bạn muốn điền công thức vào."
+msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
+msgstr "Mở trình đơn ngữ cảnh và chọn lệnh <emph>Đổi tên tờ</emph>. Một hộp thoại sẽ hiện ra cho bạn nhập tên mới."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3150012\n"
-"11\n"
+"rename_table.xhp\n"
+"par_id3149260\n"
+"15\n"
"help.text"
-msgid "Click the <emph>Function</emph> icon on the Formula Bar."
-msgstr "Chọn biểu tượng <emph>Hàm</emph> trên thanh <emph>Công thức</emph>."
+msgid "Enter a new name for the sheet and click <emph>OK</emph>."
+msgstr "Nhập tên mới cho trang tính và nhấn nút <emph>OK</emph>."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3156441\n"
-"12\n"
+"rename_table.xhp\n"
+"par_id3149667\n"
+"27\n"
"help.text"
-msgid "You will now see an equals sign in the input line and you can begin to input the formula."
-msgstr "Bạn sẽ thấy một dấu bằng trong dòng nhập và có thể bắt đầu nhập công thức."
+msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
+msgstr "Tương tự, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> và nhấn chuột lên bất kì tên một trang nào và nhập trực tiếp tên mới vào."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3153726\n"
-"3\n"
+"rename_table.xhp\n"
+"par_id0909200810502833\n"
"help.text"
-msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
-msgstr "Sau khi nhập các giá trị yêu cầu, nhấn phím <item type=\"keycode\">Enter</item> hoặc nút <emph>Chấp nhận</emph> để chèn kết quả vào trong ô kích hoạt. Nếu bạn muốn xóa mục trong dòng nhập, hãy ấn phím <item type=\"keycode\">Esc</item> hoặc nút <emph>Thôi</emph>."
+msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
+msgstr "Tên trang có thể chứa hầu hết các kí tự. Nếu bạn muốn lưu lại dưới dạng Microsoft Excel thì một số giới hạn sẽ được áp dụng."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3147394\n"
-"8\n"
+"rename_table.xhp\n"
+"par_id090920081050283\n"
"help.text"
-msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
-msgstr "Bạn cũng có thể nhập trực tiếp các giá trị và công thức vào ô, ngay cả khi bạn không thể nhìn thấy con trỏ nhập. Các công thức phải luôn được bắt đầu với dấu bằng."
+msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
+msgstr "Khi lưu lại dưới định dạng của Microsoft Excel, những kí tự sau không được có mặt trên tên trang:"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id4206976\n"
+"rename_table.xhp\n"
+"par_id090920081050281\n"
"help.text"
-msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
-msgstr "Bạn cũng có thể nhấn phím + hoặc - trên vùng số của bàn phím để bắt đầu nhập một công thức. Nhớ là phải luôn bật phím khoá con số NumLock. Ví dụ như, hãy nhấn các phím trong chuỗi sau:"
+msgid "colon :"
+msgstr "dấu hai chấm :"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id1836909\n"
+"rename_table.xhp\n"
+"par_id0909200810502897\n"
"help.text"
-msgid "+ 5 0 - 8 Enter"
-msgstr "+ 5 0 - 8 Enter"
+msgid "back slash \\"
+msgstr "Dấu gạch chéo ngược \\"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id8171330\n"
+"rename_table.xhp\n"
+"par_id090920081050299\n"
"help.text"
-msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
-msgstr "Bạn sẽ thấy kết quả <item type=\"literal\">42</item> trong ô. Ô này chứa công thức <item type=\"literal\">=+50-8</item>."
+msgid "forward slash /"
+msgstr "dấu chéo thuận /"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3155764\n"
-"6\n"
+"rename_table.xhp\n"
+"par_id0909200810502913\n"
"help.text"
-msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
-msgstr ""
+msgid "question mark ?"
+msgstr "dấu hỏi ?"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3149210\n"
-"7\n"
+"rename_table.xhp\n"
+"par_id090920081050298\n"
"help.text"
-msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
-msgstr "<variable id=\"tip\">Nếu bạn muốn xem phép tính các phần tử riêng lẻ của một công thức, hãy chọn các phần tử tương ứng và nhấn phím F9. Ví dụ như, trong công thức « =SUM(A1:B12)*SUM(C1:D12) » chọn phần « SUM(C1:D12) » và nhấn F9 để xem tổng số phụ cho phần này. </variable>"
+msgid "asterisk *"
+msgstr "dấu sao *"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3150304\n"
-"5\n"
+"rename_table.xhp\n"
+"par_id0909200810502969\n"
"help.text"
-msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
-msgstr "Nếu có một lỗi xuất hiện trong khi lập công thức, thì một <link href=\"text/scalc/05/02140000.xhp\" name=\"thông điệp báo lỗi\">thông điệp báo lỗi</link> sẽ xuất hiện trong ô hiện thời."
+msgid "left square bracket ["
+msgstr "dấu mở ngoặc vuông trái ["
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3152993\n"
-"13\n"
+"rename_table.xhp\n"
+"par_id0909200810502910\n"
"help.text"
-msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
-msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Thanh công thức\">Thanh công thức</link>"
+msgid "right square bracket ]"
+msgstr "dấu mở ngoặc vuông phải ]"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"tit\n"
+"rename_table.xhp\n"
+"par_id0909200810502971\n"
"help.text"
-msgid "Assigning Formats by Formula"
-msgstr "Gán định dạng theo công thức"
+msgid "single quote ' as the first or last character of the name"
+msgstr "dấu nháy đơn ' như là kí tự đầu hay của tên"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"bm_id3145673\n"
+"rename_table.xhp\n"
+"par_id090920081050307\n"
"help.text"
-msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
-msgstr "<bookmark_value>định dạng; gán theo công thức</bookmark_value><bookmark_value>định dạng ô; gán theo công thức</bookmark_value><bookmark_value>ví dụ về hàm STYLE</bookmark_value><bookmark_value>kiểu dáng ô;gán theo công thức</bookmark_value><bookmark_value>công thức;gán định dạng ô</bookmark_value>"
+msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
+msgstr "Trong tham chiếu tới ô, tên của trang phải được đặt trong dấu nháy đơn ' nếu như tên chứa các kí tự khác ngoài số hay abc hay gạch dưới. Nếu bạn muốn sử dụng dấu nháy đơn trong tên thì bạn phải điền 2 dấu nháy. Ví dụ bạn muốn tham chiếu tới ô A1 trong một trang với tên sau:"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"hd_id3145673\n"
-"13\n"
+"rename_table.xhp\n"
+"par_id0909200810503071\n"
"help.text"
-msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
-msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Gán định dạng theo công thức\">Gán định dạng theo công thức</link></variable>"
+msgid "This year's sheet"
+msgstr "This year's sheet"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3150275\n"
-"14\n"
+"rename_table.xhp\n"
+"par_id0909200810503054\n"
"help.text"
-msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
-msgstr "Hàm STYLE() có thể được đưa vào một công thức sẵn có trong ô. Ví dụ, kết hợp với hàm CURRENT, bạn có thể tô màu một ô theo giá trị của nó. Công thức « =...+STYLE(IF(CURRENT()>3; \"Đỏ\"; \"Lục\")) » áp dụng cho kiểu dáng ô \"Đỏ\" đối với các ô có giá trị lớn hơn 3, còn không sẽ dùng kiểu dáng \"Lục\"."
+msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
+msgstr "Tham chiếu phải được đặt trong ngoặc đơn, và nếu có ngoặc đơn ở trong tên thì bạn phải sử dụng hai dấu:"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3151385\n"
-"15\n"
+"rename_table.xhp\n"
+"par_id0909200810503069\n"
"help.text"
-msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
-msgstr "Nếu bạn muốn áp dụng một công thức cho tất cả các ô trong vùng chọn, bạn có thể dùng chức năng <emph>Tìm và Thay thế</emph>."
+msgid "'This year''s sheet'.A1"
+msgstr "'This year''s sheet'.A1"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3149456\n"
+"rename_table.xhp\n"
+"par_id3155444\n"
"16\n"
"help.text"
-msgid "Select all the desired cells."
-msgstr "Chọn tất cả các ô cần xử lý."
+msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
+msgstr "Tên của một trang tính độc lập với tên của bảng tính. Bạn có thể nhập tên bảng tính khi lần đầu tiên bạn lưu nó dưới dạng một tập tin. Tài liệu này có thể chứa đến 256 trang tính riêng rẻ với những tên khác nhau."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3148797\n"
-"17\n"
+"rounding_numbers.xhp\n"
+"tit\n"
"help.text"
-msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
-msgstr "Chọn lệnh <emph>Sửa > Tìm và Thay thế</emph>."
+msgid "Using Rounded Off Numbers"
+msgstr "Dùng các số được làm tròn"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3150767\n"
-"18\n"
+"rounding_numbers.xhp\n"
+"bm_id3153361\n"
"help.text"
-msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
-msgstr "Với điều kiện <item type=\"menuitem\">Tìm kiếm gì</item>, nhập: .<item type=\"literal\">*</item>"
+msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
+msgstr "<bookmark_value>số; làm tròn</bookmark_value><bookmark_value>số làm tròn</bookmark_value><bookmark_value>các số đúng trong $[officename] Calc</bookmark_value><bookmark_value>lần số; hiển thị</bookmark_value><bookmark_value>thay đổi; số lần số</bookmark_value><bookmark_value>giá trị; làm tròn trong phép tính</bookmark_value><bookmark_value>tính;giá trị làm tròn</bookmark_value><bookmark_value>số; lần số</bookmark_value><bookmark_value>độ chính xác được hiển thị</bookmark_value><bookmark_value>độ chính xác làm tròn</bookmark_value><bookmark_value>bảng tính; giá trị được hiển thị</bookmark_value>"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3153770\n"
-"19\n"
+"rounding_numbers.xhp\n"
+"hd_id3156422\n"
+"2\n"
"help.text"
-msgid "\".*\" is a regular expression that designates the contents of the current cell."
-msgstr "« .* » là một biểu thức chính quy tương đương với nội dung của ô hiện thời."
+msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
+msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Dùng số làm tròn\">Dùng số làm tròn</link></variable>"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3153143\n"
-"20\n"
+"rounding_numbers.xhp\n"
+"par_id3153726\n"
+"3\n"
"help.text"
-msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
-msgstr "Nhập công thức sau trong trường <item type=\"menuitem\">Thay thế bằng</item>: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
+msgstr "Trong $[officename] Calc, tất cả các số thập phân hiển thị đều được làm tròn tới hai lần số."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3146975\n"
-"21\n"
+"rounding_numbers.xhp\n"
+"hd_id3152596\n"
+"4\n"
"help.text"
-msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
-msgstr "Ký  tự « & » tương ứng với nội dung hiện thời của trường <emph>Tìm kiếm</emph>. Vì đây là công thức, nên ký tự đầu tiên phải là dấu bằng. Ở đây ta giả sử rằng 2 kiểu dáng « Đỏ » và « Lục » đã được ta định nghĩa trước đó."
+msgid "To change this for selected cells"
+msgstr "Thay đổi việc làm tròn cho các ô được chọn"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3149262\n"
-"22\n"
+"rounding_numbers.xhp\n"
+"par_id3154321\n"
+"5\n"
"help.text"
-msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
-msgstr "Đánh dấu trường <link href=\"text/shared/01/02100000.xhp\" name=\"Biểu thức chính quy\"><emph>Biểu thức chính quy</emph></link> và <emph>Chỉ vùng chọn hiện có</emph>. Nhấn <emph>Tìm tất cả</emph>."
+msgid "Mark all the cells you want to modify."
+msgstr "Đánh dấu tất cả các ô mà bạn muốn thay đổi."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3144767\n"
-"24\n"
+"rounding_numbers.xhp\n"
+"par_id3147428\n"
+"6\n"
"help.text"
-msgid "All cells with contents that were included in the selection are now highlighted."
-msgstr "Ta sẽ thấy tất cả các ô có nội dung nằm trong vùng chọn sẽ được tô sáng."
+msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
+msgstr "Chọn lệnh <emph>Định dạng > Ô</emph> và chuyển sang thẻ trang <emph>Số</emph>."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3147127\n"
-"23\n"
+"rounding_numbers.xhp\n"
+"par_id3153876\n"
+"7\n"
"help.text"
-msgid "Click <item type=\"menuitem\">Replace all</item>."
-msgstr "Nhấn <item type=\"menuitem\">Thay thế tất cả</item>."
+msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgstr "Trong trường <emph>Loại</emph>, chọn <emph>Số</emph>. Dưới <emph>Tùy chọn</emph>, thay đổi số <emph>lần số</emph> và nhấn <emph>OK</emph> để đóng hộp thoại."
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"tit\n"
+"rounding_numbers.xhp\n"
+"hd_id3155415\n"
+"8\n"
"help.text"
-msgid "Defining Number of Pages for Printing"
-msgstr "Xác định số trang để in"
+msgid "To change this everywhere"
+msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"bm_id3153194\n"
+"rounding_numbers.xhp\n"
+"par_id3150715\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
-msgstr "<bookmark_value>in; đếm trang</bookmark_value><bookmark_value>trang; in ra số đếm trang</bookmark_value><bookmark_value>ngắt trang; xem thử bảng tính</bookmark_value><bookmark_value>sửa; vùng in</bookmark_value><bookmark_value>xem; vùng in</bookmark_value><bookmark_value>xem thử; ngắt trang để in</bookmark_value>"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"hd_id3153194\n"
-"1\n"
+"rounding_numbers.xhp\n"
+"par_id3153707\n"
+"10\n"
"help.text"
-msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
-msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Xác định số trang để in\">Xác định số trang để in</link></variable>"
+msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgstr "Chuyển đến trang <emph>Tính</emph>. Thay đổ số <emph>Lần số</emph> và nhấn <emph>OK</emph> để đóng hộp thoại."
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3153771\n"
-"2\n"
+"rounding_numbers.xhp\n"
+"hd_id3154755\n"
+"11\n"
"help.text"
-msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
-msgstr "Nếu một trang quá lớn so với một tờ giấy in đơn, thì $[officename] Calc sẽ in trang đó chia đều thành một vài trang. Vì việc ngắt trang tự động không thường xuyên được tiến hành tại các vị trí tối ưu nên bạn có thể tự mình xác định việc phân trang."
+msgid "To calculate with the rounded off numbers instead of the internal exact values"
+msgstr "Tính toán với các số làm tròn thay cho các giá trị chính xác nội bộ"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3159155\n"
-"3\n"
+"rounding_numbers.xhp\n"
+"par_id3150045\n"
+"12\n"
"help.text"
-msgid "Go to the sheet to be printed."
-msgstr "Đi đến trang để in."
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3150012\n"
-"4\n"
+"rounding_numbers.xhp\n"
+"par_id3146920\n"
+"13\n"
"help.text"
-msgid "Choose <emph>View - Page Break Preview</emph>."
-msgstr "Chọn <emph>Xem > Xem thử chỗ ngắt trang</emph>."
+msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
+msgstr "Chuyển tới trang <emph>Tính</emph>. Đánh dấu trường <emph>Độ chính xác như đã hiển thị</emph> và nhấn <emph>OK</emph> để đóng hộp thoại."
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3146974\n"
-"5\n"
+"rounding_numbers.xhp\n"
+"par_id3145790\n"
+"14\n"
"help.text"
-msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
-msgstr "Bạn sẽ thấy việc phân tự động các trang tính được thể hiện qua các trang in. Vùng in được tự động tạo ra được chỉ thị bằng các đường màu xanh đậm, và vùng in do người sử dụng quy định được chỉ thị bằng các đường màu xanh nhạt. Chỗ ngắt trang (ngắt hàng và cột) được đánh dấu bằng đường màu đen."
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Số\">Số</link>"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3152578\n"
-"6\n"
+"rounding_numbers.xhp\n"
+"par_id3147005\n"
+"15\n"
"help.text"
-msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
-msgstr "Bạn có thể dùng chuột để chuyển các đường màu xanh. Tiếp đó bạn sẽ tìm thấy nhiều tùy chọn trong trình đơn ngữ cảnh, bao gồm thêm một vùng in bổ sung, dời thang tỉ lệ và chèn các chỗ ngắt cột và dòng hướng dẫn bổ sung."
+msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
+msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Tính\">Tính</link>"
-#: print_exact.xhp
+#: row_height.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3151073\n"
-"7\n"
+"row_height.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem > Xem thử chỗ ngắt trang\">Xem > Xem thử chỗ ngắt trang</link>"
+msgid "Changing Row Height or Column Width"
+msgstr "Thay đổi chiều cao hàng hay chiều rộng cột"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"tit\n"
+"row_height.xhp\n"
+"bm_id3145748\n"
"help.text"
-msgid "Filtering Cell Ranges"
-msgstr "Lọc phạm vi các ô"
+msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
+msgstr "<bookmark_value>chiều cao của ô</bookmark_value><bookmark_value>chiều cao ô</bookmark_value><bookmark_value>chiều rộng ô</bookmark_value><bookmark_value>ô; chiều cao và chiều rộng</bookmark_value><bookmark_value>chiều rộng của ô</bookmark_value><bookmark_value>chiều rộng cột</bookmark_value><bookmark_value>hàng; chiều cao</bookmark_value><bookmark_value>cột; chiều rộng</bookmark_value><bookmark_value>thay đổi;chiều cao/rộng của hàng/cột</bookmark_value>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"bm_id3153541\n"
+"row_height.xhp\n"
+"hd_id3145748\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
-msgstr "<bookmark_value>phạm vi ô;áp dụng/gỡ bỏ bộ lọc</bookmark_value><bookmark_value>lọc;phạm vi ô/phạm vi cơ sở dữ liệu</bookmark_value><bookmark_value>phạm vi cơ sở dữ liệu;áp dụng/gỡ bỏ bộ lọc</bookmark_value><bookmark_value>gỡ bỏ;bộ lọc phạm vi ô</bookmark_value>"
+msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
+msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Thay đổi chiều cao hàng hay chiều rộng cột\">Thay đổi chiều cao hàng hay chiều rộng cột</link></variable>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"hd_id3153541\n"
-"47\n"
+"row_height.xhp\n"
+"par_id3154017\n"
+"2\n"
"help.text"
-msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
-msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Lọc phạm vi ô\">Lọc phạm vi ô</link></variable>"
+msgid "You can change the height of the rows with the mouse or through the dialog."
+msgstr "Bạn có thể thay đổi chiều cao của hàng bằng chuột hoặc thông qua hộp thoại."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3145069\n"
-"48\n"
+"row_height.xhp\n"
+"par_id3154702\n"
+"3\n"
"help.text"
-msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
-msgstr "Bạn có thể dùng nhiều bộ lọc để lọc các phạm vi ô trong bảng tính. Một bộ lọc chuẩn có các tuỳ chọn mà bạn chỉ định để lọc dữ liệu. Một bộ lọc Tự động lọc dữ liệu theo một giá trị hoặc chuỗi được chỉ định. Một bộ lọc nâng cao dùng các tiêu chuẩn hình thành từ nhiều ô khác nhau."
+msgid "What is described here for rows and row height applies accordingly for columns and column width."
+msgstr "Những nhân tố mô tả tại đây được ứng dụng cho hàng và chiềy cao hàng, và do đó cũng được ứng dụng cho cột và chiều rộng cột."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10682\n"
+"row_height.xhp\n"
+"hd_id3153963\n"
+"4\n"
"help.text"
-msgid "To Apply a Standard Filter to a Cell Range"
-msgstr "Để áp dụng một bộ lọc chuẩn cho một phạm vi các ô"
+msgid "Using the mouse to change the row height or column width"
+msgstr "Dùng chuột để thay đổi chiều cao hàng vàhay chiều rộng cột"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3150398\n"
-"50\n"
+"row_height.xhp\n"
+"par_id3154020\n"
+"5\n"
"help.text"
-msgid "Click in a cell range."
-msgstr "Chọn phạm vi các ô cần áp dụng."
+msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
+msgstr "Nhắp chuột trong vùng đầu trang, vào đường ngăn cách bên dưới hàng hiện tại, duy trì nhấn chuột và kéo lên hoặc xuống để thay đổi chiều cao hàng."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10693\n"
+"row_height.xhp\n"
+"par_id3159237\n"
+"6\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
-msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Lọc > Bộ lọc Chuẩn</item>."
+msgid "Select the optimal row height by double-clicking the separator below the row."
+msgstr "Chọn chiều cao hàng lý tưởng bằng cách kích đúp vào đường ngăn cách bên dưới hàng."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3156422\n"
-"51\n"
+"row_height.xhp\n"
+"hd_id3154659\n"
+"7\n"
"help.text"
-msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
-msgstr "Trong hộp thoại <emph>Bộ lọc chuẩn</emph>, chọn các tuỳ chọn lọc mà bạn cần."
+msgid "Using the dialog to change the row height or column width"
+msgstr "Dùng hộp thoại để thay đổi chiều cao hàng hay chiều rộng cột"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106A5\n"
+"row_height.xhp\n"
+"par_id3150367\n"
+"8\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
+msgid "Click the row so that you achieve the focus."
+msgstr "Nhắp chuột vào hàng để làm nổi nó."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153143\n"
-"52\n"
+"row_height.xhp\n"
+"par_id3166432\n"
+"9\n"
"help.text"
-msgid "The records that match the filter options that you specified are shown."
-msgstr "Chỉ có các bản ghi thoả mãn điều kiện của bộ lọc mới được hiển thị."
+msgid "Start the context menu on the header at the left-hand side."
+msgstr "Mở trình đơn ngữ cảnh trên đầu trang ở phía tay trái."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153728\n"
-"53\n"
+"row_height.xhp\n"
+"par_id3150519\n"
+"10\n"
"help.text"
-msgid "To Apply an AutoFilter to a Cell Range"
-msgstr "Để áp dụng chế độ Tự động Lọc cho một Phạm vi các ô"
+msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
+msgstr "Bạn sẽ thấy lệnh <emph>Độ cao hàng</emph> và <emph>Tối ưu độ cao hàng</emph>. Một hộp thoại sẽ hiện ra khi bạn chọn 2 lệnh trên."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3144764\n"
-"54\n"
+"row_height.xhp\n"
+"par_id3154487\n"
+"11\n"
"help.text"
-msgid "Click in a cell range or a database range."
-msgstr "Chọn phạm vi ô hoặc phạm vi cơ sở dữ liệu cần xử lý."
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Chiều cao hàng\">Chiều cao hàng</link>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id9303872\n"
+"row_height.xhp\n"
+"par_id3149408\n"
+"12\n"
"help.text"
-msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
-msgstr "Nếu bạn muốn áp dụng nhiều lần chức năng Tự động Lọc lên cùng một bảng, trước hết bạn phải đặt phạm vi cơ sở dữ liệu rồi mới áp dụng Tự động Lọc lên phạm vi đó."
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\" Chiều cao tối ưu của hàng\">Chiều cao tối ưu của hàng</link>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3154944\n"
-"55\n"
+"row_height.xhp\n"
+"par_id3153305\n"
+"13\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
-msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Lọc > Tự động Lọc</item>."
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Chiều rộng cột\">Chiều rộng cột</link>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106DB\n"
+"row_height.xhp\n"
+"par_id3153815\n"
+"14\n"
"help.text"
-msgid "An arrow button is added to the head of each column in the database range."
-msgstr "Một nút mũi tên sẽ xuất hiện trên đầu mỗi cột nằm trong phạm vi CSDL."
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Chiều rộng tối ưu của cột\">Chiều rộng tối ưu của cột</link>"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153878\n"
-"56\n"
+"scenario.xhp\n"
+"tit\n"
"help.text"
-msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
-msgstr "Bấm vào nút mũi tên trên cột có chứa các giá trị hoặc chuỗi mà bạn muốn dùng làm tiêu chuẩn của bộ lọc."
+msgid "Using Scenarios"
+msgstr "Dùng kịch bản"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10749\n"
+"scenario.xhp\n"
+"bm_id3149664\n"
"help.text"
-msgid "Select the value or string that you want to use as the filter criteria."
-msgstr "Chọn giá trị hay chuỗi mà bạn muốn dùng làm tiêu chuẩn để lọc."
+msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
+msgstr "<bookmark_value>kịch bản; tạo/sửa/xoá</bookmark_value><bookmark_value>mở;kịch bản</bookmark_value><bookmark_value>chọn;kịch bản trong Bộ điều hướng</bookmark_value>"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN1074C\n"
+"scenario.xhp\n"
+"hd_id3125863\n"
+"1\n"
"help.text"
-msgid "The records that match the filter criteria that you selected are shown."
-msgstr "Các bản ghi phù hợp với tiêu chuẩn lọc mà bạn chọn sẽ được hiển thị."
+msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
+msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Dùng kịch bản\">Dùng kịch bản</link></variable>"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106E8\n"
+"scenario.xhp\n"
+"par_id3150869\n"
+"2\n"
"help.text"
-msgid "To Remove a Filter From a Cell Range"
-msgstr "Để xoá một bộ lọc khỏi phạm vi các ô"
+msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
+msgstr "Một kịch bản $[officename] Calc là một tập hợp các giá trị của ô có thể được dùng trong các phép tính của bạn. Bạn có thể gán tên cho mọi kịch bản trên trang tính. Xác định một vài kịch bản trên cùng một trang tính, mỗi kịch bản với một vài giá trị khác nhau trong các ô đó. Sau đó bạn có thể dễ dàng chuyển đổi các tập hợp các giá trị ô này theo tên của chúng và có thể ngay lập tức quan sát các kết quả. Các kịch bản này là một công cụ để thử nghiệm câu hỏi dạng \"what-if\" (cái gì sẽ xảy ra nếu...?)."
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN1075C\n"
+"scenario.xhp\n"
+"hd_id3149255\n"
+"15\n"
"help.text"
-msgid "Click in a filtered cell range."
-msgstr "Chọn phạm vi các ô được lọc."
+msgid "Creating Your Own Scenarios"
+msgstr "Tự tạo kịch bản cho bạn"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106EC\n"
+"scenario.xhp\n"
+"par_id3154704\n"
+"16\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
-msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Lọc > Bỏ bộ lọc</item>."
+msgid "To create a scenario, select all the cells that provide the data for the scenario."
+msgstr "Để tạo một kịch bản, chọn tất cả các ô cung cấp dữ liệu cho kịch bản."
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id4525284\n"
+"scenario.xhp\n"
+"par_id3154020\n"
+"17\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"tit\n"
+"scenario.xhp\n"
+"par_id3150364\n"
+"18\n"
"help.text"
-msgid "Selecting Themes for Sheets"
-msgstr "Chọn sắc thái cho bảng tính"
+msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
+msgstr "Chọn <emph>Công cụ > Kịch bản</emph>. Hộp thoại <emph>Tạo kịch bản</emph> sẽ mở ra."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"bm_id3150791\n"
+"scenario.xhp\n"
+"par_id3166426\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
-msgstr "<bookmark_value>chọn sắc thái cho trang tính</bookmark_value><bookmark_value>bố trí;bảng tính</bookmark_value><bookmark_value>kiểu dáng ô bảng; lựa chọn</bookmark_value><bookmark_value>lựa chọn;sắc thái định dạng</bookmark_value><bookmark_value>trang tính;định dạng sắc thái</bookmark_value><bookmark_value>định dạng;sắc thái cho trang tính</bookmark_value><bookmark_value>định dạng;sắc thái cho trang tính</bookmark_value>"
+msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
+msgstr "Nhập tên cho kịch bản mới và giữ nguyên các trường khác với các giá trị mặc định của chúng. Nhấn <emph>OK</emph> để đóng hộp thoại. Kịch bản mới của bạn sẽ tự động được kích hoạt."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"hd_id3150791\n"
-"6\n"
+"scenario.xhp\n"
+"hd_id3149664\n"
+"3\n"
"help.text"
-msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
-msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Chọn sắc thái cho bảng tính\">Chọn sắc thái cho bảng tính</link></variable>"
+msgid "Using Scenarios"
+msgstr "Dùng kịch bản"
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3145786\n"
-"13\n"
+"scenario.xhp\n"
+"par_id3153415\n"
+"11\n"
"help.text"
-msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
-msgstr "Bảng tính Calc $[officename] thường đi kèm với một tập hợp các sắc thái định dạng mà bạn có thể ứng dụng vào bảng tính của mình."
+msgid "Scenarios can be selected in the Navigator:"
+msgstr "Các kịch bản có thể được chọn trong Bộ điều hướng:"
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3154490\n"
-"16\n"
+"scenario.xhp\n"
+"par_id3150752\n"
+"12\n"
"help.text"
-msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
-msgstr "Các sắc thái không thể chèn vào bảng tính Calc và cũng không thể bị thay đổi. Tuy nhiên, bạn có thể thay đổi kiểu dáng của chúng sau khi ứng dụng chúng vào một bảng tính"
+msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
+msgstr "Mở Bộ điều hướng với biểu tượng <emph>Bộ điều hướng</emph> <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Biểu tượng Bộ điều hướng</alt></image> trên thanh <emph>Chuẩn</emph>."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3154757\n"
-"17\n"
+"scenario.xhp\n"
+"par_id3155764\n"
+"13\n"
"help.text"
-msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
-msgstr "Trước khi đinh dạng sắc thái vào bảng tính, bạn phải ứng dụng ít nhất một kiểu dáng ô tùy chỉnh vào các ô trên bảng tính. Sau đó bạn có thể thay đổi định dạng ô bằng cách chọn và ứng dụng một sắc thái trong hộp thoại <emph>Chọn sắc thái</emph>."
+msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
+msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3156382\n"
-"18\n"
+"scenario.xhp\n"
+"par_id3154256\n"
+"14\n"
"help.text"
-msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
-msgstr "Để ứng dụng một kiểu dáng ô tùy chỉnh vào một ô, bạn có thể mở cửa sổ <emph>Kiểu dáng và Định dạng</emph>, và trong hộp danh sách bên dưới, đặt ô xem <emph>Kiểu dáng Tự chọn</emph>. Một danh sách các kiểu dáng ô tùy chỉnh đã tồn tại sẽ được mở ra. Nhấp đôi chuột vào tên từ cửa sổ <emph>Kiểu dáng và Định dạng</emph> để ứng dụng kiểu dáng này cho các ô được chọn."
+msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
+msgstr "Trong Bộ điều hướng, bạn có thể thấy các kịch bản được định nghĩa kèm theo lời bình đã được nhập vào khi tạo kịch bản."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3153963\n"
-"19\n"
+"scenario.xhp\n"
+"par_id1243629\n"
"help.text"
-msgid "To apply a theme to a spreadsheet:"
-msgstr "Để ứng dụng sắc thái vào một bảng tính:"
+msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
+msgstr "Nhấn đúp vào tên một kịch bản trong Bộ vđể ứng dụng kịch bản đó vào trang tính hiện thời."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3146920\n"
-"15\n"
+"scenario.xhp\n"
+"par_id9044770\n"
"help.text"
-msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
-msgstr "Nhấp chuột vào biểu tượng <emph>Chọn sắc thái</emph> trong thanh <emph>Công cụ</emph>."
+msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
+msgstr "Để xóa một kịch bản, nhấn chuột phải vào tên kịch bản trong Bộ điều hướng và chọn <emph>Xóa</emph>."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3148488\n"
-"20\n"
+"scenario.xhp\n"
+"par_id3674123\n"
"help.text"
-msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
-msgstr "Hộp thoại <emph>Chọn sắc thái</emph> sẽ xuất hiện. Hộp thoại này liệt kê các sắc thái sẵn có dùng cho toàn bộ bảng tính còn cửa sổ <emph>Kiểu dáng và Định dạng</emph> liệt kê các kiểu dáng tùy chỉnh cho các ô cụ thể."
+msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
+msgstr "Để sửa một kịch bản, nhấn chuột phải vào tên của nó trong Bộ điều hướng và chọn <emph>Thuộc tính</emph>."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3155114\n"
-"9\n"
+"scenario.xhp\n"
+"par_id3424481\n"
"help.text"
-msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
-msgstr "Trong hộp thoại <emph>Lựa chọn Sắc thái</emph>, chọn sắc thái mà bạn muốn ứng dụng vào bảng tính."
+msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
+msgstr "Để ẩn đường viền của một tập hợp các ô là bộ phận của một kịch bản, hãy mở hộp thoại <emph>Thuộc tính</emph> cho mỗi kịch bản tác động đến các ô và gột hộp kiểm tra <emph>Hiển thị viền</emph>. Việc ẩn đường viền này đồng thời cũng gỡ bỏ hộp danh sách trên trang tính nơi mà bạn có thể chọn các kịch bản."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3150090\n"
-"21\n"
+"scenario.xhp\n"
+"par_id3154368\n"
+"22\n"
"help.text"
-msgid "Click OK"
-msgstr "Nhấn vào nút OK"
+msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
+msgstr "Nếu bạn muốn biết giá trị nào trong kịch bản tác động đến các giá trị khác, hãy chọn <emph>Công cụ > Dò tìm > Theo vết phụ thuộc</emph>. Bạn có thể thấy các mũi tên chỉ tới các ô phụ thuộc trực tiếp vào ô đang xét."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3150201\n"
-"22\n"
+"scenario.xhp\n"
+"par_id3154484\n"
+"29\n"
"help.text"
-msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
-msgstr "Ngay sau khi bạn chọn một sắc thái khác trong hội thoại<emph>Lựa chọn Sắc thái</emph>, một vài trong số thuộc tính kiểu dáng tùy chỉnh sẽ được ứng dụng vào bảng tính hiện thời. Những thay đồi sẽ ngay lập tức hiện rõ trong bảng tính của bạn."
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Tạo kịch bản\">Tạo kịch bản</link>"
-#: design.xhp
+#: sorted_list.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3146979\n"
-"12\n"
+"sorted_list.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
-msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Lựa chọn Sắc thái\">Lựa chọn Sắc thái</link>."
+msgid "Applying Sort Lists"
+msgstr "Ứng dụng Danh sách Sắp xếp"
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"tit\n"
+"sorted_list.xhp\n"
+"bm_id3150870\n"
"help.text"
-msgid "Unprotecting Cells"
-msgstr "Bỏ bảo vệ cho các ô"
+msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
+msgstr "<bookmark_value>điền;danh sách tùy biến</bookmark_value><bookmark_value>danh sách sắp xếp;áp dụng</bookmark_value><bookmark_value>xác định;danh sách sắp xếp</bookmark_value><bookmark_value>danh sách cấp số nhân</bookmark_value><bookmark_value>danh sách cấp số cộng</bookmark_value><bookmark_value>chuỗi;danh sách sắp xếp</bookmark_value><bookmark_value>danh sách; do người sử dụng quy định</bookmark_value><bookmark_value>danh sách tùy biến</bookmark_value>"
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"bm_id3153252\n"
+"sorted_list.xhp\n"
+"hd_id3150870\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
-msgstr "<bookmark_value>bảo vệ ô; bỏ bảo vệ</bookmark_value><bookmark_value>bảo vệ; bỏ bảo vệ các ô</bookmark_value><bookmark_value>bỏ bảo vệ các ô</bookmark_value>"
+msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
+msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Áp dụng Danh sách Sắp xếp\">Áp dụng Danh sách Sắp xếp</link></variable>"
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"hd_id3153252\n"
-"14\n"
+"sorted_list.xhp\n"
+"par_id3159154\n"
+"7\n"
"help.text"
-msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
-msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Bỏ bảo vệ cho các ô\">Bỏ bảo vệ cho các ô</link></variable>"
+msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
+msgstr "Danh sách sắp xếp cho phép bạn nhập một mẩu thông tin vào trong ô, sau đó kéo nó để lấp vào trong một danh sách liên tiếp các mục."
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3151112\n"
-"15\n"
+"sorted_list.xhp\n"
+"par_id3148645\n"
+"4\n"
"help.text"
-msgid "Click the sheet for which you want to cancel the protection."
-msgstr "Bấm vào bảng tính mà bạn muốn bỏ bảo vệ."
+msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
+msgstr "Ví dụ, nhập văn bản « Th1 « hay « Tháng Một » vào trong một ô trống. Chọn ô này và nhắp chuột vào góc phải phía dưới của viền ô. Sau đó kéo các ô được chọn này sang bên phải hay xuống dưới. Khi bạn nhả chuột, các ô được tô sáng sẽ được lấp bằng tên của các tháng."
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3149656\n"
-"16\n"
+"sorted_list.xhp\n"
+"par_id2367931\n"
"help.text"
-msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
-msgstr "Chọn <emph>Công cụ > Bảo vệ Tài liệu</emph>, sau đó chọn <emph>Bảng tính</emph> hoặc <emph>Tài liệu</emph> để gỡ bỏ dấu kiểm chỉ thị trạng thái được bảo vệ."
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3145171\n"
-"17\n"
+"sorted_list.xhp\n"
+"par_id3152577\n"
+"5\n"
"help.text"
-msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
-msgstr "Nếu bạn đã gán một mật khẩu lúc chọn bảo vệ, hãy nhập lại mật khẩu đó vào trong hộp thoại và nhấn <emph>OK</emph>."
+msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
+msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3153771\n"
-"18\n"
+"sorted_list.xhp\n"
+"par_id3147434\n"
+"6\n"
"help.text"
-msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
-msgstr "Giờ bạn có thể sửa lại các ô, xem các công thức, và tất cả các ô sẽ được in ra nếu bạn chọn lệnh in, cho tới khi bạn bật lại chế độ bảo vệ cho tài liệu hay bảng tính."
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Danh sách Sắp xếp\">Danh sách Sắp xếp</link>"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
+"specialfilter.xhp\n"
"tit\n"
"help.text"
-msgid "19xx/20xx Years"
-msgstr "Năm 19xx/20xx"
+msgid "Filter: Applying Advanced Filters"
+msgstr "Lọc : Ứng dụng bộ lọc cấp cao"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"bm_id3150439\n"
+"specialfilter.xhp\n"
+"bm_id3148798\n"
"help.text"
-msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
-msgstr "<bookmark_value>năm; 2 chữ số</bookmark_value><bookmark_value>ngày; 19xx/20xx</bookmark_value>"
+msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
+msgstr "<bookmark_value>lọc;xác định các bộ lọc cấp cao</bookmark_value><bookmark_value>bộ lọc cấp cao</bookmark_value><bookmark_value>xác định; bộ lọc cấp cao</bookmark_value><bookmark_value>phạm vi cơ sở dữ liệu;bộ lọc cấp cao</bookmark_value>"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"hd_id3150439\n"
+"specialfilter.xhp\n"
+"hd_id3148798\n"
"18\n"
"help.text"
-msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
-msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"Năm 19xx/20xx\">Năm 19xx/20xx</link></variable>"
+msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
+msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Lọc: áp dụng bộ lọc cấp cao\">Lọc: áp dụng bộ lọc cấp cao</link></variable>"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3151116\n"
-"17\n"
+"specialfilter.xhp\n"
+"par_id3145785\n"
+"19\n"
"help.text"
-msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
-msgstr "Năm trong một mục ngày tháng thường được nhập vào bằng hai chữ số. Trong đó, năm này được quản lý bằng $[officename] dưới dạng bốn chữ số, nhờ đó ta có thể tính chính xác kết quả về sự chênh lệch từ 1/1/99 tới 1/1/01 là 2 năm."
+msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
+msgstr "chép phần đầu cột của vùng trang sẽ được lọc sang một vùng trống của trang, sau đó nhập tiêu chuẩn cho lọc trong một hàng bên dưới phần đầu trang. Dữ liệu được sắp xếp theo chiều ngang trong một hàng sẽ luôn được nối với AND còn dữ liệu được sắp xếp theo chiều dọc trong một cột thường được nối với OR"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3154011\n"
-"19\n"
+"specialfilter.xhp\n"
+"par_id3153142\n"
+"20\n"
"help.text"
-msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
-msgstr ""
+msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
+msgstr "Khi bạn đã tạo ra một ma trận lọc, hãy chọn vùng trang để lọc. Mở hộp thoại <emph>Lọc cấp cao</emph> bằng cách chọn <emph>Dữ liệu > Lọc > Lọc cấp cao</emph>, và xác định các điều kiện lọc."
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3150010\n"
-"20\n"
+"specialfilter.xhp\n"
+"par_id3153726\n"
+"21\n"
"help.text"
-msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
-msgstr "Điều này có nghĩa là nếu bạn nhập một ngày trong 1/1/30 hoặc cao hơn, ngày này sẽ được xử lý nội bộ dạng 1/1/1930 hoặc cao hơn. Tất cả các năm hai chữ số thấp hơn đều ứng dụng cho thế kỉ 20xx. Vì vậy, ví dụ như, 1/1/20 sẽ được chuyển thành 1/1/2020."
+msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
+msgstr "Sau đó nhấn <emph>OK</emph>, và bạn sẽ nhận thấy rằng chỉ có những hàng từ trang gốc đáp ứng các tiêu chuẩn tìm kiếm là vẫn hiển thị. Tất cả các hàng khác tạm thời bị ẩn đi và có thể được xuất hiện bằng lệnh <emph>Định dạng > Hàng > Hiển thị</emph>."
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"tit\n"
+"specialfilter.xhp\n"
+"par_id3149664\n"
+"22\n"
"help.text"
-msgid "Applying Conditional Formatting"
-msgstr "Áp dụng Định dạng có điều kiện"
+msgid "<emph>Example</emph>"
+msgstr "<emph>Ví dụ</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"bm_id3149263\n"
+"specialfilter.xhp\n"
+"par_id3147427\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
-msgstr "<bookmark_value>định dạng có điều kiện; ô</bookmark_value><bookmark_value>ô; định dạng có điều kiện</bookmark_value><bookmark_value>định dạng; định dạng có điều kiện</bookmark_value><bookmark_value>kiểu dáng;kiểu dáng có điều kiện</bookmark_value><bookmark_value>định dạng ô; có điều kiện</bookmark_value><bookmark_value>số ngẫu nhiên;ví dụ</bookmark_value><bookmark_value>kiểu dáng ô;sao chép</bookmark_value><bookmark_value>sao chép; kiểu dáng ô</bookmark_value><bookmark_value>bảng;sao chép kiểu dáng ô</bookmark_value>"
+msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
+msgstr "Nạp một bảng tính với một lượng lớn các bản ghi. Ta sẽ dùng tài liệu giả thuyết <emph>Doanh thu</emph>, tuy nhiên bạn có thể dùng bất kì một tài liệu nào. Tài liệu này có cách sắp đặt như sau:"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149263\n"
+"specialfilter.xhp\n"
+"par_id3154510\n"
"24\n"
"help.text"
-msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
-msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Áp dụng Định dạng có điều kiện\">Áp dụng Định dạng có điều kiện</link></variable>"
+msgid "<emph>A</emph>"
+msgstr "<emph>A</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159156\n"
+"specialfilter.xhp\n"
+"par_id3150327\n"
"25\n"
"help.text"
-msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
-msgstr "Dùng lệnh <emph>Định dạng > Định dạng có điều kiện</emph>, hộp thoại xuất hiện cho phép bạn định nghĩa tối đa ba điều kiện cho mỗi ô. Các ô được chọn nếu thoả mãn các điều kiện này thì sẽ có định dạng riêng."
+msgid "<emph>B</emph>"
+msgstr "<emph>B</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id8039796\n"
+"specialfilter.xhp\n"
+"par_id3154756\n"
+"26\n"
"help.text"
-msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr "Để sử dụng tính năng định dạng có điều kiện, chức năng Tự động Tính phải được bật. Chọn <emph>Công cụ > Nội dung ô > Tự động Tính</emph> (bạn sẽ thấy một dấu kiểm bên cạnh lệnh này khi nó được bật)."
+msgid "<emph>C</emph>"
+msgstr "<emph>C</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154944\n"
-"26\n"
+"specialfilter.xhp\n"
+"par_id3155335\n"
+"27\n"
"help.text"
-msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
-msgstr "Bạn có thể dùng chức năng định dạng có điều kiện để tô sáng các tổng số lớn hơn giá trị trung bình của tất cả các tổng chả hạn. Nếu tổng số thay đổi, định dạng cũng sẽ thay đổi theo và bạn không cần phải áp dụng các kiểu dáng theo cách thủ công."
+msgid "<emph>D</emph>"
+msgstr "<emph>D</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id4480727\n"
+"specialfilter.xhp\n"
+"par_id3146315\n"
+"28\n"
"help.text"
-msgid "To Define the Conditions"
-msgstr "Để chỉ định điều kiện"
+msgid "<emph>E</emph>"
+msgstr "<emph>E</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154490\n"
-"27\n"
+"specialfilter.xhp\n"
+"par_id3145790\n"
+"29\n"
"help.text"
-msgid "Select the cells to which you want to apply a conditional style."
-msgstr "Chọn các ô mà bạn muốn áp dụng định dạng có điều kiện."
+msgid "<emph>1</emph>"
+msgstr "<emph>1</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155603\n"
-"28\n"
+"specialfilter.xhp\n"
+"par_id3159239\n"
+"30\n"
"help.text"
-msgid "Choose <emph>Format - Conditional Formatting</emph>."
-msgstr "Chọn <emph>Định dạng > Định dạng có điều kiện</emph>."
+msgid "Month"
+msgstr "Tháng"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3146969\n"
-"29\n"
+"specialfilter.xhp\n"
+"par_id3150086\n"
+"31\n"
"help.text"
-msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
-msgstr "Nhập các điều kiện vào trong hộp thoại. Hộp thoại này được mô tả chi tiết trong phần <link href=\"text/scalc/01/05120000.xhp\" name=\"Trợ giúp $[officename]\">Trợ giúp $[officename]</link>, và một ví dụ cũng được cho dưới đây:"
+msgid "Standard"
+msgstr "Chuẩn"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3155766\n"
-"38\n"
+"specialfilter.xhp\n"
+"par_id3150202\n"
+"32\n"
"help.text"
-msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
-msgstr "Ví dụ về định dạng có điều kiện: tô sáng tổng ở trên/dưới giá trị trung bình"
+msgid "Business"
+msgstr "Kinh doanh"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id4341868\n"
+"specialfilter.xhp\n"
+"par_id3150883\n"
+"33\n"
"help.text"
-msgid "Step1: Generate Number Values"
-msgstr "Bước 1: Sinh giá trị số"
+msgid "Luxury"
+msgstr "Hàng xa xỉ"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150043\n"
+"specialfilter.xhp\n"
+"par_id3152987\n"
+"34\n"
+"help.text"
+msgid "Suite"
+msgstr "Bộ"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3154486\n"
+"35\n"
+"help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3148839\n"
+"36\n"
+"help.text"
+msgid "January"
+msgstr "Tháng Giêng"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153816\n"
+"37\n"
+"help.text"
+msgid "125600"
+msgstr "125600"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3157978\n"
+"38\n"
+"help.text"
+msgid "200500"
+msgstr "200500"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3155268\n"
"39\n"
"help.text"
-msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
-msgstr "Giả sử bạn muốn làm nổi bật các giá trị nhất định trong các bảng mình có. Ví dụ, trong một bảng doanh thu, bạn có thể dùng màu lục để tô nền cho tất cả các giá trị lớn hơn trị trung bình, và tô màu đỏ cho những giá trị nhỏ hơn. Điều này hoàn toàn có thể được tự động thực hiện nếu bạn biết dùng chức năng định dạng có điều kiện."
+msgid "240000"
+msgstr "240000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155337\n"
+"specialfilter.xhp\n"
+"par_id3153286\n"
"40\n"
"help.text"
-msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
-msgstr "Trước tiên, bạn hãy soạn một bảng giá trị có nhiều giá trị khác nhau. Đối với ví dụ này, bạn hãy lấy các con số ngẫu nhiên:"
+msgid "170000"
+msgstr "170000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149565\n"
+"specialfilter.xhp\n"
+"par_id3146782\n"
"41\n"
"help.text"
-msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
-msgstr "Trong một ô, hãy nhập công thức « =RAND() », và bạn sẽ thu được một số ngẫu nhiên nằm giữa 0 và 1. Nếu bạn muốn số nguyên giữa 0 và 50, hãy nhập công thức « =INT(RAND()*50) »."
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149258\n"
+"specialfilter.xhp\n"
+"par_id3149900\n"
"42\n"
"help.text"
-msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
-msgstr "Sao chép công thức lại để tạo một hàng có toàn các số ngẫu nhiên. Bấm vào góc phải bên dưới của ô đã chọn, và kéo nó sang phải tới hết phạm vi cần chọn."
+msgid "February"
+msgstr "Tháng Hai"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159236\n"
+"specialfilter.xhp\n"
+"par_id3154763\n"
"43\n"
"help.text"
-msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
-msgstr "Làm tương tự, hãy kéo xuống góc của ô cùng bên phải để tạo thêm nhiều hàng số ngẫu nhiên khác."
+msgid "160000"
+msgstr "160000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149211\n"
+"specialfilter.xhp\n"
+"par_id3150050\n"
"44\n"
"help.text"
-msgid "Step 2: Define Cell Styles"
-msgstr "Bước 2: Chỉ định kiểu dáng ô"
+msgid "180300"
+msgstr "180300"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154659\n"
+"specialfilter.xhp\n"
+"par_id3153801\n"
"45\n"
"help.text"
-msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
-msgstr "Bước tiếp theo là áp dụng một kiểu dáng ô cho tất cả các giá trị biểu diễn doanh thu lớn hơn trung bình, và một kiểu dáng cho các giá trị nhỏ hơn. Hãy đảm bảo rằng cửa sổ <emph>Kiểu dáng và Định dạng</emph> được hiển thị trước khi tiếp tục."
+msgid "362000"
+msgstr "362000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150883\n"
+"specialfilter.xhp\n"
+"par_id3154708\n"
"46\n"
"help.text"
-msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
-msgstr "Bấm vào một ô trống và chọn lệnh <emph>Định dạng ô</emph> trong trình đơn ngữ cảnh."
+msgid "220000"
+msgstr "220000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155529\n"
+"specialfilter.xhp\n"
+"par_id3151191\n"
"47\n"
"help.text"
-msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
-msgstr "Trong hộp thoại <emph>Định dạng ô</emph> của thẻ <emph>Nền</emph>, chọn một màu nền. Bấm <emph>OK</emph>."
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154484\n"
+"specialfilter.xhp\n"
+"par_id3147250\n"
"48\n"
"help.text"
-msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
-msgstr "Trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>, bấm vào biểu tượng <emph>Kiểu dáng mới từ vùng chọn</emph>. Nhập tên của kiểu dáng mới. Trong ví dụ này, ta chọn tên « Trên »."
+msgid "March"
+msgstr "Tháng Ba"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3152889\n"
+"specialfilter.xhp\n"
+"par_id3153334\n"
"49\n"
"help.text"
-msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
-msgstr "Để đặt kiểu dáng thứ hai, ta bấm lại vào một ô trống và tiến hành các bước tương tự. Gán một màu nền khác cho ô và đặt tên kiểu dáng (v.d.) là « Dưới »."
+msgid "170000"
+msgstr "170000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3148704\n"
-"60\n"
+"specialfilter.xhp\n"
+"par_id3151391\n"
+"50\n"
"help.text"
-msgid "Step 3: Calculate Average"
-msgstr "Bước 3: tính giá trị trung bình"
+msgid "and so on..."
+msgstr "và vân vân."
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3148837\n"
+"specialfilter.xhp\n"
+"par_id3147300\n"
"51\n"
"help.text"
-msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
-msgstr "Trong ví dụ này, ta sẽ tính giá trị trung bình của các số ngẫu nhiên. Kết quả sẽ đặt trong một ô:"
+msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
+msgstr "Ví dụ: Chép hàng 1 cùng các phần đầu (tên trường) tới hàng 20. Nhập các điều kiện lọc liên kết với OR (hoặc) trong hàng 21, 22, vân vân."
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3144768\n"
+"specialfilter.xhp\n"
+"par_id3159115\n"
"52\n"
"help.text"
-msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
-msgstr "Đặt con trỏ trong một ô trống, ví dụ như J14, và chọn <emph>Chèn > Hàm</emph>."
+msgid "<emph>A</emph>"
+msgstr "<emph>A</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3156016\n"
+"specialfilter.xhp\n"
+"par_id3146886\n"
"53\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
-msgstr "Chọn hàm AVERAGE. Dùng chuột chọn tất cả các số ngẫu nhiên. Nếu bạn không thấy hết toàn bộ các số cần chọn vì hộp thoại <emph>Trợ lý Hàm</emph> đã che mất, bạn có thể tạm thời thu nhỏ hộp thoại này đi bằng biểu tượng <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Thu nhỏ hoặc Phóng to\">Thu nhỏ / Phóng to</link>."
+msgid "<emph>B</emph>"
+msgstr "<emph>B</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153246\n"
+"specialfilter.xhp\n"
+"par_id3153124\n"
"54\n"
"help.text"
-msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
-msgstr "Đóng Trợ lí hàm với <item type=\"menuitem\">OK</item>."
-
-#: cellstyle_conditional.xhp
-msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149898\n"
-"50\n"
-"help.text"
-msgid "Step 4: Apply Cell Styles"
-msgstr "Bước 4: Áp dụng kiểu dáng ô"
+msgid "<emph>C</emph>"
+msgstr "<emph>C</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149126\n"
+"specialfilter.xhp\n"
+"par_id3152979\n"
"55\n"
"help.text"
-msgid "Now you can apply the conditional formatting to the sheet:"
-msgstr "Giờ bạn có thể áp dụng các định dạng có điều kiện cho bảng:"
+msgid "<emph>D</emph>"
+msgstr "<emph>D</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150049\n"
+"specialfilter.xhp\n"
+"par_id3145827\n"
"56\n"
"help.text"
-msgid "Select all cells with the random numbers."
-msgstr "Chọn tất cả các ô có số ngẫu nhiên."
+msgid "<emph>E</emph>"
+msgstr "<emph>E</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153801\n"
+"specialfilter.xhp\n"
+"par_id3149892\n"
"57\n"
"help.text"
-msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
-msgstr "Chọn lệnh <emph>Định dạng > Định dạng có điều kiện</emph>."
+msgid "<emph>20</emph>"
+msgstr "<emph>20</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153013\n"
+"specialfilter.xhp\n"
+"par_id3150693\n"
"58\n"
"help.text"
-msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
-msgstr "Đặt các điều kiện như sau: nếu giá trị của ô nhỏ hơn J14, dùng kiểu dáng ô « Dưới », và nếu giá trị ô lớn hơn hoặc bằng J14, dùng kiểu dáng « Trên »."
+msgid "Month"
+msgstr "Tháng"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3155761\n"
+"specialfilter.xhp\n"
+"par_id3147475\n"
+"59\n"
+"help.text"
+msgid "Standard"
+msgstr "Chuẩn"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3154846\n"
+"60\n"
+"help.text"
+msgid "Business"
+msgstr "Kinh doanh"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153082\n"
"61\n"
"help.text"
-msgid "Step 5: Copy Cell Style"
-msgstr "Bước 5: Chép kiểu dáng ô"
+msgid "Luxury"
+msgstr "Hàng xa xỉ"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3145320\n"
+"specialfilter.xhp\n"
+"par_id3149506\n"
"62\n"
"help.text"
-msgid "To apply the conditional formatting to other cells later:"
-msgstr "Để áp dụng kiểu dáng có điều kiện cho các ô khác sau đó:"
+msgid "Suite"
+msgstr "Bộ"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153074\n"
+"specialfilter.xhp\n"
+"par_id3149188\n"
"63\n"
"help.text"
-msgid "Click one of the cells that has been assigned conditional formatting."
-msgstr "Bấm vào một ô đã được định dạng bằng lệnh Định dạng có điều kiện."
+msgid "<emph>21</emph>"
+msgstr "<emph>21</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149051\n"
+"specialfilter.xhp\n"
+"par_id3149956\n"
"64\n"
"help.text"
-msgid "Copy the cell to the clipboard."
-msgstr "Chép ô đó vào trong bảng nháp."
+msgid "January"
+msgstr "Tháng Giêng"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150436\n"
+"specialfilter.xhp\n"
+"par_id3150865\n"
"65\n"
"help.text"
-msgid "Select the cells that are to receive this same formatting."
-msgstr "Chọn các ô cần có định dạng này."
+msgid "<emph>22</emph>"
+msgstr "<emph>22</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3147298\n"
+"specialfilter.xhp\n"
+"par_id3155957\n"
"66\n"
"help.text"
-msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
-msgstr "Chọn <emph>Sửa > Dán đặc biệt</emph>. Hộp thoại <emph>Dán đặc biệt</emph> xuất hiện."
+msgid "<160000"
+msgstr "<160000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3166465\n"
+"specialfilter.xhp\n"
+"par_id3153566\n"
"67\n"
"help.text"
-msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
-msgstr "Trong phần <emph>Lựa chọn</emph>, chỉ đánh dấu hộp <emph>Định dạng</emph>. Tất cả các hộp khác, ta bỏ không đánh dấu. Nhấn <emph>OK</emph>."
+msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgstr "Chỉ rõ rằng chỉ có các hàng có giá trị <item type=\"literal\">Tháng Giêng</item> trong các ô <emph>Tháng</emph> OR (hoặc) một giá trị thấp hơn 160000 trong các ô <emph>Chuẩn</emph> sẽ được hiển thị."
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159123\n"
+"specialfilter.xhp\n"
+"par_id3147372\n"
"68\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
-msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Định dạng - Định dạng có điều kiện\">Định dạng > Định dạng có điều kiện</link>"
+msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
+msgstr "Chọn <emph>Dữ liệu > Lọc > Lọc cấp cao</emph>, sau đó chọn vùng «A20:E22 ». Sau khi nhấn <emph>OK</emph>, chỉ có các hàng được lọc mới được hiển thị. Các hàng khác sẽ bị ẩn đi."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
+"super_subscript.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Matrix Formulas"
-msgstr "Nhập Công thức Ma trận"
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"bm_id3153969\n"
-"help.text"
-msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
-msgstr "<bookmark_value>ma trận; nhập công thức ma trận</bookmark_value><bookmark_value>công thức; công thức ma trận</bookmark_value><bookmark_value>chèn;công thức ma trận</bookmark_value>"
+msgid "Text Superscript / Subscript"
+msgstr "Chỉ số trên/dưới trong văn bản"
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"hd_id3153969\n"
-"13\n"
+"super_subscript.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
-msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Nhập Công thức Ma trận\">Nhập Công thức Ma trận</link></variable>"
+msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
+msgstr "<bookmark_value>chỉ số trên trong ô</bookmark_value><bookmark_value>chỉ số dưới trong ô</bookmark_value><bookmark_value>ô; chỉ số trên/dưới</bookmark_value><bookmark_value>ký tự;chỉ số trên/dưới</bookmark_value>"
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3153144\n"
-"14\n"
+"super_subscript.xhp\n"
+"hd_id3151112\n"
+"1\n"
"help.text"
-msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
-msgstr "Sau đây là một ví dụ về cách bạn có thể nhập một công thức ma trận, không đi vào chi tiết của các hàm ma trận."
+msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
+msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Chỉ số trên/dưới văn bản\">Chỉ số trên/dưới trong văn bản</link></variable>"
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3153188\n"
-"15\n"
+"super_subscript.xhp\n"
+"par_id3154684\n"
+"2\n"
"help.text"
-msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
-msgstr "Giả sử bạn đã nhập 10 số trong cột A và B (A1:A10 và B1:B10), và bạn muốn tính tổng của mỗi hàng trong cột C."
+msgid "In the cell, select the character that you want to put in superscript or subscript."
+msgstr "Hãy chọn ký tự trong ô mà bạn muốn chuyển thành chỉ số trên hay chỉ số dưới."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154321\n"
-"16\n"
+"super_subscript.xhp\n"
+"par_id3150439\n"
+"3\n"
"help.text"
-msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
-msgstr "Dùng chuột, chọn vùng C1:C10 trong đó các kết quả sẽ được hiển thị."
+msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
+msgstr "Ví dụ, nếu bạn muốn viết H20 với chỉ số trên là 2, hãy chọn 2 trong ô (không phải trong dòng nhập)."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
+"super_subscript.xhp\n"
"par_id3149260\n"
-"17\n"
-"help.text"
-msgid "Press F2, or click in the input line of the Formula bar."
-msgstr "Nhấn phím <item type=\"keycode\">F2</item> hoặc nhắp chuột vào dòng nhập của thanh <emph>Công thức</emph>."
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154944\n"
-"18\n"
-"help.text"
-msgid "Enter an equal sign (=)."
-msgstr "Nhập dấu bằng (=)."
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3145252\n"
-"19\n"
-"help.text"
-msgid "Select the range A1:A10, which contains the first values for the sum formula."
-msgstr "Chọn vùng A1:A10, nơi sẽ chứa các giá trị đầu tiên của công thức tổng."
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3144767\n"
-"20\n"
+"4\n"
"help.text"
-msgid "Press the (+) key from the numerical keypad."
-msgstr "Nhấn phím (+) từ vùng số trên bàn phím."
+msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
+msgstr "Mở trình đơn ngữ cảnh cho kí tự đã chọn và chọn mục <emph>Ký tự</emph>. Bạn sẽ thấy hộp thoại <emph>Ký tự</emph>."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154018\n"
-"21\n"
+"super_subscript.xhp\n"
+"par_id3153142\n"
+"5\n"
"help.text"
-msgid "Select the numbers in the second column in cells B1:B10."
-msgstr "Chọn các số trong cột thứ hai trong các ô B1:B10."
+msgid "Click the <emph>Font Position</emph> tab."
+msgstr "Nhắp chuột vào thẻ <emph>Vị trí phông</emph>."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3150716\n"
-"22\n"
+"super_subscript.xhp\n"
+"par_id3153954\n"
+"6\n"
"help.text"
-msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr "Kết thúc nhập liệu vào ma trận bằng tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgid "Select the <emph>Subscript</emph> option and click OK."
+msgstr "Bật tùy chọn <emph>Chỉ số dưới</emph> và nhấn <emph>OK</emph>."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3145640\n"
-"23\n"
+"super_subscript.xhp\n"
+"par_id3153876\n"
+"7\n"
"help.text"
-msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
-msgstr "Vùng ma trận tự động được bảo vệ tránh khỏi những thay đổi, chẳng hạn như xóa hàng hay cột. Tuy nhiên, cũng có thể sửa bất kì một định dạng nào, ví dụ như nền trong ô."
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Trình đơn ngữ cảnh K Ký tự > Vị trí phông\">Trình đơn ngữ cảnh K Ký tự > Vị trí phông</link>"
#: table_cellmerge.xhp
msgctxt ""
@@ -11749,553 +10948,1288 @@ msgctxt ""
msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>."
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
+"table_rotate.xhp\n"
"tit\n"
"help.text"
-msgid "Sorting Data"
-msgstr "Dữ liệu sắp thứ tự"
+msgid "Rotating Tables (Transposing)"
+msgstr "Xoay bảng (Chuyển vị)"
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"bm_id3150767\n"
+"table_rotate.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
-msgstr "<bookmark_value>vùng cơ sở dữ liệu; sắp xếp</bookmark_value><bookmark_value>sắp xếp; vùng cơ sở dữ liệu</bookmark_value><bookmark_value>dữ liệu;sắp xếp trong cơ sở dữ liệu</bookmark_value>"
+msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
+msgstr "<bookmark_value>bảng; hoán vị</bookmark_value><bookmark_value>hoán vị bảng</bookmark_value><bookmark_value>đảo bảng</bookmark_value><bookmark_value>hoán đổi bảng</bookmark_value><bookmark_value>cột; hoán đổi với các hàng</bookmark_value><bookmark_value>hàng; hoán đổi với cột</bookmark_value><bookmark_value>bảng; xoay</bookmark_value><bookmark_value>xoay; bảng</bookmark_value>"
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"hd_id3150767\n"
-"44\n"
+"table_rotate.xhp\n"
+"hd_id3154346\n"
+"1\n"
"help.text"
-msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
-msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sắp xếp vùng cơ sở dữ liệu\">Sắp xếp vùng cơ sở dữ liệu</link></variable>"
+msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
+msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Xoay bảng (Chuyển vị)\">Xoay bảng (Chuyển vị)</link></variable>"
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id3145751\n"
-"45\n"
+"table_rotate.xhp\n"
+"par_id3154013\n"
+"2\n"
"help.text"
-msgid "Click in a database range."
-msgstr "Bấm vào một vùng cơ sở dữ liệu."
+msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
+msgstr "Trong $[officename] Calc, có một cách để « xoay » một bảng tính để biến các hàng thành cột và cột thành hàng."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id121020081121549\n"
+"table_rotate.xhp\n"
+"par_id3153142\n"
+"3\n"
"help.text"
-msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
-msgstr "Nếu bạn chọn một vùng các ô, chỉ các ô này sẽ được sắp thứ tự. Nếu bạn nhắp vào một ô hiện không được chọn, thì toàn bộ vùng cơ sở dữ liệu sẽ được sắp thứ tự"
+msgid "Select the cell range that you want to transpose."
+msgstr "Chọn vùng ô mà bạn muốn chuyển vị."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN10635\n"
+"table_rotate.xhp\n"
+"par_id3153191\n"
+"4\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
-msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Sắp xếp</item>."
+msgid "Choose <emph>Edit - Cut</emph>."
+msgstr "Chọn lệnh <emph>Sửa > Cắt</emph>."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id121020081121547\n"
+"table_rotate.xhp\n"
+"par_id3148575\n"
+"6\n"
"help.text"
-msgid "The range of cells that will get sorted is shown in inverted colors."
-msgstr "Vùng các ô sẽ được sắp thứ tự được hiển thị đảo màu"
+msgid "Click the cell that is to be the top left cell in the result."
+msgstr "Nhấn vào ô sẽ là ô bên trái phía trên cùng của kết quả."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN10645\n"
+"table_rotate.xhp\n"
+"par_id3156286\n"
+"7\n"
"help.text"
-msgid "Select the sort options that you want."
-msgstr "Chọn tuỳ chọn sắp xếp mà bạn cần."
+msgid "Choose <emph>Edit - Paste Special</emph>."
+msgstr "Chọn lệnh <emph>Sửa > Dán đặc biệt</emph>."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN1063D\n"
+"table_rotate.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
+msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
+msgstr "Trong hộp thoại, đánh dấu <emph>Dán tất cả</emph> và <emph>Chuyển vị</emph>."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id1846980\n"
+"table_rotate.xhp\n"
+"par_id3155600\n"
+"9\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgid "If you now click OK the columns and rows are transposed."
+msgstr "Và bây giờ khi bạn nhấn <emph>OK</emph>, các hàng và cột sẽ được chuyển vị cho nhau."
-#: formula_value.xhp
+#: table_rotate.xhp
msgctxt ""
-"formula_value.xhp\n"
+"table_rotate.xhp\n"
+"par_id3146969\n"
+"10\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Dán đặc biệt\">Dán đặc biệt</link>"
+
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
"tit\n"
"help.text"
-msgid "Displaying Formulas or Values"
-msgstr "Hiển thị Công thức hay Giá trị"
+msgid "Changing Table Views"
+msgstr "Thay đổi ô Xem bảng"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"bm_id3153195\n"
+"table_view.xhp\n"
+"bm_id3147304\n"
"help.text"
-msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
-msgstr "<bookmark_value>công thức; hiển thị trong ô</bookmark_value><bookmark_value>giá trị; hiển thị trong bảng</bookmark_value><bookmark_value>bảng; hiển thị công thức/giá trị</bookmark_value><bookmark_value> hiển thị kết quả hay hiển thị công thức</bookmark_value><bookmark_value>hiển thị; công thức thay cho kết quả</bookmark_value>"
+msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
+msgstr "<bookmark_value>đầu hàng; ẩn</bookmark_value><bookmark_value>đầu cột; ẩn</bookmark_value><bookmark_value>bảng; ô xem</bookmark_value><bookmark_value>ô xem; bảng</bookmark_value><bookmark_value>lưới; ẩn đường trong trang</bookmark_value><bookmark_value>ẩn; đầu trang/đường lưới</bookmark_value><bookmark_value>thay đổi; ô xem bảng</bookmark_value>"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"hd_id3153195\n"
+"table_view.xhp\n"
+"hd_id3147304\n"
"1\n"
"help.text"
-msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
-msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Hiển thị Công thức hay Giá trị\">Hiển thị Công thức hay Giá trị</link></variable>"
+msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
+msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Thay đổi ô Xem bảng\">Thay đổi ô Xem bảng</link></variable>"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3150010\n"
+"table_view.xhp\n"
+"par_id3153192\n"
"2\n"
"help.text"
-msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
-msgstr "Nếu bạn muốn hiển thị các công thức trong ô, ví dụ như trong dạng « =SUM(A1:B5) », theo các quá trình sau:"
+msgid "To hide column and line headers in a table:"
+msgstr "Để ẩn một cách cố định cột và đầu dòng trong một bảng:"
-#: formula_value.xhp
-#, fuzzy
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3151116\n"
+"table_view.xhp\n"
+"par_id3153768\n"
"3\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
-msgstr "Chọn tài liệu bằng phím tổ hợp <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 rồi bấm phím Tab"
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
+msgstr ""
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3146120\n"
+"table_view.xhp\n"
+"par_id3147436\n"
"4\n"
"help.text"
-msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
-msgstr "Trong vùng <emph>Hiển thị</emph>, đánh dấu hộp <emph>Công thức</emph>. Nhấn <emph>OK</emph>."
+msgid "To hide grid lines:"
+msgstr "Để ẩn đường lưới:"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3147396\n"
+"table_view.xhp\n"
+"par_id3153726\n"
"5\n"
"help.text"
-msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
-msgstr "Nếu bạn muốn xem kết quả phép tính thay vì xem công thức, bạn không được đánh dấu vào hộp <emph>Công thức</emph>."
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
+msgstr ""
-#: formula_value.xhp
+#: text_numbers.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3153157\n"
-"6\n"
+"text_numbers.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
-msgstr ""
+msgid "Formatting Numbers as Text"
+msgstr "Định dạng Số dưới dạng Văn bản"
-#: format_value.xhp
+#: text_numbers.xhp
msgctxt ""
-"format_value.xhp\n"
+"text_numbers.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
+msgstr "<bookmark_value>số; dạng văn bản</bookmark_value><bookmark_value>định dạng văn bản; dùng cho số</bookmark_value><bookmark_value>số; nhập vào không có định dạng số</bookmark_value><bookmark_value>định dạng; số dạng văn bản</bookmark_value><bookmark_value>định dạng ô; văn bản/số</bookmark_value><bookmark_value>định dạng; số dạng văn bản</bookmark_value>"
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"hd_id3145068\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
+msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Định dạng Số dưới dạng Văn bản\">Định dạng Số dưới dạng Văn bản</link></variable>"
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156280\n"
+"43\n"
+"help.text"
+msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
+msgstr "Bạn có thể định dạng các số dưới dạng văn bản trong $[officename] Calc. Mở trình đơn ngữ cảnh của một ô hoặc một vùng các ô và chọn <emph>Định dạng ô > Số</emph>, sau đó chọn mục « Văn bản » từ danh sách <emph>Loại</emph>. Bất kì số nào được nhập sau vào vùng được định dạng đều được chuyển sang dạng văn bản. Hiển thị các « số » này được canh đều phía bên trái, như với văn bản khác."
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3149377\n"
+"44\n"
+"help.text"
+msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
+msgstr "Nếu bạn đã nhập các số thông thường vào các ô và sau đó thay đổi định dạng của các ô này thành dạng « văn bản », những số này sẽ vẫn là những số thông thường. Chúng sẽ không bị chuyển đổi. Chỉ có những số được nhập vào sau đó, hoặc các số sau đó được sửa thì mới trở thành các số dạng văn bản."
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3144765\n"
+"45\n"
+"help.text"
+msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
+msgstr "Nếu bạn quyết định nhập trực tiếp một số dạng văn bản, trước tiên hãy nhập dấu nháy ('). Ví dụ, với các năm trong tiêu đề cột, bạn có thể nhập « '1999 », « 2000 » và « '2001 ». Dấu nháy này không hiển thị trong ô, nó chỉ cho biết là mục này đã được nhận dạng như một văn bản. Dấu này rất hữu ích nếu như, giả dụ, bạn nhập một số điện thoại hay một mã bưu điện bắt đầu với số 0, vì một số 0 đứng đầu một dãy các ký số sẽ bị bỏ đi trong định dạng số."
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156284\n"
+"47\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng > Ô > Số\">Định dạng > Ô > Số</link>"
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
"tit\n"
"help.text"
-msgid "Formatting Numbers With Decimals"
-msgstr "Định dạng Số thập phân"
+msgid "Rotating Text"
+msgstr "Xoay văn bản"
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"bm_id3145367\n"
+"text_rotate.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
-msgstr "<bookmark_value>số; định dạng trong bảng</bookmark_value><bookmark_value>định dạng; số trong bảng</bookmark_value><bookmark_value>bảng; định dạng số</bookmark_value><bookmark_value>mặc định; định dạng số trong bảng tính</bookmark_value><bookmark_value>lần số;định dạng số</bookmark_value><bookmark_value>định dạng;số thập phân</bookmark_value><bookmark_value>định dạng;thêm/bớt chữ số thập phân</bookmark_value><bookmark_value>định dạng số; thêm/bớt chữ số thập phân trong ô</bookmark_value><bookmark_value>xóa; lần số</bookmark_value><bookmark_value>lần số; thêm/xóa</bookmark_value>"
+msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
+msgstr "<bookmark_value>ô; xoay văn bản</bookmark_value><bookmark_value>xoay; văn bản trong ô</bookmark_value><bookmark_value>văn bản trong ô; viết theo chiều dọc</bookmark_value>"
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"hd_id3145367\n"
+"text_rotate.xhp\n"
+"hd_id3151112\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
+msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Xoay văn bản\">Xoay văn bản</link></variable>"
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3145171\n"
+"2\n"
+"help.text"
+msgid "Select the cells whose text you want to rotate."
+msgstr "Chọn các ô chứa văn bản mà bạn muốn xoay."
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155133\n"
+"3\n"
+"help.text"
+msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
+msgstr "Chọn lệnh <emph>Định dạng > Ô</emph>. Bạn sẽ thấy hộp thoại <emph>Định dạng ô</emph>."
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155854\n"
"4\n"
"help.text"
-msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
-msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Định dạng số thập phân\">Định dạng số thập phân</link></variable>"
+msgid "Click the <emph>Alignment</emph> tab."
+msgstr "Nhấn vào thẻ <emph>Sắp hàng</emph>."
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3148576\n"
+"text_rotate.xhp\n"
+"par_id3147426\n"
"5\n"
"help.text"
-msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
-msgstr "Nhập một số vào trong bảng, ví dụ số « 1234,5678 ». Số này sẽ được mở ra trong định dạng số mặc định, với 2 lần số. Bạn sẽ thấy số « 1234,56 » khi xác nhận mục này. Chỉ có số hiển thị trong tài liệu mới được làm tròn; bên trong, số này giữ lại tất cả 4 kí tự thập phân đằng sau dấu thập phân."
+msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
+msgstr "Trong vùng <emph>Hướng văn bản</emph>, dùng chuột để chọn hướng xoay của văn bản trên bánh xe xem thử. Nhấn <emph>OK</emph>."
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3154012\n"
-"12\n"
+"text_rotate.xhp\n"
+"par_id3148456\n"
+"7\n"
"help.text"
-msgid "To format numbers with decimals:"
-msgstr "Định dạng số thập phân:"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Định dạng > Ô\">Định dạng > Ô</link>"
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3147394\n"
-"6\n"
+"text_rotate.xhp\n"
+"par_id3154944\n"
+"8\n"
"help.text"
-msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
-msgstr "Đặt con trỏ vào số đó và chọn <emph>Định dạng > Ô</emph> để mở hộp thoại <emph>Định dạng ô</emph>."
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Định dạng > Ô > Sắp hàng\">Định dạng > Ô > Sắp hàng</link>"
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3153157\n"
-"9\n"
+"text_wrap.xhp\n"
+"tit\n"
"help.text"
-msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
-msgstr "Trên thẻ <emph>Số</emph> bạn sẽ thấy một vùng chọn các định dạng số ban đầu. Ở cuối trang bên phải trong hộp thoại bạn sẽ thấy một ô xem thử của số mà bạn đang chọn sẽ trông thế nào sau khi bạn đã định dạng nó cụ thể."
+msgid "Writing Multi-line Text"
+msgstr "Viết văn bản nhiều dòng"
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3155766\n"
+"text_wrap.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149021\">Biểu tượng</alt></image>"
+msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
+msgstr "<bookmark_value>văn bản trong ô; nhiều dòng</bookmark_value><bookmark_value>ô; ngắt văn bản</bookmark_value><bookmark_value>ngắt trong ô</bookmark_value><bookmark_value>văn bản đa dòng trong ô</bookmark_value>"
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3149256\n"
-"10\n"
+"text_wrap.xhp\n"
+"hd_id3154346\n"
+"42\n"
"help.text"
-msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
-msgstr "Nếu bạn chỉ muốn sửa đổi số chữ số thập phân, cách dễ nhất là sử dụng các biểu tượng <emph>Định dạng số: Thêm chữ số thập phân</emph> hoặc <emph>Định dạng số: Xóa bớt chữ số thập phân</emph> trên thanh <emph>Định dạng</emph>."
+msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
+msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Viết văn bản nhiều dòng\">Viết văn bản nhiều dòng</link></variable>"
-#: print_title_row.xhp
+#: text_wrap.xhp
msgctxt ""
-"print_title_row.xhp\n"
+"text_wrap.xhp\n"
+"par_id3156280\n"
+"41\n"
+"help.text"
+msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expaneded to the multi-line by the Down arrow button on the right."
+msgstr ""
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3153142\n"
+"43\n"
+"help.text"
+msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
+msgstr "Nếu bạn muốn văn bản tự động ngắt tại viền bên phải của ô, hãy thực hiện như sau:"
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3153951\n"
+"44\n"
+"help.text"
+msgid "Select all the cells where you want the text to break at the right border."
+msgstr "Chọn tất cả các ô mà bạn muốn văn bản được ngắt ở viền bên phải."
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3148575\n"
+"45\n"
+"help.text"
+msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
+msgstr "Trong hộp thoại <emph>Định dạng > Ô > Chỉnh canh</emph>, hãy đánh dấu tùy chọn <emph>Tự động ngắt dòng</emph> và nhấn <emph>OK</emph>."
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3145799\n"
+"46\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Định dạng > Ô\">Định dạng > Ô</link>"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
"tit\n"
"help.text"
-msgid "Printing Rows or Columns on Every Page"
-msgstr "In hàng hoặc cột trên mọi trang"
+msgid "User-Defined Functions"
+msgstr "Các hàm do người sử dụng quy định"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"bm_id3151112\n"
+"userdefined_function.xhp\n"
+"bm_id3155411\n"
"help.text"
-msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
-msgstr "<bookmark_value>in; các trang tính trên nhiều tờ giấy</bookmark_value><bookmark_value>trang tính; in trên nhiều tờ giấy</bookmark_value><bookmark_value>hàng; lặp lại khi in</bookmark_value><bookmark_value>cột; lặp lại khi in</bookmark_value><bookmark_value>lặp lại; cột/hàng trên trang in</bookmark_value><bookmark_value>hàng tiêu đề; in trên tất cả các tờ giấy</bookmark_value><bookmark_value>đầu trang; in trên tờ giấy</bookmark_value><bookmark_value>chân trang; in trên tờ giấy</bookmark_value><bookmark_value>in; hàng/cột dạng tiêu đề bảng</bookmark_value><bookmark_value>tiêu đề;lặp lại hàng/cột dạng</bookmark_value>"
+msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
+msgstr "<bookmark_value>hàm; do người sử dụng quy định</bookmark_value><bookmark_value>hàm do người sử dụng quy định</bookmark_value><bookmark_value> IDE Basic dùng cho các hàm do người sử dụng quy định</bookmark_value><bookmark_value>IDE; IDE Basic</bookmark_value><bookmark_value>lập trình;hàm</bookmark_value>"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"hd_id3153727\n"
-"21\n"
+"userdefined_function.xhp\n"
+"hd_id3155411\n"
+"1\n"
"help.text"
-msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
-msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"In hàng hoặc cột trên mọi trang\">In hàng hoặc cột trên mọi trang</link></variable>"
+msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
+msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Tự xác định hàm\">Hàm do người sử dụng quy định</link></variable>"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154014\n"
+"userdefined_function.xhp\n"
+"par_id3153969\n"
"2\n"
"help.text"
-msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
-msgstr "Nếu trang tính của bạn quá lớn và phải in thành nhiều tờ giấy, bạn có thể thiết lập các hàng hay cột để lặp lại trên mỗi trang được in."
+msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
+msgstr "Bạn có thể ứng dụng các hàm do người sử dụng quy định trong $[officename] Calc theo các cách sau:"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3146975\n"
+"userdefined_function.xhp\n"
+"par_id3145366\n"
+"4\n"
+"help.text"
+msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
+msgstr "Bạn có thể tự xác định các hàm cho mình bằng cách sử dụng IDE Basic. Phương pháp này yêu cầu một số kiến thức cơ bản về lập trình."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3153768\n"
+"3\n"
+"help.text"
+msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
+msgstr "Bạn có thể lập trình các hàm dạng <link href=\"text/scalc/01/04060111.xhp\" name=\"phần bổ trợ\">phần bổ trợ</link>. Phương pháp này yêu cầu kiến thức nâng cao về lập trình."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3149260\n"
+"6\n"
+"help.text"
+msgid "Defining A Function Using %PRODUCTNAME Basic"
+msgstr "Xác định một hàm bằng cách sử dụng %PRODUCTNAME Basic"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148456\n"
"7\n"
"help.text"
-msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
-msgstr "Ví dụ như, nếu bạn muốn in hai hàng trên của trang tính và cột đầu tiên (A) trên tất cả các trang, hãy thực hiện như sau:"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
+msgstr "Chọn <item type=\"menuitem\">Công cụ > Vĩ lệnh > Tổ chức vĩ lệnh > %PRODUCTNAME Basic</item>."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3163710\n"
+"userdefined_function.xhp\n"
+"par_id3154510\n"
"8\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
-msgstr "Chọn <emph>Định dạng > Phạm vi in > Sửa</emph>. Hộp thoại <emph>Sửa > Phạm vi in</emph> sẽ mở ra."
+msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
+msgstr "Nhấn nút <emph>Sửa</emph>. Bạn sẽ thấy môi trường phát triển hợp nhất (IDE) Basic."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3149958\n"
+"userdefined_function.xhp\n"
+"par_id3150327\n"
"9\n"
"help.text"
-msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
-msgstr "Nhắp chuột vào biểu tượng ở xa bên phải của vùng <emph>Hàng cần lặp lại</emph>."
+msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
+msgstr "Nhập mã hàm. Trong ví dụ này, ta xác định một hàm <item type=\"literal\">VOL(a; b; c)</item> để tính thể tích của một vật rắn hình chữ nhật với mặt có chiều dài <item type=\"literal\">a</item>, <item type=\"literal\">b</item> và <item type=\"literal\">c</item>:"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3145800\n"
+"userdefined_function.xhp\n"
+"par_id3155443\n"
"10\n"
"help.text"
-msgid "The dialog shrinks so that you can see more of the sheet."
-msgstr "Hộp thoại sẽ thu nhỏ do đó bạn có thể thấy được nhiều phần hơn trong trang tính."
+msgid "Close the Basic-IDE window."
+msgstr "Đóng cửa sổ IDE Basic."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155602\n"
+"userdefined_function.xhp\n"
+"par_id3150043\n"
"11\n"
"help.text"
-msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
-msgstr "Chọn hai hàng đầu tiên và, ví dụ, nhắp chuột vào ô A1 và kéo tới A2."
+msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
+msgstr "Hàm của bạn sẽ tự động được lưu trong mô-đun mặc định và sẵn sàng để dùng. Nếu bạn ứng dụng hàm này trong một tài liệu Calc để sử dụng trên một máy tính khác, bạn có thể chép hàm đó sang tài liệu Calc như được miêu tả trong phần tiếp theo."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154018\n"
+"userdefined_function.xhp\n"
+"hd_id3147340\n"
+"18\n"
+"help.text"
+msgid "Copying a Function To a Document"
+msgstr "Chép một hàm sang một tài liệu"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145232\n"
+"19\n"
+"help.text"
+msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
+msgstr "Trong giai đoạn 2 của « Xác định một hàm bằng cách sử dụng %PRODUCTNAME Basic », trong hộp thoại <emph>Vĩ lệnh</emph>, bạn đã nhắp chuột lên <emph>Sửa</emph>. Theo chế độ mặc định, trong trường <emph>Vĩ lệnh từ</emph>, mô-đun <emph>Vĩ lệnh của tôi > Chuẩn > Mô-đun1</emph> được chọn. Thư viện <emph>Chuẩn</emph> nằm cục bộ trong thư mục người dùng của bạn."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3154022\n"
+"20\n"
+"help.text"
+msgid "If you want to copy the user-defined function to a Calc document:"
+msgstr "Nếu bạn muốn chép hàm do người sử dụng quy định sang một tài liệu Calc:"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150304\n"
+"21\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr "Chọn <item type=\"menuitem\">Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</item> ."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150086\n"
+"22\n"
+"help.text"
+msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
+msgstr "Trong trường <emph>Vĩ lệnh từ</emph>, hãy chọn <emph>Vĩ lệnh của tôi > Chuẩn > Mô-đun1</emph> và nhấn nút <emph>Sửa</emph>."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3166430\n"
+"23\n"
+"help.text"
+msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
+msgstr "Trong IDE Basic, chọn nguồn của hàm do người sử dụng quy định của bạn và chép nó tới bảng nháp."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_idN1081D\n"
+"help.text"
+msgid "Close the Basic-IDE."
+msgstr "Đóng IDE Basic."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150517\n"
+"24\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr "Chọn <item type=\"menuitem\">Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > %PRODUCTNAME Basic</item> ."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145384\n"
+"25\n"
+"help.text"
+msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
+msgstr "Trong trường <emph>Vĩ lệnh từ</emph>, chọn <emph>(Tên của tài liệu Calc) > Chuẩn > Mô-đun1</emph>. Nhấn nút <emph>Sửa</emph>."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148699\n"
+"26\n"
+"help.text"
+msgid "Paste the clipboard contents in the Basic-IDE of the document."
+msgstr "Dán nội dung trên bảng nháp vào IDE Basic của tài liệu."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3153305\n"
"12\n"
"help.text"
-msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
-msgstr "Trong hộp thoại đã thu nhỏ, bạn sẽ thấy « $1:$2 ». Các hàng 1 và 2 chính là các hàng sẽ được lặp lại."
+msgid "Applying a User-defined Function in $[officename] Calc"
+msgstr "Ứng dụng hàm do người sử dụng quy định trong $[officename] Calc"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3153707\n"
+"userdefined_function.xhp\n"
+"par_id3148869\n"
"13\n"
"help.text"
-msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
-msgstr "Nhấn vào biểu tượng phía ngoài bên phải của vùng <emph>Hàng cần lặp lại</emph>. Hộp thoại sẽ được phục hồi lại."
+msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
+msgstr "Khi đã xác đinh hàm <item type=\"literal\">VOL(a; b; c)</item> trong IDE Basic, bạn có thể ứng dụng nó giống như các hàm có sẵn của chương trình $[officename] Calc."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155443\n"
+"userdefined_function.xhp\n"
+"par_id3148606\n"
"14\n"
"help.text"
-msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
-msgstr "Nếu bạn cũng muốn cột A được lặp lại, nhấn vào biểu tượng ở phía ngoài bên phải của vùng <emph>Cột cần lặp lại</emph>."
+msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
+msgstr "Mở tài liệu Calc và nhập các số cho các tham số hàm <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, và <item type=\"literal\">c</item> trong các ô A1, B1, và C1."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154256\n"
+"userdefined_function.xhp\n"
+"par_id3156019\n"
"15\n"
"help.text"
-msgid "Click column A (not in the column header)."
-msgstr "Nhắp chuột vào cột A (không phải vào phần đầu cột)."
+msgid "Set the cursor in another cell and enter the following:"
+msgstr "Đặt con trỏ vào một ô khác và nhập:"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154704\n"
+"userdefined_function.xhp\n"
+"par_id3155264\n"
"16\n"
"help.text"
-msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
-msgstr "Nhắp chuột vào biểu tượng một lần nữa ở phía ngoài bên phải của vùng <emph>Cột cần lặp lại</emph>."
+msgid "=VOL(A1;B1;C1)"
+msgstr "=VOL(A1;B1;C1)"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3150088\n"
+"userdefined_function.xhp\n"
+"par_id3146776\n"
"17\n"
"help.text"
-msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
-msgstr "Các hàng cần lặp lại là các hàng trong trang tính. Bạn có thể xác định đầu trang và chân trang để in trên mỗi trang in độc lập với trang này dưới mục trình đơn <emph>Định dạng > Trang</emph>."
+msgid "The function is evaluated and you will see the result in the selected cell."
+msgstr "Hàm này sẽ được đánh giá và bạn sẽ thấy kết quả hiển thị trong ô đã chọn."
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155380\n"
+"validity.xhp\n"
+"tit\n"
+"help.text"
+msgid "Validity of Cell Contents"
+msgstr "Tính hợp lệ của nội dung ô"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"bm_id3156442\n"
+"help.text"
+msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
+msgstr "<bookmark_value>giá trị; giới hạn khi nhập vào</bookmark_value><bookmark_value>giới hạn; xác định giới hạn giá trị khi nhập vào</bookmark_value><bookmark_value>nội dung ô được phép</bookmark_value><bookmark_value>tính hợp lệ dữ liệu</bookmark_value><bookmark_value>tính hợp lệ</bookmark_value><bookmark_value>ô; tính hợp lệ</bookmark_value><bookmark_value>thông điệp báo lỗi; xác định dữ liệu sai nhập vào</bookmark_value><bookmark_value>các thao tác trong trường hợp sai nhập vào</bookmark_value><bookmark_value>lời gợi ý trợ giúp; xác định văn bản để nhập vào ô</bookmark_value><bookmark_value>ghi chú;văn bản trợ giúp dành cho ô</bookmark_value><bookmark_value>ô; xác định trợ giúp về cách nhập vào</bookmark_value><bookmark_value>vĩ lệnh; chạy khi sai nhập vào</bookmark_value><bookmark_value>dữ liệu; kiểm tra tính hợp lệ</bookmark_value>"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3156442\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
+msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Tính hợp lệ của nội dung ô\">Tính hợp lệ của nội dung ô</link></variable>"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156283\n"
+"2\n"
+"help.text"
+msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
+msgstr "Với mỗi ô, bạn có thể xác định mục là hợp lệ không. Những mục không hợp lệ trong ô thì sẽ được loại ra."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3145252\n"
+"3\n"
+"help.text"
+msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
+msgstr "Quy tắc tính hợp lệ được kích hoạt khi một giá trị mới được nhập vào. Nếu một giá trị không hợp lệ đã được chèn vào ô, hoặc nếu bạn chèn một giá trị vào ô bằng một trong hai cách kéo và thả chuột hoặc chép và dán, thì quy tắc tính hợp lệ này không có hiệu lực."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id5174718\n"
+"help.text"
+msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
+msgstr "Bạn có thể chọn <emph>Công cụ > Dò tìm</emph> bất cứ khi nào và chọn lệnh <link href=\"text/scalc/01/06030800.xhp\" name=\"Nhãn dữ liệu sai\"><emph>Nhãn dữ liệu sai</emph></link> để hiển thị các ô chứa các giá trị không hợp lệ."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3155603\n"
+"5\n"
+"help.text"
+msgid "Using Cell Contents Validity"
+msgstr "Dùng tính hợp lệ của nội dung ô"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3155959\n"
+"6\n"
+"help.text"
+msgid "Select the cells for which you want to define a new validity rule."
+msgstr "Chọn các ô mà bạn muốn xác định một quy tắc tính hợp lệ mới."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148837\n"
+"8\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
+msgstr "Chọn <item type=\"menuitem\">Dữ liệu > Tính hợp lệ</item>."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156020\n"
+"9\n"
+"help.text"
+msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
+msgstr "Trên trang tthẻab <emph>Tiêu chuẩn</emph>, nhập các điều kiện cho giá trị mới nhập vào trong các ô."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159208\n"
+"10\n"
+"help.text"
+msgid "In the <emph>Allow</emph> field, select an option."
+msgstr "Trong trường <emph>Cho phép</emph>, nhấn vào một tùy chọn."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3153011\n"
+"11\n"
+"help.text"
+msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
+msgstr "Nếu bạn chọn « Số nguyên » thì các giá trị như « 12.5 » sẽ không được phép. Chọn « Ngày » sẽ cho phép thông tin cả trong định dạng ngày tháng địa phương và định dạng của một <link href=\"text/sbasic/shared/03030101.xhp\" name=\"ngày chuỗi\">ngày chuỗi</link>. Tương tự, điều kiện « Giờ » cho phép cá giá trị thời gian chẳng hạn « 12:00 » hoặc các số biểu thị chuỗi thời gian. « Độ dài văn bản » quy định các ô chỉ được chứa văn bản."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id9224829\n"
+"help.text"
+msgid "Select \"List\" to enter a list of valid entries."
+msgstr "Chọn « Danh sách » để nhập một danh sách các mục hợp lệ."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3149317\n"
+"13\n"
+"help.text"
+msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
+msgstr "Chọn điều kiện tiếp theo dưới <emph>Dữ liệu</emph>. Với những gì bạn chọn, các tùy chọn bổ sung sẽ có thể được chọn."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3151389\n"
+"15\n"
+"help.text"
+msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
+msgstr "Sau khi đã quyết định các điều kiện cho tính hợp lệ của ô, bạn có thể sử dụng hai trang thẻ khác để tạo hộp thông điệp:"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159261\n"
+"16\n"
+"help.text"
+msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
+msgstr "Trên trang thẻ <emph>Trợ giúp Nhập liệu</emph>, nhập tiêu đề và văn bản của lời khuyên, lời khuyên này sau đó sẽ được hiển thị nếu bạn chọn ô đó."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156396\n"
+"17\n"
+"help.text"
+msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
+msgstr "Trên trang thẻ <emph>Báo lỗi</emph>, chọn các thao tác để tiến hành khi gặp một lỗi."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3147416\n"
"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem > Xem thử chỗ ngắt trang\">Xem > Xem thử chỗ ngắt trang</link>"
+msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
+msgstr "Nếu bạn chọn thao tác « Dừng », các mục không hợp lệ sẽ không được chấp nhận, và giữ nguyên nội dung của ô trước đó."
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154371\n"
+"validity.xhp\n"
+"par_id3150033\n"
"19\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Định dạng > Vùng in > Sửa\">Định dạng > Vùng in > Sửa</link>"
+msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
+msgstr "Chọn mục « Cảnh báo » hoặc « thông tin » để hiển thị một hộp thoại trong đó mục này có thể bị hủy bỏ hoặc được chấp nhận."
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3146113\n"
+"validity.xhp\n"
+"par_id3149947\n"
"20\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
-msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Định dạng > Trang > (Đầu/Chân trang)\">Định dạng > Trang > (Đầu/Chân trang)</link>"
+msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
+msgstr "Nếu bạn chọn mục « Vĩ lệnh », sau đó dùng nút <emph>Duyệt</emph>, bạn có thể chỉ định một vĩ lệnh hoạt động khi có một lỗi xảy ra."
-#: print_details.xhp
+#: validity.xhp
msgctxt ""
-"print_details.xhp\n"
+"validity.xhp\n"
+"par_id3149011\n"
+"35\n"
+"help.text"
+msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
+msgstr "Để hiển thị một thông điệp báo lỗi, chọn <emph>Hiển thị thông điệp báo lỗi khi giá trị không hợp lệ được nhập vào</emph>."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148586\n"
+"21\n"
+"help.text"
+msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
+msgstr "Sau khi thay đổi thao tác cho một ô trên trang thẻ <emph>Báo lỗi</emph> và nhấn <emph>OK</emph> để đóng hộp thoại, trước hết bạn phải chọn một ô khác trước khsự thay đổi này xảy ra."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3154805\n"
+"30\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Dữ liệu > Tính hợp lệ\">Dữ liệu > Tính hợp lệ</link>"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
"tit\n"
"help.text"
-msgid "Printing Sheet Details"
-msgstr "In chi tiết trang tính"
+msgid "Naming Cells"
+msgstr "Đặt tên ô"
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"bm_id3154346\n"
+"value_with_name.xhp\n"
+"bm_id3147434\n"
"help.text"
-msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
-msgstr "<bookmark_value>in; chi tiết trang tính</bookmark_value><bookmark_value>trang tính; in các chi tiết</bookmark_value><bookmark_value>lưới; in lưới trang</bookmark_value><bookmark_value>công thức; in, thay cho kết quả</bookmark_value><bookmark_value>ghi chú; in</bookmark_value><bookmark_value>đồ thị; in</bookmark_value><bookmark_value>lưới trang; in</bookmark_value><bookmark_value>ô; in lưới</bookmark_value><bookmark_value>viền; in ô</bookmark_value><bookmark_value>giá trị 0; in</bookmark_value><bookmark_value>giá trị vô giá trị; in</bookmark_value><bookmark_value>đối tượng vẽ ;in</bookmark_value>"
+msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
+msgstr "<bookmark_value>ô; xác định tên</bookmark_value><bookmark_value>tên; xác định cho các ô</bookmark_value><bookmark_value>giá trị; xác định tên</bookmark_value><bookmark_value>xác định hằng số</bookmark_value><bookmark_value>biến; xác định tên</bookmark_value><bookmark_value>phạm vi ô; xác định tên</bookmark_value><bookmark_value>xác định; tên cho vùng ô</bookmark_value><bookmark_value>công thức; xác định tên</bookmark_value><bookmark_value>định địa chỉ; bằng các tên đã xác định</bookmark_value><bookmark_value>tên ô; xác định/định địa chỉ</bookmark_value><bookmark_value>tham chiếu; bằng tên đã xác định</bookmark_value><bookmark_value>tên ô được phép</bookmark_value>"
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"hd_id3154346\n"
+"value_with_name.xhp\n"
+"hd_id3147434\n"
"1\n"
"help.text"
-msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
-msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"In chi tiết trang\">In chi tiết trang</link></variable>"
+msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
+msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Đặt tên ô\">Đặt tên ô</link></variable>"
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3153728\n"
+"value_with_name.xhp\n"
+"hd_id4391918\n"
+"help.text"
+msgid "Allowed names"
+msgstr "Tên hợp lệ"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id2129581\n"
+"help.text"
+msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
+msgstr "Các tên trong Calc có thể chứa các chữ cái, chữ số, và một số kí tự đặc biệt. Các tên phải bắt đầu với một chữ cái hoặc một kí tự gạch dưới."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id1120029\n"
+"help.text"
+msgid "Allowed special characters:"
+msgstr "Ký tự đặc biệt được phép:"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3362224\n"
+"help.text"
+msgid "underline (_)"
+msgstr "gạch chân (_)"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4891506\n"
+"help.text"
+msgid "period (.) - allowed within a name, but not as first or last character"
+msgstr "dấu chấm (.) được dùng trong một tên, nhưng không được là kí tự đầu hoặc cuối"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id2816553\n"
+"help.text"
+msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
+msgstr "trống ( ) được dùng trong một tên nhưng không được là kí tự đầu hoặc cuối, và cũng không được dùng cho vùng ô"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id328989\n"
+"help.text"
+msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
+msgstr "Các tên phải không được trùng với tham chiếu ô. Ví dụ, tên A1 là không hợp lệ vì A1 đã là tham chiếu ô cho ô bên trái phía trên cùng."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id32898987\n"
+"help.text"
+msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4769737\n"
+"help.text"
+msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
+msgstr "Tên cho vùng ô không được phép có kí tự trống. Kí tự trống chỉ được dùng để đặt tên cho những ô, trang và tài liệu đơn lẻ."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"hd_id1226233\n"
+"help.text"
+msgid "Naming cells and formulas"
+msgstr "Đặt tên ô và công thức"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5489364\n"
+"help.text"
+msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
+msgstr "Cách thuận tiện để tạo tham chiếu dễ đọc cho ô và vùng ô trong công thức là đặt tên cho vùng đó. Ví dụ, bạn có thể đặt tên cho vùng « A1:B2 » <emph>Bắt đầu</emph>. Sau đó bạn có thể viết một công thức chẩng hạn như « =SUM(Start) ». Thậm chí sau khi đã chèn hoặc xóa các hàng hay cột, $[officename] vẫn gán cho các vùng này một tên xác định. Tên của vùng không được chứa bất kì một dấu cách nào."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id953398\n"
+"help.text"
+msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
+msgstr "Ví dụ, đọc một công thức về thuế hàng hóa sẽ dễ hơn nhiều nếu bạn viết nó dạng « = Số lượng * Thuế_tỉ lệ » thay vì viết « = A5 * B12 ». Trong trường hợp này, bạn sẽ đặt tên ô A5 là « Số lượng », và ô B12 là « Thuế_tỉ lệ »."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4889675\n"
+"help.text"
+msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
+msgstr "Dùng hộp thoại <emph>Xác định tên</emph> để xác định tên cho công thức hay các phần của công thức mà bạn thường dùng. Để chỉ định các tên cho vùng, hãy"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153954\n"
+"3\n"
+"help.text"
+msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr "Chọn một ô hay vùng ô, sau đó chọn <emph>Chèn > Tên > Xác định</emph>. Hộp thoại <emph>Xác định tên</emph> sẽ mở ra."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3156283\n"
+"4\n"
+"help.text"
+msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
+msgstr "Đánh tên của vùng được chọn trong trường <emph>Tên</emph>. Nhấn nút <emph>Thêm</emph>. Tên mới đã xác định sẽ hiển thị trong danh sách bên dưới. Nhấn nút <emph>OK</emph> để đóng hộp thoại."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5774101\n"
+"help.text"
+msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
+msgstr "Bạn cũng có thể đặt tên cho các vùng ô khác trong hộp thoại này bằng cách nhập tên trong trường và sau đó chọn các ô tương ứng."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154942\n"
+"5\n"
+"help.text"
+msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
+msgstr "Nếu bạn nhập tên trong một công thức, sau khi một số kí tự đầu tiên được nhập vào, bạn sẽ thấy tên đầy đủ dưới dạng gợi ý."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154510\n"
+"6\n"
+"help.text"
+msgid "Press the Enter key in order to accept the name from the tip."
+msgstr "Nhấn <item type=\"keycode\">Enter</item> để dùng tên đã gợi ý."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3150749\n"
+"7\n"
+"help.text"
+msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
+msgstr "Nếu một số tên bắt đầu với các ký tự giống nhau, bạn có thể dùng phím <item type=\"keycode\">Tab</item> để cuộn qua tất cả các tên."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153711\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Chèn > Tên > Xác định\">Chèn > Tên > Xác định</link>"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"tit\n"
+"help.text"
+msgid "Inserting External Data in Table (WebQuery)"
+msgstr "Chèn Dữ liệu bên Ngoài vào Bảng (WebQuery)"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
+msgstr "<bookmark_value>truy vấn HTML WebQuery</bookmark_value><bookmark_value>dãy; chèn vào bảng</bookmark_value><bookmark_value>dữ liệu ngoài; chèn</bookmark_value><bookmark_value>bảng; chèn thông tin ngoài</bookmark_value><bookmark_value>trang Web; nhập dữ liệu</bookmark_value><bookmark_value>lọc truy vấn WebQuery</bookmark_value><bookmark_value>chèn; dữ liệu ngoài</bookmark_value><bookmark_value>nguồn dữ liệu; dữ liệu ngoài</bookmark_value>"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3125863\n"
"2\n"
"help.text"
-msgid "When printing a sheet you can select which details are to be printed:"
-msgstr "khi in môt trang tính, bạn có thể chọn các chi tiết để in:"
+msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
+msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Chèn Dữ liệu bên Ngoài vào Bảng (WebQuery)\">Chèn Dữ liệu bên Ngoài vào Bảng (WebQuery)</link></variable>"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150010\n"
+"webquery.xhp\n"
+"par_id3155131\n"
"3\n"
"help.text"
-msgid "Row and column headers"
-msgstr "Đầu Hàng và Cột"
+msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
+msgstr "Với sự trợ giúp của bộ lọc nhập <emph>Truy vấn Trang Web ($[officename] Calc)</emph>, bạn có thể chèn các bảng từ tài liệu HTML vào trong một bảng tính Calc."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154013\n"
+"webquery.xhp\n"
+"par_id3148575\n"
"4\n"
"help.text"
-msgid "Sheet grid"
-msgstr "Lưới trang"
+msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
+msgstr "Bạn có thể dùng phương pháp tương tự để chèn các dãy được xác định bằng tên từ Calc hoặc một bảng tính MS Excel."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145273\n"
+"webquery.xhp\n"
+"par_id3149664\n"
"5\n"
"help.text"
-msgid "Comments"
-msgstr "Chú thích"
+msgid "The following insert methods are available:"
+msgstr "Phương pháp chèn sau đây có thể được áp dụng:"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145801\n"
+"webquery.xhp\n"
+"hd_id3146976\n"
"6\n"
"help.text"
-msgid "Objects and graphics"
-msgstr "Đối tượng và đồ họa"
+msgid "Inserting by Dialog"
+msgstr "Chèn bằng Hộp thoại"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154491\n"
+"webquery.xhp\n"
+"par_id3154319\n"
"7\n"
"help.text"
-msgid "Charts"
-msgstr "Đồ thị"
+msgid "Set the cell cursor at the cell where the new content will be inserted."
+msgstr "Đặt con trỏ vào ô sẽ được nhập dữ liệu mới."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154731\n"
+"webquery.xhp\n"
+"par_id3145750\n"
"8\n"
"help.text"
-msgid "Drawing objects"
-msgstr "Đối tượng vẽ"
+msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgstr "Chọn lệnh <emph>Chèn > Liên kết tới dữ liệu bên ngoài</emph>. Lệnh này sẽ mở hộp thoại <link href=\"text/scalc/01/04090000.xhp\">Dữ liệu bên ngoài</link>."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3149400\n"
+"webquery.xhp\n"
+"par_id3149958\n"
"9\n"
"help.text"
-msgid "Formulas"
-msgstr "Công thức"
+msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
+msgstr "Nhập địa chỉ URL của tài liệu HTML hoặc tên của bảng tính. Nhấn <item type=\"keycode\">Enter</item> khi bạn đã hoàn thành. Nhắp chuột vào nút <emph>...</emph> để mở một hộp thoại chọn tập tin."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150752\n"
+"webquery.xhp\n"
+"par_id3149400\n"
"10\n"
"help.text"
-msgid "To choose the details proceed as follows:"
-msgstr "Để chọn các chi tiết, làm như sau:"
+msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
+msgstr "Trong hộp danh sách lớn của hộp thoại, chọn vùng được đặt tên hoặc các bảng mà bạn muốn chèn."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145640\n"
+"webquery.xhp\n"
+"par_id3155064\n"
"11\n"
"help.text"
-msgid "Select the sheet you want to print."
-msgstr "Chọn trang mà bạn muốn in."
+msgid "You can also specify that the ranges or tables are updated every n seconds."
+msgstr "Bạn cũng có thể xác định rằng các vùng hay các bảng này được cập nhật sau mỗi n giây (mà n là một con số)."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150042\n"
-"12\n"
+"webquery.xhp\n"
+"par_id3155443\n"
+"30\n"
"help.text"
-msgid "Choose <emph>Format - Page</emph>."
-msgstr "Chọn lệnh <emph>Định dạng > Trang</emph>."
+msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
+msgstr "Bộ lọc nhập có thể tạo các tên cho vùng ô trên bánh đà. Trong khi định dạng được giữ nguyên đến mức có thể thì bộ lọc này lại không định nạp được bất kỳ bức ảnh nào."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3147340\n"
-"13\n"
+"webquery.xhp\n"
+"hd_id3149021\n"
+"12\n"
"help.text"
-msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
-msgstr "Lệnh này không hiển thị nếu trang đã được mở với chế độ bảo vệ khỏi ghi. Trong trường hợp này, hãy nhắp chuột vào biểu tượng <emph>Sửa tập tin</emph> trên thanh <emph>Chuẩn</emph>."
+msgid "Inserting by Navigator"
+msgstr "Chèn bằng Bộ điều hướng"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3146916\n"
+"webquery.xhp\n"
+"par_id3153965\n"
"14\n"
"help.text"
-msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
-msgstr "Chọn thẻ <emph>Trang</emph>. Trong vùng <emph>In</emph> hãy đánh dấu các chi tiết mà bạn muốn in và nhấn nút <emph>OK</emph>."
+msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
+msgstr "Mở hai tài liệu: bảng tính $[officename] Calc nơi dữ liệu ngoài sẽ được chèn vào (tài liệu đích) và tài liệu mà từ đó tài liệu ngoài được xuất (tài liệu nguồn)."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145789\n"
-"15\n"
+"webquery.xhp\n"
+"par_id3150205\n"
+"16\n"
"help.text"
-msgid "Print the document."
-msgstr "In tài liệu."
+msgid "In the target document open the Navigator."
+msgstr "Trong tài liệu nguồn, hãy mở Bộ điều hướng."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150345\n"
-"16\n"
+"webquery.xhp\n"
+"par_id3152990\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Xem > Xem thử chỗ ngắt trang\">Xem > Xem thử chỗ ngắt trang</link>"
+msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
+msgstr "Trong hộp tổ hợp phía dưới của Bộ điều hướng, hãy chọn tài liệu nguồn. Lúc này, Bộ điều hướng sẽ hiển thị tên của các vùng và các vùng cơ sở dữ liệu hay các bảng có trong tài liệu nguồn."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3148842\n"
+"20\n"
+"help.text"
+msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
+msgstr "Trong Bộ điều hướng, hãy chọn chế độ kéo <emph>Chèn dạng liên kết</emph><image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Biểu tượng</alt></image>."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3157978\n"
+"22\n"
+"help.text"
+msgid "Drag the desired external data from the Navigator into the target document."
+msgstr "Kéo dữ liệu ngoài mà bạn muốn từ Bộ điều hướng vào trong tài liệu đích."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3144768\n"
+"23\n"
+"help.text"
+msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
+msgstr "Nếu bạn đã tải một tài liệu HTML với bộ lọc <emph>Truy vấn trang Web</emph> dưới dạng tài liệu nguồn, bạn sẽ thấy các bảng trong Bộ điều hướng, được đặt tên liên tiếp từ « HTML_bảng1 » trở đi, và có hai tên vùng đã được tạo ra:"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3152873\n"
+"24\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
+msgstr "<item type=\"literal\">HTML_tất cả</item> — chỉ rõ toàn bộ tài liệu"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3149897\n"
+"25\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
+msgstr "<item type=\"literal\">HTML_bảng</item> — chỉ rõ tất cả các bảng HTML trong tài liệu"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3149126\n"
+"26\n"
+"help.text"
+msgid "Editing the external data"
+msgstr "Sửa dữ liệu ngoài"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3159228\n"
+"27\n"
+"help.text"
+msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
+msgstr "Chọn lệnh <emph>Sửa > Liên kết</emph>. Tại đây bạn có thể sửa liên kết tới dữ liệu ngoài."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3154650\n"
+"28\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Hộp thoại dữ liệu ngoài\">Hộp thoại dữ liệu ngoài</link>"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"tit\n"
+"help.text"
+msgid "19xx/20xx Years"
+msgstr "Năm 19xx/20xx"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"bm_id3150439\n"
+"help.text"
+msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
+msgstr "<bookmark_value>năm; 2 chữ số</bookmark_value><bookmark_value>ngày; 19xx/20xx</bookmark_value>"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"hd_id3150439\n"
+"18\n"
+"help.text"
+msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
+msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"Năm 19xx/20xx\">Năm 19xx/20xx</link></variable>"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3151116\n"
+"17\n"
+"help.text"
+msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
+msgstr "Năm trong một mục ngày tháng thường được nhập vào bằng hai chữ số. Trong đó, năm này được quản lý bằng $[officename] dưới dạng bốn chữ số, nhờ đó ta có thể tính chính xác kết quả về sự chênh lệch từ 1/1/99 tới 1/1/01 là 2 năm."
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3154011\n"
+"19\n"
+"help.text"
+msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3150010\n"
+"20\n"
+"help.text"
+msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
+msgstr "Điều này có nghĩa là nếu bạn nhập một ngày trong 1/1/30 hoặc cao hơn, ngày này sẽ được xử lý nội bộ dạng 1/1/1930 hoặc cao hơn. Tất cả các năm hai chữ số thấp hơn đều ứng dụng cho thế kỉ 20xx. Vì vậy, ví dụ như, 1/1/20 sẽ được chuyển thành 1/1/2020."
diff --git a/source/vi/helpcontent2/source/text/schart.po b/source/vi/helpcontent2/source/text/schart.po
index 26aa8eff795..7a0a50ff5e8 100644
--- a/source/vi/helpcontent2/source/text/schart.po
+++ b/source/vi/helpcontent2/source/text/schart.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,237 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Chart Features"
-msgstr "Tính năng tạo biểu đồ của $[officename]"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3150543\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
-msgstr "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">Các tính năng biểu đồ của $[officename]</link>"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3150868\n"
-"2\n"
-"help.text"
-msgid "Charts allow you to present data so that it is easy to visualize."
-msgstr "Biểu đồ cho phép bạn biểu diễn dữ liệu một cách trực quan, dễ hiểu."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3146974\n"
-"6\n"
-"help.text"
-msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
-msgstr "Bạn có khả năng tạo biểu đồ từ dữ liệu nguồn trong bảng tính Calc hay bảng Writer. Khi biểu đồ được nhúng trong cùng tài liệu với dữ liệu, nó sẽ được liên kết với dữ liệu, và đồ thị tự động cập nhật khi bạn thay đổi dữ liệu nguồn."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3153143\n"
-"7\n"
-"help.text"
-msgid "Chart Types"
-msgstr "Kiểu biểu đồ"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3151112\n"
-"8\n"
-"help.text"
-msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
-msgstr "Chọn trong nhiều kiểu biểu đồ ba chiều và hai chiều, như biểu đồ cột, biểu đồ đường, biểu đồ chứng khoán. Bạn có thể thay đổi kiểu đồ thị bằng vài cú nhấn chuột."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3149665\n"
-"10\n"
-"help.text"
-msgid "Individual Formatting"
-msgstr "Định dạng riêng"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3156441\n"
-"11\n"
-"help.text"
-msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
-msgstr "Bạn có thể tùy biến các thành phần của biểu đồ như trục, nhãn dữ liệu và chú giải, bằng cách nhắp nút phải chuột vào mục đó trong đồ thị, hoặc bằng biểu tượng trên thanh công cụ và trình đơn lệnh."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Bar"
-msgstr "Thanh Định dạng"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200911433792\n"
-"help.text"
-msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
-msgstr "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Thanh định dạng</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200911433835\n"
-"help.text"
-msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
-msgstr "Thanh định dạng sẽ hiện ra khi biểu đồ chuyển sang chế độ sửa. Vào chế độ sửa bằng cách nhắp đúp lên biểu đồ. Nhắp bên ngoài biểu đồ để thoát khỏi chế độ sửa."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200911433878\n"
-"help.text"
-msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
-msgstr "Bạn có thể dùng các biểu tượng và các điều khiển trên thanh định dạng để sửa định dạng của một biểu đồ."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300436\n"
-"help.text"
-msgid "Select Chart Element"
-msgstr "Chọn phần tử biểu đồ"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300479\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn phần từ bạn muốn định dạng từ biểu đồ. Phần tử đó sẽ ở trạng thái được chọn trong chế động xem trước biểu đồ. Nhấp Định dạng Vùng chọn để mở hộp thoại thuộc tính của phần tử đã chọn.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300555\n"
-"help.text"
-msgid "Format Selection"
-msgstr "Định dạng vùng chọn"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300539\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại thuộc tính của phần tử đã chọn.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300545\n"
-"help.text"
-msgid "Chart Type"
-msgstr "Kiểu biểu đồ"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300594\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại Kiểu biểu đồ.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300537\n"
-"help.text"
-msgid "Chart Data Table"
-msgstr "Bảng dữ liệu của biểu đồ"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300699\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại Bảng dữ liệu khi bạn muốn sửa dữ liệu biểu đồ.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300672\n"
-"help.text"
-msgid "Horizontal Grid On/Off"
-msgstr "Tắt/mở lưới ngang"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300630\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300738\n"
-"help.text"
-msgid "Legend On/Off"
-msgstr "Tắt/mở chú giải"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id081020090230076\n"
-"help.text"
-msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
-msgstr "<ahelp hid=\".\">Để hiển thị hay ẩn chú giải, nhắp Tắt/mở chú giải trên Thanh định dạng.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300785\n"
-"help.text"
-msgid "Scale Text"
-msgstr "Kích cỡ văn bản"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300784\n"
-"help.text"
-msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
-msgstr "<ahelp hid=\".\">Định lại kích cỡ văn bản trong biểu đồ khi bạn thay đổi kích thước của biểu đồ.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id081020090230087\n"
-"help.text"
-msgid "Automatic Layout"
-msgstr "Bố cục tự động"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300834\n"
-"help.text"
-msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
-msgstr "<ahelp hid=\".\">Di chuyển tất cả các phần tử biểu đồ tới vị trí mặc định của chúng bên trong biểu đồ hiện tại. Chức năng này không thay đổi kiểu biểu đồ hoặc các thuộc tính khác ngoại trừ vị trí của các phần tử.</ahelp>"
-
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -792,3 +561,234 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets all data points to default format.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt lại tất cả các điểm dữ liệu về định dạng mặc định.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Bar"
+msgstr "Thanh Định dạng"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200911433792\n"
+"help.text"
+msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Thanh định dạng</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433835\n"
+"help.text"
+msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
+msgstr "Thanh định dạng sẽ hiện ra khi biểu đồ chuyển sang chế độ sửa. Vào chế độ sửa bằng cách nhắp đúp lên biểu đồ. Nhắp bên ngoài biểu đồ để thoát khỏi chế độ sửa."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433878\n"
+"help.text"
+msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
+msgstr "Bạn có thể dùng các biểu tượng và các điều khiển trên thanh định dạng để sửa định dạng của một biểu đồ."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300436\n"
+"help.text"
+msgid "Select Chart Element"
+msgstr "Chọn phần tử biểu đồ"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300479\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn phần từ bạn muốn định dạng từ biểu đồ. Phần tử đó sẽ ở trạng thái được chọn trong chế động xem trước biểu đồ. Nhấp Định dạng Vùng chọn để mở hộp thoại thuộc tính của phần tử đã chọn.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300555\n"
+"help.text"
+msgid "Format Selection"
+msgstr "Định dạng vùng chọn"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300539\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại thuộc tính của phần tử đã chọn.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300545\n"
+"help.text"
+msgid "Chart Type"
+msgstr "Kiểu biểu đồ"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300594\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại Kiểu biểu đồ.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300537\n"
+"help.text"
+msgid "Chart Data Table"
+msgstr "Bảng dữ liệu của biểu đồ"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300699\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại Bảng dữ liệu khi bạn muốn sửa dữ liệu biểu đồ.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300672\n"
+"help.text"
+msgid "Horizontal Grid On/Off"
+msgstr "Tắt/mở lưới ngang"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300630\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300738\n"
+"help.text"
+msgid "Legend On/Off"
+msgstr "Tắt/mở chú giải"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id081020090230076\n"
+"help.text"
+msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
+msgstr "<ahelp hid=\".\">Để hiển thị hay ẩn chú giải, nhắp Tắt/mở chú giải trên Thanh định dạng.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300785\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Kích cỡ văn bản"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300784\n"
+"help.text"
+msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr "<ahelp hid=\".\">Định lại kích cỡ văn bản trong biểu đồ khi bạn thay đổi kích thước của biểu đồ.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id081020090230087\n"
+"help.text"
+msgid "Automatic Layout"
+msgstr "Bố cục tự động"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300834\n"
+"help.text"
+msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
+msgstr "<ahelp hid=\".\">Di chuyển tất cả các phần tử biểu đồ tới vị trí mặc định của chúng bên trong biểu đồ hiện tại. Chức năng này không thay đổi kiểu biểu đồ hoặc các thuộc tính khác ngoại trừ vị trí của các phần tử.</ahelp>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Chart Features"
+msgstr "Tính năng tạo biểu đồ của $[officename]"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3150543\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
+msgstr "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">Các tính năng biểu đồ của $[officename]</link>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3150868\n"
+"2\n"
+"help.text"
+msgid "Charts allow you to present data so that it is easy to visualize."
+msgstr "Biểu đồ cho phép bạn biểu diễn dữ liệu một cách trực quan, dễ hiểu."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3146974\n"
+"6\n"
+"help.text"
+msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
+msgstr "Bạn có khả năng tạo biểu đồ từ dữ liệu nguồn trong bảng tính Calc hay bảng Writer. Khi biểu đồ được nhúng trong cùng tài liệu với dữ liệu, nó sẽ được liên kết với dữ liệu, và đồ thị tự động cập nhật khi bạn thay đổi dữ liệu nguồn."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153143\n"
+"7\n"
+"help.text"
+msgid "Chart Types"
+msgstr "Kiểu biểu đồ"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3151112\n"
+"8\n"
+"help.text"
+msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
+msgstr "Chọn trong nhiều kiểu biểu đồ ba chiều và hai chiều, như biểu đồ cột, biểu đồ đường, biểu đồ chứng khoán. Bạn có thể thay đổi kiểu đồ thị bằng vài cú nhấn chuột."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3149665\n"
+"10\n"
+"help.text"
+msgid "Individual Formatting"
+msgstr "Định dạng riêng"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156441\n"
+"11\n"
+"help.text"
+msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
+msgstr "Bạn có thể tùy biến các thành phần của biểu đồ như trục, nhãn dữ liệu và chú giải, bằng cách nhắp nút phải chuột vào mục đó trong đồ thị, hoặc bằng biểu tượng trên thanh công cụ và trình đơn lệnh."
diff --git a/source/vi/helpcontent2/source/text/schart/00.po b/source/vi/helpcontent2/source/text/schart/00.po
index e218e952361..0ac108e30f1 100644
--- a/source/vi/helpcontent2/source/text/schart/00.po
+++ b/source/vi/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -394,10 +394,9 @@ msgctxt ""
"59\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr "Trên thanh Định dạng, nhấn vào"
+msgstr "Trên thanh <emph>Định dạng</emph>, nhấn vào"
#: 00000004.xhp
-#, fuzzy
msgctxt ""
"00000004.xhp\n"
"par_id3148582\n"
@@ -442,7 +441,6 @@ msgid "Open context menu - choose <emph>Arrangement </emph>(Charts)"
msgstr "Mở trình đơn ngữ cảnh, sau đó chọn lệnh <emph>Sắp đặt </emph>(Đồ thị)"
#: 00000004.xhp
-#, fuzzy
msgctxt ""
"00000004.xhp\n"
"par_id3151020\n"
@@ -460,7 +458,6 @@ msgid "Title On/Off"
msgstr "Hiện/ẩn Tựa đề"
#: 00000004.xhp
-#, fuzzy
msgctxt ""
"00000004.xhp\n"
"par_id3149775\n"
@@ -557,5 +554,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"slp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, mark Smooth lines checkbox, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id8513095\n"
+"help.text"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/vi/helpcontent2/source/text/schart/01.po b/source/vi/helpcontent2/source/text/schart/01.po
index e10aacc5362..f472d6ad2a1 100644
--- a/source/vi/helpcontent2/source/text/schart/01.po
+++ b/source/vi/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,733 +15,924 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
+"03010000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Pie"
-msgstr "Đồ thị kiểu Bánh"
+msgid "Data Table"
+msgstr "Bảng Dữ liệu"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"bm_id7621997\n"
+"03010000.xhp\n"
+"hd_id3150869\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
-msgstr "<bookmark_value>biểu đồ hình khuyên</bookmark_value><bookmark_value>biểu đồ bánh;loại</bookmark_value><bookmark_value>kiểu đồ thị;bánh/khuyên</bookmark_value>"
+msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
+msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Bảng Dữ liệu\">Bảng Dữ liệu</link>"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"hd_id3365276\n"
+"03010000.xhp\n"
+"par_id3151115\n"
+"2\n"
"help.text"
-msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
-msgstr "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Đồ thị kiểu Bánh</link></variable>"
+msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramData\">Mở hộp thoại <emph>Bảng Dữ liệu</emph>, trong đó bạn có thể chỉnh sửa dữ liệu của đồ thị.</ahelp>"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id245979\n"
+"03010000.xhp\n"
+"par_id3149667\n"
+"51\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
+msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
+msgstr "Hộp thoại <emph>Bảng Dữ liệu</emph> không sẵn sàng nếu bạn chèn một đồ thị dựa vào bảng tính Calc hay bảng Writer."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"hd_id5799432\n"
+"03010000.xhp\n"
+"par_id6746421\n"
"help.text"
-msgid "Pie"
-msgstr "Bánh"
+msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
+msgstr "<link href=\"text/swriter/01/06990000.xhp\">Để cập nhật đồ thị bằng tay khi bảng Writer bị thay đổi</link>"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id6549272\n"
+"03010000.xhp\n"
+"par_id2565996\n"
"help.text"
-msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
-msgstr "Đồ thị Bánh thì hiển thị giá trị dạng hình quạt của toàn tròn. Độ dài của hình cung, hoặc diện tích của mỗi hình quạt, có tỷ lệ đúng với giá trị của nó."
+msgid "Some changes will become visible only after you close and reopen the dialog."
+msgstr "Một số thay đổi sẽ hiển thị chỉ sau khi bạn đóng rồi mở lại hộp thoại."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id6529740\n"
+"03010000.xhp\n"
+"hd_id6129947\n"
"help.text"
-msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
-msgstr "Bánh: kiểu con này hiển thị hình quạt dạng vùng tô màu của toàn tròn, cho chỉ một cột dữ liệu. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo bất cứ hình quạt nào để phân cách hình quạt ra tròn còn lại, hoặc chèn nó vào lại."
+msgid "To change chart data"
+msgstr "Để thay đổi dữ liệu đồ thị"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id9121982\n"
+"03010000.xhp\n"
+"par_id8141117\n"
"help.text"
-msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
-msgstr "Bánh được cắt mảnh: kiểu con này hiển thị các hình quạt đã được phân cách ra nhau. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo bất cứ hình quạt nào để di chuyển nó dọc theo đường xuyên tâm (từ trung tâm của hình tròn)."
+msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
+msgstr "Khi bạn tạo một đồ thị dựa vào dữ liệu mặc định, hoặc khi bạn sao chép một đồ thị vào tài liệu, bạn cũng có thể mở hộp thoại <emph>Bảng Dữ liệu</emph> để gõ dữ liệu riêng. Đồ thị sẽ cập nhật động trong ô xem thử."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id3808404\n"
+"03010000.xhp\n"
+"par_id9487594\n"
"help.text"
-msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
-msgstr "Vòng: kiểu con này có thể hiển thị đồng thời nhiều cột dữ liệu. Mỗi cột dữ liệu được hiên thị dạng một hình vòng rỗng, bên trong đó hiển thị cột dữ liệu kế tiếp. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo hình quạt bên ngoài để di chuyển nó dọc theo đường xuyên tâm (từ trung tâm của hình vòng)."
+msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
+msgstr "Đóng hộp thoại <emph>Dữ liệu Đồ thị</emph> để áp dụng các thay đổi trong dữ liệu. Chọn lệnh <emph>Sửa > Hủy bước</emph> để hủy bỏ các thay đổi."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id2394482\n"
+"03010000.xhp\n"
+"par_id4149906\n"
"help.text"
-msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
-msgstr "Vòng được cắt mảng: kiểu con này hiển thị các hình quạt bên ngoài đã được phân cách ra hình vòng còn lại. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo hình quạt bên ngoài để di chuyển nó dọc theo đường xuyên tâm (từ trung tâm của hình vòng)."
+msgid "Insert or select a chart that is not based on existing cell data."
+msgstr "Chèn hay chọn một đồ thị không phải dựa vào dữ liệu ô đã tồn tại."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"tit\n"
+"03010000.xhp\n"
+"par_id6064943\n"
"help.text"
-msgid "Chart Wizard - Chart Type"
-msgstr "Trợ lý Đồ thị > Kiểu Đồ thị"
+msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
+msgstr "Chọn lệnh <emph>Xem > Bảng Dữ liệu Đồ thị</emph> để mở hộp thoại <emph>Bảng Dữ liệu</emph>."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"bm_id4266792\n"
+"03010000.xhp\n"
+"par_id3236182\n"
"help.text"
-msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
-msgstr "<bookmark_value>đồ thị;chọn kiểu đồ thị</bookmark_value>"
+msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
+msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"hd_id1536606\n"
+"03010000.xhp\n"
+"par_id9799798\n"
"help.text"
-msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
-msgstr "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị > Kiểu Đồ thị</link></variable>"
+msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
+msgstr "Nhấn vào một ô trong hộp thoại, sau đó thay đổi nội dung của nó. Nhấn vào ô khác để xem thử nội dung đã thay đổi."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id6006958\n"
+"03010000.xhp\n"
+"par_id1251258\n"
"help.text"
-msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
-msgstr "Trên trang đầu của <emph>Trợ lý Đồ thị</emph>, bạn có thể <link href=\"text/schart/01/choose_chart_type.xhp\">chọn kiểu đồ thị</link>."
+msgid "Enter the name of the data series in the text box above the column."
+msgstr "Gõ tên của dãy dữ liệu vào hộp văn bản bên trên cột."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"hd_id3919186\n"
+"03010000.xhp\n"
+"par_id743430\n"
"help.text"
-msgid "To choose a chart type"
-msgstr "Để chọn kiểu đồ thị"
+msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
+msgstr "Dùng các biểu tượng bên trên bảng, để chèn hay xoá hàng và cột. Đối với dãy dữ liệu có nhiều cột, chỉ có thể chèn hay xoá toàn dãy dữ liệu."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3453169\n"
+"03010000.xhp\n"
+"par_id8111819\n"
"help.text"
-msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
-msgstr "Chọn một <link href=\"text/schart/01/choose_chart_type.xhp\">kiểu cơ bản</link>: nhấn vào mục riêng (v.d. Cột, Thanh, Bánh)."
+msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
+msgstr "Dãy dữ liệu trong đồ thị có cùng một thứ tự với bảng dữ liệu. Hãy dùng biểu tượng <emph>Chuyển dãy bên phải</emph> để chuyển đổi từ cột hiện thời sang cột bên phải."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8406933\n"
+"03010000.xhp\n"
+"par_id9116794\n"
"help.text"
-msgid "The contents on the right side will change to offer more options depending on the basic chart type."
-msgstr "Nội dung bên phải sẽ thay đổi để cung cấp tùy chọn thêm, phụ thuộc vào kiểu đồ thị cơ bản được chọn."
+msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
+msgstr "Các phân loại hay điểm dữ liệu trong đồ thị có cùng một thứ tự với bảng dữ liệu. Hãy dùng biểu tượng <emph>Chuyển hàng bên dưới</emph> để chuyển đổi từ cột hiện thời sang cột bên dưới."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8230231\n"
+"03010000.xhp\n"
+"par_id3150297\n"
+"20\n"
"help.text"
-msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
-msgstr "Cũng có thể nhấn vào tùy chọn. Trong khi thay đổi thiết lập trong Trợ lý, theo dõi ô xem thử trong tài liệu để thấy hình thức của đồ thị."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chèn một hàng mới bên dưới hàng hiện thời.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3267006\n"
+"03010000.xhp\n"
+"par_id3145384\n"
+"23\n"
"help.text"
-msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
-msgstr "Bấm tổ hợp phím <item type=\"keycode\">Shift+F1</item> và chỉ tới điều khiển nào để thấy một chuỗi trợ giúp gợi ý mở rộng."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chèn một cột mới đằng sau cột hiện thời.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7251503\n"
+"03010000.xhp\n"
+"par_id3152297\n"
"help.text"
-msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
-msgstr "Nhấn vào nút <emph>Kết thúc</emph> trên bất cứ trang trợ lý nào, để đóng trợ lý và tạo đồ thị bằng thiết lập hiện thời."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
+msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3191625\n"
+"03010000.xhp\n"
+"par_id3159231\n"
+"26\n"
"help.text"
-msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
-msgstr "Nhấn vào nút <emph>Kế</emph> để tiến tới trang trợ lý kế tiếp, hoặc nhấn trong danh sách các mục bên trái để đi tới trang riêng đó."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá hàng hiện thời. Không thể xoá hàng nhãn.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7659535\n"
+"03010000.xhp\n"
+"par_id3153336\n"
+"29\n"
"help.text"
-msgid "Click <emph>Back</emph> to see the previous wizard page."
-msgstr "Nhấn vào nút <emph>Lùi</emph> để trở về trang trợ lý trước đó."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá cột hiện thời. Không thể xoá cột nhãn.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8420056\n"
+"03010000.xhp\n"
+"par_id4089175\n"
"help.text"
-msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
-msgstr "Nhấn vào nút <emph>Thôi</emph> để đóng trợ lý, không thay đổi gì hay tạo đồ thị."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chuyển đổi từ cột hiện thời sang cột bên phải.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2284920\n"
+"03010000.xhp\n"
+"par_id3949095\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn chuột để đi tới trang trợ lý có tên đó.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chuyển đổi từ hàng hiện thời sang cột bên dưới.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3184301\n"
+"03010000.xhp\n"
+"par_id6697286\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu đồ thị cơ bản.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên cho dãy dữ liệu.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2129276\n"
+"04010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu con của kiểu đồ thị cơ bản.</ahelp>"
+msgid "Titles"
+msgstr "Tựa đề"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id9719229\n"
+"04010000.xhp\n"
+"hd_id3147345\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kích hoạt hình thức ba chiều cho các giá trị dữ liệu.</ahelp>"
+msgid "Titles"
+msgstr "Tựa đề"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3860896\n"
+"04010000.xhp\n"
+"par_id3150298\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn kiểu hình thức ba chiều.</ahelp>"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
+msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id4041871\n"
+"04010000.xhp\n"
+"hd_id3150207\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một hình riêng trong danh sách.</ahelp>"
+msgid "Main Title"
+msgstr "Tựa đề chính"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id9930722\n"
+"04010000.xhp\n"
+"par_id3150371\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị dãy đống trên đồ thị <emph>Đường</emph>.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Đánh dấu trong hộp bên cạnh mục <emph>Tựa đề chính</emph> để hiển thị tựa đề chính. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id5749687\n"
+"04010000.xhp\n"
+"hd_id3146980\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy đống thì hiển thị các giá trị ở trên nhau.</ahelp>"
+msgid "Subtitle"
+msgstr "Phụ đề"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id79348\n"
+"04010000.xhp\n"
+"par_id3149404\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy đống hiển thị các giá trị dạng phần trăm.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Đánh dấu trong hộp bên cạnh mục <emph>Phụ đề</emph> để hiển thị phụ đề. Gõ phụ đề đã muốn vào trường văn bản tương ứng.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2414014\n"
+"04010000.xhp\n"
+"par_id3152901\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The lines are shown as curves.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đường thẳng được hiển thị dạng đường cong.</ahelp>"
+msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
+msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Nhấn vào biểu tượng <emph>Hiện/ẩn Tựa đề</emph> trên thanh <emph>Định dạng</emph> để ẩn tựa đề và phụ đề.</ahelp></variable>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7617114\n"
+"04010000.xhp\n"
+"hd_id3156018\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the curve properties.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại để đặt các thuộc tính về đường cong.</ahelp>"
+msgid "X axis"
+msgstr "Trục X"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id6649372\n"
+"04010000.xhp\n"
+"par_id3152869\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kết nối các điểm theo giá trị X tăng dần, thậm chí nếu có thứ tự giá trị khác, trên đồ thị XY rải.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Đánh dấu trong hộp bên cạnh mục <emph>Trục X</emph> để hiển thị tựa đề trên trục X. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7334208\n"
+"04010000.xhp\n"
+"hd_id3159226\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt tổng số đường cho kiểu đồ thị <emph>Cột và Đường</emph>.</ahelp>"
+msgid "Y axis"
+msgstr "Trục Y"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id4485000\n"
+"04010000.xhp\n"
+"par_id3154763\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Kiểu đồ thị</emph>.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Đánh dấu trong hộp bên cạnh mục <emph>Trục Y</emph> để hiển thị tựa đề trên trục Y. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp>"
-#: wiz_data_range.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
+"04010000.xhp\n"
+"hd_id3153009\n"
+"12\n"
+"help.text"
+msgid "Z axis"
+msgstr "Trục Z"
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3154710\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Đánh dấu trong hộp bên cạnh mục <emph>Trục Z</emph> để hiển thị tựa đề trên trục Z. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp> Tùy chọn này chỉ sẵn sàng cho đồ thị ba chiều (3D)."
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3153073\n"
+"14\n"
+"help.text"
+msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
+msgstr "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Nhấn vào biểu tượng <emph>Hiện/ẩn Tựa đề Trục</emph> trên thanh <emph>Định dạng</emph>, để hiển thị hay ẩn tựa đề trên mỗi trục.</ahelp></variable>"
+
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wizard - Data Range"
-msgstr "Trợ lý Đồ thị > Phạm vi Dữ liệu"
+msgid "Legend"
+msgstr "Chú giải"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"bm_id2429578\n"
+"04020000.xhp\n"
+"bm_id3156441\n"
"help.text"
-msgid "<bookmark_value>data ranges in charts</bookmark_value>"
-msgstr "<bookmark_value>phạm vi dữ liệu trên đồ thị</bookmark_value>"
+msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
+msgstr "<bookmark_value>chú giải đồ thị; ẩn</bookmark_value><bookmark_value>ẩn;chú giải đồ thị</bookmark_value>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"hd_id8313852\n"
+"04020000.xhp\n"
+"hd_id3156441\n"
+"1\n"
"help.text"
-msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
-msgstr "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Trợ lý Đồ thị > Phạm vi Dữ liệu</link></variable>"
+msgid "Legend"
+msgstr "Chú giải"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id8829309\n"
+"04020000.xhp\n"
+"par_id3155413\n"
+"2\n"
"help.text"
-msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
-msgstr "Trên trang <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link> này, bạn có thể chọn một nguồn riêng lẻ của phạm vi dữ liệu. Phạm vi này có thể chứa hơn một phạm vi ô hình chữ nhật."
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
+msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id6401867\n"
+"04020000.xhp\n"
+"par_id3149124\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Dãy dữ liệu</emph> trong đó bạn có thể chỉnh sửa <emph>Phạm vi dữ liệu</emph> và <emph>Dãy dữ liệu</emph>.</ahelp>"
+msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
+msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">Để hiển thị hay ẩn một chú giải, nhấn vào biểu tượng <emph>Hiện/ẩn Chú giải</emph> trên thanh <emph>Định dạng</emph>.</ahelp></variable>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id2025818\n"
+"04020000.xhp\n"
+"par_id3145230\n"
"help.text"
-msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
-msgstr "Dùng trang <emph>Trợ lý Đồ thị > Dãy dữ liệu</emph> nếu bạn cần điều khiển thêm các phạm vi dữ liệu."
+msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Biểu tượng</alt></image>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id8466139\n"
+"04020000.xhp\n"
+"par_id3149207\n"
+"16\n"
"help.text"
-msgid "This dialog is only available for charts based on a Calc or Writer table."
-msgstr "Hộp thoại này chỉ sẵn sàng đối với đồ thị dựa vào bảng Calc hay Writer."
+msgid "Legend On/Off"
+msgstr "Hiện/ẩn Chú giải"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"hd_id1877193\n"
+"04020000.xhp\n"
+"hd_id3155114\n"
+"6\n"
"help.text"
-msgid "To specify a data range"
-msgstr "Để ghi rõ phạm vi dữ liệu"
+msgid "Display"
+msgstr "Hiển thị"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5924863\n"
+"04020000.xhp\n"
+"par_id3150206\n"
+"7\n"
"help.text"
-msgid "Select the data range. Do one of the following:"
-msgstr "Chọn phạm vi dữ liệu, sau đó làm một trong những việc dưới đây:"
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
+msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Ghi rõ có nên hiển thị chú giải cho đồ thị hay không.</ahelp> Tùy chọn này chỉ hiện rõ nếu bạn gọi hộp thoại bằng cách chọn lệnh trình đơn <emph>Chèn > Chú giải</emph>."
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id4357432\n"
+"04020000.xhp\n"
+"hd_id3150201\n"
+"4\n"
"help.text"
-msgid "Enter the data range in the text box."
-msgstr "Gõ phạm vi dữ liệu vào hộp văn bản."
+msgid "Position"
+msgstr "Vị trí"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5626392\n"
+"04020000.xhp\n"
+"par_id3155376\n"
+"5\n"
"help.text"
-msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
-msgstr "Trong chương trình Calc, một dãy dữ liệu thí dụ là « $Bảng1.$B$3:$B$14 ». Lưu ý rằng một dãy dữ liệu có thể chứa hơn một vùng trên bảng tính, v.d. « $Bảng1.A1:A5;$Bảng1.D1:D5 » cũng là dãy dữ liệu hợp lệ. Trong Writer, một dãy dữ liệu thí dụ là « Bảng1.A1:E4 »."
+msgid "Select the position for the legend:"
+msgstr "Chọn vị trí của chú giải:"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id1363872\n"
+"04020000.xhp\n"
+"hd_id3152988\n"
+"8\n"
"help.text"
-msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
-msgstr "Trong Calc, nhấn <emph>Chọn phạm vi dữ liệu</emph> để cực tiểu hóa hộp thoại, rồi kéo rê trên một vùng ô để chọn phạm vi dữ liệu."
+msgid "Left"
+msgstr "Trái"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id6823938\n"
+"04020000.xhp\n"
+"par_id3155087\n"
+"9\n"
"help.text"
-msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
-msgstr "Muốn có phạm vi dữ liệu chứa nhiều vùng ô không phải kề nhau thì gõ phạm vi đầu tiên, sau đó tự gõ một dấu chấm phẩy « ; » ở kết thúc hộp văn bản, sau đó gõ các phạm vi khác. Định giới các phạm vi bằng dấu chấm phẩy."
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Định vị chú giải bên trái đồ thị.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id1434369\n"
+"04020000.xhp\n"
+"hd_id3153816\n"
+"10\n"
"help.text"
-msgid "Click one of the options for data series in rows or in columns."
-msgstr "Nhấn vào một của những tùy chọn về dãy dữ liệu theo hàng hay cột."
+msgid "Top"
+msgstr "Trên"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id7524033\n"
+"04020000.xhp\n"
+"par_id3153912\n"
+"11\n"
"help.text"
-msgid "Check whether the data range has labels in the first row or in the first column or both."
-msgstr "Đánh dấu để ghi rõ dãy dữ liệu có nhãn trong hàng đầu, trong cột đầu, hay trong cả hai."
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Định vị chú giải bên trên đồ thị.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5256508\n"
+"04020000.xhp\n"
+"hd_id3144773\n"
+"12\n"
"help.text"
-msgid "In the preview you can see how the final chart will look."
-msgstr "Ô xem thử sẽ hiển thị hình thức cuối cùng của đồ thị."
+msgid "Right"
+msgstr "Phải"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id379650\n"
+"04020000.xhp\n"
+"par_id3155268\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ phạm vi dữ liệu bạn muốn chèn vào đồ thị. Để thu nhỏ hộp thoại này trong khi chọn phạm vi trong Calc, nhấn vào nút <emph>Chọn phạm vi dữ liệu</emph>.</ahelp>"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Định vị chú giải bên phải đồ thị.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id953703\n"
+"04020000.xhp\n"
+"hd_id3152871\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy dữ liệu lấy dữ liệu từ các hàng liên tiếp trong phạm vị đã chọn. Đối với đồ thị kiểu rải, dãy dữ liệu thứ nhất sẽ chứa các giá trị cho mọi dãy. Các dãy dữ liệu khác được dùng như giá trị Y, một cho mỗi dãy.</ahelp>"
+msgid "Bottom"
+msgstr "Dưới"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id4496597\n"
+"04020000.xhp\n"
+"par_id3153249\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy dữ liệu lấy dữ liệu từ các cột liên tiếp trong phạm vị đã chọn. Đối với đồ thị kiểu rải, dãy dữ liệu thứ nhất sẽ chứa các giá trị cho mọi dãy. Các dãy dữ liệu khác được dùng như giá trị Y, một cho mỗi dãy.</ahelp>"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Định vị chú giải bên dưới đồ thị.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id2898953\n"
+"04020000.xhp\n"
+"hd_id1106200812072645\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đối với dãy dữ liệu theo cột: hàng đầu trong phạm vi thì dùng làm tên cho các dãy dữ liệu. Đối với dãy dữ liệu theo cột: hàng đầu trong phạm vi thì dùng làm các phân loại. Các hàng còn lại làm dãy dữ liệu. Không bật tùy chọn này thì mọi hàng làm dãy dữ liệu.</ahelp>"
+msgid "Text Orientation"
+msgstr "Hướng của văn bản"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id7546311\n"
+"04020000.xhp\n"
+"par_id1106200812072653\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đối với dãy dữ liệu theo cột: cột đầu trong phạm vi thì dùng làm tên cho các dãy dữ liệu. Đối với dãy dữ liệu theo hàng: cột đầu trong phạm vi thì dùng làm các phân loại. Các cột còn lại làm dãy dữ liệu. Không bật tùy chọn này thì mọi cột làm dãy dữ liệu.</ahelp>"
+msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
+msgstr ""
-#: type_xy.xhp
+#: 04020000.xhp
msgctxt ""
-"type_xy.xhp\n"
+"04020000.xhp\n"
+"hd_id1106200812112444\n"
+"help.text"
+msgid "Text Direction"
+msgstr "Hướng của văn bản"
+
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id1106200812112530\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Lựa chọn hướng của một đoạn văn bản sử dụng chức năng bài trí văn bản phức tạp. Chức năng này chỉ có thể sử dụng nếu như hỗ trợ cho bài trí văn bản phức tạp được chọn.</ahelp>"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type XY"
-msgstr "Đồ thị Kiểu XY"
+msgid "Data Labels"
+msgstr "Nhãn dữ liệu"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"bm_id84231\n"
+"04030000.xhp\n"
+"bm_id3150275\n"
"help.text"
-msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
-msgstr "<bookmark_value>đồ thị rải</bookmark_value><bookmark_value>đồ thị XY</bookmark_value><bookmark_value>kiểu đồ thị;XY (rải)</bookmark_value><bookmark_value>cái chỉ lỗi trên đồ thị</bookmark_value><bookmark_value>thanh lỗi trên đồ thị</bookmark_value><bookmark_value>số trung bình trên đồ thị</bookmark_value><bookmark_value>thống kê trên đồ thị</bookmark_value><bookmark_value>phương sai trên đồ thị</bookmark_value><bookmark_value>độ lệch chuẩn trên đồ thị</bookmark_value>"
+msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
+msgstr "<bookmark_value>nhãn dữ liệu trên đồ thị</bookmark_value><bookmark_value>nhãn; của đồ thị</bookmark_value><bookmark_value>đồ thị; nhãn dữ liệu</bookmark_value><bookmark_value>giá trị dữ liệu trên đồ thị</bookmark_value><bookmark_value>chú giải của đồ thị; hiển thị biểu tượng có nhãn</bookmark_value>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id9346598\n"
+"04030000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
-msgstr "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Đồ thị Kiểu XY (Rải)</link></variable>"
+msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
+msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Nhãn dữ liệu\">Nhãn dữ liệu</link></variable>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id2003845\n"
+"04030000.xhp\n"
+"par_id3154684\n"
+"2\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
+msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
+msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id7757194\n"
+"04030000.xhp\n"
+"par_id0810200912120416\n"
"help.text"
-msgid "XY (Scatter)"
-msgstr "XY (Rải)"
+msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
+msgstr "Nếu một phần tử của một chuỗi dữ liệu được chọn, lệnh này làm việc chỉ trên chuỗi dữ liệu đó. Nếu không có phần tử nào được chọn, lệnh này làm việc trên mọi chuỗi dữ liệu"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5977965\n"
+"04030000.xhp\n"
+"hd_id3149401\n"
+"17\n"
"help.text"
-msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
-msgstr "Đồ thị XY theo hình thức cơ bản thì dựa vào một dãy dữ liệu chứa một tên, danh sách các giá trị X và danh sách các giá trị Y. Mỗi cặp giá trị (x/y) được hiển thị dạng một điểm tùy theo hệ thống toạ độ. Tên của dãy dữ liệu tương ứng với các giá trị Y và được hiển thị trong chú giải."
+msgid "Show value as number"
+msgstr "Hiện giá trị dạng số"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4381847\n"
+"04030000.xhp\n"
+"par_id3150751\n"
+"18\n"
"help.text"
-msgid "Choose an XY chart for the following example tasks:"
-msgstr "Chọn đồ thị XY cho những công việc thí dụ này:"
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
+msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Hiển thị giá trị tuyệt đối của điểm dữ liệu.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1336710\n"
+"04030000.xhp\n"
+"hd_id5077059\n"
"help.text"
-msgid "scale the x‑axis"
-msgstr "đặt tỷ lệ của trục X"
+msgid "Number format"
+msgstr "Định dạng số"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1221655\n"
+"04030000.xhp\n"
+"par_id9794610\n"
"help.text"
-msgid "generate a parameter curve, for example a spiral"
-msgstr "tạo ra đường cong tham số, v.d. xoắn ốc"
+msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại để chọn định dạng số.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id3397320\n"
+"04030000.xhp\n"
+"hd_id3145643\n"
+"9\n"
"help.text"
-msgid "draw the graph of a function"
-msgstr "vẽ đồ thị của hàm"
+msgid "Show value as percentage"
+msgstr "Hiện giá trị dạng phần trăm"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7657399\n"
+"04030000.xhp\n"
+"par_id3156382\n"
+"10\n"
"help.text"
-msgid "explore the statistical association of quantitative variables"
-msgstr "thăm dò quan hệ thống kê của các biến định lượng"
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
+msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Hiển thị phần trăm của điểm dữ liệu trong mỗi cột.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id8925138\n"
+"04030000.xhp\n"
+"hd_id1316873\n"
"help.text"
-msgid "Your XY chart may have more than one data series."
-msgstr "Đồ thị XY có thể chứa hơn một dãy dữ liệu."
+msgid "Percentage format"
+msgstr "Định dạng phần trăm"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id5461897\n"
+"04030000.xhp\n"
+"par_id5476241\n"
"help.text"
-msgid "XY Chart Variants"
-msgstr "Biến thể Đồ thị XY"
+msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại để chọn định dạng phần trăm.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id8919339\n"
+"04030000.xhp\n"
+"hd_id3145228\n"
+"11\n"
"help.text"
-msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
-msgstr "Bạn có thể chọn biến thể đồ thị XY trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, hoặc bằng cách chọn lệnh <item type=\"menuitem\">Định dạng > Kiểu đồ thị</item> đối với đồ thị trong chế độ chỉnh sửa."
+msgid "Show category"
+msgstr "Hiện phân loại"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4634235\n"
+"04030000.xhp\n"
+"par_id3154702\n"
+"12\n"
"help.text"
-msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
-msgstr "Đồ thị được tạo bằng thiết lập mặc định. Sau khi tạo xong đồ thị, bạn có thể chỉnh sửa các thuộc tính để điều chỉnh hình thức. Cũng có thể thay đổi kiểu dáng đường và biểu tượng trên trang thẻ <emph>Đường</emph> của hộp thoại thuộc tính dãy dữ liệu."
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Hiển thị nhãn văn bản của điểm dữ liệu.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5482039\n"
+"04030000.xhp\n"
+"hd_id3150298\n"
+"15\n"
"help.text"
-msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
-msgstr "Nhấn đúp vào một điểm dữ liệu để mở hộp thoại <item type=\"menuitem\">Chuỗi dữ liệu</item>. Trong hộp thoại này, bạn có thể thay đổi các thuộc tính của chuỗi dữ liệu."
+msgid "Show legend key"
+msgstr "Hiện khoá chú giải"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id0805200810492449\n"
+"04030000.xhp\n"
+"par_id3150205\n"
+"16\n"
"help.text"
-msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
-msgstr "Đối với các biểu đồ 2 chiều, bọn có thể chọn <item type=\"menuitem\">Điền - Thanh lỗi Y</item> để hiển thị thanh báo lỗi."
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Hiển thị biểu tượng chú giải bên cạnh mỗi nhãn điểm dữ liệu.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6221198\n"
+"04030000.xhp\n"
+"hd_id3836787\n"
"help.text"
-msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
-msgstr "Bạn có thể bật chức năng hiển thị đường giá trị trung bình và xu hướng, dùng các câu lệnh trong trình đơn <emph>Chèn</emph> ."
+msgid "Separator"
+msgstr "Dấu tách"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id1393475\n"
+"04030000.xhp\n"
+"par_id6668904\n"
"help.text"
-msgid "Points only"
-msgstr "Chỉ điểm"
+msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn dấu tách các chuỗi văn bản của cùng một đối tượng.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6571550\n"
+"04030000.xhp\n"
+"hd_id4319284\n"
"help.text"
-msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>."
+msgid "Placement"
+msgstr "Vị trí"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id5159459\n"
+"help.text"
+msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt vị trí của nhãn dữ liệu tương đối với đối tượng.</ahelp>"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id1106200812280727\n"
+"help.text"
+msgid "Text Direction"
+msgstr "Hướng của văn bản"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1106200812280719\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Lựa chọn hướng của một đoạn văn bản sử dụng chức năng bài trí văn bản phức tạp. Chức năng này chỉ có thể sử dụng nếu như hỗ trợ cho bài trí văn bản phức tạp được chọn.</ahelp>"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id1007200901590713\n"
+"help.text"
+msgid "Rotate Text"
+msgstr "Xoay văn bản"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1007200901590752\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id5376140\n"
+"04030000.xhp\n"
+"par_id1007200901590757\n"
"help.text"
-msgid "Lines Only"
-msgstr "Chỉ đường"
+msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
+msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4408093\n"
+"04040000.xhp\n"
+"tit\n"
"help.text"
-msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons."
-msgstr "Biến thể này vẽ đường thẳng từ điểm này đến điểm khác. Điểm dữ liệu không được biểu tượng đại diện."
+msgid "Axes"
+msgstr "Trục"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7261268\n"
+"04040000.xhp\n"
+"bm_id3147428\n"
"help.text"
-msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
-msgstr "Có cùng thứ tự vẽ với dãy dữ liệu. Đánh dấu tùy chọn <emph>Sắp xếp theo giá trị X</emph> để vẽ các đường tùy theo thứ tự của các giá trị X. Việc sắp xếp này chỉ áp dụng cho đồ thị, không phải cho dữ liệu trên bảng."
+msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
+msgstr "<bookmark_value>trục; hiển thị trục trên đồ thị</bookmark_value><bookmark_value>đồ thị; hiển thị trục</bookmark_value><bookmark_value>trục X; hiển thị</bookmark_value><bookmark_value>trục Y; hiển thị</bookmark_value><bookmark_value>trục Z; hiển thị</bookmark_value><bookmark_value>trục; co giãn khá hơn</bookmark_value><bookmark_value>trục phụ trên đồ thị</bookmark_value>"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id6949369\n"
+"04040000.xhp\n"
+"hd_id3147428\n"
+"1\n"
"help.text"
-msgid "Points and Lines"
-msgstr "Điểm và Đường"
+msgid "Axes"
+msgstr "Trục"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id9611499\n"
+"04040000.xhp\n"
+"par_id3150330\n"
+"2\n"
"help.text"
-msgid "This variant shows points and lines at the same time."
-msgstr "Biến thể này hiển thị đồng thời cả hai điểm và đường."
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
+msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id6765953\n"
+"04040000.xhp\n"
+"hd_id3156385\n"
+"46\n"
"help.text"
-msgid "3D Lines"
-msgstr "Đường 3D"
+msgid "Major axis"
+msgstr "Trục chính"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7422711\n"
+"04040000.xhp\n"
+"hd_id3146316\n"
+"5\n"
"help.text"
-msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
-msgstr "Các đường được hiển thị dạng băng. Điểm dữ liệu không được biểu tượng đại diện. Trong đồ thị đã tạo xong, chọn mục <link href=\"text/schart/01/three_d_view.xhp\">Xem 3D</link> để đặt thuộc tính như chiếu sáng và góc nhìn."
+msgid "X axis"
+msgstr "Trục X"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id239265\n"
+"04040000.xhp\n"
+"par_id3145230\n"
+"6\n"
"help.text"
-msgid "Smooth Lines"
-msgstr "Đường mịn"
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Hiển thị trục X dạng một đường thằng có các phân nhỏ.</ahelp>"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7957396\n"
+"04040000.xhp\n"
+"hd_id3147003\n"
+"17\n"
"help.text"
-msgid "Mark <emph>Smooth Lines</emph> to draw curves instead of straight line segments."
-msgstr "Đánh dấu tùy chọn <emph>Đường mịn</emph> để vẽ đường cong thay cho các đoạn đường thẳng."
+msgid "Y axis"
+msgstr "Trục Y"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1202124\n"
+"04040000.xhp\n"
+"par_id3154020\n"
+"18\n"
"help.text"
-msgid "Click <emph>Properties</emph> to set details for the curves."
-msgstr "Nhấn vào nút <emph>Thuộc tính</emph> để đặt chi tiết về đường cong."
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Hiển thị trục Y dạng một đường thằng có các phân nhỏ.</ahelp>"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5989562\n"
+"04040000.xhp\n"
+"hd_id3150345\n"
+"28\n"
"help.text"
-msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
-msgstr "<emph>Chốt trục cấp ba</emph> thì nội suy các điểm dữ liệu với hàm đa thức cấp 3. Cũng chuyển tiếp giữa các phần tử đa thức vì có cùng dốc và độ cong."
+msgid "Z axis"
+msgstr "Trục Z"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6128421\n"
+"04040000.xhp\n"
+"par_id3155113\n"
+"29\n"
"help.text"
-msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
-msgstr "<emph>Độ phân giải</emph> thì xác định bao nhiêu đoạn đường được tính để vẽ một phần hàm đa thức giữa hai điểm dữ liệu. Nhấn vào bất cứ điểm dữ liệu nào để thấy những điểm trung cấp."
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Hiển thị trục Z dạng một đường thằng có các phân nhỏ.</ahelp> Trục này chỉ hiển thị trên đồ thị ba chiều (3D)."
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id9280373\n"
+"04040000.xhp\n"
+"hd_id3150206\n"
+"36\n"
"help.text"
-msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
-msgstr ""
+msgid "Secondary axis"
+msgstr "Trục phụ"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3166428\n"
+"37\n"
+"help.text"
+msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
+msgstr "Hãy sử dụng vùng này để gán một trục phụ cho đồ thị. Nếu một dãy dữ liệu đã được gán cho trục này, $[officename] tự động hiển thị trục và nhãn tương ứng. Cũng có thể tắt thiết lập này về sau. Nếu chưa gán dữ liệu cho trục này, và bạn kích hoạt vùng này, các giá trị của trục Y chính cũng được áp dụng cho trục phụ."
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3152988\n"
+"44\n"
+"help.text"
+msgid "X axis"
+msgstr "Trục X"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3156445\n"
+"45\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Hiển thị một trục X phụ trên đồ thị.</ahelp>"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3152896\n"
+"38\n"
+"help.text"
+msgid "Y axis"
+msgstr "Trục Y"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3153818\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Hiển thị một trục Y phụ trên đồ thị.</ahelp>"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3154762\n"
+"41\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Trục chính và trục phụ có thể hiển thị khoảng co giãn (kích cỡ phân nhỏ) khác nhau. Chẳng hạn, bạn có thể đặt trục này có khoảng kích cỡ 2 cm, còn trục khác có 1,5 cm.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -1063,513 +1254,861 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows only negative error bars.</ahelp>"
msgstr "<ahelp hid=\".\">Chỉ hiển thị các thanh lỗi âm.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
+"04050100.xhp\n"
"tit\n"
"help.text"
-msgid "Smooth Line Properties"
-msgstr "Thuộc Tính Đường Mịn"
+msgid "Trend Lines"
+msgstr "Đường xu hướng"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"bm_id3803827\n"
+"04050100.xhp\n"
+"bm_id1744743\n"
"help.text"
-msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
-msgstr "<bookmark_value>đường cong;thuộc tính về đồ thị đường/XY</bookmark_value><bookmark_value>thuộc tính;đường mịn trong đồ thị đường/XY</bookmark_value>"
+msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
+msgstr "<bookmark_value>tính;đường cong hồi quy</bookmark_value><bookmark_value>đường cong hồi quy trong đồ thị</bookmark_value><bookmark_value>đường xu hướng trong đồ thị</bookmark_value><bookmark_value>đường giá trị trung bình trong đồ thị</bookmark_value>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"hd_id3050325\n"
+"04050100.xhp\n"
+"hd_id5409405\n"
"help.text"
-msgid "Smooth Line Properties"
-msgstr "Thuộc Tính Đường Mịn"
+msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
+msgstr "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Đường xu hướng</link></variable>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id9421979\n"
+"04050100.xhp\n"
+"par_id7272255\n"
"help.text"
-msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
-msgstr "Trong đồ thị hiển thị đường (kiểu <emph>Đường</emph> hay <emph>XY</emph>), bạn có thể chọn hiển thị đường cong thay cho đường thẳng. Một số tùy chọn điều khiển các thuộc tính về đường cong như vậy."
+msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
+msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Đường cong hồi quy, cũng được biết như là đường xu hướng, có thể được thêm vào tất cả các kiểu đồ thị trừ đồ thị Bánh và Chứng khoán.</ahelp></variable>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"hd_id1228370\n"
+"04050100.xhp\n"
+"par_id143436\n"
"help.text"
-msgid "To change line properties"
-msgstr "Để thay đổi thuộc tính về đường"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chưa hiển thị đường xu hướng.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id1601611\n"
+"04050100.xhp\n"
+"par_id5716727\n"
"help.text"
-msgid "Select Cubic Spline or B-Spline."
-msgstr "Chọn <emph>Chốt trục cấp ba</emph> hay <emph>Chốt trục B</emph>."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Một đường xu hướng tuyến tính được hiển thị.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id879848\n"
+"04050100.xhp\n"
+"par_id5840021\n"
"help.text"
-msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
-msgstr ""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">\">Một đường xu hướng lôga được hiển thị.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id3464461\n"
+"04050100.xhp\n"
+"par_id9417096\n"
"help.text"
-msgid "Optionally set the resolution. A higher value leads to a smoother line."
-msgstr "Tùy chọn có thể đặt độ phân giải. Giá trị cao hơn tạo đường mịn hơn."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Một đường xu hướng kiểu số mũ được hiển thị.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id6998809\n"
+"04050100.xhp\n"
+"par_id8482924\n"
"help.text"
-msgid "For B-spline lines optionally set the degree of the polynomials."
-msgstr ""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Một đường xu hướng lũy thừa được hiển thị.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id3424481\n"
+"04050100.xhp\n"
+"par_id8962370\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a cubic spline model.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Áp dụng mô hình chốt trục cấp ba.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị phương trình đường xu hướng bên cạnh đường xu hướng.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id1068758\n"
+"04050100.xhp\n"
+"par_id6889858\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a B-spline model.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Áp dụng mô hình chốt trục B.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị hệ số tương quan bên cạnh đường xu hướng.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id2320932\n"
+"04050100.xhp\n"
+"par_id8398998\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ phân giải.</ahelp>"
+msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
+msgstr "Nếu bạn chèn một đường xu hướng vào một kiểu đồ thị dùng phân loại, v.d. <emph>Đường</emph> hay <emph>Cột</emph> thì dãy số nguyên 1, 2, 3, <emph>…</emph> được dùng làm giá trị X để tính đường xu hướng."
-#: smooth_line_properties.xhp
-#, fuzzy
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id8638874\n"
+"04050100.xhp\n"
+"par_id5676747\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ phân giải.</ahelp>"
+msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
+msgstr "Để chèn đường xu hướng cho mọi chuỗi dữ liệu, nhấn đôi vào đồ thị để vào chế độ chỉnh sửa. Chọn lệnh <item type=\"menuitem\">Chèn > Đường xu hướng</item>, rồi chọn kiểu đường xu hướng: Không có, Tuyến tính, Lôga, Số mũ hay Lũy thừa."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id4349192\n"
"help.text"
-msgid "Chart Type Area"
-msgstr "Vùng Kiểu Đồ Thị"
+msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
+msgstr "Để chèn một đường xu hướng cho một chuỗi dữ liệu riêng lẻ, chọn chuỗi dữ liệu trên đồ thị, nhấn-phải để mở trình đơn ngữ cảnh, sau đó chọn lệnh <item type=\"menuitem\">Chèn > Đường xu hướng</item>."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"bm_id4130680\n"
+"04050100.xhp\n"
+"par_id9337443\n"
"help.text"
-msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
-msgstr "<bookmark_value>đồ thị vùng</bookmark_value><bookmark_value>kiểu đồ thị;vùng</bookmark_value>"
+msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
+msgstr "Để xoá một đường riêng lẻ kiểu xu hướng hay giá trị trung bình, hãy nhấn vào đường đó, sau đó bấm phím Delete."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"hd_id310678\n"
+"04050100.xhp\n"
+"par_id4529251\n"
"help.text"
-msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
-msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Vùng Kiểu Đồ Thị</link></variable>"
+msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
+msgstr "Để xoá mọi đường xu hướng, chọn lệnh trình đơn <item type=\"menuitem\">Chèn > Đường xu hướng</item>, sau đó chọn <emph>Không gì</emph>."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id916776\n"
+"04050100.xhp\n"
+"par_id296334\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
+msgid "A trend line is shown in the legend automatically."
+msgstr "Đường xu hướng được hiển thị tự động trong chú giải của đồ thị."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"hd_id961943\n"
+"04050100.xhp\n"
+"par_id4072084\n"
"help.text"
-msgid "Area"
-msgstr "Vùng"
+msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
+msgstr "<ahelp hid=\".\">Đường giá trị trung bình là đường xu hướng đặc biệt mà chỉ ra giá trị trung bình. Dùng <item type=\"menuitem\">Chèn - Đường giá trị trung bình</item> để chèn đường giá trị trung bình cho một chuỗi dữ liệu.</ahelp>"
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id631733\n"
+"04050100.xhp\n"
+"par_id9569689\n"
"help.text"
-msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
-msgstr "Đồ thị vùng hiển thị mỗi giá trị dạng một điểm trên trục Y. Trục X hiển thị các loại. Những giá trị Y của mỗi dãy dữ liệu được kết nối bằng đường. Vùng giữa hai đường được tô màu. Mục đích của đồ thị vùng là nhấn mạnh thay đổi từ loại này đến loại khác."
+msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
+msgstr "Đường xu hướng có cùng màu với chuỗi dữ liệu tương ứng. Để thay đổi các thuộc tính của đường, lựa chọn đường xu hướng rồi chọn lệnh <item type=\"menuitem\">Định dạng > Định dạng vùng chọn > Đường</item>."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id7811822\n"
+"04050100.xhp\n"
+"par_id846888\n"
"help.text"
-msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
-msgstr "Chuẩn: kiểu con này vẽ mỗi giá trị dạng giá trị Y tuyệt đối. Trước tiên nó vẽ vùng của cột cuối cùng trên dãy dữ liệu, sau đó vùng giáp cuối, vân vân, sau đó cuối cùng nó vẽ cột đầu của dữ liệu. Vì vậy, nếu cột đầu chứa giá trị cao hơn các giá trị khác, vùng đã vẽ cuối cùng sẽ ẩn các vùng khác."
+msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Để hiển thị phương trình đường xu hướng, lựa chọn đường xu hướng trên đồ thị, nhấn-phải để mở trình đơn ngữ cảnh, sau đó chọn câu lệnh <emph>Chèn phương trình đường xu hướng</emph>.</ahelp>"
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id3640247\n"
+"04050100.xhp\n"
+"par_id8962065\n"
"help.text"
-msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
-msgstr "Đống: kiểu con này vẽ các giá trị được xếp đống nhau một cách lũy tích. Nó đảm bảo mọi giá trị hiện rõ, không có tập hợp dữ liệu bị tập khác ẩn. Tuy nhiên, những giá trị Y không còn đại diện lại giá trị tuyệt đối, trừ cột cuối cùng mà được vẽ ở dưới các vùng xếp đống."
+msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
+msgstr "Khi đồ thị nằm trong chế độ chỉnh sửa, %PRODUCTNAME cung cấp phương trình của đường xu hướng và hệ số tương quan R². Hãy nhấn vào đường xu hướng để thấy thông tin trên thanh trạng thái."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id4585100\n"
+"04050100.xhp\n"
+"par_id1328470\n"
"help.text"
-msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
-msgstr "Phần trăm: kiểu con này vẽ các giá trị được xếp đống nhau một cách lũy tích, cũng có tỷ lệ theo phần trăm của tổng số phân loại."
+msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
+msgstr "Đối với đồ thị phân loại (v.d. đồ thị đường), thông tin hồi qui được tính dùng dãy số nguyên 1, 2, 3 ... làm giá trị X. Cũng đúng nếu dãy dữ liệu dùng con số khác làm tên của giá trị X. Kiểu đồ thị XY có thể thích hợp hơn với đồ thị như vậy."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id8092593\n"
"help.text"
-msgid "Data Table"
-msgstr "Bảng Dữ liệu"
+msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
+msgstr "Để hiển thị cả hai phương trình và hệ số tương quan, hãy chọn đường cong hồi quy rồi chọn lệnh trình đơn <item type=\"menuitem\">Định dạng > Định dạng vùng chọn > Phương trình</item>."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3150869\n"
-"1\n"
+"04050100.xhp\n"
+"par_id7971434\n"
"help.text"
-msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
-msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Bảng Dữ liệu\">Bảng Dữ liệu</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật « Hiện phương trình » để thấy phương trình của đường cong hồi quy.</ahelp>"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3151115\n"
-"2\n"
+"04050100.xhp\n"
+"par_id558793\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramData\">Mở hộp thoại <emph>Bảng Dữ liệu</emph>, trong đó bạn có thể chỉnh sửa dữ liệu của đồ thị.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật mục « Hiện hệ số tương quan » để thấy hệ số tương quan của đường cong hồi quy.</ahelp>"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3149667\n"
-"51\n"
+"04050100.xhp\n"
+"par_id7735221\n"
"help.text"
-msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
-msgstr "Hộp thoại <emph>Bảng Dữ liệu</emph> không sẵn sàng nếu bạn chèn một đồ thị dựa vào bảng tính Calc hay bảng Writer."
+msgid "You can also calculate the parameters using Calc functions as follows."
+msgstr "Bạn cũng có thể tính các tham số dùng hàm Calc như theo đây."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6746421\n"
+"04050100.xhp\n"
+"hd_id5744193\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
-msgstr "<link href=\"text/swriter/01/06990000.xhp\">Để cập nhật đồ thị bằng tay khi bảng Writer bị thay đổi</link>"
+msgid "The linear regression equation"
+msgstr "Phương trình hồi quy tuyến tính"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id2565996\n"
+"04050100.xhp\n"
+"par_id9251991\n"
"help.text"
-msgid "Some changes will become visible only after you close and reopen the dialog."
-msgstr "Một số thay đổi sẽ hiển thị chỉ sau khi bạn đóng rồi mở lại hộp thoại."
+msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
+msgstr "<emph>Hồi quy tuyến tính</emph> theo phương trình <item type=\"literal\">y=m*x+b</item>."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id6129947\n"
+"04050100.xhp\n"
+"par_id7951902\n"
"help.text"
-msgid "To change chart data"
-msgstr "Để thay đổi dữ liệu đồ thị"
+msgid "m = SLOPE(Data_Y;Data_X)"
+msgstr "m = SLOPE(Dữ_liệu_Y;Dữ_liệu_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id8141117\n"
+"04050100.xhp\n"
+"par_id6637165\n"
"help.text"
-msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
-msgstr "Khi bạn tạo một đồ thị dựa vào dữ liệu mặc định, hoặc khi bạn sao chép một đồ thị vào tài liệu, bạn cũng có thể mở hộp thoại <emph>Bảng Dữ liệu</emph> để gõ dữ liệu riêng. Đồ thị sẽ cập nhật động trong ô xem thử."
+msgid "b = INTERCEPT(Data_Y ;Data_X)"
+msgstr "b = INTERCEPT(Dữ_liệu_Y ;Dữ_liệu_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9487594\n"
+"04050100.xhp\n"
+"par_id7879268\n"
"help.text"
-msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
-msgstr "Đóng hộp thoại <emph>Dữ liệu Đồ thị</emph> để áp dụng các thay đổi trong dữ liệu. Chọn lệnh <emph>Sửa > Hủy bước</emph> để hủy bỏ các thay đổi."
+msgid "Calculate the coefficient of determination by"
+msgstr "Tính hệ số định trị bằng"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id4149906\n"
+"04050100.xhp\n"
+"par_id9244361\n"
"help.text"
-msgid "Insert or select a chart that is not based on existing cell data."
-msgstr "Chèn hay chọn một đồ thị không phải dựa vào dữ liệu ô đã tồn tại."
+msgid "r² = RSQ(Data_Y;Data_X)"
+msgstr "r² = RSQ(Dữ_liệu_Y;Dữ_liệu_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6064943\n"
+"04050100.xhp\n"
+"par_id2083498\n"
"help.text"
-msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
-msgstr "Chọn lệnh <emph>Xem > Bảng Dữ liệu Đồ thị</emph> để mở hộp thoại <emph>Bảng Dữ liệu</emph>."
+msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
+msgstr "Ngoài ra « m », « b » và « r² », hàm mảng <emph>LINEST</emph> cung cấp thống kê thêm để phân tích hồi quy."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3236182\n"
+"04050100.xhp\n"
+"hd_id2538834\n"
"help.text"
-msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
-msgstr ""
+msgid "The logarithm regression equation"
+msgstr "Phương trình hồi quy lôga"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9799798\n"
+"04050100.xhp\n"
+"par_id394299\n"
"help.text"
-msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
-msgstr "Nhấn vào một ô trong hộp thoại, sau đó thay đổi nội dung của nó. Nhấn vào ô khác để xem thử nội dung đã thay đổi."
+msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
+msgstr "<emph>Phương trình hồi quy lôga</emph> theo phương trình <item type=\"literal\">y=a*ln(x)+b</item>."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id1251258\n"
+"04050100.xhp\n"
+"par_id2134159\n"
"help.text"
-msgid "Enter the name of the data series in the text box above the column."
-msgstr "Gõ tên của dãy dữ liệu vào hộp văn bản bên trên cột."
+msgid "a = SLOPE(Data_Y;LN(Data_X))"
+msgstr "a = SLOPE(Dữ_liệu_Y;LN(Dữ_liệu_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id743430\n"
+"04050100.xhp\n"
+"par_id5946531\n"
"help.text"
-msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
-msgstr "Dùng các biểu tượng bên trên bảng, để chèn hay xoá hàng và cột. Đối với dãy dữ liệu có nhiều cột, chỉ có thể chèn hay xoá toàn dãy dữ liệu."
+msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
+msgstr "b = INTERCEPT(Dữ_liệu_Y ;LN(Dữ_liệu_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id8111819\n"
+"04050100.xhp\n"
+"par_id5649281\n"
"help.text"
-msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
-msgstr "Dãy dữ liệu trong đồ thị có cùng một thứ tự với bảng dữ liệu. Hãy dùng biểu tượng <emph>Chuyển dãy bên phải</emph> để chuyển đổi từ cột hiện thời sang cột bên phải."
+msgid "r² = RSQ(Data_Y;LN(Data_X))"
+msgstr "r² = RSQ(Dữ_liệu_Y;LN(Dữ_liệu_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9116794\n"
+"04050100.xhp\n"
+"hd_id7874080\n"
"help.text"
-msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
-msgstr "Các phân loại hay điểm dữ liệu trong đồ thị có cùng một thứ tự với bảng dữ liệu. Hãy dùng biểu tượng <emph>Chuyển hàng bên dưới</emph> để chuyển đổi từ cột hiện thời sang cột bên dưới."
+msgid "The exponential regression equation"
+msgstr "Phương trình hồi quy số mũ"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3150297\n"
-"20\n"
+"04050100.xhp\n"
+"par_id4679097\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chèn một hàng mới bên dưới hàng hiện thời.</ahelp>"
+msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
+msgstr "Đối với đường cong hồi quy số mũ thì chuyển dạng sang mô hình tuyến tính. Hàm vừa khít đường cong tối ưu cân xứng với mô hình tuyến tính, và kết quả được giải thích cho phù hợp."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3145384\n"
-"23\n"
+"04050100.xhp\n"
+"par_id9112216\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chèn một cột mới đằng sau cột hiện thời.</ahelp>"
+msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
+msgstr "Phương trình hồi quy số mũ theo phương trình <item type=\"literal\">y=b*exp(a*x)</item> hay <item type=\"literal\">y=b*m^x</item>, mà được chuyển dạng thành <item type=\"literal\">ln(y)=ln(b)+a*x</item> hay <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> riêng từng cái."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3152297\n"
+"04050100.xhp\n"
+"par_id4416638\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
-msgstr ""
+msgid "a = SLOPE(LN(Data_Y);Data_X)"
+msgstr "a = SLOPE(LN(Dữ_liệu_Y);Dữ_liệu_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3159231\n"
-"26\n"
+"04050100.xhp\n"
+"par_id1039155\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá hàng hiện thời. Không thể xoá hàng nhãn.</ahelp>"
+msgid "The variables for the second variation are calculated as follows:"
+msgstr "Giá trị cho biến thể thứ hai được tính như theo :"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3153336\n"
-"29\n"
+"04050100.xhp\n"
+"par_id7184057\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá cột hiện thời. Không thể xoá cột nhãn.</ahelp>"
+msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
+msgstr "m = EXP(SLOPE(LN(Dữ_liệu_Y);Dữ_liệu_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id4089175\n"
+"04050100.xhp\n"
+"par_id786767\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chuyển đổi từ cột hiện thời sang cột bên phải.</ahelp>"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
+msgstr "b = EXP(INTERCEPT(LN(Dữ_liệu_Y);Dữ_liệu_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3949095\n"
+"04050100.xhp\n"
+"par_id7127292\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chuyển đổi từ hàng hiện thời sang cột bên dưới.</ahelp>"
+msgid "Calculate the coefficient of determination by"
+msgstr "Tính hệ số định trị bằng"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6697286\n"
+"04050100.xhp\n"
+"par_id5437177\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên cho dãy dữ liệu.</ahelp>"
+msgid "r² = RSQ(LN(Data_Y);Data_X)"
+msgstr "r² = RSQ(LN(Dữ_liệu_Y);Dữ_liệu_X)"
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id6946317\n"
"help.text"
-msgid "Legend"
-msgstr "Chú giải"
+msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
+msgstr "Ngoài ra « m », « b » và « r² », hàm mảng LOGEST cung cấp thống kê thêm để phân tích hồi quy."
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3145800\n"
-"1\n"
+"04050100.xhp\n"
+"hd_id6349375\n"
"help.text"
-msgid "Legend"
-msgstr "Chú giải"
+msgid "The power regression equation"
+msgstr "Phương trình hồi quy lũy thừa"
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"par_id3146972\n"
-"2\n"
+"04050100.xhp\n"
+"par_id1857661\n"
"help.text"
-msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
-msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Xác định các thuộc tính viền, vùng và ký tự cho chú giải.</ahelp></variable>"
+msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+msgstr "Đối với đường cong <emph>hồi quy lũy thừa</emph> thì chuyển dạng thành mô hình tuyến tính. Hồi quy lũy thừa theo phương trình <item type=\"literal\">y=b*x^a</item> , mà được chuyển dạng thành <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3145232\n"
-"4\n"
+"04050100.xhp\n"
+"par_id8517105\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
+msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
+msgstr "a = SLOPE(LN(Dữ_liệu_Y);LN(Dữ_liệu_X))"
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3147344\n"
-"3\n"
+"04050100.xhp\n"
+"par_id9827265\n"
"help.text"
-msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
-msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Hiển thị\">Hiển thị</link>"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
+msgstr "b = EXP(INTERCEPT(LN(Dữ_liệu_Y);LN(Dữ_liệu_X))"
-#: 05120000.xhp
+#: 04050100.xhp
msgctxt ""
-"05120000.xhp\n"
+"04050100.xhp\n"
+"par_id2357249\n"
+"help.text"
+msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
+msgstr "r² = RSQ(LN(Dữ_liệu_Y);LN(Dữ_liệu_X))"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id9204077\n"
+"help.text"
+msgid "Constraints"
+msgstr "Ràng buộc"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7393719\n"
+"help.text"
+msgid "The calculation of the trend line considers only data pairs with the following values:"
+msgstr "Phép tính đường xu hướng chỉ nhận ra đôi dữ liệu có giá trị này:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7212744\n"
+"help.text"
+msgid "logarithm regression: only positive x-values are considered,"
+msgstr "hồi quy lôga: chỉ nhận ra giá trị X dương."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1664479\n"
+"help.text"
+msgid "exponential regression: only positive y-values are considered,"
+msgstr "hồi quy số mũ: chỉ nhận ra giá trị Y dương."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8734702\n"
+"help.text"
+msgid "power regression: only positive x-values and positive y-values are considered."
+msgstr "hồi quy lũy thừa: chỉ nhận ra giá trị X dương và giá trị Y dương."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id181279\n"
+"help.text"
+msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
+msgstr "Khuyên bạn chuyển dạng dữ liệu cho phụ hợp: tốt nhất khi làm việc với bản sao của dữ liệu gốc, và chuyển dạng dữ liệu đã sao chép."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id7907040\n"
+"help.text"
+msgid "The polynomial regression equation"
+msgstr "Phương trình hồi quy đa thức"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8918729\n"
+"help.text"
+msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
+msgstr "Đường cong <emph>hồi quy đa thức</emph> không thể được thêm tự động. Bạn cần phải tự tính đường cong này."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id33875\n"
+"help.text"
+msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
+msgstr "Hãy tạo một bảng có cột « x, x², x³, … , xⁿ, y » đến cấp n đã thích."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8720053\n"
+"help.text"
+msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X."
+msgstr "Dùng công thức <item type=\"literal\">=LINEST(Dữ_liệu_Y,Dữ_liệu_X)</item> với toàn phạm vi « x đến xⁿ » (không có tiêu đề) làm « Dữ_liệu_X »."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5068514\n"
+"help.text"
+msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
+msgstr "Hàng đầu của kết xuất LINEST chứa các hệ số của hàm đa thức hồi quy, có hệ số « xⁿ » ở vị trí bên trái cùng."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8202154\n"
+"help.text"
+msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
+msgstr "Phần tử đầu của hàng thứ ba của kết xuất LINEST là giá trị của « r² ». Xem hàm <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> để tìm chi tiết về cách sử dụng đúng và lời giải thích các tham số xuất khác."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562211\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\">Trang thẻ Thanh lỗi Y</link>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrangement"
-msgstr "Sắp đặt"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3159153\n"
+"04060000.xhp\n"
+"bm_id3149400\n"
+"help.text"
+msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
+msgstr "<bookmark_value>canh lề; đồ thị hai chiều (2D)</bookmark_value><bookmark_value>đồ thị; canh lề</bookmark_value><bookmark_value>đồ thị bánh;tùy chọn</bookmark_value>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3149400\n"
"1\n"
"help.text"
-msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
-msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Sắp đặt\">Sắp đặt</link>"
+msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3145750\n"
+"04060000.xhp\n"
+"par_id3155067\n"
"2\n"
"help.text"
-msgid "Allows you to modify the order of the data series already set in the chart."
-msgstr "Cho phép bạn sửa đổi thứ tự của dãy dữ liệu đã được đặt trên đồ thị."
+msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
+msgstr "Hãy dùng hộp thoại này để xác định các tùy chọn sẵn sàng cho một số kiểu đồ thị cụ thể. Nội dung của hộp thoại <emph>Tùy chọn</emph> thì biến đổi tùy theo kiểu đồ thị."
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3155411\n"
-"8\n"
+"04060000.xhp\n"
+"hd_id3150043\n"
+"9\n"
"help.text"
-msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
-msgstr "Vị trí của dữ liệu trên bảng dữ liệu sẽ không thay đổi. Bạn chỉ có thể chọn lệnh như vậy sau khi chèn đồ thị vào $[officename] Calc."
+msgid "Align data series to:"
+msgstr "Đặt chuỗi dữ liệu theo :"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3154757\n"
+"04060000.xhp\n"
+"par_id3145228\n"
+"10\n"
+"help.text"
+msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
+msgstr "Trong vùng này, bạn có thể chọn trong hai chế độ tỷ lệ trục Y khác nhau. Chỉ có thể đặt tỷ lệ và gán thuộc tính cho mỗi trục riêng."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3147346\n"
+"4\n"
+"help.text"
+msgid "Primary Y axis"
+msgstr "Trục Y chính"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3147005\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">Tùy chọn này hoạt động theo mặc định. Mọi dãy dữ liệu được đồng chỉnh theo trục Y chính.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3143221\n"
"5\n"
"help.text"
-msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
-msgstr "Chức năng này chủ hoạt động nếu bạn có dữ liệu được hiển thị theo cột. Không thể chuyển đổi sang hiển thị theo hàng."
+msgid "Secondary Y axis"
+msgstr "Trục Y phụ"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3147339\n"
-"3\n"
+"04060000.xhp\n"
+"par_id3154656\n"
+"11\n"
"help.text"
-msgid "Bring Forward"
-msgstr "Nâng lên"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Thay đổi tỷ lệ của trục Y. Trục này chỉ hiển thị khi có ít nhất một dãy dữ liệu được gán cho nó, cũng hiển thị ô xem trục.</ahelp>"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3149259\n"
+"04060000.xhp\n"
+"hd_id3166423\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
-msgstr "<ahelp hid=\".uno:Forward\">Đem dãy dữ liệu được chọn ra trước (sang bên phải).</ahelp>"
+msgid "Settings"
+msgstr "Thiết lập"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3146316\n"
-"4\n"
+"04060000.xhp\n"
+"par_id3150365\n"
+"12\n"
"help.text"
-msgid "Send Backward"
-msgstr "Gửi về sau"
+msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
+msgstr "Ở đây thì xác định thiết lập cho đồ thị kiểu thanh. Thay đổi áp dụng cho mọi dãy dữ liệu của đồ thị, không phải chỉ cho dữ liệu được chọn."
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3147001\n"
+"04060000.xhp\n"
+"hd_id3145584\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
-msgstr "<ahelp hid=\".uno:Backward\">Gửi dãy dữ liệu được chọn về sau (sang bên trái).</ahelp>"
+msgid "Spacing"
+msgstr "Giãn cách"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155376\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Xác định khoảng cách giữa các cột, theo phần trăm.</ahelp> Giá trị tối đa là 600% (6× khoảng cách mặc định)."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3145384\n"
+"8\n"
+"help.text"
+msgid "Overlap"
+msgstr "Chồng lên nhau"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3156447\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Xác định thiết lập cần thiết cho các dãy dữ liệu chồng lên nhau.</ahelp> Có thể chọn trong phạm vi -100% đến +100%."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3153305\n"
+"16\n"
+"help.text"
+msgid "Connection Lines"
+msgstr "Đường nối"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3148868\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">Đối với đồ thị kiểu cột « đống » và « phần trăm » (thanh nằm dọc), hãy đánh dấu trong hộp chọn này để kết nối bằng đường các lớp cột thuộc nhau.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id9842219\n"
+"help.text"
+msgid "Show bars side by side"
+msgstr "Hiện các thanh cạnh nhau"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id9800103\n"
+"help.text"
+msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
+msgstr "Nếu có hai trục hiển thị trên một đồ thị thanh, và một số chuỗi dữ liệu kèm theo trục thứ nhất, còn một số chuỗi dữ liệu khác kèm theo trục thứ hai, thì mỗi nhóm chuỗi dữ liệu được hiển thị riêng, cả hai nhóm chồng lên nhau."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2144535\n"
+"help.text"
+msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
+msgstr "Kết quả là các thanh kèm theo trục Y thứ nhất bị ẩn một phần hay hoàn toàn bởi các thanh kèm theo trục Y thứ hai. Để tránh trường hợp này, hãy bật tùy chọn hiển thị các thanh cạnh nhau. <ahelp hid=\".\">Các thanh từ những chuỗi dữ liệu khác nhau được hiển thị như thể chúng chỉ gắn vào một trục.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id24414\n"
+"help.text"
+msgid "Clockwise direction"
+msgstr "Theo xuôi chiều"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2527237\n"
+"help.text"
+msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
+msgstr "Sẵn sàng cho các đồ thị kiểu bánh và vòng. <ahelp hid=\".\">Hướng mặc định theo đó sắp xếp các hình quạt của một đồ thị bánh là ngược chiều. Bật tùy chọn <emph>Hướng xuôi chiều</emph> để vẽ các hình quạt theo chiều đối diện.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id401013\n"
+"help.text"
+msgid "Starting angle"
+msgstr "Góc đầu"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id761131\n"
+"help.text"
+msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
+msgstr "<ahelp hid=\".\">Kéo dấu chấm nhỏ đọc theo hình tròn, hoặc nhấn vào bất cứ vị trí nào trên hình tròn, để đặt góc đầu của một đồ thị kiểu bánh hay vòng. Góc đầu là vị trí góc toán học ở đó hình quạt thứ nhất được vẽ. Giá trị 90 độ thì vẽ hình quạt thứ nhất ở vị trí 12 giờ trên đĩa đồng hồ. Giá trị 0 độ thì bắt đầu ở vị trí 3 giờ.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id553910\n"
+"help.text"
+msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
+msgstr "Trong các đồ thị ba chiều (3D) kiểu bánh và vòng được tạo bằng phiên bản phần mềm cũ, góc đầu là 0 độ (thay cho 90 độ). Đối với các đồ thị hai chiều cả cũ lẫn mới đều, góc đầu mặc định là 90 độ."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id1414838\n"
+"help.text"
+msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
+msgstr "Khi bạn sửa đổi góc đầu hay hướng, chỉ phiên bản hiện thời của phần mềm sẽ hiển thị những giá trị đã thay đổi. Các phiên bản phần mềm cũ chỉ hiển thị cùng một tài liệu với các giá trị mặc định: lúc nào cũng theo xuôi chiều và có góc đầu 90 độ (đồ thị bánh hai chiều) hoặc 0 độ (đồ thị bánh ba chiều)."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3179723\n"
+"help.text"
+msgid "Degrees"
+msgstr "Độ"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2164067\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập góc đầu (giữa 0 và 359 độ). Bạn cũng có thể nhấn vào các mũi tên để điều chỉnh giá trị đang hiển thị.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524613\n"
+"help.text"
+msgid "Plot missing values"
+msgstr "Vẽ phác giá trị thiếu"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524650\n"
+"help.text"
+msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
+msgstr "Đôi khi giá trị đang bị thiếu trong một chuỗi dữ liệu để trình bày trong một biểu đồ. Bạn có thể chọn từ các tùy chọn khác để vẽ phác các giá trị thiếu. Các tùy chọn này khả dụng chỉ với một số loại biểu đồ."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524823\n"
+"help.text"
+msgid "Leave gap"
+msgstr "Bỏ khoảng hở"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524811\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
+msgstr "<ahelp hid=\".\">Với một giá trị thiếu, sẽ không có dữ liệu nào hiển thị. Đây là mặc định đối với các loại biểu đồ Cột, Thanh, Đường, Chấm.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524811\n"
+"help.text"
+msgid "Assume zero"
+msgstr "Coi như bằng không"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052489\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
+msgstr "<ahelp hid=\".\">Với một giá trị thiếu, giá trị y sẽ hiển thị như số không. Đây là mặc định đối với loại biểu đồ Vùng.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524837\n"
+"help.text"
+msgid "Continue line"
+msgstr "Đường liên tục"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524938\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
+msgstr "<ahelp hid=\".\">Với một giá trị thiếu, sẽ hiển thị nội suy từ các giá trị lân cận. Đây là mặc định đối với loại biểu đồ XY.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524937\n"
+"help.text"
+msgid "Include values from hidden cells"
+msgstr "Gồm giá trị từ các ô bị ẩn"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052494\n"
+"help.text"
+msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kiểm để hiển thị cả giá trị các ô đang bị ẩn, trong phạm vi các ô nguồn.</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -1767,754 +2306,321 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Adds gridlines that subdivide the Z axis into smaller sections.</ahelp> This option is only available if you're working with 3D charts."
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Thêm các đường lưới để chia trục Z ra nhiều phần nhỏ hơn.</ahelp> Tùy chọn này chỉ sẵn sàng đối với đồ thị ba chiều (3D)."
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
+"05010000.xhp\n"
"tit\n"
"help.text"
-msgid "Axes"
-msgstr "Trục"
+msgid "Format Selection"
+msgstr "Định dạng vùng chọn"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"bm_id3153768\n"
+"05010000.xhp\n"
+"bm_id3149666\n"
"help.text"
-msgid "<bookmark_value>axes;formatting</bookmark_value>"
-msgstr "<bookmark_value>trục;định dạng</bookmark_value>"
+msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
+msgstr "<bookmark_value>đối tượng;thuộc tính của đồ thị</bookmark_value><bookmark_value>đồ thị; thuộc tính</bookmark_value><bookmark_value>thuộc tính;đồ thị</bookmark_value>"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3153768\n"
+"05010000.xhp\n"
+"hd_id3149666\n"
"1\n"
"help.text"
-msgid "Axes"
-msgstr "Trục"
+msgid "Format Selection"
+msgstr "Định dạng vùng chọn"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3154319\n"
+"05010000.xhp\n"
+"par_id3156284\n"
"2\n"
"help.text"
-msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
-msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Mở hộp thoại, trong đó bạn có thể chỉnh sửa các thuộc tính của trục đã chọn.</ahelp></variable> Tên của hộp thoại phụ thuộc vào tên của trục đã chọn."
+msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
+msgstr ""
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3149667\n"
+"05010000.xhp\n"
+"hd_id3153418\n"
"3\n"
"help.text"
-msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y\">Trục Y</link> có hộp thoại đã tăng cường. Đối với các đồ thị kiểu XY, đồ thị trục X cũng có thẻ <link href=\"text/schart/01/05040201.xhp\" name=\"Co giãn\"><emph>Co giãn</emph></link>."
+msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
+msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Nền đồ thị\">Nền đồ thị</link>"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3159266\n"
+"05010000.xhp\n"
+"hd_id3155766\n"
"4\n"
"help.text"
-msgid "Scaling the X axis is only possible in the X-Y chart type."
-msgstr "Khả năng co giãn trục X chỉ tồn tại trong đồ thị kiểu XY."
+msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
+msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Vùng đồ thị\">Vùng đồ thị</link>"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3145230\n"
+"05010000.xhp\n"
+"hd_id3154255\n"
"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"tit\n"
-"help.text"
-msgid "3D View"
-msgstr "Xem 3D"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"bm_id3156423\n"
-"help.text"
-msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
-msgstr "<bookmark_value>đồ thị 3D</bookmark_value><bookmark_value>đồ thị; khung nhìn 3D</bookmark_value><bookmark_value>chiếu sáng; đồ thị 3D</bookmark_value>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id3464461\n"
-"help.text"
-msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
-msgstr "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">Xem 3D</link></variable>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6998809\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, hoặc trong trình đơn ngữ cảnh của đồ thị, bạn có thể chọn kiểu đồ thị.<ahelp hid=\".\" visibility=\"hidden\">Hở hộp thoại để sửa các thuộc tính của khung nhìn ba chiều đối với các đồ thị kiểu Cột, Thanh, Bánh và Vùng. Đối với các đồ thị kiểu Đường và XY (Rải), bạn có thể thấy các đường ba chiều.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6942045\n"
-"help.text"
-msgid "The chart preview responds to the new settings that you enter in the dialog."
-msgstr "Ô xem thử đồ thị sẽ hiển thị thay đổi được làm trong hộp thoại."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3806878\n"
-"help.text"
-msgid "When you leave the dialog with OK, the settings are applied permanently."
-msgstr "Khi bạn bấm nút <emph>OK</emph> để rời hộp thoại, các thiết lập được áp dụng ngay."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id130619\n"
-"help.text"
-msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
-msgstr "Khi bạn bấm nút <emph>Thôi</emph> hay <emph>Thoát</emph> để rời hộp thoại, đồ thị sẽ trở về tình trạng trước khi bạn mở hộp thoại."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8081911\n"
-"help.text"
-msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
-msgstr "Đối với đồ thị ba chiều, bạn có thể chọn mục trình đơn <item type=\"menuitem\">Định dạng > Xem 3D</item> để đặt các giá trị phối cảnh, diện mạo và chiếu sáng."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id2924283\n"
-"help.text"
-msgid "Perspective"
-msgstr "Phối cảnh"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5781731\n"
-"help.text"
-msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
-msgstr "Gõ các giá trị để xoay đồ thị trên ba trục, và cho ô xem phối cảnh."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9999694\n"
-"help.text"
-msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
-msgstr "Đặt mọi góc thành 0 để thấy đồ thị từ một điểm đằng trước. Từ góc nhìn này, đồ thị bánh và đồ thị vòng được hiển thị dạng hình tròn."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2861720\n"
-"help.text"
-msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
-msgstr "Khi bật trục góc vuông, bạn có thể xoay nội dung đồ thị chỉ theo chiều X và Y, tức là song song với các viền đồ thị."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2216559\n"
-"help.text"
-msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
-msgstr "Đặt giá trị X thành 90º, và giá trị Y và X thành 0º, để thấy đồ thị từ ở trên (ô xem theo mắt chim). Đặt X thành -90º để thấy từ bên dưới đồ thị."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7869502\n"
-"help.text"
-msgid "The rotations are applied in the order first x, then y, last z."
-msgstr "Giá trị xoay được áp dụng theo thứ tự X, Y, Z."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9852900\n"
-"help.text"
-msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
-msgstr "Khi dùng bóng râm và xoay đồ thị thì các nguồn sáng cũng được xoay như là chúng được gắn vào đồ thị."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2578203\n"
-"help.text"
-msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
-msgstr "Các trục xoay luôn luôn tương đối với trang, không phải với trục của đồ thị. Trường hợp này khác với một số chương trình đồ thị khác."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id4923245\n"
-"help.text"
-msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection."
-msgstr "Hãy đánh dấu trong hộp chọn <emph>Phối cảnh</emph> để thấy đồ thị từ góc nhìn trung tâm, giống như qua ống kính máy ảnh, thay vì dùng sự chiếu song song."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3416547\n"
-"help.text"
-msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
-msgstr "Đặt tiêu cự bằng nút xoay. Giá trị 100% cung cấp ô xem đồ thị trong đó kích cỡ cạnh xa hình khoảng một nửa cạnh gần."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3791924\n"
-"help.text"
-msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
-msgstr "Phiên bản %PRODUCTNAME cũ hơn không thể hiển thị phần trăm phối cảnh giống như phiên bản này."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7623828\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật trục góc vuông thì bạn có thể xoay nội dung đồ thị chỉ theo chiều X và Y, tức là song song với các viền đồ thị. Trục góc vuông được bật theo mặc định cho các đồ thị ba chiều mới tạo. Đồ thị kiểu bánh và vòng không hỗ trợ trục góc vuông.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id4721823\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ xoay của đồ thị trên trục X. Ô xem thử sẽ hiển thị thay đổi.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5806756\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ xoay của đồ thị trên trục Y. Ô xem thử sẽ hiển thị thay đổi.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8915372\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ xoay của đồ thị trên trục Z. Ô xem thử sẽ hiển thị thay đổi.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6070436\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đánh dấu trong hộp chọn <emph>Phối cảnh</emph> để thấy đồ thị giống như qua ống kính máy ảnh. Dùng hộp xoay để đặt phần trăm. Giá trị phần trăm cao hơn sẽ làm cho đối tượng ở gần hiển thị lớn hơn đối tượng ở xa.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id7564012\n"
-"help.text"
-msgid "Appearance"
-msgstr "Diện mạo"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id1186254\n"
-"help.text"
-msgid "Select a scheme from the list box."
-msgstr "Chọn lược đồ trong hộp liệt kê."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7432477\n"
-"help.text"
-msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
-msgstr "Chọn lược đồ thì đặt các hộp chọn và nguồn ánh sáng tương ứng."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7141026\n"
-"help.text"
-msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
-msgstr "Đánh dấu hay bỏ dấu trong một tổ hợp các hộp chọn không được lược đồ <emph>Hiện thực</emph> hay <emph>Đơn giản</emph> đại diện thì bạn tạo một lược đồ riêng."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id1579027\n"
-"help.text"
-msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
-msgstr "Đánh dấu trong hộp thoại chọn <emph>Đổ bóng</emph> để sử dụng phương pháp Gouraud khi hiển thị mặt, không thì dùng phương pháp phẳng."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5624561\n"
-"help.text"
-msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible."
-msgstr "Phương pháp phẳng đặt chỉ một màu và một độ sáng cho mỗi hình đa giác. Các cạnh hiện rõ, nhưng không thể hiển thị dải màu mềm hay ánh sáng chấm."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5901058\n"
-"help.text"
-msgid "The Gouraud method applies gradients for a smoother, more realistic look."
-msgstr "Phương pháp Gouraud áp dụng dải màu để hiển thị mịn hơn, hiện thực hơn."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8469191\n"
-"help.text"
-msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
-msgstr "Đánh dấu tùy chọn <emph>Viền đối tượng</emph> để vẽ đường dọc theo các cạnh."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id4407483\n"
-"help.text"
-msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
-msgstr "Đánh dấu tùy chọn <emph>Cạnh tròn</emph> để làm mịn các cạnh của hình hộp."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8531449\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn lược đồ trong hộp liệt kê, hoặc nhấn vào bất cứ hộp chọn nào bên dưới.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9183935\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật thì áp dụng phương pháp đổ bóng Gouraud, không thì đổ bóng phẳng.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id946684\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị viền chung quanh vùng, bằng cách đặt kiểu dáng đường thành <emph>Đặc</emph>.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9607226\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mỗi cạnh được làm tròn theo 5%.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id1939451\n"
-"help.text"
-msgid "Illumination"
-msgstr "Chiếu sáng"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9038972\n"
-"help.text"
-msgid "Set the light sources for the 3D view."
-msgstr "Đặt các nguồn ánh sáng cho ô xem ba chiều."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6531266\n"
-"help.text"
-msgid "Click any of the eight buttons to switch a directed light source on or off."
-msgstr "Nhấn vào bất cứ nút nào trong tám nút, để mở hay tắt nguồn ánh sáng trực tiếp."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6173894\n"
-"help.text"
-msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
-msgstr "Mặc định là mở nguồn ánh sáng thứ hai. Nó là cái thứ nhất của bảy nguồn ánh sáng đều « chuẩn »."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2761314\n"
-"help.text"
-msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
-msgstr "Đối với nguồn ánh sáng đã chọn thì bạn có thể chọn màu và cường độ trong hộp liệt kê ngay bên dưới tám nút bấm. Các giá trị độ sáng của mỗi ánh sáng được cộng với nhau, vì vậy hãy sử dụng màu tối khi mở nhiều ánh sáng."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3912778\n"
-"help.text"
-msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
-msgstr "Ô xem thử nhỏ bên trong trang thẻ này có hai con trượt để đặt vị trí nằm ngang và nằm dọc của ánh sáng đã chọn. Nguồn ánh sáng luôn luôn nhắm vào trung tâm của đối tượng."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3163853\n"
-"help.text"
-msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
-msgstr "Nút trong góc của ô xem nhỏ sẽ chuyển đổi mô hình chiếu sáng nội bộ giữa hình cầu và hình khối."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id121158\n"
-"help.text"
-msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
-msgstr "Hãy sử dụng hộp liệt kê <emph>Ánh sáng chung quanh</emph> để xác định ánh sáng chung quanh mà chiếu cùng sáng từ mọi hướng."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2423780\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kéo con trượt bên phai để đặt bề cao nằm dọc và hướng của nguồn ánh sáng đã chọn.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2569658\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kéo con trượt bên dưới để đặt vị trí nằm ngang và hướng của nguồn ánh sáng đã chọn.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6394238\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để chuyển đổi giữa mô hình chiếu sáng hình cầu và hình khối.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id533768\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để kích hoạt hay ngừng kích hoạt nguồn ánh sáng long lanh có tô sáng.</ahelp>"
+msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
+msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Sàn đồ thị\">Sàn đồ thị</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id7214270\n"
+"05010000.xhp\n"
+"hd_id3146313\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để kích hoạt hay ngừng kích hoạt nguồn ánh sáng đều.</ahelp>"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề\">Tựa đề</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2186346\n"
+"05010000.xhp\n"
+"hd_id3150297\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một màu cho nguồn ánh sáng đã chọn.</ahelp>"
+msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
+msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Chú giải\">Chú giải</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id1331217\n"
+"05010000.xhp\n"
+"hd_id3143219\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn màu trong hộp thoại màu sắc.</ahelp>"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục X\">Trục X</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id393993\n"
+"05010000.xhp\n"
+"hd_id3150207\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một màu cho ánh sáng chung quanh.</ahelp>"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y\">Trục Y</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id5871761\n"
+"05010000.xhp\n"
+"hd_id3166432\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn màu trong hộp thoại màu sắc.</ahelp>"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới\">Lưới</link>"
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
+"05010100.xhp\n"
"tit\n"
"help.text"
-msgid "Positioning"
-msgstr "Vị trí"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"bm_id3150869\n"
-"help.text"
-msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
-msgstr "<bookmark_value>vị trí; trục</bookmark_value><bookmark_value>biểu đồ;vị trí đặt trục</bookmark_value><bookmark_value>trục X;vị trí</bookmark_value><bookmark_value>trục Y;vị trí</bookmark_value><bookmark_value>trục;đánh dấu khoảng</bookmark_value>"
+msgid "Data Point"
+msgstr "Điểm dữ liệu"
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3150868\n"
+"05010100.xhp\n"
+"hd_id3153768\n"
"1\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
-msgstr "<link href=\"text/schart/01/05040202.xhp\" name=\"Đặt vị trí\">Đặt vị trí</link>"
+msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
+msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Điểm dữ liệu\">Điểm dữ liệu</link>"
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3154013\n"
+"05010100.xhp\n"
+"par_id3152577\n"
"2\n"
"help.text"
-msgid "Controls the positioning of the axis."
-msgstr "Điều chỉnh vị trí đặt trục."
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801024782\n"
-"help.text"
-msgid "Axis line"
-msgstr "Đường trục"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801024970\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select where to cross the other axis: at start, at end, at a specified value, or at a category.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn điểm cắt với trục còn lại: Tại điểm bắt đầu, kết thúc, một vị trí xác định hay một loại.</ahelp>"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801024957\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value where the axis line should cross the other axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Điền giá trị mà tại đó đường trục sẽ giao với trục còn lại.</ahelp>"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"par_id100620080102503\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the category where the axis line should cross the other axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn loại mục mà tại đó đường trục sẽ giao với trục còn lại.</ahelp>"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"hd_id100620080102509\n"
-"help.text"
-msgid "Labels"
-msgstr "Nhãn"
+msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgstr "Hộp thoại này cho bạn có khả năng thay đổi các thuộc tính của một điểm dữ liệu đã chọn. Hộp thoại xuất hiện khi chỉ có một điểm dữ liệu được chọn, nếu bạn chọn lệnh <emph>Định dạng > Định dạng vùng chọn</emph>. Một số mục trình đơn chỉ khả dụng đối với đối tượng hai chiều (2D) hay ba chiều (3D)."
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801523879\n"
+"05010100.xhp\n"
+"par_id3149121\n"
+"3\n"
"help.text"
-msgid "Place labels"
-msgstr "Đặt nhãn"
+msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
+msgstr "Thay đổi được làm sẽ ảnh hưởng đến chỉ điểm dữ liệu riêng lẻ này. Sửa màu thanh, chỉ màu của thanh riêng đó sẽ thay đổi."
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801523889\n"
+"05010200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Select where to place the labels: near axis, near axis (other side), outside start, or outside end.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn vị trí đặt nhãn: Gần trục theo hai mặt, điểm bắt đầu bên ngoài, hoặc điểm kết thúc bên ngoài.</ahelp>"
+msgid "Data Series"
+msgstr "Dãy dữ liệu"
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801025030\n"
+"05010200.xhp\n"
+"hd_id3150449\n"
+"1\n"
"help.text"
-msgid "Interval marks"
-msgstr "Đánh dấu khoảng"
+msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
+msgstr "<link href=\"text/schart/01/05010200.xhp\" name=\"Dãy dữ liệu\">Dãy dữ liệu</link>"
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3149048\n"
-"65\n"
+"05010200.xhp\n"
+"par_id3145750\n"
+"2\n"
"help.text"
-msgid "Major:"
-msgstr "Chính:"
+msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgstr "Hãy sử dụng chức năng này để thay đổi các thuộc tính của một dãy dữ liệu đã chọn. Hộp thoại này xuất hiện khi chỉ có một dãy dữ liệu được chọn, khi bạn chọn lệnh trình đơn <emph>Định dạng > Định dạng vùng chọn</emph>. Một số mục trình đơn riêng chỉ sẵn sàng đối với đối tượng hai chiều (2D) hay ba chiều (3D)."
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3150397\n"
-"71\n"
+"05010200.xhp\n"
+"par_id3154015\n"
+"4\n"
"help.text"
-msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
-msgstr "Ghi rõ có nên hiển thị các dấu ở bên trong hay ở bên ngoài của trục. Cũng có thể hiển thị dấu ở cả hai bên."
+msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
+msgstr "Thay đổi được làm sẽ ảnh hưởng đến toàn dãy dữ liệu. Tay đổi màu thì mọi phần tử thuộc về dãy dữ liệu này sẽ cũng có màu đã thay đổi."
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3151387\n"
-"66\n"
+"05010200.xhp\n"
+"hd_id3146916\n"
+"3\n"
"help.text"
-msgid "Inner"
-msgstr "Bên trong"
+msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Thanh lỗi Y\">Thanh lỗi Y</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3156399\n"
-"72\n"
+"05020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Specifies that marks are placed on the inner side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Ghi rõ có nên hiển thị các dấu ở bên trong của trục.</ahelp>"
+msgid "Title"
+msgstr "Tựa đề"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3166469\n"
-"67\n"
+"05020000.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "Outer"
-msgstr "Bên ngoài"
+msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
+msgstr "<bookmark_value>tựa đề; định dạng đồ thị</bookmark_value><bookmark_value>định dạng; tựa đề đồ thị</bookmark_value>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3153120\n"
-"73\n"
+"05020000.xhp\n"
+"hd_id3150791\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Ghi rõ có nên hiển thị các dấu ở bên ngoài của trục.</ahelp>"
+msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Tựa đề\">Tựa đề</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3159128\n"
-"68\n"
+"05020000.xhp\n"
+"par_id3125863\n"
+"2\n"
"help.text"
-msgid "Minor:"
-msgstr "Phụ:"
+msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
+msgstr "Trình đơn <emph>Tựa đề</emph> thì mở trình đơn phụ để chỉnh sửa các thuộc tính của tựa đề trên đồ thị."
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3146885\n"
-"74\n"
+"05020000.xhp\n"
+"hd_id3155414\n"
+"3\n"
"help.text"
-msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
-msgstr "Vùng này được dùng để xác định dấu gạch nằm giữa các dấu trên trục. Có thể kích hoạt cả hai kiểu dấu, thì hiển thị một đường đặt dấu mà chạy từ bên ngoài vào trong."
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề chính\">Tựa đề chính</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3150654\n"
-"69\n"
+"05020000.xhp\n"
+"hd_id3156441\n"
+"4\n"
"help.text"
-msgid "Inner"
-msgstr "Bên trong"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Phụ đề\">Phụ đề</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3146880\n"
-"75\n"
+"05020000.xhp\n"
+"hd_id3151073\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Ghi rõ có nên hiển thị các dấu khoảng nhỏ ở bên trong của trục.</ahelp>"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề trục X\">Tựa đề trục X</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3154677\n"
-"70\n"
+"05020000.xhp\n"
+"hd_id3154732\n"
+"6\n"
"help.text"
-msgid "Outer"
-msgstr "Bên ngoài"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Tựa đề trục Y\">Tựa đề trục Y</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3150745\n"
-"76\n"
+"05020000.xhp\n"
+"hd_id3154017\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">SGhi rõ có nên hiển thị các dấu khoảng nhỏ ở bên ngoài của trục.</ahelp>"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề trục Z\">Tựa đề trục Z</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801025271\n"
+"05020000.xhp\n"
+"hd_id3153711\n"
+"8\n"
"help.text"
-msgid "Place marks"
-msgstr "Đánh dấu"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Mọi tựa đề\">Mọi tựa đề</link>"
-#: 05040202.xhp
+#: 05020100.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801025278\n"
+"05020100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>"
-msgstr "<ahelp hid=\".\">Xác định vị trí đặt dấu: Tại nhãn, tại trục hay cả hai.</ahelp>"
+msgid "Title"
+msgstr "Tựa đề"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"tit\n"
+"05020100.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "Chart Floor"
-msgstr "Sàn Đồ thị"
+msgid "<bookmark_value>editing; titles</bookmark_value>"
+msgstr "<bookmark_value>chỉnh sửa; tựa đề</bookmark_value>"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"bm_id3154346\n"
+"05020100.xhp\n"
+"hd_id3150769\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
-msgstr "<bookmark_value>đồ thị; định dạng sàn</bookmark_value><bookmark_value>định dạng; sàn đồ thị</bookmark_value>"
+msgid "Title"
+msgstr "Tựa đề"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"hd_id3154346\n"
+"05020100.xhp\n"
+"par_id3149666\n"
"1\n"
"help.text"
-msgid "Chart Floor"
-msgstr "Sàn Đồ thị"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Sửa đổi các thuộc tính của tựa đề đã chọn.</ahelp></variable>"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"par_id3150767\n"
-"2\n"
+"05020100.xhp\n"
+"hd_id3149378\n"
+"3\n"
"help.text"
-msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
-msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Mở hộp thoại <emph>Sàn Đồ thị</emph>, trong đó bạn có thể sửa đổi các thuộc tính của sàn đồ thị. Sàn đồ thị là vùng dưới trong đồ thị ba chiều (3D). Chức năng này chỉ hoạt động cho đồ thị ba chiều.</ahelp></variable>"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
#: 05020101.xhp
msgctxt ""
@@ -2568,96 +2674,40 @@ msgctxt ""
msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr "Lưu ý rằng vấn đề có thể xảy ra khi hiển thị nhãn, nếu đồ thị có kích cỡ quá nhỏ. Bạn có thể tránh trường hợp này hoặc bằng cách phóng to ô xem, hoặc bằng cách giảm kích cỡ phông chữ."
-#: 05080000.xhp
+#: 05020200.xhp
msgctxt ""
-"05080000.xhp\n"
+"05020200.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Area"
-msgstr "Vùng Đồ thị"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"bm_id3149670\n"
-"help.text"
-msgid "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
-msgstr "<bookmark_value>đồ thị; định dạng vùng</bookmark_value><bookmark_value>định dạng; vùng đồ thị</bookmark_value>"
+msgid "Title"
+msgstr "Tựa đề"
-#: 05080000.xhp
+#: 05020200.xhp
msgctxt ""
-"05080000.xhp\n"
-"hd_id3149670\n"
+"05020200.xhp\n"
+"hd_id3150541\n"
"1\n"
"help.text"
-msgid "Chart Area"
-msgstr "Vùng Đồ thị"
+msgid "Title"
+msgstr "Tựa đề"
-#: 05080000.xhp
+#: 05020200.xhp
msgctxt ""
-"05080000.xhp\n"
-"par_id3125864\n"
+"05020200.xhp\n"
+"par_id3145173\n"
"2\n"
"help.text"
-msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
-msgstr "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Mở hộp thoại <emph>Vùng Đồ thị</emph>, trong đó bạn có thể sửa đổi các thuộc tính của vùng đồ thị. Vùng đồ thị là nền nằm sau mọi phần tử của đồ thị.</ahelp></variable>"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chart Type Bubble"
-msgstr "Biểu đồ kiểu Bọt"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"bm_id2183975\n"
-"help.text"
-msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
-msgstr "<bookmark_value>đồ thị bọt</bookmark_value><bookmark_value>kiểu đồ thị;bọt</bookmark_value>"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"hd_id1970722\n"
-"help.text"
-msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
-msgstr "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Đồ thị kiểu bọt</link></variable>"
-
-#: type_bubble.xhp
-#, fuzzy
-msgctxt ""
-"type_bubble.xhp\n"
-"par_id40589\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"hd_id0526200904491284\n"
-"help.text"
-msgid "Bubble"
-msgstr "Bubble (Bọt khí)"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"par_id0526200904491222\n"
-"help.text"
-msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
-msgstr "Biểu đồ bọt chỉ ra sự liên hệ của ba biến. Hai biến để chỉ ra vị trí trên trục X và Y, còn biến thứ ba chỉ ra khích thước tương đối của mỗi bọt khí"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Sửa đổi các thuộc tính của tập tin đã chọn, hoặc các thuộc tính của mọi tựa đề cùng lúc.</ahelp></variable>"
-#: type_bubble.xhp
+#: 05020200.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"par_id0526200906040162\n"
+"05020200.xhp\n"
+"hd_id3152596\n"
+"3\n"
"help.text"
-msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
-msgstr "Hộp thoại chuỗi dữ liệu cho một biểu đồ bọt có một mục nhập để xác định phạm vi dữ liệu cho kích thước bọt khí"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
#: 05020201.xhp
msgctxt ""
@@ -2980,93 +3030,1083 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr "<ahelp hid=\".\">Lựa chọn hướng của một đoạn văn bản sử dụng chức năng bài trí văn bản phức tạp. Chức năng này chỉ có thể sử dụng nếu như hỗ trợ cho bài trí văn bản phức tạp được chọn.</ahelp>"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
+"05030000.xhp\n"
"tit\n"
"help.text"
-msgid "Data Series"
-msgstr "Dãy dữ liệu"
+msgid "Legend"
+msgstr "Chú giải"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"hd_id3150449\n"
+"05030000.xhp\n"
+"hd_id3145800\n"
"1\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
-msgstr "<link href=\"text/schart/01/05010200.xhp\" name=\"Dãy dữ liệu\">Dãy dữ liệu</link>"
+msgid "Legend"
+msgstr "Chú giải"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"par_id3145750\n"
+"05030000.xhp\n"
+"par_id3146972\n"
"2\n"
"help.text"
-msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
-msgstr "Hãy sử dụng chức năng này để thay đổi các thuộc tính của một dãy dữ liệu đã chọn. Hộp thoại này xuất hiện khi chỉ có một dãy dữ liệu được chọn, khi bạn chọn lệnh trình đơn <emph>Định dạng > Định dạng vùng chọn</emph>. Một số mục trình đơn riêng chỉ sẵn sàng đối với đối tượng hai chiều (2D) hay ba chiều (3D)."
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
+msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Xác định các thuộc tính viền, vùng và ký tự cho chú giải.</ahelp></variable>"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"par_id3154015\n"
+"05030000.xhp\n"
+"hd_id3145232\n"
"4\n"
"help.text"
-msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
-msgstr "Thay đổi được làm sẽ ảnh hưởng đến toàn dãy dữ liệu. Tay đổi màu thì mọi phần tử thuộc về dãy dữ liệu này sẽ cũng có màu đã thay đổi."
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"hd_id3146916\n"
+"05030000.xhp\n"
+"hd_id3147344\n"
"3\n"
"help.text"
-msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
-msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Thanh lỗi Y\">Thanh lỗi Y</link>"
+msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
+msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Hiển thị\">Hiển thị</link>"
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
+"05040000.xhp\n"
"tit\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "Axis"
+msgstr "Trục"
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
-"bm_id3150769\n"
+"05040000.xhp\n"
+"hd_id3149456\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>editing; titles</bookmark_value>"
-msgstr "<bookmark_value>chỉnh sửa; tựa đề</bookmark_value>"
+msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
+msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Trục\">Trục</link>"
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3150769\n"
+"05040000.xhp\n"
+"par_id3150441\n"
"2\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "This opens a submenu to edit axial properties."
+msgstr "Mở một trình đơn phụ để chỉnh sửa các thuộc tính của trục."
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3149666\n"
+"05040000.xhp\n"
+"par_id3154319\n"
+"11\n"
+"help.text"
+msgid "The tabs in the dialogs depend on the chart type selected."
+msgstr "Hộp thoại sẽ hiển thị các thẻ khác nhau, phụ thuộc vào kiểu được chọn."
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3153729\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục X\">Trục X</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3147394\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y\">Trục Y</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3153160\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục X phụ\">Trục X phụ</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"par_id3149401\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisA\">Mở hộp thoại để chỉnh sửa các thuộc tính của trục X phụ. Để chèn trục X phụ, chọn lệnh trình đơn <emph>Chèn > Trục</emph>, sau đó chọn mục <emph>Trục X</emph>.</ahelp>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3145640\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y phụ\">Trục Y phụ</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"par_id3159264\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisB\">Mở hộp thoại để chỉnh sửa các thuộc tính của trục Y phụ. Để chèn trục X phụ, chọn lệnh trình đơn <emph>Chèn > Trục</emph>, sau đó chọn mục <emph>Trục Y</emph>.</ahelp>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3145228\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục Z\">Trục Z</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3147345\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Mọi trục\">Mọi trục</link>"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Axes"
+msgstr "Trục"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"bm_id3153768\n"
+"help.text"
+msgid "<bookmark_value>axes;formatting</bookmark_value>"
+msgstr "<bookmark_value>trục;định dạng</bookmark_value>"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3153768\n"
"1\n"
"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
-msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Sửa đổi các thuộc tính của tựa đề đã chọn.</ahelp></variable>"
+msgid "Axes"
+msgstr "Trục"
-#: 05020100.xhp
+#: 05040100.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3149378\n"
+"05040100.xhp\n"
+"par_id3154319\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
+msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Mở hộp thoại, trong đó bạn có thể chỉnh sửa các thuộc tính của trục đã chọn.</ahelp></variable> Tên của hộp thoại phụ thuộc vào tên của trục đã chọn."
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3149667\n"
"3\n"
"help.text"
+msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y\">Trục Y</link> có hộp thoại đã tăng cường. Đối với các đồ thị kiểu XY, đồ thị trục X cũng có thẻ <link href=\"text/schart/01/05040201.xhp\" name=\"Co giãn\"><emph>Co giãn</emph></link>."
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3159266\n"
+"4\n"
+"help.text"
+msgid "Scaling the X axis is only possible in the X-Y chart type."
+msgstr "Khả năng co giãn trục X chỉ tồn tại trong đồ thị kiểu XY."
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3145230\n"
+"5\n"
+"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Y Axis"
+msgstr "Trục Y"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"bm_id3145673\n"
+"help.text"
+msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
+msgstr "<bookmark_value>trục Y; định dạng</bookmark_value>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145673\n"
+"1\n"
+"help.text"
+msgid "Y Axis"
+msgstr "Trục Y"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3155628\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
+msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Mở hộp thoại <emph>Trục Y</emph>, để thay đổi các thuộc tính về trục Y.</ahelp></variable>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145171\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3146119\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Số\">Số</link>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Scale"
+msgstr "Tỉ lệ"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"bm_id3150868\n"
+"help.text"
+msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
+msgstr "<bookmark_value>đặt tỷ lệ; trục</bookmark_value><bookmark_value>đặt tỷ lệ loga trên trục</bookmark_value><bookmark_value>đồ thị;đặt tỷ lệ trên trục</bookmark_value><bookmark_value>trục X;đặt tỷ lệ</bookmark_value><bookmark_value>trục Y; đặt tỷ lệ</bookmark_value><bookmark_value>trục;dấu khoảng</bookmark_value>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150868\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
+msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Đặt tỷ lệ\">Đặt tỷ lệ</link>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3154013\n"
+"2\n"
+"help.text"
+msgid "Controls the scaling of the X or Y axis."
+msgstr "Điều chỉnh vị trí đặt trục."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3148576\n"
+"79\n"
+"help.text"
+msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
+msgstr "Chương trình $[officename] tự động đặt tỷ lệ cho trục Y, để hiển thị đẹp mọi giá trị."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149379\n"
+"3\n"
+"help.text"
+msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
+msgstr "Để tạo kết quả riêng, bạn có thể tự điều chỉnh tỷ lệ cho trục. Chẳng hạn, bạn có thể hiển thị chỉ vùng trên của cột, bằng cách dời lên đường số không."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3154730\n"
+"4\n"
+"help.text"
+msgid "Scale"
+msgstr "Tỉ lệ"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149400\n"
+"5\n"
+"help.text"
+msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
+msgstr "Trong vùng này, bạn có thể gõ giá trị để chia trục ra. Có thể tự động đặt năm thuộc tính <emph>Tối thiểu, Tối đa, Khoảng lớn, Khoảng nhỏ</emph> và <emph>giá trị tham chiếu</emph>."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150751\n"
+"6\n"
+"help.text"
+msgid "Minimum"
+msgstr "Tối thiểu"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3153713\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Xác định giá trị nhỏ nhất để bắt đầu trục.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3156385\n"
+"8\n"
+"help.text"
+msgid "Maximum"
+msgstr "Tối đa"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3159266\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Xác định giá trị lớn nhất để kết thúc trục.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3155336\n"
+"10\n"
+"help.text"
+msgid "Major interval"
+msgstr "Khoảng lớn"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3143218\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Xác định khoảng cho sự phân chia chính của trục.</ahelp> Không cho phép khoảng chính lớn hơn phạm vi giá trị."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3154020\n"
+"12\n"
+"help.text"
+msgid "Minor interval count"
+msgstr "Số khoảng nhỏ"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3154656\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Xác định khoảng cho sự phân chia nhỏ của trục.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150089\n"
+"14\n"
+"help.text"
+msgid "Reference value"
+msgstr "Giá trị tham chiếu"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3152990\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Ghi rõ có nên hiển thị giá trị ở vị trí nào trên trục.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3166432\n"
+"62\n"
+"help.text"
+msgid "Automatic"
+msgstr "Tự động"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3145389\n"
+"63\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">Để sửa đổi giá trị, trước tiên bạn cần phải bỏ chọn mục <emph>Tự động</emph>.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149129\n"
+"64\n"
+"help.text"
+msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
+msgstr "Đối với các giá trị \"cố định\", bạn nên tắt tính năng này, vì nó không cho phép tự động đặt tỷ lệ."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3159206\n"
+"16\n"
+"help.text"
+msgid "Logarithmic scale"
+msgstr "Tỷ lệ loga"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3145360\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Ghi rõ có nên chia nhỏ ra trục theo tỷ lệ loga.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3153956\n"
+"61\n"
+"help.text"
+msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
+msgstr "Hãy sử dụng tính năng này đối với các giá trị khác biệt nhau rất nhiều. Bạn có thể sử dụng tỷ lệ loga để tạo các đường lưới cách đều, còn có giá trị có thể tăng hay giảm."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id9941404\n"
+"help.text"
+msgid "Reverse direction"
+msgstr "Đảo hướng"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id5581835\n"
+"help.text"
+msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
+msgstr "<ahelp hid=\".\">Xác định có nên hiển thị giá trị thấp hơn và giá trị cao hơn ở đâu trên trục. Không bật thì dùng hướng toán học.</ahelp> Đối với hệ thống toạ độ trục Đê-các-tơ thì kết quả là trục X hiển thị các giá trị thấp hơn bên trái, và trục Y hiển thị các giá trị thấp hơn bên dưới. Đối với hệ thống toạ độ cực, kết quả là hướng trục góc toán học là theo ngược chiều kim đồng hồ, và trục xuyên tâm đi từ bên trong ra bên ngoài."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id922204\n"
+"help.text"
+msgid "Type"
+msgstr "Kiểu"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id59225\n"
+"help.text"
+msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id1159225\n"
+"help.text"
+msgid "Minimum and maximum value to be shown on the ends of the scale."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id2259225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
+msgstr "<ahelp hid=\".\">Chuyển đổi sự trình bày để hiển thị thêm hay kèm dữ liệu.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3359225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị tất cả các bản ghi của truy vấn.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id4459225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị tất cả các bản ghi của truy vấn.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Positioning"
+msgstr "Vị trí"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"bm_id3150869\n"
+"help.text"
+msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
+msgstr "<bookmark_value>vị trí; trục</bookmark_value><bookmark_value>biểu đồ;vị trí đặt trục</bookmark_value><bookmark_value>trục X;vị trí</bookmark_value><bookmark_value>trục Y;vị trí</bookmark_value><bookmark_value>trục;đánh dấu khoảng</bookmark_value>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3150868\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
+msgstr "<link href=\"text/schart/01/05040202.xhp\" name=\"Đặt vị trí\">Đặt vị trí</link>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3154013\n"
+"2\n"
+"help.text"
+msgid "Controls the positioning of the axis."
+msgstr "Điều chỉnh vị trí đặt trục."
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801024782\n"
+"help.text"
+msgid "Axis line"
+msgstr "Đường trục"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801024970\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select where to cross the other axis: at start, at end, at a specified value, or at a category.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn điểm cắt với trục còn lại: Tại điểm bắt đầu, kết thúc, một vị trí xác định hay một loại.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801024957\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value where the axis line should cross the other axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Điền giá trị mà tại đó đường trục sẽ giao với trục còn lại.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id100620080102503\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the category where the axis line should cross the other axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn loại mục mà tại đó đường trục sẽ giao với trục còn lại.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id100620080102509\n"
+"help.text"
+msgid "Labels"
+msgstr "Nhãn"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801523879\n"
+"help.text"
+msgid "Place labels"
+msgstr "Đặt nhãn"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801523889\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select where to place the labels: near axis, near axis (other side), outside start, or outside end.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn vị trí đặt nhãn: Gần trục theo hai mặt, điểm bắt đầu bên ngoài, hoặc điểm kết thúc bên ngoài.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801025030\n"
+"help.text"
+msgid "Interval marks"
+msgstr "Đánh dấu khoảng"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3149048\n"
+"65\n"
+"help.text"
+msgid "Major:"
+msgstr "Chính:"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3150397\n"
+"71\n"
+"help.text"
+msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
+msgstr "Ghi rõ có nên hiển thị các dấu ở bên trong hay ở bên ngoài của trục. Cũng có thể hiển thị dấu ở cả hai bên."
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3151387\n"
+"66\n"
+"help.text"
+msgid "Inner"
+msgstr "Bên trong"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3156399\n"
+"72\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Specifies that marks are placed on the inner side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Ghi rõ có nên hiển thị các dấu ở bên trong của trục.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3166469\n"
+"67\n"
+"help.text"
+msgid "Outer"
+msgstr "Bên ngoài"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3153120\n"
+"73\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Ghi rõ có nên hiển thị các dấu ở bên ngoài của trục.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3159128\n"
+"68\n"
+"help.text"
+msgid "Minor:"
+msgstr "Phụ:"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3146885\n"
+"74\n"
+"help.text"
+msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
+msgstr "Vùng này được dùng để xác định dấu gạch nằm giữa các dấu trên trục. Có thể kích hoạt cả hai kiểu dấu, thì hiển thị một đường đặt dấu mà chạy từ bên ngoài vào trong."
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3150654\n"
+"69\n"
+"help.text"
+msgid "Inner"
+msgstr "Bên trong"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3146880\n"
+"75\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Ghi rõ có nên hiển thị các dấu khoảng nhỏ ở bên trong của trục.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3154677\n"
+"70\n"
+"help.text"
+msgid "Outer"
+msgstr "Bên ngoài"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3150745\n"
+"76\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">SGhi rõ có nên hiển thị các dấu khoảng nhỏ ở bên ngoài của trục.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801025271\n"
+"help.text"
+msgid "Place marks"
+msgstr "Đánh dấu"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801025278\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>"
+msgstr "<ahelp hid=\".\">Xác định vị trí đặt dấu: Tại nhãn, tại trục hay cả hai.</ahelp>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Grid"
+msgstr "Lưới"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"bm_id3155602\n"
+"help.text"
+msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
+msgstr "<bookmark_value>lướí; định dạng trục</bookmark_value><bookmark_value>trục; định dạng lưới</bookmark_value>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3155602\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Lưới\">Lưới</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3155764\n"
+"2\n"
+"help.text"
+msgid "Opens a submenu, where you select the grid you want to format."
+msgstr "Mở một trình đơn phụ để chọn lưới bạn muốn định dạng:"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3150045\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới chính trục X\">Lưới chính trục X</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3145228\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới chính trục Y\">Lưới chính trục Y</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3147346\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới chính trục Z\">Lưới chính trục Z</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3154021\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới phụ trục X\">Lưới phụ trục X</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3150307\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới phụ trục Y\">Lưới phụ trục Y</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3166428\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới phụ trục Z\">Lưới phụ trục Z</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3145585\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Mọi lưới trục\">Mọi lưới trục</link>"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Grid"
+msgstr "Lưới"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"bm_id3150398\n"
+"help.text"
+msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
+msgstr "<bookmark_value>trục X;định dạng lưới</bookmark_value><bookmark_value>trục Y;định dạng lưới</bookmark_value><bookmark_value>trục Z; định dạng lưới</bookmark_value>"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"hd_id3150398\n"
+"2\n"
+"help.text"
+msgid "Grid"
+msgstr "Lưới"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3152577\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
+msgstr "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Mở hộp thoại <emph>Lưới</emph> để xác định các thuộc tính về lưới.</ahelp></variable>"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Wall"
+msgstr "Nền Đồ thị"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
+msgstr "<bookmark_value>đồ thị; định dạng tường</bookmark_value><bookmark_value>định dạng;nền đồ thị</bookmark_value>"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3150792\n"
+"1\n"
+"help.text"
+msgid "Chart Wall"
+msgstr "Nền Đồ thị"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3154685\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
+msgstr "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Mở hộp thoại <emph>Nền Đồ thị</emph>, trong đó bạn có thể sửa đổi các thuộc tính của nền đồ thị. Nền đồ thị là nền « nằm dọc » nằm sau vùng dữ liệu của đồ thị.</ahelp></variable>"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Floor"
+msgstr "Sàn Đồ thị"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
+msgstr "<bookmark_value>đồ thị; định dạng sàn</bookmark_value><bookmark_value>định dạng; sàn đồ thị</bookmark_value>"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"hd_id3154346\n"
+"1\n"
+"help.text"
+msgid "Chart Floor"
+msgstr "Sàn Đồ thị"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"par_id3150767\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
+msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Mở hộp thoại <emph>Sàn Đồ thị</emph>, trong đó bạn có thể sửa đổi các thuộc tính của sàn đồ thị. Sàn đồ thị là vùng dưới trong đồ thị ba chiều (3D). Chức năng này chỉ hoạt động cho đồ thị ba chiều.</ahelp></variable>"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Area"
+msgstr "Vùng Đồ thị"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"bm_id3149670\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
+msgstr "<bookmark_value>đồ thị; định dạng vùng</bookmark_value><bookmark_value>định dạng; vùng đồ thị</bookmark_value>"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"hd_id3149670\n"
+"1\n"
+"help.text"
+msgid "Chart Area"
+msgstr "Vùng Đồ thị"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"par_id3125864\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
+msgstr "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Mở hộp thoại <emph>Vùng Đồ thị</emph>, trong đó bạn có thể sửa đổi các thuộc tính của vùng đồ thị. Vùng đồ thị là nền nằm sau mọi phần tử của đồ thị.</ahelp></variable>"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Arrangement"
+msgstr "Sắp đặt"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3159153\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
+msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Sắp đặt\">Sắp đặt</link>"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3145750\n"
+"2\n"
+"help.text"
+msgid "Allows you to modify the order of the data series already set in the chart."
+msgstr "Cho phép bạn sửa đổi thứ tự của dãy dữ liệu đã được đặt trên đồ thị."
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3155411\n"
+"8\n"
+"help.text"
+msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
+msgstr "Vị trí của dữ liệu trên bảng dữ liệu sẽ không thay đổi. Bạn chỉ có thể chọn lệnh như vậy sau khi chèn đồ thị vào $[officename] Calc."
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3154757\n"
+"5\n"
+"help.text"
+msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
+msgstr "Chức năng này chủ hoạt động nếu bạn có dữ liệu được hiển thị theo cột. Không thể chuyển đổi sang hiển thị theo hàng."
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3147339\n"
+"3\n"
+"help.text"
+msgid "Bring Forward"
+msgstr "Nâng lên"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3149259\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
+msgstr "<ahelp hid=\".uno:Forward\">Đem dãy dữ liệu được chọn ra trước (sang bên phải).</ahelp>"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3146316\n"
+"4\n"
+"help.text"
+msgid "Send Backward"
+msgstr "Gửi về sau"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3147001\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
+msgstr "<ahelp hid=\".uno:Backward\">Gửi dãy dữ liệu được chọn về sau (sang bên trái).</ahelp>"
+
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3188,7 +4228,6 @@ msgid "<link href=\"text/schart/01/type_xy.xhp\">XY (scatter)</link>"
msgstr "<link href=\"text/schart/01/type_xy.xhp\">XY (rải)</link>"
#: choose_chart_type.xhp
-#, fuzzy
msgctxt ""
"choose_chart_type.xhp\n"
"par_id0526200904431454\n"
@@ -3252,490 +4291,1453 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_column_line.xhp\">Column and Line</link>"
msgstr "<link href=\"text/schart/01/type_column_line.xhp\">Cột và Đường</link>"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
+"smooth_line_properties.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Line"
-msgstr "Đồ thị kiểu Đường"
+msgid "Smooth Line Properties"
+msgstr "Thuộc Tính Đường Mịn"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
-"bm_id2187566\n"
+"smooth_line_properties.xhp\n"
+"bm_id3803827\n"
"help.text"
-msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
-msgstr "<bookmark_value>đồ thị đường</bookmark_value><bookmark_value>kiểu đồ thị;đường</bookmark_value>"
+msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
+msgstr "<bookmark_value>đường cong;thuộc tính về đồ thị đường/XY</bookmark_value><bookmark_value>thuộc tính;đường mịn trong đồ thị đường/XY</bookmark_value>"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
-"hd_id9422894\n"
+"smooth_line_properties.xhp\n"
+"hd_id3050325\n"
"help.text"
-msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
-msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Đồ thị kiểu Đường</link></variable>"
+msgid "Smooth Line Properties"
+msgstr "Thuộc Tính Đường Mịn"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id389721\n"
+"smooth_line_properties.xhp\n"
+"par_id9421979\n"
+"help.text"
+msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
+msgstr "Trong đồ thị hiển thị đường (kiểu <emph>Đường</emph> hay <emph>XY</emph>), bạn có thể chọn hiển thị đường cong thay cho đường thẳng. Một số tùy chọn điều khiển các thuộc tính về đường cong như vậy."
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"hd_id1228370\n"
+"help.text"
+msgid "To change line properties"
+msgstr "Để thay đổi thuộc tính về đường"
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id1601611\n"
+"help.text"
+msgid "Select Cubic Spline or B-Spline."
+msgstr "Chọn <emph>Chốt trục cấp ba</emph> hay <emph>Chốt trục B</emph>."
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id879848\n"
+"help.text"
+msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
+msgstr ""
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id3464461\n"
+"help.text"
+msgid "Optionally set the resolution. A higher value leads to a smoother line."
+msgstr "Tùy chọn có thể đặt độ phân giải. Giá trị cao hơn tạo đường mịn hơn."
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id6998809\n"
+"help.text"
+msgid "For B-spline lines optionally set the degree of the polynomials."
+msgstr ""
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id3424481\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a line curve model.</ahelp>"
+msgstr ""
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id2320932\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ phân giải.</ahelp>"
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id8638874\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ phân giải.</ahelp>"
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"tit\n"
+"help.text"
+msgid "Smooth Line Properties"
+msgstr "Thuộc Tính Đường Mịn"
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"bm_id1467210\n"
+"help.text"
+msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;stepped lines in line charts/XY charts</bookmark_value>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"hd_id5005971\n"
+"help.text"
+msgid "Stepped Line Properties"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id9485625\n"
+"help.text"
+msgid "In a chart that displays lines (Line type or XY type), you can choose to connect the points with steps instead of straight lines. Some options control the properties of those steps."
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"hd_id9438276\n"
+"help.text"
+msgid "Different step types"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id9078573\n"
+"help.text"
+msgid "Start step icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id9047365\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_start_rb\">Start with horizontal line and step up vertically at the end.</ahelp>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id05495673\n"
+"help.text"
+msgid "End step icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id439028\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_x_rb\">Start to step up vertically and end with horizontal line.</ahelp>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id9673426\n"
+"help.text"
+msgid "Center X icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id4069483\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_end_rb\">Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line.</ahelp>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id56635427\n"
+"help.text"
+msgid "Center Y icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id0679473\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_y_rb\">Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"tit\n"
+"help.text"
+msgid "3D View"
+msgstr "Xem 3D"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"bm_id3156423\n"
+"help.text"
+msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
+msgstr "<bookmark_value>đồ thị 3D</bookmark_value><bookmark_value>đồ thị; khung nhìn 3D</bookmark_value><bookmark_value>chiếu sáng; đồ thị 3D</bookmark_value>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id3464461\n"
+"help.text"
+msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
+msgstr "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">Xem 3D</link></variable>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6998809\n"
+"help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, hoặc trong trình đơn ngữ cảnh của đồ thị, bạn có thể chọn kiểu đồ thị.<ahelp hid=\".\" visibility=\"hidden\">Hở hộp thoại để sửa các thuộc tính của khung nhìn ba chiều đối với các đồ thị kiểu Cột, Thanh, Bánh và Vùng. Đối với các đồ thị kiểu Đường và XY (Rải), bạn có thể thấy các đường ba chiều.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6942045\n"
+"help.text"
+msgid "The chart preview responds to the new settings that you enter in the dialog."
+msgstr "Ô xem thử đồ thị sẽ hiển thị thay đổi được làm trong hộp thoại."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3806878\n"
+"help.text"
+msgid "When you leave the dialog with OK, the settings are applied permanently."
+msgstr "Khi bạn bấm nút <emph>OK</emph> để rời hộp thoại, các thiết lập được áp dụng ngay."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id130619\n"
+"help.text"
+msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
+msgstr "Khi bạn bấm nút <emph>Thôi</emph> hay <emph>Thoát</emph> để rời hộp thoại, đồ thị sẽ trở về tình trạng trước khi bạn mở hộp thoại."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8081911\n"
+"help.text"
+msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
+msgstr "Đối với đồ thị ba chiều, bạn có thể chọn mục trình đơn <item type=\"menuitem\">Định dạng > Xem 3D</item> để đặt các giá trị phối cảnh, diện mạo và chiếu sáng."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id2924283\n"
+"help.text"
+msgid "Perspective"
+msgstr "Phối cảnh"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5781731\n"
+"help.text"
+msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
+msgstr "Gõ các giá trị để xoay đồ thị trên ba trục, và cho ô xem phối cảnh."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9999694\n"
+"help.text"
+msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
+msgstr "Đặt mọi góc thành 0 để thấy đồ thị từ một điểm đằng trước. Từ góc nhìn này, đồ thị bánh và đồ thị vòng được hiển thị dạng hình tròn."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2861720\n"
+"help.text"
+msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
+msgstr "Khi bật trục góc vuông, bạn có thể xoay nội dung đồ thị chỉ theo chiều X và Y, tức là song song với các viền đồ thị."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2216559\n"
+"help.text"
+msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
+msgstr "Đặt giá trị X thành 90º, và giá trị Y và X thành 0º, để thấy đồ thị từ ở trên (ô xem theo mắt chim). Đặt X thành -90º để thấy từ bên dưới đồ thị."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7869502\n"
+"help.text"
+msgid "The rotations are applied in the order first x, then y, last z."
+msgstr "Giá trị xoay được áp dụng theo thứ tự X, Y, Z."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9852900\n"
+"help.text"
+msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
+msgstr "Khi dùng bóng râm và xoay đồ thị thì các nguồn sáng cũng được xoay như là chúng được gắn vào đồ thị."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2578203\n"
+"help.text"
+msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
+msgstr "Các trục xoay luôn luôn tương đối với trang, không phải với trục của đồ thị. Trường hợp này khác với một số chương trình đồ thị khác."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id4923245\n"
+"help.text"
+msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection."
+msgstr "Hãy đánh dấu trong hộp chọn <emph>Phối cảnh</emph> để thấy đồ thị từ góc nhìn trung tâm, giống như qua ống kính máy ảnh, thay vì dùng sự chiếu song song."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3416547\n"
+"help.text"
+msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
+msgstr "Đặt tiêu cự bằng nút xoay. Giá trị 100% cung cấp ô xem đồ thị trong đó kích cỡ cạnh xa hình khoảng một nửa cạnh gần."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3791924\n"
+"help.text"
+msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
+msgstr "Phiên bản %PRODUCTNAME cũ hơn không thể hiển thị phần trăm phối cảnh giống như phiên bản này."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7623828\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật trục góc vuông thì bạn có thể xoay nội dung đồ thị chỉ theo chiều X và Y, tức là song song với các viền đồ thị. Trục góc vuông được bật theo mặc định cho các đồ thị ba chiều mới tạo. Đồ thị kiểu bánh và vòng không hỗ trợ trục góc vuông.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id4721823\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ xoay của đồ thị trên trục X. Ô xem thử sẽ hiển thị thay đổi.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5806756\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ xoay của đồ thị trên trục Y. Ô xem thử sẽ hiển thị thay đổi.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8915372\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt độ xoay của đồ thị trên trục Z. Ô xem thử sẽ hiển thị thay đổi.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6070436\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đánh dấu trong hộp chọn <emph>Phối cảnh</emph> để thấy đồ thị giống như qua ống kính máy ảnh. Dùng hộp xoay để đặt phần trăm. Giá trị phần trăm cao hơn sẽ làm cho đối tượng ở gần hiển thị lớn hơn đối tượng ở xa.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id7564012\n"
+"help.text"
+msgid "Appearance"
+msgstr "Diện mạo"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id1186254\n"
+"help.text"
+msgid "Select a scheme from the list box."
+msgstr "Chọn lược đồ trong hộp liệt kê."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7432477\n"
+"help.text"
+msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
+msgstr "Chọn lược đồ thì đặt các hộp chọn và nguồn ánh sáng tương ứng."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7141026\n"
+"help.text"
+msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
+msgstr "Đánh dấu hay bỏ dấu trong một tổ hợp các hộp chọn không được lược đồ <emph>Hiện thực</emph> hay <emph>Đơn giản</emph> đại diện thì bạn tạo một lược đồ riêng."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id1579027\n"
+"help.text"
+msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
+msgstr "Đánh dấu trong hộp thoại chọn <emph>Đổ bóng</emph> để sử dụng phương pháp Gouraud khi hiển thị mặt, không thì dùng phương pháp phẳng."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5624561\n"
+"help.text"
+msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible."
+msgstr "Phương pháp phẳng đặt chỉ một màu và một độ sáng cho mỗi hình đa giác. Các cạnh hiện rõ, nhưng không thể hiển thị dải màu mềm hay ánh sáng chấm."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5901058\n"
+"help.text"
+msgid "The Gouraud method applies gradients for a smoother, more realistic look."
+msgstr "Phương pháp Gouraud áp dụng dải màu để hiển thị mịn hơn, hiện thực hơn."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8469191\n"
+"help.text"
+msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
+msgstr "Đánh dấu tùy chọn <emph>Viền đối tượng</emph> để vẽ đường dọc theo các cạnh."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id4407483\n"
+"help.text"
+msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
+msgstr "Đánh dấu tùy chọn <emph>Cạnh tròn</emph> để làm mịn các cạnh của hình hộp."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8531449\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn lược đồ trong hộp liệt kê, hoặc nhấn vào bất cứ hộp chọn nào bên dưới.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9183935\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật thì áp dụng phương pháp đổ bóng Gouraud, không thì đổ bóng phẳng.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id946684\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị viền chung quanh vùng, bằng cách đặt kiểu dáng đường thành <emph>Đặc</emph>.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9607226\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mỗi cạnh được làm tròn theo 5%.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id1939451\n"
+"help.text"
+msgid "Illumination"
+msgstr "Chiếu sáng"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9038972\n"
+"help.text"
+msgid "Set the light sources for the 3D view."
+msgstr "Đặt các nguồn ánh sáng cho ô xem ba chiều."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6531266\n"
+"help.text"
+msgid "Click any of the eight buttons to switch a directed light source on or off."
+msgstr "Nhấn vào bất cứ nút nào trong tám nút, để mở hay tắt nguồn ánh sáng trực tiếp."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6173894\n"
+"help.text"
+msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
+msgstr "Mặc định là mở nguồn ánh sáng thứ hai. Nó là cái thứ nhất của bảy nguồn ánh sáng đều « chuẩn »."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2761314\n"
+"help.text"
+msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
+msgstr "Đối với nguồn ánh sáng đã chọn thì bạn có thể chọn màu và cường độ trong hộp liệt kê ngay bên dưới tám nút bấm. Các giá trị độ sáng của mỗi ánh sáng được cộng với nhau, vì vậy hãy sử dụng màu tối khi mở nhiều ánh sáng."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3912778\n"
+"help.text"
+msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
+msgstr "Ô xem thử nhỏ bên trong trang thẻ này có hai con trượt để đặt vị trí nằm ngang và nằm dọc của ánh sáng đã chọn. Nguồn ánh sáng luôn luôn nhắm vào trung tâm của đối tượng."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3163853\n"
+"help.text"
+msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
+msgstr "Nút trong góc của ô xem nhỏ sẽ chuyển đổi mô hình chiếu sáng nội bộ giữa hình cầu và hình khối."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id121158\n"
+"help.text"
+msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
+msgstr "Hãy sử dụng hộp liệt kê <emph>Ánh sáng chung quanh</emph> để xác định ánh sáng chung quanh mà chiếu cùng sáng từ mọi hướng."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2423780\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kéo con trượt bên phai để đặt bề cao nằm dọc và hướng của nguồn ánh sáng đã chọn.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2569658\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kéo con trượt bên dưới để đặt vị trí nằm ngang và hướng của nguồn ánh sáng đã chọn.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6394238\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để chuyển đổi giữa mô hình chiếu sáng hình cầu và hình khối.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id533768\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để kích hoạt hay ngừng kích hoạt nguồn ánh sáng long lanh có tô sáng.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7214270\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào để kích hoạt hay ngừng kích hoạt nguồn ánh sáng đều.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2186346\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một màu cho nguồn ánh sáng đã chọn.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id1331217\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn màu trong hộp thoại màu sắc.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id393993\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một màu cho ánh sáng chung quanh.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5871761\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn màu trong hộp thoại màu sắc.</ahelp>"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Type Area"
+msgstr "Vùng Kiểu Đồ Thị"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"bm_id4130680\n"
+"help.text"
+msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
+msgstr "<bookmark_value>đồ thị vùng</bookmark_value><bookmark_value>kiểu đồ thị;vùng</bookmark_value>"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"hd_id310678\n"
+"help.text"
+msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
+msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Vùng Kiểu Đồ Thị</link></variable>"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"par_id916776\n"
"help.text"
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"hd_id9826349\n"
+"type_area.xhp\n"
+"hd_id961943\n"
"help.text"
-msgid "Line"
-msgstr "Đường"
+msgid "Area"
+msgstr "Vùng"
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id2334665\n"
+"type_area.xhp\n"
+"par_id631733\n"
"help.text"
-msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
-msgstr "Đồ thị đường hiển thị mỗi giá trị dạng một điểm trên trục Y. Trục X hiển thị các phân loại. Các giá trị của mỗi dãy dữ liệu có thể được kết nối bằng đường."
+msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
+msgstr "Đồ thị vùng hiển thị mỗi giá trị dạng một điểm trên trục Y. Trục X hiển thị các loại. Những giá trị Y của mỗi dãy dữ liệu được kết nối bằng đường. Vùng giữa hai đường được tô màu. Mục đích của đồ thị vùng là nhấn mạnh thay đổi từ loại này đến loại khác."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id8956572\n"
+"type_area.xhp\n"
+"par_id7811822\n"
"help.text"
-msgid "Points only - this subtype plots only points."
-msgstr "Chỉ điểm: kiểu con này chỉ vẽ điểm."
+msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
+msgstr "Chuẩn: kiểu con này vẽ mỗi giá trị dạng giá trị Y tuyệt đối. Trước tiên nó vẽ vùng của cột cuối cùng trên dãy dữ liệu, sau đó vùng giáp cuối, vân vân, sau đó cuối cùng nó vẽ cột đầu của dữ liệu. Vì vậy, nếu cột đầu chứa giá trị cao hơn các giá trị khác, vùng đã vẽ cuối cùng sẽ ẩn các vùng khác."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id500808\n"
+"type_area.xhp\n"
+"par_id3640247\n"
"help.text"
-msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
-msgstr "Điểm và đường: kiểu con này vẽ các điểm, sau đó kết nối bằng đường những điểm cùng dãy dữ liệu."
+msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
+msgstr "Đống: kiểu con này vẽ các giá trị được xếp đống nhau một cách lũy tích. Nó đảm bảo mọi giá trị hiện rõ, không có tập hợp dữ liệu bị tập khác ẩn. Tuy nhiên, những giá trị Y không còn đại diện lại giá trị tuyệt đối, trừ cột cuối cùng mà được vẽ ở dưới các vùng xếp đống."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id8366649\n"
+"type_area.xhp\n"
+"par_id4585100\n"
"help.text"
-msgid "Lines only - this subtype plots only lines."
-msgstr "Chỉ đường: kiểu con này chỉ vẽ đường."
+msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
+msgstr "Phần trăm: kiểu con này vẽ các giá trị được xếp đống nhau một cách lũy tích, cũng có tỷ lệ theo phần trăm của tổng số phân loại."
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id476393\n"
+"type_bubble.xhp\n"
+"tit\n"
"help.text"
-msgid "3D lines - this subtype connects points of the same data series by a 3D line."
-msgstr "Đường 3D: kiểu con này kết nối những điểm cùng dãy dữ liệu bằng một đường ba chiều."
+msgid "Chart Type Bubble"
+msgstr "Biểu đồ kiểu Bọt"
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id2655720\n"
+"type_bubble.xhp\n"
+"bm_id2183975\n"
"help.text"
-msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
-msgstr "Đánh dấu tùy chọn <emph>Xếp đống dãy</emph> để sắp đặt ở trên nhau lũy tích các giá trị Y của điểm. Giá trị Y không còn đại diện lại giá trị tuyệt đối, trừ cột đầu mà được vẽ ở dưới các điểm đã xếp đống. Chọn mục <emph>Phần trăm</emph> thì các giá trị Y theo tỷ lệ phần trăm của tổng số loại."
+msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
+msgstr "<bookmark_value>đồ thị bọt</bookmark_value><bookmark_value>kiểu đồ thị;bọt</bookmark_value>"
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id3682058\n"
+"type_bubble.xhp\n"
+"hd_id1970722\n"
"help.text"
-msgid "Mark <emph>Smooth lines</emph> to draw curves through the points instead of straight lines. Click <emph>Properties</emph> for a <link href=\"text/schart/01/smooth_line_properties.xhp\">dialog</link> to change the curves' properties."
-msgstr "Đánh dấu tùy chọn <emph>Đường mịn</emph> để vẽ đường cong qua các điểm, thay cho đường thẳng. Nhấn vào nút <emph>Thuộc tính</emph> để mở <link href=\"text/schart/01/smooth_line_properties.xhp\">hộp thoại</link> và thay đổi các thuộc tính về đường cong."
+msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
+msgstr "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Đồ thị kiểu bọt</link></variable>"
-#: wiz_data_series.xhp
+#: type_bubble.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
+"type_bubble.xhp\n"
+"par_id40589\n"
+"help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
+
+#: type_bubble.xhp
+msgctxt ""
+"type_bubble.xhp\n"
+"hd_id0526200904491284\n"
+"help.text"
+msgid "Bubble"
+msgstr "Bubble (Bọt khí)"
+
+#: type_bubble.xhp
+msgctxt ""
+"type_bubble.xhp\n"
+"par_id0526200904491222\n"
+"help.text"
+msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
+msgstr "Biểu đồ bọt chỉ ra sự liên hệ của ba biến. Hai biến để chỉ ra vị trí trên trục X và Y, còn biến thứ ba chỉ ra khích thước tương đối của mỗi bọt khí"
+
+#: type_bubble.xhp
+msgctxt ""
+"type_bubble.xhp\n"
+"par_id0526200906040162\n"
+"help.text"
+msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
+msgstr "Hộp thoại chuỗi dữ liệu cho một biểu đồ bọt có một mục nhập để xác định phạm vi dữ liệu cho kích thước bọt khí"
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wizard - Data Series"
-msgstr "Trợ lý > Dãy dữ liệu"
+msgid "Chart Type Column and Bar"
+msgstr "Đồ thị kiểu Cột và Thanh"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"bm_id8641621\n"
+"type_column_bar.xhp\n"
+"bm_id4919583\n"
"help.text"
-msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
-msgstr "<bookmark_value>thứ tự dữ liệu đồ thị</bookmark_value><bookmark_value>dãy dữ liệu</bookmark_value>"
+msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
+msgstr "<bookmark_value>đồ thị cột</bookmark_value><bookmark_value>đồ thị thanh</bookmark_value><bookmark_value>kiểu đồ thị;cột và thanh</bookmark_value>"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id6124149\n"
+"type_column_bar.xhp\n"
+"hd_id649433\n"
"help.text"
-msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
-msgstr "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Trợ lý > Dãy dữ liệu</link></variable>"
+msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
+msgstr "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Đồ thị kiểu Cột và Thanh</link></variable>"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9651478\n"
+"type_column_bar.xhp\n"
+"par_id3430585\n"
"help.text"
-msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
-msgstr "Trên trang <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link> này, bạn có thể thay đổi phạm vi nguồn của mỗi dãy dữ liệu riêng, gồm nhãn của nó. Cũng có thể thay đổi phạm vi của phân loại. Trước tiên hãy chọn phạm vi dữ liệu trên trang <emph>Phạm vi dữ liệu</emph>, sau đó gỡ bỏ dãy dữ liệu không cần thiết, hoặc thêm dãy dữ liệu từ ô khác."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id6326487\n"
+"type_column_bar.xhp\n"
+"hd_id9826960\n"
"help.text"
-msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
-msgstr "Hình như trang chứa quá nhiều tùy chọn thì chỉ xác định phạm vi dữ liệu trên trang <emph>Trợ lý đồ thị > Phạm vi Dữ liệu</emph>, bỏ qua trang này."
+msgid "Column"
+msgstr "Cột"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id686361\n"
+"type_column_bar.xhp\n"
+"par_id2244026\n"
"help.text"
-msgid "This dialog is only available for charts based on a Calc or Writer table."
-msgstr "Hộp thoại này chỉ sẵn sàng đối với đồ thị dựa vào bảng Calc hay Writer."
+msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
+msgstr "Đồ thị kiểu này hiển thị đồ thị thanh có các thanh nằm dọc. Bề cao của mỗi thanh tỷ lệ đúng với giá trị của nó. Trục X hiển thị các phân loại. Trục Y hiển thị giá trị cho mỗi loại."
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id9241615\n"
+"type_column_bar.xhp\n"
+"par_id1281167\n"
+"help.text"
+msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
+msgstr "Chuẩn: kiểu con này hiển thị ở cạnh nhau mọi giá trị dữ liệu thuộc về cùng loại. Mục đích chính là mỗi giá trị tuyệt đối riêng, so sánh với mỗi giá trị khác."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id3249000\n"
+"help.text"
+msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
+msgstr "Đống: kiểu con này hiển thị ở trên nhau các giá trị cùng loại. Mục đích chính là toàn giá trị loại và sự đóng góp riêng của mỗi giá trị bên trong loại."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id6968901\n"
+"help.text"
+msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
+msgstr "Phần trăm: kiểu con này hiển thị phần trăm tương đối của mỗi giá trị dữ liệu so với tổng số của loại. Mục đích chính là sự đóng góp tương đối của mỗi giá trị với tổng số của loại."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id2224494\n"
+"help.text"
+msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
+msgstr "Bạn có thể mở ô <link href=\"text/schart/01/three_d_view.xhp\">Xem 3D</link> hiển thị các giá trị dữ liệu. Lược đồ <emph>Hiện thức</emph> thì thử tạo ô xem ba chiều đẹp nhât. Lược đồ <emph>Đơn giản</emph> bắt chước ô xem đồ thị của ứng dụng văn phòng khác."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id7359233\n"
+"help.text"
+msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
+msgstr "Đối với các đồ thị ba chiều, bạn có thể chọn hình của mỗi giá trị dữ liệu trong hình <emph>Hộp, Trụ, Nón</emph> và <emph>Chóp</emph>."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"hd_id955839\n"
+"help.text"
+msgid "Bar"
+msgstr "Thanh"
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id6596881\n"
+"help.text"
+msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
+msgstr "Đồ thị kiểu này hiển thị đồ thị thanh có các thanh nằm ngang. Độ dài của mỗi thanh tỷ lệ đúng với giá trị của nó. Trục Y hiển thị các phân loại. Trục X hiển thị giá trị cho mỗi loại."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id8750572\n"
+"help.text"
+msgid "The subtypes are the same as for the Column type."
+msgstr "Kiểu này có cùng những kiểu con với kiểu <emph>Cột</emph>."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Type Column and Line"
+msgstr "Đồ thị Kiểu Cột và Đường"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"bm_id5976744\n"
+"help.text"
+msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
+msgstr "<bookmark_value>đồ thị cột và đường</bookmark_value><bookmark_value>kiểu đồ thị;cột và đường</bookmark_value><bookmark_value>đồ thị tổ hợp</bookmark_value>"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id8596453\n"
+"help.text"
+msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
+msgstr "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Đồ thị Kiểu Cột và Đường</link></variable>"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id4818567\n"
+"help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id2451551\n"
+"help.text"
+msgid "Column and Line"
+msgstr "Cột và Đường"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id3101901\n"
+"help.text"
+msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
+msgstr "Đồ thị kiểu Cột và Đường tổ hợp <link href=\"text/schart/01/type_column_bar.xhp\">Đồ thị Cột</link> với <link href=\"text/schart/01/type_line.xhp\">Đồ thị Đường</link>."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id7910397\n"
+"help.text"
+msgid "Select one of the variants"
+msgstr "Chọn một của những biến thể"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id5244300\n"
+"help.text"
+msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
+msgstr "Cột và Đường: các hình chữ nhật của dãy dữ liệu cột được vẽ cạnh nhau để so sánh dễ dàng các giá trị."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id7163609\n"
+"help.text"
+msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
+msgstr "Cột và Đường Đống: các hình chữ nhật của dãy dữ liệu cột được vẽ đống ở trên nhau, để mà bề cao của cột đại diện tổng số các giá trị dữ liệu."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1842097\n"
+"help.text"
+msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
+msgstr "Bạn có thể chèn trục Y thứ hai bằng lệnh <link href=\"text/schart/01/04040000.xhp\">Chèn > Trục</link> sau khi chạy xong Trợ lý."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id8297677\n"
+"help.text"
+msgid "To specify a data range"
+msgstr "Để ghi rõ phạm vi dữ liệu"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id8871120\n"
+"help.text"
+msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
+msgstr "Những cột bên trái cùng (hay các hàng đầu) của phạm vi dữ liệu đã chọn sẽ cung cấp dữ liệu được hiển thị dạng đối tượng <emph>Cột</emph>. Các cột hay hàng khác của phạm vi dữ liệu sẽ cung cấp dữ liệu cho các đối tượng <emph>Đường</emph>. Bạn vẫn có thể thay đổi trường hợp gán này trong hộp thoại <emph>Dãy dữ liệu</emph>."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id2952055\n"
+"help.text"
+msgid "Select the data range."
+msgstr "Chọn phạm vi dữ liệu."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id594500\n"
+"help.text"
+msgid "Click one of the options for data series in rows or in columns."
+msgstr "Nhấn vào một của những tùy chọn về dãy dữ liệu theo hàng hay cột."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1944944\n"
+"help.text"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgstr "Đánh dấu để ghi rõ dãy dữ liệu có nhãn trong hàng đầu, trong cột đầu, hay trong cả hai."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id6667683\n"
"help.text"
msgid "Organizing data series"
msgstr "Tổ chức dãy dữ liệu"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id7159337\n"
+"type_column_line.xhp\n"
+"par_id7616809\n"
"help.text"
msgid "In the Data Series list box you see a list of all data series in the current chart."
msgstr "Trong hộp liệt kê <emph>Dãy dữ liệu</emph>, bạn thấy danh sách các dãy dữ liệu trong đồ thị hiện thời."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4921720\n"
+"type_column_line.xhp\n"
+"par_id9770195\n"
+"help.text"
+msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
+msgstr "Các dãy dữ liệu cột nằm ở đầu của danh sách, còn các dãy dữ liệu đường nằm ở cuối của danh sách."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1446272\n"
"help.text"
msgid "To organize the data series, select an entry in the list."
msgstr "Để tổ chức các dãy dữ liệu, chọn một mục trong danh sách."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id6627094\n"
+"type_column_line.xhp\n"
+"par_id3779717\n"
"help.text"
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
msgstr "Nhấn vào nút <emph>Thêm</emph> để thêm dãy dữ liệu khác bên dưới mục đã chọn. Dãy dữ liệu mới có cùng kiểu với mục đã chọn."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2926419\n"
+"type_column_line.xhp\n"
+"par_id5056611\n"
"help.text"
msgid "Click Remove to remove the selected entry from the Data Series list."
msgstr "Nhấn vào nút <emph>Bỏ</emph> để gỡ bỏ mục đã chọn khỏi danh sách <emph>Dãy dữ liệu</emph>."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4443800\n"
+"type_column_line.xhp\n"
+"par_id7786492\n"
"help.text"
-msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
-msgstr "Dùng nút mũi tên lên và xuống để di chuyển mục nhập đã chọn lên và xuống trong danh sách. Việc này không thay đổi thứ tự trong bảng nguồn dữ liệu mà nó chỉ thay đổi bố trí trên đồ thị."
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgstr "Dùng nút mũi tên lên và xuống để dời mục đã chọn lên và xuống trong danh sách. Bằng cách này, bạn có thể chuyển đổi dãy dữ liệu Cột sang dãy dữ liệu Danh sách, và ngược lại. Ở đây không thay đổi thứ tự trong bảng nguồn dữ liệu, chỉ thay đổi bố trí trên đồ thị."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id9777520\n"
+"type_column_line.xhp\n"
+"hd_id265816\n"
"help.text"
msgid "Editing data series"
msgstr "Chỉnh sửa dãy dữ liệu"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id1474654\n"
+"type_column_line.xhp\n"
+"par_id6768700\n"
"help.text"
msgid "Click an entry in the list to view and edit the properties for that entry."
msgstr "Nhấn vào một mục trong danh sách, để xem và chỉnh sửa các thuộc tính về nó."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4855189\n"
+"type_column_line.xhp\n"
+"par_id1924497\n"
"help.text"
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
msgstr "Trong hộp liệt kê <emph>Dãy dữ liệu</emph>, bạn thấy tên nhiệm vụ và phạm vi ô của mỗi thành phần của dãy dữ liệu."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9475081\n"
+"type_column_line.xhp\n"
+"par_id5081942\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
msgstr "Nhấn vào một mục, sau đó chỉnh sửa nội dung trong hộp văn bản bên dưới."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4695272\n"
+"type_column_line.xhp\n"
+"par_id2958464\n"
"help.text"
msgid "The label next to the text box states the currently selected role."
msgstr "Nhãn bên cạnh hộp văn bản sẽ hiển thị nhiệm vụ được chọn hiện thời."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id3931699\n"
+"type_column_line.xhp\n"
+"par_id883816\n"
"help.text"
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr "Gõ phạm vi, hoặc nhấn vào mục <emph>Chọn phạm vi dữ liệu</emph> để thu nhỏ hộp thoại rồi chọn phạm vi dữ liệu bằng con chuột."
-#: wiz_data_series.xhp
-msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id8626667\n"
-"help.text"
-msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
-msgstr "Muốn có phạm vi dữ liệu chứa nhiều vùng ô không phải kề nhau thì gõ phạm vi đầu tiên, sau đó tự gõ một dấu chấm phẩy « ; » ở kết thúc hộp văn bản, sau đó gõ các phạm vi khác. Định giới các phạm vi bằng dấu chấm phẩy."
-
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id5971556\n"
+"type_column_line.xhp\n"
+"par_id5091708\n"
"help.text"
msgid "The range for a data role, like Y-Values, must not include a label cell."
msgstr "Phạm vi cho nhiệm vụ dữ liệu, giống như giá trị Y, không thể chứa ô nhãn."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id7622608\n"
+"type_column_line.xhp\n"
+"hd_id974456\n"
"help.text"
msgid "Editing categories or data labels"
msgstr "Chỉnh sửa phân loại hay nhãn dữ liệu"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9222693\n"
+"type_column_line.xhp\n"
+"par_id2767113\n"
"help.text"
msgid "Enter or select a cell range that will be used as text for categories or data labels."
msgstr "Gõ hay chọn một phạm vi ô đại diện (dạng văn bản) các phân loại hay nhãn dữ liệu."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9500106\n"
+"type_column_line.xhp\n"
+"par_id301828\n"
"help.text"
-msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
-msgstr "Phụ thuộc vào kiểu đồ thị, chuỗi văn bản được hiển thị trên trục X hay dạng nhãn dữ liệu."
+msgid "The values in the Categories range will be shown as labels on the x axis."
+msgstr "Những giá trị trong phạm vị Loại sẽ được hiển thị dạng nhãn trên trục X."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id5201879\n"
+"type_column_line.xhp\n"
+"hd_id8996246\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị danh sách các dãy dữ liệu được đại diện trên đồ thị. Nhấn vào mục để xem và chỉnh sửa dãy dữ liệu đó. Nhấn vào nút<emph>Thêm</emph> để chèn một dãy mới vào danh sách, bên dưới mục đã chọn.</ahelp>"
+msgid "Inserting chart elements"
+msgstr "Chèn phần tử đồ thị"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2571794\n"
+"type_column_line.xhp\n"
+"par_id5729544\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị các phạm vi dữ liệu được dùng bởi dãy dữ liệu đã chọn trong hộp liệt kê <emph>Dãy dữ liệu</emph>. Mỗi phạm vi dữ liệu hiển thị tên nhiệm vụ và địa chỉ của phạm vi nguồn.</ahelp>"
+msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
+msgstr "Dùng trang <emph>Phần tử Đồ thị</emph> của <emph>Trợ lý Đồ thị</emph> để chèn bất cứ phần tử nào theo đây:"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2254402\n"
+"type_column_line.xhp\n"
+"par_id2932828\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị địa chỉ của phạm vi nguồn từ cột thứ hai của hộp liệt kê <emph>Phạm vi Dữ liệu</emph>. Bạn có thể thay đổi phạm vi trong hộp văn bản, hoặc bằng cách kéo trong tài liệu. Để thu nhỏ hộp thoại này trong khi bạn chọn phạm vi dữ liệu trong Calc, nhấn vào nút <emph>Chọn phạm vi dữ liệu</emph>.</ahelp>"
+msgid "Chart titles"
+msgstr "Tựa đề đồ thị"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2419507\n"
+"type_column_line.xhp\n"
+"par_id9449446\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị địa chỉ phạm vi nguồn của phân loại (chuỗi văn bản bạn thấy trên trục X của đồ thị phân loại). Đối với đồ thị kiểu XY, hộp văn bản chứa phạm vi nguồn của nhãn dữ liệu được hiển thị cho điểm dữ liệu. Để thu nhỏ hộp thoại này trong khi bạn chọn phạm vi dữ liệu trong Calc, nhấn vào nút <emph>Chọn phạm vi dữ liệu</emph>.</ahelp>"
+msgid "Legend"
+msgstr "Chú giải"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id1091647\n"
+"type_column_line.xhp\n"
+"par_id8122196\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm một mục nhập mới bên dưới mục hiện thời trong danh sách <emph>Dãy dữ liệu</emph>. Mục đã được chọn thì dãy dữ liệu mới có cùng kiểu đồ thị.</ahelp>"
+msgid "Visible grid lines"
+msgstr "Đường lưới hiện rõ"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id8831446\n"
+"type_column_line.xhp\n"
+"par_id9909665\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gỡ bỏ mục nhập đã chọn khỏi danh sách <emph>Dãy dữ liệu</emph>.</ahelp>"
+msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
+msgstr "Đối với phần tử thêm, dùng trình đơn <emph>Chèn</emph> của đồ thị trong chế độ chỉnh sửa. Trong đó, bạn có thể xác định những phần tử này:"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id7022309\n"
+"type_column_line.xhp\n"
+"par_id9141819\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Di chuyển mục nhập đã chọn lên trong danh sách <emph>Dãy dữ liệu</emph>.</ahelp>"
+msgid "Secondary axes"
+msgstr "Trục phụ"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2844019\n"
+"type_column_line.xhp\n"
+"par_id6354869\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Di chuyển mục nhập đã chọn xuống trong danh sách <emph>Dãy dữ liệu</emph>.</ahelp>"
+msgid "Minor grids"
+msgstr "Lưới phụ"
-#: 05060000.xhp
+#: type_column_line.xhp
msgctxt ""
-"05060000.xhp\n"
+"type_column_line.xhp\n"
+"par_id2685323\n"
+"help.text"
+msgid "Data labels"
+msgstr "Nhãn dữ liệu"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id6042664\n"
+"help.text"
+msgid "Statistics, for example mean values, y error bars and trend lines"
+msgstr "Thống kê, ví dụ các giá trị trung bình, thanh lỗi Y và đường xu hướng"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id7889950\n"
+"help.text"
+msgid "To set different data labels for each data series, use the properties dialog of the data series."
+msgstr "Để đặt các nhãn dữ liệu khác cho mỗi chuỗi dữ liệu, dùng hộp thoại thuộc tính của chuỗi dữ liệu đó."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wall"
-msgstr "Nền Đồ thị"
+msgid "Chart Type Line"
+msgstr "Đồ thị kiểu Đường"
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"bm_id3150792\n"
+"type_line.xhp\n"
+"bm_id2187566\n"
"help.text"
-msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
-msgstr "<bookmark_value>đồ thị; định dạng tường</bookmark_value><bookmark_value>định dạng;nền đồ thị</bookmark_value>"
+msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
+msgstr "<bookmark_value>đồ thị đường</bookmark_value><bookmark_value>kiểu đồ thị;đường</bookmark_value>"
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3150792\n"
-"1\n"
+"type_line.xhp\n"
+"hd_id9422894\n"
"help.text"
-msgid "Chart Wall"
-msgstr "Nền Đồ thị"
+msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
+msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Đồ thị kiểu Đường</link></variable>"
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154685\n"
-"2\n"
+"type_line.xhp\n"
+"par_id389721\n"
"help.text"
-msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
-msgstr "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Mở hộp thoại <emph>Nền Đồ thị</emph>, trong đó bạn có thể sửa đổi các thuộc tính của nền đồ thị. Nền đồ thị là nền « nằm dọc » nằm sau vùng dữ liệu của đồ thị.</ahelp></variable>"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-#: 05040000.xhp
+#: type_line.xhp
msgctxt ""
-"05040000.xhp\n"
+"type_line.xhp\n"
+"hd_id9826349\n"
+"help.text"
+msgid "Line"
+msgstr "Đường"
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id2334665\n"
+"help.text"
+msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
+msgstr "Đồ thị đường hiển thị mỗi giá trị dạng một điểm trên trục Y. Trục X hiển thị các phân loại. Các giá trị của mỗi dãy dữ liệu có thể được kết nối bằng đường."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id8956572\n"
+"help.text"
+msgid "Points only - this subtype plots only points."
+msgstr "Chỉ điểm: kiểu con này chỉ vẽ điểm."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id500808\n"
+"help.text"
+msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
+msgstr "Điểm và đường: kiểu con này vẽ các điểm, sau đó kết nối bằng đường những điểm cùng dãy dữ liệu."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id8366649\n"
+"help.text"
+msgid "Lines only - this subtype plots only lines."
+msgstr "Chỉ đường: kiểu con này chỉ vẽ đường."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id476393\n"
+"help.text"
+msgid "3D lines - this subtype connects points of the same data series by a 3D line."
+msgstr "Đường 3D: kiểu con này kết nối những điểm cùng dãy dữ liệu bằng một đường ba chiều."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id2655720\n"
+"help.text"
+msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
+msgstr "Đánh dấu tùy chọn <emph>Xếp đống dãy</emph> để sắp đặt ở trên nhau lũy tích các giá trị Y của điểm. Giá trị Y không còn đại diện lại giá trị tuyệt đối, trừ cột đầu mà được vẽ ở dưới các điểm đã xếp đống. Chọn mục <emph>Phần trăm</emph> thì các giá trị Y theo tỷ lệ phần trăm của tổng số loại."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id3682058\n"
+"help.text"
+msgid "Choose the <emph>Line type</emph> from the dropdown to select how the points will be connected. You can choose either <emph>Straight</emph> lines, <emph>Smooth</emph> lines to draw curves through the points or <emph>Stepped</emph> lines to draw lines which step from point to point. Click <emph>Properties</emph> to change the properties for the <link href=\"text/schart/01/smooth_line_properties.xhp\">smooth</link> or <link href=\"text/schart/01/stepped_line_properties.xhp\">stepped</link> lines."
+msgstr ""
+
+#: type_net.xhp
+msgctxt ""
+"type_net.xhp\n"
"tit\n"
"help.text"
-msgid "Axis"
-msgstr "Trục"
+msgid "Chart Type Net"
+msgstr "Đồ thị kiểu Lưới"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"type_net.xhp\n"
+"bm_id2193975\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
-msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Trục\">Trục</link>"
+msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
+msgstr "<bookmark_value>đồ thị lưới</bookmark_value><bookmark_value>kiểu đồ thị;lưới</bookmark_value><bookmark_value>đồ thị ra đa, xem đồ thị lưới</bookmark_value>"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3150441\n"
-"2\n"
+"type_net.xhp\n"
+"hd_id1990722\n"
"help.text"
-msgid "This opens a submenu to edit axial properties."
-msgstr "Mở một trình đơn phụ để chỉnh sửa các thuộc tính của trục."
+msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
+msgstr "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Đồ thị kiểu Lưới</link></variable>"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3154319\n"
-"11\n"
+"type_net.xhp\n"
+"par_id40589\n"
"help.text"
-msgid "The tabs in the dialogs depend on the chart type selected."
-msgstr "Hộp thoại sẽ hiển thị các thẻ khác nhau, phụ thuộc vào kiểu được chọn."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3153729\n"
-"3\n"
+"type_net.xhp\n"
+"hd_id1391338\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục X\">Trục X</link>"
+msgid "Net"
+msgstr "Lưới"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3147394\n"
-"4\n"
+"type_net.xhp\n"
+"par_id7812433\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y\">Trục Y</link>"
+msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
+msgstr "Đồ thị Lưới thì hiển thị các giá trị dữ liệu dạng điểm, được kết nối bằng đường để làm một lưới hình như mạng nhện hay màn hình ống dẫn ra-đa."
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3153160\n"
-"9\n"
+"type_net.xhp\n"
+"par_id3512375\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục X phụ\">Trục X phụ</link>"
+msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
+msgstr "Đối với mỗi hàng dữ liệu đồ thị, hiển thị một đường xuyên tâm trên đó vẽ dữ liệu. Mọi giá trị dữ liệu có cùng tỷ lệ, vậy mọi giá trị dữ liệu nên có khoảng cùng kích cỡ."
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3149401\n"
-"10\n"
+"type_pie.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisA\">Mở hộp thoại để chỉnh sửa các thuộc tính của trục X phụ. Để chèn trục X phụ, chọn lệnh trình đơn <emph>Chèn > Trục</emph>, sau đó chọn mục <emph>Trục X</emph>.</ahelp>"
+msgid "Chart Type Pie"
+msgstr "Đồ thị kiểu Bánh"
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145640\n"
-"7\n"
+"type_pie.xhp\n"
+"bm_id7621997\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y phụ\">Trục Y phụ</link>"
+msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
+msgstr "<bookmark_value>biểu đồ hình khuyên</bookmark_value><bookmark_value>biểu đồ bánh;loại</bookmark_value><bookmark_value>kiểu đồ thị;bánh/khuyên</bookmark_value>"
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3159264\n"
-"8\n"
+"type_pie.xhp\n"
+"hd_id3365276\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisB\">Mở hộp thoại để chỉnh sửa các thuộc tính của trục Y phụ. Để chèn trục X phụ, chọn lệnh trình đơn <emph>Chèn > Trục</emph>, sau đó chọn mục <emph>Trục Y</emph>.</ahelp>"
+msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
+msgstr "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Đồ thị kiểu Bánh</link></variable>"
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145228\n"
-"5\n"
+"type_pie.xhp\n"
+"par_id245979\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục Z\">Trục Z</link>"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3147345\n"
-"6\n"
+"type_pie.xhp\n"
+"hd_id5799432\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Mọi trục\">Mọi trục</link>"
+msgid "Pie"
+msgstr "Bánh"
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id6549272\n"
+"help.text"
+msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
+msgstr "Đồ thị Bánh thì hiển thị giá trị dạng hình quạt của toàn tròn. Độ dài của hình cung, hoặc diện tích của mỗi hình quạt, có tỷ lệ đúng với giá trị của nó."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id6529740\n"
+"help.text"
+msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
+msgstr "Bánh: kiểu con này hiển thị hình quạt dạng vùng tô màu của toàn tròn, cho chỉ một cột dữ liệu. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo bất cứ hình quạt nào để phân cách hình quạt ra tròn còn lại, hoặc chèn nó vào lại."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id9121982\n"
+"help.text"
+msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
+msgstr "Bánh được cắt mảnh: kiểu con này hiển thị các hình quạt đã được phân cách ra nhau. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo bất cứ hình quạt nào để di chuyển nó dọc theo đường xuyên tâm (từ trung tâm của hình tròn)."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id3808404\n"
+"help.text"
+msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgstr "Vòng: kiểu con này có thể hiển thị đồng thời nhiều cột dữ liệu. Mỗi cột dữ liệu được hiên thị dạng một hình vòng rỗng, bên trong đó hiển thị cột dữ liệu kế tiếp. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo hình quạt bên ngoài để di chuyển nó dọc theo đường xuyên tâm (từ trung tâm của hình vòng)."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id2394482\n"
+"help.text"
+msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgstr "Vòng được cắt mảng: kiểu con này hiển thị các hình quạt bên ngoài đã được phân cách ra hình vòng còn lại. Trong đồ thị đã tạo, bạn có thể nhấn vào rồi kéo hình quạt bên ngoài để di chuyển nó dọc theo đường xuyên tâm (từ trung tâm của hình vòng)."
#: type_stock.xhp
msgctxt ""
@@ -3799,7 +5801,7 @@ msgctxt ""
"par_id1022064\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3807,7 +5809,7 @@ msgctxt ""
"par_id1924192\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3815,7 +5817,7 @@ msgctxt ""
"par_id3258156\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3823,7 +5825,7 @@ msgctxt ""
"par_id3161412\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3831,7 +5833,7 @@ msgctxt ""
"par_id5619373\n"
"help.text"
msgid "E"
-msgstr "E"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3839,7 +5841,7 @@ msgctxt ""
"par_id6474501\n"
"help.text"
msgid "F"
-msgstr "F"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3847,7 +5849,7 @@ msgctxt ""
"par_id7411725\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3895,7 +5897,7 @@ msgctxt ""
"par_id7684560\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3951,7 +5953,7 @@ msgctxt ""
"par_id4013794\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4007,7 +6009,7 @@ msgctxt ""
"par_id2374034\n"
"help.text"
msgid "4"
-msgstr "4"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4063,7 +6065,7 @@ msgctxt ""
"par_id166936\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4119,7 +6121,7 @@ msgctxt ""
"par_id9461653\n"
"help.text"
msgid "6"
-msgstr "6"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4383,7 +6385,7 @@ msgctxt ""
"par_id9759514\n"
"help.text"
msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
-msgstr "Trong chương trình Calc, một dãy dữ liệu ví dụ có thể là « $Bảng1.$B$3:$B$14 ». Lưu ý, một dãy dữ liệu có thể chứa hơn một vùng trên bảng tính, v.d. « $Bảng1.A1:A5;$Bảng1.D1:D5 » cũng là dãy dữ liệu hợp lệ. Trong Writer, một dãy dữ liệu, ví dụ, có thể là « Bảng1.A1:E4 »."
+msgstr "Trong chương trình Calc, một dãy dữ liệu thí dụ là « $Bảng1.$B$3:$B$14 ». Lưu ý rằng một dãy dữ liệu có thể chứa hơn một vùng trên bảng tính, v.d. « $Bảng1.A1:A5;$Bảng1.D1:D5 » cũng là dãy dữ liệu hợp lệ. Trong Writer, một dãy dữ liệu thí dụ là « Bảng1.A1:E4 »."
#: type_stock.xhp
msgctxt ""
@@ -4402,7 +6404,6 @@ msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, the
msgstr "Trong Calc, nhấn vào mục <emph>Chọn phạm vi dữ liệu</emph> để thu nhỏ hộp thoại, sau đó kéo để chọn phạm vi dữ liệu. Khi bạn buông ra nút chuột, dữ liệu được nhập vào. Nhấn lại vào <emph>Chọn phạm vi dữ liệu</emph> để bắt đầu thêm dãy dữ liệu. Trong trường nhập của hộp thoại đã thu nhỏ, nhấn chuột sau mục đã nhập trước, sau đó gõ dấu chấm phẩy « ; ». Sau đó, kéo để chọn phạm vi kế tiếp."
#: type_stock.xhp
-#, fuzzy
msgctxt ""
"type_stock.xhp\n"
"par_id8746910\n"
@@ -4546,646 +6547,365 @@ msgctxt ""
msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
msgstr "Chọn một của những tùy chọn về vị trí. Một khi đồ thị được tạo xong, bạn cũng có thể xác định vị trí khác thông qua trình đơn <emph>Định dạng</emph>."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
+"type_xy.xhp\n"
"tit\n"
"help.text"
-msgid "Scale"
-msgstr "Tỉ lệ"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"bm_id3150868\n"
-"help.text"
-msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
-msgstr "<bookmark_value>đặt tỷ lệ; trục</bookmark_value><bookmark_value>đặt tỷ lệ loga trên trục</bookmark_value><bookmark_value>đồ thị;đặt tỷ lệ trên trục</bookmark_value><bookmark_value>trục X;đặt tỷ lệ</bookmark_value><bookmark_value>trục Y; đặt tỷ lệ</bookmark_value><bookmark_value>trục;dấu khoảng</bookmark_value>"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3150868\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
-msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Đặt tỷ lệ\">Đặt tỷ lệ</link>"
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id3154013\n"
-"2\n"
-"help.text"
-msgid "Controls the scaling of the X or Y axis."
-msgstr "Điều chỉnh vị trí đặt trục."
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id3148576\n"
-"79\n"
-"help.text"
-msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
-msgstr "Chương trình $[officename] tự động đặt tỷ lệ cho trục Y, để hiển thị đẹp mọi giá trị."
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3149379\n"
-"3\n"
-"help.text"
-msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
-msgstr "Để tạo kết quả riêng, bạn có thể tự điều chỉnh tỷ lệ cho trục. Chẳng hạn, bạn có thể hiển thị chỉ vùng trên của cột, bằng cách dời lên đường số không."
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3154730\n"
-"4\n"
-"help.text"
-msgid "Scale"
-msgstr "Tỷ lệ"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3149400\n"
-"5\n"
-"help.text"
-msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
-msgstr "Trong vùng này, bạn có thể gõ giá trị để chia trục ra. Có thể tự động đặt năm thuộc tính <emph>Tối thiểu, Tối đa, Khoảng lớn, Khoảng nhỏ</emph> và <emph>giá trị tham chiếu</emph>."
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3150751\n"
-"6\n"
-"help.text"
-msgid "Minimum"
-msgstr "Tối thiểu"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3153713\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Xác định giá trị nhỏ nhất để bắt đầu trục.</ahelp>"
+msgid "Chart Type XY"
+msgstr "Đồ thị Kiểu XY"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3156385\n"
-"8\n"
+"type_xy.xhp\n"
+"bm_id84231\n"
"help.text"
-msgid "Maximum"
-msgstr "Tối đa"
+msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
+msgstr "<bookmark_value>đồ thị rải</bookmark_value><bookmark_value>đồ thị XY</bookmark_value><bookmark_value>kiểu đồ thị;XY (rải)</bookmark_value><bookmark_value>cái chỉ lỗi trên đồ thị</bookmark_value><bookmark_value>thanh lỗi trên đồ thị</bookmark_value><bookmark_value>số trung bình trên đồ thị</bookmark_value><bookmark_value>thống kê trên đồ thị</bookmark_value><bookmark_value>phương sai trên đồ thị</bookmark_value><bookmark_value>độ lệch chuẩn trên đồ thị</bookmark_value>"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3159266\n"
-"9\n"
+"type_xy.xhp\n"
+"hd_id9346598\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Xác định giá trị lớn nhất để kết thúc trục.</ahelp>"
+msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
+msgstr "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Đồ thị Kiểu XY (Rải)</link></variable>"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3155336\n"
-"10\n"
+"type_xy.xhp\n"
+"par_id2003845\n"
"help.text"
-msgid "Major interval"
-msgstr "Khoảng lớn"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3143218\n"
-"11\n"
+"type_xy.xhp\n"
+"hd_id7757194\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Xác định khoảng cho sự phân chia chính của trục.</ahelp> Không cho phép khoảng chính lớn hơn phạm vi giá trị."
+msgid "XY (Scatter)"
+msgstr "XY (Rải)"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3154020\n"
-"12\n"
+"type_xy.xhp\n"
+"par_id5977965\n"
"help.text"
-msgid "Minor interval count"
-msgstr "Số khoảng nhỏ"
+msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
+msgstr "Đồ thị XY theo hình thức cơ bản thì dựa vào một dãy dữ liệu chứa một tên, danh sách các giá trị X và danh sách các giá trị Y. Mỗi cặp giá trị (x/y) được hiển thị dạng một điểm tùy theo hệ thống toạ độ. Tên của dãy dữ liệu tương ứng với các giá trị Y và được hiển thị trong chú giải."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3154656\n"
-"13\n"
+"type_xy.xhp\n"
+"par_id4381847\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Xác định khoảng cho sự phân chia nhỏ của trục.</ahelp>"
+msgid "Choose an XY chart for the following example tasks:"
+msgstr "Chọn đồ thị XY cho những công việc thí dụ này:"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3150089\n"
-"14\n"
+"type_xy.xhp\n"
+"par_id1336710\n"
"help.text"
-msgid "Reference value"
-msgstr "Giá trị tham chiếu"
+msgid "scale the x‑axis"
+msgstr "đặt tỷ lệ của trục X"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3152990\n"
-"15\n"
+"type_xy.xhp\n"
+"par_id1221655\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Ghi rõ có nên hiển thị giá trị ở vị trí nào trên trục.</ahelp>"
+msgid "generate a parameter curve, for example a spiral"
+msgstr "tạo ra đường cong tham số, v.d. xoắn ốc"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3166432\n"
-"62\n"
+"type_xy.xhp\n"
+"par_id3397320\n"
"help.text"
-msgid "Automatic"
-msgstr "Tự động"
+msgid "draw the graph of a function"
+msgstr "vẽ đồ thị của hàm"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3145389\n"
-"63\n"
+"type_xy.xhp\n"
+"par_id7657399\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">Để sửa đổi giá trị, trước tiên bạn cần phải bỏ chọn mục <emph>Tự động</emph>.</ahelp>"
+msgid "explore the statistical association of quantitative variables"
+msgstr "thăm dò quan hệ thống kê của các biến định lượng"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3149129\n"
-"64\n"
+"type_xy.xhp\n"
+"par_id8925138\n"
"help.text"
-msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
-msgstr "Đối với các giá trị \"cố định\", bạn nên tắt tính năng này, vì nó không cho phép tự động đặt tỷ lệ."
+msgid "Your XY chart may have more than one data series."
+msgstr "Đồ thị XY có thể chứa hơn một dãy dữ liệu."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3159206\n"
-"16\n"
+"type_xy.xhp\n"
+"hd_id5461897\n"
"help.text"
-msgid "Logarithmic scale"
-msgstr "Tỷ lệ loga"
+msgid "XY Chart Variants"
+msgstr "Biến thể Đồ thị XY"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3145360\n"
-"17\n"
+"type_xy.xhp\n"
+"par_id8919339\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Ghi rõ có nên chia nhỏ ra trục theo tỷ lệ loga.</ahelp>"
+msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
+msgstr "Bạn có thể chọn biến thể đồ thị XY trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, hoặc bằng cách chọn lệnh <item type=\"menuitem\">Định dạng > Kiểu đồ thị</item> đối với đồ thị trong chế độ chỉnh sửa."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3153956\n"
-"61\n"
+"type_xy.xhp\n"
+"par_id4634235\n"
"help.text"
-msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
-msgstr "Hãy sử dụng tính năng này đối với các giá trị khác biệt nhau rất nhiều. Bạn có thể sử dụng tỷ lệ loga để tạo các đường lưới cách đều, còn có giá trị có thể tăng hay giảm."
+msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
+msgstr "Đồ thị được tạo bằng thiết lập mặc định. Sau khi tạo xong đồ thị, bạn có thể chỉnh sửa các thuộc tính để điều chỉnh hình thức. Cũng có thể thay đổi kiểu dáng đường và biểu tượng trên trang thẻ <emph>Đường</emph> của hộp thoại thuộc tính dãy dữ liệu."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id9941404\n"
+"type_xy.xhp\n"
+"par_id5482039\n"
"help.text"
-msgid "Reverse direction"
-msgstr "Đảo hướng"
+msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
+msgstr "Nhấn đúp vào một điểm dữ liệu để mở hộp thoại <item type=\"menuitem\">Chuỗi dữ liệu</item>. Trong hộp thoại này, bạn có thể thay đổi các thuộc tính của chuỗi dữ liệu."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id5581835\n"
+"type_xy.xhp\n"
+"par_id0805200810492449\n"
"help.text"
-msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
-msgstr "<ahelp hid=\".\">Xác định có nên hiển thị giá trị thấp hơn và giá trị cao hơn ở đâu trên trục. Không bật thì dùng hướng toán học.</ahelp> Đối với hệ thống toạ độ trục Đê-các-tơ thì kết quả là trục X hiển thị các giá trị thấp hơn bên trái, và trục Y hiển thị các giá trị thấp hơn bên dưới. Đối với hệ thống toạ độ cực, kết quả là hướng trục góc toán học là theo ngược chiều kim đồng hồ, và trục xuyên tâm đi từ bên trong ra bên ngoài."
+msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
+msgstr "Đối với các biểu đồ 2 chiều, bọn có thể chọn <item type=\"menuitem\">Điền - Thanh lỗi Y</item> để hiển thị thanh báo lỗi."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id922204\n"
+"type_xy.xhp\n"
+"par_id6221198\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
+msgstr "Bạn có thể bật chức năng hiển thị đường giá trị trung bình và xu hướng, dùng các câu lệnh trong trình đơn <emph>Chèn</emph> ."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id59225\n"
+"type_xy.xhp\n"
+"hd_id1393475\n"
"help.text"
-msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
-msgstr ""
+msgid "Points only"
+msgstr "Chỉ điểm"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id1159225\n"
+"type_xy.xhp\n"
+"par_id6571550\n"
"help.text"
-msgid "Minimum and maximum value to be shown on the ends of the scale."
+msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>."
msgstr ""
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id2259225\n"
-"help.text"
-msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
-msgstr "<ahelp hid=\".\">Chuyển đổi sự trình bày để hiển thị thêm hay kèm dữ liệu.</ahelp>"
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id3359225\n"
-"help.text"
-msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị tất cả các bản ghi của truy vấn.</ahelp>"
-
-#: 05040201.xhp
-#, fuzzy
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id4459225\n"
+"type_xy.xhp\n"
+"hd_id5376140\n"
"help.text"
-msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị tất cả các bản ghi của truy vấn.</ahelp>"
+msgid "Lines Only"
+msgstr "Chỉ đường"
-#: 05020200.xhp
+#: type_xy.xhp
msgctxt ""
-"05020200.xhp\n"
-"tit\n"
+"type_xy.xhp\n"
+"par_id4408093\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons."
+msgstr "Biến thể này vẽ đường thẳng từ điểm này đến điểm khác. Điểm dữ liệu không được biểu tượng đại diện."
-#: 05020200.xhp
+#: type_xy.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3150541\n"
-"1\n"
+"type_xy.xhp\n"
+"par_id7261268\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
+msgstr "Có cùng thứ tự vẽ với dãy dữ liệu. Đánh dấu tùy chọn <emph>Sắp xếp theo giá trị X</emph> để vẽ các đường tùy theo thứ tự của các giá trị X. Việc sắp xếp này chỉ áp dụng cho đồ thị, không phải cho dữ liệu trên bảng."
-#: 05020200.xhp
+#: type_xy.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3145173\n"
-"2\n"
+"type_xy.xhp\n"
+"hd_id6949369\n"
"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
-msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Sửa đổi các thuộc tính của tập tin đã chọn, hoặc các thuộc tính của mọi tựa đề cùng lúc.</ahelp></variable>"
+msgid "Points and Lines"
+msgstr "Điểm và Đường"
-#: 05020200.xhp
+#: type_xy.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3152596\n"
-"3\n"
+"type_xy.xhp\n"
+"par_id9611499\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
+msgid "This variant shows points and lines at the same time."
+msgstr "Biến thể này hiển thị đồng thời cả hai điểm và đường."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"tit\n"
+"type_xy.xhp\n"
+"hd_id6765953\n"
"help.text"
-msgid "Legend"
-msgstr "Chú giải"
+msgid "3D Lines"
+msgstr "Đường 3D"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"bm_id3156441\n"
+"type_xy.xhp\n"
+"par_id7422711\n"
"help.text"
-msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
-msgstr "<bookmark_value>chú giải đồ thị; ẩn</bookmark_value><bookmark_value>ẩn;chú giải đồ thị</bookmark_value>"
+msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
+msgstr "Các đường được hiển thị dạng băng. Điểm dữ liệu không được biểu tượng đại diện. Trong đồ thị đã tạo xong, chọn mục <link href=\"text/schart/01/three_d_view.xhp\">Xem 3D</link> để đặt thuộc tính như chiếu sáng và góc nhìn."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3156441\n"
-"1\n"
+"type_xy.xhp\n"
+"hd_id239265\n"
"help.text"
-msgid "Legend"
-msgstr "Chú giải"
+msgid "Smooth Lines"
+msgstr "Đường mịn"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155413\n"
-"2\n"
+"type_xy.xhp\n"
+"par_id7957396\n"
"help.text"
-msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
+msgid "Choose <emph>Smooth</emph> from the <emph>Line type</emph> dropdown to draw curves instead of straight line segments."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3149124\n"
-"3\n"
-"help.text"
-msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
-msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">Để hiển thị hay ẩn một chú giải, nhấn vào biểu tượng <emph>Hiện/ẩn Chú giải</emph> trên thanh <emph>Định dạng</emph>.</ahelp></variable>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3145230\n"
-"help.text"
-msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Biểu tượng</alt></image>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3149207\n"
-"16\n"
-"help.text"
-msgid "Legend On/Off"
-msgstr "Hiện/ẩn Chú giải"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3155114\n"
-"6\n"
-"help.text"
-msgid "Display"
-msgstr "Hiển thị"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3150206\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
-msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Ghi rõ có nên hiển thị chú giải cho đồ thị hay không.</ahelp> Tùy chọn này chỉ hiện rõ nếu bạn gọi hộp thoại bằng cách chọn lệnh trình đơn <emph>Chèn > Chú giải</emph>."
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3150201\n"
-"4\n"
-"help.text"
-msgid "Position"
-msgstr "Vị trí"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155376\n"
-"5\n"
-"help.text"
-msgid "Select the position for the legend:"
-msgstr "Chọn vị trí của chú giải:"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3152988\n"
-"8\n"
-"help.text"
-msgid "Left"
-msgstr "Trái"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155087\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Định vị chú giải bên trái đồ thị.</ahelp>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3153816\n"
-"10\n"
-"help.text"
-msgid "Top"
-msgstr "Trên"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3153912\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Định vị chú giải bên trên đồ thị.</ahelp>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3144773\n"
-"12\n"
-"help.text"
-msgid "Right"
-msgstr "Phải"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155268\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Định vị chú giải bên phải đồ thị.</ahelp>"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3152871\n"
-"14\n"
+"type_xy.xhp\n"
+"par_id1202124\n"
"help.text"
-msgid "Bottom"
-msgstr "Dưới"
+msgid "Click <emph>Properties</emph> to set details for the curves."
+msgstr "Nhấn vào nút <emph>Thuộc tính</emph> để đặt chi tiết về đường cong."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3153249\n"
-"15\n"
+"type_xy.xhp\n"
+"par_id5989562\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Định vị chú giải bên dưới đồ thị.</ahelp>"
+msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
+msgstr "<emph>Chốt trục cấp ba</emph> thì nội suy các điểm dữ liệu với hàm đa thức cấp 3. Cũng chuyển tiếp giữa các phần tử đa thức vì có cùng dốc và độ cong."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id1106200812072645\n"
+"type_xy.xhp\n"
+"par_id6128421\n"
"help.text"
-msgid "Text Orientation"
-msgstr "Hướng của văn bản"
+msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
+msgstr "<emph>Độ phân giải</emph> thì xác định bao nhiêu đoạn đường được tính để vẽ một phần hàm đa thức giữa hai điểm dữ liệu. Nhấn vào bất cứ điểm dữ liệu nào để thấy những điểm trung cấp."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id1106200812072653\n"
+"type_xy.xhp\n"
+"par_id9280373\n"
"help.text"
-msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
+msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id1106200812112444\n"
-"help.text"
-msgid "Text Direction"
-msgstr "Hướng của văn bản"
-
-#: 04020000.xhp
-#, fuzzy
-msgctxt ""
-"04020000.xhp\n"
-"par_id1106200812112530\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Lựa chọn hướng đọc của một đoạn văn bản sử dụng chức năng bài trí văn bản phức tạp. Chức năng này chỉ có thể sử dụng nếu như hỗ trợ cho bài trí văn bản phức tạp được chọn.</ahelp>"
-
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Grid"
-msgstr "Lưới"
-
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"bm_id3150398\n"
-"help.text"
-msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
-msgstr "<bookmark_value>trục X;định dạng lưới</bookmark_value><bookmark_value>trục Y;định dạng lưới</bookmark_value><bookmark_value>trục Z; định dạng lưới</bookmark_value>"
-
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3150398\n"
-"2\n"
+"type_xy.xhp\n"
+"hd_id5031251\n"
"help.text"
-msgid "Grid"
-msgstr "Lưới"
+msgid "Stepped Lines"
+msgstr ""
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3152577\n"
-"1\n"
+"type_xy.xhp\n"
+"par_id1449076\n"
"help.text"
-msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
-msgstr "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Mở hộp thoại <emph>Lưới</emph> để xác định các thuộc tính về lưới.</ahelp></variable>"
+msgid "Choose <emph>Stepped</emph> from the <emph>Line type</emph> dropdown to draw lines which step from point to point instead of straight line segments."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"tit\n"
+"type_xy.xhp\n"
+"par_id1202125\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "Click <emph>Properties</emph> to set details for the curves."
+msgstr "Nhấn vào nút <emph>Thuộc tính</emph> để đặt chi tiết về đường cong."
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"bm_id3150791\n"
+"type_xy.xhp\n"
+"par_id9811476\n"
"help.text"
-msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
-msgstr "<bookmark_value>tựa đề; định dạng đồ thị</bookmark_value><bookmark_value>định dạng; tựa đề đồ thị</bookmark_value>"
+msgid "There are 4 different step types:"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3150791\n"
-"1\n"
+"type_xy.xhp\n"
+"alt_id9078573\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
-msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Tựa đề\">Tựa đề</link>"
+msgid "Start step icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3125863\n"
-"2\n"
+"type_xy.xhp\n"
+"par_id9047365\n"
"help.text"
-msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
-msgstr "Trình đơn <emph>Tựa đề</emph> thì mở trình đơn phụ để chỉnh sửa các thuộc tính của tựa đề trên đồ thị."
+msgid "Start with horizontal line and step up vertically at the end."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3155414\n"
-"3\n"
+"type_xy.xhp\n"
+"alt_id05495673\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề chính\">Tựa đề chính</link>"
+msgid "End step icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3156441\n"
-"4\n"
+"type_xy.xhp\n"
+"par_id439028\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Phụ đề\">Phụ đề</link>"
+msgid "Start to step up vertically and end with horizontal line."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3151073\n"
-"5\n"
+"type_xy.xhp\n"
+"alt_id9673426\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề trục X\">Tựa đề trục X</link>"
+msgid "Center X icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3154732\n"
-"6\n"
+"type_xy.xhp\n"
+"par_id4069483\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Tựa đề trục Y\">Tựa đề trục Y</link>"
+msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3154017\n"
-"7\n"
+"type_xy.xhp\n"
+"alt_id56635427\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề trục Z\">Tựa đề trục Z</link>"
+msgid "Center Y icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3153711\n"
-"8\n"
+"type_xy.xhp\n"
+"par_id0679473\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
-msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Mọi tựa đề\">Mọi tựa đề</link>"
+msgid "Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end."
+msgstr ""
#: wiz_chart_elements.xhp
msgctxt ""
@@ -5441,7 +7161,7 @@ msgctxt ""
"par_id7366557\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị các đường lưới vuông góc với trục Z. Tùy chọn này chỉ khả dĩ đối với đồ thị ba chiều.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị các đường lưới vuông góc với trục Z. Tùy chọn này chỉ khả dụng đối với đồ thị ba chiều.</ahelp>"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -5515,2178 +7235,634 @@ msgctxt ""
msgid "Statistics, for example mean values, y error bars and trend lines"
msgstr "Thống kê, ví dụ các giá trị trung bình, thanh lỗi Y và đường xu hướng"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
+"wiz_chart_type.xhp\n"
"tit\n"
"help.text"
-msgid "Format Selection"
-msgstr "Định dạng vùng chọn"
+msgid "Chart Wizard - Chart Type"
+msgstr "Trợ lý Đồ thị > Kiểu Đồ thị"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"bm_id3149666\n"
+"wiz_chart_type.xhp\n"
+"bm_id4266792\n"
"help.text"
-msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
-msgstr "<bookmark_value>đối tượng;thuộc tính của đồ thị</bookmark_value><bookmark_value>đồ thị; thuộc tính</bookmark_value><bookmark_value>thuộc tính;đồ thị</bookmark_value>"
+msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
+msgstr "<bookmark_value>đồ thị;chọn kiểu đồ thị</bookmark_value>"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3149666\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"hd_id1536606\n"
"help.text"
-msgid "Format Selection"
-msgstr "Định dạng vùng chọn"
+msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
+msgstr "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị > Kiểu Đồ thị</link></variable>"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3156284\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id6006958\n"
"help.text"
-msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
-msgstr ""
+msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
+msgstr "Trên trang đầu của <emph>Trợ lý Đồ thị</emph>, bạn có thể <link href=\"text/schart/01/choose_chart_type.xhp\">chọn kiểu đồ thị</link>."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3153418\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"hd_id3919186\n"
"help.text"
-msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
-msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Nền đồ thị\">Nền đồ thị</link>"
+msgid "To choose a chart type"
+msgstr "Để chọn kiểu đồ thị"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3155766\n"
-"4\n"
+"wiz_chart_type.xhp\n"
+"par_id3453169\n"
"help.text"
-msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
-msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Vùng đồ thị\">Vùng đồ thị</link>"
+msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
+msgstr "Chọn một <link href=\"text/schart/01/choose_chart_type.xhp\">kiểu cơ bản</link>: nhấn vào mục riêng (v.d. Cột, Thanh, Bánh)."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3154255\n"
-"5\n"
+"wiz_chart_type.xhp\n"
+"par_id8406933\n"
"help.text"
-msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
-msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Sàn đồ thị\">Sàn đồ thị</link>"
+msgid "The contents on the right side will change to offer more options depending on the basic chart type."
+msgstr "Nội dung bên phải sẽ thay đổi để cung cấp tùy chọn thêm, phụ thuộc vào kiểu đồ thị cơ bản được chọn."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3146313\n"
-"6\n"
+"wiz_chart_type.xhp\n"
+"par_id8230231\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Tựa đề\">Tựa đề</link>"
+msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
+msgstr "Cũng có thể nhấn vào tùy chọn. Trong khi thay đổi thiết lập trong Trợ lý, theo dõi ô xem thử trong tài liệu để thấy hình thức của đồ thị."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3150297\n"
-"7\n"
+"wiz_chart_type.xhp\n"
+"par_id3267006\n"
"help.text"
-msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
-msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Chú giải\">Chú giải</link>"
+msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
+msgstr "Bấm tổ hợp phím <item type=\"keycode\">Shift+F1</item> và chỉ tới điều khiển nào để thấy một chuỗi trợ giúp gợi ý mở rộng."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3143219\n"
-"8\n"
+"wiz_chart_type.xhp\n"
+"par_id7251503\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Trục X\">Trục X</link>"
+msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
+msgstr "Nhấn vào nút <emph>Kết thúc</emph> trên bất cứ trang trợ lý nào, để đóng trợ lý và tạo đồ thị bằng thiết lập hiện thời."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3150207\n"
-"9\n"
+"wiz_chart_type.xhp\n"
+"par_id3191625\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Trục Y\">Trục Y</link>"
+msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
+msgstr "Nhấn vào nút <emph>Kế</emph> để tiến tới trang trợ lý kế tiếp, hoặc nhấn trong danh sách các mục bên trái để đi tới trang riêng đó."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3166432\n"
-"10\n"
+"wiz_chart_type.xhp\n"
+"par_id7659535\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới\">Lưới</link>"
+msgid "Click <emph>Back</emph> to see the previous wizard page."
+msgstr "Nhấn vào nút <emph>Lùi</emph> để trở về trang trợ lý trước đó."
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"tit\n"
+"wiz_chart_type.xhp\n"
+"par_id8420056\n"
"help.text"
-msgid "Data Point"
-msgstr "Điểm dữ liệu"
+msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
+msgstr "Nhấn vào nút <emph>Thôi</emph> để đóng trợ lý, không thay đổi gì hay tạo đồ thị."
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"hd_id3153768\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"par_id2284920\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
-msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Điểm dữ liệu\">Điểm dữ liệu</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn chuột để đi tới trang trợ lý có tên đó.</ahelp>"
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"par_id3152577\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id3184301\n"
"help.text"
-msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
-msgstr "Hộp thoại này cho bạn có khả năng thay đổi các thuộc tính của một điểm dữ liệu đã chọn. Hộp thoại xuất hiện khi chỉ có một điểm dữ liệu được chọn, nếu bạn chọn lệnh <emph>Định dạng > Định dạng vùng chọn</emph>. Một số mục trình đơn chỉ khả dụng đối với đối tượng hai chiều (2D) hay ba chiều (3D)."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu đồ thị cơ bản.</ahelp>"
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"par_id3149121\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"par_id2129276\n"
"help.text"
-msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
-msgstr "Thay đổi được làm sẽ ảnh hưởng đến chỉ điểm dữ liệu riêng lẻ này. Sửa màu thanh, chỉ màu của thanh riêng đó sẽ thay đổi."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu con của kiểu đồ thị cơ bản.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"tit\n"
+"wiz_chart_type.xhp\n"
+"par_id9719229\n"
"help.text"
-msgid "Grid"
-msgstr "Lưới"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kích hoạt hình thức ba chiều cho các giá trị dữ liệu.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"bm_id3155602\n"
+"wiz_chart_type.xhp\n"
+"par_id3860896\n"
"help.text"
-msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
-msgstr "<bookmark_value>lướí; định dạng trục</bookmark_value><bookmark_value>trục; định dạng lưới</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn kiểu hình thức ba chiều.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155602\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"par_id4041871\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Lưới\">Lưới</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một hình riêng trong danh sách.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3155764\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id9930722\n"
"help.text"
-msgid "Opens a submenu, where you select the grid you want to format."
-msgstr "Mở một trình đơn phụ để chọn lưới bạn muốn định dạng:"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị dãy đống trên đồ thị <emph>Đường</emph>.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3150045\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"par_id5749687\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới chính trục X\">Lưới chính trục X</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy đống thì hiển thị các giá trị ở trên nhau.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145228\n"
-"4\n"
+"wiz_chart_type.xhp\n"
+"par_id79348\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới chính trục Y\">Lưới chính trục Y</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy đống hiển thị các giá trị dạng phần trăm.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147346\n"
-"5\n"
+"wiz_chart_type.xhp\n"
+"par_id2414014\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới chính trục Z\">Lưới chính trục Z</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose the type of line to draw.</ahelp>"
+msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3154021\n"
-"6\n"
+"wiz_chart_type.xhp\n"
+"par_id7617114\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới phụ trục X\">Lưới phụ trục X</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the line or curve properties.</ahelp>"
+msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3150307\n"
-"7\n"
+"wiz_chart_type.xhp\n"
+"par_id6649372\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới phụ trục Y\">Lưới phụ trục Y</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kết nối các điểm theo giá trị X tăng dần, thậm chí nếu có thứ tự giá trị khác, trên đồ thị XY rải.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3166428\n"
-"8\n"
+"wiz_chart_type.xhp\n"
+"par_id7334208\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Lưới phụ trục Z\">Lưới phụ trục Z</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt tổng số đường cho kiểu đồ thị <emph>Cột và Đường</emph>.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145585\n"
-"9\n"
+"wiz_chart_type.xhp\n"
+"par_id4485000\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Mọi lưới trục\">Mọi lưới trục</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Kiểu đồ thị</emph>.</ahelp>"
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
+"wiz_data_range.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Column and Bar"
-msgstr "Đồ thị kiểu Cột và Thanh"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"bm_id4919583\n"
-"help.text"
-msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
-msgstr "<bookmark_value>đồ thị cột</bookmark_value><bookmark_value>đồ thị thanh</bookmark_value><bookmark_value>kiểu đồ thị;cột và thanh</bookmark_value>"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id649433\n"
-"help.text"
-msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
-msgstr "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Đồ thị kiểu Cột và Thanh</link></variable>"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id3430585\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id9826960\n"
-"help.text"
-msgid "Column"
-msgstr "Cột"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id2244026\n"
-"help.text"
-msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
-msgstr "Đồ thị kiểu này hiển thị đồ thị thanh có các thanh nằm dọc. Bề cao của mỗi thanh tỷ lệ đúng với giá trị của nó. Trục X hiển thị các phân loại. Trục Y hiển thị giá trị cho mỗi loại."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id1281167\n"
-"help.text"
-msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
-msgstr "Chuẩn: kiểu con này hiển thị ở cạnh nhau mọi giá trị dữ liệu thuộc về cùng loại. Mục đích chính là mỗi giá trị tuyệt đối riêng, so sánh với mỗi giá trị khác."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id3249000\n"
-"help.text"
-msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
-msgstr "Đống: kiểu con này hiển thị ở trên nhau các giá trị cùng loại. Mục đích chính là toàn giá trị loại và sự đóng góp riêng của mỗi giá trị bên trong loại."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id6968901\n"
-"help.text"
-msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
-msgstr "Phần trăm: kiểu con này hiển thị phần trăm tương đối của mỗi giá trị dữ liệu so với tổng số của loại. Mục đích chính là sự đóng góp tương đối của mỗi giá trị với tổng số của loại."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id2224494\n"
-"help.text"
-msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
-msgstr "Bạn có thể mở ô <link href=\"text/schart/01/three_d_view.xhp\">Xem 3D</link> hiển thị các giá trị dữ liệu. Lược đồ <emph>Hiện thức</emph> thì thử tạo ô xem ba chiều đẹp nhât. Lược đồ <emph>Đơn giản</emph> bắt chước ô xem đồ thị của ứng dụng văn phòng khác."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id7359233\n"
-"help.text"
-msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
-msgstr "Đối với các đồ thị ba chiều, bạn có thể chọn hình của mỗi giá trị dữ liệu trong hình <emph>Hộp, Trụ, Nón</emph> và <emph>Chóp</emph>."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id955839\n"
-"help.text"
-msgid "Bar"
-msgstr "Thanh"
+msgid "Chart Wizard - Data Range"
+msgstr "Trợ lý Đồ thị > Phạm vi Dữ liệu"
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id6596881\n"
+"wiz_data_range.xhp\n"
+"bm_id2429578\n"
"help.text"
-msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
-msgstr "Đồ thị kiểu này hiển thị đồ thị thanh có các thanh nằm ngang. Độ dài của mỗi thanh tỷ lệ đúng với giá trị của nó. Trục Y hiển thị các phân loại. Trục X hiển thị giá trị cho mỗi loại."
+msgid "<bookmark_value>data ranges in charts</bookmark_value>"
+msgstr "<bookmark_value>phạm vi dữ liệu trên đồ thị</bookmark_value>"
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id8750572\n"
+"wiz_data_range.xhp\n"
+"hd_id8313852\n"
"help.text"
-msgid "The subtypes are the same as for the Column type."
-msgstr "Kiểu này có cùng những kiểu con với kiểu <emph>Cột</emph>."
+msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
+msgstr "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Trợ lý Đồ thị > Phạm vi Dữ liệu</link></variable>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"tit\n"
+"wiz_data_range.xhp\n"
+"par_id8829309\n"
"help.text"
-msgid "Axes"
-msgstr "Trục"
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
+msgstr "Trên trang <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link> này, bạn có thể chọn một nguồn riêng lẻ của phạm vi dữ liệu. Phạm vi này có thể chứa hơn một phạm vi ô hình chữ nhật."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"bm_id3147428\n"
+"wiz_data_range.xhp\n"
+"par_id6401867\n"
"help.text"
-msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
-msgstr "<bookmark_value>trục; hiển thị trục trên đồ thị</bookmark_value><bookmark_value>đồ thị; hiển thị trục</bookmark_value><bookmark_value>trục X; hiển thị</bookmark_value><bookmark_value>trục Y; hiển thị</bookmark_value><bookmark_value>trục Z; hiển thị</bookmark_value><bookmark_value>trục; co giãn khá hơn</bookmark_value><bookmark_value>trục phụ trên đồ thị</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Dãy dữ liệu</emph> trong đó bạn có thể chỉnh sửa <emph>Phạm vi dữ liệu</emph> và <emph>Dãy dữ liệu</emph>.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3147428\n"
-"1\n"
+"wiz_data_range.xhp\n"
+"par_id2025818\n"
"help.text"
-msgid "Axes"
-msgstr "Trục"
+msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
+msgstr "Dùng trang <emph>Trợ lý Đồ thị > Dãy dữ liệu</emph> nếu bạn cần điều khiển thêm các phạm vi dữ liệu."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3150330\n"
-"2\n"
+"wiz_data_range.xhp\n"
+"par_id8466139\n"
"help.text"
-msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
-msgstr ""
+msgid "This dialog is only available for charts based on a Calc or Writer table."
+msgstr "Hộp thoại này chỉ sẵn sàng đối với đồ thị dựa vào bảng Calc hay Writer."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3156385\n"
-"46\n"
+"wiz_data_range.xhp\n"
+"hd_id1877193\n"
"help.text"
-msgid "Major axis"
-msgstr "Trục chính"
+msgid "To specify a data range"
+msgstr "Để ghi rõ phạm vi dữ liệu"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3146316\n"
-"5\n"
+"wiz_data_range.xhp\n"
+"par_id5924863\n"
"help.text"
-msgid "X axis"
-msgstr "Trục X"
+msgid "Select the data range. Do one of the following:"
+msgstr "Chọn phạm vi dữ liệu, sau đó làm một trong những việc dưới đây:"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3145230\n"
-"6\n"
+"wiz_data_range.xhp\n"
+"par_id4357432\n"
"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
-msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Hiển thị trục X dạng một đường thằng có các phân nhỏ.</ahelp>"
+msgid "Enter the data range in the text box."
+msgstr "Gõ phạm vi dữ liệu vào hộp văn bản."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3147003\n"
-"17\n"
+"wiz_data_range.xhp\n"
+"par_id5626392\n"
"help.text"
-msgid "Y axis"
-msgstr "Trục Y"
+msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
+msgstr "Trong chương trình Calc, một dãy dữ liệu thí dụ là « $Bảng1.$B$3:$B$14 ». Lưu ý rằng một dãy dữ liệu có thể chứa hơn một vùng trên bảng tính, v.d. « $Bảng1.A1:A5;$Bảng1.D1:D5 » cũng là dãy dữ liệu hợp lệ. Trong Writer, một dãy dữ liệu thí dụ là « Bảng1.A1:E4 »."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3154020\n"
-"18\n"
+"wiz_data_range.xhp\n"
+"par_id1363872\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Hiển thị trục Y dạng một đường thằng có các phân nhỏ.</ahelp>"
+msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
+msgstr "Trong Calc, nhấn <emph>Chọn phạm vi dữ liệu</emph> để cực tiểu hóa hộp thoại, rồi kéo rê trên một vùng ô để chọn phạm vi dữ liệu."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3150345\n"
-"28\n"
+"wiz_data_range.xhp\n"
+"par_id6823938\n"
"help.text"
-msgid "Z axis"
-msgstr "Trục Z"
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgstr "Muốn có phạm vi dữ liệu chứa nhiều vùng ô không phải kề nhau thì gõ phạm vi đầu tiên, sau đó tự gõ một dấu chấm phẩy « ; » ở kết thúc hộp văn bản, sau đó gõ các phạm vi khác. Định giới các phạm vi bằng dấu chấm phẩy."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3155113\n"
-"29\n"
+"wiz_data_range.xhp\n"
+"par_id1434369\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Hiển thị trục Z dạng một đường thằng có các phân nhỏ.</ahelp> Trục này chỉ hiển thị trên đồ thị ba chiều (3D)."
+msgid "Click one of the options for data series in rows or in columns."
+msgstr "Nhấn vào một của những tùy chọn về dãy dữ liệu theo hàng hay cột."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3150206\n"
-"36\n"
+"wiz_data_range.xhp\n"
+"par_id7524033\n"
"help.text"
-msgid "Secondary axis"
-msgstr "Trục phụ"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgstr "Đánh dấu để ghi rõ dãy dữ liệu có nhãn trong hàng đầu, trong cột đầu, hay trong cả hai."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3166428\n"
-"37\n"
+"wiz_data_range.xhp\n"
+"par_id5256508\n"
"help.text"
-msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
-msgstr "Hãy sử dụng vùng này để gán một trục phụ cho đồ thị. Nếu một dãy dữ liệu đã được gán cho trục này, $[officename] tự động hiển thị trục và nhãn tương ứng. Cũng có thể tắt thiết lập này về sau. Nếu chưa gán dữ liệu cho trục này, và bạn kích hoạt vùng này, các giá trị của trục Y chính cũng được áp dụng cho trục phụ."
+msgid "In the preview you can see how the final chart will look."
+msgstr "Ô xem thử sẽ hiển thị hình thức cuối cùng của đồ thị."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3152988\n"
-"44\n"
+"wiz_data_range.xhp\n"
+"par_id379650\n"
"help.text"
-msgid "X axis"
-msgstr "Trục X"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ phạm vi dữ liệu bạn muốn chèn vào đồ thị. Để thu nhỏ hộp thoại này trong khi chọn phạm vi trong Calc, nhấn vào nút <emph>Chọn phạm vi dữ liệu</emph>.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3156445\n"
-"45\n"
+"wiz_data_range.xhp\n"
+"par_id953703\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Hiển thị một trục X phụ trên đồ thị.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy dữ liệu lấy dữ liệu từ các hàng liên tiếp trong phạm vị đã chọn. Đối với đồ thị kiểu rải, dãy dữ liệu thứ nhất sẽ chứa các giá trị cho mọi dãy. Các dãy dữ liệu khác được dùng như giá trị Y, một cho mỗi dãy.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3152896\n"
-"38\n"
+"wiz_data_range.xhp\n"
+"par_id4496597\n"
"help.text"
-msgid "Y axis"
-msgstr "Trục Y"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Dãy dữ liệu lấy dữ liệu từ các cột liên tiếp trong phạm vị đã chọn. Đối với đồ thị kiểu rải, dãy dữ liệu thứ nhất sẽ chứa các giá trị cho mọi dãy. Các dãy dữ liệu khác được dùng như giá trị Y, một cho mỗi dãy.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3153818\n"
-"39\n"
+"wiz_data_range.xhp\n"
+"par_id2898953\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Hiển thị một trục Y phụ trên đồ thị.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đối với dãy dữ liệu theo cột: hàng đầu trong phạm vi thì dùng làm tên cho các dãy dữ liệu. Đối với dãy dữ liệu theo cột: hàng đầu trong phạm vi thì dùng làm các phân loại. Các hàng còn lại làm dãy dữ liệu. Không bật tùy chọn này thì mọi hàng làm dãy dữ liệu.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3154762\n"
-"41\n"
+"wiz_data_range.xhp\n"
+"par_id7546311\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Trục chính và trục phụ có thể hiển thị khoảng co giãn (kích cỡ phân nhỏ) khác nhau. Chẳng hạn, bạn có thể đặt trục này có khoảng kích cỡ 2 cm, còn trục khác có 1,5 cm.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đối với dãy dữ liệu theo cột: cột đầu trong phạm vi thì dùng làm tên cho các dãy dữ liệu. Đối với dãy dữ liệu theo hàng: cột đầu trong phạm vi thì dùng làm các phân loại. Các cột còn lại làm dãy dữ liệu. Không bật tùy chọn này thì mọi cột làm dãy dữ liệu.</ahelp>"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
+"wiz_data_series.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Column and Line"
-msgstr "Đồ thị Kiểu Cột và Đường"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"bm_id5976744\n"
-"help.text"
-msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
-msgstr "<bookmark_value>đồ thị cột và đường</bookmark_value><bookmark_value>kiểu đồ thị;cột và đường</bookmark_value><bookmark_value>đồ thị tổ hợp</bookmark_value>"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8596453\n"
-"help.text"
-msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
-msgstr "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Đồ thị Kiểu Cột và Đường</link></variable>"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id4818567\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id2451551\n"
-"help.text"
-msgid "Column and Line"
-msgstr "Cột và Đường"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id3101901\n"
-"help.text"
-msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
-msgstr "Đồ thị kiểu Cột và Đường tổ hợp <link href=\"text/schart/01/type_column_bar.xhp\">Đồ thị Cột</link> với <link href=\"text/schart/01/type_line.xhp\">Đồ thị Đường</link>."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7910397\n"
-"help.text"
-msgid "Select one of the variants"
-msgstr "Chọn một của những biến thể"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id5244300\n"
-"help.text"
-msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
-msgstr "Cột và Đường: các hình chữ nhật của dãy dữ liệu cột được vẽ cạnh nhau để so sánh dễ dàng các giá trị."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7163609\n"
-"help.text"
-msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
-msgstr "Cột và Đường Đống: các hình chữ nhật của dãy dữ liệu cột được vẽ đống ở trên nhau, để mà bề cao của cột đại diện tổng số các giá trị dữ liệu."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id1842097\n"
-"help.text"
-msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
-msgstr "Bạn có thể chèn trục Y thứ hai bằng lệnh <link href=\"text/schart/01/04040000.xhp\">Chèn > Trục</link> sau khi chạy xong Trợ lý."
+msgid "Chart Wizard - Data Series"
+msgstr "Trợ lý > Dãy dữ liệu"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8297677\n"
+"wiz_data_series.xhp\n"
+"bm_id8641621\n"
"help.text"
-msgid "To specify a data range"
-msgstr "Để ghi rõ phạm vi dữ liệu"
+msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
+msgstr "<bookmark_value>thứ tự dữ liệu đồ thị</bookmark_value><bookmark_value>dãy dữ liệu</bookmark_value>"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id8871120\n"
+"wiz_data_series.xhp\n"
+"hd_id6124149\n"
"help.text"
-msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
-msgstr "Những cột bên trái cùng (hay các hàng đầu) của phạm vi dữ liệu đã chọn sẽ cung cấp dữ liệu được hiển thị dạng đối tượng <emph>Cột</emph>. Các cột hay hàng khác của phạm vi dữ liệu sẽ cung cấp dữ liệu cho các đối tượng <emph>Đường</emph>. Bạn vẫn có thể thay đổi trường hợp gán này trong hộp thoại <emph>Dãy dữ liệu</emph>."
+msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
+msgstr "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Trợ lý > Dãy dữ liệu</link></variable>"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id2952055\n"
+"wiz_data_series.xhp\n"
+"par_id9651478\n"
"help.text"
-msgid "Select the data range."
-msgstr "Chọn phạm vi dữ liệu."
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
+msgstr "Trên trang <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link> này, bạn có thể thay đổi phạm vi nguồn của mỗi dãy dữ liệu riêng, gồm nhãn của nó. Cũng có thể thay đổi phạm vi của phân loại. Trước tiên hãy chọn phạm vi dữ liệu trên trang <emph>Phạm vi dữ liệu</emph>, sau đó gỡ bỏ dãy dữ liệu không cần thiết, hoặc thêm dãy dữ liệu từ ô khác."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id594500\n"
+"wiz_data_series.xhp\n"
+"par_id6326487\n"
"help.text"
-msgid "Click one of the options for data series in rows or in columns."
-msgstr "Nhấn vào một của những tùy chọn về dãy dữ liệu theo hàng hay cột."
+msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
+msgstr "Hình như trang chứa quá nhiều tùy chọn thì chỉ xác định phạm vi dữ liệu trên trang <emph>Trợ lý đồ thị > Phạm vi Dữ liệu</emph>, bỏ qua trang này."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1944944\n"
+"wiz_data_series.xhp\n"
+"par_id686361\n"
"help.text"
-msgid "Check whether the data range has labels in the first row or in the first column or both."
-msgstr "Đánh dấu để ghi rõ dãy dữ liệu có nhãn trong hàng đầu, trong cột đầu, hay trong cả hai."
+msgid "This dialog is only available for charts based on a Calc or Writer table."
+msgstr "Hộp thoại này chỉ sẵn sàng đối với đồ thị dựa vào bảng Calc hay Writer."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id6667683\n"
+"wiz_data_series.xhp\n"
+"hd_id9241615\n"
"help.text"
msgid "Organizing data series"
msgstr "Tổ chức dãy dữ liệu"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id7616809\n"
+"wiz_data_series.xhp\n"
+"par_id7159337\n"
"help.text"
msgid "In the Data Series list box you see a list of all data series in the current chart."
msgstr "Trong hộp liệt kê <emph>Dãy dữ liệu</emph>, bạn thấy danh sách các dãy dữ liệu trong đồ thị hiện thời."
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9770195\n"
-"help.text"
-msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
-msgstr "Các dãy dữ liệu cột nằm ở đầu của danh sách, còn các dãy dữ liệu đường nằm ở cuối của danh sách."
-
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1446272\n"
+"wiz_data_series.xhp\n"
+"par_id4921720\n"
"help.text"
msgid "To organize the data series, select an entry in the list."
msgstr "Để tổ chức các dãy dữ liệu, chọn một mục trong danh sách."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id3779717\n"
+"wiz_data_series.xhp\n"
+"par_id6627094\n"
"help.text"
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
msgstr "Nhấn vào nút <emph>Thêm</emph> để thêm dãy dữ liệu khác bên dưới mục đã chọn. Dãy dữ liệu mới có cùng kiểu với mục đã chọn."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5056611\n"
+"wiz_data_series.xhp\n"
+"par_id2926419\n"
"help.text"
msgid "Click Remove to remove the selected entry from the Data Series list."
msgstr "Nhấn vào nút <emph>Bỏ</emph> để gỡ bỏ mục đã chọn khỏi danh sách <emph>Dãy dữ liệu</emph>."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id7786492\n"
+"wiz_data_series.xhp\n"
+"par_id4443800\n"
"help.text"
-msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
-msgstr "Dùng nút mũi tên lên và xuống để dời mục đã chọn lên và xuống trong danh sách. Bằng cách này, bạn có thể chuyển đổi dãy dữ liệu Cột sang dãy dữ liệu Danh sách, và ngược lại. Ở đây không thay đổi thứ tự trong bảng nguồn dữ liệu, chỉ thay đổi bố trí trên đồ thị."
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgstr "Dùng nút mũi tên lên và xuống để di chuyển mục nhập đã chọn lên và xuống trong danh sách. Việc này không thay đổi thứ tự trong bảng nguồn dữ liệu mà nó chỉ thay đổi bố trí trên đồ thị."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id265816\n"
+"wiz_data_series.xhp\n"
+"hd_id9777520\n"
"help.text"
msgid "Editing data series"
msgstr "Chỉnh sửa dãy dữ liệu"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id6768700\n"
+"wiz_data_series.xhp\n"
+"par_id1474654\n"
"help.text"
msgid "Click an entry in the list to view and edit the properties for that entry."
msgstr "Nhấn vào một mục trong danh sách, để xem và chỉnh sửa các thuộc tính về nó."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1924497\n"
+"wiz_data_series.xhp\n"
+"par_id4855189\n"
"help.text"
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
msgstr "Trong hộp liệt kê <emph>Dãy dữ liệu</emph>, bạn thấy tên nhiệm vụ và phạm vi ô của mỗi thành phần của dãy dữ liệu."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5081942\n"
+"wiz_data_series.xhp\n"
+"par_id9475081\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
msgstr "Nhấn vào một mục, sau đó chỉnh sửa nội dung trong hộp văn bản bên dưới."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id2958464\n"
+"wiz_data_series.xhp\n"
+"par_id4695272\n"
"help.text"
msgid "The label next to the text box states the currently selected role."
msgstr "Nhãn bên cạnh hộp văn bản sẽ hiển thị nhiệm vụ được chọn hiện thời."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id883816\n"
+"wiz_data_series.xhp\n"
+"par_id3931699\n"
"help.text"
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr "Gõ phạm vi, hoặc nhấn vào mục <emph>Chọn phạm vi dữ liệu</emph> để thu nhỏ hộp thoại rồi chọn phạm vi dữ liệu bằng con chuột."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5091708\n"
+"wiz_data_series.xhp\n"
+"par_id8626667\n"
+"help.text"
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgstr "Muốn có phạm vi dữ liệu chứa nhiều vùng ô không phải kề nhau thì gõ phạm vi đầu tiên, sau đó tự gõ một dấu chấm phẩy « ; » ở kết thúc hộp văn bản, sau đó gõ các phạm vi khác. Định giới các phạm vi bằng dấu chấm phẩy."
+
+#: wiz_data_series.xhp
+msgctxt ""
+"wiz_data_series.xhp\n"
+"par_id5971556\n"
"help.text"
msgid "The range for a data role, like Y-Values, must not include a label cell."
msgstr "Phạm vi cho nhiệm vụ dữ liệu, giống như giá trị Y, không thể chứa ô nhãn."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id974456\n"
+"wiz_data_series.xhp\n"
+"hd_id7622608\n"
"help.text"
msgid "Editing categories or data labels"
msgstr "Chỉnh sửa phân loại hay nhãn dữ liệu"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id2767113\n"
+"wiz_data_series.xhp\n"
+"par_id9222693\n"
"help.text"
msgid "Enter or select a cell range that will be used as text for categories or data labels."
msgstr "Gõ hay chọn một phạm vi ô đại diện (dạng văn bản) các phân loại hay nhãn dữ liệu."
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id301828\n"
-"help.text"
-msgid "The values in the Categories range will be shown as labels on the x axis."
-msgstr "Những giá trị trong phạm vị Loại sẽ được hiển thị dạng nhãn trên trục X."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8996246\n"
-"help.text"
-msgid "Inserting chart elements"
-msgstr "Chèn phần tử đồ thị"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id5729544\n"
-"help.text"
-msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
-msgstr "Dùng trang <emph>Phần tử Đồ thị</emph> của <emph>Trợ lý Đồ thị</emph> để chèn bất cứ phần tử nào theo đây:"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2932828\n"
-"help.text"
-msgid "Chart titles"
-msgstr "Tựa đề đồ thị"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9449446\n"
-"help.text"
-msgid "Legend"
-msgstr "Chú giải"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id8122196\n"
-"help.text"
-msgid "Visible grid lines"
-msgstr "Đường lưới hiện rõ"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9909665\n"
-"help.text"
-msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
-msgstr "Đối với phần tử thêm, dùng trình đơn <emph>Chèn</emph> của đồ thị trong chế độ chỉnh sửa. Trong đó, bạn có thể xác định những phần tử này:"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9141819\n"
-"help.text"
-msgid "Secondary axes"
-msgstr "Trục phụ"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id6354869\n"
-"help.text"
-msgid "Minor grids"
-msgstr "Lưới phụ"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2685323\n"
-"help.text"
-msgid "Data labels"
-msgstr "Nhãn dữ liệu"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id6042664\n"
-"help.text"
-msgid "Statistics, for example mean values, y error bars and trend lines"
-msgstr "Thống kê, ví dụ các giá trị trung bình, thanh lỗi Y và đường xu hướng"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7889950\n"
-"help.text"
-msgid "To set different data labels for each data series, use the properties dialog of the data series."
-msgstr "Để đặt các nhãn dữ liệu khác cho mỗi chuỗi dữ liệu, dùng hộp thoại thuộc tính của chuỗi dữ liệu đó."
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chart Type Net"
-msgstr "Đồ thị kiểu Lưới"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"bm_id2193975\n"
-"help.text"
-msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
-msgstr "<bookmark_value>đồ thị lưới</bookmark_value><bookmark_value>kiểu đồ thị;lưới</bookmark_value><bookmark_value>đồ thị ra đa, xem đồ thị lưới</bookmark_value>"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"hd_id1990722\n"
-"help.text"
-msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
-msgstr "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Đồ thị kiểu Lưới</link></variable>"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id40589\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Trên trang đầu của <link href=\"text/schart/01/wiz_chart_type.xhp\">Trợ lý Đồ thị</link>, bạn có thể chọn kiểu đồ thị."
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"hd_id1391338\n"
-"help.text"
-msgid "Net"
-msgstr "Lưới"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id7812433\n"
-"help.text"
-msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
-msgstr "Đồ thị Lưới thì hiển thị các giá trị dữ liệu dạng điểm, được kết nối bằng đường để làm một lưới hình như mạng nhện hay màn hình ống dẫn ra-đa."
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id3512375\n"
-"help.text"
-msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
-msgstr "Đối với mỗi hàng dữ liệu đồ thị, hiển thị một đường xuyên tâm trên đó vẽ dữ liệu. Mọi giá trị dữ liệu có cùng tỷ lệ, vậy mọi giá trị dữ liệu nên có khoảng cùng kích cỡ."
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data Labels"
-msgstr "Nhãn dữ liệu"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"bm_id3150275\n"
-"help.text"
-msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
-msgstr "<bookmark_value>nhãn dữ liệu trên đồ thị</bookmark_value><bookmark_value>nhãn; của đồ thị</bookmark_value><bookmark_value>đồ thị; nhãn dữ liệu</bookmark_value><bookmark_value>giá trị dữ liệu trên đồ thị</bookmark_value><bookmark_value>chú giải của đồ thị; hiển thị biểu tượng có nhãn</bookmark_value>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
-msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Nhãn dữ liệu\">Nhãn dữ liệu</link></variable>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3154684\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id0810200912120416\n"
-"help.text"
-msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
-msgstr "Nếu một phần tử của một chuỗi dữ liệu được chọn, lệnh này làm việc chỉ trên chuỗi dữ liệu đó. Nếu không có phần tử nào được chọn, lệnh này làm việc trên mọi chuỗi dữ liệu"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3149401\n"
-"17\n"
-"help.text"
-msgid "Show value as number"
-msgstr "Hiện giá trị dạng số"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3150751\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
-msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Hiển thị giá trị tuyệt đối của điểm dữ liệu.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id5077059\n"
-"help.text"
-msgid "Number format"
-msgstr "Định dạng số"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id9794610\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại để chọn định dạng số.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3145643\n"
-"9\n"
-"help.text"
-msgid "Show value as percentage"
-msgstr "Hiện giá trị dạng phần trăm"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3156382\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
-msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Hiển thị phần trăm của điểm dữ liệu trong mỗi cột.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1316873\n"
-"help.text"
-msgid "Percentage format"
-msgstr "Định dạng phần trăm"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id5476241\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại để chọn định dạng phần trăm.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3145228\n"
-"11\n"
-"help.text"
-msgid "Show category"
-msgstr "Hiện phân loại"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3154702\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
-msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Hiển thị nhãn văn bản của điểm dữ liệu.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3150298\n"
-"15\n"
-"help.text"
-msgid "Show legend key"
-msgstr "Hiện khoá chú giải"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3150205\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
-msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Hiển thị biểu tượng chú giải bên cạnh mỗi nhãn điểm dữ liệu.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3836787\n"
-"help.text"
-msgid "Separator"
-msgstr "Dấu tách"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id6668904\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn dấu tách các chuỗi văn bản của cùng một đối tượng.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id4319284\n"
-"help.text"
-msgid "Placement"
-msgstr "Vị trí"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id5159459\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt vị trí của nhãn dữ liệu tương đối với đối tượng.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1106200812280727\n"
-"help.text"
-msgid "Text Direction"
-msgstr "Hướng của văn bản"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1106200812280719\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn hướng của một đoạn văn bản. Tính năng này chỉ có thể được sử dụng nếu như hỗ trợ bài trí văn bản phức tạp được kích hoạt.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1007200901590713\n"
-"help.text"
-msgid "Rotate Text"
-msgstr "Xoay văn bản"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1007200901590752\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1007200901590757\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trend Lines"
-msgstr "Đường xu hướng"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"bm_id1744743\n"
-"help.text"
-msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
-msgstr "<bookmark_value>tính;đường cong hồi quy</bookmark_value><bookmark_value>đường cong hồi quy trong đồ thị</bookmark_value><bookmark_value>đường xu hướng trong đồ thị</bookmark_value><bookmark_value>đường giá trị trung bình trong đồ thị</bookmark_value>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id5409405\n"
-"help.text"
-msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
-msgstr "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Đường xu hướng</link></variable>"
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id7272255\n"
-"help.text"
-msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
-msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Đường cong hồi quy, cũng được biết như là đường xu hướng, có thể được thêm vào tất cả các kiểu đồ thị trừ đồ thị Bánh và Chứng khoán.</ahelp></variable>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id143436\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chưa hiển thị đường xu hướng.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5716727\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Một đường xu hướng tuyến tính được hiển thị.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5840021\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">\">Một đường xu hướng lôga được hiển thị.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9417096\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Một đường xu hướng kiểu số mũ được hiển thị.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8482924\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Một đường xu hướng lũy thừa được hiển thị.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8962370\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị phương trình đường xu hướng bên cạnh đường xu hướng.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6889858\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị hệ số tương quan bên cạnh đường xu hướng.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8398998\n"
-"help.text"
-msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
-msgstr "Nếu bạn chèn một đường xu hướng vào một kiểu đồ thị dùng phân loại, v.d. <emph>Đường</emph> hay <emph>Cột</emph> thì dãy số nguyên 1, 2, 3, <emph>…</emph> được dùng làm giá trị X để tính đường xu hướng."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5676747\n"
-"help.text"
-msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
-msgstr "Để chèn đường xu hướng cho mọi chuỗi dữ liệu, nhấn đôi vào đồ thị để vào chế độ chỉnh sửa. Chọn lệnh <item type=\"menuitem\">Chèn > Đường xu hướng</item>, rồi chọn kiểu đường xu hướng: Không có, Tuyến tính, Lôga, Số mũ hay Lũy thừa."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4349192\n"
-"help.text"
-msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
-msgstr "Để chèn một đường xu hướng cho một chuỗi dữ liệu riêng lẻ, chọn chuỗi dữ liệu trên đồ thị, nhấn-phải để mở trình đơn ngữ cảnh, sau đó chọn lệnh <item type=\"menuitem\">Chèn > Đường xu hướng</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9337443\n"
-"help.text"
-msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
-msgstr "Để xoá một đường riêng lẻ kiểu xu hướng hay giá trị trung bình, hãy nhấn vào đường đó, sau đó bấm phím Delete."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4529251\n"
-"help.text"
-msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
-msgstr "Để xoá mọi đường xu hướng, chọn lệnh trình đơn <item type=\"menuitem\">Chèn > Đường xu hướng</item>, sau đó chọn <emph>Không gì</emph>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id296334\n"
-"help.text"
-msgid "A trend line is shown in the legend automatically."
-msgstr "Đường xu hướng được hiển thị tự động trong chú giải của đồ thị."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4072084\n"
-"help.text"
-msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
-msgstr "<ahelp hid=\".\">Đường giá trị trung bình là đường xu hướng đặc biệt mà chỉ ra giá trị trung bình. Dùng <item type=\"menuitem\">Chèn - Đường giá trị trung bình</item> để chèn đường giá trị trung bình cho một chuỗi dữ liệu.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9569689\n"
-"help.text"
-msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
-msgstr "Đường xu hướng có cùng màu với chuỗi dữ liệu tương ứng. Để thay đổi các thuộc tính của đường, lựa chọn đường xu hướng rồi chọn lệnh <item type=\"menuitem\">Định dạng > Định dạng vùng chọn > Đường</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id846888\n"
-"help.text"
-msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Để hiển thị phương trình đường xu hướng, lựa chọn đường xu hướng trên đồ thị, nhấn-phải để mở trình đơn ngữ cảnh, sau đó chọn câu lệnh <emph>Chèn phương trình đường xu hướng</emph>.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8962065\n"
-"help.text"
-msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
-msgstr "Khi đồ thị nằm trong chế độ chỉnh sửa, %PRODUCTNAME cung cấp phương trình của đường xu hướng và hệ số tương quan R². Hãy nhấn vào đường xu hướng để thấy thông tin trên thanh trạng thái."
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id1328470\n"
-"help.text"
-msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
-msgstr "Đối với đồ thị phân loại (v.d. đồ thị đường), thông tin hồi qui được tính dùng dãy số nguyên 1, 2, 3 ... làm giá trị X. Cũng đúng nếu dãy dữ liệu dùng con số khác làm tên của giá trị X. Kiểu đồ thị XY có thể thích hợp hơn với đồ thị như vậy."
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id8092593\n"
-"help.text"
-msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
-msgstr "Để hiển thị cả hai phương trình và hệ số tương quan, hãy chọn đường cong hồi quy rồi chọn lệnh trình đơn <item type=\"menuitem\">Định dạng > Định dạng vùng chọn > Phương trình</item>."
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id7971434\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật « Hiện phương trình » để thấy phương trình của đường cong hồi quy.</ahelp>"
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id558793\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật mục « Hiện hệ số tương quan » để thấy hệ số tương quan của đường cong hồi quy.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7735221\n"
-"help.text"
-msgid "You can also calculate the parameters using Calc functions as follows."
-msgstr "Bạn cũng có thể tính các tham số dùng hàm Calc như theo đây."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id5744193\n"
-"help.text"
-msgid "The linear regression equation"
-msgstr "Phương trình hồi quy tuyến tính"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9251991\n"
-"help.text"
-msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
-msgstr "<emph>Hồi quy tuyến tính</emph> theo phương trình <item type=\"literal\">y=m*x+b</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7951902\n"
-"help.text"
-msgid "m = SLOPE(Data_Y;Data_X)"
-msgstr "m = SLOPE(Dữ_liệu_Y;Dữ_liệu_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6637165\n"
-"help.text"
-msgid "b = INTERCEPT(Data_Y ;Data_X)"
-msgstr "b = INTERCEPT(Dữ_liệu_Y ;Dữ_liệu_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7879268\n"
-"help.text"
-msgid "Calculate the coefficient of determination by"
-msgstr "Tính hệ số định trị bằng"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9244361\n"
-"help.text"
-msgid "r² = RSQ(Data_Y;Data_X)"
-msgstr "r² = RSQ(Dữ_liệu_Y;Dữ_liệu_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2083498\n"
-"help.text"
-msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
-msgstr "Ngoài ra « m », « b » và « r² », hàm mảng <emph>LINEST</emph> cung cấp thống kê thêm để phân tích hồi quy."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id2538834\n"
-"help.text"
-msgid "The logarithm regression equation"
-msgstr "Phương trình hồi quy lôga"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id394299\n"
-"help.text"
-msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
-msgstr "<emph>Phương trình hồi quy lôga</emph> theo phương trình <item type=\"literal\">y=a*ln(x)+b</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2134159\n"
-"help.text"
-msgid "a = SLOPE(Data_Y;LN(Data_X))"
-msgstr "a = SLOPE(Dữ_liệu_Y;LN(Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5946531\n"
-"help.text"
-msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
-msgstr "b = INTERCEPT(Dữ_liệu_Y ;LN(Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5649281\n"
-"help.text"
-msgid "r² = RSQ(Data_Y;LN(Data_X))"
-msgstr "r² = RSQ(Dữ_liệu_Y;LN(Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id7874080\n"
-"help.text"
-msgid "The exponential regression equation"
-msgstr "Phương trình hồi quy số mũ"
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id4679097\n"
-"help.text"
-msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
-msgstr "Đối với đường cong hồi quy số mũ thì chuyển dạng sang mô hình tuyến tính. Hàm vừa khít đường cong tối ưu cân xứng với mô hình tuyến tính, và kết quả được giải thích cho phù hợp."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9112216\n"
-"help.text"
-msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
-msgstr "Phương trình hồi quy số mũ theo phương trình <item type=\"literal\">y=b*exp(a*x)</item> hay <item type=\"literal\">y=b*m^x</item>, mà được chuyển dạng thành <item type=\"literal\">ln(y)=ln(b)+a*x</item> hay <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> riêng từng cái."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4416638\n"
-"help.text"
-msgid "a = SLOPE(LN(Data_Y);Data_X)"
-msgstr "a = SLOPE(LN(Dữ_liệu_Y);Dữ_liệu_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1039155\n"
-"help.text"
-msgid "The variables for the second variation are calculated as follows:"
-msgstr "Giá trị cho biến thể thứ hai được tính như theo :"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7184057\n"
-"help.text"
-msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
-msgstr "m = EXP(SLOPE(LN(Dữ_liệu_Y);Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id786767\n"
-"help.text"
-msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
-msgstr "b = EXP(INTERCEPT(LN(Dữ_liệu_Y);Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7127292\n"
-"help.text"
-msgid "Calculate the coefficient of determination by"
-msgstr "Tính hệ số định trị bằng"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5437177\n"
-"help.text"
-msgid "r² = RSQ(LN(Data_Y);Data_X)"
-msgstr "r² = RSQ(LN(Dữ_liệu_Y);Dữ_liệu_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6946317\n"
-"help.text"
-msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
-msgstr "Ngoài ra « m », « b » và « r² », hàm mảng LOGEST cung cấp thống kê thêm để phân tích hồi quy."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id6349375\n"
-"help.text"
-msgid "The power regression equation"
-msgstr "Phương trình hồi quy lũy thừa"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1857661\n"
-"help.text"
-msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-msgstr "Đối với đường cong <emph>hồi quy lũy thừa</emph> thì chuyển dạng thành mô hình tuyến tính. Hồi quy lũy thừa theo phương trình <item type=\"literal\">y=b*x^a</item> , mà được chuyển dạng thành <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8517105\n"
-"help.text"
-msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
-msgstr "a = SLOPE(LN(Dữ_liệu_Y);LN(Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9827265\n"
-"help.text"
-msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
-msgstr "b = EXP(INTERCEPT(LN(Dữ_liệu_Y);LN(Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2357249\n"
-"help.text"
-msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
-msgstr "r² = RSQ(LN(Dữ_liệu_Y);LN(Dữ_liệu_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id9204077\n"
-"help.text"
-msgid "Constraints"
-msgstr "Ràng buộc"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7393719\n"
-"help.text"
-msgid "The calculation of the trend line considers only data pairs with the following values:"
-msgstr "Phép tính đường xu hướng chỉ nhận ra đôi dữ liệu có giá trị này:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7212744\n"
-"help.text"
-msgid "logarithm regression: only positive x-values are considered,"
-msgstr "hồi quy lôga: chỉ nhận ra giá trị X dương."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1664479\n"
-"help.text"
-msgid "exponential regression: only positive y-values are considered,"
-msgstr "hồi quy số mũ: chỉ nhận ra giá trị Y dương."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8734702\n"
-"help.text"
-msgid "power regression: only positive x-values and positive y-values are considered."
-msgstr "hồi quy lũy thừa: chỉ nhận ra giá trị X dương và giá trị Y dương."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id181279\n"
-"help.text"
-msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
-msgstr "Khuyên bạn chuyển dạng dữ liệu cho phụ hợp: tốt nhất khi làm việc với bản sao của dữ liệu gốc, và chuyển dạng dữ liệu đã sao chép."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id7907040\n"
-"help.text"
-msgid "The polynomial regression equation"
-msgstr "Phương trình hồi quy đa thức"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8918729\n"
-"help.text"
-msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
-msgstr "Đường cong <emph>hồi quy đa thức</emph> không thể được thêm tự động. Bạn cần phải tự tính đường cong này."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id33875\n"
-"help.text"
-msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
-msgstr "Hãy tạo một bảng có cột « x, x², x³, … , xⁿ, y » đến cấp n đã thích."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8720053\n"
-"help.text"
-msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X."
-msgstr "Dùng công thức <item type=\"literal\">=LINEST(Dữ_liệu_Y,Dữ_liệu_X)</item> với toàn phạm vi « x đến xⁿ » (không có tiêu đề) làm « Dữ_liệu_X »."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5068514\n"
-"help.text"
-msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
-msgstr "Hàng đầu của kết xuất LINEST chứa các hệ số của hàm đa thức hồi quy, có hệ số « xⁿ » ở vị trí bên trái cùng."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8202154\n"
-"help.text"
-msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
-msgstr "Phần tử đầu của hàng thứ ba của kết xuất LINEST là giá trị của « r² ». Xem hàm <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> để tìm chi tiết về cách sử dụng đúng và lời giải thích các tham số xuất khác."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4562211\n"
-"help.text"
-msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
-msgstr "<link href=\"text/schart/01/04050000.xhp\">Trang thẻ Thanh lỗi Y</link>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"bm_id3149400\n"
-"help.text"
-msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
-msgstr "<bookmark_value>canh lề; đồ thị hai chiều (2D)</bookmark_value><bookmark_value>đồ thị; canh lề</bookmark_value><bookmark_value>đồ thị bánh;tùy chọn</bookmark_value>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3149400\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155067\n"
-"2\n"
-"help.text"
-msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
-msgstr "Hãy dùng hộp thoại này để xác định các tùy chọn sẵn sàng cho một số kiểu đồ thị cụ thể. Nội dung của hộp thoại <emph>Tùy chọn</emph> thì biến đổi tùy theo kiểu đồ thị."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3150043\n"
-"9\n"
-"help.text"
-msgid "Align data series to:"
-msgstr "Đặt chuỗi dữ liệu theo :"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3145228\n"
-"10\n"
-"help.text"
-msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
-msgstr "Trong vùng này, bạn có thể chọn trong hai chế độ tỷ lệ trục Y khác nhau. Chỉ có thể đặt tỷ lệ và gán thuộc tính cho mỗi trục riêng."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3147346\n"
-"4\n"
-"help.text"
-msgid "Primary Y axis"
-msgstr "Trục Y chính"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3147005\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">Tùy chọn này hoạt động theo mặc định. Mọi dãy dữ liệu được đồng chỉnh theo trục Y chính.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3143221\n"
-"5\n"
-"help.text"
-msgid "Secondary Y axis"
-msgstr "Trục Y phụ"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3154656\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Thay đổi tỷ lệ của trục Y. Trục này chỉ hiển thị khi có ít nhất một dãy dữ liệu được gán cho nó, cũng hiển thị ô xem trục.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3166423\n"
-"6\n"
-"help.text"
-msgid "Settings"
-msgstr "Thiết lập"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3150365\n"
-"12\n"
-"help.text"
-msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
-msgstr "Ở đây thì xác định thiết lập cho đồ thị kiểu thanh. Thay đổi áp dụng cho mọi dãy dữ liệu của đồ thị, không phải chỉ cho dữ liệu được chọn."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3145584\n"
-"7\n"
-"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155376\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
-msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Xác định khoảng cách giữa các cột, theo phần trăm.</ahelp> Giá trị tối đa là 600% (6× khoảng cách mặc định)."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3145384\n"
-"8\n"
-"help.text"
-msgid "Overlap"
-msgstr "Chồng lên nhau"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3156447\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
-msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Xác định thiết lập cần thiết cho các dãy dữ liệu chồng lên nhau.</ahelp> Có thể chọn trong phạm vi -100% đến +100%."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3153305\n"
-"16\n"
-"help.text"
-msgid "Connection Lines"
-msgstr "Đường nối"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3148868\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">Đối với đồ thị kiểu cột « đống » và « phần trăm » (thanh nằm dọc), hãy đánh dấu trong hộp chọn này để kết nối bằng đường các lớp cột thuộc nhau.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id9842219\n"
-"help.text"
-msgid "Show bars side by side"
-msgstr "Hiện các thanh cạnh nhau"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id9800103\n"
-"help.text"
-msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
-msgstr "Nếu có hai trục hiển thị trên một đồ thị thanh, và một số chuỗi dữ liệu kèm theo trục thứ nhất, còn một số chuỗi dữ liệu khác kèm theo trục thứ hai, thì mỗi nhóm chuỗi dữ liệu được hiển thị riêng, cả hai nhóm chồng lên nhau."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2144535\n"
-"help.text"
-msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
-msgstr "Kết quả là các thanh kèm theo trục Y thứ nhất bị ẩn một phần hay hoàn toàn bởi các thanh kèm theo trục Y thứ hai. Để tránh trường hợp này, hãy bật tùy chọn hiển thị các thanh cạnh nhau. <ahelp hid=\".\">Các thanh từ những chuỗi dữ liệu khác nhau được hiển thị như thể chúng chỉ gắn vào một trục.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id24414\n"
-"help.text"
-msgid "Clockwise direction"
-msgstr "Theo xuôi chiều"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2527237\n"
-"help.text"
-msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
-msgstr "Sẵn sàng cho các đồ thị kiểu bánh và vòng. <ahelp hid=\".\">Hướng mặc định theo đó sắp xếp các hình quạt của một đồ thị bánh là ngược chiều. Bật tùy chọn <emph>Hướng xuôi chiều</emph> để vẽ các hình quạt theo chiều đối diện.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id401013\n"
-"help.text"
-msgid "Starting angle"
-msgstr "Góc đầu"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id761131\n"
-"help.text"
-msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
-msgstr "<ahelp hid=\".\">Kéo dấu chấm nhỏ đọc theo hình tròn, hoặc nhấn vào bất cứ vị trí nào trên hình tròn, để đặt góc đầu của một đồ thị kiểu bánh hay vòng. Góc đầu là vị trí góc toán học ở đó hình quạt thứ nhất được vẽ. Giá trị 90 độ thì vẽ hình quạt thứ nhất ở vị trí 12 giờ trên đĩa đồng hồ. Giá trị 0 độ thì bắt đầu ở vị trí 3 giờ.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id553910\n"
-"help.text"
-msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
-msgstr "Trong các đồ thị ba chiều (3D) kiểu bánh và vòng được tạo bằng phiên bản phần mềm cũ, góc đầu là 0 độ (thay cho 90 độ). Đối với các đồ thị hai chiều cả cũ lẫn mới đều, góc đầu mặc định là 90 độ."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id1414838\n"
-"help.text"
-msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
-msgstr "Khi bạn sửa đổi góc đầu hay hướng, chỉ phiên bản hiện thời của phần mềm sẽ hiển thị những giá trị đã thay đổi. Các phiên bản phần mềm cũ chỉ hiển thị cùng một tài liệu với các giá trị mặc định: lúc nào cũng theo xuôi chiều và có góc đầu 90 độ (đồ thị bánh hai chiều) hoặc 0 độ (đồ thị bánh ba chiều)."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3179723\n"
-"help.text"
-msgid "Degrees"
-msgstr "Độ"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2164067\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập góc đầu (giữa 0 và 359 độ). Bạn cũng có thể nhấn vào các mũi tên để điều chỉnh giá trị đang hiển thị.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524613\n"
-"help.text"
-msgid "Plot missing values"
-msgstr "Vẽ phác giá trị thiếu"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524650\n"
-"help.text"
-msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
-msgstr "Đôi khi giá trị đang bị thiếu trong một chuỗi dữ liệu để trình bày trong một biểu đồ. Bạn có thể chọn từ các tùy chọn khác để vẽ phác các giá trị thiếu. Các tùy chọn này khả dụng chỉ với một số loại biểu đồ."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524823\n"
-"help.text"
-msgid "Leave gap"
-msgstr "Bỏ khoảng hở"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524811\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
-msgstr "<ahelp hid=\".\">Với một giá trị thiếu, sẽ không có dữ liệu nào hiển thị. Đây là mặc định đối với các loại biểu đồ Cột, Thanh, Đường, Chấm.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524811\n"
-"help.text"
-msgid "Assume zero"
-msgstr "Coi như bằng không"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id030520091052489\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
-msgstr "<ahelp hid=\".\">Với một giá trị thiếu, giá trị y sẽ hiển thị như số không. Đây là mặc định đối với loại biểu đồ Vùng.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524837\n"
-"help.text"
-msgid "Continue line"
-msgstr "Đường liên tục"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524938\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
-msgstr "<ahelp hid=\".\">Với một giá trị thiếu, sẽ hiển thị nội suy từ các giá trị lân cận. Đây là mặc định đối với loại biểu đồ XY.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524937\n"
-"help.text"
-msgid "Include values from hidden cells"
-msgstr "Gồm giá trị từ các ô bị ẩn"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id030520091052494\n"
-"help.text"
-msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kiểm để hiển thị cả giá trị các ô đang bị ẩn, trong phạm vi các ô nguồn.</ahelp>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Y Axis"
-msgstr "Trục Y"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"bm_id3145673\n"
-"help.text"
-msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
-msgstr "<bookmark_value>trục Y; định dạng</bookmark_value>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145673\n"
-"1\n"
-"help.text"
-msgid "Y Axis"
-msgstr "Trục Y"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3155628\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
-msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Mở hộp thoại <emph>Trục Y</emph>, để thay đổi các thuộc tính về trục Y.</ahelp></variable>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145171\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3146119\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Số\">Số</link>"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Titles"
-msgstr "Tựa đề"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3147345\n"
-"1\n"
-"help.text"
-msgid "Titles"
-msgstr "Tựa đề"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"par_id3150298\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
-msgstr ""
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3150207\n"
-"3\n"
-"help.text"
-msgid "Main Title"
-msgstr "Tựa đề chính"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"par_id3150371\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Đánh dấu trong hộp bên cạnh mục <emph>Tựa đề chính</emph> để hiển thị tựa đề chính. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp>"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3146980\n"
-"5\n"
-"help.text"
-msgid "Subtitle"
-msgstr "Phụ đề"
-
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3149404\n"
-"6\n"
+"wiz_data_series.xhp\n"
+"par_id9500106\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Đánh dấu trong hộp bên cạnh mục <emph>Phụ đề</emph> để hiển thị phụ đề. Gõ phụ đề đã muốn vào trường văn bản tương ứng.</ahelp>"
+msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
+msgstr "Phụ thuộc vào kiểu đồ thị, chuỗi văn bản được hiển thị trên trục X hay dạng nhãn dữ liệu."
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3152901\n"
-"7\n"
+"wiz_data_series.xhp\n"
+"par_id5201879\n"
"help.text"
-msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
-msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Nhấn vào biểu tượng <emph>Hiện/ẩn Tựa đề</emph> trên thanh <emph>Định dạng</emph> để ẩn tựa đề và phụ đề.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị danh sách các dãy dữ liệu được đại diện trên đồ thị. Nhấn vào mục để xem và chỉnh sửa dãy dữ liệu đó. Nhấn vào nút<emph>Thêm</emph> để chèn một dãy mới vào danh sách, bên dưới mục đã chọn.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3156018\n"
-"8\n"
+"wiz_data_series.xhp\n"
+"par_id2571794\n"
"help.text"
-msgid "X axis"
-msgstr "Trục X"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị các phạm vi dữ liệu được dùng bởi dãy dữ liệu đã chọn trong hộp liệt kê <emph>Dãy dữ liệu</emph>. Mỗi phạm vi dữ liệu hiển thị tên nhiệm vụ và địa chỉ của phạm vi nguồn.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3152869\n"
-"9\n"
+"wiz_data_series.xhp\n"
+"par_id2254402\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Đánh dấu trong hộp bên cạnh mục <emph>Trục X</emph> để hiển thị tựa đề trên trục X. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị địa chỉ của phạm vi nguồn từ cột thứ hai của hộp liệt kê <emph>Phạm vi Dữ liệu</emph>. Bạn có thể thay đổi phạm vi trong hộp văn bản, hoặc bằng cách kéo trong tài liệu. Để thu nhỏ hộp thoại này trong khi bạn chọn phạm vi dữ liệu trong Calc, nhấn vào nút <emph>Chọn phạm vi dữ liệu</emph>.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3159226\n"
-"10\n"
+"wiz_data_series.xhp\n"
+"par_id2419507\n"
"help.text"
-msgid "Y axis"
-msgstr "Trục Y"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị địa chỉ phạm vi nguồn của phân loại (chuỗi văn bản bạn thấy trên trục X của đồ thị phân loại). Đối với đồ thị kiểu XY, hộp văn bản chứa phạm vi nguồn của nhãn dữ liệu được hiển thị cho điểm dữ liệu. Để thu nhỏ hộp thoại này trong khi bạn chọn phạm vi dữ liệu trong Calc, nhấn vào nút <emph>Chọn phạm vi dữ liệu</emph>.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3154763\n"
-"11\n"
+"wiz_data_series.xhp\n"
+"par_id1091647\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Đánh dấu trong hộp bên cạnh mục <emph>Trục Y</emph> để hiển thị tựa đề trên trục Y. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm một mục nhập mới bên dưới mục hiện thời trong danh sách <emph>Dãy dữ liệu</emph>. Mục đã được chọn thì dãy dữ liệu mới có cùng kiểu đồ thị.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3153009\n"
-"12\n"
+"wiz_data_series.xhp\n"
+"par_id8831446\n"
"help.text"
-msgid "Z axis"
-msgstr "Trục Z"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gỡ bỏ mục nhập đã chọn khỏi danh sách <emph>Dãy dữ liệu</emph>.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3154710\n"
-"13\n"
+"wiz_data_series.xhp\n"
+"par_id7022309\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Đánh dấu trong hộp bên cạnh mục <emph>Trục Z</emph> để hiển thị tựa đề trên trục Z. Gõ tựa đề đã muốn vào trường văn bản tương ứng.</ahelp> Tùy chọn này chỉ sẵn sàng cho đồ thị ba chiều (3D)."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Di chuyển mục nhập đã chọn lên trong danh sách <emph>Dãy dữ liệu</emph>.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3153073\n"
-"14\n"
+"wiz_data_series.xhp\n"
+"par_id2844019\n"
"help.text"
-msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
-msgstr "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Nhấn vào biểu tượng <emph>Hiện/ẩn Tựa đề Trục</emph> trên thanh <emph>Định dạng</emph>, để hiển thị hay ẩn tựa đề trên mỗi trục.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Di chuyển mục nhập đã chọn xuống trong danh sách <emph>Dãy dữ liệu</emph>.</ahelp>"
diff --git a/source/vi/helpcontent2/source/text/schart/02.po b/source/vi/helpcontent2/source/text/schart/02.po
index c5045499906..1afdd71dfdd 100644
--- a/source/vi/helpcontent2/source/text/schart/02.po
+++ b/source/vi/helpcontent2/source/text/schart/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -101,6 +101,57 @@ msgctxt ""
msgid "Data in Columns"
msgstr "Dữ liệu theo cột"
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Co giãn văn bản"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"bm_id3152996\n"
+"help.text"
+msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
+msgstr "<bookmark_value>co giãn văn bản trong biểu đồ</bookmark_value><bookmark_value>co giãn; văn bản trong biểu đồ</bookmark_value><bookmark_value>biểu đồ;co giãn văn bản</bookmark_value>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"hd_id3152996\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
+msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Co giãn văn bản\">Co giãn văn bản</link>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3144510\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr "<ahelp hid=\".uno:ScaleText\">Co giãn văn bản trong biểu đồ một cách tương ứng khi bạn thay đổi kích cỡ của biểu đồ.</ahelp>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3150441\n"
+"help.text"
+msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Biểu tượng</alt></image>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3153190\n"
+"3\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Co giãn văn bản"
+
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -177,54 +228,3 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Displays the name of the current chart type.</ahelp>"
msgstr "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Hiển thị tên kiểu biểu đồ đang sử dụng.</ahelp>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Scale Text"
-msgstr "Co giãn văn bản"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"bm_id3152996\n"
-"help.text"
-msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
-msgstr "<bookmark_value>co giãn văn bản trong biểu đồ</bookmark_value><bookmark_value>co giãn; văn bản trong biểu đồ</bookmark_value><bookmark_value>biểu đồ;co giãn văn bản</bookmark_value>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"hd_id3152996\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
-msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Co giãn văn bản\">Co giãn văn bản</link>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3144510\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
-msgstr "<ahelp hid=\".uno:ScaleText\">Co giãn văn bản trong biểu đồ một cách tương ứng khi bạn thay đổi kích cỡ của biểu đồ.</ahelp>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3150441\n"
-"help.text"
-msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Biểu tượng</alt></image>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3153190\n"
-"3\n"
-"help.text"
-msgid "Scale Text"
-msgstr "Co giãn văn bản"
diff --git a/source/vi/helpcontent2/source/text/schart/04.po b/source/vi/helpcontent2/source/text/schart/04.po
index eb8908e175c..1383d05dc43 100644
--- a/source/vi/helpcontent2/source/text/schart/04.po
+++ b/source/vi/helpcontent2/source/text/schart/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/vi/helpcontent2/source/text/sdraw.po b/source/vi/helpcontent2/source/text/sdraw.po
index e3987e55aea..abd16353b5a 100644
--- a/source/vi/helpcontent2/source/text/sdraw.po
+++ b/source/vi/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,202 +15,365 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
+"main0000.xhp\n"
"tit\n"
"help.text"
-msgid "Tools"
-msgstr "Công cụ"
+msgid "Welcome to the $[officename] Draw Help"
+msgstr "Chào mừng dùng Trợ Giúp của $[officename] Draw"
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3159155\n"
+"main0000.xhp\n"
+"hd_id3155960\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Công cụ\">Công cụ</link>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Chào mừng dùng Trợ Giúp của $[officename] Draw"
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
-"par_id3156443\n"
+"main0000.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "How to Work With $[officename] Draw"
+msgstr "Làm việc với $[officename] Draw như thế nào"
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3150363\n"
+"5\n"
+"help.text"
+msgid "$[officename] Draw Menus, Toolbars, and Keys"
+msgstr "Trình đơn, thanh công cụ và phím của $[officename] Draw"
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3166430\n"
+"4\n"
+"help.text"
+msgid "Help about the Help"
+msgstr "Trợ giúp về Trợ giúp"
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Menus"
+msgstr "Trình đơn"
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"hd_id3148664\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Trình đơn\">Trình đơn</link></variable>"
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"par_id3154684\n"
"2\n"
"help.text"
-msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
-msgstr "Trình đơn này cung cấp các công cụ cho $[officename] Draw, cũng như khả năng truy cập thiết lập ngôn ngữ và hệ thống."
+msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
+msgstr "Sau đây có mô tả tất cả các trình đơn, trình đơn phụ và hộp thoại tương ứng của $[officename] Draw."
-#: main0106.xhp
+#: main0101.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3153415\n"
+"main0101.xhp\n"
+"tit\n"
+"help.text"
+msgid "File"
+msgstr "Tập tin"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3149655\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"Tập tin\">Tập tin</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"par_id3150868\n"
+"2\n"
+"help.text"
+msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
+msgstr "Trình đơn này chứa các lệnh chung để thao tác tài liệu Draw, như mở, đóng và in. Để đóng chương trình $[officename] Draw, nhấn vào lệnh <emph>Thoát</emph>."
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3156441\n"
"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Tự động sửa lỗi\">Tùy chỉnh tự động sửa lỗi</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Mở\">Mở</link>"
-#: main0106.xhp
+#: main0101.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3150044\n"
+"main0101.xhp\n"
+"hd_id3153876\n"
"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Tùy biến\">Tùy biến</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Lưu mới\">Lưu mới</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
+"main0101.xhp\n"
+"hd_id3150718\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
+msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Xuất\">Xuất</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3154754\n"
+"14\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Phiên bản\">Phiên bản</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3150044\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Thuộc tính\">Thuộc tính</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3149127\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"In\">In</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3145790\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Thiết lập máy in\">Thiết lập máy in</link>"
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] Draw Features"
-msgstr "Tính năng $[officename] Draw"
+msgid "Edit"
+msgstr "Sửa"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148797\n"
+"main0102.xhp\n"
+"hd_id3150868\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"Tính năng $[officename] Draw\">Tính năng $[officename] Draw</link></variable>"
+msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Sửa\">Sửa</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3146975\n"
+"main0102.xhp\n"
+"par_id3146974\n"
"2\n"
"help.text"
-msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
-msgstr "Chương trình $[officename] Draw cho bạn có khả năng tạo bản vẽ cả đơn giản lẫn phức tạp, và xuất chúng theo nhiều định dạng ảnh thường dùng. Cũng có thể chèn vào bản vẽ cái bảng, đồ thị, công thức và các mục khác được tạo trong ứng dụng $[officename] khác."
+msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
+msgstr "Các lệnh trong trình đơn này được dùng để sửa đổi tài liệu Draw (v.d. sao chép và dán)."
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3147435\n"
-"11\n"
+"main0102.xhp\n"
+"hd_id3147396\n"
+"3\n"
"help.text"
-msgid "Vector Graphics"
-msgstr "Đồ họa véc-tơ"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Dán đặc biệt\">Dán đặc biệt</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3153142\n"
-"12\n"
+"main0102.xhp\n"
+"hd_id3149400\n"
+"4\n"
"help.text"
-msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
-msgstr "Chương trình $[officename] Draw tạo đồ họa véc-tơ, dùng các đường thẳng và đường cong được xác định bằng véc-tơ thuộc toán học. Véc-tơ đại diện đường, hình bầu dục và hình đa giác, tùy theo dạng hình."
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Tìm và Thay thế\">Tìm và Thay thế</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154320\n"
+"main0102.xhp\n"
+"hd_id3153713\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Điểm\">Điểm</link>"
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"par_id3147340\n"
"14\n"
"help.text"
-msgid "Creating 3D Objects"
-msgstr "Tạo đối tượng 3D"
+msgid "Enables you to edit points on your drawing."
+msgstr "Cho bạn có khả năng chỉnh sửa các điểm trên bản vẽ."
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3145251\n"
+"main0102.xhp\n"
+"hd_id3149258\n"
"15\n"
"help.text"
-msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
-msgstr "Trong $[officename] Draw, bạn có khả năng tạo đối tượng ba chiều đơn giản như hình khối, hình cầu và hình trụ, ngay cả sửa đổi nguồn ánh sáng của đối tượng đó."
+msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Điểm nối\">Điểm nối</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154491\n"
-"20\n"
+"main0102.xhp\n"
+"par_id3146315\n"
+"16\n"
"help.text"
-msgid "Grids and Snap Lines"
-msgstr ""
+msgid "Enables you to edit glue points on your drawing."
+msgstr "Cho bạn có khả năng chỉnh sửa các điểm nối trên bản vẽ."
-#: main0503.xhp
-#, fuzzy
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149379\n"
+"main0102.xhp\n"
+"hd_id3147005\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Nhân đôi\">Nhân đôi</link>"
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id3150205\n"
"6\n"
"help.text"
-msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
-msgstr "Các lưới và nét dẫn cung cấp dấu hiệu hiện rõ để giúp đỡ bạn sắp hàng các đối tượng trong bản vẽ. Bạn cũng có thể chọn đính đối tượng tới đường lưới, nét dẫn hay cạnh của đối tượng khác."
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Mờ đi chéo\">Mờ đi chéo</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3155601\n"
-"16\n"
+"main0102.xhp\n"
+"hd_id3154650\n"
+"7\n"
"help.text"
-msgid "Connecting Objects to Show Relationships"
-msgstr "Kết nối đối tượng để ngụ ý quan hệ"
+msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Trường\">Trường</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149124\n"
-"17\n"
+"main0102.xhp\n"
+"hd_id3156446\n"
+"10\n"
"help.text"
-msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
-msgstr "Trong $[officename] Draw, bạn có khả năng kết nối các đối tượng với nhau, bằng đường đặc biệt được gọi như là « đầu nói », để ngụ ý quan hệ giữa các đối tượng đó. Bộ kết nối gắn với điểm nối trên đối tượng vẽ, và còn lại được gắn khi đối tượng được di chuyển. Bộ kết nối có ích để tạo đồ thị tổ chức và đồ thị kỹ thuật."
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Liên kết\">Liên kết</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3155764\n"
-"21\n"
+"main0102.xhp\n"
+"hd_id3148699\n"
+"11\n"
"help.text"
-msgid "Displaying Dimensions"
-msgstr "Hiển thị các chiều"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Sơ đồ ảnh\">Sơ đồ ảnh</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3155333\n"
-"22\n"
+"main0102.xhp\n"
+"hd_id3157867\n"
+"12\n"
"help.text"
-msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
-msgstr "Đồ thị kỹ thuật thường hiển thị các chiều của những đối tượng trong bản vẽ đó. Trong chương trình $[officename] Draw, bạn có khả năng dùng đường chiều để tính và hiển thị các chiều tuyến tính."
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Siêu liên kết\">Siêu liên kết</link>"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154705\n"
-"18\n"
+"main0103.xhp\n"
+"tit\n"
"help.text"
-msgid "Gallery"
-msgstr "Bộ sưu tập"
+msgid "View"
+msgstr "Xem"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3154022\n"
-"7\n"
+"main0103.xhp\n"
+"hd_id3152576\n"
+"1\n"
"help.text"
-msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
-msgstr "Bộ sưu tập chứa các ảnh, hoạt ảnh, âm thanh và các mục khác bạn có thể chèn và sử dụng trong bản vẽ, cũng như trong các ứng dụng $[officename] khác."
+msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"Xem\">Xem</link>"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3149207\n"
-"19\n"
+"main0103.xhp\n"
+"par_id3159155\n"
+"2\n"
"help.text"
-msgid "Graphic File Formats"
-msgstr "Định dạng tập tin đồ họa"
+msgid "Sets the display properties of Draw documents."
+msgstr "Đặt thuộc tính hiển thị của các tài liệu Draw."
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3155112\n"
-"5\n"
+"main0103.xhp\n"
+"par_idN105AB\n"
"help.text"
-msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
-msgstr "$[officename] Draw có khả năng xuất khẩu theo nhiều định dạng đồ họa thường dùng, như BMP, GIF, JPG, và PNG."
+msgid "Normal"
+msgstr "Chuẩn"
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105AF\n"
+"help.text"
+msgid "Switch to normal view of the page."
+msgstr "Chuyển đổi về ô xem trang bình thường."
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "Master"
+msgstr "Chính"
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105B6\n"
+"help.text"
+msgid "Switch to the master page view."
+msgstr "Chuyển đổi về ô xem trang chính."
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id3149666\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Thu/Phóng\">Thu/Phóng</link>"
#: main0104.xhp
msgctxt ""
@@ -442,6 +605,146 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Lớp\">Lớp</link>"
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools"
+msgstr "Công cụ"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3159155\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Công cụ\">Công cụ</link>"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"par_id3156443\n"
+"2\n"
+"help.text"
+msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
+msgstr "Trình đơn này cung cấp các công cụ cho $[officename] Draw, cũng như khả năng truy cập thiết lập ngôn ngữ và hệ thống."
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3153415\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Tự động sửa lỗi\">Tùy chỉnh tự động sửa lỗi</link>"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3150044\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Tùy biến\">Tùy biến</link>"
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"hd_id3148663\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link></variable>"
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"par_id3125863\n"
+"2\n"
+"help.text"
+msgid "This section provides an overview of the toolbars available in $[officename] Draw."
+msgstr "Phần này diễn tả những thanh công cụ sẵn sàng trong ứng dụng $[officename] Draw."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Line and Filling Bar"
+msgstr "Thanh Đường và Tô đầy"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3149669\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
+msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Thanh dòng và tô đầy\">Thanh Đường và Tô đầy</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id3150543\n"
+"2\n"
+"help.text"
+msgid "The Line and Filling bar contains commands for the current editing mode."
+msgstr "Thanh Đường và Tô đầy chứa các lệnh cho chế độ sửa đổi hiện thời."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3149664\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Kiểu đường\">Kiểu đường</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3156285\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Bề rộng dòng\">Bề rộng dòng</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3154015\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Màu dòng\">Màu dòng</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3155767\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Kiểu/tô đầy vùng\">Kiểu/Tô đầy vùng</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3341471\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Bóng\">Bóng</link>"
+
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -596,277 +899,6 @@ msgctxt ""
msgid "Switches the 3D effects on and off for the selected objects."
msgstr "Bật/tắt hiệu ứng ba chiều cho những đối tượng đã chọn."
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"tit\n"
-"help.text"
-msgid "View"
-msgstr "Xem"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id3152576\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"Xem\">Xem</link>"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_id3159155\n"
-"2\n"
-"help.text"
-msgid "Sets the display properties of Draw documents."
-msgstr "Đặt thuộc tính hiển thị của các tài liệu Draw."
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AB\n"
-"help.text"
-msgid "Normal"
-msgstr "Chuẩn"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AF\n"
-"help.text"
-msgid "Switch to normal view of the page."
-msgstr "Chuyển đổi về ô xem trang bình thường."
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "Master"
-msgstr "Chính"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105B6\n"
-"help.text"
-msgid "Switch to the master page view."
-msgstr "Chuyển đổi về ô xem trang chính."
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id3149666\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Thu/Phóng\">Thu/Phóng</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit"
-msgstr "Sửa"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3150868\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Sửa\">Sửa</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3146974\n"
-"2\n"
-"help.text"
-msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr "Các lệnh trong trình đơn này được dùng để sửa đổi tài liệu Draw (v.d. sao chép và dán)."
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3147396\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Dán đặc biệt\">Dán đặc biệt</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3149400\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Tìm và Thay thế\">Tìm và Thay thế</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3153713\n"
-"13\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Điểm\">Điểm</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3147340\n"
-"14\n"
-"help.text"
-msgid "Enables you to edit points on your drawing."
-msgstr "Cho bạn có khả năng chỉnh sửa các điểm trên bản vẽ."
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3149258\n"
-"15\n"
-"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Điểm nối\">Điểm nối</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3146315\n"
-"16\n"
-"help.text"
-msgid "Enables you to edit glue points on your drawing."
-msgstr "Cho bạn có khả năng chỉnh sửa các điểm nối trên bản vẽ."
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3147005\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Nhân đôi\">Nhân đôi</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3150205\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Mờ đi chéo\">Mờ đi chéo</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3154650\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Trường\">Trường</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3156446\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Liên kết\">Liên kết</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3148699\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Sơ đồ ảnh\">Sơ đồ ảnh</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3157867\n"
-"12\n"
-"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Siêu liên kết\">Siêu liên kết</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line and Filling Bar"
-msgstr "Thanh Đường và Tô đầy"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3149669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
-msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Thanh dòng và tô đầy\">Thanh Đường và Tô đầy</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id3150543\n"
-"2\n"
-"help.text"
-msgid "The Line and Filling bar contains commands for the current editing mode."
-msgstr "Thanh Đường và Tô đầy chứa các lệnh cho chế độ sửa đổi hiện thời."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3149664\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Kiểu đường\">Kiểu đường</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3156285\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Bề rộng dòng\">Bề rộng dòng</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3154015\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Màu dòng\">Màu dòng</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3155767\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Kiểu/tô đầy vùng\">Kiểu/Tô đầy vùng</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3341471\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Bóng\">Bóng</link>"
-
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -903,7 +935,6 @@ msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display
msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Hiện lưới\">Hiện lưới</link>"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"hd_id3149018\n"
@@ -922,7 +953,6 @@ msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to
msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Đính lưới\">Đính lưới</link>"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"hd_id3146313\n"
@@ -976,187 +1006,154 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
msgstr "<link href=\"text/simpress/02/13190000.xhp\" name=\"Chọn chỉ vùng văn bản\">Chọn chỉ vùng văn bản</link>"
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
+"main0503.xhp\n"
"tit\n"
"help.text"
-msgid "Welcome to the $[officename] Draw Help"
-msgstr "Chào mừng dùng Trợ Giúp của $[officename] Draw"
+msgid "$[officename] Draw Features"
+msgstr "Tính năng $[officename] Draw"
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3155960\n"
+"main0503.xhp\n"
+"hd_id3148797\n"
"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Chào mừng dùng Trợ Giúp của $[officename] Draw"
-
-#: main0000.xhp
-msgctxt ""
-"main0000.xhp\n"
-"hd_id3154022\n"
-"3\n"
-"help.text"
-msgid "How to Work With $[officename] Draw"
-msgstr "Làm việc với $[officename] Draw như thế nào"
-
-#: main0000.xhp
-msgctxt ""
-"main0000.xhp\n"
-"hd_id3150363\n"
-"5\n"
-"help.text"
-msgid "$[officename] Draw Menus, Toolbars, and Keys"
-msgstr "Trình đơn, thanh công cụ và phím của $[officename] Draw"
+msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"Tính năng $[officename] Draw\">Tính năng $[officename] Draw</link></variable>"
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3166430\n"
-"4\n"
+"main0503.xhp\n"
+"par_id3146975\n"
+"2\n"
"help.text"
-msgid "Help about the Help"
-msgstr "Trợ giúp về Trợ giúp"
+msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
+msgstr "Chương trình $[officename] Draw cho bạn có khả năng tạo bản vẽ cả đơn giản lẫn phức tạp, và xuất chúng theo nhiều định dạng ảnh thường dùng. Cũng có thể chèn vào bản vẽ cái bảng, đồ thị, công thức và các mục khác được tạo trong ứng dụng $[officename] khác."
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"hd_id3147435\n"
+"11\n"
"help.text"
-msgid "Menus"
-msgstr "Trình đơn"
+msgid "Vector Graphics"
+msgstr "Đồ họa véc-tơ"
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"hd_id3148664\n"
-"1\n"
+"main0503.xhp\n"
+"par_id3153142\n"
+"12\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Trình đơn\">Trình đơn</link></variable>"
+msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
+msgstr "Chương trình $[officename] Draw tạo đồ họa véc-tơ, dùng các đường thẳng và đường cong được xác định bằng véc-tơ thuộc toán học. Véc-tơ đại diện đường, hình bầu dục và hình đa giác, tùy theo dạng hình."
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"par_id3154684\n"
-"2\n"
+"main0503.xhp\n"
+"hd_id3154320\n"
+"14\n"
"help.text"
-msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
-msgstr "Sau đây có mô tả tất cả các trình đơn, trình đơn phụ và hộp thoại tương ứng của $[officename] Draw."
+msgid "Creating 3D Objects"
+msgstr "Tạo đối tượng 3D"
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"par_id3145251\n"
+"15\n"
"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
+msgstr "Trong $[officename] Draw, bạn có khả năng tạo đối tượng ba chiều đơn giản như hình khối, hình cầu và hình trụ, ngay cả sửa đổi nguồn ánh sáng của đối tượng đó."
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"hd_id3148663\n"
-"1\n"
+"main0503.xhp\n"
+"hd_id3154491\n"
+"20\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link></variable>"
+msgid "Grids and Snap Lines"
+msgstr ""
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"par_id3125863\n"
-"2\n"
+"main0503.xhp\n"
+"par_id3149379\n"
+"6\n"
"help.text"
-msgid "This section provides an overview of the toolbars available in $[officename] Draw."
-msgstr "Phần này diễn tả những thanh công cụ sẵn sàng trong ứng dụng $[officename] Draw."
+msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
+msgstr "Các lưới và nét dẫn cung cấp dấu hiệu hiện rõ để giúp đỡ bạn sắp hàng các đối tượng trong bản vẽ. Bạn cũng có thể chọn đính đối tượng tới đường lưới, nét dẫn hay cạnh của đối tượng khác."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"hd_id3155601\n"
+"16\n"
"help.text"
-msgid "File"
-msgstr "Tập tin"
+msgid "Connecting Objects to Show Relationships"
+msgstr "Kết nối đối tượng để ngụ ý quan hệ"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149655\n"
-"1\n"
+"main0503.xhp\n"
+"par_id3149124\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"Tập tin\">Tập tin</link>"
+msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
+msgstr "Trong $[officename] Draw, bạn có khả năng kết nối các đối tượng với nhau, bằng đường đặc biệt được gọi như là « đầu nói », để ngụ ý quan hệ giữa các đối tượng đó. Bộ kết nối gắn với điểm nối trên đối tượng vẽ, và còn lại được gắn khi đối tượng được di chuyển. Bộ kết nối có ích để tạo đồ thị tổ chức và đồ thị kỹ thuật."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"par_id3150868\n"
-"2\n"
+"main0503.xhp\n"
+"hd_id3155764\n"
+"21\n"
"help.text"
-msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
-msgstr "Trình đơn này chứa các lệnh chung để thao tác tài liệu Draw, như mở, đóng và in. Để đóng chương trình $[officename] Draw, nhấn vào lệnh <emph>Thoát</emph>."
+msgid "Displaying Dimensions"
+msgstr "Hiển thị các chiều"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"4\n"
+"main0503.xhp\n"
+"par_id3155333\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Mở\">Mở</link>"
+msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
+msgstr "Đồ thị kỹ thuật thường hiển thị các chiều của những đối tượng trong bản vẽ đó. Trong chương trình $[officename] Draw, bạn có khả năng dùng đường chiều để tính và hiển thị các chiều tuyến tính."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"6\n"
+"main0503.xhp\n"
+"hd_id3154705\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Lưu mới\">Lưu mới</link>"
+msgid "Gallery"
+msgstr "Bộ sưu tập"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
+"main0503.xhp\n"
+"par_id3154022\n"
"7\n"
"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Xuất\">Xuất</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"14\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Phiên bản\">Phiên bản</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Thuộc tính\">Thuộc tính</link>"
+msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
+msgstr "Bộ sưu tập chứa các ảnh, hoạt ảnh, âm thanh và các mục khác bạn có thể chèn và sử dụng trong bản vẽ, cũng như trong các ứng dụng $[officename] khác."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"12\n"
+"main0503.xhp\n"
+"hd_id3149207\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"In\">In</link>"
+msgid "Graphic File Formats"
+msgstr "Định dạng tập tin đồ họa"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"13\n"
+"main0503.xhp\n"
+"par_id3155112\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Thiết lập máy in\">Thiết lập máy in</link>"
+msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
+msgstr "$[officename] Draw có khả năng xuất khẩu theo nhiều định dạng đồ họa thường dùng, như BMP, GIF, JPG, và PNG."
diff --git a/source/vi/helpcontent2/source/text/sdraw/00.po b/source/vi/helpcontent2/source/text/sdraw/00.po
index c68aa3cac5d..f580d604256 100644
--- a/source/vi/helpcontent2/source/text/sdraw/00.po
+++ b/source/vi/helpcontent2/source/text/sdraw/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/vi/helpcontent2/source/text/sdraw/01.po b/source/vi/helpcontent2/source/text/sdraw/01.po
index 6ebb4f4f512..12115198ff6 100644
--- a/source/vi/helpcontent2/source/text/sdraw/01.po
+++ b/source/vi/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/vi/helpcontent2/source/text/sdraw/04.po b/source/vi/helpcontent2/source/text/sdraw/04.po
index ee79a7a839f..8dc29c85534 100644
--- a/source/vi/helpcontent2/source/text/sdraw/04.po
+++ b/source/vi/helpcontent2/source/text/sdraw/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:27+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -788,7 +788,6 @@ msgid "Press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option<
msgstr "Bấm tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline> và kéo con trỏ chuột, để vẽ hay thay đổi kích cỡ của đối tượng, từ trung tâm của đối tượng ra ngoài."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3143232\n"
diff --git a/source/vi/helpcontent2/source/text/sdraw/guide.po b/source/vi/helpcontent2/source/text/sdraw/guide.po
index b7937dfce47..241ccbbace2 100644
--- a/source/vi/helpcontent2/source/text/sdraw/guide.po
+++ b/source/vi/helpcontent2/source/text/sdraw/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 23:28+0200\n"
"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,6 +15,402 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"tit\n"
+"help.text"
+msgid "Arranging, Aligning and Distributing Objects"
+msgstr "Sắp đặt, Sắp hàng và Phân phối các Đối tượng"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3149656\n"
+"73\n"
+"help.text"
+msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
+msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Sắp đặt, Sắp hàng và Phân phối các Đối tượng\">Sắp đặt, Sắp hàng và Phân phối các Đối tượng</link></variable>"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"bm_id3125863\n"
+"help.text"
+msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
+msgstr "<bookmark_value>sắp đặt; đối tượng (hướng dẫn)</bookmark_value><bookmark_value>đối tượng;sắp hàng</bookmark_value><bookmark_value>phân phối các đối tượng vẽ</bookmark_value><bookmark_value>sắp hàng;đối tượng vẽ</bookmark_value>"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3125863\n"
+"17\n"
+"help.text"
+msgid "Arranging Objects"
+msgstr "Sắp đặt các Đối tượng"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3153727\n"
+"18\n"
+"help.text"
+msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
+msgstr "Mỗi đối tượng bạn để vào tài liệu sẽ được xếp đống lần lượt trên đối tượng trước. Để sắp đặt lại thứ tự xếp đống của đối tượng đã chọn, làm các bước theo đây."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107D5\n"
+"help.text"
+msgid "Click the object whose position you want to change."
+msgstr "Nhấn vào đối tượng có vị trí bạn muốn thay đổi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3150327\n"
+"78\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
+msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Sắp đặt</item> để mở trình đơn ngữ cảnh và chọn một của những tùy chọn sắp đặt:"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107E6\n"
+"help.text"
+msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
+msgstr "<emph>Nâng lên trên</emph> để đối tượng ở trên các đối tượng khác"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107EC\n"
+"help.text"
+msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
+msgstr "<emph>Nâng lên</emph> nâng đối tượng lên một cấp trong đống các đối tượng"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107F2\n"
+"help.text"
+msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
+msgstr "<emph>Hạ xuống</emph> hạ đối tượng xuống một cấp trong đống các đối tượng"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107F8\n"
+"help.text"
+msgid "<emph>Send to Back</emph> places the object behind all other objects"
+msgstr "<emph>Hạ xuống dưới</emph> để đối tượng ở dưới các đối tượng khác"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107FE\n"
+"help.text"
+msgid "<emph>Behind Object</emph> places the object behind another object that you select"
+msgstr "<emph>Ở sau đối tượng</emph> để đối tượng ở sau một đối tượng khác bạn chọn"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3155766\n"
+"79\n"
+"help.text"
+msgid "Arranging an Object Behind Another Object"
+msgstr "Sắp đặt đối tượng ở sau đối tượng khác"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN10811\n"
+"help.text"
+msgid "Click the object whose position you want to change."
+msgstr "Nhấn vào đối tượng có vị trí bạn muốn thay đổi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3154253\n"
+"80\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
+msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Sắp đặt</item> để mở trình đơn ngữ cảnh và chọn mục <emph>Ở sau đối tượng</emph>. Con trỏ chuột sẽ thay đổi thành hình tay."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3149126\n"
+"81\n"
+"help.text"
+msgid "Click the object behind which you want to place the selected object."
+msgstr "Nhấn vào đối tượng ở sau đó bạn muốn để đối tượng đã chọn."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3145789\n"
+"20\n"
+"help.text"
+msgid "Reversing The Stacking Order of Two Objects"
+msgstr "Ngược lại thứ tự xếp đống của hai đối tượng"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3154022\n"
+"83\n"
+"help.text"
+msgid "Shift-click both objects to select them."
+msgstr "Shift-nhấn cả hai đối tượng để chọn chúng."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3155114\n"
+"84\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
+msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Sắp đặt</item> để mở trình đơn ngữ cảnh và chọn mục <emph>Đảo ngược</emph>"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3166425\n"
+"21\n"
+"help.text"
+msgid "Aligning Objects"
+msgstr "Sắp hàng đối tượng"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3152994\n"
+"22\n"
+"help.text"
+msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
+msgstr "Chức năng <emph>Sắp hàng</emph> cho bạn có khả năng sắp hàng các đối tượng cân xứng với nhau, hay cân xứng với trang."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108A3\n"
+"help.text"
+msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
+msgstr "Chọn một đối tượng để sắp hàng nó tùy theo trang, hoặc chọn nhiều đối tượng để sắp hàng chúng cân xứng với nhau."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108A7\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
+msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Canh lề</item> rồi chọn một của những tùy chọn canh lề."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108AE\n"
+"help.text"
+msgid "Distributing Objects"
+msgstr "Phân phối đối tượng"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3151390\n"
+"71\n"
+"help.text"
+msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
+msgstr "Sau khi chọn ít nhất ba đối tượng trong chương trình Draw, bạn có thể sử dụng lệnh <link href=\"text/shared/01/05360000.xhp\" name=\"Phân phối\"><emph>Phân phối</emph></link> để phân phối khoảng cách theo chiều ngang và nằm dọc một cách đều đặn giữa các đối tượng."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108CE\n"
+"help.text"
+msgid "Select three or more objects to be distributed."
+msgstr "Chọn ít nhất ba đối tượng cần phân phối."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108D2\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
+msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Phân phối</item>."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108DA\n"
+"help.text"
+msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
+msgstr "Chọn tùy chọn phân phối theo chiều ngang và nằm dọc, sau đó nhấn vào nút <emph>OK</emph>."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3150535\n"
+"72\n"
+"help.text"
+msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
+msgstr "Các đối tượng đã chọn được phân phối đều đặn theo trục nằm ngang hay nằm dọc. Hai đối tượng ngoài cùng được dùng làm điểm tham chiếu nên không di chuyển khi lệnh <emph>Phân phối</emph> được áp dụng."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"tit\n"
+"help.text"
+msgid "Defining Custom Colors"
+msgstr "Xác định màu sắc riêng"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"bm_id3149263\n"
+"help.text"
+msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
+msgstr "<bookmark_value>màu sắc; xác định và lưu</bookmark_value><bookmark_value>màu sắc tự xác định</bookmark_value><bookmark_value>màu sắc tùy biến</bookmark_value>"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"hd_id3149263\n"
+"7\n"
+"help.text"
+msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
+msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Xác định màu sắc riêng\">Xác định màu sắc riêng</link></variable>"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3154511\n"
+"8\n"
+"help.text"
+msgid "If you want, you can mix a custom color and add it to a color table."
+msgstr "Bạn cũng có thể hoà một màu riêng và thêm nó vào bảng màu."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"hd_id3155600\n"
+"9\n"
+"help.text"
+msgid "To define a custom color"
+msgstr "Xác định một màu riêng"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3150327\n"
+"25\n"
+"help.text"
+msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
+msgstr "Chọn lệnh <emph>Định dạng > Vùng</emph> rồi nhấn vào thẻ<emph>Màu sắc</emph>. Bảng các màu đã xác định sẵn sẽ được hiển thị."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3154657\n"
+"13\n"
+"help.text"
+msgid "Changes made to the standard color table are permanent and are saved automatically."
+msgstr "Thay đổi trong bảng màu chuẩn thì hẳn, được lưu tự động."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3166425\n"
+"14\n"
+"help.text"
+msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
+msgstr "Trong bảng, nhấn vào một màu tương tự với màu bạn muốn tạo. Màu đó sẽ xuất hiện trong hộp xem thử trên, bên phải bảng."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152992\n"
+"15\n"
+"help.text"
+msgid "Select the RGB or CMYK color model in the box below the preview boxes."
+msgstr "Chọn mẫu màu RGB hay CMYK trong hộp bên dưới các hộp xem thử."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id4979705\n"
+"help.text"
+msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
+msgstr "%PRODUCTNAME dùng chỉ mẫu màu RGB để in theo màu. Các điều khiển CMYK được cung cấp chỉ để ghi các giá trị màu."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152987\n"
+"16\n"
+"help.text"
+msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
+msgstr "Mẫu màu RGB hoà ánh sáng màu đỏ, lục và xanh để tạo màu sắc trên màn hình của máy tính. Trong mẫu RGB, ba giá trị màu cộng được, giá trị nằm trong phạm vi 0 (màu đen) đến 255 (màu trắng, quang phổ hoàn toàn). Mẫu CMYK kết hợp màu xanh lá mạ (Cyan), màu đỏ tươi (Magenta), màu vàng (Yellow) và màu đen (blacK, cũng Key) để tạo màu sắc để in. Bốn màu của mẫu CMYK trừ được, được xác định theo phần trăm. Màu đen tương ứng với 100%, màu trắng với 0%."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145386\n"
+"17\n"
+"help.text"
+msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
+msgstr "Gõ giá trị thuộc số vào hộp bên cạnh mỗi thành phần màu. Màu mới sẽ xuất hiện trong hộp xem thử đúng bên trên hộp mẫu màu."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152871\n"
+"18\n"
+"help.text"
+msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
+msgstr "Bạn cũng có thể tạo màu riêng bằng dải phổ màu. Nhấn vào nút <emph>Sửa</emph> để mở hộp thoại <link href=\"text/shared/optionen/01010501.xhp\" name=\"Màu\"><emph>Màu</emph></link>. Nhấn vào một màu. Dùng các hộp <emph>Sắc độ màu</emph>, <emph>Độ bão hoà</emph> và <emph>Độ sáng</emph> để điều chỉnh màu đã chọn."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3153011\n"
+"19\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr "Chọn một hành động:"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3147244\n"
+"26\n"
+"help.text"
+msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
+msgstr "Nếu bạn muốn thay thế màu trong bảng màu chuẩn, vào đó màu riêng dựa, nhấn vào <emph>Sửa đổi</emph>."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145116\n"
+"20\n"
+"help.text"
+msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
+msgstr "Nếu bạn muốn thêm màu riêng vào bảng màu chuẩn, gõ tên cho nó vào hộp văn bản <emph>Tên</emph>, sau đó nhấn vào nút <emph>Thêm</emph>."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145236\n"
+"23\n"
+"help.text"
+msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Thanh màu\">Thanh màu</link>"
+
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -315,6 +711,129 @@ msgctxt ""
msgid "The area outside the overlap is removed."
msgstr "Vùng bên ngoài chỗ chồng lên nhau bị xóa đi."
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cross-Fading Two Objects"
+msgstr "Mờ đi chéo hai đối tượng"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"bm_id3150715\n"
+"help.text"
+msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
+msgstr "<bookmark_value>đối tượng vẽ; mờ đi chéo hai đối tượng</bookmark_value><bookmark_value>mờ đi chéo; hai đối tượng vẽ</bookmark_value>"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"hd_id3150715\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
+msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Mờ đi chéo hai đối tượng\">Mờ đi chéo hai đối tượng</link></variable>"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3154754\n"
+"18\n"
+"help.text"
+msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
+msgstr "Chức năng mờ đi chéo thì tạo các hình và phân phối chúng một cách đều đặn giữa hai đối tượng vẽ."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3155112\n"
+"41\n"
+"help.text"
+msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
+msgstr "Lệnh mờ đi chéo chỉ sẵn sàng trong chương trình $[officename] Draw. Tuy nhiên, bạn có thể sao chép và dán các đối tượng đã mờ đi chéo vào chương trình $[officename] Impress."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"hd_id3149209\n"
+"20\n"
+"help.text"
+msgid "To cross-fade two objects:"
+msgstr "Để mờ đi chéo hai đối tượng:"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3150370\n"
+"45\n"
+"help.text"
+msgid "Hold down Shift and click each object."
+msgstr "Ấn giữ phím Shift khi nhấn mỗi đối tượng."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3166428\n"
+"22\n"
+"help.text"
+msgid "Choose <emph>Edit - Cross-fading</emph>."
+msgstr "Chọn lệnh <emph>Sửa > Mờ đi chéo</emph>."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3156450\n"
+"44\n"
+"help.text"
+msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
+msgstr "Gõ vào hộp <emph>Bước</emph> giá trị để ghi rõ số đối tượng giữa đầu và cuối khoảng mờ đi chéo."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3149405\n"
+"23\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Nhấn vào nút <emph>OK</emph>."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3151240\n"
+"24\n"
+"help.text"
+msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
+msgstr "Vậy hiển thị một nhóm chứa hai đối tượng gốc và số đối tượng đã mờ đi chéo (bước)."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3159203\n"
+"help.text"
+msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
+msgstr "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Minh hoạ mờ đi chéo</alt></image>"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3154766\n"
+"25\n"
+"help.text"
+msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
+msgstr "Bạn có thể chỉnh sửa từng đối tượng riêng lẻ của một nhóm bằng cách chọn nhóm và nhấn F3. Nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 để thoát chế độ chỉnh sửa nhóm."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3155760\n"
+"42\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Sửa > Mờ đi chéo\">Sửa > Mờ đi chéo</link>"
+
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -439,6 +958,272 @@ msgctxt ""
msgid "To draw an arc based on an ellipse, choose one of the arc icons and follow the same steps for creating a sector based on a circle."
msgstr "Để vẽ hình cung dựa vào hình bầu dục, chọn một của những biểu tượng cung và theo cùng một số bước với phương pháp tạo hình quạt dựa vào hình tròn."
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"tit\n"
+"help.text"
+msgid "Duplicating Objects"
+msgstr "Nhân đôi đối tượng"
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"bm_id3145750\n"
+"help.text"
+msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
+msgstr "<bookmark_value>nhăn đôi đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; nhân đôi</bookmark_value><bookmark_value>làm đối tượng vẽ trùng</bookmark_value><bookmark_value>nhân các đối tượng vẽ</bookmark_value>"
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"hd_id3145750\n"
+"3\n"
+"help.text"
+msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
+msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Nhân đôi đối tượng\">Nhân đôi đối tượng</link></variable>"
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149400\n"
+"4\n"
+"help.text"
+msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
+msgstr "Bạn có thể tạo các bản sao của đối tượng. Bản sao này có thể là trùng, hoặc khác biệt theo kích cỡ, màu, hướng và vị trí."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3153415\n"
+"5\n"
+"help.text"
+msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
+msgstr "Mẫu thí dụ theo đây tạo một đống tiền đồng bằng cách tạo nhiều bản sao của một hình bầu dục riêng lẻ."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149129\n"
+"6\n"
+"help.text"
+msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
+msgstr "Dùng công cụ hình <emph>Bầu dục</emph> để vẽ một hình bầu dục màu vàng đặc."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149209\n"
+"8\n"
+"help.text"
+msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
+msgstr "Chọn hình bầu dục rồi chọn lệnh <emph>Sửa > Nhân đôi</emph>."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3145585\n"
+"9\n"
+"help.text"
+msgid "Enter 12 as <emph>Number of copies.</emph>"
+msgstr "Gõ số 12 là <emph>Số bản sao.</emph>"
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3151192\n"
+"11\n"
+"help.text"
+msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
+msgstr "Gõ một giá trị âm cho <emph>Bề rộng</emph> và <emph>Bề cao</emph>, để giảm kích cỡ của mỗi tiền đồng với mỗi bước lên đống."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3151387\n"
+"39\n"
+"help.text"
+msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
+msgstr "Để xác định sự chuyển tiếp màu cho các tiền đồng này, chọn hai màu khác nhau trong những hộp <emph>Đầu</emph> và <emph>Cuối</emph>. Màu <emph>Đầu</emph> được áp dụng cho đối tượng bạn đang nhân đôi."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149947\n"
+"12\n"
+"help.text"
+msgid "Click <emph>OK</emph> to create the duplicates."
+msgstr "Nhấn vào nút <emph>OK</emph> để tạo các bản sao."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3153935\n"
+"50\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Sửa > Nhân đôi\">Sửa > Nhân đôi</link>"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"tit\n"
+"help.text"
+msgid "Replacing Colors"
+msgstr "Thay thế màu sắc"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"bm_id3147436\n"
+"help.text"
+msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
+msgstr "<bookmark_value>công cụ bút chọn màu</bookmark_value><bookmark_value>màu sắc; thay thế</bookmark_value><bookmark_value>thay thế;màu sắc trong ảnh bitmap</bookmark_value><bookmark_value>siêu tập tin;thay thế màu sắc</bookmark_value><bookmark_value>ảnh bitmap;thay thế màu sắc</bookmark_value><bookmark_value>ảnh kiểu GIF;thay thế màu sắc</bookmark_value>"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"hd_id3147436\n"
+"38\n"
+"help.text"
+msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
+msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Thay thế màu sắc\">Thay thế màu sắc</link></variable>"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3156286\n"
+"24\n"
+"help.text"
+msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
+msgstr "Bạn có thể thay thế màu sắc trong ảnh bitmap bằng công cụ <emph>Bút chọn màu</emph>."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3154704\n"
+"25\n"
+"help.text"
+msgid "Up to four colors can be replaced at once."
+msgstr "Có thể thay thế đồng thời đến bốn màu."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3147344\n"
+"26\n"
+"help.text"
+msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
+msgstr "Bạn có thể sử dụng tùy chọn <emph>Trong suốt</emph> để thay thế các vùng trong suốt trong ảnh bằng màu."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3148488\n"
+"27\n"
+"help.text"
+msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
+msgstr "Tương tự, bạn có thể sử dụng <emph>Bút chọn màu</emph> để khiến màu trong suốt trên ảnh."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"hd_id3150205\n"
+"28\n"
+"help.text"
+msgid "To replace colors with the Color Replacer tool"
+msgstr "Để thay thế màu sắc bằng công cụ Bút chọn màu"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3154656\n"
+"29\n"
+"help.text"
+msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
+msgstr "Ảnh phải có kiểu mảng ảnh (v.d. BMP, GIF, JPG, PNG) hay siêu tập tin (v.d. WMF)."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3150202\n"
+"30\n"
+"help.text"
+msgid "Choose <emph>Tools - Color Replacer</emph>."
+msgstr "Chọn lệnh <emph>Công cụ > Tính</emph>."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3155531\n"
+"31\n"
+"help.text"
+msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
+msgstr "Nhấn vào biểu tượng Bút chọn màu và để con trỏ chuột bên trên màu bạn muốn thay thế trong ảnh. Màu đó sẽ xuất hiện trong hộp bên cạnh biểu tượng bút chọn màu."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3152985\n"
+"32\n"
+"help.text"
+msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
+msgstr "Nhấn vào màu trong ảnh. Màu đó sẽ xuất hiện trong hộp <emph>Màu nguồn</emph> thứ nhất, và hộp kiểm bên cạnh màu sẽ được bật."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3148866\n"
+"33\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box, select the new color."
+msgstr "Trong hộp <emph>Thay thế bằng</emph>, chọn màu mới."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3145362\n"
+"41\n"
+"help.text"
+msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
+msgstr "Hành động này thay thế mọi lần gặp <emph>Màu nguồn</emph> đó trong ảnh."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3151191\n"
+"34\n"
+"help.text"
+msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
+msgstr "Nếu bạn muốn thay thế màu khác trong khi hộp thoại còn mở, chọn hộp kiểm ở trước <emph>Màu nguồn</emph> trong hàng kế tiếp, sau đó lặp lại các bước 3 đến 5."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3149876\n"
+"36\n"
+"help.text"
+msgid "Click <emph>Replace</emph>."
+msgstr "Nhấn vào nút <emph>Thay thế</emph>."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3157871\n"
+"37\n"
+"help.text"
+msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
+msgstr "Nếu bạn muốn giãn ra hay co lại vùng chọn màu, tăng hay giảm dung sai của công cụ <emph>Bút chọn màu</emph> rồi chọn lại."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3146878\n"
+"39\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Thanh màu\">Thanh màu</link>"
+
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -651,121 +1436,6 @@ msgctxt ""
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
msgstr "Để điều chỉnh độ trong suốt của đối tượng, chọn đối tượng rồi chọn lệnh <emph>Định dạng > Vùng</emph> và nhấn vào thẻ <emph>Độ trong suốt</emph>."
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"tit\n"
-"help.text"
-msgid "Assembling 3D Objects"
-msgstr "Tập hợp các đối tượng ba chiều (3D)"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"bm_id3154014\n"
-"help.text"
-msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
-msgstr "<bookmark_value>đối tượng 3D; tập hợp</bookmark_value><bookmark_value>đối tượng đã tập hợp theo ba chiều</bookmark_value><bookmark_value>kết hợp;đối tượng 3D</bookmark_value><bookmark_value>nối lại;đối tượng 3D</bookmark_value>"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"hd_id3156442\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
-msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Tập hợp các đối tượng ba chiều (3D)\">Tập hợp các đối tượng ba chiều (3D)</link></variable>"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3145251\n"
-"30\n"
-"help.text"
-msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"hd_id3150042\n"
-"41\n"
-"help.text"
-msgid "To combine 3D objects:"
-msgstr "Để kết hợp các đối tượng 3D:"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154702\n"
-"31\n"
-"help.text"
-msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
-msgstr "Chèn một đối tượng 3D từ thanh công cụ <emph>Đối tượng 3D</emph> (v.d. hình khối)."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3155335\n"
-"32\n"
-"help.text"
-msgid "Insert a second slightly larger 3D object (for example, a sphere)."
-msgstr "Chèn đối tượng 3D thứ hai, một ít lớn hơn (v.d. hình cầu)."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3148488\n"
-"33\n"
-"help.text"
-msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
-msgstr "Chọn đối tượng 3D thứ hai (hình cầu) rồi chọn lệnh <emph>Sửa > Cắt</emph>."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3149211\n"
-"34\n"
-"help.text"
-msgid "Double-click the first object (cube) to enter its group."
-msgstr "Nhấn đôi vào đối tượng thứ nhất (hình khối) để vào nhóm của nó."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154652\n"
-"35\n"
-"help.text"
-msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
-msgstr "Chọn lệnh <emph>Sửa > Dán</emph>. Cả hai đối tượng lúc bây giờ thuộc về cùng một nhóm. Bạn cũng có thể sửa đối tượng riêng trong nhóm, hoặc thay đổi vị trí của nó trong nhóm."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3155376\n"
-"36\n"
-"help.text"
-msgid "Double-click outside the group to exit the group."
-msgstr "Nhấn đôi bên ngoài nhóm để rời nó."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3148606\n"
-"38\n"
-"help.text"
-msgid "You cannot intersect or subtract 3D objects."
-msgstr "Ghi chú : bạn không thể giao nhau hay trừ đối tượng kiểu ba chiều (3D)."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154537\n"
-"39\n"
-"help.text"
-msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
-msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Đối tượng theo ba chiều (3D)\">Đối tượng theo ba chiều (3D)D</link>"
-
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -827,274 +1497,347 @@ msgctxt ""
msgid "Click <emph>Open</emph> to insert the picture."
msgstr "Nhấn vào nút <emph>Mở</emph> để chèn ảnh."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
+"groups.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Objects"
-msgstr "Xoay Đối tượng"
+msgid "Grouping Objects"
+msgstr "Nhóm lại đối tượng"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"bm_id3154684\n"
+"groups.xhp\n"
+"bm_id3150793\n"
"help.text"
-msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
-msgstr "<bookmark_value>xoay; đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; xoay</bookmark_value><bookmark_value>điểm trụ xoay của đối tượng vẽ</bookmark_value><bookmark_value>lệch đối tượng vẽ</bookmark_value>"
+msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
+msgstr "<bookmark_value>nhóm lại;đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ;nhóm lại</bookmark_value>"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"hd_id3154684\n"
-"12\n"
+"groups.xhp\n"
+"hd_id3150793\n"
+"26\n"
"help.text"
-msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
-msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Xoay đối tượng\">Xoay đối tượng</link></variable>"
+msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
+msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3149262\n"
-"13\n"
+"groups.xhp\n"
+"par_id3153728\n"
+"27\n"
"help.text"
-msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
-msgstr "Bạn có thể xoay đối tượng chung quanh điểm trụ xoay mặc định của nó (điểm trung tâm), hoặc chung quanh một điểm trụ xoay bạn xác định."
+msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
+msgstr "Bạn có thể kết hợp vài đối tượng khác nhau trong cùng nhóm, để thao tác chúng như một đối tượng riêng lẻ. Bạn có thể di chuyển và chuyển dạng mọi đối tượng trong nhóm như một đơn vị riêng lẻ. Cũng có thể thay đổi các thuộc tính (v.d. kích cỡ dòng, màu tô đầy) của mọi đối tượng trong nhóm, hoặc của mỗi đối tượng riêng trong nhóm. Nhóm có kiểu « tạm thời » hay « đã gán »."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3146975\n"
+"groups.xhp\n"
+"par_id3147434\n"
+"64\n"
"help.text"
-msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Biểu tượng</alt></image>"
+msgid "Temporary - group only lasts as long as all of the combined objects are selected."
+msgstr "Tạm thời — nhóm chỉ tồn tại trong khi mọi đối tượng đã kết hợp còn được chọn."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3150716\n"
-"14\n"
+"groups.xhp\n"
+"par_id3154490\n"
+"65\n"
"help.text"
-msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
-msgstr "Chọn đối tượng bạn muốn xoay. Trên thanh công cụ <emph>Chế độ</emph> trong chương trình $[officename] Draw, hoặc trên thanh <emph>Vẽ</emph> trong chương trình $[officename] Impress, nhấn vào biểu tượng <emph>Xoay</emph>."
+msgid "Assigned - group lasts until it is ungrouped through a menu command."
+msgstr "Đã gán — nhóm tồn tại đến khi nó bị rã nhóm bằng lệnh trình đơn."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3149021\n"
-"69\n"
+"groups.xhp\n"
+"par_id3145252\n"
+"66\n"
"help.text"
-msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
-msgstr "Di chuyển con trỏ tới một móc góc, để con trỏ thay đổi thành ký hiệu xoay. Kéo móc để xoay đối tượng."
+msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
+msgstr "Các nhóm cũng có thể được nhóm lại trong nhóm các. Hành động được áp dụng cho nhóm không có tác động vị trí tương đối của các đối tượng riêng trong nhóm."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id0930200803002335\n"
+"groups.xhp\n"
+"hd_id3150716\n"
+"28\n"
"help.text"
-msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
-msgstr "Nhấn nút Shift để giới hạn việc quay theo bội số của 15 độ."
+msgid "To group objects:"
+msgstr "Để nhóm lại các đối tượng:"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id0930200803002463\n"
+"groups.xhp\n"
+"par_id3149018\n"
"help.text"
-msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
-msgstr "Nhấn chuột phải vào một đối tượng để mở trình đơn ngữ cảnh. Chọn Vị trí và Kích thước - Xoay để điền vào giá trị chính xác của góc cần xoay."
+msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Biểu tượng</alt></image>"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3155962\n"
+"groups.xhp\n"
+"par_id3147346\n"
+"29\n"
"help.text"
-msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Biểu tượng</alt></image>"
+msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
+msgstr "Chọn những đối tượng bạn muốn nhóm lại, sau đó chọn lệnh <emph>Sửa đổi > Nhóm lại</emph>."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3166424\n"
-"16\n"
+"groups.xhp\n"
+"par_id3148485\n"
+"30\n"
"help.text"
-msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
-msgstr "Để thay đổi điểm trụ xoay, kéo hình tròn nhỏ ở tâm đối tượng sang một vị trí khác."
+msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
+msgstr "Chằng hạn, bạn có thể nhóm lại các đối tượng trong biểu hình công ty, để di chuyển biểu hình và thay đổi kích cỡ của biểu hình như cùng một đối tượng."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3159236\n"
-"28\n"
+"groups.xhp\n"
+"par_id3147002\n"
+"31\n"
"help.text"
-msgid "To skew the object vertically or horizontally, drag one of the side handles."
-msgstr "Để lệch đối tượng theo chiều dọc hay ngang, kéo một của những móc ở bên."
+msgid "After you have grouped objects, selecting any part of the group selects the entire group."
+msgstr "Sau khi nhóm lại các đối tượng, việc chọn bất cứ phần nào của nhóm sẽ chọn toàn nhóm."
-#: eyedropper.xhp
+#: groups.xhp
msgctxt ""
-"eyedropper.xhp\n"
+"groups.xhp\n"
+"hd_id3150205\n"
+"55\n"
+"help.text"
+msgid "Selecting Objects in a Group"
+msgstr "Chọn đối tượng trong nhóm"
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3150370\n"
+"help.text"
+msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Biểu tượng</alt></image>"
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3156450\n"
+"56\n"
+"help.text"
+msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
+msgstr "Bạn có thể chọn đối tượng riêng trong nhóm, bằng cách vào nhóm. Nhấn đôi vào nhóm để vào nó, sau đó nhấn vào đối tượng để chọn nó. Cũng có thể thêm hay gỡ bỏ đối tượng vào/khỏi nhóm trong chế độ này. Các đối tượng không phải thuộc về nhóm thì không hoạt động (màu xám)."
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3151239\n"
+"help.text"
+msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Biểu tượng</alt></image>"
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3150213\n"
+"58\n"
+"help.text"
+msgid "To exit a group, double-click anywhere outside it."
+msgstr "Để rời nhóm, nhấn đôi vào bất cứ nơi nào bên ngoài nó."
+
+#: join_objects.xhp
+msgctxt ""
+"join_objects.xhp\n"
"tit\n"
"help.text"
-msgid "Replacing Colors"
-msgstr "Thay thế màu sắc"
+msgid "Connecting Lines"
+msgstr "Kết nối dòng"
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"bm_id3147436\n"
+"join_objects.xhp\n"
+"bm_id3145799\n"
"help.text"
-msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
-msgstr "<bookmark_value>công cụ bút chọn màu</bookmark_value><bookmark_value>màu sắc; thay thế</bookmark_value><bookmark_value>thay thế;màu sắc trong ảnh bitmap</bookmark_value><bookmark_value>siêu tập tin;thay thế màu sắc</bookmark_value><bookmark_value>ảnh bitmap;thay thế màu sắc</bookmark_value><bookmark_value>ảnh kiểu GIF;thay thế màu sắc</bookmark_value>"
+msgid "<bookmark_value>draw objects; connecting lines to</bookmark_value><bookmark_value>connecting; lines</bookmark_value><bookmark_value>lines; connecting objects</bookmark_value><bookmark_value>areas; from connected lines</bookmark_value>"
+msgstr "<bookmark_value>đối tượng vẽ; kết nối dòng tới</bookmark_value><bookmark_value>kết nối; dòng</bookmark_value><bookmark_value>dòng; kết nối đối tượng</bookmark_value><bookmark_value>vùng; từ dòng đã kết nối</bookmark_value>"
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"hd_id3147436\n"
-"38\n"
+"join_objects.xhp\n"
+"hd_id3145799\n"
+"1\n"
"help.text"
-msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
-msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Thay thế màu sắc\">Thay thế màu sắc</link></variable>"
+msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Connecting Lines</link></variable>"
+msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Kết nối dòng\">Kết nối dòng</link></variable>"
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3156286\n"
-"24\n"
+"join_objects.xhp\n"
+"par_id3154512\n"
+"3\n"
"help.text"
-msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
-msgstr "Bạn có thể thay thế màu sắc trong ảnh bitmap bằng công cụ <emph>Bút chọn màu</emph>."
+msgid "When you connect lines, lines are drawn between neighboring endpoints."
+msgstr "Khi bạn kết nối dòng, các dòng được vẽ giữa các điểm cuối hàng xóm."
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3154704\n"
-"25\n"
+"join_objects.xhp\n"
+"hd_id3150752\n"
+"2\n"
"help.text"
-msgid "Up to four colors can be replaced at once."
-msgstr "Có thể thay thế đồng thời đến bốn màu."
+msgid "To connect lines:"
+msgstr "Để kết nối các dòng:"
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3147344\n"
-"26\n"
+"join_objects.xhp\n"
+"par_id3153714\n"
+"4\n"
"help.text"
-msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
-msgstr "Bạn có thể sử dụng tùy chọn <emph>Trong suốt</emph> để thay thế các vùng trong suốt trong ảnh bằng màu."
+msgid "Select two or more lines."
+msgstr "Chọn ít nhất hai dòng."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3148488\n"
-"27\n"
+"join_objects.xhp\n"
+"par_id3156383\n"
+"5\n"
"help.text"
-msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
-msgstr "Tương tự, bạn có thể sử dụng <emph>Bút chọn màu</emph> để khiến màu trong suốt trên ảnh."
+msgid "Right-click and choose <emph>Modify - Connect</emph>."
+msgstr "Nhấn-phải rồi chọn lệnh <emph>Sửa đổi > Kết nối</emph>."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"hd_id3150205\n"
-"28\n"
+"join_objects.xhp\n"
+"par_id3149257\n"
+"11\n"
"help.text"
-msgid "To replace colors with the Color Replacer tool"
-msgstr "Để thay thế màu sắc bằng công cụ Bút chọn màu"
+msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
+msgstr "Để tạo một đối tượng đã đóng, nhấn-phải vào dòng rồi chọn lệnh <emph>Đóng đối tượng</emph>."
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3154656\n"
+"join_objects.xhp\n"
+"par_id3150363\n"
+"9\n"
+"help.text"
+msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
+msgstr "Bạn chỉ co thể sử dụng lệnh <emph>Đóng đối tượng</emph> với các dòng đã kết nối, các <emph>Đường dạng tự do</emph> và các đường <emph>Cong</emph> không đặc."
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"tit\n"
+"help.text"
+msgid "Assembling 3D Objects"
+msgstr "Tập hợp các đối tượng ba chiều (3D)"
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"bm_id3154014\n"
+"help.text"
+msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
+msgstr "<bookmark_value>đối tượng 3D; tập hợp</bookmark_value><bookmark_value>đối tượng đã tập hợp theo ba chiều</bookmark_value><bookmark_value>kết hợp;đối tượng 3D</bookmark_value><bookmark_value>nối lại;đối tượng 3D</bookmark_value>"
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"hd_id3156442\n"
"29\n"
"help.text"
-msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
-msgstr "Ảnh phải có kiểu mảng ảnh (v.d. BMP, GIF, JPG, PNG) hay siêu tập tin (v.d. WMF)."
+msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
+msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Tập hợp các đối tượng ba chiều (3D)\">Tập hợp các đối tượng ba chiều (3D)</link></variable>"
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3150202\n"
+"join_objects3d.xhp\n"
+"par_id3145251\n"
"30\n"
"help.text"
-msgid "Choose <emph>Tools - Color Replacer</emph>."
-msgstr "Chọn lệnh <emph>Công cụ > Tính</emph>."
+msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
+msgstr ""
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3155531\n"
+"join_objects3d.xhp\n"
+"hd_id3150042\n"
+"41\n"
+"help.text"
+msgid "To combine 3D objects:"
+msgstr "Để kết hợp các đối tượng 3D:"
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"par_id3154702\n"
"31\n"
"help.text"
-msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
-msgstr "Nhấn vào biểu tượng Bút chọn màu và để con trỏ chuột bên trên màu bạn muốn thay thế trong ảnh. Màu đó sẽ xuất hiện trong hộp bên cạnh biểu tượng bút chọn màu."
+msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
+msgstr "Chèn một đối tượng 3D từ thanh công cụ <emph>Đối tượng 3D</emph> (v.d. hình khối)."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3152985\n"
+"join_objects3d.xhp\n"
+"par_id3155335\n"
"32\n"
"help.text"
-msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
-msgstr "Nhấn vào màu trong ảnh. Màu đó sẽ xuất hiện trong hộp <emph>Màu nguồn</emph> thứ nhất, và hộp kiểm bên cạnh màu sẽ được bật."
+msgid "Insert a second slightly larger 3D object (for example, a sphere)."
+msgstr "Chèn đối tượng 3D thứ hai, một ít lớn hơn (v.d. hình cầu)."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3148866\n"
+"join_objects3d.xhp\n"
+"par_id3148488\n"
"33\n"
"help.text"
-msgid "In the <emph>Replace with</emph> box, select the new color."
-msgstr "Trong hộp <emph>Thay thế bằng</emph>, chọn màu mới."
+msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
+msgstr "Chọn đối tượng 3D thứ hai (hình cầu) rồi chọn lệnh <emph>Sửa > Cắt</emph>."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3145362\n"
-"41\n"
+"join_objects3d.xhp\n"
+"par_id3149211\n"
+"34\n"
"help.text"
-msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
-msgstr "Hành động này thay thế mọi lần gặp <emph>Màu nguồn</emph> đó trong ảnh."
+msgid "Double-click the first object (cube) to enter its group."
+msgstr "Nhấn đôi vào đối tượng thứ nhất (hình khối) để vào nhóm của nó."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3151191\n"
-"34\n"
+"join_objects3d.xhp\n"
+"par_id3154652\n"
+"35\n"
"help.text"
-msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
-msgstr "Nếu bạn muốn thay thế màu khác trong khi hộp thoại còn mở, chọn hộp kiểm ở trước <emph>Màu nguồn</emph> trong hàng kế tiếp, sau đó lặp lại các bước 3 đến 5."
+msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
+msgstr "Chọn lệnh <emph>Sửa > Dán</emph>. Cả hai đối tượng lúc bây giờ thuộc về cùng một nhóm. Bạn cũng có thể sửa đối tượng riêng trong nhóm, hoặc thay đổi vị trí của nó trong nhóm."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3149876\n"
+"join_objects3d.xhp\n"
+"par_id3155376\n"
"36\n"
"help.text"
-msgid "Click <emph>Replace</emph>."
-msgstr "Nhấn vào nút <emph>Thay thế</emph>."
+msgid "Double-click outside the group to exit the group."
+msgstr "Nhấn đôi bên ngoài nhóm để rời nó."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3157871\n"
-"37\n"
+"join_objects3d.xhp\n"
+"par_id3148606\n"
+"38\n"
"help.text"
-msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
-msgstr "Nếu bạn muốn giãn ra hay co lại vùng chọn màu, tăng hay giảm dung sai của công cụ <emph>Bút chọn màu</emph> rồi chọn lại."
+msgid "You cannot intersect or subtract 3D objects."
+msgstr "Ghi chú : bạn không thể giao nhau hay trừ đối tượng kiểu ba chiều (3D)."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3146878\n"
+"join_objects3d.xhp\n"
+"par_id3154537\n"
"39\n"
"help.text"
-msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
-msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Thanh màu\">Thanh màu</link>"
+msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
+msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Đối tượng theo ba chiều (3D)\">Đối tượng theo ba chiều (3D)D</link>"
#: keyboard.xhp
msgctxt ""
@@ -1228,454 +1971,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">Tab</item> until you reach the object you want to select."
msgstr "Bấm phím <item type=\"keycode\">Tab</item> nhiều lần đến khi tới đối tượng bạn muốn chọn."
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"tit\n"
-"help.text"
-msgid "Connecting Lines"
-msgstr "Kết nối dòng"
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"bm_id3145799\n"
-"help.text"
-msgid "<bookmark_value>draw objects; connecting lines to</bookmark_value><bookmark_value>connecting; lines</bookmark_value><bookmark_value>lines; connecting objects</bookmark_value><bookmark_value>areas; from connected lines</bookmark_value>"
-msgstr "<bookmark_value>đối tượng vẽ; kết nối dòng tới</bookmark_value><bookmark_value>kết nối; dòng</bookmark_value><bookmark_value>dòng; kết nối đối tượng</bookmark_value><bookmark_value>vùng; từ dòng đã kết nối</bookmark_value>"
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"hd_id3145799\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Connecting Lines</link></variable>"
-msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Kết nối dòng\">Kết nối dòng</link></variable>"
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3154512\n"
-"3\n"
-"help.text"
-msgid "When you connect lines, lines are drawn between neighboring endpoints."
-msgstr "Khi bạn kết nối dòng, các dòng được vẽ giữa các điểm cuối hàng xóm."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"hd_id3150752\n"
-"2\n"
-"help.text"
-msgid "To connect lines:"
-msgstr "Để kết nối các dòng:"
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3153714\n"
-"4\n"
-"help.text"
-msgid "Select two or more lines."
-msgstr "Chọn ít nhất hai dòng."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3156383\n"
-"5\n"
-"help.text"
-msgid "Right-click and choose <emph>Modify - Connect</emph>."
-msgstr "Nhấn-phải rồi chọn lệnh <emph>Sửa đổi > Kết nối</emph>."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3149257\n"
-"11\n"
-"help.text"
-msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
-msgstr "Để tạo một đối tượng đã đóng, nhấn-phải vào dòng rồi chọn lệnh <emph>Đóng đối tượng</emph>."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3150363\n"
-"9\n"
-"help.text"
-msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
-msgstr "Bạn chỉ co thể sử dụng lệnh <emph>Đóng đối tượng</emph> với các dòng đã kết nối, các <emph>Đường dạng tự do</emph> và các đường <emph>Cong</emph> không đặc."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cross-Fading Two Objects"
-msgstr "Mờ đi chéo hai đối tượng"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"bm_id3150715\n"
-"help.text"
-msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
-msgstr "<bookmark_value>đối tượng vẽ; mờ đi chéo hai đối tượng</bookmark_value><bookmark_value>mờ đi chéo; hai đối tượng vẽ</bookmark_value>"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"hd_id3150715\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
-msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Mờ đi chéo hai đối tượng\">Mờ đi chéo hai đối tượng</link></variable>"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3154754\n"
-"18\n"
-"help.text"
-msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
-msgstr "Chức năng mờ đi chéo thì tạo các hình và phân phối chúng một cách đều đặn giữa hai đối tượng vẽ."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3155112\n"
-"41\n"
-"help.text"
-msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
-msgstr "Lệnh mờ đi chéo chỉ sẵn sàng trong chương trình $[officename] Draw. Tuy nhiên, bạn có thể sao chép và dán các đối tượng đã mờ đi chéo vào chương trình $[officename] Impress."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"hd_id3149209\n"
-"20\n"
-"help.text"
-msgid "To cross-fade two objects:"
-msgstr "Để mờ đi chéo hai đối tượng:"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3150370\n"
-"45\n"
-"help.text"
-msgid "Hold down Shift and click each object."
-msgstr "Ấn giữ phím Shift khi nhấn mỗi đối tượng."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3166428\n"
-"22\n"
-"help.text"
-msgid "Choose <emph>Edit - Cross-fading</emph>."
-msgstr "Chọn lệnh <emph>Sửa > Mờ đi chéo</emph>."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3156450\n"
-"44\n"
-"help.text"
-msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
-msgstr "Gõ vào hộp <emph>Bước</emph> giá trị để ghi rõ số đối tượng giữa đầu và cuối khoảng mờ đi chéo."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3149405\n"
-"23\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Nhấn vào nút <emph>OK</emph>."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3151240\n"
-"24\n"
-"help.text"
-msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
-msgstr "Vậy hiển thị một nhóm chứa hai đối tượng gốc và số đối tượng đã mờ đi chéo (bước)."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3159203\n"
-"help.text"
-msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
-msgstr "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Minh hoạ mờ đi chéo</alt></image>"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3154766\n"
-"25\n"
-"help.text"
-msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
-msgstr "Bạn có thể chỉnh sửa từng đối tượng riêng lẻ của một nhóm bằng cách chọn nhóm và nhấn F3. Nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 để thoát chế độ chỉnh sửa nhóm."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3155760\n"
-"42\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
-msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Sửa > Mờ đi chéo\">Sửa > Mờ đi chéo</link>"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"tit\n"
-"help.text"
-msgid "Arranging, Aligning and Distributing Objects"
-msgstr "Sắp đặt, Sắp hàng và Phân phối các Đối tượng"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3149656\n"
-"73\n"
-"help.text"
-msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
-msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Sắp đặt, Sắp hàng và Phân phối các Đối tượng\">Sắp đặt, Sắp hàng và Phân phối các Đối tượng</link></variable>"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"bm_id3125863\n"
-"help.text"
-msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
-msgstr "<bookmark_value>sắp đặt; đối tượng (hướng dẫn)</bookmark_value><bookmark_value>đối tượng;sắp hàng</bookmark_value><bookmark_value>phân phối các đối tượng vẽ</bookmark_value><bookmark_value>sắp hàng;đối tượng vẽ</bookmark_value>"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3125863\n"
-"17\n"
-"help.text"
-msgid "Arranging Objects"
-msgstr "Sắp đặt các Đối tượng"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3153727\n"
-"18\n"
-"help.text"
-msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
-msgstr "Mỗi đối tượng bạn để vào tài liệu sẽ được xếp đống lần lượt trên đối tượng trước. Để sắp đặt lại thứ tự xếp đống của đối tượng đã chọn, làm các bước theo đây."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107D5\n"
-"help.text"
-msgid "Click the object whose position you want to change."
-msgstr "Nhấn vào đối tượng có vị trí bạn muốn thay đổi."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3150327\n"
-"78\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
-msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Sắp đặt</item> để mở trình đơn ngữ cảnh và chọn một của những tùy chọn sắp đặt:"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107E6\n"
-"help.text"
-msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
-msgstr "<emph>Nâng lên trên</emph> để đối tượng ở trên các đối tượng khác"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107EC\n"
-"help.text"
-msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
-msgstr "<emph>Nâng lên</emph> nâng đối tượng lên một cấp trong đống các đối tượng"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107F2\n"
-"help.text"
-msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
-msgstr "<emph>Hạ xuống</emph> hạ đối tượng xuống một cấp trong đống các đối tượng"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107F8\n"
-"help.text"
-msgid "<emph>Send to Back</emph> places the object behind all other objects"
-msgstr "<emph>Hạ xuống dưới</emph> để đối tượng ở dưới các đối tượng khác"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107FE\n"
-"help.text"
-msgid "<emph>Behind Object</emph> places the object behind another object that you select"
-msgstr "<emph>Ở sau đối tượng</emph> để đối tượng ở sau một đối tượng khác bạn chọn"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3155766\n"
-"79\n"
-"help.text"
-msgid "Arranging an Object Behind Another Object"
-msgstr "Sắp đặt đối tượng ở sau đối tượng khác"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN10811\n"
-"help.text"
-msgid "Click the object whose position you want to change."
-msgstr "Nhấn vào đối tượng có vị trí bạn muốn thay đổi."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3154253\n"
-"80\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
-msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Sắp đặt</item> để mở trình đơn ngữ cảnh và chọn mục <emph>Ở sau đối tượng</emph>. Con trỏ chuột sẽ thay đổi thành hình tay."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3149126\n"
-"81\n"
-"help.text"
-msgid "Click the object behind which you want to place the selected object."
-msgstr "Nhấn vào đối tượng ở sau đó bạn muốn để đối tượng đã chọn."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3145789\n"
-"20\n"
-"help.text"
-msgid "Reversing The Stacking Order of Two Objects"
-msgstr "Ngược lại thứ tự xếp đống của hai đối tượng"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3154022\n"
-"83\n"
-"help.text"
-msgid "Shift-click both objects to select them."
-msgstr "Shift-nhấn cả hai đối tượng để chọn chúng."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3155114\n"
-"84\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
-msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Sắp đặt</item> để mở trình đơn ngữ cảnh và chọn mục <emph>Đảo ngược</emph>"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3166425\n"
-"21\n"
-"help.text"
-msgid "Aligning Objects"
-msgstr "Sắp hàng đối tượng"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3152994\n"
-"22\n"
-"help.text"
-msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
-msgstr "Chức năng <emph>Sắp hàng</emph> cho bạn có khả năng sắp hàng các đối tượng cân xứng với nhau, hay cân xứng với trang."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108A3\n"
-"help.text"
-msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
-msgstr "Chọn một đối tượng để sắp hàng nó tùy theo trang, hoặc chọn nhiều đối tượng để sắp hàng chúng cân xứng với nhau."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108A7\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
-msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Canh lề</item> rồi chọn một của những tùy chọn canh lề."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108AE\n"
-"help.text"
-msgid "Distributing Objects"
-msgstr "Phân phối đối tượng"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3151390\n"
-"71\n"
-"help.text"
-msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
-msgstr "Sau khi chọn ít nhất ba đối tượng trong chương trình Draw, bạn có thể sử dụng lệnh <link href=\"text/shared/01/05360000.xhp\" name=\"Phân phối\"><emph>Phân phối</emph></link> để phân phối khoảng cách theo chiều ngang và nằm dọc một cách đều đặn giữa các đối tượng."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108CE\n"
-"help.text"
-msgid "Select three or more objects to be distributed."
-msgstr "Chọn ít nhất ba đối tượng cần phân phối."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108D2\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
-msgstr "Chọn lệnh <item type=\"menuitem\">Sửa đổi > Phân phối</item>."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108DA\n"
-"help.text"
-msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
-msgstr "Chọn tùy chọn phân phối theo chiều ngang và nằm dọc, sau đó nhấn vào nút <emph>OK</emph>."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3150535\n"
-"72\n"
-"help.text"
-msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
-msgstr "Các đối tượng đã chọn được phân phối đều đặn theo trục nằm ngang hay nằm dọc. Hai đối tượng ngoài cùng được dùng làm điểm tham chiếu nên không di chuyển khi lệnh <emph>Phân phối</emph> được áp dụng."
-
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1746,409 +2041,107 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Lặt vặt"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
+"rotate_object.xhp\n"
"tit\n"
"help.text"
-msgid "Defining Custom Colors"
-msgstr "Xác định màu sắc riêng"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"bm_id3149263\n"
-"help.text"
-msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
-msgstr "<bookmark_value>màu sắc; xác định và lưu</bookmark_value><bookmark_value>màu sắc tự xác định</bookmark_value><bookmark_value>màu sắc tùy biến</bookmark_value>"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"hd_id3149263\n"
-"7\n"
-"help.text"
-msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
-msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Xác định màu sắc riêng\">Xác định màu sắc riêng</link></variable>"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3154511\n"
-"8\n"
-"help.text"
-msgid "If you want, you can mix a custom color and add it to a color table."
-msgstr "Bạn cũng có thể hoà một màu riêng và thêm nó vào bảng màu."
+msgid "Rotating Objects"
+msgstr "Xoay Đối tượng"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"hd_id3155600\n"
-"9\n"
+"rotate_object.xhp\n"
+"bm_id3154684\n"
"help.text"
-msgid "To define a custom color"
-msgstr "Xác định một màu riêng"
+msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
+msgstr "<bookmark_value>xoay; đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; xoay</bookmark_value><bookmark_value>điểm trụ xoay của đối tượng vẽ</bookmark_value><bookmark_value>lệch đối tượng vẽ</bookmark_value>"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"par_id3150327\n"
-"25\n"
+"rotate_object.xhp\n"
+"hd_id3154684\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
-msgstr "Chọn lệnh <emph>Định dạng > Vùng</emph> rồi nhấn vào thẻ<emph>Màu sắc</emph>. Bảng các màu đã xác định sẵn sẽ được hiển thị."
+msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
+msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Xoay đối tượng\">Xoay đối tượng</link></variable>"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"par_id3154657\n"
+"rotate_object.xhp\n"
+"par_id3149262\n"
"13\n"
"help.text"
-msgid "Changes made to the standard color table are permanent and are saved automatically."
-msgstr "Thay đổi trong bảng màu chuẩn thì hẳn, được lưu tự động."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3166425\n"
-"14\n"
-"help.text"
-msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
-msgstr "Trong bảng, nhấn vào một màu tương tự với màu bạn muốn tạo. Màu đó sẽ xuất hiện trong hộp xem thử trên, bên phải bảng."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152992\n"
-"15\n"
-"help.text"
-msgid "Select the RGB or CMYK color model in the box below the preview boxes."
-msgstr "Chọn mẫu màu RGB hay CMYK trong hộp bên dưới các hộp xem thử."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id4979705\n"
-"help.text"
-msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
-msgstr "%PRODUCTNAME dùng chỉ mẫu màu RGB để in theo màu. Các điều khiển CMYK được cung cấp chỉ để ghi các giá trị màu."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152987\n"
-"16\n"
-"help.text"
-msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
-msgstr "Mẫu màu RGB hoà ánh sáng màu đỏ, lục và xanh để tạo màu sắc trên màn hình của máy tính. Trong mẫu RGB, ba giá trị màu cộng được, giá trị nằm trong phạm vi 0 (màu đen) đến 255 (màu trắng, quang phổ hoàn toàn). Mẫu CMYK kết hợp màu xanh lá mạ (Cyan), màu đỏ tươi (Magenta), màu vàng (Yellow) và màu đen (blacK, cũng Key) để tạo màu sắc để in. Bốn màu của mẫu CMYK trừ được, được xác định theo phần trăm. Màu đen tương ứng với 100%, màu trắng với 0%."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145386\n"
-"17\n"
-"help.text"
-msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
-msgstr "Gõ giá trị thuộc số vào hộp bên cạnh mỗi thành phần màu. Màu mới sẽ xuất hiện trong hộp xem thử đúng bên trên hộp mẫu màu."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152871\n"
-"18\n"
-"help.text"
-msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
-msgstr "Bạn cũng có thể tạo màu riêng bằng dải phổ màu. Nhấn vào nút <emph>Sửa</emph> để mở hộp thoại <link href=\"text/shared/optionen/01010501.xhp\" name=\"Màu\"><emph>Màu</emph></link>. Nhấn vào một màu. Dùng các hộp <emph>Sắc độ màu</emph>, <emph>Độ bão hoà</emph> và <emph>Độ sáng</emph> để điều chỉnh màu đã chọn."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3153011\n"
-"19\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Chọn một hành động:"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3147244\n"
-"26\n"
-"help.text"
-msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
-msgstr "Nếu bạn muốn thay thế màu trong bảng màu chuẩn, vào đó màu riêng dựa, nhấn vào <emph>Sửa đổi</emph>."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145116\n"
-"20\n"
-"help.text"
-msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
-msgstr "Nếu bạn muốn thêm màu riêng vào bảng màu chuẩn, gõ tên cho nó vào hộp văn bản <emph>Tên</emph>, sau đó nhấn vào nút <emph>Thêm</emph>."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145236\n"
-"23\n"
-"help.text"
-msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
-msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Thanh màu\">Thanh màu</link>"
+msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
+msgstr "Bạn có thể xoay đối tượng chung quanh điểm trụ xoay mặc định của nó (điểm trung tâm), hoặc chung quanh một điểm trụ xoay bạn xác định."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"tit\n"
+"rotate_object.xhp\n"
+"par_id3146975\n"
"help.text"
-msgid "Grouping Objects"
-msgstr "Nhóm lại đối tượng"
+msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Biểu tượng</alt></image>"
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"bm_id3150793\n"
+"rotate_object.xhp\n"
+"par_id3150716\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
-msgstr "<bookmark_value>nhóm lại;đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ;nhóm lại</bookmark_value>"
+msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
+msgstr "Chọn đối tượng bạn muốn xoay. Trên thanh công cụ <emph>Chế độ</emph> trong chương trình $[officename] Draw, hoặc trên thanh <emph>Vẽ</emph> trong chương trình $[officename] Impress, nhấn vào biểu tượng <emph>Xoay</emph>."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"hd_id3150793\n"
-"26\n"
+"rotate_object.xhp\n"
+"par_id3149021\n"
+"69\n"
"help.text"
-msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
-msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
+msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
+msgstr "Di chuyển con trỏ tới một móc góc, để con trỏ thay đổi thành ký hiệu xoay. Kéo móc để xoay đối tượng."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3153728\n"
-"27\n"
+"rotate_object.xhp\n"
+"par_id0930200803002335\n"
"help.text"
-msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
-msgstr "Bạn có thể kết hợp vài đối tượng khác nhau trong cùng nhóm, để thao tác chúng như một đối tượng riêng lẻ. Bạn có thể di chuyển và chuyển dạng mọi đối tượng trong nhóm như một đơn vị riêng lẻ. Cũng có thể thay đổi các thuộc tính (v.d. kích cỡ dòng, màu tô đầy) của mọi đối tượng trong nhóm, hoặc của mỗi đối tượng riêng trong nhóm. Nhóm có kiểu « tạm thời » hay « đã gán »."
+msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
+msgstr "Nhấn nút Shift để giới hạn việc quay theo bội số của 15 độ."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3147434\n"
-"64\n"
+"rotate_object.xhp\n"
+"par_id0930200803002463\n"
"help.text"
-msgid "Temporary - group only lasts as long as all of the combined objects are selected."
-msgstr "Tạm thời — nhóm chỉ tồn tại trong khi mọi đối tượng đã kết hợp còn được chọn."
+msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
+msgstr "Nhấn chuột phải vào một đối tượng để mở trình đơn ngữ cảnh. Chọn Vị trí và Kích thước - Xoay để điền vào giá trị chính xác của góc cần xoay."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3154490\n"
-"65\n"
+"rotate_object.xhp\n"
+"par_id3155962\n"
"help.text"
-msgid "Assigned - group lasts until it is ungrouped through a menu command."
-msgstr "Đã gán — nhóm tồn tại đến khi nó bị rã nhóm bằng lệnh trình đơn."
+msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Biểu tượng</alt></image>"
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3145252\n"
-"66\n"
+"rotate_object.xhp\n"
+"par_id3166424\n"
+"16\n"
"help.text"
-msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
-msgstr "Các nhóm cũng có thể được nhóm lại trong nhóm các. Hành động được áp dụng cho nhóm không có tác động vị trí tương đối của các đối tượng riêng trong nhóm."
+msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
+msgstr "Để thay đổi điểm trụ xoay, kéo hình tròn nhỏ ở tâm đối tượng sang một vị trí khác."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"hd_id3150716\n"
+"rotate_object.xhp\n"
+"par_id3159236\n"
"28\n"
"help.text"
-msgid "To group objects:"
-msgstr "Để nhóm lại các đối tượng:"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3149018\n"
-"help.text"
-msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Biểu tượng</alt></image>"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3147346\n"
-"29\n"
-"help.text"
-msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
-msgstr "Chọn những đối tượng bạn muốn nhóm lại, sau đó chọn lệnh <emph>Sửa đổi > Nhóm lại</emph>."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3148485\n"
-"30\n"
-"help.text"
-msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
-msgstr "Chằng hạn, bạn có thể nhóm lại các đối tượng trong biểu hình công ty, để di chuyển biểu hình và thay đổi kích cỡ của biểu hình như cùng một đối tượng."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3147002\n"
-"31\n"
-"help.text"
-msgid "After you have grouped objects, selecting any part of the group selects the entire group."
-msgstr "Sau khi nhóm lại các đối tượng, việc chọn bất cứ phần nào của nhóm sẽ chọn toàn nhóm."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"hd_id3150205\n"
-"55\n"
-"help.text"
-msgid "Selecting Objects in a Group"
-msgstr "Chọn đối tượng trong nhóm"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3150370\n"
-"help.text"
-msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Biểu tượng</alt></image>"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3156450\n"
-"56\n"
-"help.text"
-msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
-msgstr "Bạn có thể chọn đối tượng riêng trong nhóm, bằng cách vào nhóm. Nhấn đôi vào nhóm để vào nó, sau đó nhấn vào đối tượng để chọn nó. Cũng có thể thêm hay gỡ bỏ đối tượng vào/khỏi nhóm trong chế độ này. Các đối tượng không phải thuộc về nhóm thì không hoạt động (màu xám)."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3151239\n"
-"help.text"
-msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Biểu tượng</alt></image>"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3150213\n"
-"58\n"
-"help.text"
-msgid "To exit a group, double-click anywhere outside it."
-msgstr "Để rời nhóm, nhấn đôi vào bất cứ nơi nào bên ngoài nó."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"tit\n"
-"help.text"
-msgid "Duplicating Objects"
-msgstr "Nhân đôi đối tượng"
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"bm_id3145750\n"
-"help.text"
-msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
-msgstr "<bookmark_value>nhăn đôi đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; nhân đôi</bookmark_value><bookmark_value>làm đối tượng vẽ trùng</bookmark_value><bookmark_value>nhân các đối tượng vẽ</bookmark_value>"
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"hd_id3145750\n"
-"3\n"
-"help.text"
-msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
-msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Nhân đôi đối tượng\">Nhân đôi đối tượng</link></variable>"
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149400\n"
-"4\n"
-"help.text"
-msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
-msgstr "Bạn có thể tạo các bản sao của đối tượng. Bản sao này có thể là trùng, hoặc khác biệt theo kích cỡ, màu, hướng và vị trí."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3153415\n"
-"5\n"
-"help.text"
-msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
-msgstr "Mẫu thí dụ theo đây tạo một đống tiền đồng bằng cách tạo nhiều bản sao của một hình bầu dục riêng lẻ."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149129\n"
-"6\n"
-"help.text"
-msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
-msgstr "Dùng công cụ hình <emph>Bầu dục</emph> để vẽ một hình bầu dục màu vàng đặc."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149209\n"
-"8\n"
-"help.text"
-msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
-msgstr "Chọn hình bầu dục rồi chọn lệnh <emph>Sửa > Nhân đôi</emph>."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3145585\n"
-"9\n"
-"help.text"
-msgid "Enter 12 as <emph>Number of copies.</emph>"
-msgstr "Gõ số 12 là <emph>Số bản sao.</emph>"
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3151192\n"
-"11\n"
-"help.text"
-msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
-msgstr "Gõ một giá trị âm cho <emph>Bề rộng</emph> và <emph>Bề cao</emph>, để giảm kích cỡ của mỗi tiền đồng với mỗi bước lên đống."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3151387\n"
-"39\n"
-"help.text"
-msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
-msgstr "Để xác định sự chuyển tiếp màu cho các tiền đồng này, chọn hai màu khác nhau trong những hộp <emph>Đầu</emph> và <emph>Cuối</emph>. Màu <emph>Đầu</emph> được áp dụng cho đối tượng bạn đang nhân đôi."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149947\n"
-"12\n"
-"help.text"
-msgid "Click <emph>OK</emph> to create the duplicates."
-msgstr "Nhấn vào nút <emph>OK</emph> để tạo các bản sao."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3153935\n"
-"50\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
-msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Sửa > Nhân đôi\">Sửa > Nhân đôi</link>"
+msgid "To skew the object vertically or horizontally, drag one of the side handles."
+msgstr "Để lệch đối tượng theo chiều dọc hay ngang, kéo một của những móc ở bên."
#: text_enter.xhp
msgctxt ""
diff --git a/source/vi/helpcontent2/source/text/shared.po b/source/vi/helpcontent2/source/text/shared.po
index c8c989b846b..5a6020b9d98 100644
--- a/source/vi/helpcontent2/source/text/shared.po
+++ b/source/vi/helpcontent2/source/text/shared.po
@@ -1,217 +1,20 @@
-#
+#. extracted from helpcontent2/source/text/shared
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-01-18 13:18+0100\n"
-"PO-Revision-Date: 2011-04-05 23:28+0200\n"
-"Last-Translator: vuhung <vuhung16plus@gmail.com>\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2013-01-19 19:32+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"tit\n"
-"help.text"
-msgid "Table Data Bar"
-msgstr "Thanh dữ liệu bảng"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"hd_id3147102\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
-msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Thanh dữ liệu bảng\">Thanh dữ liệu bảng</link>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3153394\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
-msgstr "<ahelp hid=\".\">Dùng thanh dữ liệu bảng để điều khiển ô xem dữ liệu. </ahelp>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3149346\n"
-"12\n"
-"help.text"
-msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
-msgstr "Ô xem dữ liệu đã lọc vẫn còn hoạt động đến khi bạn thay đổi hay thôi tiêu chuẩn sắp xếp hay lọc. Bộ lọc hoạt động thì biểu tượng <emph>Áp dụng bộ lọc</emph> trên thanh <emph>Dữ liệu bảng</emph> cũng là hoạt động."
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3147303\n"
-"help.text"
-msgid "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153896\">Biểu tượng</alt></image>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3153360\n"
-"13\n"
-"help.text"
-msgid "Save Record"
-msgstr "Lưu bản ghi"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3145173\n"
-"help.text"
-msgid "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154123\">Biểu tượng</alt></image>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3151382\n"
-"14\n"
-"help.text"
-msgid "Undo: Data Input"
-msgstr "Hoàn tác: nhập dữ liệu"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10744\n"
-"help.text"
-msgid "<link href=\"text/shared/02/12070000.xhp\">Data to Text</link>"
-msgstr "<link href=\"text/shared/02/12070000.xhp\">Dữ liệu thành văn bản</link>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10753\n"
-"help.text"
-msgid "<ahelp hid=\".\">Inserts all fields of the marked record into the current document at the cursor position.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn tất cả các trường của bản ghi đã đánh dấu vào tài liệu hiện thời tại vị trí của con trỏ.</ahelp>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10780\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge</link>"
-msgstr "<link href=\"text/swriter/01/mailmerge00.xhp\">Trộn thư</link>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN1078F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>"
-msgstr ""
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"tit\n"
-"help.text"
-msgid "Status Bar in $[officename] Basic Documents"
-msgstr "Thanh trạng thái trong tài liệu Basic $[officename]"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id3148520\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
-msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Thanh trạng thái trong tài liệu Basic $[officename]\">Thanh trạng thái trong tài liệu Basic $[officename]</link>"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id3154136\n"
-"2\n"
-"help.text"
-msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
-msgstr "Thanh <emph>Trạng thái</emph> hiển thị thông tin về tài liệu Basic $[officename] hiện có."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr "Lập trình $[officename]"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr "<bookmark_value>lập trình;$[officename]</bookmark_value><bookmark_value>Basic;lập trình</bookmark_value>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Lập trình $[officename]\">Lập trình $[officename]</link></variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr "<variable id=\"basic\">$[officename] có thể được điều khiển bằng cách sử dụng giao diện lập trình API $[officename]. </variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"12\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr "$[officename] cung cấp một giao diện lập trình ứng dụng (API) cho bạn có khả năng điều khiển các thành phần $[officename] bằng cách sử dụng ngôn ngữ lập trình khác nhau. Có sẵn một Bộ Công cụ Phát triển Phần mềm (SDK) cua $[officename] cho giao diện lập trình này."
-
-#: main0600.xhp
-#, fuzzy
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"15\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr "Để tìm thêm thông tin về tham chiếu API $[officename], xem địa chỉ « http://api.openoffice.org/ »."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"13\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "Phiên bản này không còn hỗ trợ vĩ lệnh được tạo bằng $[officename] Basic dựa vào giao diện lập trình cũ."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"14\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr "Để tìm thông tin thêm về $[officename] Basic, chọn « $[officename] Basic » trong hộp liệt kê."
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1358623975.0\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -453,6 +256,320 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Color toolbar.</ahelp>"
msgstr "<ahelp hid=\".\">Mở thanh công cụ Màu lồi.</ahelp>"
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fontwork"
+msgstr "Chữ nghệ thuật"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
+msgstr "<link href=\"text/shared/fontwork_toolbar.xhp\">Chữ nghệ thuật</link>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1056A\n"
+"help.text"
+msgid "The Fontwork toolbar opens when you select a Fontwork object."
+msgstr "Thanh công cụ chữ nghệ thuật sẽ hiện ra khi bạn chọn một đối tượng chữ nghệ thuật."
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1056D\n"
+"help.text"
+msgid "Fontwork Gallery"
+msgstr "Bộ sưu tập chữ nghệ thuật"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10571\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở bộ sưu tập chữ nghệ thuật, bạn có thể chọn ô xem thử khác. Nhấn vào nút \"Được\" để áp dụng bộ thuộc tính mới vào đối tượng chữ nghệ thuật của bạn.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Fontwork Shape"
+msgstr "Dạng chữ nghệ thuật"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1058C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở thanh công cụ dạng chữ nghệ thuật. Nhấn vào hình nào để áp dụng nó vào những đối tượng chữ nghệ thuật đã chọn.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105A6\n"
+"help.text"
+msgid "Fontwork Same Letter Heights"
+msgstr "Chữ nghệ thuật cùng chiều cao"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105AA\n"
+"help.text"
+msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Chuyển đổi bề cao chữ của những đối tượng chữ nghệ thuật đã chọn từ chuẩn sang cùng bề cao cho mọi đối tượng.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "Fontwork Alignment"
+msgstr "Gióng chữ nghệ thuật"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105C5\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở cửa sổ gióng chữ nghệ thuật.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105DC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn để áp dụng tình trạng gióng cho các đối tượng chữ nghệ thuật đã chọn.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105F3\n"
+"help.text"
+msgid "Fontwork Character Spacing"
+msgstr "Giãn cách ký tự của chữ nghệ thuật"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105F7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở cửa sổ khoảng cách ký tự chữ nghệ thuật.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1060E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn để áp dụng khoảng cách ký tự cho những đối tượng chữ nghệ thuật đã chọn.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1061D\n"
+"help.text"
+msgid "Custom"
+msgstr "Tự chọn"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10621\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại khoảng cách ký tự chữ nghệ thuật để nhập một giá trị mới cho khoảng cách ký tự.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "Value"
+msgstr "Giá trị"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1063C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
+msgstr "<ahelp hid=\".\">Gõ giá trị khoảng cách ký tự chữ nghệ thuật.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1064B\n"
+"help.text"
+msgid "Kern Character Pairs"
+msgstr "Định chỗ cặp ký tự"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật/tắt khả năng <link href=\"text/shared/00/00000005.xhp#kerning\">định chỗ</link> các cặp ký tự.</ahelp>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"tit\n"
+"help.text"
+msgid "Help"
+msgstr "Trợ giúp"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3155364\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
+msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Trợ giúp\">Trợ giúp</link>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3153990\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
+msgstr "<ahelp hid=\".uno:HelpMenu\">Trình đơn Trợ giúp cho bạn khởi chạy hệ thống trợ giúp của $[officename].</ahelp>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3147399\n"
+"5\n"
+"help.text"
+msgid "$[officename] Help"
+msgstr "Trợ giúp $[officename]"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3147576\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
+msgstr "<ahelp hid=\".uno:HelpIndex\">Mở trang chính của Trợ giúp $[officename] cho ứng dụng hiện thời.</ahelp> Bạn có thể cuộn qua các trang Trợ giúp, cũng tìm kiếm từ hay cụm từ."
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_idN1064A\n"
+"help.text"
+msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
+msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">biểu tượng</alt></image>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_idN10667\n"
+"help.text"
+msgid "%PRODUCTNAME Help"
+msgstr "Trợ giúp %PRODUCTNAME"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id2752763\n"
+"help.text"
+msgid "Send Feedback"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id443534340\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SendFeedback\">Opens a feedback form in the web browser, where users can report software bugs.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id4153881\n"
+"7\n"
+"help.text"
+msgid "License Information"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id4144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id5153881\n"
+"7\n"
+"help.text"
+msgid "%PRODUCTNAME Credits"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id5144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id2926419\n"
+"help.text"
+msgid "<link href=\"text/shared/01/online_update.xhp\">Check for Updates</link>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id2783898\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3153881\n"
+"7\n"
+"help.text"
+msgid "About $[officename]"
+msgstr "Giới thiệu về $[officename]"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
+msgstr "<ahelp hid=\".uno:About\">Hiển thị thông tin chương trình chung như số thứ tự phiên bản và tác quyền.</ahelp>"
+
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -656,234 +773,215 @@ msgctxt ""
msgid "What's this"
msgstr "Cái này là gì?"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
+"main0204.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] and the Internet"
-msgstr "$[officename] và Internet"
+msgid "Table Bar"
+msgstr "Thanh bảng"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
-"hd_id3153089\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3145587\n"
"help.text"
-msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
-msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] và Internet\">$[officename] và Internet</link>"
+msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
+msgstr "<link href=\"text/swriter/main0204.xhp\" name=\"Thanh bảng\">Thanh bảng</link>"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
-"par_id3155150\n"
-"2\n"
+"main0204.xhp\n"
+"par_id3154252\n"
"help.text"
-msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
-msgstr "Phần này cung cấp thông tin về Internet. <link href=\"text/shared/00/00000002.xhp\" name=\"Từ điển thuật ngữ Internet\">Từ điển thuật ngữ Internet</link> diễn tả các thuật ngữ quan trọng nhất."
+msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABLE_TOOLBOX\">Thanh <emph>bảng </emph> chứa các chức năng để thao tác bảng. Nó xuất hiện khi bạn di chuyển con trỏ vào bảng.</ahelp>"
-#: main0500.xhp
+#: main0204.xhp
+#, fuzzy
msgctxt ""
-"main0500.xhp\n"
-"tit\n"
+"main0204.xhp\n"
+"hd_id319945759\n"
"help.text"
-msgid "Glossaries"
-msgstr "Từ điển thuật ngữ"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgstr "#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Kiểu vùng / Tô đầy\">Kiểu vùng / Tô đầy</link>\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Kiểu/tô đầy vùng\">Kiểu/Tô đầy vùng</link>"
-#: main0500.xhp
+#: main0204.xhp
msgctxt ""
-"main0500.xhp\n"
-"hd_id3156183\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3147592\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
-msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Từ điển thuật ngữ\">Từ điển thuật ngữ</link>"
+msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
+msgstr ""
-#: main0500.xhp
+#: main0204.xhp
msgctxt ""
-"main0500.xhp\n"
-"par_id3157898\n"
-"2\n"
+"main0204.xhp\n"
+"hd_id3147820\n"
+"9\n"
"help.text"
-msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
-msgstr "Phần này cung cấp một từ điển thuật ngữ cho $[officename], cũng như danh sách các thuật ngữ Internet."
+msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
+msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Xoá hàng\">Xoá hàng</link>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"tit\n"
+"main0204.xhp\n"
+"hd_id3147231\n"
+"10\n"
"help.text"
-msgid "Form Design Toolbar"
-msgstr "Thanh công cụ thiết kế biểu mẫu"
+msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
+msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Xoá cột\">Xoá cột</link>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3148520\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3134447820\n"
"help.text"
-msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
-msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Thanh công cụ thiết kế biểu mẫu\">Thanh công cụ thiết kế biểu mẫu</link>"
+msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Thiết kế Ảnh chiếu\">Thiết kế Ảnh chiếu</link>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"par_id3155364\n"
-"2\n"
+"main0204.xhp\n"
+"par_id16200812240344\n"
"help.text"
-msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
-msgstr "Thanh công cụ thiết kế biểu mẫu xuất hiện một khi bạn chọn đối tượng kiểu biểu mẫu trong khi làm việc trong chế độ thiết kế."
+msgid "Opens the Table Design. Double-click a preview to insert a new table."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại Thiết kế Bảng. Nhấn đúp vào một hình thu nhỏ để chèn thêm một bảng mới.</ahelp>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3163802\n"
-"8\n"
+"main0204.xhp\n"
+"hd_id947820\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
-msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Têm trường\">Thêm trường</link>"
+msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
+msgstr "<link href=\"text/swriter/01/05080000.xhp\" name=\"Thuộc tính đối tượng\">Thuộc tính đối tượng</link>"
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3150669\n"
-"4\n"
+"main0208.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
+msgid "Status Bar in $[officename] Basic Documents"
+msgstr "Thanh trạng thái trong tài liệu Basic $[officename]"
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3147335\n"
-"5\n"
+"main0208.xhp\n"
+"hd_id3148520\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
+msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
+msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Thanh trạng thái trong tài liệu Basic $[officename]\">Thanh trạng thái trong tài liệu Basic $[officename]</link>"
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3156024\n"
-"6\n"
+"main0208.xhp\n"
+"par_id3154136\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Vào nhóm\">Vào nhóm</link>"
+msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
+msgstr "Thanh <emph>Trạng thái</emph> hiển thị thông tin về tài liệu Basic $[officename] hiện có."
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3149295\n"
-"7\n"
+"main0212.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Ra nhóm\">Rã nhóm</link>"
+msgid "Table Data Bar"
+msgstr "Thanh dữ liệu bảng"
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3150398\n"
-"9\n"
+"main0212.xhp\n"
+"hd_id3147102\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
-msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Hiển thị lưới\">Hiển thị lưới</link>"
+msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Thanh dữ liệu bảng\">Thanh dữ liệu bảng</link>"
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3148798\n"
+"main0212.xhp\n"
+"par_id3153394\n"
"10\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
-msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Đính lưới\">Đính lưới</link>"
+msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
+msgstr "<ahelp hid=\".\">Dùng thanh dữ liệu bảng để điều khiển ô xem dữ liệu. </ahelp>"
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"par_id3145419\n"
+"main0212.xhp\n"
+"par_id3149346\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
-msgstr "<ahelp hid=\".uno:GridUse\">Cho phép di chuyển đối tượng chỉ giữa các điểm lưới.</ahelp>"
-
-#: main0226.xhp
-#, fuzzy
-msgctxt ""
-"main0226.xhp\n"
-"hd_id3148920\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
-msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Dẫn khi di chuyển\">Dẫn khi di chuyển</link>"
+msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
+msgstr "Ô xem dữ liệu đã lọc vẫn còn hoạt động đến khi bạn thay đổi hay thôi tiêu chuẩn sắp xếp hay lọc. Bộ lọc hoạt động thì biểu tượng <emph>Áp dụng bộ lọc</emph> trên thanh <emph>Dữ liệu bảng</emph> cũng là hoạt động."
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"tit\n"
+"main0212.xhp\n"
+"par_id3147303\n"
"help.text"
-msgid "Java Platform Support"
-msgstr "Hỗ trợ nền tảng Java"
+msgid "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153896\">Biểu tượng</alt></image>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"hd_id3153089\n"
-"1\n"
+"main0212.xhp\n"
+"par_id3153360\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
-msgstr "<link href=\"text/shared/main0650.xhp\" name=\"Hỗ trợ nền tảng Java\">Hỗ trợ nền tảng Java</link>"
+msgid "Save Record"
+msgstr "Lưu bản ghi"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3152363\n"
-"2\n"
+"main0212.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
-msgstr "$[officename] hỗ trợ nền tảng Java để chạy các ứng dụng, và thành phần dựa vào kiến trúc JavaBeans."
+msgid "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154123\">Biểu tượng</alt></image>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3154751\n"
-"3\n"
+"main0212.xhp\n"
+"par_id3151382\n"
+"14\n"
"help.text"
-msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
-msgstr ""
+msgid "Undo: Data Input"
+msgstr "Hoàn tác: nhập dữ liệu"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3155338\n"
-"4\n"
+"main0212.xhp\n"
+"par_idN10744\n"
"help.text"
-msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
-msgstr "Để chạy các ứng dụng Java, cần phải kích hoạt khả năng hỗ trợ Java dưới $[officename]."
+msgid "<link href=\"text/shared/02/12070000.xhp\">Data to Text</link>"
+msgstr "<link href=\"text/shared/02/12070000.xhp\">Dữ liệu thành văn bản</link>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3155892\n"
-"5\n"
+"main0212.xhp\n"
+"par_idN10753\n"
"help.text"
-msgid "Activate Java platform support by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Java\">$[officename] - Java</link></emph>."
-msgstr ""
+msgid "<ahelp hid=\".\">Inserts all fields of the marked record into the current document at the cursor position.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn tất cả các trường của bản ghi đã đánh dấu vào tài liệu hiện thời tại vị trí của con trỏ.</ahelp>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id9116183\n"
+"main0212.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME- Java, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
-msgstr ""
+msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge</link>"
+msgstr "<link href=\"text/swriter/01/mailmerge00.xhp\">Trộn thư</link>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3153822\n"
-"11\n"
+"main0212.xhp\n"
+"par_idN1078F\n"
"help.text"
-msgid "Your modifications at the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Java</emph> tab page will be used even if the Java Virtual Machine (JVM, a virtual machine for the Java platform) already has been started. After modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</emph>. Only the two boxes \"Http Proxy\" and \"Ftp Proxy\" and their ports don't require a restart, they will be evaluated when you click <emph>OK</emph>."
+msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>"
msgstr ""
#: main0213.xhp
@@ -1001,7 +1099,6 @@ msgid "First Record"
msgstr "Bản ghi đầu"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"par_id3154013\n"
@@ -1080,7 +1177,6 @@ msgid "Last Record"
msgstr "Bản ghi cuối"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"par_id3155337\n"
@@ -1219,487 +1315,165 @@ msgctxt ""
msgid "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Sắp xếp</link>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
+"main0214.xhp\n"
"tit\n"
"help.text"
-msgid "Help"
-msgstr "Trợ giúp"
+msgid "Query Design Bar"
+msgstr "Thanh thiết kế truy vấn"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3155364\n"
+"main0214.xhp\n"
+"hd_id3159176\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
-msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Trợ giúp\">Trợ giúp</link>"
+msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
+msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Thanh thiết kế truy vấn\">Thanh thiết kế truy vấn</link>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"par_id3153990\n"
+"main0214.xhp\n"
+"par_id3150085\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
-msgstr "<ahelp hid=\".uno:HelpMenu\">Trình đơn Trợ giúp cho bạn khởi chạy hệ thống trợ giúp của $[officename].</ahelp>"
+msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
+msgstr "<ahelp hid=\".\">Khi tạo hay sửa đổi câu lệnh SQL, dùng các biểu tượng trên thanh <emph>Thiết kế truy vấn</emph> để điều khiển cách hiển thị dữ liệu.</ahelp>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3147399\n"
+"main0214.xhp\n"
+"par_id3150276\n"
"5\n"
"help.text"
-msgid "$[officename] Help"
-msgstr "Trợ giúp $[officename]"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id3147576\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
-msgstr "<ahelp hid=\".uno:HelpIndex\">Mở trang chính của Trợ giúp $[officename] cho ứng dụng hiện thời.</ahelp> Bạn có thể cuộn qua các trang Trợ giúp, cũng tìm kiếm từ hay cụm từ."
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_idN1064A\n"
-"help.text"
-msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">biểu tượng</alt></image>"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_idN10667\n"
-"help.text"
-msgid "%PRODUCTNAME Help"
-msgstr "Trợ giúp %PRODUCTNAME"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id2752763\n"
-"help.text"
-msgid "Send Feedback"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id443534340\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SendFeedback\">Opens a feedback form in the web browser, where users can report software bugs.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id4153881\n"
-"7\n"
-"help.text"
-msgid "License Information"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id4144510\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id5153881\n"
-"7\n"
-"help.text"
-msgid "%PRODUCTNAME Credits"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id5144510\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id2926419\n"
-"help.text"
-msgid "<link href=\"text/shared/01/online_update.xhp\">Check for Updates</link>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id2783898\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>"
-msgstr ""
+msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
+msgstr "Phụ thuộc vào trường hợp bạn đã tạo truy vấn hay ô xem trên trang thanh <emph>Thiết kế</emph> hoặc <emph>SQL</emph>, những biểu tượng này xuất hiện:"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3153881\n"
-"7\n"
+"main0214.xhp\n"
+"hd_id3151384\n"
+"3\n"
"help.text"
-msgid "About $[officename]"
-msgstr "Giới thiệu về $[officename]"
+msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
+msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Thêm bảng\">Thêm bảng</link>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"par_id3144510\n"
-"8\n"
+"main0214.xhp\n"
+"par_id3151041\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
-msgstr "<ahelp hid=\".uno:About\">Hiển thị thông tin chương trình chung như số thứ tự phiên bản và tác quyền.</ahelp>"
+msgid "The following icon is on the <emph>SQL</emph> tab page:"
+msgstr "Biểu tượng này nằm trên trang thanh <emph>SQL</emph>:"
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
+"main0226.xhp\n"
"tit\n"
"help.text"
-msgid "Shortcut Keys"
-msgstr "Phím tắt"
+msgid "Form Design Toolbar"
+msgstr "Thanh công cụ thiết kế biểu mẫu"
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
-"hd_id3149495\n"
+"main0226.xhp\n"
+"hd_id3148520\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
-msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Phím tắt\">Phím tắt</link>"
+msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
+msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Thanh công cụ thiết kế biểu mẫu\">Thanh công cụ thiết kế biểu mẫu</link>"
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
-"par_id3150040\n"
+"main0226.xhp\n"
+"par_id3155364\n"
"2\n"
"help.text"
-msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
-msgstr "Phần này diễn tả các phím tắt thường dùng trong chương trình $[officename]."
+msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
+msgstr "Thanh công cụ thiết kế biểu mẫu xuất hiện một khi bạn chọn đối tượng kiểu biểu mẫu trong khi làm việc trong chế độ thiết kế."
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"tit\n"
+"main0226.xhp\n"
+"hd_id3163802\n"
+"8\n"
"help.text"
-msgid "Table Bar"
-msgstr "Thanh bảng"
+msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
+msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Têm trường\">Thêm trường</link>"
-#: main0204.xhp
-#, fuzzy
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3145587\n"
+"main0226.xhp\n"
+"hd_id3150669\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
-msgstr "<link href=\"text/swriter/main0204.xhp\" name=\"Thanh bảng\">Thanh bảng</link>"
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
-#: main0204.xhp
-#, fuzzy
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"par_id3154252\n"
+"main0226.xhp\n"
+"hd_id3147335\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABLE_TOOLBOX\">Thanh <emph>bảng </emph> chứa các chức năng để thao tác bảng. Nó xuất hiện khi bạn di chuyển con trỏ vào bảng.</ahelp>"
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
-#: main0204.xhp
-#, fuzzy
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id319945759\n"
+"main0226.xhp\n"
+"hd_id3156024\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
-msgstr "#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Kiểu vùng / Tô đầy\">Kiểu vùng / Tô đầy</link>\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Kiểu/tô đầy vùng\">Kiểu/Tô đầy vùng</link>"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Vào nhóm\">Vào nhóm</link>"
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3147592\n"
-"6\n"
+"main0226.xhp\n"
+"hd_id3149295\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Ra nhóm\">Rã nhóm</link>"
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3147820\n"
+"main0226.xhp\n"
+"hd_id3150398\n"
"9\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
-msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Xoá hàng\">Xoá hàng</link>"
+msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Hiển thị lưới\">Hiển thị lưới</link>"
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3147231\n"
+"main0226.xhp\n"
+"hd_id3148798\n"
"10\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
-msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Xoá cột\">Xoá cột</link>"
-
-#: main0204.xhp
-#, fuzzy
-msgctxt ""
-"main0204.xhp\n"
-"hd_id3134447820\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
-msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Thiết kế Ảnh chiếu\">Thiết kế Ảnh chiếu</link>"
-
-#: main0204.xhp
-#, fuzzy
-msgctxt ""
-"main0204.xhp\n"
-"par_id16200812240344\n"
-"help.text"
-msgid "Opens the Table Design. Double-click a preview to insert a new table."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại Thiết kế Bảng. Nhấn đúp vào một hình thu nhỏ để chèn thêm một bảng mới.</ahelp>"
-
-#: main0204.xhp
-#, fuzzy
-msgctxt ""
-"main0204.xhp\n"
-"hd_id947820\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
-msgstr "<link href=\"text/swriter/01/05080000.xhp\" name=\"Thuộc tính đối tượng\">Thuộc tính đối tượng</link>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fontwork"
-msgstr "Chữ nghệ thuật"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
-msgstr "<link href=\"text/shared/fontwork_toolbar.xhp\">Chữ nghệ thuật</link>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1056A\n"
-"help.text"
-msgid "The Fontwork toolbar opens when you select a Fontwork object."
-msgstr "Thanh công cụ chữ nghệ thuật sẽ hiện ra khi bạn chọn một đối tượng chữ nghệ thuật."
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1056D\n"
-"help.text"
-msgid "Fontwork Gallery"
-msgstr "Bộ sưu tập chữ nghệ thuật"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10571\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở bộ sưu tập chữ nghệ thuật, bạn có thể chọn ô xem thử khác. Nhấn vào nút \"Được\" để áp dụng bộ thuộc tính mới vào đối tượng chữ nghệ thuật của bạn.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10588\n"
-"help.text"
-msgid "Fontwork Shape"
-msgstr "Dạng chữ nghệ thuật"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1058C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở thanh công cụ dạng chữ nghệ thuật. Nhấn vào hình nào để áp dụng nó vào những đối tượng chữ nghệ thuật đã chọn.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "Fontwork Same Letter Heights"
-msgstr "Chữ nghệ thuật cùng chiều cao"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Chuyển đổi bề cao chữ của những đối tượng chữ nghệ thuật đã chọn từ chuẩn sang cùng bề cao cho mọi đối tượng.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "Fontwork Alignment"
-msgstr "Gióng chữ nghệ thuật"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105C5\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở cửa sổ gióng chữ nghệ thuật.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105DC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn để áp dụng tình trạng gióng cho các đối tượng chữ nghệ thuật đã chọn.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F3\n"
-"help.text"
-msgid "Fontwork Character Spacing"
-msgstr "Giãn cách ký tự của chữ nghệ thuật"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở cửa sổ khoảng cách ký tự chữ nghệ thuật.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1060E\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn để áp dụng khoảng cách ký tự cho những đối tượng chữ nghệ thuật đã chọn.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1061D\n"
-"help.text"
-msgid "Custom"
-msgstr "Tự chọn"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10621\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại khoảng cách ký tự chữ nghệ thuật để nhập một giá trị mới cho khoảng cách ký tự.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "Value"
-msgstr "Giá trị"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1063C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
-msgstr "<ahelp hid=\".\">Gõ giá trị khoảng cách ký tự chữ nghệ thuật.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Kern Character Pairs"
-msgstr "Định chỗ cặp ký tự"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật/tắt khả năng <link href=\"text/shared/00/00000005.xhp#kerning\">định chỗ</link> các cặp ký tự.</ahelp>"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Design Bar"
-msgstr "Thanh thiết kế truy vấn"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"hd_id3159176\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
-msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Thanh thiết kế truy vấn\">Thanh thiết kế truy vấn</link>"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"par_id3150085\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
-msgstr "<ahelp hid=\".\">Khi tạo hay sửa đổi câu lệnh SQL, dùng các biểu tượng trên thanh <emph>Thiết kế truy vấn</emph> để điều khiển cách hiển thị dữ liệu.</ahelp>"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"par_id3150276\n"
-"5\n"
-"help.text"
-msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
-msgstr "Phụ thuộc vào trường hợp bạn đã tạo truy vấn hay ô xem trên trang thanh <emph>Thiết kế</emph> hoặc <emph>SQL</emph>, những biểu tượng này xuất hiện:"
+msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Đính lưới\">Đính lưới</link>"
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"hd_id3151384\n"
-"3\n"
+"main0226.xhp\n"
+"par_id3145419\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
-msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Thêm bảng\">Thêm bảng</link>"
+msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
+msgstr "<ahelp hid=\".uno:GridUse\">Cho phép di chuyển đối tượng chỉ giữa các điểm lưới.</ahelp>"
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"par_id3151041\n"
-"4\n"
+"main0226.xhp\n"
+"hd_id3148920\n"
+"11\n"
"help.text"
-msgid "The following icon is on the <emph>SQL</emph> tab page:"
-msgstr "Biểu tượng này nằm trên trang thanh <emph>SQL</emph>:"
+msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Dẫn khi di chuyển\">Dẫn khi di chuyển</link>"
#: main0227.xhp
msgctxt ""
@@ -2164,3 +1938,221 @@ msgctxt ""
"help.text"
msgid "Eliminate Points"
msgstr "Bỏ điểm"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys"
+msgstr "Phím tắt"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"hd_id3149495\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
+msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Phím tắt\">Phím tắt</link>"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"par_id3150040\n"
+"2\n"
+"help.text"
+msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
+msgstr "Phần này diễn tả các phím tắt thường dùng trong chương trình $[officename]."
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Glossaries"
+msgstr "Từ điển thuật ngữ"
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"hd_id3156183\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
+msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Từ điển thuật ngữ\">Từ điển thuật ngữ</link>"
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"par_id3157898\n"
+"2\n"
+"help.text"
+msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
+msgstr "Phần này cung cấp một từ điển thuật ngữ cho $[officename], cũng như danh sách các thuật ngữ Internet."
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming $[officename]"
+msgstr "Lập trình $[officename]"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"bm_id3154232\n"
+"help.text"
+msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
+msgstr "<bookmark_value>lập trình;$[officename]</bookmark_value><bookmark_value>Basic;lập trình</bookmark_value>"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"hd_id3154232\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
+msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Lập trình $[officename]\">Lập trình $[officename]</link></variable>"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3149760\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
+msgstr "<variable id=\"basic\">$[officename] có thể được điều khiển bằng cách sử dụng giao diện lập trình API $[officename]. </variable>"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3151111\n"
+"12\n"
+"help.text"
+msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
+msgstr "$[officename] cung cấp một giao diện lập trình ứng dụng (API) cho bạn có khả năng điều khiển các thành phần $[officename] bằng cách sử dụng ngôn ngữ lập trình khác nhau. Có sẵn một Bộ Công cụ Phát triển Phần mềm (SDK) cua $[officename] cho giao diện lập trình này."
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3156346\n"
+"15\n"
+"help.text"
+msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
+msgstr "Để tìm thêm thông tin về tham chiếu API $[officename], xem địa chỉ « http://api.openoffice.org/ »."
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3153825\n"
+"13\n"
+"help.text"
+msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
+msgstr "Phiên bản này không còn hỗ trợ vĩ lệnh được tạo bằng $[officename] Basic dựa vào giao diện lập trình cũ."
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3149795\n"
+"14\n"
+"help.text"
+msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
+msgstr "Để tìm thông tin thêm về $[officename] Basic, chọn « $[officename] Basic » trong hộp liệt kê."
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"tit\n"
+"help.text"
+msgid "Java Platform Support"
+msgstr "Hỗ trợ nền tảng Java"
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"hd_id3153089\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
+msgstr "<link href=\"text/shared/main0650.xhp\" name=\"Hỗ trợ nền tảng Java\">Hỗ trợ nền tảng Java</link>"
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3152363\n"
+"2\n"
+"help.text"
+msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
+msgstr "$[officename] hỗ trợ nền tảng Java để chạy các ứng dụng, và thành phần dựa vào kiến trúc JavaBeans."
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3154751\n"
+"3\n"
+"help.text"
+msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3155338\n"
+"4\n"
+"help.text"
+msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
+msgstr "Để chạy các ứng dụng Java, cần phải kích hoạt khả năng hỗ trợ Java dưới $[officename]."
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3155892\n"
+"5\n"
+"help.text"
+msgid "Activate Java platform support by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\">$[officename] - Advanced</link></emph>."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id9116183\n"
+"help.text"
+msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3153822\n"
+"11\n"
+"help.text"
+msgid "Your modifications at the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Advanced</emph> tab page will be used even if the Java Virtual Machine (JVM, a virtual machine for the Java platform) already has been started. After modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</emph>. Only the two boxes \"Http Proxy\" and \"Ftp Proxy\" and their ports don't require a restart, they will be evaluated when you click <emph>OK</emph>."
+msgstr ""
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] and the Internet"
+msgstr "$[officename] và Internet"
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"hd_id3153089\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
+msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] và Internet\">$[officename] và Internet</link>"
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"par_id3155150\n"
+"2\n"
+"help.text"
+msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
+msgstr "Phần này cung cấp thông tin về Internet. <link href=\"text/shared/00/00000002.xhp\" name=\"Từ điển thuật ngữ Internet\">Từ điển thuật ngữ Internet</link> diễn tả các thuật ngữ quan trọng nhất."
diff --git a/source/vi/helpcontent2/source/text/shared/00.po b/source/vi/helpcontent2/source/text/shared/00.po
index d659d7d1af7..edfa31fc1b6 100644
--- a/source/vi/helpcontent2/source/text/shared/00.po
+++ b/source/vi/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
-"PO-Revision-Date: 2012-06-16 15:56+0200\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2012-12-01 15:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vi\n"
@@ -14,796 +14,1754 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1354376673.0\n"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
+"00000001.xhp\n"
"tit\n"
"help.text"
-msgid "Window Menu"
-msgstr "Trình đơn Cửa sổ"
+msgid "Frequently-Used Buttons"
+msgstr "Các nút thường dùng"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"hd_id3154349\n"
+"00000001.xhp\n"
+"hd_id3152952\n"
"1\n"
"help.text"
-msgid "Window Menu"
-msgstr "Trình đơn Cửa sổ"
+msgid "Frequently-Used Buttons"
+msgstr "Các nút thường dùng"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3083278\n"
+"00000001.xhp\n"
+"hd_id3147617\n"
+"4\n"
+"help.text"
+msgid "Cancel"
+msgstr "Thôi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155913\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn vào cái nút <emph>Thôi</emph> thì đóng hộp thoại mà không lưu thay đổi.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id2341685\n"
+"help.text"
+msgid "Finish"
+msgstr "Kết thúc"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id6909390\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies all changes and closes the wizard.</ahelp>"
+msgstr "<ahelp hid=\".\">Áp dụng mọi thay đổi rồi đóng trợ lý.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147477\n"
+"39\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3149783\n"
+"40\n"
+"help.text"
+msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
+msgstr "Bằng cách nhấn vào mũi tên bên cạnh một biểu tượng nào đó, bạn có thể mở thanh công cụ riêng. Để di chuyển thanh công cụ, chỉ cần kéo thanh tựa đề của nó. Một khi bạn buông nút chuột ra, thanh công cụ còn lại ở vị trí mới. Kéo thanh tựa đề sang vị trí khác, hoặc kéo sang cạnh cửa sổ nơi thanh công cụ sẽ thả neo. Đóng thanh công cụ bằng cách nhấn vào biểu tượng <emph>Đóng cửa sổ</emph>. Làm cho thanh công cụ hiển thị lại bằng cách chọn lệnh trình đơn <emph>Xem > Thanh công cụ > (tên thanh công cụ)</emph>."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3152414\n"
+"79\n"
+"help.text"
+msgid "Spin button"
+msgstr "Nút xoay"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id1094088\n"
+"help.text"
+msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally."
+msgstr "Đối với điều khiển biểu mẫu, cái nút xoay là một thuộc tính của trường kiểu con số, tiền tệ, ngày tháng hay thời gian. Bật thuộc tính « Nút xoay » thì trường đó hiển thị một cặp ký hiệu có mũi tên chỉ tới hướng đối diện, hoặc nằm ngang hay nằm dọc."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id7493209\n"
+"help.text"
+msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols."
+msgstr "Trong IDE Basic (giao diện ghi mã nguồn), nút xoay là tên dùng cho trường thuộc số, cùng với hai ký hiệu mũi tên."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155599\n"
+"78\n"
+"help.text"
+msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value."
+msgstr "Bạn có thể gõ một giá trị thuộc số vào trường bên cạnh cái nút xoay, hoặc chọn giá trị bằng mũi tên chỉ lên hay chỉ xuống nằm trên nút xoay. Trên bàn phím, bạn có thể bấm phím mũi tên chỉ lên hay chỉ xuống để tăng hay giảm giá trị. Cũng có thể bấm mũi tên Page Up (lên một trang) hay Page Down (xuống một trang) để đặt giá trị tối đa hay giá trị tối thiểu."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3150264\n"
+"38\n"
+"help.text"
+msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 2\"."
+msgstr "Nếu trường bên cạnh nút xoay có xác định giá trị thuộc số, bạn cũng có thể định nghĩa một <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"đơn vị đo\">đơn vị đo</link>, thí dụ, 1 cm hay 5 mm, 12 pt hay 2\"."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3154232\n"
+"76\n"
+"help.text"
+msgid "Convert"
+msgstr "Chuyển đổi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3148983\n"
+"77\n"
+"help.text"
+msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
+msgstr "<ahelp hid=\".\">Khi bạn nhấn chuột để tiếp qua hộp thoại, cái nút này có tên <emph>Kế</emph>. Tuy nhiên, trên trang cuối cùng, nó trở thành <emph>Chuyển đổi</emph>. Bấm nút đó thì để thực hiện công việc chuyển đổi.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3145129\n"
+"42\n"
+"help.text"
+msgid "Context Menu"
+msgstr "Trình đơn ngữ cảnh"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3156553\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
+msgstr "<variable id=\"context\">Để kích hoạt trình đơn ngữ cảnh của một đối tượng nào đó, trước tiên nhấn vào đối tượng bằng nút chuột <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>trái</defaultinline></switchinline> để lựa chọn nó, sau đó <switchinline select=\"sys\"><caseinline select=\"MAC\">trong khi ấn giữ phím Ctrl hay hai phím Command và Option keys, nhấn lại nút chuột</caseinline><defaultinline>nhấn nút bên phải trên chuột</defaultinline></switchinline>. Một số trình đơn ngữ cảnh vẫn còn có thể được gọi thậm chí nếu đối tượng chưa được lựa chọn. Trình đơn ngữ cảnh sẵn sàng ở gần mọi nơi trong $[officename]. </variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3149180\n"
+"24\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153750\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements after confirmation.</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá (các) mục đã chọn, một khi xác nhận.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147557\n"
+"45\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155338\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá (các) mục đã chọn, không cần xác nhận.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3148620\n"
"6\n"
"help.text"
-msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
-msgstr "<variable id=\"window\">Chọn lệnh <emph>Cửa sổ > Cửa sổ mới</emph></variable>"
+msgid "Metrics"
+msgstr "Hệ đo"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3154545\n"
-"13\n"
+"00000001.xhp\n"
+"par_id3145345\n"
+"7\n"
"help.text"
-msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
-msgstr "<variable id=\"liste\">Chọn lệnh <emph>Cửa sổ</emph> rồi danh sách các tài liệu cờn mở</variable>"
+msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
+msgstr "Bạn có thể gõ vào trường nhập giá trị theo đơn vị đo khác nhau. Đơn vị mặc định là insơ. Tuy nhiên, nếu bạn muốn đặt một khoảng chính xác là 1 cm, hãy gõ « 1cm ». Các đơn vị khác sẵn sàng tùy theo ngữ cảnh: chẳng hạn, 12 pt cho khoảng 12 điểm. Gõ giá trị không hữu ích thì chương trình dùng giá trị tối đa/thiểu đã định sẵn."
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"tit\n"
+"00000001.xhp\n"
+"hd_id3155535\n"
+"8\n"
"help.text"
-msgid "See also..."
-msgstr "Xem thêm..."
+msgid "Close"
+msgstr "Đóng"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"hd_id3147527\n"
-"1\n"
+"00000001.xhp\n"
+"par_id3147008\n"
+"9\n"
"help.text"
-msgid "<variable id=\"siehe\">See also... </variable>"
-msgstr "<variable id=\"siehe\">Xem thêm... </variable>"
+msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>"
+msgstr "<ahelp hid=\".\">Đóng hộp thoại và lưu các thay đổi đã làm.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3143206\n"
+"00000001.xhp\n"
+"hd_id3147275\n"
+"57\n"
+"help.text"
+msgid "Close"
+msgstr "Đóng"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153031\n"
+"58\n"
+"help.text"
+msgid "<ahelp hid=\".\">Closes the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Đóng hộp thoại.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3156113\n"
+"16\n"
+"help.text"
+msgid "Apply"
+msgstr "Áp dụng"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155341\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Áp dụng các giá trị đã sửa đổi hay chọn, mà không đóng hộp thoại.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3153760\n"
+"47\n"
+"help.text"
+msgid "Shrink / Maximize"
+msgstr "Thu nhỏ / Phóng to"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153087\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn vào biểu tượng <emph>Thu nhỏ</emph>để giảm hộp thoại xuống kích cỡ của trường nhập vào. Vì thế dễ hơn đánh dấu tham chiếu đã yêu cầu trong bảng. Biểu tượng <emph>Thu nhỏ</emph> thì tự động chuyển đổi sang biểu tượng <emph>Phóng to</emph>. Nhấn vào để phục hồi hộp thoại về kích cỡ gốc.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155062\n"
+"49\n"
+"help.text"
+msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame."
+msgstr "Hộp thoại bị thu nhỏ tự động khi bạn nhấn chuột vào một bảng nào đó. Một khi bạn buông nút chuột ra, hộp thoại được phục hồi lại và phạm vi tham chiếu được xác định bằng con chuột được tô sáng bằng khung màu xanh trong tài liệu."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3157808\n"
+"help.text"
+msgid "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Biểu tượng</alt></image>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153321\n"
+"50\n"
+"help.text"
+msgid "Shrink"
+msgstr "Thu nhỏ"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153349\n"
+"help.text"
+msgid "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149064\">Biểu tượng</alt></image>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155628\n"
+"51\n"
+"help.text"
+msgid "Maximize"
+msgstr "Phóng to"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3156192\n"
+"34\n"
+"help.text"
+msgid "Preview Field"
+msgstr "Trường xem thử"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3154046\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays a preview of the current selection.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị ô xem thử vùng chọn hiện thời.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3145609\n"
+"70\n"
+"help.text"
+msgid "Next"
+msgstr "Tiếp"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3152473\n"
"71\n"
"help.text"
-msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
-msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Công cụ > Kịch bản\">Công cụ > Kịch bản</link></variable>"
+msgid "<ahelp hid=\".\">Click the<emph> Next </emph>button, and the wizard uses the current dialog settings and proceeds to the next step. If you are on the last step, this button becomes <emph>Create</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn vào cái <emph>Kế</emph> thì trợ lý dùng thiết lập hộp thoại hiện thời và tiến đến bước kế tiếp. Khi bạn tới bước cuối cùng, cái nút này trở thành <emph>Tạo</emph>.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3156069\n"
-"83\n"
+"00000001.xhp\n"
+"hd_id3149670\n"
+"13\n"
"help.text"
-msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
-msgstr "Trên trang trợ giúp <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] chung\">$[officename] chung</link>, bạn có thể tìm các hướng dẫn thích hợp với mọi mô-đun, v.d. thao tác trình đơn và cửa sổ, tùy chỉnh $[officename], nguồn dữ liệu, bộ sưu tập và chức năng kéo thả."
+msgid "Back"
+msgstr "Lùi"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3149662\n"
-"84\n"
+"00000001.xhp\n"
+"par_id3145068\n"
+"14\n"
"help.text"
-msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
-msgstr "Muốn xem trợ giúp về mô-đun khác thì chuyển đổi sang trợ giúp về nó, dùng hộp tổ hợp trong vùng dịch chuyển."
+msgid "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Đặt lại các giá trị bị sửa đổi về giá trị $[officename] mặc định.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3154408\n"
-"85\n"
+"00000001.xhp\n"
+"hd_id3148755\n"
+"59\n"
"help.text"
-msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
-msgstr "<variable id=\"winmanager\">Chức năng này sẵn sàng hay không, phụ thuộc vào chương trình quản lý cửa sổ X của bạn. </variable>"
+msgid "Reset"
+msgstr "Đặt lại"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN10632\n"
+"00000001.xhp\n"
+"par_id3149651\n"
+"60\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".uno:HelperDialog\">Cho phép bạn kích hoạt Trợ lý Trợ giúp tự động. Cũng có thể kích hoạt nó trong tùy thích <emph>Công cụ > Tùy chọn > $[officename] > Chung > Trợ lý Trợ giúp</emph>.</ahelp>"
+msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Đặt lại các thay đổi đã làm trên thẻ hiện thời về các giá trị có thể áp dụng khi bạn sắp mở hộp thoại này. Đóng hộp thoại thì không hiển thị yêu cầu xác nhận.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN10665\n"
+"00000001.xhp\n"
+"hd_id3143278\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
-msgstr "<ahelp hid=\".uno:HelpTip\">Hiệu lực chức năng hiển thị nội dung Trợ giúp khác, v.d. tên biểu tượng dưới con trỏ chuột.</ahelp>"
+msgid "Reset"
+msgstr "Đặt lại"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN1067C\n"
+"00000001.xhp\n"
+"par_id3150791\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".uno:ActiveHelp\">Enables the display of a brief description of menus and icons at the mouse pointer.</ahelp>"
-msgstr "<ahelp hid=\".uno:ActiveHelp\">Hiệu lực chức năng hiển thị mô tả ngắn về trình đơn và biểu tượng dưới con trỏ chuột.</ahelp>"
+msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Đặt lại các giá trị bị sửa đổi về các giá trị mặc định.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id6200750\n"
+"00000001.xhp\n"
+"par_id3154331\n"
+"20\n"
"help.text"
-msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in <emph>Tools - Customize - Keyboard</emph>, or in your desktop system."
-msgstr "Một số phím tắt nào đó có lẽ đã được gán cho môi trường làm việc trên máy tính của bạn. Vì vậy các phím tắt này không còn sẵn sàng cho %PRODUCTNAME. Hãy thử gán phím tắt khác cho %PRODUCTNAME, trong <emph>Công cụ > Tùy biến > Bàn phím</emph>, hoặc trong môi trường làm việc."
+msgid "A confirmation query does not appear. If you confirm the dialog with OK all settings in this dialog are reset."
+msgstr "Không hiển thị yêu cầu xác nhận. Xác định hộp thoại bằng nút <emph>OK</emph> thì đặt lại toàn thiết lập trong hộp thoại."
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"tit\n"
+"00000001.xhp\n"
+"hd_id3145173\n"
+"10\n"
"help.text"
-msgid "Menu Commands"
-msgstr "Lệnh trình đơn"
+msgid "Standard"
+msgstr "Chuẩn"
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"hd_id3156045\n"
-"4\n"
+"00000001.xhp\n"
+"par_id3154153\n"
+"11\n"
"help.text"
-msgid "Menu Commands"
-msgstr "Lệnh trình đơn"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Đặt lại các giá trị hiện rõ trong hộp thoại về các giá trị mặc định của bản cài đặt.</ahelp>"
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"par_id3150838\n"
-"5\n"
+"00000001.xhp\n"
+"par_id3154299\n"
+"12\n"
"help.text"
-msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
-msgstr "Để sử dụng các lệnh trình đơn, trước tiên bạn cần phải lựa chọn cửa sổ chứa tài liệu bạn muốn soạn thảo. Tương tự, bên trong tài liệu, bạn cần phải lựa chọn một đối tượng để sử dụng các lệnh liên quan đến nó. (Bạn sẽ thấy biết những tên trình đơn, hay lệnh trình đơn, sẽ biến đổi phụ thuộc vào kiểu tài liệu hay kiểu đối tượng đang biên soạn. Chẳng hạn, không có trình đơn tên <emph>Ảnh chiếu</emph> trong tài liệu văn bản: chỉ trong tài liệu trình diễn.)"
+msgid "A confirmation does not appear before the defaults are reloaded."
+msgstr "Không hiển thị yêu cầu xác nhận trước khi nạp lại các giá trị mặc định."
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"par_id3156027\n"
-"3\n"
+"00000001.xhp\n"
+"hd_id3147502\n"
+"72\n"
"help.text"
-msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
-msgstr "Các trình đơn tùy thuộc ngữ cảnh. Có nghĩa là những mục trình đơn sẵn sàng liên quan đến công việc đang làm. Nếu con trỏ nằm trong văn bản, thì các lệnh sẵn sàng thích hợp với công việc biên soạn văn bản. Lựa chọn đồ họa trong tài liệu thì bạn thấy các lệnh trình đơn thích hợp với công việc biên soạn ảnh."
+msgid "Back"
+msgstr "Lùi"
-#: 00000010.xhp
+#: 00000001.xhp
msgctxt ""
-"00000010.xhp\n"
+"00000001.xhp\n"
+"par_id3150439\n"
+"73\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
+msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Xem các sự chọn ở bước trước của hộp thoại. Thiết lập hiện thời vẫn không thay đổi.</ahelp> Cái nút này chỉ hoạt động kể từ trang thứ hai (không thể đi lùi từ trang thứ nhất ;) )."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147352\n"
+"52\n"
+"help.text"
+msgid "More"
+msgstr "Thêm tùy chọn"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155314\n"
+"53\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the<emph> More</emph> button to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Nhấn vào nút <emph>Thêm tùy chọn</emph> để mở rộng hộp thoại và hiển thị nhiều tùy chọn hơn. Nhấn chuột lại để phục hồi hộp thoại (hiển thị ít tùy chọn hơn).</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3161659\n"
+"41\n"
+"help.text"
+msgid "<variable id=\"siehe\">See also the following functions: </variable>"
+msgstr "<variable id=\"siehe\">Xem thêm các hàm này: </variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3147418\n"
+"55\n"
+"help.text"
+msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3163714\n"
+"56\n"
+"help.text"
+msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value. </variable>"
+msgstr "<variable id=\"wahr\">Gặp lỗi thì hàm trả lại một giá trị thuộc số hay giá trị luận lý (đúng/sai).</variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3154145\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>). </variable>"
+msgstr "<variable id=\"kontext\">(Lệnh này chỉ sẵn sàng trong <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"trình đơn ngữ cảnh\">trình đơn ngữ cảnh</link>). </variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3152791\n"
+"61\n"
+"help.text"
+msgid "<variable id=\"wiederholen\">By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task. </variable>"
+msgstr "<variable id=\"wiederholen\">Bằng cách nhấn đôi vào công cụ, bạn có thể sử dụng nó để làm nhiều công việc. Nếu bạn gọi công cụ bằng cú nhấn đơn, nó sẽ trở về vùng chọn cuối cùng sau khi làm xong công việc đó.</variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id9345377\n"
+"help.text"
+msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control. </variable>"
+msgstr "<variable id=\"ShiftF1\">Bấm tổ hợp phím <item type=\"keycode\">Shift+F1</item> và chỉ tới bất cứ điều khiển nào để tìm biết thêm về nó.</variable>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
"tit\n"
"help.text"
-msgid "Context Menus"
-msgstr "Trình đơn Ngữ cảnh"
+msgid "Glossary of Internet Terms"
+msgstr "Từ điển các thuật ngữ Internet"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3160447\n"
+"00000002.xhp\n"
+"bm_id3150702\n"
+"help.text"
+msgid "<bookmark_value>Internet glossary</bookmark_value><bookmark_value>common terms;Internet glossary</bookmark_value><bookmark_value>glossaries;Internet terms</bookmark_value><bookmark_value>terminology;Internet glossary</bookmark_value>"
+msgstr "<bookmark_value>bản chú giải Internet</bookmark_value><bookmark_value>thuật ngữ thường dùng;từ điển thuật ngữ Internet</bookmark_value><bookmark_value>tự điển thuật ngữ; thuật ngữ Internet</bookmark_value><bookmark_value>thuật ngữ; từ điển thuật ngữ Internet</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3150702\n"
"1\n"
"help.text"
-msgid "Context Menus"
-msgstr "Trình đơn Ngữ cảnh"
+msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
+msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Từ điển các thuật ngữ Internet\">Từ điển các thuật ngữ Internet</link>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3148765\n"
-"45\n"
+"00000002.xhp\n"
+"par_id3155577\n"
+"2\n"
"help.text"
-msgid "Cut"
-msgstr "Cắt"
+msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
+msgstr "Nếu bạn là người mới đến Internet, bạn sẽ thấy nhiều thuật ngữ không quen thuộc: trình duyệt, liên kết lưu, thư điện tử, trang chủ, máy tìm kiếm v.v. Để giúp bạn quen với Internet, từ điển thuật ngữ này giải thích một số thuật ngữ quan trọng hơn thường dùng trên Internet, Intranet, mail và news. Lưu ý: bạn cũng có thể tra các thuật ngữ và từ cấu tạo Internet ở từ điển cộng đồng tiếng Việt Wiktionary (http://vi.wiktionary.org/wiki/Trang_Ch%C3%ADnh) và một trang từ cấu tạo Internet riêng (http://www.riverland.net.au/~clytie/viet/netacrvn.html)."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3153383\n"
-"46\n"
+"00000002.xhp\n"
+"hd_id3153146\n"
+"36\n"
"help.text"
-msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
-msgstr "Cắt đối tượng đã chọn ra và cất giữ nó trên bảng nháp. Đối tượng thì có thể được phục hồi ừ bảng nháp bằng cách sử dụng lệnh <emph>Dán</emph>."
+msgid "Frames"
+msgstr "Khung"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3156069\n"
+"00000002.xhp\n"
+"par_id3157909\n"
+"37\n"
+"help.text"
+msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
+msgstr "Khung (frames) có ích để thiết kế bố trí của trang <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> (trang Web). $[officename] dùng khung nổi vào đó bạn có thể chèn đối tượng như đồ họa (ảnh), tập tin phim và âm thanh (v.d. âm nhạc). Trình đơn ngữ cảnh của khung thì hiển thị các tùy chọn để phục hồi hay chỉnh sửa nội dung của khung. Cũng có truy cập một số lệnh như vậy bằng cách lựa chọn khung, sau đó chọn lệnh trình đơn <emph>Sửa > Đối tượng</emph>."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3147077\n"
+"43\n"
+"help.text"
+msgid "FTP"
+msgstr "FTP"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3147335\n"
+"44\n"
+"help.text"
+msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
+msgstr "FTP là từ cấu tạo bằng chữ đầu của những từ khác: nọ đại diện thuật ngữ File Transfer Protocol (giao thức truyền tập tin) để truyền tập tin qua Internet. FTP server (trình phục vụ FTP) là chương trình trên máy tính được kết nối đến Internet mà cất giữ các tập tin cần truyền bằng FTP. Dù FTP dùng để truyền và tải xuống tập tin qua Internet, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol: giao thức truyền siêu văn bản) cung cấp thiết lập kết nối và cách truyền dữ liệu giữa trình phục vụ Web và ứng dụng khách (v.d. trình duyệt Web trên máy tính của bạn)."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145609\n"
+"help.text"
+msgid "<bookmark_value>HTML; definition</bookmark_value>"
+msgstr "<bookmark_value>HTML; định nghĩa</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145609\n"
+"56\n"
+"help.text"
+msgid "HTML"
+msgstr "HTML"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3161459\n"
+"57\n"
+"help.text"
+msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> and integrates text, graphics, videos and sound."
+msgstr "HTML (Hypertext Markup Language: ngôn ngữ định dạng siêu văn bản) là một ngôn ngữ mã tài liệu dùng làm định dạng tập tin cho các tài liệu Web (WWW). Nó bắt nguồn từ ngôn ngữ <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> và hợp nhất cả văn bản, đồ họa, ảnh động và âm thanh."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154346\n"
+"58\n"
+"help.text"
+msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
+msgstr "Nếu bạn muốn gõ trực tiếp các lệnh HTML, chẳng hạn khi làm bài học từ cuốn sách HTML sẵn sàng, ghi nhớ rằng trang HTML chỉ là tập tin văn bản thuần (nhập thô). Lưu tài liệu như vậy dưới kiểu tài liệue <emph>Văn bản</emph> và gán cho nó phần mở rộng tập tin « .html ». Kiểm tra xem tên tập tin không chứa ký tự đặc biệt (chữ có dấu phụ, đ, Đ, v.v.). Muốn mở lại tập tin này bằng $[officename] để chỉnh sửa mã HTML thì bạn cần phải nạp nó với kiểu tập tin <emph>Văn bản</emph> (đúng như lưu nó), không phải với kiểu <emph>trang Web</emph> mà hiển thị trang như trong trình duyệt."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153960\n"
+"244\n"
+"help.text"
+msgid "There are several references on the Internet providing an introduction to the HTML language."
+msgstr "Có vài tham chiếu trên Internet mà cung cấp (miễn phí) lời giới thiệu về ngôn ngữ HTML."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3147423\n"
+"59\n"
+"help.text"
+msgid "HTTP"
+msgstr "HTTP"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153379\n"
+"60\n"
+"help.text"
+msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)."
+msgstr "Hypertext Transfer Protocol (giao thức truyền siêu văn bản) ghi lưu tiến trình truyền tài liệu Web (WWW) giữa các máy phục vụ WWW và trình duyệt (ứng dụng khách)."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3149290\n"
+"help.text"
+msgid "<bookmark_value>hyperlinks; definition</bookmark_value>"
+msgstr "<bookmark_value>siêu liên kết; định nghĩa</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3149290\n"
+"61\n"
+"help.text"
+msgid "Hyperlink"
+msgstr "Siêu liên kết"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3145420\n"
+"62\n"
+"help.text"
+msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents."
+msgstr "Siêu liên kết (hyperlink) là tham chiếu chéo được tô sáng trong văn bản theo màu sắc khác nhau và được cú nhấn chuột kích hoạt. Dùng siêu liên kết, người đọc có thể nhảy tới thông tin nào đó trong tài liệu, cũng như tới thông tin liên quan trong tài liệu khác."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156281\n"
+"63\n"
+"help.text"
+msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)."
+msgstr "Trong $[officename], bạn có thể gán diêu liên kết cho văn bản, cũng như cho đồ họa và khung văn bản (xem biểu tượng Hộp thoại Siêu liên kết trên thanh Chuẩn)."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3152805\n"
+"help.text"
+msgid "<bookmark_value>ImageMap; definition</bookmark_value>"
+msgstr "<bookmark_value>Sơ đồ ảnh; định nghĩa</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3152805\n"
+"64\n"
+"help.text"
+msgid "ImageMap"
+msgstr "Sơ đồ ảnh"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154685\n"
+"65\n"
+"help.text"
+msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">ImageMap Editor</link>."
+msgstr "Sơ đồ ảnh (ImageMap) là một đồ họa hay khung có theo tham chiếu. Bạn có thể nhấn vào vùng đã xác định của đồ họa hay khung văn bản để đi tới một địa chỉ (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) đích, mà được liên kết tới vùng đó. Các vùng tham chiếu, cùng với các địa chỉ URL đã liên kết và văn bản tương ứng được hiển thị khi để con trỏ chuột ở trên vùng đó, được xác định trong <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">Bộ Sửa Sơ Đồ Ảnh</link>."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153178\n"
+"66\n"
+"help.text"
+msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap."
+msgstr "Có hai khác Sơ đồ ảnh khác nhau. Sơ đồ ảnh bên khách được tính trên máy khách (v.d. máy của người dùng) mà nạp đồ họa từ Internet, còn Sơ đồ bên máy phục vụ được tính trên máy phục vụ mà cung cấp trang <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> (trang Web) trên Internet. Khi máy phục vụ tính dữ liệu, cú nhấn vào Sơ đồ ảnh sẽ gửi cho máy phục vụ toạ đồ tương đối của con trỏ bên trong ảnh, sau đó một chương trình chuyên dụng trên máy phục vụ sẽ đáp ứng. Khi máy khách tính dữ liệu, cú nhấn vào một điểm nóng đã xác định trên Sơ đồ ảnh sẽ kích hoạt địa chỉ URL, đúng như nó là một liên kết văn bản bình thường. Địa chỉ URL cũng xuất hiện bên dưới con trỏ chuột khi người dùng để nó ở trên Sơ đồ ảnh."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150740\n"
+"67\n"
+"help.text"
+msgid "As ImageMaps can be used in different ways, they can be stored in different formats."
+msgstr "Vì Sơ đồ ảnh có thể được sử dụng bằng nhiều cách khác nhau, nó cũng có thể được cất giữ theo định dạng khác nhau."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146874\n"
"68\n"
"help.text"
-msgid "Paste"
-msgstr "Dán"
+msgid "ImageMap Formats"
+msgstr "Định dạng Sơ đồ ảnh"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154896\n"
+"00000002.xhp\n"
+"par_id3145153\n"
"69\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
-msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Chèn vào tài liệu đối tượng bạn đã di chuyển (cắt hay sao chép) vào bảng nháp.</ahelp> Lệnh này chỉ sẵn sàng nếu nội dung của bảng nháp sẽ chèn được ở vị trí con trỏ.."
+msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer."
+msgstr "Sơ đồ ảnh phân biệt cơ bản ra những sơ đồ được phân tích trên máy phục vụ (v.d. bởi nhà cung cấp dịch vụ Internet của bạn) và những sơ đồ liên kết phân tích bởi trình duyệt Web trên máy tính của người dùng."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3149948\n"
+"00000002.xhp\n"
+"bm_id3152881\n"
+"help.text"
+msgid "<bookmark_value>Server Side ImageMap</bookmark_value>"
+msgstr "<bookmark_value>Sơ đồ ảnh bên máy phục vụ</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3152881\n"
+"70\n"
+"help.text"
+msgid "Server Side ImageMaps"
+msgstr "Sơ đồ ảnh bên máy phục vụ"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153057\n"
+"71\n"
+"help.text"
+msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:"
+msgstr "Sơ đồ ảnh bên máy phục vụ sẽ xuất hiện cho người dùng như một hình hay khung trên trang. Nhấn chuột vào Sơ đồ ảnh, để gửi cho máy phục vụ toạ đồ của vị trí tương đối. Với sự giúp của một chương trình thêm, trình phục vụ thì quyết định bước kế tiếp cần làm. Có vài phương pháp không tương thích với nhau để xác định tiến trình này, hai cái thường dùng nhất là:"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3147502\n"
+"72\n"
+"help.text"
+msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
+msgstr "W3C (CERN) HTTP Server (Kiểu định dạng: MAP - CERN)"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154011\n"
+"73\n"
+"help.text"
+msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
+msgstr "NCSA HTTP Server (Kiểu định dạng: MAP - NCSA)"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3149483\n"
+"74\n"
+"help.text"
+msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
+msgstr "$[officename] tạo Sơ đồ ảnh cho cả hai phương pháp này. Hãy chọn định dạng trong danh sách <emph>Kiểu tập tin</emph> mà xuất hiện trong hộp thoại <emph>Lưu dạng</emph> trong <emph>Bộ Sửa Sơ đồ Ảnh</emph>. Sau đó thì tạo các tập tin sơ đồ riêng mà bạn cần phải tải lên máy phục vụ. Bạn cũng cần phải hỏi nhà cung cấp dịch vụ Internet (ISP) hay máy phục vụ hỗ trợ kiểu Sơ đồ ảnh nào và truy cập chương trình ước lượng như thế nào."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3152418\n"
+"help.text"
+msgid "<bookmark_value>Client Side ImageMap</bookmark_value>"
+msgstr "<bookmark_value>Sơ đồ ảnh bên khách</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3152418\n"
+"75\n"
+"help.text"
+msgid "Client Side ImageMap"
+msgstr "Sơ đồ ảnh bên khách"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3151290\n"
"76\n"
"help.text"
-msgid "Insert"
-msgstr "Chèn"
+msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
+msgstr "Trong hình hay khung, vùng nhấn chuột được được ngụ ý bởi địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> mà xuất hiện khi người dùng để con trỏ ở trên. Sơ đồ ảnh được cất giữ trên một lớp bên dưới hình, và cứa thông tin về các vùng đã tham chiếu. Nhược điểm duy nhất về Sơ đồ bên khách là trình duyệt Web cũ không thể đọc được: tuy nhiên, nhược điểm này sẽ tự giải quyết sau một khoảng thời gian."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3147588\n"
+"00000002.xhp\n"
+"par_id3149664\n"
"77\n"
"help.text"
-msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
-msgstr "Mở trình đơn phụ trong <emph>Bộ sưu tập</emph>, có thể chọn một trong hai lệnh <emph>Chép</emph> và <emph>Liên kết</emph> để sao chép đối tượng đã chọn từ Bộ sưu tập vào tài liệu hiện tại, hoặc tạo một liên kết đến đối tượng này."
+msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
+msgstr "Khi lưu Sơ đồ ảnh, hã chọn kiểu tập tin <emph>SIP - Sơ đồ ảnh StarView</emph>. Hành động này sẽ lưu Sơ đồ ảnh một cách trực tiếp theo một định dạng có thể được áp dụng cho mọi hình hay khung trong tài liệu của bạn. Tuy nhiên, nêu bạn chỉ muốn sử dụng Sơ đồ ảnh đó trên hình hay khung hiện tại, bạn không cần lưu nó theo định dạng riêng nào. Sau khi xác định các vùng hoạt động (nhấn chuột được), đơn giản hãy nhấn vào cái nút <emph>Apply</emph>. Không cần làm gì nữa. Sơ đồ ảnh bên khách được lưu theo định dạng <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> thì được chèn trực tiếp vào trang bằng mã HTML."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3146130\n"
-"78\n"
+"00000002.xhp\n"
+"bm_id3159125\n"
"help.text"
-msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
-msgstr "Nếu bạn đã chọn một đối tượng trong tài liệu, thì việc chèn hay dán mới sẽ thay thế đối tượng đã chọn."
+msgid "<bookmark_value>Java; definition</bookmark_value>"
+msgstr "<bookmark_value>Java; định nghĩa</bookmark_value>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3145829\n"
-"79\n"
+"00000002.xhp\n"
+"hd_id3159125\n"
+"92\n"
"help.text"
-msgid "Background"
-msgstr "Nền"
+msgid "Java"
+msgstr "Java"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149180\n"
-"80\n"
+"00000002.xhp\n"
+"par_id3153188\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
-msgstr "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Chèn ảnh đã chọn làm đồ họa nền.</ahelp> Hãy sử dụng lệnh trình đơn phụ <emph>Trang</emph> hay <emph>Đoạn văn</emph> để xác định đồ họa nên chiếm toàn trang hoặc chỉ chiếm đoạn văn hiện tại."
+msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
+msgstr "Chương trình lập trình Java là một ngôn ngữ lập trình không phụ thuộc vào nền tảng được phát triển bởi công ty Sun Microsystems Inc. (http://www.sun.com) mà rất thích hợp với sử dụng trên Internet. Các trang Web và ứng dụng được viết bằng tập tin hạng Java có thể được dùng trên tất cả các hệ điều hành hiện tại. Chương trình dùng ngôn ngữ lập trình Java thì thường được phát triển trong một môi trường phát triển Java, sau đó được biên dịch thành một « mã byte »."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3153049\n"
-"87\n"
+"00000002.xhp\n"
+"bm_id3159153\n"
"help.text"
-msgid "Copy"
-msgstr "Chép"
+msgid "<bookmark_value>plug-ins; definition</bookmark_value>"
+msgstr "<bookmark_value>phần bổ sung; định nghĩa</bookmark_value>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3150774\n"
-"88\n"
+"00000002.xhp\n"
+"hd_id3159153\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Sao chép đối tượng đã chọn vào bảng nháp.</ahelp>"
+msgid "Plug-In"
+msgstr "Phần bổ sung"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3148620\n"
-"91\n"
+"00000002.xhp\n"
+"par_id3154127\n"
+"109\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "Extensions providing additional functionality in Web browsers are referred to as Plug-Ins."
+msgstr "Phần mở rộng mà cung cấp thêm chức năng trong trình duyệt Web thì được gọi như là Phần bổ sung (Plugin hay Plug-in)."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154317\n"
-"92\n"
+"00000002.xhp\n"
+"par_id3147484\n"
+"108\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Xoá vùng chọn hiện thời. Chọn nhiều đối tượng cùng lúc thì tất cả bị xoá. Trong phần lớn trường hợp, một <link href=\"text/shared/01/03150100.xhp\" name=\"câu hỏi xác nhận\">câu hỏi xác nhận</link> sẽ xuất hiện trước khi xoá đối tượng (để bảo vệ bạn chống trường hợp xoá gì tình cờ).</ahelp>"
+msgid "A Plug-In is a term used in various contexts:"
+msgstr "Phần bổ sung là một thuật ngữ được dùng trong vài ngữ cảnh khác nhau :"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3155941\n"
-"190\n"
+"00000002.xhp\n"
+"hd_id3168608\n"
+"172\n"
"help.text"
-msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
-msgstr "Hoặc đối tượng bị xoá khỏi vật chứa dữ liệu, hoặc chỉ cái hiển thị đối tượng bị gỡ bỏ, phụ thuộc vào ngữ cảnh."
+msgid "Plug-Ins in $[officename]"
+msgstr "Phần bổ sung trong $[officename]"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3150506\n"
-"192\n"
+"00000002.xhp\n"
+"par_id3149910\n"
+"111\n"
"help.text"
-msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
-msgstr "Chọn lệnh <emph>Xoá</emph> trong <emph>Bộ sưu tập</emph> thì mục đó sẽ bị xoá khỏi Bộ sưu tập, còn bản thân tập tin không bị thay đổi."
+msgid "You will notice in $[officename] that the <emph>Formatting</emph> Bar changes after certain operations. For example, if you insert a formula into your text document, you see icons for editing the formula, in fact the same icons you see in formula documents. In this sense, we refer to the formula as a plug-in within the text document."
+msgstr "Trong $[officename], bạn sẽ thấy rằng thanh <emph>Định dạng</emph> thay đổi sau một số thao tác nào đó. Chẳng hạn, nếu bạn chèn vào tài liệu văn bản một công thức, bạn thấy các biểu tượng để chỉnh sửa công thức, tức là cùng những biểu tượng bạn thấy trong tài liệu kiểu công thức. Trong trường hợp này, công thức là một phần bổ sung bên trong tài liệu văn bản."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3150443\n"
-"136\n"
+"00000002.xhp\n"
+"hd_id3148387\n"
+"177\n"
"help.text"
-msgid "Open"
-msgstr "Mở"
+msgid "Using Plug-Ins to extend your programs"
+msgstr "Sử dụng phần bổ sung để mở rộng chương trình"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149149\n"
-"137\n"
+"00000002.xhp\n"
+"par_id3156737\n"
+"114\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Hãy dùng lệnh <emph>Mở</emph> để mở đối tượng đã chọn trong tác vụ mới.</ahelp>"
+msgid "Plug-ins, generally speaking, are software additions to particular applications which provide enhanced functionality. Often import and export filters for various file formats are stored as plug-ins in a plug-in directory."
+msgstr "Nói chung, phần bổ sung là phần mềm được thêm vào ứng dụng để cung cấp chức năng tăng cường. Chẳng hạn, bộ lọc nhập/xuất khẩu tập tin theo các định dạng khác nhau sẽ được cất giữ như phần bổ sung trong một thư mục phần bổ sung riêng."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3149732\n"
-"165\n"
+"00000002.xhp\n"
+"par_id3149958\n"
+"115\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "Netscape web browser extensions produced by Netscape Communication Corporation are also called plug-ins. These are external programs mainly taken from the multimedia field and which communicate with the browser through standardized interfaces. These plug-ins can be linked to $[officename] documents."
+msgstr "Phần mở rộng (extension) cho trình duyệt Web Netscape được công ty Netscape Communication Corporation tạo thì cũng được gọi là phần bổ sung. Nó là chương trình bên ngoài được lấy chính từ vùng âm nhạc/ảnh mà liên lạc với trình duyệt giao diện tiêu chuẩn. Phần bổ sung như vậy có thể được liên kết đến tài liệu $[officename]."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149797\n"
-"166\n"
+"00000002.xhp\n"
+"par_id3149420\n"
+"179\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
-msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Thay đổi tên của đối tượng đã chọn.</ahelp> Chọn lệnh <emph>Thay tên</emph> thì tên cũ được tô sáng và người dùng có thể gõ tên mới một cách trực tiếp (tên cũ sẽ biến mất một khi bạn bắt đầu gõ phím). Dùng các phím mũi tên để đặt con trỏ ở đầu hay cuối của tên, để xoá hay thêm vào phần của tên cũ, hoặc để định vị lại con trỏ (cũng có thể di chuyển con trỏ bằng con chuột: nhấn vào vị trí khác)."
+msgid "Any Netscape plug-ins (32 bit) installed on your system are automatically recognized by $[officename]."
+msgstr "$[officename] tự động nhận ra bất cứ phần mở rộng Netscape nào (32-bit) được cài đặt vào hệ thống của bạn."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3155434\n"
-"317\n"
+"00000002.xhp\n"
+"hd_id3145647\n"
+"127\n"
"help.text"
-msgid "Update"
-msgstr "Cập nhật"
+msgid "Proxy"
+msgstr "Ủy nhiệm"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154898\n"
-"318\n"
+"00000002.xhp\n"
+"par_id3148455\n"
+"128\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Làm tươi ô xem trong cửa sổ hay đối tượng đã chọn. Bất cứ thông tin mới nào sẽ xuất hiện.</ahelp>"
+msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy."
+msgstr "Ủy nhiệm (proxy), máy phục vụ ủy nhiệm (proxy server) là một máy tính trên mạng nội bộ mà hoạt động như một kiểu bảng nháp hay bộ nhớ tạm thời khi truyền dữ liệu. Khi nào bạn truy cập Internet từ máy tính chạy trên một mạng dùng chung (v.d. ở chỗ làm hay trường học) và yêu cầu một trang Web đã được đọc bởi người khác dùng máy tính cùng trên mạng đó, trình ủy nhiệm có thể hiển thị trang một cách rất nhanh hơn, miễn là nó vẫn được cất giữ trong bộ nhớ. Chỉ cần kiểm tra ủy nhiệm có phiên bản mới nhất của trang đó. Có thì không cần tải trang lần nữa xuống Internet (công việc rất chậm hơn), vì nó nạp được một cách trực tiếp từ máy ủy nhiệm trên mạng nội bộ."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3147573\n"
-"172\n"
+"00000002.xhp\n"
+"bm_id3154729\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "<bookmark_value>SGML; definition</bookmark_value>"
+msgstr "<bookmark_value>SGML; định nghĩa</bookmark_value>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3155583\n"
-"173\n"
+"00000002.xhp\n"
+"hd_id3154729\n"
+"229\n"
"help.text"
-msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
-msgstr "Phần tử đã chọn sẽ được hiển thị trong <emph>Bộ sưu tập</emph> ở kích cỡ tối đa. Nhấn đôi vào ô xem thử để chuyển đổi về ô xem Bộ sưu tập bình thường."
+msgid "SGML"
+msgstr "SGML"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3157809\n"
-"319\n"
+"00000002.xhp\n"
+"par_id3147330\n"
+"230\n"
"help.text"
-msgid "Create Link"
-msgstr "Tạo liên kết"
+msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
+msgstr "SGML diễn tả Standard Generalized Markup Language (ngôn ngữ định dạng suy rộng tiêu chuẩn). SGML dựa vào ý kiến rằng tài liệu có các phần tử kiểu cấu trúc và kiểu ngữ nghĩa học khác mà có thể được diễn tả, không cần tham chiếu đến cách hiển thị phần tử như vậy. Cách hiển thị thật của tài liệu như vậy có thể biến đổi, phụ thuộc vào phương tiện xuất và tùy thích kiểu dáng. Trong văn bản kết cấu, SGML không chỉ định nghĩa cấu trúc (trong DTD: Document Type Definition: lời định nghĩa kiểu tài liệu) cũng đảm bảo dùng thống nhất các cấu trúc đó."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3153716\n"
-"320\n"
+"00000002.xhp\n"
+"par_id3148747\n"
+"231\n"
"help.text"
-msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
-msgstr "Lệnh này sẵn sàng khi đối tượng được chọn. Một liên kết tên « Liên kết đến xxx » (<emph>xxx</emph> đại diện tên của đối tượng) sẽ được tạo trực tiếp trong cùng một thư mục với đối tượng đã chọn."
+msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
+msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> là một trường hợp SGML đặc biệt. Có nghĩa là phần lớn trình duyệt Web hỗ trợ chỉ phạm vi tiêu chuẩn SGML bị hạn chế, nhưng gần tất cả các hệ thống có khả năng SGML cũng có khả năng xuất các trang HTML đẹp."
-#: 00000200.xhp
-#, fuzzy
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
+"00000002.xhp\n"
+"bm_id3153950\n"
+"help.text"
+msgid "<bookmark_value>search engines; definition</bookmark_value>"
+msgstr "<bookmark_value>cơ chế tìm kiếm; định nghĩa</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153950\n"
+"138\n"
+"help.text"
+msgid "Search Engines"
+msgstr "Cơ chế tìm kiếm"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3157965\n"
+"139\n"
+"help.text"
+msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words."
+msgstr "Cơ chế tìm kiếm (search engine) là một dịch vụ trên Internet mà dựa vào chương trình phần mềm được dùng để thám hiểm rất nhiều thông tin dùng từ khoá. Bạn có thể sử dụng cơ chế tìm kiếm (v.d. Google) để tìm mục trên Internet, bằng cách gõ vào trường nhập một chuỗi tóm tắt (v.d. gõ « OpenOffice.org tài liệu hướng dẫn » để tìm thêm thông tin tiếng Việt về cách sử dụng OpenOffice.org)."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3150751\n"
+"help.text"
+msgid "<bookmark_value>tags; definition</bookmark_value>"
+msgstr "<bookmark_value>thẻ; định nghĩa</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3150751\n"
+"141\n"
+"help.text"
+msgid "Tags"
+msgstr "Thẻ"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156360\n"
+"142\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
+msgstr "Trang <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> chứa một số câu lệnh nào đó kiểu cấu trúc và định dạng được gọi là thẻ (tag, tags). Thẻ là từ mã nằm giữa dấu ngoặc nhọn trong ngôn ngữ diễn tả tài liệu HTML. Rất nhiều thẻ cũng chứa tham chiếu kiểu văn bản hay siêu liên kết giữa hai dấu ngoặc nhọn.Chẳng hạn, tiêu đề <h1>được đánh dấu bằng thẻ « h » nằm trước và sau</h1>, với số ngụ ý cấp kích cỡ (h1, h2, h3 v.v.). Một số thẻ chỉ xuất hiện một mình, v.d. <br> để ngắt dòng hay <img ...> để liên kết ảnh."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3153766\n"
+"help.text"
+msgid "<bookmark_value>URL; definition</bookmark_value>"
+msgstr "<bookmark_value>URL; định nghĩa</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153766\n"
+"145\n"
+"help.text"
+msgid "URL"
+msgstr "URL"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3152931\n"
+"146\n"
+"help.text"
+msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
+msgstr "URL (Uniform Resource Locator: bộ định vị tài nguyên thống nhất) thì hiển thị địa chỉ của một tài liệu hay máy phục vụ nào đó trên Internet. Cấu trúc chung của địa chỉ URL biến đổi tùy theo kiểu, thường có dạng « dịch vụ://tên_máy:cổng/đường_dẫn/trang#dấu », dù không phải tất cả các thành phần đều phải được yêu cầu trong mọi trường hợp. URL có thể là, chẳng hạn, một địa chỉ FTP (ftp://), một địa chỉ WWW (HTTP, http://), một địa chỉ của tập tin (file://) hay một địa chỉ thư điện tử (mailto://)."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"tit\n"
"help.text"
-msgid "Graphics Export Options"
-msgstr "Tùy chọn xuất EPS"
+msgid "Conversion of measurement units"
+msgstr "Chuyển đổi đơn vị đo"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3150127\n"
+"00000003.xhp\n"
+"bm_id3147543\n"
"help.text"
-msgid "Graphics Export Options"
-msgstr "Tùy chọn xuất EPS"
+msgid "<bookmark_value>measurement units; converting</bookmark_value><bookmark_value>units; converting</bookmark_value><bookmark_value>converting;metrics</bookmark_value><bookmark_value>metrics;converting</bookmark_value>"
+msgstr "<bookmark_value>đơn vị đo; chuyển đổi</bookmark_value><bookmark_value>đơn vị; chuyển đổi</bookmark_value><bookmark_value>chuyển đổi;hệ đo</bookmark_value><bookmark_value>hệ đo;chuyển đổi</bookmark_value>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3160463\n"
+"00000003.xhp\n"
+"hd_id3147543\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
-msgstr "<ahelp hid=\"\" visibility=\"visible\">Xác định hình thức của danh thiếp của bạn.</ahelp>"
+msgid "Conversion of measurement units"
+msgstr "Chuyển đổi đơn vị đo"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id1\n"
+"00000003.xhp\n"
+"par_idN1069F\n"
"help.text"
-msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options."
-msgstr ""
+msgid "In some dialogs, you can enter measurement values into input boxes. If you just enter a numerical value, the default measurement unit is used."
+msgstr "Trong một số hộp thoại nào đó, bạn có thể gõ vào hộp nhập các giá trị đo. Chỉ gõ giá trị thuộc số thì dùng đơn vị đo mặc định."
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id2\n"
+"00000003.xhp\n"
+"par_idN106A2\n"
"help.text"
-msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM."
+msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph>. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate <emph>General</emph> page as for Writer."
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3\n"
+"00000003.xhp\n"
+"par_idN106AD\n"
"help.text"
-msgid "The other file types show options dialogs where you can set the width and height of the exported image."
-msgstr ""
+msgid "In input boxes for length units you can also add the unit abbreviation according to the following list:"
+msgstr "Trong hộp nhập cho đơn vị độ dài, bạn cũng có thể thêm sự viết tắt đơn vị tùy theo danh sách này:"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id4\n"
+"00000003.xhp\n"
+"par_idN106BA\n"
"help.text"
-msgid "Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text."
-msgstr ""
+msgid "Unit abbreviation"
+msgstr "Viết tắt đơn vị"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id388\n"
+"00000003.xhp\n"
+"par_idN106C0\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
+msgid "Explanation"
+msgstr "Giải thích"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3151330\n"
+"00000003.xhp\n"
+"par_idN106C7\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "mm"
+msgstr "mm"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3154561\n"
+"00000003.xhp\n"
+"par_idN106CD\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
+msgid "Millimeter"
+msgstr "Mili-mét"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3156027\n"
+"00000003.xhp\n"
+"par_idN106D4\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "cm"
+msgstr "cm"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147226\n"
+"00000003.xhp\n"
+"par_idN106DA\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
+msgid "Centimeter"
+msgstr "Xenti-mét"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3150944\n"
+"00000003.xhp\n"
+"par_idN106E1\n"
"help.text"
-msgid "Resolution"
-msgstr "Độ phân giải"
+msgid "in or \""
+msgstr "in hay \""
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3150129\n"
+"00000003.xhp\n"
+"par_idN106E7\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
-msgstr "<ahelp hid=\".\">Gồm lời kết. Chọn lời kết trong hộp liệt kê.</ahelp>"
+msgid "Inch"
+msgstr "Insơ"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3143534\n"
+"00000003.xhp\n"
+"par_idN106EE\n"
"help.text"
-msgid "More options"
-msgstr "Chọn nhiều hơn"
+msgid "pi"
+msgstr "pi"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id10\n"
+"00000003.xhp\n"
+"par_idN106F4\n"
"help.text"
-msgid "For JPEG files you can set the color depth and the quality."
-msgstr ""
+msgid "Pica"
+msgstr "Pi-ca"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id435923952\n"
+"00000003.xhp\n"
+"par_idN106FB\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự sắp xếp.</ahelp>"
+msgid "pt"
+msgstr "pt"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id355152952\n"
+"00000003.xhp\n"
+"par_idN10701\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the compression for the export. A high compression means a smaller, but slower to load image.</ahelp>"
-msgstr ""
+msgid "Point"
+msgstr "Điểm"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id355152953\n"
+"00000003.xhp\n"
+"par_idN10704\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>"
-msgstr ""
+msgid "The following formulas convert the units:"
+msgstr "Theo đây có những công thức chuyển đổi đơn vị:"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id11\n"
+"00000003.xhp\n"
+"par_idN1070A\n"
"help.text"
-msgid "For BMP files you can set the compression and the RLE encoding."
-msgstr ""
+msgid "1 cm = 10 mm"
+msgstr "1 cm = 10 mm"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id312346798\n"
+"00000003.xhp\n"
+"par_idN1070E\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào biểu tượng này để duyệt qua các đồ hoạ.</ahelp>"
+msgid "1 inch = 2.54 cm"
+msgstr "1 insơ = 2.54 cm"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id12\n"
+"00000003.xhp\n"
+"par_idN10712\n"
"help.text"
-msgid "For PBM, PGM, and PPM files you can set the encoding."
-msgstr ""
+msgid "1 inch = 6 Pica = 72 Point"
+msgstr "1 insơ = 6 Pi-ca = 72 điểm"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id344441\n"
+"00000003.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in binary format. The resulting file is smaller than a text file.</ahelp>"
-msgstr "<ahelp hid=\".\">Xuất khẩu tập tin theo định dạng nhị phân. Tập tin kết quả là nhỏ hơn tập tin văn bản (ASCII).</ahelp>"
+msgid "For example, in a text document, open <emph>Format - Paragraph - Indents & Spacing</emph>. To indent the current paragraph by one inch, enter <item type=\"literal\">1 in</item> or <item type=\"literal\">1\"</item> into the \"Before text\" box. To indent the paragraph by 1 cm, enter <item type=\"literal\">1 cm</item> into the input box."
+msgstr "Chẳng hạn, trong tài liệu văn bản, mở mục trình đơn <emph>Định dạng > Đoạn văn > Thụt lề và Dán cách</emph>. Để thụt lề của đoạn văn hiện tại theo một xen-ti-mét, gõ <item type=\"literal\">1 cm</item> vào hộp « Phía trước văn bản ». Để thụt lề đoạn văn theo một insơ, gõ <item type=\"literal\">1 in</item> hay <item type=\"literal\">1\"</item>."
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3555783\n"
+"00000003.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in ASCII text format. The resulting file is larger than a binary file.</ahelp>"
-msgstr "<ahelp hid=\".\">Xuất khẩu tập tin theo định dạng văn bản ASCII. Tập tin kiểu này là lớn hơn tập tin nhị phân.</ahelp>"
+msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the <item type=\"keycode\">Page Up</item> or <item type=\"keycode\">Page Down</item> key."
+msgstr "Để nhập giá trị tối đa và giá trị tối thiểu, nhấn vào giá trị hiện thời rồi bấm phím <item type=\"keycode\">Page Up</item> (lên một trang) hay <item type=\"keycode\">Page Down</item> (xuống một trang)."
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id13\n"
+"00000004.xhp\n"
+"tit\n"
"help.text"
-msgid "For PNG files you can set the compression and the interlaced mode."
-msgstr ""
+msgid "To access this command..."
+msgstr "Để truy cập lệnh này..."
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id35674840\n"
+"00000004.xhp\n"
+"hd_id3160447\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ nếu nền của đối tượng đã chọn là trong suốt hoặc mờ đục.</ahelp>"
+msgid "<variable id=\"wie\">To access this command...</variable>"
+msgstr "<variable id=\"wie\">Để truy cập lệnh này... </variable>"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id14\n"
+"00000004.xhp\n"
+"par_id3147212\n"
+"47\n"
"help.text"
-msgid "For GIF files you can set the transparency and the interlaced mode."
+msgid "<variable id=\"related\"><emph>Related Topics</emph></variable>"
+msgstr "<variable id=\"related\"><emph>Chủ đề Liên quan</emph></variable>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id56935339\n"
+"help.text"
+msgid "Enable or disable the Help Agent on <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - General</emph>."
msgstr ""
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id31456456938\n"
+"00000004.xhp\n"
+"par_id3154689\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>"
-msgstr "<ahelp hid=\"VCL:CHECKBOX:DLG_EXPORT_GIF:CBX_TRANSLUCENT\">Ghi rõ có nên lưu nền của ảnh như trong suốt hay không. Chỉ đối tượng sẽ hiện rõ trong ảnh GIF. Hãy dùng <emph>Bút chọn màu</emph> để đặt màu trong suốt trong ảnh.</ahelp>"
+msgid "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Biểu tượng</alt></image>"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id15\n"
+"00000004.xhp\n"
+"par_id3146067\n"
+"46\n"
"help.text"
-msgid "For EPS files you can set the preview, the color format, the compression, and the version."
-msgstr ""
+msgid "Font Color"
+msgstr "Màu phông"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147779948\n"
+"00000004.xhp\n"
+"par_id3157898\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Bạn phải in tập tin EPS trên máy in kiểu PostScript. Máy in khác sẽ chỉ in ô xem thử nhúng.</caseinline></switchinline>"
+msgid "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Biểu tượng</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993155271\n"
+"00000004.xhp\n"
+"par_id3149893\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_TIFF\">Ghi rõ có nên xuất khẩu ảnh xem thử theo định dạng TIFF cùng với tập tin PostScript thật, hay không.</ahelp>"
+msgid "Font Color"
+msgstr "Màu phông"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993144740\n"
-"30\n"
+"00000004.xhp\n"
+"par_id3149750\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_EPSI\">Ghi rõ đồ họa xem thử đơn sắc theo định dạng EPSI có nên được xuất khẩu cùng với tập tin PostScript, hay không.</ahelp> Định dạng này chỉ chứa các ký tự in được của mã ASCII 7-bit."
+msgid "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Biểu tượng</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993150935\n"
+"00000004.xhp\n"
+"par_id3150693\n"
+"8\n"
+"help.text"
+msgid "Line spacing: 1"
+msgstr "Giãn cách dòng: 1"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145382\n"
+"help.text"
+msgid "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154173\n"
+"9\n"
+"help.text"
+msgid "Line spacing: 1.5"
+msgstr "Giãn cách dòng: 1,5"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150131\n"
+"help.text"
+msgid "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3152824\n"
+"10\n"
+"help.text"
+msgid "Line spacing: 2"
+msgstr "Giãn cách dòng: 2"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149820\n"
+"help.text"
+msgid "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145121\n"
+"11\n"
+"help.text"
+msgid "Superscript"
+msgstr "Chỉ số Trên"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147077\n"
+"help.text"
+msgid "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151385\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL1\">Chức năng nén không sẵn sàng ở mức này. Hãy bật tùy chọn <emph>Mức 1</emph> nếu máy in PostScript không cung cấp khả năng của Mức 2.</ahelp>"
+msgid "Subscript"
+msgstr "Chỉ số Dưới"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993159201\n"
-"14\n"
+"00000004.xhp\n"
+"par_id3148550\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL2\">Hãy bật tùy chọn <emph>Mức 2</emph> nếu thiết bị xuất hỗ trợ ảnh bitmap màu, đồ họa bảng chọn và đồ họa đã nén.</ahelp>"
+msgid "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Biểu tượng</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id319947250\n"
+"00000004.xhp\n"
+"par_id3152772\n"
+"15\n"
+"help.text"
+msgid "Line Style"
+msgstr "Kiểu đường"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149290\n"
+"16\n"
+"help.text"
+msgid "Line Color"
+msgstr "Màu đường"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3163044\n"
+"17\n"
+"help.text"
+msgid "Line Width"
+msgstr "Độ rộng đường"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154154\n"
+"help.text"
+msgid "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150650\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Định dạng sàn biểu đồ.</ahelp>"
+msgid "Area Style / Filling"
+msgstr "Kiểu dáng/Tô đầy Vùng"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993147088\n"
+"00000004.xhp\n"
+"par_id3153367\n"
+"help.text"
+msgid "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3148557\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Định dạng đường giá trị trung bình.</ahelp>"
+msgid "Align Top"
+msgstr "Sắp hàng bên trên"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id399153683\n"
-"24\n"
+"00000004.xhp\n"
+"par_id3146923\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị chú giải bên dưới đồ thị.</ahelp>"
+msgid "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Biểu tượng</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id319952780\n"
-"26\n"
+"00000004.xhp\n"
+"par_id3149287\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
+msgid "Align Bottom"
+msgstr "Sắp hàng bên dưới"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147250\n"
+"00000004.xhp\n"
+"par_id3153097\n"
"help.text"
-msgid "See <link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Import and Export Filter Information</link> for more information about filters."
-msgstr "Xem <link href=\"text/shared/00/00000020.xhp\" name=\"Thông tin về bộ lọc nhập/xuất khẩu\">Thông tin về bộ lọc nhập/xuất khẩu</link> để tìm thêm thông tin về bộ lọc."
+msgid "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Biểu tượng</alt></image>"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"tit\n"
+"00000004.xhp\n"
+"par_id3150873\n"
+"22\n"
"help.text"
-msgid "Help Menu"
-msgstr "Trình đơn Trợ giúp"
+msgid "Align Center Vertically"
+msgstr "Sắp hàng ở giữa theo chiều dọc"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"hd_id3154689\n"
-"1\n"
+"00000004.xhp\n"
+"par_id3147436\n"
"help.text"
-msgid "Help Menu"
-msgstr "Trình đơn Trợ giúp"
+msgid "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Biểu tượng</alt></image>"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3150960\n"
-"2\n"
+"00000004.xhp\n"
+"par_id3147418\n"
+"27\n"
"help.text"
-msgid "<variable id=\"content\">Choose <emph>Help - Contents</emph></variable>"
-msgstr "<variable id=\"content\">Chọn lệnh <emph>Trợ giúp > Mục lục</emph></variable>"
+msgid "Apply"
+msgstr "Áp dụng"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3147240\n"
-"14\n"
+"00000004.xhp\n"
+"par_id3146147\n"
"help.text"
-msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
-msgstr "<variable id=\"infoanwendung\">Chọn lệnh <emph>Trợ giúp > Giới thiệu > %PRODUCTNAME</emph></variable>"
+msgid "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Biểu tượng</alt></image>"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3151387\n"
-"15\n"
+"00000004.xhp\n"
+"par_id3148617\n"
+"28\n"
"help.text"
-msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
-msgstr "Tự động sau khi khởi chạy <item type=\"productname\">%PRODUCTNAME</item> lần đầu tiên."
+msgid "Cancel"
+msgstr "Thôi"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3153808\n"
-"16\n"
+"00000004.xhp\n"
+"par_id3154730\n"
"help.text"
-msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
-msgstr "Chọn lệnh <emph>Trợ giúp > Đăng ký</emph> (đây là liên kết trực tiếp tới địa chỉ Web bên ngoài)"
+msgid "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145800\n"
+"30\n"
+"help.text"
+msgid "Up One Level"
+msgstr "Lên một bậc"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154064\n"
+"48\n"
+"help.text"
+msgid "Create New Directory"
+msgstr "Tạo thư mục mới"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153221\n"
+"help.text"
+msgid "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145646\n"
+"39\n"
+"help.text"
+msgid "Up One Level"
+msgstr "Lên một bậc"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151320\n"
+"help.text"
+msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153005\n"
+"40\n"
+"help.text"
+msgid "Create New Folder"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156361\n"
+"help.text"
+msgid "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3146915\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\".\">Go to the previous comment</ahelp>"
+msgstr "<ahelp hid=\".\">Trở về bản ghi chú trước</ahelp>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151357\n"
+"help.text"
+msgid "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3159184\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\".\">Go to the next comment</ahelp>"
+msgstr "<ahelp hid=\".\">Tiến tới bản ghi chú kế tiếp</ahelp>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3083285\n"
+"help.text"
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147339\n"
+"37\n"
+"help.text"
+msgid "Open File"
+msgstr "Mở tập tin"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151189\n"
+"help.text"
+msgid "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149109\n"
+"38\n"
+"help.text"
+msgid "Save As"
+msgstr "Lưu dạng"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3152946\n"
+"help.text"
+msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Biểu tượng</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155336\n"
+"76\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr "Xuất trực tiếp thành dạng PDF"
#: 00000005.xhp
msgctxt ""
@@ -1025,7 +1983,6 @@ msgid "If you format a document without Styles, it is referred to as \"direct\"
msgstr "Nếu bạn định dạng tài liệu không có <emph>Kiểu dáng</emph>, thủ tục được diễn tả như định dạng « trực tiếp ». Có nghĩa là sửa đổi văn bản hay đối tượng khác, bằng cách áp dụng các thuộc tính khác nhau một cách trực tiếp. Định dạng áp dụng chỉ cho vùng được chọn, và mỗi thay đổi phải được làm riêng. Mặt khác, kiểu dáng không phải được áp dụng trực tiếp cho văn bản. Nó được xác định trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>, sau đó được áp dụng. Một ích lợi là khi bạn sửa đổi một kiểu dáng nào đó, tất cả các phần tài liệu cho chúng bạn đã gán kiểu dáng đó sẽ được sửa đổi cùng lúc."
#: 00000005.xhp
-#, fuzzy
msgctxt ""
"00000005.xhp\n"
"par_id3147287\n"
@@ -1652,2826 +2609,2179 @@ msgctxt ""
msgid "Widows and orphans are historical typography terms, which have been in use for many years. A widow refers to a short line at the end of a paragraph, which when printed, appears alone at the top of the next page. An orphan is, in contrast, the first line of a paragraph printed alone at the bottom of the previous page. In a $[officename] text document you can automatically prevent such occurrences in the desired Paragraph Style. When doing so, you can determine the minimum amount of lines to be kept together on a page."
msgstr "Thiếu (widow) và thừa (orphan) là thuật ngữ in máy lâu dùng. « Thiếu » diễn tả một dòng ngắn ở kết thúc đoạn văn mà sẽ được in riêng ở đầu của trang kế tiếp. « Thừa » là dòng đầu của đoạn văn sẽ in riêng ở cuối của trang trước. Một dòng riêng bị phân cách ra đoạn văn chính không thấy đẹp, gián đoạn tiến trình đọc. Trong tài liệu văn bản của $[officename], bạn có thể tự động ngăn cản trường hợp như vậy trong <emph>Kiểu dáng Đoạn văn</emph> đã chọn. Cũng có thể xác định số dòng tối thiểu cần in nhau trên cùng trang."
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
+"00000007.xhp\n"
"tit\n"
"help.text"
-msgid "Format Menu"
-msgstr "Trình đơn Định dạng"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"hd_id3150347\n"
+"00000007.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "Format Menu"
-msgstr "Trình đơn Định dạng"
-
-#: 00040500.xhp
-#, fuzzy
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145356\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph></variable>"
-msgstr "<variable id=\"standard\">Chọn lệnh <emph>Định dạng > Định dạng Mặc định</emph></variable>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153244\n"
-"9\n"
-"help.text"
-msgid "Choose <emph>Format - Character</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152352\n"
-"10\n"
-"help.text"
-msgid "On <emph>Text Formatting</emph> Bar (with cursor in object), click"
-msgstr "Trên thanh <emph>Định dạng Văn bản</emph> (khi con trỏ nằm trong đối tượng), nhấn vào"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148998\n"
-"help.text"
-msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154894\">Biểu tượng</alt></image>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149999\n"
-"11\n"
-"help.text"
-msgid "Character"
-msgstr "Ký tự"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153935\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Font</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Phông</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3157958\n"
-"14\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh và chọn mục <emph>Sửa/Mới > (thẻ) Phông</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155338\n"
-"16\n"
-"help.text"
-msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab"
-msgstr "Mở trình đơn ngữ cảnh của phần đầu hàng trên bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng bảng > (thẻ) Phông</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150355\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > (thẻ) Ký tự</emph> (tài liệu đồ thị)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149812\n"
-"19\n"
-"help.text"
-msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Chú giải > (thẻ) Ký tự</emph> (tài liệu đồ thị)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153717\n"
-"20\n"
-"help.text"
-msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Trục > (thẻ) Ký tự</emph> (tài liệu đồ thị)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154749\n"
-"17\n"
-"help.text"
-msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
-msgstr "Chọn lệnh <emph>Định dạng > Ô > (thẻ) Phông</emph> (bảng tính)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3156306\n"
-"199\n"
-"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
-msgstr "Lệnh trình đơn <emph>Định dạng > Trang > Đầu/Chân trang > (nút) Sửa</emph> (bảng tính)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155829\n"
-"21\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Hiệu ứng phông</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149819\n"
-"23\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) HIệu ứng phông</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3159176\n"
-"200\n"
-"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
-msgstr "Lệnh trình đơn <emph>Định dạng > Trang > Đầu/Chân trang > (nút) Sửa</emph> (bảng tính)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153541\n"
-"181\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Position</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Vị trí</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3159256\n"
-"183\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Sắp hàng</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3151385\n"
-"201\n"
-"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
-msgstr "Lệnh trình đơn <emph>Định dạng > Trang > Đầu/Chân trang > (nút) Sửa</emph> (bảng tính)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148550\n"
-"186\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Bố trí Châu Á</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152811\n"
-"188\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Bố trí Châu Á</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153524\n"
-"190\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Kiểu in Châu Á</emph> (không phải trong mã HTML)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154366\n"
-"191\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Kiểu in Châu Á</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148742\n"
-"193\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Kiểu in Châu Á</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148922\n"
-"26\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Siêu liên kết</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149169\n"
-"29\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3151381\n"
-"30\n"
-"help.text"
-msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
-msgstr "Trên thanh <emph>Định dạng Văn bản</emph> (khi con trỏ nằm trong đối tượng), nhấn vào"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155995\n"
-"help.text"
-msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150495\">Biểu tượng</alt></image>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3147299\n"
-"31\n"
-"help.text"
-msgid "Paragraph"
-msgstr "Đoạn văn"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147289\n"
+"00000007.xhp\n"
+"par_id3152823\n"
"4\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Sắp hàng</emph>"
+msgid "<variable id=\"werkzeugleiste\">Icon on the Tools bar: </variable>"
+msgstr "<variable id=\"werkzeugleiste\">Biểu tượng trên thanh <emph>Công cụ</emph> : </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147352\n"
-"179\n"
+"00000007.xhp\n"
+"par_id3152352\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Sắp hàng</emph>"
+msgid "<variable id=\"textobjektleiste\">Icon on the Formatting Bar: </variable>"
+msgstr "<variable id=\"textobjektleiste\">Biểu tượng trên thanh <emph>Định dạng</emph> : </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154640\n"
-"32\n"
+"00000007.xhp\n"
+"par_id3151370\n"
+"7\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Thụt lề và Giãn cách</emph>"
+msgid "<variable id=\"objektleiste\">Icon on the Formatting Bar: </variable>"
+msgstr "<variable id=\"objektleiste\">Biểu tượng trên thanh <emph>Định dạng</emph> : </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3152463\n"
-"34\n"
+"00000007.xhp\n"
+"par_id3149748\n"
+"9\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Thụt lề và Giãn cách</emph>"
+msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
+msgstr "<variable id=\"diaobjektleiste\">Biểu tượng trên thanh <emph>Xem ảnh chiếu</emph> : </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154319\n"
-"39\n"
+"00000007.xhp\n"
+"par_id3156553\n"
+"10\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Thẻ</emph>"
+msgid "<variable id=\"symbolleistenneu\">This overview describes the default toolbar configuration for $[officename].</variable>"
+msgstr "<variable id=\"symbolleistenneu\">Toàn cảnh này diễn tả cấu hình thanh công cụ mặc định cho $[officename].</variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154833\n"
-"41\n"
+"00000007.xhp\n"
+"par_id3153551\n"
+"11\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Thẻ</emph>"
+msgid "Asian Language Support"
+msgstr "Hỗ trợ Ngôn ngữ Châu Á"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159155\n"
-"43\n"
+"00000007.xhp\n"
+"par_id3156326\n"
+"12\n"
"help.text"
-msgid "Double-click the ruler"
-msgstr "Nhấn đôi vào thước đo"
+msgid "These commands can only be accessed after you enable support for Asian languages in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>."
+msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_idN109E2\n"
+"00000010.xhp\n"
+"tit\n"
"help.text"
-msgid "(all options only in Writer or Calc)"
-msgstr "(tất cả các tùy chọn chỉ hoạt động trong Writer hay Calc)"
+msgid "Context Menus"
+msgstr "Trình đơn Ngữ cảnh"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156105\n"
-"44\n"
+"00000010.xhp\n"
+"hd_id3160447\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Viền</emph>"
+msgid "Context Menus"
+msgstr "Trình đơn Ngữ cảnh"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154149\n"
+"00000010.xhp\n"
+"hd_id3148765\n"
"45\n"
"help.text"
-msgid "Choose <emph>Format - Picture - Borders</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ảnh > (thẻ) Viền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3163822\n"
-"48\n"
-"help.text"
-msgid "Choose <emph>Format - Frame/Object - Borders</emph> tab"
-msgstr "Chọn thẻ <emph>Định dạng > Khung/Đối tượng > Viền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150048\n"
-"51\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Borders</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Viền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149911\n"
-"53\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Viền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150094\n"
-"54\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154501\n"
-"55\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148455\n"
-"56\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ô > (thẻ) Viền</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155915\n"
-"177\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lệnh trình đơn <emph>Định dạng > Đoạn văn > (thẻ) Viền > Giãn cách tới nội dung</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3159130\n"
-"178\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lệnh trình đơn<emph> Định dạng > Trang > (thẻ) Viền > Giãn cách tới nội dung</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155853\n"
-"57\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Nền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3147330\n"
-"58\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Background</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Nền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149486\n"
-"59\n"
-"help.text"
-msgid "Choose <emph>Format - Picture - Background</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Ảnh > (thẻ) Nền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150592\n"
-"61\n"
-"help.text"
-msgid "Choose <emph>Format - Frame/Object - Background</emph> tab"
-msgstr "Chọn thẻ <emph>Định dạng > Khung/Đối tượng > Viền</emph>"
+msgid "Cut"
+msgstr "Cắt"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151321\n"
-"65\n"
+"00000010.xhp\n"
+"par_id3153383\n"
+"46\n"
"help.text"
-msgid "Choose <emph>Format - Page - Background</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Nền</emph>"
+msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
+msgstr "Cắt đối tượng đã chọn ra và cất giữ nó trên bảng nháp. Đối tượng thì có thể được phục hồi ừ bảng nháp bằng cách sử dụng lệnh <emph>Dán</emph>."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154510\n"
+"00000010.xhp\n"
+"hd_id3156069\n"
"68\n"
"help.text"
-msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
+msgid "Paste"
+msgstr "Dán"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159110\n"
+"00000010.xhp\n"
+"par_id3154896\n"
"69\n"
"help.text"
-msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153532\n"
-"67\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Nền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3144747\n"
-"174\n"
-"help.text"
-msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
-msgstr "Chọn lệnh <emph>Chèn/Sửa > Phần > (thẻ) Nền</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3146900\n"
-"71\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ô > (thẻ) Nền</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3146791\n"
-"72\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Organizer</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Bộ tổ chức</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154482\n"
-"74\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Bộ tổ chức</emph>"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
+msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Chèn vào tài liệu đối tượng bạn đã di chuyển (cắt hay sao chép) vào bảng nháp.</ahelp> Lệnh này chỉ sẵn sàng nếu nội dung của bảng nháp sẽ chèn được ở vị trí con trỏ.."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153357\n"
-"75\n"
+"00000010.xhp\n"
+"hd_id3149948\n"
+"76\n"
"help.text"
-msgid "Choose <emph>Format - Page - Page</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Trang</emph>"
+msgid "Insert"
+msgstr "Chèn"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154362\n"
+"00000010.xhp\n"
+"par_id3147588\n"
"77\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Trang</emph>"
+msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
+msgstr "Mở trình đơn phụ trong <emph>Bộ sưu tập</emph>, có thể chọn một trong hai lệnh <emph>Chép</emph> và <emph>Liên kết</emph> để sao chép đối tượng đã chọn từ Bộ sưu tập vào tài liệu hiện tại, hoặc tạo một liên kết đến đối tượng này."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155515\n"
+"00000010.xhp\n"
+"par_id3146130\n"
"78\n"
"help.text"
-msgid "Choose <emph>Format - Page - Header</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Đầu trang</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148405\n"
-"80\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Đầu trang</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145618\n"
-"81\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Footer</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Chân trang</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155175\n"
-"83\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Chân trang</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3147404\n"
-"84\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3166447\n"
-"95\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
+msgstr "Nếu bạn đã chọn một đối tượng trong tài liệu, thì việc chèn hay dán mới sẽ thay thế đối tượng đã chọn."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147321\n"
-"85\n"
+"00000010.xhp\n"
+"hd_id3145829\n"
+"79\n"
"help.text"
-msgid "On <emph>Formatting</emph> Bar, click"
-msgstr "Trên thanh <emph>Định dạng</emph>, nhấn vào"
+msgid "Background"
+msgstr "Nền"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148533\n"
+"00000010.xhp\n"
+"par_id3149180\n"
+"80\n"
"help.text"
-msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149568\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
+msgstr "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Chèn ảnh đã chọn làm đồ họa nền.</ahelp> Hãy sử dụng lệnh trình đơn phụ <emph>Trang</emph> hay <emph>Đoạn văn</emph> để xác định đồ họa nên chiếm toàn trang hoặc chỉ chiếm đoạn văn hiện tại."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153534\n"
-"86\n"
+"00000010.xhp\n"
+"hd_id3153049\n"
+"87\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Kiểu dáng và Định dạng"
+msgid "Copy"
+msgstr "Chép"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159313\n"
+"00000010.xhp\n"
+"par_id3150774\n"
"88\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Trên thanh <emph>Vẽ</emph>, nhấn vào</defaultinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3109845\n"
-"help.text"
-msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159236\">Biểu tượng</alt></image>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152498\n"
-"3\n"
-"help.text"
-msgid "<emph>3D Effects</emph>"
-msgstr "<emph>Hiệu ứng 3D</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145256\n"
-"90\n"
-"help.text"
-msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
-msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Sao chép đối tượng đã chọn vào bảng nháp.</ahelp>"
-#: 00040500.xhp
-#, fuzzy
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154203\n"
+"00000010.xhp\n"
+"hd_id3148620\n"
"91\n"
"help.text"
-msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
-msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
+msgid "Delete"
+msgstr "Xoá"
-#: 00040500.xhp
-#, fuzzy
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151284\n"
+"00000010.xhp\n"
+"par_id3154317\n"
"92\n"
"help.text"
-msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
-msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-
-#: 00040500.xhp
-#, fuzzy
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152475\n"
-"93\n"
-"help.text"
-msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
-msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-
-#: 00040500.xhp
-#, fuzzy
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154572\n"
-"94\n"
-"help.text"
-msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
-msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145220\n"
-"155\n"
-"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering </emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148771\n"
-"156\n"
-"help.text"
-msgid "On <emph>Formatting</emph> toolbar, click"
-msgstr "Trên thanh công cụ <emph>Định dạng</emph>, nhấn vào"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Xoá vùng chọn hiện thời. Chọn nhiều đối tượng cùng lúc thì tất cả bị xoá. Trong phần lớn trường hợp, một <link href=\"text/shared/01/03150100.xhp\" name=\"câu hỏi xác nhận\">câu hỏi xác nhận</link> sẽ xuất hiện trước khi xoá đối tượng (để bảo vệ bạn chống trường hợp xoá gì tình cờ).</ahelp>"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149445\n"
+"00000010.xhp\n"
+"par_id3155941\n"
+"190\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149964\">Biểu tượng</alt></image>"
+msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
+msgstr "Hoặc đối tượng bị xoá khỏi vật chứa dữ liệu, hoặc chỉ cái hiển thị đối tượng bị gỡ bỏ, phụ thuộc vào ngữ cảnh."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3157970\n"
-"163\n"
+"00000010.xhp\n"
+"par_id3150506\n"
+"192\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Bật/tắt chấm điểm"
+msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
+msgstr "Chọn lệnh <emph>Xoá</emph> trong <emph>Bộ sưu tập</emph> thì mục đó sẽ bị xoá khỏi Bộ sưu tập, còn bản thân tập tin không bị thay đổi."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149735\n"
-"157\n"
+"00000010.xhp\n"
+"hd_id3150443\n"
+"136\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
-msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Tùy chọn</emph>"
+msgid "Open"
+msgstr "Mở"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150785\n"
-"164\n"
+"00000010.xhp\n"
+"par_id3149149\n"
+"137\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Trình diễn</emph>, sau đó mở trình đơn ngữ cảnh của kiểu dáng phác thảo và chọn mục <emph>Mới/Sửa</emph></caseinline></switchinline>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Hãy dùng lệnh <emph>Mở</emph> để mở đối tượng đã chọn trong tác vụ mới.</ahelp>"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148420\n"
+"00000010.xhp\n"
+"hd_id3149732\n"
"165\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148888\n"
-"158\n"
-"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Chấm điểm</emph>"
+msgid "Rename"
+msgstr "Thay tên"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149917\n"
+"00000010.xhp\n"
+"par_id3149797\n"
"166\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Trình diễn</emph>, sau đó mở trình đơn ngữ cảnh của kiểu dáng phác thảo và chọn mục <emph>Mới/Sửa</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154930\n"
-"167\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
+msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Thay đổi tên của đối tượng đã chọn.</ahelp> Chọn lệnh <emph>Thay tên</emph> thì tên cũ được tô sáng và người dùng có thể gõ tên mới một cách trực tiếp (tên cũ sẽ biến mất một khi bạn bắt đầu gõ phím). Dùng các phím mũi tên để đặt con trỏ ở đầu hay cuối của tên, để xoá hay thêm vào phần của tên cũ, hoặc để định vị lại con trỏ (cũng có thể di chuyển con trỏ bằng con chuột: nhấn vào vị trí khác)."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150862\n"
-"159\n"
+"00000010.xhp\n"
+"hd_id3155434\n"
+"317\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Đánh số</emph>"
+msgid "Update"
+msgstr "Cập nhật"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155378\n"
-"168\n"
+"00000010.xhp\n"
+"par_id3154898\n"
+"318\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Trình diễn</emph>, sau đó mở trình đơn ngữ cảnh của kiểu dáng phác thảo và chọn mục <emph>Mới/Sửa</emph></caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Làm tươi ô xem trong cửa sổ hay đối tượng đã chọn. Bất cứ thông tin mới nào sẽ xuất hiện.</ahelp>"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156011\n"
-"169\n"
+"00000010.xhp\n"
+"hd_id3147573\n"
+"172\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
+msgid "Preview"
+msgstr "Xem thử"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id0611200904324832\n"
+"00000010.xhp\n"
+"par_id3155583\n"
+"173\n"
"help.text"
-msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Graphics</emph> tab</variable>"
-msgstr "<variable id=\"graphics\">Chọn <emph>Định dạng - Chấm đầu và Đánh số - Graphics</emph> tab</variable>"
+msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
+msgstr "Phần tử đã chọn sẽ được hiển thị trong <emph>Bộ sưu tập</emph> ở kích cỡ tối đa. Nhấn đôi vào ô xem thử để chuyển đổi về ô xem Bộ sưu tập bình thường."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155848\n"
-"160\n"
+"00000010.xhp\n"
+"hd_id3157809\n"
+"319\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Phác thảo</emph>"
+msgid "Create Link"
+msgstr "Tạo liên kết"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148733\n"
-"170\n"
+"00000010.xhp\n"
+"par_id3153716\n"
+"320\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
+msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
+msgstr "Lệnh này sẵn sàng khi đối tượng được chọn. Một liên kết tên « Liên kết đến xxx » (<emph>xxx</emph> đại diện tên của đối tượng) sẽ được tạo trực tiếp trong cùng một thư mục với đối tượng đã chọn."
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156658\n"
-"162\n"
+"00000011.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
-msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Vị trí</emph>"
+msgid "Menu Commands"
+msgstr "Lệnh trình đơn"
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156170\n"
-"152\n"
+"00000011.xhp\n"
+"hd_id3156045\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Công cụ > Đánh số Phác thảo > (thẻ) Vị trí</emph></caseinline></switchinline>"
+msgid "Menu Commands"
+msgstr "Lệnh trình đơn"
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153812\n"
-"173\n"
+"00000011.xhp\n"
+"par_id3150838\n"
+"5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - Numbering Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
+msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
+msgstr "Để sử dụng các lệnh trình đơn, trước tiên bạn cần phải lựa chọn cửa sổ chứa tài liệu bạn muốn soạn thảo. Tương tự, bên trong tài liệu, bạn cần phải lựa chọn một đối tượng để sử dụng các lệnh liên quan đến nó. (Bạn sẽ thấy biết những tên trình đơn, hay lệnh trình đơn, sẽ biến đổi phụ thuộc vào kiểu tài liệu hay kiểu đối tượng đang biên soạn. Chẳng hạn, không có trình đơn tên <emph>Ảnh chiếu</emph> trong tài liệu văn bản: chỉ trong tài liệu trình diễn.)"
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151332\n"
-"194\n"
+"00000011.xhp\n"
+"par_id3156027\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Picture </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lệnh trình đơn <emph>Định dạng > Ảnh > (thẻ) Xén</emph> </caseinline></switchinline>"
+msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
+msgstr "Các trình đơn tùy thuộc ngữ cảnh. Có nghĩa là những mục trình đơn sẵn sàng liên quan đến công việc đang làm. Nếu con trỏ nằm trong văn bản, thì các lệnh sẵn sàng thích hợp với công việc biên soạn văn bản. Lựa chọn đồ họa trong tài liệu thì bạn thấy các lệnh trình đơn thích hợp với công việc biên soạn ảnh."
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153317\n"
-"198\n"
+"00000020.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Picture</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Biểu tượng trên thanh công cụ <emph>Ảnh</emph>:</defaultinline></switchinline>"
+msgid "About Import and Export Filters"
+msgstr "Thông tin về bộ lọc Nhập/Xuất"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149953\n"
+"00000020.xhp\n"
+"bm_id3152952\n"
"help.text"
-msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155092\">Biểu tượng</alt></image>"
+msgid "<bookmark_value>import filters</bookmark_value><bookmark_value>export filters</bookmark_value><bookmark_value>filters; for import and export</bookmark_value><bookmark_value>files; filters and formats</bookmark_value><bookmark_value>formats; on opening and saving</bookmark_value><bookmark_value>importing; HTML and text documents</bookmark_value><bookmark_value>exporting;HTML and text documents</bookmark_value><bookmark_value>text documents; importing/exporting</bookmark_value><bookmark_value>HTML documents; importing/exporting</bookmark_value><bookmark_value>UTF-8/UCS2 support</bookmark_value><bookmark_value>HTML; export character set</bookmark_value><bookmark_value>PostScript; creating files</bookmark_value><bookmark_value>exporting;to PostScript format</bookmark_value>"
+msgstr "<bookmark_value>bộ lọc nhập khẩu</bookmark_value><bookmark_value>bộ lọc xuất khẩu</bookmark_value><bookmark_value>bộ lọc; để nhập/xuất khẩu</bookmark_value><bookmark_value>tập tin; bộ lọc và định dạng</bookmark_value><bookmark_value>định dạng; khi mở và lưu</bookmark_value><bookmark_value>nhập khẩu; tài liệu kiểu HTML và văn bản</bookmark_value><bookmark_value>xuất khẩu; tài liệu kiểu HTML và văn bản</bookmark_value><bookmark_value>tài liệu văn bản; nhập/xuất khẩu</bookmark_value><bookmark_value>tài liệu HTML; nhập/xuất khẩu</bookmark_value><bookmark_value>Hỗ trợ UTF-8/UCS2</bookmark_value><bookmark_value>HTML; bộ ký tự xuất</bookmark_value><bookmark_value>PostScript; tạo tập tin</bookmark_value><bookmark_value>xuất khẩu;theo định dạng PostScript</bookmark_value>"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153695\n"
-"209\n"
+"00000020.xhp\n"
+"hd_id3152952\n"
+"1\n"
"help.text"
-msgid "Crop"
-msgstr "Xén"
+msgid "About Import and Export Filters"
+msgstr "Thông tin về bộ lọc Nhập/Xuất"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151254\n"
-"195\n"
+"00000020.xhp\n"
+"par_id3143272\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Format - Change Case</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Đổi chữ hoa/thường</emph>"
+msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> you can also open and save many foreign XML formats."
+msgstr "Trong $[officename], ra khỏi các <link href=\"text/shared/00/00000021.xhp\" name=\"định dạng XML\">định dạng XML</link> sở hữu, bạn cũng có thể mở và lưu theo nhiều định dạng XML ngoại."
-#: 00040500.xhp
-#, fuzzy
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159624\n"
-"196\n"
+"00000020.xhp\n"
+"par_id3152414\n"
+"3\n"
"help.text"
-msgid "Open context menu (text) - choose <emph>Change Case</emph>"
-msgstr "Mở trình đơn ngữ cảnh (văn bản) và chọn mục <emph>Định dạng > Chữ cái/Ký tự</emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Dưới UNIX, không thể tự động nhận ra một số định dạng tập tin nào đó. </caseinline><defaultinline>$[officename] bình thường nhận ra định dạng tập tin đúng một cách tự động khi mở tập tin.</defaultinline></switchinline> Có thể có trường hợp trong đó bạn cần phải tự chọn kiểu tập tin trong hộp thoại <emph>Mở</emph>, chẳng hạn nếu bạn có một bảng cơ sở dữ liệu theo định dạng văn bản mà bạn muốn mở theo định dạng cơ sở dữ liệu, bạn cần phải ghi rõ kiểu tập tin « Văn bản CSV » sau khi chọn tập tin đó."
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153579\n"
-"197\n"
+"00000020.xhp\n"
+"hd_id3148668\n"
+"238\n"
"help.text"
-msgid "Menu <emph>Format - Asian phonetic guide</emph>"
-msgstr "Lệnh trình đơn <emph>Định dạng > Chỉ dẫn ngữ âm Châu Á</emph>"
+msgid "Basic Macros in MS Office Documents"
+msgstr "Vĩ lệnh Basic trong tài liệu MS Office"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"tit\n"
+"00000020.xhp\n"
+"par_id3156211\n"
+"239\n"
"help.text"
-msgid "File Menu"
-msgstr "Trình đơn Tập tin"
+msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\">Load/Save - VBA Properties</link> you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"hd_id3149976\n"
-"1\n"
+"00000020.xhp\n"
+"hd_id3154232\n"
+"5\n"
"help.text"
-msgid "File Menu"
-msgstr "Trình đơn Tập tin"
+msgid "Notes regarding external formats and file types"
+msgstr "Ghi chú về định dạng và kiểu tập tin bên ngoài"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id389416\n"
+"00000020.xhp\n"
+"par_id3154230\n"
+"226\n"
"help.text"
-msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
-msgstr "<variable id=\"webhtml\">Chọn lệnh <emph>Tập tin > Xem thử trong trình duyệt Web</emph></variable>"
+msgid "Even if they are not installed, some filters can be selected in the <emph>Open</emph> and <emph>Save</emph> dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require."
+msgstr "Thậm chí nếu chưa cài đặt, bạn vẫn còn có thể lựa chọn một số bộ lọ trong hộp thoại <emph>Mở</emph> và <emph>Lưu</emph>. Lựa chọn bộ lọc như vậy thì thấy một thông điệp cũng cho phép bạn tự cài đặt bộ lọc đó."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154812\n"
-"50\n"
+"00000020.xhp\n"
+"par_id3149999\n"
+"200\n"
"help.text"
-msgid "Choose <emph>File - New</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Mới</emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the <emph>Modify</emph> option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in \"Optional Components\".</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Muốn cài đặt thêm bộ lọc hay gỡ bỏ từng bộ lọc khỏi bản cài đặt thì đóng %PRODUCTNAME, khởi chạy chương trình Thiết lập, sau đó bật tùy chọn <emph>Sửa</emph>. Hành động này mở một hộp thoại trong đó bạn có thể thêm hay gỡ bỏ từng thành phần của %PRODUCTNAME. Cũng có thể tìm các bộ lọc đồ họa trong « Thành phần tùy chọn ».</caseinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153070\n"
-"186\n"
+"00000020.xhp\n"
+"hd_id3156027\n"
+"7\n"
"help.text"
-msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
-msgstr "Biểu tượng <emph>Mới</emph> trên thanh <emph>Chuẩn</emph> (biểu tượng hiển thị kiểu của tài liệu mới)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing and Exporting Text Documents</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Nhập/xuất khẩu tài liệu văn bản</defaultinline></switchinline>"
-#: 00000401.xhp
-#, fuzzy
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150127\n"
+"00000020.xhp\n"
+"par_id3145669\n"
+"8\n"
"help.text"
-msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Biểu tượng</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to MS Word, and not everything can be imported.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chương trình $[officename] Writer có khả năng đọc được một số phiên bản khác nhau của định dạng văn bản Microsoft Word. Bạn cũng có thể lưu văn bản theo định dạng Word. Tuy nhiên, không phải tất cả các thứ sẵn sàng trong $[officename] Writer sẽ truyền được sang MS Word, và ngược lại.</defaultinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154232\n"
-"199\n"
+"00000020.xhp\n"
+"par_id3150144\n"
+"233\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing is normally not problematic. Even redlining information and controls are imported (and exported) so that $[officename] recognizes inserted or deleted text in Word documents as well as font attributes that have been modified. Different coloring for each author and the time of such changes is also included. When graphic text boxes and labels are imported from templates, most of the attributes are also imported as direct paragraph and drawing attributes. However, some of the attributes may be lost during the import procedure.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Công việc nhập khẩu thường chạy được. Ngay cả các điều khiển và thông tin đường màu đỏ sẽ nhập/xuất khẩu được để $[officename] nhận ra chuỗi đã chèn hay xoá trong tài liệu Word, cũng như các thuộc tính phông chữ bị sửa đổi. Cũng truyền được màu sắc riêng cho mỗi tác giả, và các thời gian sửa đổi. Khi hộp văn bản và nhãn kiểu đồ hoa được nhập khẩu từ mẫu, phần lớn các thuộc tính cũng được nhập khẩu thành các thuộc tính trực tiếp kiểu đoạn văn và vẽ. Tuy nhiên, một số thuộc tính vẫn còn có thể bị mất trong khi nhập khẩu.</defaultinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154894\n"
-"179\n"
+"00000020.xhp\n"
+"par_id3149095\n"
+"10\n"
"help.text"
-msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>It is also possible to import and export <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link> files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Cũng có thể nhập/xuất khẩu tập tin kiểu <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link>. Định dạng tập tin này có thể được dùng để trao đổi văn bản có kiểu dáng giữa các ứng dụng và nền tảng khác nhau. Bằng cách này, rất nhiều định dạng được phần lớn chương trình đọc sẽ được truyền, không có sao. Bảng nháp cũng sử dụng định dạng RTF khi bạn chèn phần của bảng tính từ $[officename] Calc thông qua <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> vào $[officename] Writer.</defaultinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157898\n"
-"82\n"
+"00000020.xhp\n"
+"par_id3151378\n"
+"237\n"
"help.text"
-msgid "Menu <emph>File - New</emph><emph>- Templates and Documents</emph>."
-msgstr "Lệnh trình đơn <emph>Tập tin > Mới > Mẫu và Tài liệu</emph>."
+msgid "The filter <emph>Text Encoded</emph> helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break."
+msgstr "Bộ lọc <emph>Văn bản đã mã hoá</emph> thì giúp bạn mở và lưu tài liệu văn bản theo phông chữ mã hoá khác. Bộ lọc sẽ mở hộp thoại cho phép bạn lựa chọn bộ ký tự, phông chữ mặc định, ngôn ngữ và cách ngắt đoạn văn."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149140\n"
-"187\n"
+"00000020.xhp\n"
+"hd_id3149763\n"
+"11\n"
"help.text"
-msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-msgstr "Tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "Importing and Exporting in HTML Format"
+msgstr "Nhập/xuất khẩu theo định dạng HTML"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149798\n"
-"160\n"
+"00000020.xhp\n"
+"par_id3150244\n"
+"198\n"
"help.text"
-msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
-msgstr "<variable id=\"etiketten\">Chọn lệnh <emph>Tập tin > Mới > Nhãn</emph></variable>"
+msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks."
+msgstr "Trong $[officename] Writer, bạn có thể chèn vào tài liệu HTML cước chú và kết chú. Bản ghi chú này được xuất thành siêu thẻ (meta). Các ký tự của cước/kết chú được xuất thành siêu liên kết."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147226\n"
-"161\n"
+"00000020.xhp\n"
+"par_id3149800\n"
+"199\n"
"help.text"
-msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
-msgstr "<variable id=\"etikettenein\">Chọn lệnh <emph>Tập tin > Mới > Nhãn > Nhãn</emph></variable>"
+msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
+msgstr "Bản ghi chú được dùng để bao gồm ký tự lạ trong tài liệu HTML. Mỗi bản ghi chú bắt đầu với « HTML:... » và kết thúc bằng « > » thì được xử lý như mã HTML, nhưng được xuất không có những dấu hiệu này. Vài thẻ chung quanh văn bản cũng có thể nằm sau « HTML:... ». Các ký tự có dấu phụ được chuyển đổi sang bộ ký tự ANSI. Bản ghi chú sẽ được tạo trong khi nhập khẩu (chẳng hạn cho siêu thẻ không có chỗ trong thuộc tính tập tin hay thẻ lạ)."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154522\n"
-"162\n"
+"00000020.xhp\n"
+"par_id3149734\n"
+"201\n"
"help.text"
-msgid "Choose <emph>File - New - Labels - Format</emph> tab"
-msgstr "Chọn lệnh <emph>Tập tin > Mới > Nhãn > Định dạng</emph>"
+msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed."
+msgstr "Chức năng nhập khẩu HTML của chương trình $[officename] Writer có khả năng đọc tập tin dùng bảng mã ký tự UTF-8 hay UCS2. (Tiếng Việt dùng UTF-8.) Vậy nó có thể hiển thị tất cả các ký tự nằm trong bộ ký tự ANSI hay bộ ký tự của hệ thống."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154983\n"
-"163\n"
+"00000020.xhp\n"
+"par_id3149578\n"
+"240\n"
"help.text"
-msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
-msgstr "Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Định dạng</emph>"
+msgid "When exporting to HTML, the character set selected in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157958\n"
-"164\n"
+"00000020.xhp\n"
+"par_id3153146\n"
+"197\n"
"help.text"
-msgid "Choose <emph>File - New - Labels - Options</emph> tab"
-msgstr "Chọn lệnh <emph>Tập tin > Mới > Nhãn > Tùy chọn</emph>"
+msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, you select Netscape Navigator, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153311\n"
-"165\n"
+"00000020.xhp\n"
+"par_id3154143\n"
+"130\n"
"help.text"
-msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
-msgstr "Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Tùy chọn</emph>"
+msgid "The \"font\" property corresponds to Netscape Navigator; that is, before the font size you can specify optional values for \"font-style\" (italic, none), \"font-variant\" (normal, small-caps) and \"font-weight\" (normal, bold)."
+msgstr "Thuộc tính « font » (phông chữ) tương ứng với Netscape Navigator; tức là, trước cỡ chữ, bạn mà bạn có thể khai báo các giá trị tùy chọn cho «kiểu dáng phông»: in nghiêng hay không có, «biến thể phông»: bình thường, chữ hoa nhỏ, và «độ đậm»: bình thường hay đậm."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152780\n"
-"166\n"
+"00000020.xhp\n"
+"par_id3153760\n"
+"131\n"
"help.text"
-msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
-msgstr "<variable id=\"visikart\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp</emph></variable>"
+msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
+msgstr "Chẳng hạn, « Font: bold italic small-caps 12pt/200% Arial, Helvetica » chuyển đổi sang phông in đậm, in nghiêng, chữ hoa nhỏ, kích cỡ 12 điểm, khoảng cách đôi, với nhóm phông Arial, không có thì Helvetica."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156346\n"
-"167\n"
+"00000020.xhp\n"
+"par_id3150129\n"
+"132\n"
"help.text"
-msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
-msgstr "<variable id=\"visikartform\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Phương tiện</emph> </variable>"
+msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
+msgstr "« Font: 10pt » thì chuyển đổi sang phông chữ có kích cỡ 10 điểm, không in đậm, in nghiêng hay chữ hoa nhỏ."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152824\n"
-"168\n"
+"00000020.xhp\n"
+"par_id3155135\n"
+"14\n"
"help.text"
-msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
-msgstr "<variable id=\"viskartinhalt\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Danh thiếp</emph></variable>"
+msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
+msgstr "Đặt chương trình MS Internet Explorer hay $[officename] Writer làm đích xuất thì kích cỡ của trường điều khiển và các viền bên trong được xuất thành kiểu dáng (định dạng in ấn). Các thuộc tính kích cỡ kiểu CSS1 dựa vào giá trị \"width\" (bề rộng) và \"height\" (chiều cao). Thuộc tính \"Margin\" (lề) được dùng để đặt các lề cùng kích cỡ ở mọi bên trang. Để cho phép lề khác nhau thì dùng thuộc tính \"Margin-Left\" (lề bên trái), \"Margin-Right\" (lề bên phải), \"Margin-Top\" (lề bên trên) và \"Margin-Bottom\" (lề bên dưới)."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149819\n"
-"169\n"
+"00000020.xhp\n"
+"par_id3148473\n"
+"15\n"
"help.text"
-msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
-msgstr "<variable id=\"viskartpriv\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Riêng</emph></variable>"
+msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
+msgstr "Khoảng cách giữa đồ họa hay phần mở rộng và nội dung có thể được đặt riêng để xuất dạng $[officename] Writer hay MS Internet Explorer. Nếu lề bên trên/dưới hay phải/trái được đặt khác, thì các khoảng cách được xuất theo một tùy chọn « STYLE » (kiểu dáng) cho thẻ tương ứng dạng thuộc tính kích cỡ CSS1 « Margin-Top » (lề bên trên), « Margin-Bottom » (lề bên dưới), « Margin-Left » (lề bên trái » và « Margin-Right » (lề bên phải)."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154897\n"
-"170\n"
+"00000020.xhp\n"
+"par_id3144510\n"
+"16\n"
"help.text"
-msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
-msgstr "<variable id=\"viskartgesch\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Kinh doanh</emph> </variable>"
+msgid "Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
+msgstr "Khung văn bản được hỗ trợ dùng phần mở rộng CSS1 cho đối tượng có vị tri tuyệt đối. Chức năng này áp dụng chỉ cho các tùy chọn xuất của chương trình Netscape Navigator, MS Internet Explorer và $[officename] Writer. Khung văn bản cũng có thể được sắp hàng như đồ họa, <switchinline select=\"sys\"><caseinline select=\"WIN\">Phần bổ sung, </caseinline></switchinline>và Khung trôi, nhưng khung liên kết đến ký tự thì không được."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146137\n"
-"7\n"
+"00000020.xhp\n"
+"par_id3147530\n"
+"46\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Mở</emph>"
+msgid "Text frames are exported as \"<SPAN>\" or \"<DIV>\" tags if they do not contain columns. If they do contain columns then they are exported as \"<MULTICOL>\"."
+msgstr "Khung văn bản được xuất như thẻ \"<SPAN>\" hay \"<DIV>\" nếu nó không chứa cột. Có thì xuất như \"<MULTICOL>\"."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152944\n"
-"83\n"
+"00000020.xhp\n"
+"par_id3153896\n"
+"202\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph> or <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155341\n"
-"8\n"
+"00000020.xhp\n"
+"par_id3154935\n"
+"203\n"
"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
+msgid "Measurement Unit"
+msgstr "Đơn vị đo"
-#: 00000401.xhp
-#, fuzzy
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155419\n"
+"00000020.xhp\n"
+"par_id3154226\n"
+"204\n"
"help.text"
-msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Biểu tượng</alt></image>"
+msgid "Measurement Unit Name in CSS1"
+msgstr "Tên đơn vị đo trong CSS1"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156003\n"
-"9\n"
+"00000020.xhp\n"
+"par_id3151106\n"
+"205\n"
"help.text"
-msgid "Open File"
-msgstr "Mở tập tin"
+msgid "Maximum Number of Decimal Places"
+msgstr "Số lần số tối đa"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155388\n"
-"174\n"
+"00000020.xhp\n"
+"par_id3154071\n"
+"206\n"
"help.text"
-msgid "Menu <emph>File - Open</emph>, File type <emph>Text Encoded</emph> selected"
-msgstr "Lệnh trình đơn <emph>Tập tin > Mở</emph>, chọn kiểu tập tin <emph>mã hoá văn bản</emph>"
+msgid "Millimeter"
+msgstr "Mili-mét"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154174\n"
-"175\n"
+"00000020.xhp\n"
+"par_id3149290\n"
+"207\n"
"help.text"
-msgid "Menu <emph>File - Save As</emph>, File type <emph>Text Encoded</emph> selected"
-msgstr "Lệnh trình đơn <emph>Tập tin > Lưu dạng</emph>, chọn kiểu tập tin <emph>mã hoá văn bản</emph>"
+msgid "mm"
+msgstr "mm"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145609\n"
-"109\n"
+"00000020.xhp\n"
+"par_id3152920\n"
+"208\n"
"help.text"
-msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
-msgstr "<variable id=\"autobrief\">Chọn lệnh <emph>Tập tin > Trợ lý</emph></variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149245\n"
-"110\n"
+"00000020.xhp\n"
+"par_id3156293\n"
+"209\n"
"help.text"
-msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
-msgstr "<variable id=\"autopilotbrief\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư</emph></variable>"
+msgid "Centimeter"
+msgstr "Xenti-mét"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154758\n"
-"111\n"
+"00000020.xhp\n"
+"par_id3154819\n"
+"210\n"
"help.text"
-msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
-msgstr "<variable id=\"autopilotbrief1\">Chọn lệnh <emph>Tập tin > Trợ lý > Thiết kế trang</emph></variable>"
+msgid "cm"
+msgstr "cm"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152360\n"
-"112\n"
+"00000020.xhp\n"
+"par_id3147228\n"
+"211\n"
"help.text"
-msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
-msgstr "<variable id=\"autopilotbrief2\">Chọn lệnh <emph>Tập tin > Trợ lý > Bố trí đầu thư</emph></variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159413\n"
-"113\n"
+"00000020.xhp\n"
+"par_id3154329\n"
+"212\n"
"help.text"
-msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
-msgstr "<variable id=\"autopilotbrief3\">Chọn lệnh <emph>Tập tin > Trợ lý > Mục đã in</emph></variable>"
+msgid "Inch"
+msgstr "Insơ"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152771\n"
-"114\n"
+"00000020.xhp\n"
+"par_id3150740\n"
+"213\n"
"help.text"
-msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
-msgstr "<variable id=\"autopilotbrief4\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư > Người nhận và gửi</emph></variable>"
+msgid "in"
+msgstr "in"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153524\n"
-"115\n"
+"00000020.xhp\n"
+"par_id3157320\n"
+"214\n"
"help.text"
-msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
-msgstr "<variable id=\"autopilotbrief5\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư > Chân trang</emph></variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154224\n"
-"116\n"
+"00000020.xhp\n"
+"par_id3156422\n"
+"215\n"
"help.text"
-msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
-msgstr "<variable id=\"autopilotbrief6\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư ></emph><emph>Tên và Vị trí</emph></variable>"
+msgid "Pica"
+msgstr "Pi-ca"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
+"00000020.xhp\n"
"par_id3144760\n"
-"120\n"
-"help.text"
-msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
-msgstr "<variable id=\"autopilotfax\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax </emph></variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3147085\n"
-"121\n"
-"help.text"
-msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
-msgstr "<variable id=\"autopilotfax1\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Thiết kế trang</emph></variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3151042\n"
-"209\n"
-"help.text"
-msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
-msgstr "<variable id=\"autopilotfax2\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Các mục thêm vào</emph></variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154330\n"
-"122\n"
+"216\n"
"help.text"
-msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
-msgstr "<variable id=\"autopilotfax3\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Người gửi và nhận</emph></variable>"
+msgid "pc"
+msgstr "pc"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150651\n"
-"123\n"
+"00000020.xhp\n"
+"par_id3145322\n"
+"217\n"
"help.text"
-msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
-msgstr "<variable id=\"autopilotfax4\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Chân trang</emph></variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154685\n"
-"124\n"
+"00000020.xhp\n"
+"par_id3155131\n"
+"218\n"
"help.text"
-msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
-msgstr "<variable id=\"autopilotfax5\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Tên và vị trí</emph></variable>"
+msgid "Point"
+msgstr "Điểm"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153190\n"
-"131\n"
+"00000020.xhp\n"
+"par_id3147288\n"
+"219\n"
"help.text"
-msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
-msgstr "<variable id=\"autopilotagenda\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự</emph></variable>"
+msgid "pt"
+msgstr "pt"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155860\n"
-"132\n"
+"00000020.xhp\n"
+"par_id3145364\n"
+"220\n"
"help.text"
-msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
-msgstr "<variable id=\"autopilotagenda1\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Thiết kế trang</emph></variable>"
+msgid "1"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146906\n"
-"133\n"
+"00000020.xhp\n"
+"par_id3149262\n"
+"70\n"
"help.text"
-msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
-msgstr "<variable id=\"autopilotagenda2\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Thuộc tính chung</emph></variable>"
+msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152578\n"
-"134\n"
+"00000020.xhp\n"
+"hd_id3145750\n"
+"223\n"
"help.text"
-msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
-msgstr "<variable id=\"autopilotagenda3\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Tiêu đề</emph></variable>"
+msgid "Importing and Exporting Numbering"
+msgstr "Đánh số khi nhập/xuất khẩu"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155368\n"
-"135\n"
+"00000020.xhp\n"
+"par_id3145591\n"
+"224\n"
"help.text"
-msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
-msgstr "<variable id=\"autopilotagenda4\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Tên</emph></variable>"
+msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146923\n"
-"205\n"
+"00000020.xhp\n"
+"par_id3153573\n"
+"225\n"
"help.text"
-msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
-msgstr "<variable id=\"autopilotagenda5\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Chủ đề</emph></variable>"
+msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported."
+msgstr "Khoảng thụt lề bên trái đoạn văn khi đánh số được ngụ ý như thuộc tính CSS1 « margin-left » (lề bên trái). Khoảng thụt lề dòng đầu bị bỏ qua khi đánh số nên không xuất (nó thuộc về kiểu dáng đoạn văn)."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149066\n"
-"136\n"
+"00000020.xhp\n"
+"hd_id3148556\n"
+"235\n"
"help.text"
-msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
-msgstr "<variable id=\"autopilotagenda6\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Tựa đề và Vị trí</emph></variable>"
+msgid "Importing and Exporting Spreadsheet Files"
+msgstr "Nhập/xuất khẩu tập tin bảng tính"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149288\n"
-"102\n"
+"00000020.xhp\n"
+"par_id3153365\n"
+"236\n"
"help.text"
-msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
-msgstr "<variable id=\"dtapt\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn</emph></variable>"
+msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
+msgstr "$[officename] nhập và xuất tham chiếu đến phần bị xoá, v.d. cột đã tham chiếu. Trong khi xuất, cũng có thể hiển thị toàn công thức, và tham chiếu bị xoá cũng chứa cảnh báo về tham chiếu (#REF!). Cảnh báo « #REF! » sẽ được tạo tương ứng cho tham chiếu trong khi nhập khẩu."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146986\n"
+"00000020.xhp\n"
+"hd_id3150228\n"
"103\n"
"help.text"
-msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
-msgstr "<variable id=\"dtapse\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 1</emph></variable>"
+msgid "Importing and Exporting Graphics Files"
+msgstr "Nhập/xuất khẩu tập tin đồ họa"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154919\n"
+"00000020.xhp\n"
+"par_id3152578\n"
"104\n"
"help.text"
-msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
-msgstr "<variable id=\"dtapsz\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 2</emph></variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3151351\n"
-"105\n"
-"help.text"
-msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
-msgstr "<variable id=\"dtapsd\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 3</emph></variable>"
+msgid "As with HTML documents, you can choose to use a filter with or without the element ($[officename] Impress) in the name to open a $[officename] graphics file. If without, the file will be opened as a $[officename] Draw document. Otherwise, the file saved by an old program version is now opened in $[officename] Impress."
+msgstr "Cũng như đối với tài liệu HTML, bạn có thể chọn sử dụng bộ lọc có phần tử ($[officename] Impress) hay không trong tên, để mở tập tin đồ họa $[officename]. Không có thì tập tin sẽ được mở theo dạng tài liệu $[officename] Draw. Có thì tập tin được lưu bằng phiên bản chương trình cũ sẽ được mở bằng $[officename] Impress."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147317\n"
+"00000020.xhp\n"
+"par_id3144441\n"
"106\n"
"help.text"
-msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
-msgstr "<variable id=\"dtapsv\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 4</emph></variable>"
+msgid "When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>If a different printer is used the preview will be printed.</defaultinline></switchinline> When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file."
+msgstr "Khi bạn nhập khẩu tập tin EPS, tài liệu cũng hiển thị một ô xem thử đồ họa. Không có sẵn ô xem thử thì tài liệu hiển thị bộ giữ chỗ tương ứng với không của đồ họa. Dưới UNIX và Microsoft Windows, bạn có thể in ra tập tin đã nhập khẩu bẳng cách dùng máy in có khả năng PostScript. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>Dùng máy in khác thì in ra ô xem thử.</defaultinline></switchinline> Khi xuất khẩu đồ họa EPS, tiến trình tạo một ô xem thử theo định dạng TIFF hay EPSI. Xuất cả đồ họa EPS và đồ họa khác đều theo định dạng EPS thì tập tin không thay đổi có nhúng trong tập tin."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145592\n"
-"107\n"
+"00000020.xhp\n"
+"par_id3146120\n"
+"222\n"
"help.text"
-msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
-msgstr "<variable id=\"dtapsf\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 5</emph></variable>"
+msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax."
+msgstr "Cho phép tạo TIFF đa trang khi đồ họa được nhập/xuất theo định dạng TIFF. Đồ hoa được lấy dạng một tập hợp các ảnh riêng trong cùng một tập tin, chẳng hạn, những trang khác nhau của một bản Fax."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C46\n"
+"00000020.xhp\n"
+"par_id3159153\n"
+"109\n"
"help.text"
-msgid "<variable id=\"autopilotformular\">Click <emph>Use Wizard to Create Form</emph> in a database file window.</variable>"
-msgstr "<variable id=\"autopilotformular\">Nhấn vào mục <emph>Dùng Trợ lý để tạo biểu mẫu</emph> trong cửa sổ tập tin cơ sở dữ liệu.</variable>"
+msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information."
+msgstr "Bạn cũng có thể truy cập đến một số tùy chọn về $[officename] Draw và $[officename] Impress trong hộp thoại <emph>Tập tin > Xuất</emph>."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C5F\n"
+"00000020.xhp\n"
+"hd_id3153213\n"
+"228\n"
"help.text"
-msgid "<variable id=\"autopilotreport\">Click <emph>Use Wizard to Create Report</emph> in a database file window.</variable>"
-msgstr "<variable id=\"autopilotreport\">Nhấn vào mục <emph>Dùng Trợ lý để tạo báo cáo</emph> trong cửa sổ tập tin cơ sở dữ liệu.</variable>"
+msgid "PostScript"
+msgstr "PostScript"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C24\n"
+"00000020.xhp\n"
+"par_id3156444\n"
+"229\n"
"help.text"
-msgid "<variable id=\"webwizard\">Choose <emph>File - Wizards - Web Page</emph></variable>"
-msgstr "<variable id=\"webwizard\">Chọn lệnh <emph>Tập tin > Trợ lý > Trang Web</emph></variable>"
+msgid "To export a document or graphic in PostScript format:"
+msgstr "Để xuất khẩu tài liệu hay đồ họa theo định dạng PostScript:"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154064\n"
-"143\n"
+"00000020.xhp\n"
+"par_id3163714\n"
+"230\n"
"help.text"
-msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
-msgstr "<variable id=\"gruppen\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung. </variable>"
+msgid "If you have not yet done so, install a PostScript printer driver, such as the Apple LaserWriter driver."
+msgstr "Nếu bạn chưa làm như thế, hãy cài đặt một trình điều khiển máy in PostScript, v.d. trình điều khiển Apple LasterWriter."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152807\n"
-"144\n"
+"00000020.xhp\n"
+"par_id3153142\n"
+"231\n"
"help.text"
-msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 1</variable>"
-msgstr "<variable id=\"gruppen1\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 1</variable>"
+msgid "Print the document with the <emph>File - Print</emph> menu command."
+msgstr "In tài liệu bằng lệnh trình đơn <emph>Tập tin > In</emph>."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150571\n"
-"148\n"
+"00000020.xhp\n"
+"par_id3154149\n"
+"242\n"
"help.text"
-msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
-msgstr "<variable id=\"gruppen2\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 2</variable>"
+msgid "Select the PostScript printer in the dialog and mark the <emph>Print to file</emph> check box. A PostScript file will be created."
+msgstr "Chọn máy in PostScript trong hộp thoại, và đánh dấu trong hộp chọn <emph>In vào tập tin</emph>. Một tập tin PostScript sẽ được tạo."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145251\n"
-"145\n"
+"00000021.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
-msgstr "<variable id=\"gruppen3\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 3</variable>"
+msgid "XML File Formats"
+msgstr "Định dạng tập tin XML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156109\n"
-"146\n"
+"00000021.xhp\n"
+"bm_id3154408\n"
"help.text"
-msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
-msgstr "<variable id=\"gruppen4\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 4; cũng phải có khả năng với cơ sở dữ liệu.</variable>"
+msgid "<bookmark_value>exporting; XML files</bookmark_value> <bookmark_value>XML file formats</bookmark_value> <bookmark_value>extensions; file formats</bookmark_value> <bookmark_value>suffixes in file formats</bookmark_value> <bookmark_value>document types in $[officename]</bookmark_value> <bookmark_value>file formats; changing $[officename] defaults</bookmark_value> <bookmark_value>defaults;file formats in $[officename]</bookmark_value> <bookmark_value>file formats;OpenDocument/XML</bookmark_value> <bookmark_value>OpenDocument file formats</bookmark_value> <bookmark_value>ODF file formats</bookmark_value>"
+msgstr "<bookmark_value>xuất khẩu; tập tin XML</bookmark_value><bookmark_value>định dạng tập tin XML</bookmark_value><bookmark_value>phần mở rộng; định dạng tập tin</bookmark_value><bookmark_value>hậu tố trong tên tập tin (định dạng tập tin)</bookmark_value><bookmark_value>các kiểu tài liệu trong $[officename]</bookmark_value><bookmark_value>định dạng tập tin; thay đổi các giá trị mặc định $[officename] </bookmark_value><bookmark_value>giá trị mặc định;định dạng tập tin trong $[officename]</bookmark_value><bookmark_value>định dạng tập tin;OpenDocument/XML</bookmark_value><bookmark_value>định dạng tập tin OpenDocument (tài liệu mở)</bookmark_value><bookmark_value>định dạng tập tin ODF</bookmark_value>"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159347\n"
-"147\n"
+"00000021.xhp\n"
+"hd_id3154408\n"
+"2\n"
"help.text"
-msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
-msgstr "<variable id=\"gruppen5\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang cuối cùng</variable>"
+msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">XML File Formats</link></variable>"
+msgstr "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"Định dạng tập tin XML\">Định dạng tập tin XML</link></variable>"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153417\n"
-"150\n"
+"00000021.xhp\n"
+"par_id3148919\n"
+"3\n"
"help.text"
-msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Tài liệu</emph></variable>"
+msgid "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">By default, $[officename] loads and saves files in the OpenDocument file format.</ahelp>"
+msgstr "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">Mặc định là $[officename] nạp và lưu tập tin theo định dạng tập tin OpenDocument (tài liệu mở).</ahelp>"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150715\n"
-"151\n"
+"00000021.xhp\n"
+"par_idN10725\n"
"help.text"
-msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport1\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Tài liệu</emph></variable>"
+msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
+msgstr "Định dạng tập tin Tài liệu Mở (ODF) là một định dạng tập tin tiêu chuẩn được rất nhiều ứng dụng phần mềm sử dụng. Xem thêm thông tin ở bách khoa trực tuyến Wikipedia: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154274\n"
-"149\n"
+"00000021.xhp\n"
+"hd_id3156324\n"
+"4\n"
"help.text"
-msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport2\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Tài liệu</emph></variable>"
+msgid "OpenDocument file format names"
+msgstr "Tên định dạng tập tin OpenDocument"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146912\n"
-"171\n"
+"00000021.xhp\n"
+"par_id3154926\n"
+"5\n"
"help.text"
-msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
-msgstr "<variable id=\"euro\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Euro</emph></variable>"
+msgid "%PRODUCTNAME uses the following file formats:"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152962\n"
-"198\n"
+"00000021.xhp\n"
+"par_id3157898\n"
+"6\n"
"help.text"
-msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
-msgstr "Lệnh trình đơn <emph>Tập tin > Trợ lý > Nguồn Dữ liệu Địa chỉ</emph>"
+msgid "Document format"
+msgstr "Định dạng tài liệu"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145206\n"
-"191\n"
+"00000021.xhp\n"
+"par_id3149549\n"
+"7\n"
"help.text"
-msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
-msgstr "<variable id=\"addressimport2\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Thiết lập thêm</emph></variable>"
+msgid "File extension"
+msgstr "Phần mở rộng tập tin"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154756\n"
-"192\n"
+"00000021.xhp\n"
+"par_idN10762\n"
"help.text"
-msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
-msgstr "<variable id=\"addressimport3\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Chọn bảng</emph></variable>"
+msgid "ODF Text"
+msgstr "Văn bản ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153924\n"
-"193\n"
+"00000021.xhp\n"
+"par_idN10767\n"
"help.text"
-msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph><emph>- Data source title</emph></variable>"
-msgstr "<variable id=\"addressimport4\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Tên nguồn dữ liệu</emph></variable>"
+msgid "*.odt"
+msgstr "*.odt"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148995\n"
-"194\n"
+"00000021.xhp\n"
+"par_idN1076D\n"
"help.text"
-msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
-msgstr "<variable id=\"addressimport5\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Gán trường</emph></variable>"
+msgid "ODF Text Template"
+msgstr "Mẫu văn bản ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147338\n"
-"57\n"
+"00000021.xhp\n"
+"par_idN10772\n"
"help.text"
-msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
-msgstr "<variable id=\"schliessen\">Chọn lệnh <emph>Tập tin > Đóng</emph></variable>"
+msgid "*.ott"
+msgstr "*.ott"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156717\n"
-"10\n"
+"00000021.xhp\n"
+"par_idN10778\n"
"help.text"
-msgid "Choose <emph>File - Save</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Lưu</emph>"
+msgid "ODF Master Document"
+msgstr "Tài liệu chủ ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147533\n"
-"84\n"
+"00000021.xhp\n"
+"par_idN1077D\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
+msgid "*.odm"
+msgstr "*.odm"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148930\n"
-"11\n"
+"00000021.xhp\n"
+"par_idN10783\n"
"help.text"
-msgid "On Standard or Table Data Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph> hay <emph>Dữ liệu Bảng</emph>, nhấn vào"
+msgid "HTML Document"
+msgstr "Tài liệu HTML"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156712\n"
+"00000021.xhp\n"
+"par_idN10788\n"
"help.text"
-msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Biểu tượng</alt></image>"
+msgid "*.html"
+msgstr "*.html"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149109\n"
-"12\n"
+"00000021.xhp\n"
+"par_idN1078E\n"
"help.text"
-msgid "Save"
-msgstr "Lưu"
+msgid "HTML Document Template"
+msgstr "Mẫu tài liệu HTML"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10F11\n"
+"00000021.xhp\n"
+"par_idN10793\n"
"help.text"
-msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Biểu tượng</alt></image>"
+msgid "*.oth"
+msgstr "*.oth"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10F2E\n"
+"00000021.xhp\n"
+"par_idN10799\n"
"help.text"
-msgid "Save As"
-msgstr "Lưu dạng"
+msgid "ODF Spreadsheet"
+msgstr "Bảng tính ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150300\n"
-"99\n"
+"00000021.xhp\n"
+"par_idN1079E\n"
"help.text"
-msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
-msgstr "<variable id=\"htmlspeichern\">Trình đơn của $[officename] Draw hay $[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn « Tài liệu HTML » thì hộp thoại này mở tự động.</variable>"
+msgid "*.ods"
+msgstr "*.ods"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153387\n"
-"137\n"
+"00000021.xhp\n"
+"par_idN107A4\n"
"help.text"
-msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern1\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 1 của Trợ lý</variable>"
+msgid "ODF Spreadsheet Template"
+msgstr "Mẫu bảng tính ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154021\n"
-"138\n"
+"00000021.xhp\n"
+"par_idN107A9\n"
"help.text"
-msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern2\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 2 của Trợ lý</variable>"
+msgid "*.ots"
+msgstr "*.ots"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147246\n"
-"159\n"
+"00000021.xhp\n"
+"par_idN107AF\n"
"help.text"
-msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern3\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 3 của Trợ lý</variable>"
+msgid "ODF Drawing"
+msgstr "Bản vẽ ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145131\n"
-"140\n"
+"00000021.xhp\n"
+"par_idN107B4\n"
"help.text"
-msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern4\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 4 của Trợ lý</variable>"
+msgid "*.odg"
+msgstr "*.odg"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150235\n"
-"141\n"
+"00000021.xhp\n"
+"par_idN107BA\n"
"help.text"
-msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern5\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 5 của Trợ lý</variable>"
+msgid "ODF Drawing Template"
+msgstr "Mẫu bản vẽ ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145762\n"
-"142\n"
+"00000021.xhp\n"
+"par_idN107BF\n"
"help.text"
-msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern6\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 6 của Trợ lý</variable>"
+msgid "*.otg"
+msgstr "*.otg"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149735\n"
+"00000021.xhp\n"
+"par_idN107C5\n"
"help.text"
-msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>"
-msgstr "<variable id=\"bmpexport\">Chọn lệnh <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin BMP thì hộp thoại mở tự động</variable>"
+msgid "ODF Presentation"
+msgstr "Trình diễn ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154901\n"
-"58\n"
+"00000021.xhp\n"
+"par_idN107CA\n"
"help.text"
-msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
-msgstr "<variable id=\"saveall\">Chọn lệnh <emph>Tập tin > Lưu tất cả</emph></variable>"
+msgid "*.odp"
+msgstr "*.odp"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152479\n"
-"59\n"
+"00000021.xhp\n"
+"par_idN107D0\n"
"help.text"
-msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
-msgstr "<variable id=\"saveas\">Chọn lệnh <emph>Tập tin > Lưu dạng</emph></variable>"
+msgid "ODF Presentation Template"
+msgstr "Mẫu trình diễn ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148392\n"
-"60\n"
+"00000021.xhp\n"
+"par_idN107D5\n"
"help.text"
-msgid "Choose <emph>File - Reload</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Nạp lại</emph>"
+msgid "*.otp"
+msgstr "*.otp"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3166425\n"
-"61\n"
+"00000021.xhp\n"
+"par_idN107DB\n"
"help.text"
-msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
-msgstr "<variable id=\"info1\">Chọn lệnh <emph>Tập tin > Thuộc tính</emph></variable>"
+msgid "ODF Formula"
+msgstr "Công thức ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150381\n"
-"62\n"
+"00000021.xhp\n"
+"par_idN107E0\n"
"help.text"
-msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
-msgstr "<variable id=\"info2\">Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph></variable>"
+msgid "*.odf"
+msgstr "*.odf"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11163\n"
+"00000021.xhp\n"
+"par_idN1085B\n"
"help.text"
-msgid "Choose <emph>File - Digital Signatures</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Chữ ký số</emph>"
+msgid "ODF Database"
+msgstr "Cơ sở dữ liệu ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11168\n"
+"00000021.xhp\n"
+"par_idN10860\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Digital Signature</emph>"
-msgstr "Chọn lệnh <emph>Công cụ > Vĩ lệnh > Chữ ký số</emph>"
+msgid "*.odb"
+msgstr "*.odb"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11156\n"
+"00000021.xhp\n"
+"par_id9756157\n"
"help.text"
-msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
-msgstr "Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph>, sau đó nhấn vào cái nút <emph>Chữ ký số</emph>"
+msgid "%PRODUCTNAME Extension"
+msgstr "Phần mở rộng %PRODUCTNAME"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN1117E\n"
+"00000021.xhp\n"
+"par_id2089907\n"
"help.text"
-msgid "Double-click the Signature field on the Status Bar."
-msgstr "Nhấn đôi vào trường <emph>Chữ ký</emph> trên thanh <emph>Trạng thái</emph>."
+msgid "*.oxt"
+msgstr "*.oxt"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11173\n"
+"00000021.xhp\n"
+"par_idN1088F\n"
"help.text"
-msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</emph> button</variable>"
-msgstr "<variable id=\"digitalsigsel\">Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph>, sau đó nhấn vào cái nút <emph>Chữ ký số</emph>, sau đó nhấn vào nút <emph>Thêm</emph></variable>"
+msgid "The HTML format is not an OpenDocument format."
+msgstr "Định dạng HTML không phải là định dạng kiểu OpenDocument."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150662\n"
-"63\n"
+"00000021.xhp\n"
+"par_id4818872\n"
"help.text"
-msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
-msgstr "<variable id=\"info3\">Chọn lệnh <emph>Tập tin > Thuộc tính > Mô tả</emph></variable>"
+msgid "ODF Chart is the name of the file format for stand alone charts. This format with the extension *.odc is currently not in use."
+msgstr "Đồ thị ODF là tên của định dạng tập tin cho các đồ thị độc lập. Định dạng này (với phần mở rộng « *.odc ») không hiện thời được dùng."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153792\n"
-"64\n"
+"00000021.xhp\n"
+"par_idN107E3\n"
"help.text"
-msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
-msgstr "<variable id=\"info4\">Chọn thẻ <emph>Tập tin > Thuộc tính > Thuộc tính riêng</emph></variable>"
+msgid "Evolution of the OpenDocument format"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153701\n"
-"65\n"
+"00000021.xhp\n"
+"par_id0514200811525257\n"
"help.text"
-msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
-msgstr "<variable id=\"info5\">Chọn lệnh <emph>Tập tin > Thuộc tính > Thống kê</emph></variable>"
+msgid "The OpenDocument format evolves over time."
+msgstr "Định dạng Tài liệu Mở (ODF) cứ tiến triển."
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id315370199\n"
+"00000021.xhp\n"
+"par_id0514200811565671\n"
"help.text"
-msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
-msgstr "<variable id=\"info2\">Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph></variable>"
+msgid "ODF version"
+msgstr "Phiên bản ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149570\n"
-"66\n"
+"00000021.xhp\n"
+"par_id0519200811530375\n"
"help.text"
-msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
-msgstr "<variable id=\"info6\">Chọn lệnh <emph>Tập tin > Thuộc tính > Internet</emph></variable>"
+msgid "Date of standard approval by OASIS"
+msgstr "Ngày tiêu chuẩn được OASIS tán thành"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154275\n"
-"67\n"
+"00000021.xhp\n"
+"par_id0519200811530491\n"
"help.text"
-msgid "<variable id=\"dokuvorlage\">Choose <emph>File - Templates</emph></variable>"
-msgstr "<variable id=\"dokuvorlage\">Chọn lệnh <emph>Tập tin > Mẫu</emph></variable>"
+msgid "First supporting version of the software"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153199\n"
-"68\n"
+"00000021.xhp\n"
+"par_id0514200811565662\n"
"help.text"
-msgid "<variable id=\"verwalten\">Choose <emph>File - Templates - Organize</emph></variable>"
-msgstr "<variable id=\"verwalten\">Chọn lệnh <emph>Tập tin > Mẫu > Tổ chức</emph></variable>"
+msgid "ODF 1.0"
+msgstr "ODF 1.0"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157970\n"
-"176\n"
+"00000021.xhp\n"
+"par_id0519200811530487\n"
"help.text"
-msgid "Choose <emph>File - Templates - Organize - Address Book</emph> button"
-msgstr "Chọn lệnh <emph>Tập tin > Mẫu > Tổ chức > Sổ địa chỉ</emph>"
+msgid "2005-05-01"
+msgstr "2005-05-01"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155377\n"
-"178\n"
+"00000021.xhp\n"
+"par_id0519200811530455\n"
"help.text"
-msgid "Choose <emph>File - Templates - Address Book Source</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Mẫu > Nguồn Sổ địa chỉ</emph>"
+msgid "OpenOffice.org 1.1.5 or StarOffice 7"
+msgstr "OpenOffice.org 1.1.5 hay StarOffice 7"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154386\n"
-"177\n"
+"00000021.xhp\n"
+"par_id0514200811565787\n"
"help.text"
-msgid "Menu <emph>File - Templates - Address Book Source, </emph>then <emph>Configure</emph> button"
-msgstr "Chọn trình đơn <emph>Tập tin > Mẫu > Nguồn Sổ địa chỉ<emph></emph>, rồi bấm nút (nút) Quản trị</emph>"
+msgid "ODF 1.1"
+msgstr "ODF 1.1"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154323\n"
-"189\n"
+"00000021.xhp\n"
+"par_id0519200811530479\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>View</emph> - <emph>Data sources</emph></caseinline><caseinline select=\"CALC\">Choose <emph>View</emph> - <emph>Data sources</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Xem > Nguồn dữ liệu</emph></caseinline><caseinline select=\"CALC\">Chọn lệnh <emph>Xem > Nguồn dữ liệu</emph></caseinline></switchinline>"
+msgid "2007-02-02"
+msgstr "2007-02-02"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150516\n"
-"172\n"
+"00000021.xhp\n"
+"par_id0519200811530467\n"
"help.text"
-msgid "<variable id=\"dokuspei\">Choose <emph>File - Templates - Save</emph></variable>"
-msgstr "<variable id=\"dokuspei\">Chọn lệnh <emph>Tập tin > Mẫu > Lưu</emph></variable>"
+msgid "OpenOffice.org 2.2 or StarOffice 8 Update 4"
+msgstr "OpenOffice.org 2.2 hay StarOffice 8 Update 4"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149917\n"
-"173\n"
+"00000021.xhp\n"
+"par_id0514200811565762\n"
"help.text"
-msgid "<variable id=\"dokubear\">Choose <emph>File - Templates - Edit</emph></variable>"
-msgstr "<variable id=\"dokubear\">Chọn lệnh <emph>Tập tin > Mẫu > Sửa</emph></variable>"
+msgid "ODF 1.2"
+msgstr "ODF 1.2"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154930\n"
-"69\n"
+"00000021.xhp\n"
+"par_id0519200811530440\n"
"help.text"
-msgid "Menu<emph> File - Page Preview</emph>"
-msgstr "Lệnh trình đơn <emph>Tập tin > Xem thử trang</emph>"
+msgid "2011-09-30"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11366\n"
+"00000021.xhp\n"
+"par_id0519200811530471\n"
"help.text"
-msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icon</alt></image>"
-msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Biểu tượng</alt></image>"
+msgid "OpenOffice.org 3, StarOffice 9, Oracle Open Office"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11384\n"
+"00000021.xhp\n"
+"par_id1001200912381153\n"
"help.text"
-msgid "Page Preview"
-msgstr "Xem thử trang"
+msgid "ODF 1.2 (Extended)"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3163722\n"
-"70\n"
+"00000021.xhp\n"
+"par_id100120091238112\n"
"help.text"
-msgid "Choose <emph>File - Printer Settings</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Thiết lập Máy in</emph>"
+msgid "-"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148752\n"
-"71\n"
+"00000021.xhp\n"
+"par_id1001200912381174\n"
"help.text"
-msgid "Choose <emph>File - Templates - Organize - Commands (button)- Printer Settings</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Mẫu > Tổ chức > (nút) Lệnh > Thiết lập Máy in</emph>"
+msgid "OpenOffice.org 3.2 or StarOffice 9.2"
+msgstr "OpenOffice.org 3 hay StarOffice 9"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155529\n"
-"17\n"
+"00000021.xhp\n"
+"par_id0514200811525591\n"
"help.text"
-msgid "<variable id=\"senden\">Menu<emph> File - Send</emph></variable>"
-msgstr "<variable id=\"senden\">Lệnh trình đơn<emph>Tập tin > Gửi</emph></variable>"
+msgid "In current versions, you can select to save your documents using ODF 1.2 (default) or ODF 1.0/1.1 (for backward compatibility). Choose <item type=\"menuitem\">Tools - Options - Load/Save - General</item> and select the ODF format version."
+msgstr "Trong phiên bản OpenOffice.org 3 hay StarOffice 9, người dùng có khả năng lưu tài liệu theo định dạng ODF 1.2 (mặc định) hay ODF 1.0/1.1 (để tương thích ngược). Mở mục trình đơn <item type=\"menuitem\">Công cụ > Tùy chọn > Nạp/Lưu > Chung</item> và lựa chọn phiên bản định dạng ODF."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145386\n"
-"18\n"
+"00000021.xhp\n"
+"par_idN107E9\n"
"help.text"
-msgid "Choose <emph>File - Send - Document as E-mail</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Gửi > Tài liệu dạng Thư điện tử</emph>"
+msgid "If you want to exchange documents with users that still use OpenOffice.org 1 or StarOffice 7, save the document using the respectively named filter in the <emph>File type</emph> listbox."
+msgstr "Nếu bạn muốn trao đổi tài liệu với người dùng vẫn còn chạy ứng dụng OpenOffice.org 1 hay StarOffice 7, hãy lưu tài liệu dùng bộ lọc có tên tương ứng trong hộp danh sách <emph>Dạng tập tin</emph>."
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN113AB\n"
+"00000021.xhp\n"
+"par_id3146907\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
-msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Biểu tượng</alt></image>"
+msgid "If you want to define another file format as the default, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph> to find alternative file formats for each $[officename] document type."
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN113C8\n"
+"00000021.xhp\n"
+"hd_id3150398\n"
+"28\n"
"help.text"
-msgid "Document as E-mail"
-msgstr "Tài liệu dạng Thư điện tử"
+msgid "XML file structure"
+msgstr "Cấu trúc tập tin XML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145269\n"
-"222\n"
+"00000021.xhp\n"
+"par_id3149649\n"
+"29\n"
"help.text"
-msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
-msgstr "<variable id=\"export\">Chọn lệnh <emph>Tập tin > Xuất</emph></variable>"
+msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
+msgstr "Tài liệu theo định dạng OpenDocument được cất giữ dạng kho nén zip chứa tập tin XML. Để xem tập tin XML như vậy, bạn có thể giải nén kho bằng chương trình unzip (hay chương trình giải nén khác cũng mở kho nén zip). Tập tin OpenDocument chứa những tập tin và thư mục này:"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3166421\n"
-"219\n"
+"00000021.xhp\n"
+"par_id3153178\n"
+"30\n"
"help.text"
-msgid "Choose <emph>File - Export as PDF</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Xuất dạng PDF</emph>"
+msgid "The text content of the document is located in <emph>content.xml</emph>."
+msgstr "Nội dung văn bản của tài liệu nằm trong tập tin <emph>content.xml</emph>."
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150521\n"
+"00000021.xhp\n"
+"par_id3154068\n"
+"31\n"
"help.text"
-msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Biểu tượng</alt></image>"
+msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. On the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General</emph> tab page you can activate the use of indentations and line breaks by clearing the check box <emph>Size optimization for ODF format</emph>."
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155763\n"
-"220\n"
+"00000021.xhp\n"
+"par_id3145152\n"
+"32\n"
"help.text"
-msgid "Export Directly as PDF"
-msgstr "Xuất trực tiếp thành dạng PDF"
+msgid "The file <emph>meta.xml</emph> contains the meta information of the document, which you can enter under <emph>File - Properties</emph>."
+msgstr "Tập tin <emph>meta.xml</emph> chứa siêu thông tin về tài liệu, mà bạn có thể nhập vào hộp thoại sẽ mở khi bạn chọn lệnh trình đơn <emph>Tập tin > Thuộc tính</emph>."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145410\n"
-"210\n"
+"00000021.xhp\n"
+"par_id3150740\n"
+"33\n"
"help.text"
-msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Gửi > Thư điện tử dạng PDF</emph>"
+msgid "If you save a document with a password, <emph>meta.xml</emph> will not be encrypted."
+msgstr "Lưu tài liệu bằng mật khẩu thì tập tin <emph>meta.xml</emph> vẫn không được mật mã."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159160\n"
-"74\n"
+"00000021.xhp\n"
+"par_id3150391\n"
+"34\n"
"help.text"
-msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
-msgstr "<variable id=\"glo\">Chọn lệnh <emph>Tập tin > Gửi > Tạo tài liệu chủ</emph></variable>"
+msgid "The file <emph>settings.xml</emph> contains further information about the settings for this document."
+msgstr "Tập tin <emph>settings.xml</emph> chứa thêm thông tin về thiết lập cho tài liệu này."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149951\n"
-"13\n"
+"00000021.xhp\n"
+"par_id3150447\n"
+"35\n"
"help.text"
-msgid "Choose <emph>File - Print</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > In</emph>"
+msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
+msgstr "Tập tin <emph>styles.xml,</emph> chứa các kiểu dáng được áp dụng cho tài liệu, như đặt trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155259\n"
-"85\n"
+"00000021.xhp\n"
+"par_id3153353\n"
+"36\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
+msgid "The <emph>meta-inf/manifest.xml</emph> file describes the structure of the XML file."
+msgstr "Tập tin <emph>meta-inf/manifest.xml</emph> diễn tả cấu trúc của tập tin XML đó."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153830\n"
-"3\n"
+"00000021.xhp\n"
+"par_id3153368\n"
+"37\n"
"help.text"
-msgid "On Standard Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
+msgid "Additional files and folders can be contained in the packed file format."
+msgstr "Định dạng tập tin đã nén sẽ chứa thêm tập tin và thư mục."
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155187\n"
+"00000021.xhp\n"
+"hd_id3154299\n"
+"38\n"
"help.text"
-msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Biểu tượng</alt></image>"
+msgid "Definition of the XML formats"
+msgstr "Định nghĩa định dạng XML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3151268\n"
-"4\n"
+"00000021.xhp\n"
+"par_idN10AAD\n"
"help.text"
-msgid "Print File Directly"
-msgstr "In trực tiếp tập tin"
+msgid "The schema for the OpenDocument formats can be found on the <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> web site."
+msgstr "Bạn có thể tìm lược đồ cho các định dạng OpenDocument ở địa chỉ Web của tổ chứa <link href=\"http://www.oasis-open.org\">OASIS</link>."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153581\n"
-"5\n"
+"00000021.xhp\n"
+"par_idN10AC5\n"
"help.text"
-msgid "On the <emph>Page View</emph><emph>Bar</emph> of a text document, click"
-msgstr "Trên thanh <emph>Xem trang</emph> của tài liệu văn bản, nhấn vào"
+msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>"
+msgstr "<link href=\"text/shared/autopi/01130000.xhp\">Trợ lý Chuyển đổi Tài liệu</link>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153068\n"
+"00000099.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Biểu tượng</alt></image>"
+msgid "See also..."
+msgstr "Xem thêm..."
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3151239\n"
-"6\n"
+"00000099.xhp\n"
+"hd_id3147527\n"
+"1\n"
"help.text"
-msgid "Print Page Preview"
-msgstr "In ô xem thử trang"
+msgid "<variable id=\"siehe\">See also... </variable>"
+msgstr "<variable id=\"siehe\">Xem thêm... </variable>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155869\n"
-"72\n"
+"00000099.xhp\n"
+"par_id3143206\n"
+"71\n"
"help.text"
-msgid "Choose <emph>File - Exit</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Thoát</emph>"
+msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
+msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Công cụ > Kịch bản\">Công cụ > Kịch bản</link></variable>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152382\n"
-"86\n"
+"00000099.xhp\n"
+"par_id3156069\n"
+"83\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
+msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
+msgstr "Trên trang trợ giúp <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] chung\">$[officename] chung</link>, bạn có thể tìm các hướng dẫn thích hợp với mọi mô-đun, v.d. thao tác trình đơn và cửa sổ, tùy chỉnh $[officename], nguồn dữ liệu, bộ sưu tập và chức năng kéo thả."
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149328\n"
-"75\n"
+"00000099.xhp\n"
+"par_id3149662\n"
+"84\n"
"help.text"
-msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
-msgstr "<variable id=\"neuglobal\">Chọn lệnh <emph>Tập tin > Mới > Tài liệu chủ</emph></variable>"
+msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
+msgstr "Muốn xem trợ giúp về mô-đun khác thì chuyển đổi sang trợ giúp về nó, dùng hộp tổ hợp trong vùng dịch chuyển."
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145827\n"
-"76\n"
+"00000099.xhp\n"
+"par_id3154408\n"
+"85\n"
"help.text"
-msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
-msgstr "Chọn lệnh <emph>Tập tin > Mở</emph>, sau đó chọn mục « Văn bản CSV » dưới « Kiểu tập tin »"
+msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
+msgstr "<variable id=\"winmanager\">Chức năng này sẵn sàng hay không, phụ thuộc vào chương trình quản lý cửa sổ X của bạn. </variable>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id6071352\n"
+"00000099.xhp\n"
+"par_idN10632\n"
"help.text"
-msgid "Choose <emph>Data - Text to Columns</emph> (Calc)"
-msgstr "Chọn lệnh <emph>Dữ liệu > Văn bản sang Cột</emph> (Calc)"
+msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
+msgstr "<ahelp hid=\".uno:HelperDialog\">Cho phép bạn kích hoạt Trợ lý Trợ giúp tự động. Cũng có thể kích hoạt nó trong tùy thích <emph>Công cụ > Tùy chọn > $[officename] > Chung > Trợ lý Trợ giúp</emph>.</ahelp>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148608\n"
-"81\n"
+"00000099.xhp\n"
+"par_idN10665\n"
"help.text"
-msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
-msgstr "<variable id=\"epsexport\">Chọn lệnh <emph>Tập tin > Xuất</emph>: chọn kiểu tập tin EPS thì hộp thoại mở tự động</variable>"
+msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
+msgstr "<ahelp hid=\".uno:HelpTip\">Hiệu lực chức năng hiển thị nội dung Trợ giúp khác, v.d. tên biểu tượng dưới con trỏ chuột.</ahelp>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150107\n"
-"87\n"
+"00000099.xhp\n"
+"par_idN1067C\n"
"help.text"
-msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
-msgstr "<variable id=\"pbmppmpgm\">Chọn lệnh <emph>Tập tin > Xuất</emph>: chọn kiểu tập tin PBM, PPM hay PGM thì hộp thoại mở tự động</variable>"
+msgid "<ahelp hid=\".uno:ActiveHelp\">Enables the display of a brief description of menus and icons at the mouse pointer.</ahelp>"
+msgstr "<ahelp hid=\".uno:ActiveHelp\">Hiệu lực chức năng hiển thị mô tả ngắn về trình đơn và biểu tượng dưới con trỏ chuột.</ahelp>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145305\n"
-"96\n"
+"00000099.xhp\n"
+"par_id6200750\n"
"help.text"
-msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
-msgstr "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Chọn lệnh <emph>Tập tin > Phiên bản</emph></variable></variable>"
+msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in <emph>Tools - Customize - Keyboard</emph>, or in your desktop system."
+msgstr "Một số phím tắt nào đó có lẽ đã được gán cho môi trường làm việc trên máy tính của bạn. Vì vậy các phím tắt này không còn sẵn sàng cho %PRODUCTNAME. Hãy thử gán phím tắt khác cho %PRODUCTNAME, trong <emph>Công cụ > Tùy biến > Bàn phím</emph>, hoặc trong môi trường làm việc."
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
+"00000200.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Menu"
-msgstr "Trình đơn Chèn"
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"hd_id3156324\n"
-"1\n"
-"help.text"
-msgid "Insert Menu"
-msgstr "Trình đơn Chèn"
+msgid "Graphics Export Options"
+msgstr "Tùy chọn xuất EPS"
-#: 00000404.xhp
-#, fuzzy
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153808\n"
-"28\n"
+"00000200.xhp\n"
+"hd_id3150127\n"
"help.text"
-msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
-msgstr "<variable id=\"eispa\">Chọn<emph>Chèn > Cột</emph></variable>"
+msgid "Graphics Export Options"
+msgstr "Tùy chọn xuất EPS"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155619\n"
-"71\n"
+"00000200.xhp\n"
+"par_id3160463\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - Scan</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Ảnh > Quét</emph>"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
+msgstr "<ahelp hid=\"\" visibility=\"visible\">Xác định hình thức của danh thiếp của bạn.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150502\n"
-"30\n"
+"00000200.xhp\n"
+"par_id1\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - Scan - Select Source</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Ảnh > Quét > Chọn nguồn</emph>"
+msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155934\n"
-"32\n"
+"00000200.xhp\n"
+"par_id2\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - Scan - Request</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Ảnh > Quét > Yêu cầu</emph>"
+msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3143281\n"
-"34\n"
+"00000200.xhp\n"
+"par_id3\n"
"help.text"
-msgid "Choose <emph>Insert - Special Character</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Ký tự đặc biệt</emph>"
+msgid "The other file types show options dialogs where you can set the width and height of the exported image."
+msgstr ""
-#: 00000404.xhp
-#, fuzzy
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149525\n"
-"35\n"
+"00000200.xhp\n"
+"par_id4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > Tùy biến > (nút) Ký tự </emph> </caseinline></switchinline>"
+msgid "Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text."
+msgstr ""
-#: 00000404.xhp
-#, fuzzy
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3152372\n"
-"55\n"
+"00000200.xhp\n"
+"par_id388\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > Tùy biến > (nút) Ký tự </emph> </caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3156560\n"
-"36\n"
+"00000200.xhp\n"
+"hd_id3151330\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
-msgstr "Mở thành công cụ <emph>Chèn</emph>, sau đó nhấn vào"
+msgid "Width"
+msgstr "Bề rộng"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153527\n"
+"00000200.xhp\n"
+"par_id3154561\n"
"help.text"
-msgid "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149751\n"
-"37\n"
+"00000200.xhp\n"
+"hd_id3156027\n"
"help.text"
-msgid "Special Character"
-msgstr "Ký tự đặc biệt"
+msgid "Height"
+msgstr "Bề cao"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN107CD\n"
+"00000200.xhp\n"
+"par_id3147226\n"
"help.text"
-msgid "<variable id=\"moviesound\">Choose <emph>Insert - Movie and Sound</emph></variable>"
-msgstr "<variable id=\"moviesound\">Chọn lệnh <emph>Chèn > Phim và Âm thanh</emph></variable>"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN1085D\n"
+"00000200.xhp\n"
+"hd_id3150944\n"
"help.text"
-msgid "Movie and Sound"
-msgstr "Phim và Âm thanh"
+msgid "Resolution"
+msgstr "Độ phân giải"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3147242\n"
-"5\n"
+"00000200.xhp\n"
+"par_id3150129\n"
"help.text"
-msgid "<variable id=\"objekteinf\">Choose <emph>Insert - Object</emph></variable>"
-msgstr "<variable id=\"objekteinf\">Chọn lệnh <emph>Chèn > Đối tượng</emph></variable>"
+msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
+msgstr "<ahelp hid=\".\">Gồm lời kết. Chọn lời kết trong hộp liệt kê.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3152996\n"
-"6\n"
+"00000200.xhp\n"
+"hd_id3143534\n"
"help.text"
-msgid "Choose <emph>Insert - Object - OLE Object</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đối tượng OLE</emph>"
+msgid "More options"
+msgstr "Chọn nhiều hơn"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3146806\n"
-"7\n"
+"00000200.xhp\n"
+"par_id10\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
-msgstr "Mở thành công cụ <emph>Chèn</emph>, sau đó nhấn vào"
+msgid "For JPEG files you can set the color depth and the quality."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150254\n"
+"00000200.xhp\n"
+"par_id435923952\n"
"help.text"
-msgid "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự sắp xếp.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145417\n"
-"8\n"
+"00000200.xhp\n"
+"par_id355152952\n"
"help.text"
-msgid "OLE Object"
-msgstr "Đối tượng OLE"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the compression for the export. A high compression means a smaller, but slower to load image.</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153087\n"
-"9\n"
+"00000200.xhp\n"
+"par_id355152953\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Choose <emph>Insert - Object - Plug-in</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Chọn lệnh <emph>Chèn > Đối tượng > Phần bổ sung</emph></caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149785\n"
-"10\n"
+"00000200.xhp\n"
+"par_id11\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
+msgid "For BMP files you can set the compression and the RLE encoding."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154897\n"
+"00000200.xhp\n"
+"par_id312346798\n"
"help.text"
-msgid "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào biểu tượng này để duyệt qua các đồ hoạ.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148474\n"
-"11\n"
+"00000200.xhp\n"
+"par_id12\n"
"help.text"
-msgid "Plug-in"
-msgstr "Phần bổ sung"
+msgid "For PBM, PGM, and PPM files you can set the encoding."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153880\n"
-"53\n"
+"00000200.xhp\n"
+"par_id344441\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Sound</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Âm thanh</emph>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in binary format. The resulting file is smaller than a text file.</ahelp>"
+msgstr "<ahelp hid=\".\">Xuất khẩu tập tin theo định dạng nhị phân. Tập tin kết quả là nhỏ hơn tập tin văn bản (ASCII).</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3143278\n"
-"54\n"
+"00000200.xhp\n"
+"par_id3555783\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Video</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Ảnh động</emph>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in ASCII text format. The resulting file is larger than a binary file.</ahelp>"
+msgstr "<ahelp hid=\".\">Xuất khẩu tập tin theo định dạng văn bản ASCII. Tập tin kiểu này là lớn hơn tập tin nhị phân.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150393\n"
-"15\n"
+"00000200.xhp\n"
+"par_id13\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Formula</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Công thức</emph>"
+msgid "For PNG files you can set the compression and the interlaced mode."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153056\n"
-"16\n"
+"00000200.xhp\n"
+"par_id35674840\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ nếu nền của đối tượng đã chọn là trong suốt hoặc mờ đục.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148559\n"
+"00000200.xhp\n"
+"par_id14\n"
"help.text"
-msgid "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Biểu tượng</alt></image>"
+msgid "For GIF files you can set the transparency and the interlaced mode."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155858\n"
-"17\n"
+"00000200.xhp\n"
+"par_id31456456938\n"
"help.text"
-msgid "Formula"
-msgstr "Công thức"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>"
+msgstr "<ahelp hid=\"VCL:CHECKBOX:DLG_EXPORT_GIF:CBX_TRANSLUCENT\">Ghi rõ có nên lưu nền của ảnh như trong suốt hay không. Chỉ đối tượng sẽ hiện rõ trong ảnh GIF. Hãy dùng <emph>Bút chọn màu</emph> để đặt màu trong suốt trong ảnh.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153144\n"
-"38\n"
+"00000200.xhp\n"
+"par_id15\n"
"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu đồ thị</emph>"
+msgid "For EPS files you can set the preview, the color format, the compression, and the version."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3147578\n"
-"39\n"
+"00000200.xhp\n"
+"par_id3147779948\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart </emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Bạn phải in tập tin EPS trên máy in kiểu PostScript. Máy in khác sẽ chỉ in ô xem thử nhúng.</caseinline></switchinline>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154011\n"
-"40\n"
+"00000200.xhp\n"
+"par_id993155271\n"
"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu đồ thị</emph>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_TIFF\">Ghi rõ có nên xuất khẩu ảnh xem thử theo định dạng TIFF cùng với tập tin PostScript thật, hay không.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153573\n"
-"41\n"
+"00000200.xhp\n"
+"par_id993144740\n"
+"30\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_EPSI\">Ghi rõ đồ họa xem thử đơn sắc theo định dạng EPSI có nên được xuất khẩu cùng với tập tin PostScript, hay không.</ahelp> Định dạng này chỉ chứa các ký tự in được của mã ASCII 7-bit."
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3159179\n"
-"42\n"
+"00000200.xhp\n"
+"par_id993150935\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu đồ thị</emph>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL1\">Chức năng nén không sẵn sàng ở mức này. Hãy bật tùy chọn <emph>Mức 1</emph> nếu máy in PostScript không cung cấp khả năng của Mức 2.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3159196\n"
-"43\n"
+"00000200.xhp\n"
+"par_id993159201\n"
+"14\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL2\">Hãy bật tùy chọn <emph>Mức 2</emph> nếu thiết bị xuất hỗ trợ ảnh bitmap màu, đồ họa bảng chọn và đồ họa đã nén.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149664\n"
+"00000200.xhp\n"
+"par_id319947250\n"
"18\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Định dạng sàn biểu đồ.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154921\n"
-"19\n"
+"00000200.xhp\n"
+"par_id993147088\n"
+"20\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Định dạng đường giá trị trung bình.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3156005\n"
+"00000200.xhp\n"
+"par_id399153683\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị chú giải bên dưới đồ thị.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145749\n"
-"20\n"
+"00000200.xhp\n"
+"par_id319952780\n"
+"26\n"
"help.text"
-msgid "Chart"
-msgstr "Đồ thị"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155513\n"
-"44\n"
+"00000200.xhp\n"
+"par_id3147250\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - From File</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Ảnh > Từ tập tin</emph>"
+msgid "See <link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Import and Export Filter Information</link> for more information about filters."
+msgstr "Xem <link href=\"text/shared/00/00000020.xhp\" name=\"Thông tin về bộ lọc nhập/xuất khẩu\">Thông tin về bộ lọc nhập/xuất khẩu</link> để tìm thêm thông tin về bộ lọc."
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155308\n"
-"45\n"
+"00000206.xhp\n"
+"tit\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
-msgstr "Mở thành công cụ <emph>Chèn</emph>, sau đó nhấn vào"
+msgid "Dif Import/Export/ Lotus import/ dBASE import"
+msgstr "Nhập/xuất Dif / Nhập Lotus / Nhập dBase"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145594\n"
+"00000206.xhp\n"
+"hd_id3155354\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image>"
-msgstr "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Biểu tượng</alt></image>"
+msgid "Dif Import/Export/ Lotus import/ dBASE import"
+msgstr "Nhập/xuất Dif / Nhập Lotus / Nhập dBase"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149960\n"
-"46\n"
+"00000206.xhp\n"
+"par_id3150620\n"
+"4\n"
"help.text"
-msgid "From File"
-msgstr "Từ tập tin"
+msgid "Defines the options for import/export. These dialogs will be automatically shown if the corresponding file type is selected."
+msgstr "Xác định các tùy chọn về chức năng nhập/xuất khẩu. Các hộp thoại này sẽ hiển thị tự động nếu kiểu tập tin tương ứng được chọn."
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150037\n"
-"25\n"
+"00000206.xhp\n"
+"hd_id3149000\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Insert - Floating Frame</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Khung nổi</emph>"
+msgid "Character set"
+msgstr "Bộ ký tự"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3083281\n"
-"26\n"
+"00000206.xhp\n"
+"par_id3152790\n"
+"5\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Select the character set from the options used for import/export.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Hãy chọn bộ ký tự trong các tùy chọn được dùng cho chức năng nhập/xuất khẩu.</ahelp>"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3168607\n"
+"00000206.xhp\n"
+"par_id3152942\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Biểu tượng</alt></image>"
+msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
+msgstr "Để tìm thêm thông tin về bộ lọc, xem chủ đề <link href=\"text/shared/00/00000020.xhp\" name=\"Thông tin về bộ lọc nhập/xuất khẩu\">Thông tin về bộ lọc nhập/xuất khẩu</link>."
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148588\n"
-"27\n"
+"00000207.xhp\n"
+"tit\n"
"help.text"
-msgid "Floating Frame"
-msgstr "Khung nổi"
+msgid "Export text files"
+msgstr "Xuất khẩu tập tin văn bản"
-#: 00000404.xhp
-#, fuzzy
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150396\n"
-"47\n"
+"00000207.xhp\n"
+"hd_id3153116\n"
+"1\n"
"help.text"
-msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file</variable>"
-msgstr "<variable id=\"filterauswahl\">Mở tập tin có kiểu %PRODUCTNAME không nhận ra, và không phải là tập tin văn bản </variable>"
+msgid "Export text files"
+msgstr "Xuất khẩu tập tin văn bản"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10DDC\n"
+"00000207.xhp\n"
+"par_id3150379\n"
+"7\n"
"help.text"
-msgid "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "The <emph>Export text files</emph> dialog allows you to define the export options for text files. The dialog will be displayed if you save spreadsheet data as file type \"Text CSV\", and if the <emph>Edit filter settings</emph> check box is marked in the <emph>Save As</emph> dialog."
+msgstr "Hộp thoại <emph>Xuất khẩu tập tin văn bản</emph> thì cho phép bạn xác định các tùy chọn xuất khẩu cho tập tin văn bản. Hộp thoại sẽ hiển thị nếu bạn lưu dữ liệu bảng tính theo kiểu tập tin « Văn bản CSV », và nếu tùy chọn <emph>Sửa thiết lập lọc</emph> đã bật trong hộp thoại <emph>Lưu dạng</emph>."
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10DD1\n"
+"00000207.xhp\n"
+"hd_id3155577\n"
+"2\n"
"help.text"
-msgid "Fontwork Gallery"
-msgstr "Bộ sưu tập chữ nghệ thuật"
+msgid "Field options"
+msgstr "Tuỳ chọn trường"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10EA9\n"
+"00000207.xhp\n"
+"par_id3152427\n"
+"8\n"
"help.text"
-msgid "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "Defines the field separator, text separator and character set that is used for the text export."
+msgstr "Xác định dấu tách trường, dấu tách văn bản, và bộ ký tự cần dùng khi xuất khẩu văn bản."
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10ED8\n"
+"00000207.xhp\n"
+"hd_id3152876\n"
+"5\n"
"help.text"
-msgid "Basic Shapes"
-msgstr "Hình cơ bản"
+msgid "Character set"
+msgstr "Bộ ký tự"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10EEE\n"
+"00000207.xhp\n"
+"par_id3154689\n"
+"11\n"
"help.text"
-msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Specifies the character set for text export.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Ghi rõ bộ ký tự cần dùng khi xuất khẩu văn bản..</ahelp>"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F1D\n"
+"00000207.xhp\n"
+"hd_id3145138\n"
+"3\n"
"help.text"
-msgid "Symbol Shapes"
-msgstr "Hình ký hiệu"
+msgid "Field delimiter"
+msgstr "Dấu tách trường"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F33\n"
+"00000207.xhp\n"
+"par_id3150838\n"
+"9\n"
"help.text"
-msgid "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Choose or enter the field delimiter, which separates data fields.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Hãy chọn hay nhập dấu tách trường, mà phân cách các trường dữ liệu.</ahelp>"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F62\n"
+"00000207.xhp\n"
+"hd_id3154682\n"
+"4\n"
"help.text"
-msgid "Block Arrows"
-msgstr "Mũi tên khối"
+msgid "Text delimiter"
+msgstr "Dấu tách văn bản"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F78\n"
+"00000207.xhp\n"
+"par_id3154863\n"
+"10\n"
"help.text"
-msgid "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Choose or enter the text delimiter, which encloses every data field.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Hãy chọn hay nhập dấu tách văn bản, mà bao gồm mỗi trường dữ liệu.</ahelp>"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FA7\n"
+"00000207.xhp\n"
+"hd_id783149793\n"
"help.text"
-msgid "Flowcharts"
-msgstr "Lưu đồ"
+msgid "Quote all text cells"
+msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FBD\n"
+"00000207.xhp\n"
+"par_id3152778363\n"
"help.text"
-msgid "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character.</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FEC\n"
+"00000207.xhp\n"
+"hd_id7145298\n"
"help.text"
-msgid "Callouts"
-msgstr "Khung thoại"
+msgid "Save cell content as shown"
+msgstr "Lưu nội dung ô như hiển thị"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN11002\n"
+"00000207.xhp\n"
+"par_id5719779\n"
"help.text"
-msgid "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật theo mặc định thì dữ liệu sẽ được lưu như hiển thị, gồm có các định dạng con số đã áp dụng. Không bật tùy chọn này thì lưu chỉ nội dung dữ liệu thô, như trong phiên bản cũ của %PRODUCTNAME.</ahelp>"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN11031\n"
+"00000207.xhp\n"
+"par_id3541062\n"
"help.text"
-msgid "Stars"
-msgstr "Ngôi sao"
+msgid "Depending on the number format, saving cell content as shown may write values that during an import cannot be interpreted as numerical values anymore."
+msgstr "Phụ thuộc vào định dạng con số, tiến trình lưu nội dung ô như hiển thị có thể ghi giá trị trong tiến trình nhập khẩu mà không còn có thể được giải thích lại như giá trị thuộc số."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"tit\n"
+"00000207.xhp\n"
+"hd_id3149793\n"
+"12\n"
"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "Fixed column width"
+msgstr "Bề rộng cột cố định"
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"hd_id3149517\n"
-"1\n"
+"00000207.xhp\n"
+"par_id3152363\n"
+"13\n"
"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Exports all data fields with a fixed width.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Xuất mọi trường dữ liệu có bề rộng cố định.</ahelp>"
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3156053\n"
-"2\n"
+"00000207.xhp\n"
+"par_id3149283\n"
+"14\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
-msgstr "Chọn lệnh <emph>Dữ liệu > Lọc > Lọc chuẩn</emph>"
+msgid "The width of a data field in the exported text file is set to the current width of the corresponding column."
+msgstr "Bề rộng của trường dữ liệu trong tập tin văn bản đã xuất thì được đặt thành bề rộng của cột tương ứng."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3154350\n"
-"3\n"
+"00000207.xhp\n"
+"par_id3154116\n"
+"15\n"
"help.text"
-msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
-msgstr "Ô xem bảng cơ sở dữ liệu : nhấn vào biểu tượng <emph>Lọc chuẩn</emph> trên thanh công cụ <emph>Cơ sở dữ liệu</emph>"
+msgid "Values are exported in the format as currently seen in the cell."
+msgstr "Các giá trị được xuất theo định dạng hiện thời hiển thị trong ô."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3154183\n"
-"4\n"
+"00000207.xhp\n"
+"par_id3156414\n"
+"16\n"
"help.text"
-msgid "Form view: <emph>Standard Filter</emph> icon in the <emph>Form</emph> Bar"
-msgstr "Ô xem biểu mẫu : nhấn vào biểu tượng <emph>Lọc chuẩn</emph> trên thanh <emph>Biểu mẫu</emph>"
+msgid "If a value is longer than the fixed column width, it will be exported as a ### string."
+msgstr "Có giá trị dài hơn bề rộng cột cố định thì nó được xuất dạng chuỗi « ### »."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3155619\n"
+"00000207.xhp\n"
+"par_id3150178\n"
+"17\n"
"help.text"
-msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Biểu tượng</alt></image>"
+msgid "If a text string is longer than the fixed column width, it will be truncated at the end."
+msgstr "Có chuỗi văn bản dài hơn bề rộng cột cố định thì nó bị cắt ngắn."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3148731\n"
-"5\n"
+"00000207.xhp\n"
+"par_id3148548\n"
+"18\n"
"help.text"
-msgid "Standard Filter"
-msgstr "Lọc chuẩn"
+msgid "The alignment Left, Centered, and Right will be simulated by inserted blanks."
+msgstr "Vị trí canh lề trái, giữa và phải sẽ được mô phỏng bởi khoảng trắng đã chèn."
#: 00000208.xhp
msgctxt ""
@@ -4496,8 +4806,8 @@ msgctxt ""
"par_id3149987\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:MODALDIALOG:RID_SCDLG_ASCII\">Sets the import options for delimited data.</ahelp>"
-msgstr "<ahelp hid=\"SC:MODALDIALOG:RID_SCDLG_ASCII\">Đặt các tùy chọn về chức năng nhập khẩu dữ liệu định giới.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">Sets the import options for delimited data.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">Đặt các tùy chọn về chức năng nhập khẩu dữ liệu định giới.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4523,11 +4833,10 @@ msgctxt ""
"par_id3149495\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_CHARSET\">Specifies the character set to be used in the imported file.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_CHARSET\">Ghi rõ bộ ký tự cần dùng trong tập tin đã nhập khẩu.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/charset\">Specifies the character set to be used in the imported file.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/charset\">Ghi rõ bộ ký tự cần dùng trong tập tin đã nhập khẩu.</ahelp>"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"hd_id315478899\n"
@@ -4536,7 +4845,6 @@ msgid "Language"
msgstr "Ngôn ngữ"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"par_id314949588\n"
@@ -4575,8 +4883,8 @@ msgctxt ""
"par_id3150247\n"
"48\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_ASCII:NF_AT_ROW\">Specifies the row where you want to start the import.</ahelp> The rows are visible in the preview window at the bottom of the dialog."
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_ASCII:NF_AT_ROW\">Ghi rõ hàng ở đó bạn muốn bắt đầu nhập khẩu.</ahelp> Các hàng hiện rõ tong cửa sổ xem thử ở đáy hộp thoại."
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">Specifies the row where you want to start the import.</ahelp> The rows are visible in the preview window at the bottom of the dialog."
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">Ghi rõ hàng ở đó bạn muốn bắt đầu nhập khẩu.</ahelp> Các hàng hiện rõ tong cửa sổ xem thử ở đáy hộp thoại."
#: 00000208.xhp
msgctxt ""
@@ -4611,8 +4919,8 @@ msgctxt ""
"par_id3150710\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_FIXED\">Separates fixed-width data (equal number of characters) into columns.</ahelp> Click on the ruler in the preview window to set the width."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_FIXED\">Phân cách dữ liệu bề rộng cố định (số ký tự trùng) ra nhiều cột.</ahelp> Nhấn vào thước đo trong cửa sổ xem thử để đặt bề rộng."
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">Separates fixed-width data (equal number of characters) into columns.</ahelp> Click on the ruler in the preview window to set the width."
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">Phân cách dữ liệu bề rộng cố định (số ký tự trùng) ra nhiều cột.</ahelp> Nhấn vào thước đo trong cửa sổ xem thử để đặt bề rộng."
#: 00000208.xhp
msgctxt ""
@@ -4629,8 +4937,8 @@ msgctxt ""
"par_id3145136\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_SEPARATED\">Select the separator used in your data.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_SEPARATED\">Chọn dấu tách cần dùng trong dữ liệu.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\">Select the separator used in your data.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\">Chọn dấu tách cần dùng trong dữ liệu.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4647,8 +4955,8 @@ msgctxt ""
"par_id3147576\n"
"50\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_TAB\">Separates data delimited by tabs into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_TAB\">Phân cách ra nhiều cột dữ liệu định giới bằng khoảng tab.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">Separates data delimited by tabs into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">Phân cách ra nhiều cột dữ liệu định giới bằng khoảng tab.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4665,8 +4973,8 @@ msgctxt ""
"par_id3157863\n"
"52\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SEMICOLON\">Separates data delimited by semicolons into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SEMICOLON\">Phân cách ra nhiều cột dữ liệu định giới bằng dấu chấm phẩy.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\">Separates data delimited by semicolons into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\">Phân cách ra nhiều cột dữ liệu định giới bằng dấu chấm phẩy.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4683,8 +4991,8 @@ msgctxt ""
"par_id3150693\n"
"54\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_COMMA\">Separates data delimited by commas into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_COMMA\">Phân cách ra nhiều cột dữ liệu định giới bằng dấu phẩy.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">Separates data delimited by commas into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">Phân cách ra nhiều cột dữ liệu định giới bằng dấu phẩy.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4701,8 +5009,8 @@ msgctxt ""
"par_id3153663\n"
"56\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SPACE\">Separates data delimited by spaces into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SPACE\">Phân cách ra nhiều cột dữ liệu định giới bằng dấu cách.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">Separates data delimited by spaces into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">Phân cách ra nhiều cột dữ liệu định giới bằng dấu cách.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4719,8 +5027,8 @@ msgctxt ""
"par_id3156329\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_ASCII:ED_OTHER\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_ASCII:ED_OTHER\">Phân cách ra nhiều cột dữ liệu dùng dấu tách bạn ghi rõ. Ghi chú : dấu tách tự chọn cũng phải nằm trong dữ liệu.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">Phân cách ra nhiều cột dữ liệu dùng dấu tách bạn ghi rõ. Ghi chú : dấu tách tự chọn cũng phải nằm trong dữ liệu.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4737,8 +5045,8 @@ msgctxt ""
"par_id3153827\n"
"60\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CB_ASONCE\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CB_ASONCE\">Kết hợp các dấu tách liên tiếp và gỡ bỏ các trường dữ liệu rỗng nằm ở giữa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Kết hợp các dấu tách liên tiếp và gỡ bỏ các trường dữ liệu rỗng nằm ở giữa.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4755,8 +5063,8 @@ msgctxt ""
"par_id3156326\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_ASCII:CB_TEXTSEP\">Select a character to delimit text data. You can can also enter a character in the text box.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_ASCII:CB_TEXTSEP\">Chọn một ký tự để định giới dữ liệu kiểu văn bản. Bạn cũng có thể nhập vào hộp văn bản một ký tự.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/textdelimiter\">Select a character to delimit text data. You can can also enter a character in the text box.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/textdelimiter\">Chọn một ký tự để định giới dữ liệu kiểu văn bản. Bạn cũng có thể nhập vào hộp văn bản một ký tự.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4767,7 +5075,6 @@ msgid "Other options"
msgstr "Tùy chọn khác"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"par_id315366511\n"
@@ -4792,7 +5099,6 @@ msgid "<ahelp hid=\".\">When this option is enabled, fields or cells whose value
msgstr ""
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"hd_id314847422\n"
@@ -4857,8 +5163,8 @@ msgctxt ""
"par_id314995725\n"
"24\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_TYPE1\">Choose a column in the preview window and select the data type to be applied the imported data.</ahelp> You can select one of the following options:"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_TYPE1\">Trong cửa sổ xem thử, chọn một cột và chọn kiểu dữ liệu cần áp dụng cho dữ liệu đã nhập khẩu.</ahelp> Bạn có thể chọn một của những tùy chọn này:"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">Choose a column in the preview window and select the data type to be applied the imported data.</ahelp> You can select one of the following options:"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">Trong cửa sổ xem thử, chọn một cột và chọn kiểu dữ liệu cần áp dụng cho dữ liệu đã nhập khẩu.</ahelp> Bạn có thể chọn một của những tùy chọn này:"
#: 00000208.xhp
msgctxt ""
@@ -5038,7 +5344,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "6"
-msgstr "6"
+msgstr ""
#: 00000208.xhp
msgctxt ""
@@ -5056,7 +5362,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "8"
-msgstr "8"
+msgstr ""
#: 00000208.xhp
msgctxt ""
@@ -5139,3187 +5445,2855 @@ msgctxt ""
msgid "For more information, see <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
msgstr "Để tìm thêm thông tin, xem chủ đề <link href=\"text/shared/00/00000020.xhp\" name=\"Thông tin về bộ lọc nhập/xuất khẩu\">Thông tin về bộ lọc nhập/xuất khẩu</link>."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
+"00000210.xhp\n"
"tit\n"
"help.text"
-msgid "View Menu"
-msgstr "Trình đơn Xem"
+msgid "Warning Print Options"
+msgstr "Tùy chọn in cảnh báo"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"hd_id3156304\n"
+"00000210.xhp\n"
+"hd_id3145759\n"
"1\n"
"help.text"
-msgid "View Menu"
-msgstr "Trình đơn Xem"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146936\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>View - Zoom</emph>"
-msgstr "Chọn lệnh <emph>Xem > Thu Phóng</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3149962\n"
-"24\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Cũng có thể thu phóng với dấu (+) (-) (×) và (÷) trên vùng phím số </caseinline><caseinline select=\"IMPRESS\">Cũng có thể thu phóng với dấu (+) (-) (×) và (÷) trên vùng phím số </caseinline></switchinline>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3152895\n"
-"13\n"
-"help.text"
-msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
-msgstr "Nhấn-đôi hay nhấn-phải vào trường trên thanh <emph>Trạng thái</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3156183\n"
-"36\n"
-"help.text"
-msgid "Choose <emph>View - Toolbars</emph>"
-msgstr "Chọn lệnh <emph>Xem > Thanh công cụ</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3166445\n"
-"15\n"
-"help.text"
-msgid "<variable id=\"funktion\">Choose <emph>View - Toolbars - Standard</emph></variable>"
-msgstr "<variable id=\"funktion\">Chọn lệnh <emph>Xem > Thanh công cụ > Chuẩn</emph></variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3153748\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"werkzeug\">Choose <emph>View - Toolbars - Tools</emph></variable>"
-msgstr "<variable id=\"werkzeug\">Chọn lệnh <emph>Xem > Thanh công cụ > Công cụ</emph></variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3154317\n"
-"18\n"
-"help.text"
-msgid "<variable id=\"task\">Choose <emph>View - Status Bar</emph></variable>"
-msgstr "<variable id=\"task\">Chọn lệnh <emph>Xem > Thanh Trạng thái</emph></variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3152780\n"
-"19\n"
-"help.text"
-msgid "<variable id=\"farbleiste\">Choose <emph>View - Toolbars - Color Bar</emph></variable>"
-msgstr "<variable id=\"farbleiste\">Chọn lệnh <emph>Xem > Thanh công cụ > Thanh màu</emph></variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3156113\n"
-"43\n"
-"help.text"
-msgid "<variable id=\"ime\">Choose <emph>View - Input Method Status</emph></variable>"
-msgstr "<variable id=\"ime\">Chọn lệnh <emph>Xem > Trạng thái cách gõ</emph></variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3157909\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Internet</emph>"
-msgstr "Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Internet</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146806\n"
-"42\n"
-"help.text"
-msgid "Choose <emph>Insert - Hyperlink</emph>"
-msgstr "Chọn lệnh <emph>Chèn > Siêu liên kết</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3153717\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail & News</emph></variable>"
-msgstr "<variable id=\"hypdiamailnews\">Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Thư tín và Tin tức</emph></variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3149415\n"
-"34\n"
-"help.text"
-msgid "<variable id=\"hypdiadok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Document</emph></variable>"
-msgstr "<variable id=\"hypdiadok\">Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Tài liệu</emph></variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3150129\n"
-"35\n"
-"help.text"
-msgid "<variable id=\"hypdianeudok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>New Document</emph></variable>"
-msgstr "<variable id=\"hypdianeudok\">Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Tài liệu mới</emph></variable>"
+msgid "Warning Print Options"
+msgstr "Tùy chọn in cảnh báo"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3159269\n"
-"20\n"
+"00000210.xhp\n"
+"par_id3152352\n"
+"2\n"
"help.text"
-msgid "Choose <emph>View - Full Screen</emph>"
-msgstr "Chọn lệnh <emph>Xem > Toàn màn hình</emph>"
+msgid "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">The<emph> Warning Print Options </emph>dialog appears when the page setup does not match the defined print range.</ahelp> This is the case, for example, if you draw a rectangle that is larger than the current page format."
+msgstr "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">Hộp thoại <emph>Tùy chọn in cảnh báo</emph> xuất hiện khi thiết lập trang không tương ứng với phạm vi in đã xác định.</ahelp> Trường hợp này xảy ra, chẳng hạn, nếu bạn vẽ một hình chữ nhật lớn hơn định dạng trang hiện thời."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3149578\n"
-"25\n"
+"00000210.xhp\n"
+"hd_id3150620\n"
+"3\n"
"help.text"
-msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
-msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
+msgid "Print options"
+msgstr "Tùy chọn in"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153257\n"
+"00000210.xhp\n"
+"hd_id3156324\n"
+"5\n"
"help.text"
-msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Biểu tượng</alt></image>"
+msgid "Fit page to print range"
+msgstr "Vừa trang khít phạm vi in"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153627\n"
-"44\n"
+"00000210.xhp\n"
+"par_id3158405\n"
+"7\n"
"help.text"
-msgid "Full Screen On/Off (in Page Preview)"
-msgstr "Hiện/ẩn toàn màn hình (khi xem thử trang)"
+msgid "If you select the <emph>Fit page to print range </emph>option, the <emph>Warning Print Options</emph> dialog will not appear in subsequent print runs of this document."
+msgstr "Bật tùy chọn <emph>Vừa trang khít phạm vi in</emph> thì hộp thoại <emph>Tùy chọn in cảnh báo</emph> sẽ không xuất hiện vào lúc sau in tài liệu này."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3147559\n"
+"00000210.xhp\n"
+"hd_id3156553\n"
"8\n"
"help.text"
-msgid "If a text document or spreadsheet is open:"
-msgstr "Mở tài liệu kiểu văn bản hay bảng tính thì:"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3145069\n"
-"31\n"
-"help.text"
-msgid "Menu <emph>View - Data Sources</emph>"
-msgstr "lệnh trình đơn <emph>Xem > Nguồn dữ liệu</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3149046\n"
-"28\n"
-"help.text"
-msgid "F4 key"
-msgstr "Phím F4"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3153778\n"
-"help.text"
-msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Biểu tượng</alt></image>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146908\n"
-"39\n"
-"help.text"
-msgid "Data Sources"
-msgstr "Nguồn dữ liệu"
+msgid "Print on multiple pages"
+msgstr "In trên nhiều trang"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3154140\n"
+"00000210.xhp\n"
+"par_id3154823\n"
"9\n"
"help.text"
-msgid "Choose <emph>View - HTML Source</emph>"
-msgstr "Chọn lệnh <emph>Xem > Mã nguồn HTML</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3154947\n"
-"23\n"
-"help.text"
-msgid "Open context menu in an HTML document"
-msgstr "Mở trình đơn ngữ cảnh trong tài liệu HTML"
+msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Specifies whether to distribute the printout on multiple pages.</ahelp> The print range will be printed on multiple pages."
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Ghi rõ có nên phân phối bản in ra nhiều trang hay không.</ahelp> Phạm vi in sẽ được in trên nhiều trang."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3152935\n"
+"00000210.xhp\n"
+"hd_id3147010\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Biểu tượng</alt></image>"
+msgid "Trim"
+msgstr "Tỉa"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3144448\n"
+"00000210.xhp\n"
+"par_id3151111\n"
"11\n"
"help.text"
-msgid "HTML Source"
-msgstr "Mã nguồn HTML"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_idN1091B\n"
-"help.text"
-msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw) </variable>"
-msgstr "<variable id=\"grid\">Chọn lệnh <emph>Xem > Lưới</emph> (Impress hay Draw) </variable>"
-
-#: 00000403.xhp
-#, fuzzy
-msgctxt ""
-"00000403.xhp\n"
-"par_idN1092E\n"
-"help.text"
-msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw) </variable>"
-msgstr "<variable id=\"guides\">Chọn lệnh <emph>Xem > Nét dẫn</emph> (Impress hay Draw) </variable>"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Showing and Hiding Docked Windows"
-msgstr "Hiển thị và ẩn cửa sổ đã thả neo"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3085157\n"
-"1\n"
-"help.text"
-msgid "Showing and Hiding Docked Windows"
-msgstr "Hiển thị và ẩn cửa sổ đã thả neo"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3149948\n"
-"2\n"
-"help.text"
-msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
-msgstr "Mọi cửa sổ <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">thả neo</link> có một biểu tượng để điều khiển các thuộc tính hiển thị của cửa sổ đó."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3150502\n"
-"3\n"
-"help.text"
-msgid "To show or hide a docked window, click the icon."
-msgstr "Để hiển thị hay ẩn cửa sổ thả neo, nhấn vào biểu tượng này."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3150465\n"
-"13\n"
-"help.text"
-msgid "AutoShow and AutoHide Docked Windows"
-msgstr "Tự động hiển thị và Tự động ẩn cửa sổ thả neo"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3155504\n"
-"14\n"
-"help.text"
-msgid "You can click the edge of a hidden docked window to open the window."
-msgstr "Bạn có thể nhấn vào cạnh của cửa sổ thả neo mà bị ẩn, để mở cửa sổ."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3153257\n"
-"15\n"
-"help.text"
-msgid "The docked window closes automatically when you move the mouse pointer outside of the window."
-msgstr "Cửa sổ thả neo sẽ đóng tự động khi bạn di chuyển con trỏ chuột ra ngoài cửa sổ."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3154046\n"
-"16\n"
-"help.text"
-msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode."
-msgstr "Nhiều cửa sổ thả neo đều thì làm cùng một cửa sổ ở chế độ Tự động hiển thị/ẩn."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3145416\n"
-"18\n"
-"help.text"
-msgid "Drag and Drop"
-msgstr "Kéo thả"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3149578\n"
-"19\n"
-"help.text"
-msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode."
-msgstr "Nếu bạn kéo một đối tượng qua cạnh cửa sổ thả neo mà bị ẩn, cửa sổ mở ở chế độ Tự động hiển thị."
+msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing.</ahelp>"
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Ghi rõ có nên cắt ra cái gì nằm ở ngoại phạm vi in tối đa, không bao gồm nó trong bản in.</ahelp>"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
+"00000215.xhp\n"
"tit\n"
"help.text"
-msgid "General"
-msgstr "Chung"
+msgid "ASCII Filter Options"
+msgstr "Tùy chọn lọc ASCII"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3158397\n"
+"00000215.xhp\n"
+"hd_id3146856\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/00/01050000.xhp\" name=\"Chung\">Chung</link>"
+msgid "ASCII Filter Options"
+msgstr "Tùy chọn lọc ASCII"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3159242\n"
+"00000215.xhp\n"
+"par_id3153070\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>"
-msgstr ""
+msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name."
+msgstr "Bạn có thể ghi rõ những tùy chọn nào, như phông cơ bản, ngôn ngữ, bộ ký tự và chỗ ngắt, được nhập/xuất khẩu cùng với tài liệu văn bản. Hộp thoại này xuất hiện khi bạn nạp tập tin ASCII với bộ lọc « Mã hoá văn bản », hoặc khi bạn lưu tài liệu lần thứ nhất, hoặc khi bạn « Lưu dạng » với tên khác."
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3150264\n"
+"00000215.xhp\n"
+"hd_id3159217\n"
"3\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154094\n"
+"00000215.xhp\n"
+"par_id3155577\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Displays the name of the theme.</ahelp> If no name has been assigned, you can type a new name in the text box."
-msgstr "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Hiển thị tên của sắc thái.</ahelp> Chưa gán tên thì bạn có thể gõ tên mới vào hộp văn bản."
+msgid "Defines the settings for importing or exporting your file. When exporting, only the character set and paragraph break can be defined."
+msgstr "Xác định thiết lập để nhập/xuất khẩu tập tin của bạn. Khi xuất khẩu, chỉ có thể xác định bộ ký tự và chỗ ngắt đoạn văn."
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147089\n"
+"00000215.xhp\n"
+"hd_id3146959\n"
"5\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "Character set"
+msgstr "Bộ ký tự"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3145071\n"
+"00000215.xhp\n"
+"par_id3143206\n"
"6\n"
"help.text"
-msgid "Specifies the object type."
-msgstr "Ghi rõ kiểu đối tượng."
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Specifies the character set of the file for export or import.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Ghi rõ bộ ký tự của tập tin cần nhập/xuất khẩu.</ahelp>"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147576\n"
+"00000215.xhp\n"
+"hd_id3154926\n"
"7\n"
"help.text"
-msgid "Location"
-msgstr "Vị trí"
+msgid "Default fonts"
+msgstr "Phông mặc định"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3146797\n"
+"00000215.xhp\n"
+"par_id3151262\n"
"8\n"
"help.text"
-msgid "Specifies the complete object path."
-msgstr "Ghi rõ đường dẫn hoàn toàn đến đối tượng."
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"tit\n"
-"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\">By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\">Bằng cách đặt phông chữ mặc định, bạn ghi rõ văn bản nên được hiển thị theo một phông nào đó. Chỉ có thể chọn phông mặc định khi nhập khẩu.</ahelp>"
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"hd_id3155620\n"
-"1\n"
-"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"par_id3152823\n"
-"4\n"
-"help.text"
-msgid "<variable id=\"werkzeugleiste\">Icon on the Tools bar: </variable>"
-msgstr "<variable id=\"werkzeugleiste\">Biểu tượng trên thanh <emph>Công cụ</emph> : </variable>"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"par_id3152352\n"
-"5\n"
-"help.text"
-msgid "<variable id=\"textobjektleiste\">Icon on the Formatting Bar: </variable>"
-msgstr "<variable id=\"textobjektleiste\">Biểu tượng trên thanh <emph>Định dạng</emph> : </variable>"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"par_id3151370\n"
-"7\n"
-"help.text"
-msgid "<variable id=\"objektleiste\">Icon on the Formatting Bar: </variable>"
-msgstr "<variable id=\"objektleiste\">Biểu tượng trên thanh <emph>Định dạng</emph> : </variable>"
-
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3149748\n"
+"00000215.xhp\n"
+"hd_id3154894\n"
"9\n"
"help.text"
-msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
-msgstr "<variable id=\"diaobjektleiste\">Biểu tượng trên thanh <emph>Xem ảnh chiếu</emph> : </variable>"
+msgid "Language"
+msgstr "Ngôn ngữ"
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3156553\n"
+"00000215.xhp\n"
+"par_id3153323\n"
"10\n"
"help.text"
-msgid "<variable id=\"symbolleistenneu\">This overview describes the default toolbar configuration for $[officename].</variable>"
-msgstr "<variable id=\"symbolleistenneu\">Toàn cảnh này diễn tả cấu hình thanh công cụ mặc định cho $[officename].</variable>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\">Specifies the language of the text, if this has not already been defined. This setting is only available when importing.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\">Ghi rõ ngôn ngữ của văn bản, nếu giá trị chưa được xác định. Thiết lập này chỉ sẵn sàng khi nhập khẩu.</ahelp>"
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3153551\n"
+"00000215.xhp\n"
+"hd_id3147143\n"
"11\n"
"help.text"
-msgid "Asian Language Support"
-msgstr "Hỗ trợ Ngôn ngữ Châu Á"
+msgid "Paragraph break"
+msgstr "Ngắt đoạn văn"
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3156326\n"
+"00000215.xhp\n"
+"par_id3143281\n"
"12\n"
"help.text"
-msgid "These commands can only be accessed after you enable support for Asian languages in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>."
-msgstr ""
+msgid "Defines the type of paragraph break for a text line."
+msgstr "Xác định cách ngắt đoạn văn cho dòng văn bản. (Các tên ký tự theo đây bắt nguồn từ máy đánh chữ: không còn có nghĩa lại, nhưng phần mềm khác nhau sẽ đợi ký tự, hay tổ hợp ký tự khác nhau để bắt đầu dòng mới)."
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"tit\n"
+"00000215.xhp\n"
+"hd_id3150935\n"
+"13\n"
"help.text"
-msgid "About Import and Export Filters"
-msgstr "Thông tin về bộ lọc Nhập/Xuất"
+msgid "CR & LF"
+msgstr "CR & LF"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"bm_id3152952\n"
+"00000215.xhp\n"
+"par_id3145829\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>import filters</bookmark_value><bookmark_value>export filters</bookmark_value><bookmark_value>filters; for import and export</bookmark_value><bookmark_value>files; filters and formats</bookmark_value><bookmark_value>formats; on opening and saving</bookmark_value><bookmark_value>importing; HTML and text documents</bookmark_value><bookmark_value>exporting;HTML and text documents</bookmark_value><bookmark_value>text documents; importing/exporting</bookmark_value><bookmark_value>HTML documents; importing/exporting</bookmark_value><bookmark_value>UTF-8/UCS2 support</bookmark_value><bookmark_value>HTML; export character set</bookmark_value><bookmark_value>PostScript; creating files</bookmark_value><bookmark_value>exporting;to PostScript format</bookmark_value>"
-msgstr "<bookmark_value>bộ lọc nhập khẩu</bookmark_value><bookmark_value>bộ lọc xuất khẩu</bookmark_value><bookmark_value>bộ lọc; để nhập/xuất khẩu</bookmark_value><bookmark_value>tập tin; bộ lọc và định dạng</bookmark_value><bookmark_value>định dạng; khi mở và lưu</bookmark_value><bookmark_value>nhập khẩu; tài liệu kiểu HTML và văn bản</bookmark_value><bookmark_value>xuất khẩu; tài liệu kiểu HTML và văn bản</bookmark_value><bookmark_value>tài liệu văn bản; nhập/xuất khẩu</bookmark_value><bookmark_value>tài liệu HTML; nhập/xuất khẩu</bookmark_value><bookmark_value>Hỗ trợ UTF-8/UCS2</bookmark_value><bookmark_value>HTML; bộ ký tự xuất</bookmark_value><bookmark_value>PostScript; tạo tập tin</bookmark_value><bookmark_value>xuất khẩu;theo định dạng PostScript</bookmark_value>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">Nhập ký tự\"Carriage Return\" và \"Linefeed\" để ngắt đoạn văn. Tùy chọn này làm mặc định.</ahelp>"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3152952\n"
-"1\n"
+"00000215.xhp\n"
+"hd_id3153551\n"
+"15\n"
"help.text"
-msgid "About Import and Export Filters"
-msgstr "Thông tin về bộ lọc Nhập/Xuất"
+msgid "CR"
+msgstr "CR"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3143272\n"
-"2\n"
+"00000215.xhp\n"
+"par_id3156042\n"
+"16\n"
"help.text"
-msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> you can also open and save many foreign XML formats."
-msgstr "Trong $[officename], ra khỏi các <link href=\"text/shared/00/00000021.xhp\" name=\"định dạng XML\">định dạng XML</link> sở hữu, bạn cũng có thể mở và lưu theo nhiều định dạng XML ngoại."
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">Produces a \"Carriage Return\" as the paragraph break.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">Nhập ký tự \"Carriage Return\" để ngắt đoạn văn.</ahelp>"
-#: 00000020.xhp
-#, fuzzy
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152414\n"
-"3\n"
+"00000215.xhp\n"
+"hd_id3150713\n"
+"17\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Dưới UNIX, không thể tự động nhận ra một số định dạng tập tin nào đó. </caseinline><defaultinline>$[officename] bình thường nhận ra định dạng tập tin đúng một cách tự động khi mở tập tin.</defaultinline></switchinline> Có thể có trường hợp trong đó bạn cần phải tự chọn kiểu tập tin trong hộp thoại <emph>Mở</emph>, chẳng hạn nếu bạn có một bảng cơ sở dữ liệu theo định dạng văn bản mà bạn muốn mở theo định dạng cơ sở dữ liệu, bạn cần phải ghi rõ kiểu tập tin « Văn bản CSV » sau khi chọn tập tin đó."
+msgid "LF"
+msgstr "LF"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3148668\n"
-"238\n"
+"00000215.xhp\n"
+"par_id3145090\n"
+"18\n"
"help.text"
-msgid "Basic Macros in MS Office Documents"
-msgstr "Vĩ lệnh Basic trong tài liệu MS Office"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/lf\">Produces a \"Linefeed\" as the paragraph break.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/lf\">Nhập ký tự \"Linefeed\" để ngắt đoạn văn.</ahelp>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156211\n"
-"239\n"
+"00000401.xhp\n"
+"tit\n"
"help.text"
-msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\">Load/Save - VBA Properties</link> you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents."
-msgstr ""
+msgid "File Menu"
+msgstr "Trình đơn Tập tin"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3154232\n"
-"5\n"
+"00000401.xhp\n"
+"hd_id3149976\n"
+"1\n"
"help.text"
-msgid "Notes regarding external formats and file types"
-msgstr "Ghi chú về định dạng và kiểu tập tin bên ngoài"
+msgid "File Menu"
+msgstr "Trình đơn Tập tin"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154230\n"
-"226\n"
+"00000401.xhp\n"
+"par_id389416\n"
"help.text"
-msgid "Even if they are not installed, some filters can be selected in the <emph>Open</emph> and <emph>Save</emph> dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require."
-msgstr "Thậm chí nếu chưa cài đặt, bạn vẫn còn có thể lựa chọn một số bộ lọ trong hộp thoại <emph>Mở</emph> và <emph>Lưu</emph>. Lựa chọn bộ lọc như vậy thì thấy một thông điệp cũng cho phép bạn tự cài đặt bộ lọc đó."
+msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
+msgstr "<variable id=\"webhtml\">Chọn lệnh <emph>Tập tin > Xem thử trong trình duyệt Web</emph></variable>"
-#: 00000020.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149999\n"
-"200\n"
+"00000401.xhp\n"
+"par_id3154812\n"
+"50\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the <emph>Modify</emph> option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in \"Optional Components\".</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Muốn cài đặt thêm bộ lọc hay gỡ bỏ từng bộ lọc khỏi bản cài đặt thì đóng %PRODUCTNAME, khởi chạy chương trình Thiết lập, sau đó bật tùy chọn <emph>Sửa</emph>. Hành động này mở một hộp thoại trong đó bạn có thể thêm hay gỡ bỏ từng thành phần của %PRODUCTNAME. Cũng có thể tìm các bộ lọc đồ họa trong « Thành phần tùy chọn ».</caseinline></switchinline>"
+msgid "Choose <emph>File - New</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Mới</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3156027\n"
-"7\n"
+"00000401.xhp\n"
+"par_id3153070\n"
+"186\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing and Exporting Text Documents</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Nhập/xuất khẩu tài liệu văn bản</defaultinline></switchinline>"
+msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
+msgstr "Biểu tượng <emph>Mới</emph> trên thanh <emph>Chuẩn</emph> (biểu tượng hiển thị kiểu của tài liệu mới)"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145669\n"
-"8\n"
+"00000401.xhp\n"
+"par_id3150127\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to MS Word, and not everything can be imported.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chương trình $[officename] Writer có khả năng đọc được một số phiên bản khác nhau của định dạng văn bản Microsoft Word. Bạn cũng có thể lưu văn bản theo định dạng Word. Tuy nhiên, không phải tất cả các thứ sẵn sàng trong $[officename] Writer sẽ truyền được sang MS Word, và ngược lại.</defaultinline></switchinline>"
+msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Biểu tượng</alt></image>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150144\n"
-"233\n"
+"00000401.xhp\n"
+"par_id3154232\n"
+"199\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing is normally not problematic. Even redlining information and controls are imported (and exported) so that $[officename] recognizes inserted or deleted text in Word documents as well as font attributes that have been modified. Different coloring for each author and the time of such changes is also included. When graphic text boxes and labels are imported from templates, most of the attributes are also imported as direct paragraph and drawing attributes. However, some of the attributes may be lost during the import procedure.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Công việc nhập khẩu thường chạy được. Ngay cả các điều khiển và thông tin đường màu đỏ sẽ nhập/xuất khẩu được để $[officename] nhận ra chuỗi đã chèn hay xoá trong tài liệu Word, cũng như các thuộc tính phông chữ bị sửa đổi. Cũng truyền được màu sắc riêng cho mỗi tác giả, và các thời gian sửa đổi. Khi hộp văn bản và nhãn kiểu đồ hoa được nhập khẩu từ mẫu, phần lớn các thuộc tính cũng được nhập khẩu thành các thuộc tính trực tiếp kiểu đoạn văn và vẽ. Tuy nhiên, một số thuộc tính vẫn còn có thể bị mất trong khi nhập khẩu.</defaultinline></switchinline>"
+msgid "New"
+msgstr "Mới"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149095\n"
-"10\n"
+"00000401.xhp\n"
+"par_id3154894\n"
+"179\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>It is also possible to import and export <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link> files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Cũng có thể nhập/xuất khẩu tập tin kiểu <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link>. Định dạng tập tin này có thể được dùng để trao đổi văn bản có kiểu dáng giữa các ứng dụng và nền tảng khác nhau. Bằng cách này, rất nhiều định dạng được phần lớn chương trình đọc sẽ được truyền, không có sao. Bảng nháp cũng sử dụng định dạng RTF khi bạn chèn phần của bảng tính từ $[officename] Calc thông qua <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> vào $[officename] Writer.</defaultinline></switchinline>"
+msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgstr "Tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3151378\n"
-"237\n"
+"00000401.xhp\n"
+"par_id3157898\n"
+"82\n"
"help.text"
-msgid "The filter <emph>Text Encoded</emph> helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break."
-msgstr "Bộ lọc <emph>Văn bản đã mã hoá</emph> thì giúp bạn mở và lưu tài liệu văn bản theo phông chữ mã hoá khác. Bộ lọc sẽ mở hộp thoại cho phép bạn lựa chọn bộ ký tự, phông chữ mặc định, ngôn ngữ và cách ngắt đoạn văn."
+msgid "Menu <emph>File - New</emph><emph>- Templates</emph>."
+msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3149763\n"
-"11\n"
+"00000401.xhp\n"
+"par_id3149140\n"
+"187\n"
"help.text"
-msgid "Importing and Exporting in HTML Format"
-msgstr "Nhập/xuất khẩu theo định dạng HTML"
+msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgstr "Tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150244\n"
-"198\n"
+"00000401.xhp\n"
+"par_id3149798\n"
+"160\n"
"help.text"
-msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks."
-msgstr "Trong $[officename] Writer, bạn có thể chèn vào tài liệu HTML cước chú và kết chú. Bản ghi chú này được xuất thành siêu thẻ (meta). Các ký tự của cước/kết chú được xuất thành siêu liên kết."
+msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
+msgstr "<variable id=\"etiketten\">Chọn lệnh <emph>Tập tin > Mới > Nhãn</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149800\n"
-"199\n"
+"00000401.xhp\n"
+"par_id3147226\n"
+"161\n"
"help.text"
-msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
-msgstr "Bản ghi chú được dùng để bao gồm ký tự lạ trong tài liệu HTML. Mỗi bản ghi chú bắt đầu với « HTML:... » và kết thúc bằng « > » thì được xử lý như mã HTML, nhưng được xuất không có những dấu hiệu này. Vài thẻ chung quanh văn bản cũng có thể nằm sau « HTML:... ». Các ký tự có dấu phụ được chuyển đổi sang bộ ký tự ANSI. Bản ghi chú sẽ được tạo trong khi nhập khẩu (chẳng hạn cho siêu thẻ không có chỗ trong thuộc tính tập tin hay thẻ lạ)."
+msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
+msgstr "<variable id=\"etikettenein\">Chọn lệnh <emph>Tập tin > Mới > Nhãn > Nhãn</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149734\n"
-"201\n"
+"00000401.xhp\n"
+"par_id3154522\n"
+"162\n"
"help.text"
-msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed."
-msgstr "Chức năng nhập khẩu HTML của chương trình $[officename] Writer có khả năng đọc tập tin dùng bảng mã ký tự UTF-8 hay UCS2. (Tiếng Việt dùng UTF-8.) Vậy nó có thể hiển thị tất cả các ký tự nằm trong bộ ký tự ANSI hay bộ ký tự của hệ thống."
+msgid "Choose <emph>File - New - Labels - Format</emph> tab"
+msgstr "Chọn lệnh <emph>Tập tin > Mới > Nhãn > Định dạng</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149578\n"
-"240\n"
+"00000401.xhp\n"
+"par_id3154983\n"
+"163\n"
"help.text"
-msgid "When exporting to HTML, the character set selected in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
-msgstr ""
+msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
+msgstr "Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Định dạng</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153146\n"
-"197\n"
+"00000401.xhp\n"
+"par_id3157958\n"
+"164\n"
"help.text"
-msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, you select Netscape Navigator, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
-msgstr ""
+msgid "Choose <emph>File - New - Labels - Options</emph> tab"
+msgstr "Chọn lệnh <emph>Tập tin > Mới > Nhãn > Tùy chọn</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154143\n"
-"130\n"
+"00000401.xhp\n"
+"par_id3153311\n"
+"165\n"
"help.text"
-msgid "The \"font\" property corresponds to Netscape Navigator; that is, before the font size you can specify optional values for \"font-style\" (italic, none), \"font-variant\" (normal, small-caps) and \"font-weight\" (normal, bold)."
-msgstr "Thuộc tính « font » (phông chữ) tương ứng với Netscape Navigator; tức là, trước cỡ chữ, bạn mà bạn có thể khai báo các giá trị tùy chọn cho «kiểu dáng phông»: in nghiêng hay không có, «biến thể phông»: bình thường, chữ hoa nhỏ, và «độ đậm»: bình thường hay đậm."
+msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
+msgstr "Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Tùy chọn</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153760\n"
-"131\n"
+"00000401.xhp\n"
+"par_id3152780\n"
+"166\n"
"help.text"
-msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
-msgstr "Chẳng hạn, « Font: bold italic small-caps 12pt/200% Arial, Helvetica » chuyển đổi sang phông in đậm, in nghiêng, chữ hoa nhỏ, kích cỡ 12 điểm, khoảng cách đôi, với nhóm phông Arial, không có thì Helvetica."
+msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
+msgstr "<variable id=\"visikart\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150129\n"
-"132\n"
+"00000401.xhp\n"
+"par_id3156346\n"
+"167\n"
"help.text"
-msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
-msgstr "« Font: 10pt » thì chuyển đổi sang phông chữ có kích cỡ 10 điểm, không in đậm, in nghiêng hay chữ hoa nhỏ."
+msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
+msgstr "<variable id=\"visikartform\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Phương tiện</emph> </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3155135\n"
-"14\n"
+"00000401.xhp\n"
+"par_id3152824\n"
+"168\n"
"help.text"
-msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
-msgstr "Đặt chương trình MS Internet Explorer hay $[officename] Writer làm đích xuất thì kích cỡ của trường điều khiển và các viền bên trong được xuất thành kiểu dáng (định dạng in ấn). Các thuộc tính kích cỡ kiểu CSS1 dựa vào giá trị \"width\" (bề rộng) và \"height\" (chiều cao). Thuộc tính \"Margin\" (lề) được dùng để đặt các lề cùng kích cỡ ở mọi bên trang. Để cho phép lề khác nhau thì dùng thuộc tính \"Margin-Left\" (lề bên trái), \"Margin-Right\" (lề bên phải), \"Margin-Top\" (lề bên trên) và \"Margin-Bottom\" (lề bên dưới)."
+msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
+msgstr "<variable id=\"viskartinhalt\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Danh thiếp</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3148473\n"
-"15\n"
+"00000401.xhp\n"
+"par_id3149819\n"
+"169\n"
"help.text"
-msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
-msgstr "Khoảng cách giữa đồ họa hay phần mở rộng và nội dung có thể được đặt riêng để xuất dạng $[officename] Writer hay MS Internet Explorer. Nếu lề bên trên/dưới hay phải/trái được đặt khác, thì các khoảng cách được xuất theo một tùy chọn « STYLE » (kiểu dáng) cho thẻ tương ứng dạng thuộc tính kích cỡ CSS1 « Margin-Top » (lề bên trên), « Margin-Bottom » (lề bên dưới), « Margin-Left » (lề bên trái » và « Margin-Right » (lề bên phải)."
+msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
+msgstr "<variable id=\"viskartpriv\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Riêng</emph></variable>"
-#: 00000020.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3144510\n"
-"16\n"
+"00000401.xhp\n"
+"par_id3154897\n"
+"170\n"
"help.text"
-msgid "Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
-msgstr "Khung văn bản được hỗ trợ dùng phần mở rộng CSS1 cho đối tượng có vị tri tuyệt đối. Chức năng này áp dụng chỉ cho các tùy chọn xuất của chương trình Netscape Navigator, MS Internet Explorer và $[officename] Writer. Khung văn bản cũng có thể được sắp hàng như đồ họa, <switchinline select=\"sys\"><caseinline select=\"WIN\">Phần bổ sung, </caseinline></switchinline>và Khung trôi, nhưng khung liên kết đến ký tự thì không được."
+msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
+msgstr "<variable id=\"viskartgesch\">Chọn lệnh <emph>Tập tin > Mới > Danh thiếp > Kinh doanh</emph> </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147530\n"
-"46\n"
+"00000401.xhp\n"
+"par_id3146137\n"
+"7\n"
"help.text"
-msgid "Text frames are exported as \"<SPAN>\" or \"<DIV>\" tags if they do not contain columns. If they do contain columns then they are exported as \"<MULTICOL>\"."
-msgstr "Khung văn bản được xuất như thẻ \"<SPAN>\" hay \"<DIV>\" nếu nó không chứa cột. Có thì xuất như \"<MULTICOL>\"."
+msgid "Choose <emph>File - Open</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Mở</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153896\n"
-"202\n"
+"00000401.xhp\n"
+"par_id3152944\n"
+"83\n"
"help.text"
-msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph> or <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
-msgstr ""
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154935\n"
-"203\n"
+"00000401.xhp\n"
+"par_id3155341\n"
+"8\n"
"help.text"
-msgid "Measurement Unit"
-msgstr "Đơn vị đo"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154226\n"
-"204\n"
+"00000401.xhp\n"
+"par_id3155419\n"
"help.text"
-msgid "Measurement Unit Name in CSS1"
-msgstr "Tên đơn vị đo trong CSS1"
+msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Biểu tượng</alt></image>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3151106\n"
-"205\n"
+"00000401.xhp\n"
+"par_id3156003\n"
+"9\n"
"help.text"
-msgid "Maximum Number of Decimal Places"
-msgstr "Số lần số tối đa"
+msgid "Open File"
+msgstr "Mở tập tin"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154071\n"
-"206\n"
+"00000401.xhp\n"
+"par_id3155388\n"
+"174\n"
"help.text"
-msgid "Millimeter"
-msgstr "Mili-mét"
+msgid "Menu <emph>File - Open</emph>, File type <emph>Text Encoded</emph> selected"
+msgstr "Lệnh trình đơn <emph>Tập tin > Mở</emph>, chọn kiểu tập tin <emph>mã hoá văn bản</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149290\n"
-"207\n"
+"00000401.xhp\n"
+"par_id3154174\n"
+"175\n"
"help.text"
-msgid "mm"
-msgstr "mm"
+msgid "Menu <emph>File - Save As</emph>, File type <emph>Text Encoded</emph> selected"
+msgstr "Lệnh trình đơn <emph>Tập tin > Lưu dạng</emph>, chọn kiểu tập tin <emph>mã hoá văn bản</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152920\n"
-"208\n"
+"00000401.xhp\n"
+"par_id3145609\n"
+"109\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
+msgstr "<variable id=\"autobrief\">Chọn lệnh <emph>Tập tin > Trợ lý</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156293\n"
-"209\n"
+"00000401.xhp\n"
+"par_id3149245\n"
+"110\n"
"help.text"
-msgid "Centimeter"
-msgstr "Xenti-mét"
+msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
+msgstr "<variable id=\"autopilotbrief\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154819\n"
-"210\n"
+"00000401.xhp\n"
+"par_id3154758\n"
+"111\n"
"help.text"
-msgid "cm"
-msgstr "cm"
+msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
+msgstr "<variable id=\"autopilotbrief1\">Chọn lệnh <emph>Tập tin > Trợ lý > Thiết kế trang</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147228\n"
-"211\n"
+"00000401.xhp\n"
+"par_id3152360\n"
+"112\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
+msgstr "<variable id=\"autopilotbrief2\">Chọn lệnh <emph>Tập tin > Trợ lý > Bố trí đầu thư</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154329\n"
-"212\n"
+"00000401.xhp\n"
+"par_id3159413\n"
+"113\n"
"help.text"
-msgid "Inch"
-msgstr "Insơ"
+msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
+msgstr "<variable id=\"autopilotbrief3\">Chọn lệnh <emph>Tập tin > Trợ lý > Mục đã in</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150740\n"
-"213\n"
+"00000401.xhp\n"
+"par_id3152771\n"
+"114\n"
"help.text"
-msgid "in"
-msgstr "in"
+msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
+msgstr "<variable id=\"autopilotbrief4\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư > Người nhận và gửi</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3157320\n"
-"214\n"
+"00000401.xhp\n"
+"par_id3153524\n"
+"115\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
+msgstr "<variable id=\"autopilotbrief5\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư > Chân trang</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156422\n"
-"215\n"
+"00000401.xhp\n"
+"par_id3154224\n"
+"116\n"
"help.text"
-msgid "Pica"
-msgstr "Pi-ca"
+msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
+msgstr "<variable id=\"autopilotbrief6\">Chọn lệnh <emph>Tập tin > Trợ lý > Thư ></emph><emph>Tên và Vị trí</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
+"00000401.xhp\n"
"par_id3144760\n"
-"216\n"
+"120\n"
"help.text"
-msgid "pc"
-msgstr "pc"
+msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
+msgstr "<variable id=\"autopilotfax\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax </emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145322\n"
-"217\n"
+"00000401.xhp\n"
+"par_id3147085\n"
+"121\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
+msgstr "<variable id=\"autopilotfax1\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Thiết kế trang</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3155131\n"
-"218\n"
+"00000401.xhp\n"
+"par_id3151042\n"
+"209\n"
"help.text"
-msgid "Point"
-msgstr "Điểm"
+msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
+msgstr "<variable id=\"autopilotfax2\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Các mục thêm vào</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147288\n"
-"219\n"
+"00000401.xhp\n"
+"par_id3154330\n"
+"122\n"
"help.text"
-msgid "pt"
-msgstr "pt"
+msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
+msgstr "<variable id=\"autopilotfax3\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Người gửi và nhận</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145364\n"
-"220\n"
+"00000401.xhp\n"
+"par_id3150651\n"
+"123\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
+msgstr "<variable id=\"autopilotfax4\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Chân trang</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149262\n"
-"70\n"
+"00000401.xhp\n"
+"par_id3154685\n"
+"124\n"
"help.text"
-msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
-msgstr ""
+msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
+msgstr "<variable id=\"autopilotfax5\">Chọn lệnh <emph>Tập tin > Trợ lý > Fax > Tên và vị trí</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3145750\n"
-"223\n"
+"00000401.xhp\n"
+"par_id3153190\n"
+"131\n"
"help.text"
-msgid "Importing and Exporting Numbering"
-msgstr "Đánh số khi nhập/xuất khẩu"
+msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
+msgstr "<variable id=\"autopilotagenda\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145591\n"
-"224\n"
+"00000401.xhp\n"
+"par_id3155860\n"
+"132\n"
"help.text"
-msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
-msgstr ""
+msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
+msgstr "<variable id=\"autopilotagenda1\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Thiết kế trang</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153573\n"
-"225\n"
+"00000401.xhp\n"
+"par_id3146906\n"
+"133\n"
"help.text"
-msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported."
-msgstr "Khoảng thụt lề bên trái đoạn văn khi đánh số được ngụ ý như thuộc tính CSS1 « margin-left » (lề bên trái). Khoảng thụt lề dòng đầu bị bỏ qua khi đánh số nên không xuất (nó thuộc về kiểu dáng đoạn văn)."
+msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
+msgstr "<variable id=\"autopilotagenda2\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Thuộc tính chung</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3148556\n"
-"235\n"
+"00000401.xhp\n"
+"par_id3152578\n"
+"134\n"
"help.text"
-msgid "Importing and Exporting Spreadsheet Files"
-msgstr "Nhập/xuất khẩu tập tin bảng tính"
+msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
+msgstr "<variable id=\"autopilotagenda3\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Tiêu đề</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153365\n"
-"236\n"
+"00000401.xhp\n"
+"par_id3155368\n"
+"135\n"
"help.text"
-msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
-msgstr "$[officename] nhập và xuất tham chiếu đến phần bị xoá, v.d. cột đã tham chiếu. Trong khi xuất, cũng có thể hiển thị toàn công thức, và tham chiếu bị xoá cũng chứa cảnh báo về tham chiếu (#REF!). Cảnh báo « #REF! » sẽ được tạo tương ứng cho tham chiếu trong khi nhập khẩu."
+msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
+msgstr "<variable id=\"autopilotagenda4\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Tên</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3150228\n"
-"103\n"
+"00000401.xhp\n"
+"par_id3146923\n"
+"205\n"
"help.text"
-msgid "Importing and Exporting Graphics Files"
-msgstr "Nhập/xuất khẩu tập tin đồ họa"
+msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
+msgstr "<variable id=\"autopilotagenda5\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Chủ đề</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152578\n"
-"104\n"
+"00000401.xhp\n"
+"par_id3149066\n"
+"136\n"
"help.text"
-msgid "As with HTML documents, you can choose to use a filter with or without the element ($[officename] Impress) in the name to open a $[officename] graphics file. If without, the file will be opened as a $[officename] Draw document. Otherwise, the file saved by an old program version is now opened in $[officename] Impress."
-msgstr "Cũng như đối với tài liệu HTML, bạn có thể chọn sử dụng bộ lọc có phần tử ($[officename] Impress) hay không trong tên, để mở tập tin đồ họa $[officename]. Không có thì tập tin sẽ được mở theo dạng tài liệu $[officename] Draw. Có thì tập tin được lưu bằng phiên bản chương trình cũ sẽ được mở bằng $[officename] Impress."
+msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
+msgstr "<variable id=\"autopilotagenda6\">Chọn lệnh <emph>Tập tin > Trợ lý > Nghị sự > Tựa đề và Vị trí</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3144441\n"
-"106\n"
+"00000401.xhp\n"
+"par_id3149288\n"
+"102\n"
"help.text"
-msgid "When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>If a different printer is used the preview will be printed.</defaultinline></switchinline> When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file."
-msgstr "Khi bạn nhập khẩu tập tin EPS, tài liệu cũng hiển thị một ô xem thử đồ họa. Không có sẵn ô xem thử thì tài liệu hiển thị bộ giữ chỗ tương ứng với không của đồ họa. Dưới UNIX và Microsoft Windows, bạn có thể in ra tập tin đã nhập khẩu bẳng cách dùng máy in có khả năng PostScript. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>Dùng máy in khác thì in ra ô xem thử.</defaultinline></switchinline> Khi xuất khẩu đồ họa EPS, tiến trình tạo một ô xem thử theo định dạng TIFF hay EPSI. Xuất cả đồ họa EPS và đồ họa khác đều theo định dạng EPS thì tập tin không thay đổi có nhúng trong tập tin."
+msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
+msgstr "<variable id=\"dtapt\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3146120\n"
-"222\n"
+"00000401.xhp\n"
+"par_id3146986\n"
+"103\n"
"help.text"
-msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax."
-msgstr "Cho phép tạo TIFF đa trang khi đồ họa được nhập/xuất theo định dạng TIFF. Đồ hoa được lấy dạng một tập hợp các ảnh riêng trong cùng một tập tin, chẳng hạn, những trang khác nhau của một bản Fax."
+msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
+msgstr "<variable id=\"dtapse\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 1</emph></variable>"
-#: 00000020.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3159153\n"
-"109\n"
+"00000401.xhp\n"
+"par_id3154919\n"
+"104\n"
"help.text"
-msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information."
-msgstr "Bạn cũng có thể truy cập đến một số tùy chọn về $[officename] Draw và $[officename] Impress trong hộp thoại <emph>Tập tin > Xuất</emph>."
+msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
+msgstr "<variable id=\"dtapsz\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 2</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3153213\n"
-"228\n"
+"00000401.xhp\n"
+"par_id3151351\n"
+"105\n"
"help.text"
-msgid "PostScript"
-msgstr "PostScript"
+msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
+msgstr "<variable id=\"dtapsd\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 3</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156444\n"
-"229\n"
+"00000401.xhp\n"
+"par_id3147317\n"
+"106\n"
"help.text"
-msgid "To export a document or graphic in PostScript format:"
-msgstr "Để xuất khẩu tài liệu hay đồ họa theo định dạng PostScript:"
+msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
+msgstr "<variable id=\"dtapsv\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 4</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3163714\n"
-"230\n"
+"00000401.xhp\n"
+"par_id3145592\n"
+"107\n"
"help.text"
-msgid "If you have not yet done so, install a PostScript printer driver, such as the Apple LaserWriter driver."
-msgstr "Nếu bạn chưa làm như thế, hãy cài đặt một trình điều khiển máy in PostScript, v.d. trình điều khiển Apple LasterWriter."
+msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
+msgstr "<variable id=\"dtapsf\">Chọn lệnh <emph>Tập tin > Trợ lý > Trình diễn > Trang 5</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153142\n"
-"231\n"
+"00000401.xhp\n"
+"par_idN10C46\n"
"help.text"
-msgid "Print the document with the <emph>File - Print</emph> menu command."
-msgstr "In tài liệu bằng lệnh trình đơn <emph>Tập tin > In</emph>."
+msgid "<variable id=\"autopilotformular\">Click <emph>Use Wizard to Create Form</emph> in a database file window.</variable>"
+msgstr "<variable id=\"autopilotformular\">Nhấn vào mục <emph>Dùng Trợ lý để tạo biểu mẫu</emph> trong cửa sổ tập tin cơ sở dữ liệu.</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154149\n"
-"242\n"
+"00000401.xhp\n"
+"par_idN10C5F\n"
"help.text"
-msgid "Select the PostScript printer in the dialog and mark the <emph>Print to file</emph> check box. A PostScript file will be created."
-msgstr "Chọn máy in PostScript trong hộp thoại, và đánh dấu trong hộp chọn <emph>In vào tập tin</emph>. Một tập tin PostScript sẽ được tạo."
+msgid "<variable id=\"autopilotreport\">Click <emph>Use Wizard to Create Report</emph> in a database file window.</variable>"
+msgstr "<variable id=\"autopilotreport\">Nhấn vào mục <emph>Dùng Trợ lý để tạo báo cáo</emph> trong cửa sổ tập tin cơ sở dữ liệu.</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"tit\n"
+"00000401.xhp\n"
+"par_idN10C24\n"
"help.text"
-msgid "Conversion of measurement units"
-msgstr "Chuyển đổi đơn vị đo"
+msgid "<variable id=\"webwizard\">Choose <emph>File - Wizards - Web Page</emph></variable>"
+msgstr "<variable id=\"webwizard\">Chọn lệnh <emph>Tập tin > Trợ lý > Trang Web</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"bm_id3147543\n"
+"00000401.xhp\n"
+"par_id3154064\n"
+"143\n"
"help.text"
-msgid "<bookmark_value>measurement units; converting</bookmark_value><bookmark_value>units; converting</bookmark_value><bookmark_value>converting;metrics</bookmark_value><bookmark_value>metrics;converting</bookmark_value>"
-msgstr "<bookmark_value>đơn vị đo; chuyển đổi</bookmark_value><bookmark_value>đơn vị; chuyển đổi</bookmark_value><bookmark_value>chuyển đổi;hệ đo</bookmark_value><bookmark_value>hệ đo;chuyển đổi</bookmark_value>"
+msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
+msgstr "<variable id=\"gruppen\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung. </variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"hd_id3147543\n"
-"1\n"
+"00000401.xhp\n"
+"par_id3152807\n"
+"144\n"
"help.text"
-msgid "Conversion of measurement units"
-msgstr "Chuyển đổi đơn vị đo"
+msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 1</variable>"
+msgstr "<variable id=\"gruppen1\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 1</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1069F\n"
+"00000401.xhp\n"
+"par_id3150571\n"
+"148\n"
"help.text"
-msgid "In some dialogs, you can enter measurement values into input boxes. If you just enter a numerical value, the default measurement unit is used."
-msgstr "Trong một số hộp thoại nào đó, bạn có thể gõ vào hộp nhập các giá trị đo. Chỉ gõ giá trị thuộc số thì dùng đơn vị đo mặc định."
+msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
+msgstr "<variable id=\"gruppen2\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 2</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106A2\n"
+"00000401.xhp\n"
+"par_id3145251\n"
+"145\n"
"help.text"
-msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph>. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate <emph>General</emph> page as for Writer."
-msgstr ""
+msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
+msgstr "<variable id=\"gruppen3\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 3</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106AD\n"
+"00000401.xhp\n"
+"par_id3156109\n"
+"146\n"
"help.text"
-msgid "In input boxes for length units you can also add the unit abbreviation according to the following list:"
-msgstr "Trong hộp nhập cho đơn vị độ dài, bạn cũng có thể thêm sự viết tắt đơn vị tùy theo danh sách này:"
+msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
+msgstr "<variable id=\"gruppen4\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang 4; cũng phải có khả năng với cơ sở dữ liệu.</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106BA\n"
+"00000401.xhp\n"
+"par_id3159347\n"
+"147\n"
"help.text"
-msgid "Unit abbreviation"
-msgstr "Viết tắt đơn vị"
+msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
+msgstr "<variable id=\"gruppen5\">Trong ô thiết kế biểu mẫu, nhấn vào biểu tượng <emph>Hộp nhóm</emph> trên thanh công cụ, và sử dụng con chuột để tạo một khung — Trợ lý trang cuối cùng</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106C0\n"
+"00000401.xhp\n"
+"par_id3153417\n"
+"150\n"
"help.text"
-msgid "Explanation"
-msgstr "Giải thích"
+msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Tài liệu</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106C7\n"
+"00000401.xhp\n"
+"par_id3150715\n"
+"151\n"
"help.text"
-msgid "mm"
-msgstr "mm"
+msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport1\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Tài liệu</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106CD\n"
+"00000401.xhp\n"
+"par_id3154274\n"
+"149\n"
"help.text"
-msgid "Millimeter"
-msgstr "Mili-mét"
+msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport2\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Tài liệu</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106D4\n"
+"00000401.xhp\n"
+"par_id3146912\n"
+"171\n"
"help.text"
-msgid "cm"
-msgstr "cm"
+msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
+msgstr "<variable id=\"euro\">Chọn lệnh <emph>Tập tin > Trợ lý > Bộ Chuyển đổi Euro</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106DA\n"
+"00000401.xhp\n"
+"par_id3152962\n"
+"198\n"
"help.text"
-msgid "Centimeter"
-msgstr "Xenti-mét"
+msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
+msgstr "Lệnh trình đơn <emph>Tập tin > Trợ lý > Nguồn Dữ liệu Địa chỉ</emph>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106E1\n"
+"00000401.xhp\n"
+"par_id3145206\n"
+"191\n"
"help.text"
-msgid "in or \""
-msgstr "in hay \""
+msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
+msgstr "<variable id=\"addressimport2\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Thiết lập thêm</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106E7\n"
+"00000401.xhp\n"
+"par_id3154756\n"
+"192\n"
"help.text"
-msgid "Inch"
-msgstr "Insơ"
+msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
+msgstr "<variable id=\"addressimport3\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Chọn bảng</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106EE\n"
+"00000401.xhp\n"
+"par_id3153924\n"
+"193\n"
"help.text"
-msgid "pi"
-msgstr "pi"
+msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph><emph>- Data source title</emph></variable>"
+msgstr "<variable id=\"addressimport4\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Tên nguồn dữ liệu</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106F4\n"
+"00000401.xhp\n"
+"par_id3148995\n"
+"194\n"
"help.text"
-msgid "Pica"
-msgstr "Pi-ca"
+msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
+msgstr "<variable id=\"addressimport5\"><emph>Trợ lý Nguồn Dữ liệu Địa chỉ > Gán trường</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106FB\n"
+"00000401.xhp\n"
+"par_id3147338\n"
+"57\n"
"help.text"
-msgid "pt"
-msgstr "pt"
+msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
+msgstr "<variable id=\"schliessen\">Chọn lệnh <emph>Tập tin > Đóng</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10701\n"
+"00000401.xhp\n"
+"par_id3156717\n"
+"10\n"
"help.text"
-msgid "Point"
-msgstr "Điểm"
+msgid "Choose <emph>File - Save</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Lưu</emph>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10704\n"
+"00000401.xhp\n"
+"par_id3147533\n"
+"84\n"
"help.text"
-msgid "The following formulas convert the units:"
-msgstr "Theo đây có những công thức chuyển đổi đơn vị:"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1070A\n"
+"00000401.xhp\n"
+"par_id3148930\n"
+"11\n"
"help.text"
-msgid "1 cm = 10 mm"
-msgstr "1 cm = 10 mm"
+msgid "On Standard or Table Data Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph> hay <emph>Dữ liệu Bảng</emph>, nhấn vào"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1070E\n"
+"00000401.xhp\n"
+"par_id3156712\n"
"help.text"
-msgid "1 inch = 2.54 cm"
-msgstr "1 insơ = 2.54 cm"
+msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Biểu tượng</alt></image>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10712\n"
+"00000401.xhp\n"
+"par_id3149109\n"
+"12\n"
"help.text"
-msgid "1 inch = 6 Pica = 72 Point"
-msgstr "1 insơ = 6 Pi-ca = 72 điểm"
+msgid "Save"
+msgstr "Lưu"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10715\n"
+"00000401.xhp\n"
+"par_idN10F11\n"
"help.text"
-msgid "For example, in a text document, open <emph>Format - Paragraph - Indents & Spacing</emph>. To indent the current paragraph by one inch, enter <item type=\"literal\">1 in</item> or <item type=\"literal\">1\"</item> into the \"Before text\" box. To indent the paragraph by 1 cm, enter <item type=\"literal\">1 cm</item> into the input box."
-msgstr "Chẳng hạn, trong tài liệu văn bản, mở mục trình đơn <emph>Định dạng > Đoạn văn > Thụt lề và Dán cách</emph>. Để thụt lề của đoạn văn hiện tại theo một xen-ti-mét, gõ <item type=\"literal\">1 cm</item> vào hộp « Phía trước văn bản ». Để thụt lề đoạn văn theo một insơ, gõ <item type=\"literal\">1 in</item> hay <item type=\"literal\">1\"</item>."
+msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Biểu tượng</alt></image>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1074C\n"
+"00000401.xhp\n"
+"par_idN10F2E\n"
"help.text"
-msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the <item type=\"keycode\">Page Up</item> or <item type=\"keycode\">Page Down</item> key."
-msgstr "Để nhập giá trị tối đa và giá trị tối thiểu, nhấn vào giá trị hiện thời rồi bấm phím <item type=\"keycode\">Page Up</item> (lên một trang) hay <item type=\"keycode\">Page Down</item> (xuống một trang)."
+msgid "Save As"
+msgstr "Lưu dạng"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"tit\n"
+"00000401.xhp\n"
+"par_id3150300\n"
+"99\n"
"help.text"
-msgid "Format Menu"
-msgstr "Trình đơn Định dạng"
+msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
+msgstr "<variable id=\"htmlspeichern\">Trình đơn của $[officename] Draw hay $[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn « Tài liệu HTML » thì hộp thoại này mở tự động.</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"hd_id3149741\n"
-"1\n"
+"00000401.xhp\n"
+"par_id3153387\n"
+"137\n"
"help.text"
-msgid "Format Menu"
-msgstr "Trình đơn Định dạng"
+msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern1\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 1 của Trợ lý</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146857\n"
-"2\n"
+"00000401.xhp\n"
+"par_id3154021\n"
+"138\n"
"help.text"
-msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
-msgstr "Chọn lệnh <emph>Định dạng > Đường</emph> (Impress and Draw)"
+msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern2\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 2 của Trợ lý</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id366527\n"
+"00000401.xhp\n"
+"par_id3147246\n"
+"159\n"
"help.text"
-msgid "Choose <emph>Format - Object - Line </emph>(Writer)"
-msgstr "Chọn lệnh <emph>Định dạng > Đối tượng > Đường</emph> (Writer)"
+msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern3\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 3 của Trợ lý</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3835261\n"
+"00000401.xhp\n"
+"par_id3145131\n"
+"140\n"
"help.text"
-msgid "Choose <emph>Format - Graphic - Line </emph>(Calc)"
-msgstr "Chọn lệnh <emph>Định dạng > Đồ họa > Đường</emph> (Calc)"
+msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern4\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 4 của Trợ lý</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148668\n"
-"3\n"
+"00000401.xhp\n"
+"par_id3150235\n"
+"141\n"
"help.text"
-msgid "On <emph>Line and Filling</emph> Bar, click"
-msgstr "Trên thanh <emph>Đường và Tô đầy</emph>, nhấn vào"
+msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern5\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 5 của Trợ lý</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148889\n"
+"00000401.xhp\n"
+"par_id3145762\n"
+"142\n"
"help.text"
-msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150669\">Biểu tượng</alt></image>"
+msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern6\">Trình đơn của $[officename] Draw/$[officename] Impress: <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin HTML, trang 6 của Trợ lý</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3159147\n"
-"4\n"
+"00000401.xhp\n"
+"par_id3149735\n"
"help.text"
-msgid "Line"
-msgstr "Đường"
+msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>"
+msgstr "<variable id=\"bmpexport\">Chọn lệnh <emph>Tập tin > Xuất</emph>, chọn kiểu tập tin BMP thì hộp thoại mở tự động</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154285\n"
-"5\n"
+"00000401.xhp\n"
+"par_id3154901\n"
+"58\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
-msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline>thẻ <emph>Đường > Đường</emph>"
+msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
+msgstr "<variable id=\"saveall\">Chọn lệnh <emph>Tập tin > Lưu tất cả</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147335\n"
-"7\n"
+"00000401.xhp\n"
+"par_id3152479\n"
+"59\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh và chọn mục <emph>Sửa/Mới > (thẻ) Đường</emph> (tài liệu trình diễn)"
+msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
+msgstr "<variable id=\"saveas\">Chọn lệnh <emph>Tập tin > Lưu dạng</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156023\n"
-"8\n"
+"00000401.xhp\n"
+"par_id3148392\n"
+"60\n"
"help.text"
-msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > (thẻ) Viền</emph> (đồ thị)"
+msgid "Choose <emph>File - Reload</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Nạp lại</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153061\n"
-"9\n"
+"00000401.xhp\n"
+"par_id3166425\n"
+"61\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
-msgstr "Chọn lệnh <emph>Định dạng > Chú giải > (thẻ) Viền</emph> (đồ thị)"
+msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
+msgstr "<variable id=\"info1\">Chọn lệnh <emph>Tập tin > Thuộc tính</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155922\n"
-"10\n"
+"00000401.xhp\n"
+"par_id3150381\n"
+"62\n"
"help.text"
-msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
-msgstr "Chọn lệnh <emph>Định dạng > Trục > (thẻ) Đường</emph> (đồ thị)"
+msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
+msgstr "<variable id=\"info2\">Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147559\n"
-"11\n"
+"00000401.xhp\n"
+"par_idN11163\n"
"help.text"
-msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
-msgstr "Chọn lệnh <emph>Định dạng > Lưới > (thẻ) Đường</emph> (đồ thị)"
+msgid "Choose <emph>File - Digital Signatures</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Chữ ký số</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154758\n"
-"12\n"
+"00000401.xhp\n"
+"par_idN11168\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
-msgstr "Chọn lệnh <emph>Định dạng > Tường đồ thị > (thẻ) Viền</emph> (đồ thị)"
+msgid "Choose <emph>Tools - Macros - Digital Signature</emph>"
+msgstr "Chọn lệnh <emph>Công cụ > Vĩ lệnh > Chữ ký số</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153960\n"
-"13\n"
+"00000401.xhp\n"
+"par_idN11156\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
-msgstr "Chọn lệnh <emph>Định dạng > Sàn đồ thị > (thẻ) Viền</emph> (đồ thị)"
+msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
+msgstr "Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph>, sau đó nhấn vào cái nút <emph>Chữ ký số</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154939\n"
-"14\n"
+"00000401.xhp\n"
+"par_idN1117E\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
-msgstr "Chọn lệnh <emph>Định dạng > Vùng đồ thị > (thẻ) Viền</emph> (đồ thị)"
+msgid "Double-click the Signature field on the Status Bar."
+msgstr "Nhấn đôi vào trường <emph>Chữ ký</emph> trên thanh <emph>Trạng thái</emph>."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151293\n"
-"15\n"
+"00000401.xhp\n"
+"par_idN11173\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Đường > Kiểu đường</emph></variable>"
+msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</emph> button</variable>"
+msgstr "<variable id=\"digitalsigsel\">Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph>, sau đó nhấn vào cái nút <emph>Chữ ký số</emph>, sau đó nhấn vào nút <emph>Thêm</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149317\n"
-"16\n"
+"00000401.xhp\n"
+"par_id3150662\n"
+"63\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng hình vẽ> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Đường > Kiểu mũi tên</emph></variable>"
+msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
+msgstr "<variable id=\"info3\">Chọn lệnh <emph>Tập tin > Thuộc tính > Mô tả</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156082\n"
-"17\n"
+"00000401.xhp\n"
+"par_id3153792\n"
+"64\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng</emph>"
+msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
+msgstr "<variable id=\"info4\">Chọn thẻ <emph>Tập tin > Thuộc tính > Thuộc tính riêng</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148922\n"
-"18\n"
+"00000401.xhp\n"
+"par_id3153701\n"
+"65\n"
"help.text"
-msgid "On <emph>Line and Filling</emph> Bar, click"
-msgstr "Trên thanh <emph>Đường và Tô đầy</emph>, nhấn vào"
+msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
+msgstr "<variable id=\"info5\">Chọn lệnh <emph>Tập tin > Thuộc tính > Thống kê</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156424\n"
+"00000401.xhp\n"
+"par_id315370199\n"
"help.text"
-msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Biểu tượng</alt></image>"
+msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
+msgstr "<variable id=\"info2\">Chọn lệnh <emph>Tập tin > Thuộc tính > Chung</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150393\n"
-"19\n"
+"00000401.xhp\n"
+"par_id3149570\n"
+"66\n"
"help.text"
-msgid "Area"
-msgstr "Vùng"
+msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
+msgstr "<variable id=\"info6\">Chọn lệnh <emph>Tập tin > Thuộc tính > Internet</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154948\n"
-"20\n"
+"00000401.xhp\n"
+"par_id3154930\n"
+"69\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline>thẻ <emph>Vùng > Vùng</emph>"
+msgid "Menu<emph> File - Page Preview</emph>"
+msgstr "Lệnh trình đơn <emph>Tập tin > Xem thử trang</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145607\n"
-"22\n"
+"00000401.xhp\n"
+"par_idN11366\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh và chọn mục <emph>Sửa/Mới > (thẻ) Vùng</emph> (tài liệu trình diễn)"
+msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icon</alt></image>"
+msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152922\n"
-"23\n"
+"00000401.xhp\n"
+"par_idN11384\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+msgid "Page Preview"
+msgstr "Xem thử trang"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157894\n"
-"24\n"
+"00000401.xhp\n"
+"par_id3163722\n"
+"70\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Chú giải > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+msgid "Choose <emph>File - Printer Settings</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Thiết lập Máy in</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3144444\n"
-"25\n"
+"00000401.xhp\n"
+"par_id3155529\n"
+"17\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tường đồ thị > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+msgid "<variable id=\"senden\">Menu<emph> File - Send</emph></variable>"
+msgstr "<variable id=\"senden\">Lệnh trình đơn<emph>Tập tin > Gửi</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156543\n"
-"26\n"
+"00000401.xhp\n"
+"par_id3145386\n"
+"18\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Sàn đồ thị > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+msgid "Choose <emph>File - Send - Document as E-mail</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Gửi > Tài liệu dạng Thư điện tử</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150685\n"
-"27\n"
+"00000401.xhp\n"
+"par_idN113AB\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Vùng đồ thị > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
+msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149664\n"
-"120\n"
+"00000401.xhp\n"
+"par_idN113C8\n"
"help.text"
-msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
-msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Nền</emph> (trong $[officename] Impress và $[officename] Draw)"
+msgid "Document as E-mail"
+msgstr "Tài liệu dạng Thư điện tử"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
+"00000401.xhp\n"
+"par_id3145269\n"
+"222\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Màu sắc</emph>"
+msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
+msgstr "<variable id=\"export\">Chọn lệnh <emph>Tập tin > Xuất</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152462\n"
-"29\n"
+"00000401.xhp\n"
+"par_id3166421\n"
+"219\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Colors</emph> tab"
-msgstr ""
+msgid "Choose <emph>File - Export as PDF</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Xuất dạng PDF</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154985\n"
-"141\n"
+"00000401.xhp\n"
+"par_id3150521\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Vùng > (thẻ) Trong suốt</emph> (tài liệu vẽ)"
+msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145365\n"
-"142\n"
+"00000401.xhp\n"
+"par_id3155763\n"
+"220\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Vùng > (thẻ) Trong suốt</emph> (tài liệu trình diễn)"
+msgid "Export Directly as PDF"
+msgstr "Xuất trực tiếp thành dạng PDF"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151117\n"
-"143\n"
+"00000401.xhp\n"
+"par_id3145410\n"
+"210\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tường đồ thị > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Gửi > Thư điện tử dạng PDF</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147326\n"
-"144\n"
+"00000401.xhp\n"
+"par_id3159160\n"
+"74\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Vùng đồ thị > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
+msgstr "<variable id=\"glo\">Chọn lệnh <emph>Tập tin > Gửi > Tạo tài liệu chủ</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154920\n"
-"145\n"
+"00000401.xhp\n"
+"par_id3149951\n"
+"13\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Sàn đồ thị > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "Choose <emph>File - Print</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > In</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145591\n"
-"146\n"
+"00000401.xhp\n"
+"par_id3155259\n"
+"85\n"
"help.text"
-msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > Mọi tựa đề > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145750\n"
-"147\n"
+"00000401.xhp\n"
+"par_id3153830\n"
+"3\n"
"help.text"
-msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > Tựa đề chính > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "On Standard Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148556\n"
-"148\n"
+"00000401.xhp\n"
+"par_id3155187\n"
"help.text"
-msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > Phụ đề > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163710\n"
-"149\n"
+"00000401.xhp\n"
+"par_id3151268\n"
+"4\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề (Trục X) > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "Print File Directly"
+msgstr "In trực tiếp tập tin"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150487\n"
-"150\n"
+"00000401.xhp\n"
+"par_id3153581\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề (Trục Y) > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "On the <emph>Page View</emph><emph>Bar</emph> of a text document, click"
+msgstr "Trên thanh <emph>Xem trang</emph> của tài liệu văn bản, nhấn vào"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154320\n"
-"151\n"
+"00000401.xhp\n"
+"par_id3153068\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Tựa đề (Trục Z) > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151113\n"
-"152\n"
+"00000401.xhp\n"
+"par_id3151239\n"
+"6\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Thuộc tính Đối tượng > Điểm dữ liệu > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "Print Page Preview"
+msgstr "In ô xem thử trang"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149266\n"
-"153\n"
+"00000401.xhp\n"
+"par_id3155869\n"
+"72\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Thuộc tính Đối tượng > Dãy dữ liệu > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+msgid "Choose <emph>File - Exit</emph>"
+msgstr "Chọn lệnh <emph>Tập tin > Thoát</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150011\n"
-"30\n"
+"00000401.xhp\n"
+"par_id3152382\n"
+"86\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Chọn <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Bóng</emph> </variable>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147441\n"
-"31\n"
+"00000401.xhp\n"
+"par_id3149328\n"
+"75\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Chọn <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng hình vẽ> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline>thẻ <emph>Vùng > Dải màu</emph> </variable>"
+msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
+msgstr "<variable id=\"neuglobal\">Chọn lệnh <emph>Tập tin > Mới > Tài liệu chủ</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155308\n"
-"32\n"
+"00000401.xhp\n"
+"par_id3145827\n"
+"76\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Lưới đan</emph> </variable>"
+msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
+msgstr "Chọn lệnh <emph>Tập tin > Mở</emph>, sau đó chọn mục « Văn bản CSV » dưới « Kiểu tập tin »"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145800\n"
-"33\n"
+"00000401.xhp\n"
+"par_id6071352\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Chọn <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Ảnh bitmap</emph> </variable>"
+msgid "Choose <emph>Data - Text to Columns</emph> (Calc)"
+msgstr "Chọn lệnh <emph>Dữ liệu > Văn bản sang Cột</emph> (Calc)"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145251\n"
-"34\n"
+"00000401.xhp\n"
+"par_id3148608\n"
+"81\n"
"help.text"
-msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline></variable>"
-msgstr "<variable id=\"formattext\">Chọn lệnh <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > Văn bản > Thuộc tính Văn bản</emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > Xác định Thuộc tính Văn bản</emph></caseinline><defaultinline><emph>Văn bản</emph></defaultinline></switchinline></variable>"
+msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
+msgstr "<variable id=\"epsexport\">Chọn lệnh <emph>Tập tin > Xuất</emph>: chọn kiểu tập tin EPS thì hộp thoại mở tự động</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152810\n"
-"35\n"
+"00000401.xhp\n"
+"par_id3150107\n"
+"87\n"
"help.text"
-msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
-msgstr ""
+msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
+msgstr "<variable id=\"pbmppmpgm\">Chọn lệnh <emph>Tập tin > Xuất</emph>: chọn kiểu tập tin PBM, PPM hay PGM thì hộp thoại mở tự động</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151060\n"
-"36\n"
+"00000401.xhp\n"
+"par_id3145305\n"
+"96\n"
"help.text"
-msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
-msgstr ""
+msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
+msgstr "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Chọn lệnh <emph>Tập tin > Phiên bản</emph></variable></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149911\n"
-"37\n"
+"00000402.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ</emph>"
+msgid "Edit Menu"
+msgstr "Trình đơn Sửa"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156286\n"
-"89\n"
+"00000402.xhp\n"
+"hd_id3147273\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Phím F4</caseinline><caseinline select=\"IMPRESS\">Phím F4</caseinline></switchinline>"
+msgid "Edit Menu"
+msgstr "Trình đơn Sửa"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153052\n"
+"00000402.xhp\n"
+"par_id3085157\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150965\">Biểu tượng</alt></image>"
+msgid "Choose <emph>Edit - Undo</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Hủy bướ</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149938\n"
-"39\n"
+"00000402.xhp\n"
+"par_id3145160\n"
+"564\n"
"help.text"
-msgid "Position and Size"
-msgstr "Vị trí và Kích cỡ"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148833\n"
-"170\n"
+"00000402.xhp\n"
+"par_id3154094\n"
+"3\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Name</emph>"
-msgstr "Mở trình đơn ngữ cảnh cho đối tượng, sau đó chọn mục <emph>Tên</emph>"
+msgid "On the <emph>Standard</emph> Bar or Table Data bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph> hay <emph>Dữ liệu bảng</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id411999\n"
+"00000402.xhp\n"
+"par_id3155449\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Description</emph>"
-msgstr "Mở trình đơn ngữ cảnh cho đối tượng, sau đó chọn mục <emph>Mô tả</emph>"
+msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155577\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153099\n"
-"40\n"
+"00000402.xhp\n"
+"par_id3148563\n"
+"4\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Vị trí và Kích cỡ</emph></variable>"
+msgid "Undo"
+msgstr "Hủy bước"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152973\n"
-"42\n"
+"00000402.xhp\n"
+"par_id3145068\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
-msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Xoay</emph>"
+msgid "Choose <emph>Edit - Redo</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Bước lại</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148495\n"
+"00000402.xhp\n"
+"par_id3153897\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146898\">Biểu tượng</alt></image>"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146790\n"
-"44\n"
+"00000402.xhp\n"
+"par_id3154938\n"
"help.text"
-msgid "Rotate"
-msgstr "Xoay"
+msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150358\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145666\n"
-"45\n"
+"00000402.xhp\n"
+"par_id3151211\n"
+"7\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Chọn lệnh <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Xiên và Bán kính góc</emph> </variable>"
+msgid "Redo"
+msgstr "Bước lại"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146081\n"
-"46\n"
+"00000402.xhp\n"
+"par_id3154365\n"
+"8\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Chú giải</emph> (chỉ cho khung thoại kiểu hộp văn bản, không phải cho khung thoại kiểu hình riêng</variable>"
+msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
+msgstr "<variable id=\"letzter\">Chọn lệnh <emph>Sửa > Lặp lại</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3083283\n"
-"172\n"
+"00000402.xhp\n"
+"par_id3149765\n"
+"9\n"
"help.text"
-msgid "Choose <emph>Edit - Points</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Điểm</emph>"
+msgid "Choose <emph>Edit - Cut</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Cắt</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145642\n"
-"47\n"
+"00000402.xhp\n"
+"par_id3144762\n"
+"565\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Mở trình đơn ngữ cảnh, rồi chọn mục <emph>Sửa điểm</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Sửa điểm</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149019\n"
-"90\n"
+"00000402.xhp\n"
+"par_id3148744\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Phím F8</caseinline><caseinline select=\"IMPRESS\">Phím F8</caseinline></switchinline>"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150044\n"
+"00000402.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
+msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153966\n"
-"49\n"
+"00000402.xhp\n"
+"par_id3154153\n"
+"11\n"
"help.text"
-msgid "Edit Points"
-msgstr "Sửa điểm"
+msgid "Cut"
+msgstr "Cắt"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151248\n"
-"50\n"
+"00000402.xhp\n"
+"par_id3150742\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Character</emph> (drawing functions)"
-msgstr "Chọn lệnh <emph>Định dạng > Ký tự</emph> (chức năng vẽ)"
+msgid "Choose <emph>Edit - Copy</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Chép</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145229\n"
-"121\n"
+"00000402.xhp\n"
+"par_id3148923\n"
+"566\n"
"help.text"
-msgid "Open context menu - choose <emph>Character</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Ký tự</emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151342\n"
-"122\n"
+"00000402.xhp\n"
+"par_id3159254\n"
+"13\n"
"help.text"
-msgid "Open context menu - choose <emph>Size</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kích cỡ</emph>"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149255\n"
-"123\n"
+"00000402.xhp\n"
+"par_id3154985\n"
"help.text"
-msgid "Open context menu - choose <emph>Style</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng</emph>"
+msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156441\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155177\n"
-"124\n"
+"00000402.xhp\n"
+"par_id3150685\n"
+"14\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Bold</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > In đậm</emph>"
+msgid "Copy"
+msgstr "Chép"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145766\n"
+"00000402.xhp\n"
+"par_id3159153\n"
+"15\n"
"help.text"
-msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.222inch\" height=\"0.222inch\" localize=\"true\"><alt id=\"alt_id3156558\">Biểu tượng</alt></image>"
+msgid "Choose <emph>Edit - Paste</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Dán</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147001\n"
-"55\n"
+"00000402.xhp\n"
+"par_id3155860\n"
+"567\n"
"help.text"
-msgid "Bold"
-msgstr "In đậm"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151276\n"
-"125\n"
+"00000402.xhp\n"
+"par_id3159083\n"
+"16\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Italic</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > In nghiêng</emph>"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3159091\n"
+"00000402.xhp\n"
+"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.222inch\" height=\"0.222inch\" localize=\"true\"><alt id=\"alt_id3155578\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159196\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150234\n"
-"58\n"
+"00000402.xhp\n"
+"par_id3154471\n"
+"17\n"
"help.text"
-msgid "Italic"
-msgstr "In nghiêng"
+msgid "Paste"
+msgstr "Dán"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154589\n"
-"126\n"
+"00000402.xhp\n"
+"par_id3152791\n"
+"532\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Underline</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Gạch dưới</emph>"
+msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
+msgstr "<variable id=\"inhalte\">Chọn lệnh <emph>Sửa > Dán đặc biệt</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145223\n"
+"00000402.xhp\n"
+"par_id3148555\n"
+"533\n"
"help.text"
-msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.222inch\" height=\"0.222inch\" localize=\"true\"><alt id=\"alt_id3151068\">Biểu tượng</alt></image>"
+msgid "Choose <emph>Edit - Select All</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Chọn tất cả</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154715\n"
-"88\n"
+"00000402.xhp\n"
+"par_id3152417\n"
+"568\n"
"help.text"
-msgid "Underline"
-msgstr "Gạch dưới"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145131\n"
-"127\n"
+"00000402.xhp\n"
+"par_id3145748\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Gạch đè</emph>"
+msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153095\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3158214\n"
-"128\n"
+"00000402.xhp\n"
+"par_id3153139\n"
+"575\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Shadow</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Bóng</emph>"
+msgid "Select All"
+msgstr "Chọn tất cả"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150207\n"
-"129\n"
+"00000402.xhp\n"
+"par_id3145251\n"
+"555\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Contour</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Nét ngoài</emph>"
+msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Changes</emph></variable>"
+msgstr "<variable id=\"aenderungen\">Chọn lệnh <emph>Sửa > Thay đổi</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154383\n"
-"130\n"
+"00000402.xhp\n"
+"par_id3153336\n"
+"556\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Superscript</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Chỉ số Trên</emph>"
+msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Changes - Record</emph></variable>"
+msgstr "<variable id=\"aufzeichnen\">Chọn lệnh <emph>Sửa > Thay đổi > Thu</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152767\n"
-"131\n"
+"00000402.xhp\n"
+"par_id3150594\n"
+"557\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Subscript</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Chỉ số Dưới</emph>"
+msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Changes - Show</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Changes - Show</emph></caseinline></switchinline></variable>"
+msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Sửa > Thay đổi > Hiện</emph></caseinline><caseinline select=\"CALC\">Chọn lệnh <emph>Sửa > Thay đổi > Hiện</emph></caseinline></switchinline></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155377\n"
-"132\n"
+"00000402.xhp\n"
+"par_id3153845\n"
+"558\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng</emph>"
+msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Changes - Accept or Reject</emph></variable>"
+msgstr "<variable id=\"rotlinie\">Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154475\n"
-"133\n"
+"00000402.xhp\n"
+"par_id3148587\n"
+"559\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng > Đơn</emph>"
+msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab"
+msgstr "Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối > Liệt kê</emph> tab"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150478\n"
-"134\n"
+"00000402.xhp\n"
+"par_id3150396\n"
+"574\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng > 1,5 dòng</emph>"
+msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
+msgstr "Chọn lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng và sửa thay đổi.</emph> Khi hộp thoại Tự động Định dạng xuất hiện, nhấn vào nút <emph>Sửa thay đổi</emph> và thấy trang thẻ <emph>Liệt kê</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147167\n"
-"135\n"
+"00000402.xhp\n"
+"par_id3153878\n"
+"560\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng > Đôi</emph>"
+msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Changes - Accept or Reject - Filter</emph> tab </variable>"
+msgstr "<variable id=\"rotliniefilter\">Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối > Lọc</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146978\n"
-"69\n"
+"00000402.xhp\n"
+"par_id3151281\n"
+"561\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
-msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Trái</emph> (chức năng vẽ)"
+msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Changes - Merge Document</emph></variable>"
+msgstr "<variable id=\"einfuegen\">Chọn lệnh <emph>Sửa > Thay đổi > Trộn tài liệu</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153009\n"
-"136\n"
+"00000402.xhp\n"
+"par_id3153224\n"
+"562\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Left</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Trái</emph>"
+msgid "<variable id=\"dvergl\">Choose <emph>Edit - Compare Document</emph></variable>"
+msgstr "<variable id=\"dvergl\">Chọn lệnh <emph>Sửa > So sánh tài liệu</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147310\n"
+"00000402.xhp\n"
+"par_id3148773\n"
+"563\n"
"help.text"
-msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155370\">Biểu tượng</alt></image>"
+msgid "Choose <emph>Edit - Changes - Comment</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Thay đổi > Chú thích</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151336\n"
-"71\n"
+"00000402.xhp\n"
+"par_id3149488\n"
+"571\n"
"help.text"
-msgid "Align Left"
-msgstr "Canh lề trái"
+msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối > Liệt kê</emph>. Nhấn vào mục trong danh sách, sau đó mở trình đơn ngữ cảnh. Chọn lệnh <emph>Sửa chú thích</emph>."
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155823\n"
-"72\n"
+"00000402.xhp\n"
+"par_id3156297\n"
+"49\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
-msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Phải</emph> (chức năng vẽ)"
+msgid "Choose <emph>Edit - Find & Replace</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Tìm và Thay thế</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155762\n"
-"137\n"
+"00000402.xhp\n"
+"par_id3154503\n"
+"569\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Right</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Phải</emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149408\n"
+"00000402.xhp\n"
+"par_id3155083\n"
+"456\n"
"help.text"
-msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154421\">Biểu tượng</alt></image>"
+msgid "On Standard bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153607\n"
-"74\n"
+"00000402.xhp\n"
+"par_id3150020\n"
"help.text"
-msgid "Align Right"
-msgstr "Canh lề phải"
+msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149121\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149189\n"
-"75\n"
+"00000402.xhp\n"
+"par_id3144748\n"
+"50\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
-msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Giữa</emph> (chức năng vẽ)"
+msgid "Find & Replace"
+msgstr "Tìm và thay thế"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154624\n"
-"138\n"
+"00000402.xhp\n"
+"par_id3156357\n"
+"552\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Center</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Giữa</emph>"
+msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
+msgstr "<variable id=\"suchenattribute\">Chọn lệnh <emph>Sửa > Tìm và Thay thế > Thuộc tính</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153815\n"
+"00000402.xhp\n"
+"par_id3153840\n"
+"553\n"
"help.text"
-msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149757\">Biểu tượng</alt></image>"
+msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
+msgstr "<variable id=\"suchenformat\">Chọn lệnh <emph>Sửa > Tìm và Thay thế > (nút) Định dạng</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153076\n"
-"77\n"
+"00000402.xhp\n"
+"par_id3146971\n"
+"554\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Canh lề ở giữa nằm ngang</caseinline><defaultinline>ở Giữa</defaultinline></switchinline>"
+msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box and <emph>...</emph> button."
+msgstr "Chọn lệnh <emph>Sửa > Tìm và Thay thế > (hộp chọn) Tìm tương tự</emph> và cái nút <emph>...</emph>."
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146151\n"
-"78\n"
+"00000402.xhp\n"
+"par_id3153709\n"
+"572\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)"
-msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Canh đều</emph> (chức năng vẽ)"
+msgid "On the <emph>Table Data</emph> Bar, click <emph>Find</emph> icon - <emph>Similarity search</emph> check box - <emph>...</emph> button (database table view)"
+msgstr "Trên thanh <emph>Dữ liệu bảng</emph>, nhấn vào biểu tượng <emph>Tìm</emph> rồi hộp chọn <emph>Tìm tương tự</emph> và cái nút <emph>...</emph> (ô xem bảng cơ sở dữ liệu)"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3168612\n"
-"139\n"
+"00000402.xhp\n"
+"par_id3150749\n"
+"573\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Canh đều</emph>"
+msgid "On <emph>Form Design</emph> Bar, click <emph>Record Search</emph> - <emph>Similarity search</emph> check box - <emph>...</emph> button (form view)"
+msgstr "Trên thanh <emph>Thiết kế biểu mẫu</emph>, nhấn vào mục <emph>Tìm mục ghi > (hộp chọn) Tìm tương tự > (nút) ...</emph> (ô xem biểu mẫu)"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156189\n"
+"00000402.xhp\n"
+"par_id3152960\n"
+"534\n"
"help.text"
-msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145308\">Biểu tượng</alt></image>"
+msgid "Choose <emph>View - Navigator</emph>"
+msgstr "Chọn lệnh <emph>Xem > Bộ điều hướng</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153131\n"
-"80\n"
+"00000402.xhp\n"
+"par_id3163824\n"
+"535\n"
"help.text"
-msgid "Justified"
-msgstr "Canh đều"
+msgid "On <emph>Standard</emph> Bar, click"
+msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150527\n"
-"81\n"
+"00000402.xhp\n"
+"par_id3159183\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Nhấn vào biểu tượng <emph>Chữ nghệ thuật</emph> trên thanh <emph>Vẽ</emph></variable>"
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Biểu tượng</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3144503\n"
-"103\n"
+"00000402.xhp\n"
+"par_id3147359\n"
+"536\n"
"help.text"
-msgid "Choose <emph>Format - Group</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Nhóm lại</emph>"
+msgid "Navigator On/Off"
+msgstr "Bật/tắt Bộ điều hướng"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154854\n"
-"140\n"
+"00000402.xhp\n"
+"par_id3147338\n"
+"576\n"
"help.text"
-msgid "Open context menu - choose <emph>Group</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Nhóm lại</emph>"
+msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph></variable>"
+msgstr "<variable id=\"litdat\">Chọn lệnh <emph>Công cụ > Cơ sở Dữ liệu Thư tịch</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157985\n"
-"83\n"
+"00000402.xhp\n"
+"par_id3149281\n"
+"538\n"
"help.text"
-msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)"
-msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Nhóm lại</emph> (tài liệu văn bản, bảng tính)"
+msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
+msgstr "<variable id=\"link\">Chọn lệnh <emph>Sửa > Liên kết</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157980\n"
-"104\n"
+"00000402.xhp\n"
+"par_id3159339\n"
+"551\n"
"help.text"
-msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Nhóm lại</emph> (tài liệu vẽ)"
+msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
+msgstr "<variable id=\"linkae\">Chọn lệnh <emph>Sửa > Liên kết > Sửa liên kết</emph> (chỉ liên kết kiểu DDE)</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149508\n"
-"84\n"
+"00000402.xhp\n"
+"par_id3148927\n"
+"543\n"
"help.text"
-msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Nhóm > Nhóm lại</emph> (đối tượng biểu mẫu)"
+msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
+msgstr "Chọn một khung nào đó, sau đó chọn lệnh <emph>Sửa > Đối tượng > Thuộc tính</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146858\n"
+"00000402.xhp\n"
+"par_id3156315\n"
+"577\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154344\">Biểu tượng</alt></image>"
+msgid "Open context menu of selected frame - choose <emph>Properties</emph>"
+msgstr "Mở trình đơn ngữ cảnh của khung đã chọn, sau đó chọn mục <emph>Thuộc tính</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149593\n"
-"113\n"
+"00000402.xhp\n"
+"par_id3151251\n"
+"545\n"
"help.text"
-msgid "Group"
-msgstr "Nhóm lại"
+msgid "<variable id=\"plugin\">Choose <emph>Edit - Plug-in</emph></variable>"
+msgstr "<variable id=\"plugin\">Chọn lệnh <emph>Sửa > Phần bổ sung</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153023\n"
-"85\n"
+"00000402.xhp\n"
+"par_id3156091\n"
+"546\n"
"help.text"
-msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)"
-msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Rã nhóm</emph> (tài liệu văn bản, bảng tính)"
+msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
+msgstr "<variable id=\"imagemap\">Chọn lệnh <emph>Sửa > Sơ đồ ảnh</emph> (cũng nằm trong trình đơn ngữ cảnh của đối tượng đã chọn) </variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163378\n"
-"105\n"
+"00000402.xhp\n"
+"par_id3155936\n"
+"550\n"
"help.text"
-msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Rá nhóm</emph> (tài liệu vẽ)"
+msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
+msgstr "<variable id=\"imapeigbea\">Chọn lệnh <emph>Sửa > Sơ đồ ảnh</emph>, sau đó lựa chọn một phần của sơ đồ ảnh và nhấn vào mục <emph>Thuộc tính > Mô tả</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156038\n"
-"86\n"
+"00000402.xhp\n"
+"par_id3149259\n"
+"547\n"
"help.text"
-msgid "Open context menu - choose <emph>Ungroup</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Rã nhóm</emph>"
+msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
+msgstr "<variable id=\"edit1\">Chọn lệnh <emph>Sửa > Đối tượng</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151300\n"
+"00000402.xhp\n"
+"par_id3154966\n"
+"548\n"
"help.text"
-msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150831\">Biểu tượng</alt></image>"
+msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
+msgstr "<variable id=\"edit2\">Chọn lệnh <emph>Sửa > Đối tượng > Sửa</emph>, (cũng nằm trong trình đơn ngữ cảnh của đối tượng đã chọn) </variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146894\n"
-"115\n"
+"00000402.xhp\n"
+"par_id3149565\n"
+"549\n"
"help.text"
-msgid "Ungroup"
-msgstr "Rã nhóm"
+msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
+msgstr "<variable id=\"edit3\">Chọn lệnh <emph>Sửa > Đối tượng > Mở</emph></variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153109\n"
-"106\n"
+"00000403.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
-msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Ra nhóm</emph> (tài liệu văn bản, bảng tính)"
+msgid "View Menu"
+msgstr "Trình đơn Xem"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145678\n"
-"107\n"
+"00000403.xhp\n"
+"hd_id3156304\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Ra nhóm</emph> (tài liệu vẽ)"
+msgid "View Menu"
+msgstr "Trình đơn Xem"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152367\n"
-"108\n"
+"00000403.xhp\n"
+"par_id3146936\n"
+"12\n"
"help.text"
-msgid "Open context menu - choose <emph>Exit Group</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Ra nhóm</emph>"
+msgid "Choose <emph>View - Zoom</emph>"
+msgstr "Chọn lệnh <emph>Xem > Thu Phóng</emph>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3158402\n"
+"00000403.xhp\n"
+"par_id3149962\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149422\">Biểu tượng</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Cũng có thể thu phóng với dấu (+) (-) (×) và (÷) trên vùng phím số </caseinline><caseinline select=\"IMPRESS\">Cũng có thể thu phóng với dấu (+) (-) (×) và (÷) trên vùng phím số </caseinline></switchinline>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155347\n"
-"117\n"
+"00000403.xhp\n"
+"par_id3152895\n"
+"13\n"
"help.text"
-msgid "Exit Group"
-msgstr "Ra nhóm"
+msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
+msgstr "Nhấn-đôi hay nhấn-phải vào trường trên thanh <emph>Trạng thái</emph>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149129\n"
-"109\n"
+"00000403.xhp\n"
+"par_id3156183\n"
+"36\n"
"help.text"
-msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
-msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Vào nhóm</emph> (tài liệu văn bản, bảng tính)"
+msgid "Choose <emph>View - Toolbars</emph>"
+msgstr "Chọn lệnh <emph>Xem > Thanh công cụ</emph>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145354\n"
-"110\n"
+"00000403.xhp\n"
+"par_id3166445\n"
+"15\n"
"help.text"
-msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Vào nhóm</emph> (tài liệu vẽ)"
+msgid "<variable id=\"funktion\">Choose <emph>View - Toolbars - Standard</emph></variable>"
+msgstr "<variable id=\"funktion\">Chọn lệnh <emph>Xem > Thanh công cụ > Chuẩn</emph></variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149946\n"
-"111\n"
+"00000403.xhp\n"
+"par_id3153748\n"
+"17\n"
"help.text"
-msgid "Open context menu - choose <emph>Enter Group</emph>"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Vào nhóm</emph>"
+msgid "<variable id=\"werkzeug\">Choose <emph>View - Toolbars - Tools</emph></variable>"
+msgstr "<variable id=\"werkzeug\">Chọn lệnh <emph>Xem > Thanh công cụ > Công cụ</emph></variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152388\n"
+"00000403.xhp\n"
+"par_id3154317\n"
+"18\n"
"help.text"
-msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149900\">Biểu tượng</alt></image>"
+msgid "<variable id=\"task\">Choose <emph>View - Status Bar</emph></variable>"
+msgstr "<variable id=\"task\">Chọn lệnh <emph>Xem > Thanh Trạng thái</emph></variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152547\n"
-"119\n"
+"00000403.xhp\n"
+"par_id3152780\n"
+"19\n"
"help.text"
-msgid "Enter Group"
-msgstr "Vào nhóm"
+msgid "<variable id=\"farbleiste\">Choose <emph>View - Toolbars - Color Bar</emph></variable>"
+msgstr "<variable id=\"farbleiste\">Chọn lệnh <emph>Xem > Thanh công cụ > Thanh màu</emph></variable>"
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"tit\n"
+"00000403.xhp\n"
+"par_id3156113\n"
+"43\n"
"help.text"
-msgid "Export text files"
-msgstr "Xuất khẩu tập tin văn bản"
+msgid "<variable id=\"ime\">Choose <emph>View - Input Method Status</emph></variable>"
+msgstr "<variable id=\"ime\">Chọn lệnh <emph>Xem > Trạng thái cách gõ</emph></variable>"
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3153116\n"
-"1\n"
+"00000403.xhp\n"
+"par_id3157909\n"
+"32\n"
"help.text"
-msgid "Export text files"
-msgstr "Xuất khẩu tập tin văn bản"
+msgid "Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Internet</emph>"
+msgstr "Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Internet</emph>"
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150379\n"
-"7\n"
+"00000403.xhp\n"
+"par_id3146806\n"
+"42\n"
"help.text"
-msgid "The <emph>Export text files</emph> dialog allows you to define the export options for text files. The dialog will be displayed if you save spreadsheet data as file type \"Text CSV\", and if the <emph>Edit filter settings</emph> check box is marked in the <emph>Save As</emph> dialog."
-msgstr "Hộp thoại <emph>Xuất khẩu tập tin văn bản</emph> thì cho phép bạn xác định các tùy chọn xuất khẩu cho tập tin văn bản. Hộp thoại sẽ hiển thị nếu bạn lưu dữ liệu bảng tính theo kiểu tập tin « Văn bản CSV », và nếu tùy chọn <emph>Sửa thiết lập lọc</emph> đã bật trong hộp thoại <emph>Lưu dạng</emph>."
+msgid "Choose <emph>Insert - Hyperlink</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Siêu liên kết</emph>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3155577\n"
-"2\n"
+"00000403.xhp\n"
+"par_id3153717\n"
+"38\n"
"help.text"
-msgid "Field options"
-msgstr "Tuỳ chọn trường"
+msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail & News</emph></variable>"
+msgstr "<variable id=\"hypdiamailnews\">Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Thư tín và Tin tức</emph></variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152427\n"
-"8\n"
+"00000403.xhp\n"
+"par_id3149415\n"
+"34\n"
"help.text"
-msgid "Defines the field separator, text separator and character set that is used for the text export."
-msgstr "Xác định dấu tách trường, dấu tách văn bản, và bộ ký tự cần dùng khi xuất khẩu văn bản."
+msgid "<variable id=\"hypdiadok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Document</emph></variable>"
+msgstr "<variable id=\"hypdiadok\">Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Tài liệu</emph></variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3152876\n"
-"5\n"
+"00000403.xhp\n"
+"par_id3150129\n"
+"35\n"
"help.text"
-msgid "Character set"
-msgstr "Bộ ký tự"
+msgid "<variable id=\"hypdianeudok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>New Document</emph></variable>"
+msgstr "<variable id=\"hypdianeudok\">Nhấn vào biểu tượng <emph>Siêu liên kết</emph> trên thanh <emph>Chuẩn</emph>, sau đó nhấn vào mục <emph>Tài liệu mới</emph></variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154689\n"
-"11\n"
+"00000403.xhp\n"
+"par_id3159269\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Specifies the character set for text export.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Ghi rõ bộ ký tự cần dùng khi xuất khẩu văn bản..</ahelp>"
+msgid "Choose <emph>View - Full Screen</emph>"
+msgstr "Chọn lệnh <emph>Xem > Toàn màn hình</emph>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3145138\n"
-"3\n"
+"00000403.xhp\n"
+"par_id3149578\n"
+"25\n"
"help.text"
-msgid "Field delimiter"
-msgstr "Dấu tách trường"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
+msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150838\n"
-"9\n"
+"00000403.xhp\n"
+"par_id3153257\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Choose or enter the field delimiter, which separates data fields.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Hãy chọn hay nhập dấu tách trường, mà phân cách các trường dữ liệu.</ahelp>"
+msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Biểu tượng</alt></image>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3154682\n"
-"4\n"
+"00000403.xhp\n"
+"par_id3153627\n"
+"44\n"
"help.text"
-msgid "Text delimiter"
-msgstr "Dấu tách văn bản"
+msgid "Full Screen On/Off (in Page Preview)"
+msgstr "Hiện/ẩn toàn màn hình (khi xem thử trang)"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154863\n"
-"10\n"
+"00000403.xhp\n"
+"par_id3147559\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Choose or enter the text delimiter, which encloses every data field.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Hãy chọn hay nhập dấu tách văn bản, mà bao gồm mỗi trường dữ liệu.</ahelp>"
+msgid "If a text document or spreadsheet is open:"
+msgstr "Mở tài liệu kiểu văn bản hay bảng tính thì:"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id783149793\n"
+"00000403.xhp\n"
+"par_id3145069\n"
+"31\n"
"help.text"
-msgid "Quote all text cells"
-msgstr ""
+msgid "Menu <emph>View - Data Sources</emph>"
+msgstr "lệnh trình đơn <emph>Xem > Nguồn dữ liệu</emph>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152778363\n"
+"00000403.xhp\n"
+"par_id3149046\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\">Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character.</ahelp>"
-msgstr ""
+msgid "F4 key"
+msgstr "Phím F4"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id7145298\n"
+"00000403.xhp\n"
+"par_id3153778\n"
"help.text"
-msgid "Save cell content as shown"
-msgstr "Lưu nội dung ô như hiển thị"
+msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Biểu tượng</alt></image>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id5719779\n"
+"00000403.xhp\n"
+"par_id3146908\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật theo mặc định thì dữ liệu sẽ được lưu như hiển thị, gồm có các định dạng con số đã áp dụng. Không bật tùy chọn này thì lưu chỉ nội dung dữ liệu thô, như trong phiên bản cũ của %PRODUCTNAME.</ahelp>"
+msgid "Data Sources"
+msgstr "Nguồn dữ liệu"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3541062\n"
+"00000403.xhp\n"
+"par_id3154140\n"
+"9\n"
"help.text"
-msgid "Depending on the number format, saving cell content as shown may write values that during an import cannot be interpreted as numerical values anymore."
-msgstr "Phụ thuộc vào định dạng con số, tiến trình lưu nội dung ô như hiển thị có thể ghi giá trị trong tiến trình nhập khẩu mà không còn có thể được giải thích lại như giá trị thuộc số."
+msgid "Choose <emph>View - HTML Source</emph>"
+msgstr "Chọn lệnh <emph>Xem > Mã nguồn HTML</emph>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3149793\n"
-"12\n"
+"00000403.xhp\n"
+"par_id3154947\n"
+"23\n"
"help.text"
-msgid "Fixed column width"
-msgstr "Bề rộng cột cố định"
+msgid "Open context menu in an HTML document"
+msgstr "Mở trình đơn ngữ cảnh trong tài liệu HTML"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152363\n"
-"13\n"
+"00000403.xhp\n"
+"par_id3152935\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Exports all data fields with a fixed width.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Xuất mọi trường dữ liệu có bề rộng cố định.</ahelp>"
+msgid "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Biểu tượng</alt></image>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3149283\n"
-"14\n"
+"00000403.xhp\n"
+"par_id3144448\n"
+"11\n"
"help.text"
-msgid "The width of a data field in the exported text file is set to the current width of the corresponding column."
-msgstr "Bề rộng của trường dữ liệu trong tập tin văn bản đã xuất thì được đặt thành bề rộng của cột tương ứng."
+msgid "HTML Source"
+msgstr "Mã nguồn HTML"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154116\n"
-"15\n"
+"00000403.xhp\n"
+"par_idN1091B\n"
"help.text"
-msgid "Values are exported in the format as currently seen in the cell."
-msgstr "Các giá trị được xuất theo định dạng hiện thời hiển thị trong ô."
+msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw) </variable>"
+msgstr "<variable id=\"grid\">Chọn lệnh <emph>Xem > Lưới</emph> (Impress hay Draw) </variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3156414\n"
-"16\n"
+"00000403.xhp\n"
+"par_idN1092E\n"
"help.text"
-msgid "If a value is longer than the fixed column width, it will be exported as a ### string."
-msgstr "Có giá trị dài hơn bề rộng cột cố định thì nó được xuất dạng chuỗi « ### »."
+msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw) </variable>"
+msgstr "<variable id=\"guides\">Chọn lệnh <emph>Xem > Nét dẫn</emph> (Impress hay Draw) </variable>"
-#: 00000207.xhp
+#: 00000404.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150178\n"
-"17\n"
+"00000404.xhp\n"
+"tit\n"
"help.text"
-msgid "If a text string is longer than the fixed column width, it will be truncated at the end."
-msgstr "Có chuỗi văn bản dài hơn bề rộng cột cố định thì nó bị cắt ngắn."
+msgid "Insert Menu"
+msgstr "Trình đơn Chèn"
-#: 00000207.xhp
+#: 00000404.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3148548\n"
-"18\n"
+"00000404.xhp\n"
+"hd_id3156324\n"
+"1\n"
"help.text"
-msgid "The alignment Left, Centered, and Right will be simulated by inserted blanks."
-msgstr "Vị trí canh lề trái, giữa và phải sẽ được mô phỏng bởi khoảng trắng đã chèn."
+msgid "Insert Menu"
+msgstr "Trình đơn Chèn"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"tit\n"
+"00000404.xhp\n"
+"par_id3153808\n"
+"28\n"
"help.text"
-msgid "Frequently-Used Buttons"
-msgstr "Các nút thường dùng"
+msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
+msgstr "<variable id=\"eispa\">Chọn<emph>Chèn > Cột</emph></variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3152952\n"
-"1\n"
+"00000404.xhp\n"
+"par_id3155619\n"
+"71\n"
"help.text"
-msgid "Frequently-Used Buttons"
-msgstr "Cái nút thường dùng"
+msgid "Choose <emph>Insert - Picture - Scan</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Ảnh > Quét</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147617\n"
-"4\n"
+"00000404.xhp\n"
+"par_id3150502\n"
+"30\n"
"help.text"
-msgid "Cancel"
-msgstr "Thôi"
+msgid "Choose <emph>Insert - Picture - Scan - Select Source</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Ảnh > Quét > Chọn nguồn</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155913\n"
-"5\n"
+"00000404.xhp\n"
+"par_id3155934\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn vào cái nút <emph>Thôi</emph> thì đóng hộp thoại mà không lưu thay đổi.</ahelp>"
+msgid "Choose <emph>Insert - Picture - Scan - Request</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Ảnh > Quét > Yêu cầu</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id2341685\n"
+"00000404.xhp\n"
+"par_id3143281\n"
+"34\n"
"help.text"
-msgid "Finish"
-msgstr "Kết thúc"
+msgid "Choose <emph>Insert - Special Character</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Ký tự đặc biệt</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id6909390\n"
+"00000404.xhp\n"
+"par_id3149525\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\">Applies all changes and closes the wizard.</ahelp>"
-msgstr "<ahelp hid=\".\">Áp dụng mọi thay đổi rồi đóng trợ lý.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > Tùy biến > (nút) Ký tự </emph> </caseinline></switchinline>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147477\n"
-"39\n"
+"00000404.xhp\n"
+"par_id3152372\n"
+"55\n"
"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > Tùy biến > (nút) Ký tự </emph> </caseinline></switchinline>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3149783\n"
-"40\n"
+"00000404.xhp\n"
+"par_id3156560\n"
+"36\n"
"help.text"
-msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
-msgstr "Bằng cách nhấn vào mũi tên bên cạnh một biểu tượng nào đó, bạn có thể mở thanh công cụ riêng. Để di chuyển thanh công cụ, chỉ cần kéo thanh tựa đề của nó. Một khi bạn buông nút chuột ra, thanh công cụ còn lại ở vị trí mới. Kéo thanh tựa đề sang vị trí khác, hoặc kéo sang cạnh cửa sổ nơi thanh công cụ sẽ thả neo. Đóng thanh công cụ bằng cách nhấn vào biểu tượng <emph>Đóng cửa sổ</emph>. Làm cho thanh công cụ hiển thị lại bằng cách chọn lệnh trình đơn <emph>Xem > Thanh công cụ > (tên thanh công cụ)</emph>."
+msgid "Open the <emph>Insert</emph> toolbar, click"
+msgstr "Mở thành công cụ <emph>Chèn</emph>, sau đó nhấn vào"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3152414\n"
-"79\n"
+"00000404.xhp\n"
+"par_id3153527\n"
"help.text"
-msgid "Spin button"
-msgstr "Nút xoay"
+msgid "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id1094088\n"
+"00000404.xhp\n"
+"par_id3149751\n"
+"37\n"
"help.text"
-msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally."
-msgstr "Đối với điều khiển biểu mẫu, cái nút xoay là một thuộc tính của trường kiểu con số, tiền tệ, ngày tháng hay thời gian. Bật thuộc tính « Nút xoay » thì trường đó hiển thị một cặp ký hiệu có mũi tên chỉ tới hướng đối diện, hoặc nằm ngang hay nằm dọc."
+msgid "Special Character"
+msgstr "Ký tự đặc biệt"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id7493209\n"
+"00000404.xhp\n"
+"par_idN107CD\n"
"help.text"
-msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols."
-msgstr "Trong IDE Basic (giao diện ghi mã nguồn), nút xoay là tên dùng cho trường thuộc số, cùng với hai ký hiệu mũi tên."
+msgid "<variable id=\"moviesound\">Choose <emph>Insert - Movie and Sound</emph></variable>"
+msgstr "<variable id=\"moviesound\">Chọn lệnh <emph>Chèn > Phim và Âm thanh</emph></variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155599\n"
-"78\n"
+"00000404.xhp\n"
+"par_idN1085D\n"
"help.text"
-msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value."
-msgstr "Bạn có thể gõ một giá trị thuộc số vào trường bên cạnh cái nút xoay, hoặc chọn giá trị bằng mũi tên chỉ lên hay chỉ xuống nằm trên nút xoay. Trên bàn phím, bạn có thể bấm phím mũi tên chỉ lên hay chỉ xuống để tăng hay giảm giá trị. Cũng có thể bấm mũi tên Page Up (lên một trang) hay Page Down (xuống một trang) để đặt giá trị tối đa hay giá trị tối thiểu."
+msgid "Movie and Sound"
+msgstr "Phim và Âm thanh"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150264\n"
-"38\n"
+"00000404.xhp\n"
+"par_id3147242\n"
+"5\n"
"help.text"
-msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 2\"."
-msgstr "Nếu trường bên cạnh nút xoay có xác định giá trị thuộc số, bạn cũng có thể định nghĩa một <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"đơn vị đo\">đơn vị đo</link>, thí dụ, 1 cm hay 5 mm, 12 pt hay 2\"."
+msgid "<variable id=\"objekteinf\">Choose <emph>Insert - Object</emph></variable>"
+msgstr "<variable id=\"objekteinf\">Chọn lệnh <emph>Chèn > Đối tượng</emph></variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3154232\n"
-"76\n"
+"00000404.xhp\n"
+"par_id3152996\n"
+"6\n"
"help.text"
-msgid "Convert"
-msgstr "Chuyển đổi"
+msgid "Choose <emph>Insert - Object - OLE Object</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đối tượng OLE</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3148983\n"
-"77\n"
+"00000404.xhp\n"
+"par_id3146806\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
-msgstr "<ahelp hid=\".\">Khi bạn nhấn chuột để tiếp qua hộp thoại, cái nút này có tên <emph>Kế</emph>. Tuy nhiên, trên trang cuối cùng, nó trở thành <emph>Chuyển đổi</emph>. Bấm nút đó thì để thực hiện công việc chuyển đổi.</ahelp>"
+msgid "Open the <emph>Insert</emph> toolbar, click"
+msgstr "Mở thành công cụ <emph>Chèn</emph>, sau đó nhấn vào"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145129\n"
-"42\n"
+"00000404.xhp\n"
+"par_id3150254\n"
"help.text"
-msgid "Context Menu"
-msgstr "Trình đơn ngữ cảnh"
+msgid "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3156553\n"
-"44\n"
+"00000404.xhp\n"
+"par_id3145417\n"
+"8\n"
"help.text"
-msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
-msgstr "<variable id=\"context\">Để kích hoạt trình đơn ngữ cảnh của một đối tượng nào đó, trước tiên nhấn vào đối tượng bằng nút chuột <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>trái</defaultinline></switchinline> để lựa chọn nó, sau đó <switchinline select=\"sys\"><caseinline select=\"MAC\">trong khi ấn giữ phím Ctrl hay hai phím Command và Option keys, nhấn lại nút chuột</caseinline><defaultinline>nhấn nút bên phải trên chuột</defaultinline></switchinline>. Một số trình đơn ngữ cảnh vẫn còn có thể được gọi thậm chí nếu đối tượng chưa được lựa chọn. Trình đơn ngữ cảnh sẵn sàng ở gần mọi nơi trong $[officename]. </variable>"
+msgid "OLE Object"
+msgstr "Đối tượng OLE"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3149180\n"
-"24\n"
+"00000404.xhp\n"
+"par_id3153087\n"
+"9\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Choose <emph>Insert - Object - Plug-in</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Chọn lệnh <emph>Chèn > Đối tượng > Phần bổ sung</emph></caseinline></switchinline>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153750\n"
-"25\n"
+"00000404.xhp\n"
+"par_id3149785\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements after confirmation.</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá (các) mục đã chọn, một khi xác nhận.</ahelp>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147557\n"
-"45\n"
+"00000404.xhp\n"
+"par_id3154897\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155338\n"
-"46\n"
+"00000404.xhp\n"
+"par_id3148474\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá (các) mục đã chọn, không cần xác nhận.</ahelp>"
+msgid "Plug-in"
+msgstr "Phần bổ sung"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3148620\n"
-"6\n"
+"00000404.xhp\n"
+"par_id3153880\n"
+"53\n"
"help.text"
-msgid "Metrics"
-msgstr "Hệ đo"
+msgid "Choose <emph>Insert - Object - Sound</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Âm thanh</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3145345\n"
-"7\n"
+"00000404.xhp\n"
+"par_id3143278\n"
+"54\n"
"help.text"
-msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
-msgstr "Bạn có thể gõ vào trường nhập giá trị theo đơn vị đo khác nhau. Đơn vị mặc định là insơ. Tuy nhiên, nếu bạn muốn đặt một khoảng chính xác là 1 cm, hãy gõ « 1cm ». Các đơn vị khác sẵn sàng tùy theo ngữ cảnh: chẳng hạn, 12 pt cho khoảng 12 điểm. Gõ giá trị không hữu ích thì chương trình dùng giá trị tối đa/thiểu đã định sẵn."
+msgid "Choose <emph>Insert - Object - Video</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Ảnh động</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3155535\n"
-"8\n"
+"00000404.xhp\n"
+"par_id3150393\n"
+"15\n"
"help.text"
-msgid "Close"
-msgstr "Đóng"
+msgid "Choose <emph>Insert - Object - Formula</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Công thức</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3147008\n"
-"9\n"
+"00000404.xhp\n"
+"par_id3153056\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>"
-msgstr "<ahelp hid=\".\">Đóng hộp thoại và lưu các thay đổi đã làm.</ahelp>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147275\n"
-"57\n"
+"00000404.xhp\n"
+"par_id3148559\n"
"help.text"
-msgid "Close"
-msgstr "Đóng"
+msgid "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153031\n"
-"58\n"
+"00000404.xhp\n"
+"par_id3155858\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes the dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Đóng hộp thoại.</ahelp>"
+msgid "Formula"
+msgstr "Công thức"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3156113\n"
-"16\n"
+"00000404.xhp\n"
+"par_id3153144\n"
+"38\n"
"help.text"
-msgid "Apply"
-msgstr "Áp dụng"
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu đồ thị</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155341\n"
-"17\n"
+"00000404.xhp\n"
+"par_id3147578\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Áp dụng các giá trị đã sửa đổi hay chọn, mà không đóng hộp thoại.</ahelp>"
+msgid "Choose <emph>Insert - Object - Chart </emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3153760\n"
-"47\n"
+"00000404.xhp\n"
+"par_id3154011\n"
+"40\n"
"help.text"
-msgid "Shrink / Maximize"
-msgstr "Thu nhỏ / Phóng to"
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu đồ thị</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153087\n"
-"48\n"
+"00000404.xhp\n"
+"par_id3153573\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn vào biểu tượng <emph>Thu nhỏ</emph>để giảm hộp thoại xuống kích cỡ của trường nhập vào. Vì thế dễ hơn đánh dấu tham chiếu đã yêu cầu trong bảng. Biểu tượng <emph>Thu nhỏ</emph> thì tự động chuyển đổi sang biểu tượng <emph>Phóng to</emph>. Nhấn vào để phục hồi hộp thoại về kích cỡ gốc.</ahelp>"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155062\n"
-"49\n"
+"00000404.xhp\n"
+"par_id3159179\n"
+"42\n"
"help.text"
-msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame."
-msgstr "Hộp thoại bị thu nhỏ tự động khi bạn nhấn chuột vào một bảng nào đó. Một khi bạn buông nút chuột ra, hộp thoại được phục hồi lại và phạm vi tham chiếu được xác định bằng con chuột được tô sáng bằng khung màu xanh trong tài liệu."
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu đồ thị</emph>"
-#: 00000001.xhp
-#, fuzzy
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3157808\n"
+"00000404.xhp\n"
+"par_id3159196\n"
+"43\n"
"help.text"
-msgid "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Biểu tượng</alt></image>"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153321\n"
-"50\n"
+"00000404.xhp\n"
+"par_id3149664\n"
+"18\n"
"help.text"
-msgid "Shrink"
-msgstr "Thu nhỏ"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Đối tượng > Đồ thị </emph>"
-#: 00000001.xhp
-#, fuzzy
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153349\n"
+"00000404.xhp\n"
+"par_id3154921\n"
+"19\n"
"help.text"
-msgid "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149064\">Biểu tượng</alt></image>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155628\n"
-"51\n"
+"00000404.xhp\n"
+"par_id3156005\n"
"help.text"
-msgid "Maximize"
-msgstr "Phóng to"
+msgid "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3156192\n"
-"34\n"
+"00000404.xhp\n"
+"par_id3145749\n"
+"20\n"
"help.text"
-msgid "Preview Field"
-msgstr "Trường xem thử"
+msgid "Chart"
+msgstr "Đồ thị"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154046\n"
-"35\n"
+"00000404.xhp\n"
+"par_id3155513\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays a preview of the current selection.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị ô xem thử vùng chọn hiện thời.</ahelp>"
+msgid "Choose <emph>Insert - Picture - From File</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Ảnh > Từ tập tin</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145609\n"
-"70\n"
+"00000404.xhp\n"
+"par_id3155308\n"
+"45\n"
"help.text"
-msgid "Next"
-msgstr "Tiếp"
+msgid "Open the <emph>Insert</emph> toolbar, click"
+msgstr "Mở thành công cụ <emph>Chèn</emph>, sau đó nhấn vào"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3152473\n"
-"71\n"
+"00000404.xhp\n"
+"par_id3145594\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the<emph> Next </emph>button, and the wizard uses the current dialog settings and proceeds to the next step. If you are on the last step, this button becomes <emph>Create</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn vào cái <emph>Kế</emph> thì trợ lý dùng thiết lập hộp thoại hiện thời và tiến đến bước kế tiếp. Khi bạn tới bước cuối cùng, cái nút này trở thành <emph>Tạo</emph>.</ahelp>"
+msgid "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image>"
+msgstr "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3149670\n"
-"13\n"
+"00000404.xhp\n"
+"par_id3149960\n"
+"46\n"
"help.text"
-msgid "Back"
-msgstr "Lùi"
+msgid "From File"
+msgstr "Từ tập tin"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3145068\n"
-"14\n"
+"00000404.xhp\n"
+"par_id3150037\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Đặt lại các giá trị bị sửa đổi về giá trị $[officename] mặc định.</ahelp>"
+msgid "Choose <emph>Insert - Floating Frame</emph>"
+msgstr "Chọn lệnh <emph>Chèn > Khung nổi</emph>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3148755\n"
-"59\n"
+"00000404.xhp\n"
+"par_id3083281\n"
+"26\n"
"help.text"
-msgid "Reset"
-msgstr "Đặt lại"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Mở thanh công cụ <emph>Chèn</emph>, sau đó nhấn vào"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3149651\n"
-"60\n"
+"00000404.xhp\n"
+"par_id3168607\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Đặt lại các thay đổi đã làm trên thẻ hiện thời về các giá trị có thể áp dụng khi bạn sắp mở hộp thoại này. Đóng hộp thoại thì không hiển thị yêu cầu xác nhận.</ahelp>"
+msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3143278\n"
-"18\n"
+"00000404.xhp\n"
+"par_id3148588\n"
+"27\n"
"help.text"
-msgid "Reset"
-msgstr "Đặt lại"
+msgid "Floating Frame"
+msgstr "Khung nổi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150791\n"
-"19\n"
+"00000404.xhp\n"
+"par_id3150396\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Đặt lại các giá trị bị sửa đổi về các giá trị mặc định.</ahelp>"
+msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file</variable>"
+msgstr "<variable id=\"filterauswahl\">Mở tập tin có kiểu %PRODUCTNAME không nhận ra, và không phải là tập tin văn bản </variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154331\n"
-"20\n"
+"00000404.xhp\n"
+"par_idN10DDC\n"
"help.text"
-msgid "A confirmation query does not appear. If you confirm the dialog with OK all settings in this dialog are reset."
-msgstr "Không hiển thị yêu cầu xác nhận. Xác định hộp thoại bằng nút <emph>OK</emph> thì đặt lại toàn thiết lập trong hộp thoại."
+msgid "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145173\n"
-"10\n"
+"00000404.xhp\n"
+"par_idN10DD1\n"
"help.text"
-msgid "Standard"
-msgstr "Chuẩn"
+msgid "Fontwork Gallery"
+msgstr "Bộ sưu tập chữ nghệ thuật"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154153\n"
-"11\n"
+"00000404.xhp\n"
+"par_idN10EA9\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Đặt lại các giá trị hiện rõ trong hộp thoại về các giá trị mặc định của bản cài đặt.</ahelp>"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154299\n"
-"12\n"
+"00000404.xhp\n"
+"par_idN10ED8\n"
"help.text"
-msgid "A confirmation does not appear before the defaults are reloaded."
-msgstr "Không hiển thị yêu cầu xác nhận trước khi nạp lại các giá trị mặc định."
+msgid "Basic Shapes"
+msgstr "Hình cơ bản"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147502\n"
-"72\n"
+"00000404.xhp\n"
+"par_idN10EEE\n"
"help.text"
-msgid "Back"
-msgstr "Lùi"
+msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150439\n"
-"73\n"
+"00000404.xhp\n"
+"par_idN10F1D\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
-msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Xem các sự chọn ở bước trước của hộp thoại. Thiết lập hiện thời vẫn không thay đổi.</ahelp> Cái nút này chỉ hoạt động kể từ trang thứ hai (không thể đi lùi từ trang thứ nhất ;) )."
+msgid "Symbol Shapes"
+msgstr "Hình ký hiệu"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147352\n"
-"52\n"
+"00000404.xhp\n"
+"par_idN10F33\n"
"help.text"
-msgid "More"
-msgstr "Thêm tùy chọn"
+msgid "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155314\n"
-"53\n"
+"00000404.xhp\n"
+"par_idN10F62\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the<emph> More</emph> button to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Nhấn vào nút <emph>Thêm tùy chọn</emph> để mở rộng hộp thoại và hiển thị nhiều tùy chọn hơn. Nhấn chuột lại để phục hồi hộp thoại (hiển thị ít tùy chọn hơn).</ahelp>"
+msgid "Block Arrows"
+msgstr "Mũi tên khối"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3161659\n"
-"41\n"
+"00000404.xhp\n"
+"par_idN10F78\n"
"help.text"
-msgid "<variable id=\"siehe\">See also the following functions: </variable>"
-msgstr "<variable id=\"siehe\">Xem thêm các hàm này: </variable>"
+msgid "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3147418\n"
-"55\n"
+"00000404.xhp\n"
+"par_idN10FA7\n"
"help.text"
-msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
-msgstr ""
+msgid "Flowcharts"
+msgstr "Lưu đồ"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3163714\n"
-"56\n"
+"00000404.xhp\n"
+"par_idN10FBD\n"
"help.text"
-msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value. </variable>"
-msgstr "<variable id=\"wahr\">Gặp lỗi thì hàm trả lại một giá trị thuộc số hay giá trị luận lý (đúng/sai).</variable>"
+msgid "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154145\n"
-"54\n"
+"00000404.xhp\n"
+"par_idN10FEC\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>). </variable>"
-msgstr "<variable id=\"kontext\">(Lệnh này chỉ sẵn sàng trong <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"trình đơn ngữ cảnh\">trình đơn ngữ cảnh</link>). </variable>"
+msgid "Callouts"
+msgstr "Khung thoại"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3152791\n"
-"61\n"
+"00000404.xhp\n"
+"par_idN11002\n"
"help.text"
-msgid "<variable id=\"wiederholen\">By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task. </variable>"
-msgstr "<variable id=\"wiederholen\">Bằng cách nhấn đôi vào công cụ, bạn có thể sử dụng nó để làm nhiều công việc. Nếu bạn gọi công cụ bằng cú nhấn đơn, nó sẽ trở về vùng chọn cuối cùng sau khi làm xong công việc đó.</variable>"
+msgid "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id9345377\n"
+"00000404.xhp\n"
+"par_idN11031\n"
"help.text"
-msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control. </variable>"
-msgstr "<variable id=\"ShiftF1\">Bấm tổ hợp phím <item type=\"keycode\">Shift+F1</item> và chỉ tới bất cứ điều khiển nào để tìm biết thêm về nó.</variable>"
+msgid "Stars"
+msgstr "Ngôi sao"
#: 00000406.xhp
msgctxt ""
@@ -8348,7 +8322,6 @@ msgid "Choose <emph>Tools - Gallery</emph> or on <emph>Standard</emph> Bar, clic
msgstr "Chọn lệnh <emph>Công cụ > Bộ sưu tập</emph>, hoặc trên thanh <emph>Chuẩn</emph>, nhấn vào"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153323\n"
@@ -8402,7 +8375,6 @@ msgid "On <emph>Standard</emph> bar, click"
msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153824\n"
@@ -8481,7 +8453,6 @@ msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinli
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153320\n"
@@ -8644,8 +8615,8 @@ msgctxt ""
"par_id3153768\n"
"51\n"
"help.text"
-msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect Options</emph> tab</variable>"
-msgstr "<variable id=\"autokooptionen\">Chọn lệnh <emph>Công cụ > Tự động Sửa lỗi </emph><emph>> (thẻ) Tùy chọn</emph></variable>"
+msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect Options - Options</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -8656,7 +8627,6 @@ msgid "<variable id=\"autokosmarttags\">Choose <emph>Tools - AutoCorrect Options
msgstr "<variable id=\"autokosmarttags\">Chọn lệnh <emph>Công cụ > Tự động sửa lỗi > (thẻ) Thẻ khéo</emph></variable>"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3155368\n"
@@ -8666,7 +8636,6 @@ msgid "<variable id=\"autokoersetzung\">Choose <emph>Tools - AutoCorrect Options
msgstr "<variable id=\"autokosmarttags\">Chọn lệnh <emph>Công cụ > Tự động sửa lỗi > (thẻ) Thẻ khéo</emph></variable>"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3155860\n"
@@ -8676,7 +8645,6 @@ msgid "<variable id=\"autokoausnahmen\">Choose <emph>Tools - AutoCorrect Options
msgstr "<variable id=\"autokosmarttags\">Chọn lệnh <emph>Công cụ > Tự động sửa lỗi > (thẻ) Thẻ khéo</emph></variable>"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153094\n"
@@ -8866,7 +8834,6 @@ msgid "Choose <emph>Format - 3D Effects</emph> icon on the <emph>Illumination</e
msgstr "Chọn lệnh <emph>Định dạng > Hiệu ứng 3D</emph> dưới thẻ <emph>Chiếu sáng</emph>"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153876\n"
@@ -9073,15 +9040,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_id3159339\n"
-"36\n"
-"help.text"
-msgid "<variable id=\"internet4\">Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Search</emph></variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_id3149280\n"
"94\n"
"help.text"
@@ -9426,2908 +9384,1445 @@ msgctxt ""
msgid "<variable id=\"registered\">Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph></variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
+"00000407.xhp\n"
"tit\n"
"help.text"
-msgid "To access this command..."
-msgstr "Để truy cập lệnh này..."
+msgid "Window Menu"
+msgstr "Trình đơn Cửa sổ"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"hd_id3160447\n"
+"00000407.xhp\n"
+"hd_id3154349\n"
"1\n"
"help.text"
-msgid "<variable id=\"wie\">To access this command...</variable>"
-msgstr "<variable id=\"wie\">Để truy cập lệnh này... </variable>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147212\n"
-"47\n"
-"help.text"
-msgid "<variable id=\"related\"><emph>Related Topics</emph></variable>"
-msgstr "<variable id=\"related\"><emph>Chủ đề Liên quan</emph></variable>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id56935339\n"
-"help.text"
-msgid "Enable or disable the Help Agent on <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - General</emph>."
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154689\n"
-"help.text"
-msgid "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146067\n"
-"46\n"
-"help.text"
-msgid "Font Color"
-msgstr "Màu phông"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3157898\n"
-"help.text"
-msgid "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149893\n"
-"7\n"
-"help.text"
-msgid "Font Color"
-msgstr "Màu phông"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149750\n"
-"help.text"
-msgid "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150693\n"
-"8\n"
-"help.text"
-msgid "Line spacing: 1"
-msgstr "Giãn cách dòng: 1"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145382\n"
-"help.text"
-msgid "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154173\n"
-"9\n"
-"help.text"
-msgid "Line spacing: 1.5"
-msgstr "Giãn cách dòng: 1,5"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150131\n"
-"help.text"
-msgid "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Biểu tượng</alt></image>"
+msgid "Window Menu"
+msgstr "Trình đơn Cửa sổ"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3152824\n"
-"10\n"
+"00000407.xhp\n"
+"par_id3083278\n"
+"6\n"
"help.text"
-msgid "Line spacing: 2"
-msgstr "Giãn cách dòng: 2"
+msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
+msgstr "<variable id=\"window\">Chọn lệnh <emph>Cửa sổ > Cửa sổ mới</emph></variable>"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3149820\n"
+"00000407.xhp\n"
+"par_id3154545\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Biểu tượng</alt></image>"
+msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
+msgstr "<variable id=\"liste\">Chọn lệnh <emph>Cửa sổ</emph> rồi danh sách các tài liệu cờn mở</variable>"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3145121\n"
-"11\n"
+"00000408.xhp\n"
+"tit\n"
"help.text"
-msgid "Superscript"
-msgstr "Chỉ số Trên"
+msgid "Help Menu"
+msgstr "Trình đơn Trợ giúp"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3147077\n"
+"00000408.xhp\n"
+"hd_id3154689\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Biểu tượng</alt></image>"
+msgid "Help Menu"
+msgstr "Trình đơn Trợ giúp"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3151385\n"
-"12\n"
+"00000408.xhp\n"
+"par_id3150960\n"
+"2\n"
"help.text"
-msgid "Subscript"
-msgstr "Chỉ số Dưới"
+msgid "<variable id=\"content\">Choose <emph>Help - Contents</emph></variable>"
+msgstr "<variable id=\"content\">Chọn lệnh <emph>Trợ giúp > Mục lục</emph></variable>"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3148550\n"
+"00000408.xhp\n"
+"par_id3147240\n"
+"14\n"
"help.text"
-msgid "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Biểu tượng</alt></image>"
+msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
+msgstr "<variable id=\"infoanwendung\">Chọn lệnh <emph>Trợ giúp > Giới thiệu > %PRODUCTNAME</emph></variable>"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3152772\n"
+"00000408.xhp\n"
+"par_id3151387\n"
"15\n"
"help.text"
-msgid "Line Style"
-msgstr "Kiểu đường"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153379\n"
-"help.text"
-msgid "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Biểu tượng</alt></image>"
+msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
+msgstr "Tự động sau khi khởi chạy <item type=\"productname\">%PRODUCTNAME</item> lần đầu tiên."
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3149290\n"
+"00000408.xhp\n"
+"par_id3153808\n"
"16\n"
"help.text"
-msgid "Line Color"
-msgstr "Màu đường"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3156214\n"
-"help.text"
-msgid "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3163044\n"
-"17\n"
-"help.text"
-msgid "Line Width"
-msgstr "Độ rộng đường"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154154\n"
-"help.text"
-msgid "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150650\n"
-"18\n"
-"help.text"
-msgid "Area Style / Filling"
-msgstr "Kiểu dáng/Tô đầy Vùng"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153367\n"
-"help.text"
-msgid "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3148557\n"
-"20\n"
-"help.text"
-msgid "Align Top"
-msgstr "Sắp hàng bên trên"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146923\n"
-"help.text"
-msgid "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149287\n"
-"21\n"
-"help.text"
-msgid "Align Bottom"
-msgstr "Sắp hàng bên dưới"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153097\n"
-"help.text"
-msgid "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150873\n"
-"22\n"
-"help.text"
-msgid "Align Center Vertically"
-msgstr "Sắp hàng ở giữa theo chiều dọc"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147436\n"
-"help.text"
-msgid "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147418\n"
-"27\n"
-"help.text"
-msgid "Apply"
-msgstr "Áp dụng"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146147\n"
-"help.text"
-msgid "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3148617\n"
-"28\n"
-"help.text"
-msgid "Cancel"
-msgstr "Thôi"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145800\n"
-"30\n"
-"help.text"
-msgid "Up One Level"
-msgstr "Lên một bậc"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149412\n"
-"help.text"
-msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154064\n"
-"48\n"
-"help.text"
-msgid "Create New Directory"
-msgstr "Tạo thư mục mới"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153221\n"
-"help.text"
-msgid "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145646\n"
-"39\n"
-"help.text"
-msgid "Up One Level"
-msgstr "Lên một bậc"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151320\n"
-"help.text"
-msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153005\n"
-"40\n"
-"help.text"
-msgid "Create New Directory"
-msgstr "Tạo thư mục mới"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146990\n"
-"help.text"
-msgid "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147257\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147257\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153949\n"
-"41\n"
-"help.text"
-msgid "Default Directory"
-msgstr "Thư mục mặc định"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3156361\n"
-"help.text"
-msgid "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146915\n"
-"35\n"
-"help.text"
-msgid "<ahelp hid=\".\">Go to the previous comment</ahelp>"
-msgstr "<ahelp hid=\".\">Trở về bản ghi chú trước</ahelp>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151357\n"
-"help.text"
-msgid "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3159184\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\".\">Go to the next comment</ahelp>"
-msgstr "<ahelp hid=\".\">Tiến tới bản ghi chú kế tiếp</ahelp>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3083285\n"
-"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147339\n"
-"37\n"
-"help.text"
-msgid "Open File"
-msgstr "Mở tập tin"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151189\n"
-"help.text"
-msgid "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149109\n"
-"38\n"
-"help.text"
-msgid "Save As"
-msgstr "Lưu dạng"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3152946\n"
-"help.text"
-msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Biểu tượng</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3155336\n"
-"76\n"
-"help.text"
-msgid "Export Directly as PDF"
-msgstr "Xuất trực tiếp thành dạng PDF"
+msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
+msgstr "Chọn lệnh <emph>Trợ giúp > Đăng ký</emph> (đây là liên kết trực tiếp tới địa chỉ Web bên ngoài)"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
+"00000409.xhp\n"
"tit\n"
"help.text"
-msgid "XML File Formats"
-msgstr "Định dạng tập tin XML"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"bm_id3154408\n"
+"00000409.xhp\n"
+"hd_id3149517\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>exporting; XML files</bookmark_value> <bookmark_value>XML file formats</bookmark_value> <bookmark_value>extensions; file formats</bookmark_value> <bookmark_value>suffixes in file formats</bookmark_value> <bookmark_value>document types in $[officename]</bookmark_value> <bookmark_value>file formats; changing $[officename] defaults</bookmark_value> <bookmark_value>defaults;file formats in $[officename]</bookmark_value> <bookmark_value>file formats;OpenDocument/XML</bookmark_value> <bookmark_value>OpenDocument file formats</bookmark_value> <bookmark_value>ODF file formats</bookmark_value>"
-msgstr "<bookmark_value>xuất khẩu; tập tin XML</bookmark_value><bookmark_value>định dạng tập tin XML</bookmark_value><bookmark_value>phần mở rộng; định dạng tập tin</bookmark_value><bookmark_value>hậu tố trong tên tập tin (định dạng tập tin)</bookmark_value><bookmark_value>các kiểu tài liệu trong $[officename]</bookmark_value><bookmark_value>định dạng tập tin; thay đổi các giá trị mặc định $[officename] </bookmark_value><bookmark_value>giá trị mặc định;định dạng tập tin trong $[officename]</bookmark_value><bookmark_value>định dạng tập tin;OpenDocument/XML</bookmark_value><bookmark_value>định dạng tập tin OpenDocument (tài liệu mở)</bookmark_value><bookmark_value>định dạng tập tin ODF</bookmark_value>"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3154408\n"
+"00000409.xhp\n"
+"par_id3156053\n"
"2\n"
"help.text"
-msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">XML File Formats</link></variable>"
-msgstr "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"Định dạng tập tin XML\">Định dạng tập tin XML</link></variable>"
+msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
+msgstr "Chọn lệnh <emph>Dữ liệu > Lọc > Lọc chuẩn</emph>"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3148919\n"
+"00000409.xhp\n"
+"par_id3154350\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">By default, $[officename] loads and saves files in the OpenDocument file format.</ahelp>"
-msgstr "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">Mặc định là $[officename] nạp và lưu tập tin theo định dạng tập tin OpenDocument (tài liệu mở).</ahelp>"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10725\n"
-"help.text"
-msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
-msgstr "Định dạng tập tin Tài liệu Mở (ODF) là một định dạng tập tin tiêu chuẩn được rất nhiều ứng dụng phần mềm sử dụng. Xem thêm thông tin ở bách khoa trực tuyến Wikipedia: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
+msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
+msgstr "Ô xem bảng cơ sở dữ liệu : nhấn vào biểu tượng <emph>Lọc chuẩn</emph> trên thanh công cụ <emph>Cơ sở dữ liệu</emph>"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3156324\n"
+"00000409.xhp\n"
+"par_id3154183\n"
"4\n"
"help.text"
-msgid "OpenDocument file format names"
-msgstr "Tên định dạng tập tin OpenDocument"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3154926\n"
-"5\n"
-"help.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION uses the following file formats:"
-msgstr "%PRODUCTNAME %PRODUCTVERSION sử dụng các định dạng tập tin này:"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3157898\n"
-"6\n"
-"help.text"
-msgid "Document format"
-msgstr "Định dạng tài liệu"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3149549\n"
-"7\n"
-"help.text"
-msgid "File extension"
-msgstr "Phần mở rộng tập tin"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10762\n"
-"help.text"
-msgid "ODF Text"
-msgstr "Văn bản ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10767\n"
-"help.text"
-msgid "*.odt"
-msgstr "*.odt"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1076D\n"
-"help.text"
-msgid "ODF Text Template"
-msgstr "Mẫu văn bản ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10772\n"
-"help.text"
-msgid "*.ott"
-msgstr "*.ott"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10778\n"
-"help.text"
-msgid "ODF Master Document"
-msgstr "Tài liệu chủ ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1077D\n"
-"help.text"
-msgid "*.odm"
-msgstr "*.odm"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10783\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Tài liệu HTML"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10788\n"
-"help.text"
-msgid "*.html"
-msgstr "*.html"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1078E\n"
-"help.text"
-msgid "HTML Document Template"
-msgstr "Mẫu tài liệu HTML"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10793\n"
-"help.text"
-msgid "*.oth"
-msgstr "*.oth"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10799\n"
-"help.text"
-msgid "ODF Spreadsheet"
-msgstr "Bảng tính ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1079E\n"
-"help.text"
-msgid "*.ods"
-msgstr "*.ods"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107A4\n"
-"help.text"
-msgid "ODF Spreadsheet Template"
-msgstr "Mẫu bảng tính ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107A9\n"
-"help.text"
-msgid "*.ots"
-msgstr "*.ots"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107AF\n"
-"help.text"
-msgid "ODF Drawing"
-msgstr "Bản vẽ ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107B4\n"
-"help.text"
-msgid "*.odg"
-msgstr "*.odg"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107BA\n"
-"help.text"
-msgid "ODF Drawing Template"
-msgstr "Mẫu bản vẽ ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107BF\n"
-"help.text"
-msgid "*.otg"
-msgstr "*.otg"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107C5\n"
-"help.text"
-msgid "ODF Presentation"
-msgstr "Trình diễn ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107CA\n"
-"help.text"
-msgid "*.odp"
-msgstr "*.odp"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107D0\n"
-"help.text"
-msgid "ODF Presentation Template"
-msgstr "Mẫu trình diễn ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107D5\n"
-"help.text"
-msgid "*.otp"
-msgstr "*.otp"
+msgid "Form view: <emph>Standard Filter</emph> icon in the <emph>Form</emph> Bar"
+msgstr "Ô xem biểu mẫu : nhấn vào biểu tượng <emph>Lọc chuẩn</emph> trên thanh <emph>Biểu mẫu</emph>"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107DB\n"
+"00000409.xhp\n"
+"par_id3155619\n"
"help.text"
-msgid "ODF Formula"
-msgstr "Công thức ODF"
+msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Biểu tượng</alt></image>"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E0\n"
+"00000409.xhp\n"
+"par_id3148731\n"
+"5\n"
"help.text"
-msgid "*.odf"
-msgstr "*.odf"
+msgid "Standard Filter"
+msgstr "Lọc chuẩn"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN1085B\n"
+"00000450.xhp\n"
+"tit\n"
"help.text"
-msgid "ODF Database"
-msgstr "Cơ sở dữ liệu ODF"
+msgid "Database"
+msgstr "Cơ sở dữ liệu"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10860\n"
+"00000450.xhp\n"
+"hd_id3154689\n"
+"1\n"
"help.text"
-msgid "*.odb"
-msgstr "*.odb"
+msgid "Database"
+msgstr "Cơ sở dữ liệu"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id9756157\n"
+"00000450.xhp\n"
+"par_id3152876\n"
+"7\n"
"help.text"
-msgid "%PRODUCTNAME Extension"
-msgstr "Phần mở rộng %PRODUCTNAME"
+msgid "<variable id=\"DBTab\">In a database file window, choose <emph>Tools - Table Filter</emph></variable>"
+msgstr "<variable id=\"DBTab\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Công cụ > Lọc bảng</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id2089907\n"
+"00000450.xhp\n"
+"par_id3153244\n"
+"57\n"
"help.text"
-msgid "*.oxt"
-msgstr "*.oxt"
+msgid "<variable id=\"DBAbfragen\"><emph>View - Database Objects - Queries</emph></variable>"
+msgstr "<variable id=\"DBAbfragen\"><emph>Xem > Đối tượng Cơ sở Dữ liệu > Truy vấn</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN1088F\n"
+"00000450.xhp\n"
+"par_id3147294\n"
+"4\n"
"help.text"
-msgid "The HTML format is not an OpenDocument format."
-msgstr "Định dạng HTML không phải là định dạng kiểu OpenDocument."
+msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
+msgstr "<variable id=\"Typ\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính > (thẻ) Thiết lập Cấp cao</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id4818872\n"
+"00000450.xhp\n"
+"par_id3159411\n"
+"5\n"
"help.text"
-msgid "ODF Chart is the name of the file format for stand alone charts. This format with the extension *.odc is currently not in use."
-msgstr "Đồ thị ODF là tên của định dạng tập tin cho các đồ thị độc lập. Định dạng này (với phần mở rộng « *.odc ») không hiện thời được dùng."
+msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
+msgstr "<variable id=\"Datenquelle\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu ODBC hay Sổ địa chỉ, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Kiểu kết nối</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E3\n"
+"00000450.xhp\n"
+"par_id3149119\n"
+"6\n"
"help.text"
-msgid "Older File Formats Prior to %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Các định dạng tập tin cũ hơn %PRODUCTNAME %PRODUCTVERSION"
+msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph></variable>"
+msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811525257\n"
+"00000450.xhp\n"
+"par_id3154497\n"
+"8\n"
"help.text"
-msgid "The OpenDocument format evolves over time."
-msgstr "Định dạng Tài liệu Mở (ODF) cứ tiến triển."
+msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
+msgstr "<variable id=\"ODBC\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu ODBC, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Kiểu kết nối</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565671\n"
+"00000450.xhp\n"
+"par_id3149355\n"
+"61\n"
"help.text"
-msgid "ODF version"
-msgstr "Phiên bản ODF"
+msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
+msgstr "<variable id=\"ldap\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu Sổ địa chỉ, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530375\n"
+"00000450.xhp\n"
+"par_id3157896\n"
+"9\n"
"help.text"
-msgid "Date of standard approval by OASIS"
-msgstr "Ngày tiêu chuẩn được OASIS tán thành"
+msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"JDBC\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu JDBC, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530491\n"
+"00000450.xhp\n"
+"par_id3148548\n"
+"81\n"
"help.text"
-msgid "First supporting version of the software"
-msgstr ""
+msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"mysql\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu MySQL, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565662\n"
+"00000450.xhp\n"
+"par_id3149346\n"
+"10\n"
"help.text"
-msgid "ODF 1.0"
-msgstr "ODF 1.0"
+msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"dBase\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu dBase, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530487\n"
+"00000450.xhp\n"
+"par_id3147043\n"
+"11\n"
"help.text"
-msgid "2005-05-01"
-msgstr "2005-05-01"
+msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
+msgstr "<variable id=\"dBasein\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu dBase, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính > Chỉ mục</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530455\n"
+"00000450.xhp\n"
+"par_id3154317\n"
+"12\n"
"help.text"
-msgid "OpenOffice.org 1.1.5 or StarOffice 7"
-msgstr "OpenOffice.org 1.1.5 hay StarOffice 7"
+msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"Text\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu Văn bản, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565787\n"
+"00000450.xhp\n"
+"par_id3150774\n"
+"20\n"
"help.text"
-msgid "ODF 1.1"
-msgstr "ODF 1.1"
+msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"ADO\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu MS ADO, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530479\n"
+"00000450.xhp\n"
+"par_id3151110\n"
+"21\n"
"help.text"
-msgid "2007-02-02"
-msgstr "2007-02-02"
+msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>"
+msgstr "<variable id=\"SQLStatement\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Công cụ > SQL</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530467\n"
+"00000450.xhp\n"
+"par_id3147209\n"
+"22\n"
"help.text"
-msgid "OpenOffice.org 2.2 or StarOffice 8 Update 4"
-msgstr "OpenOffice.org 2.2 hay StarOffice 8 Update 4"
+msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
+msgstr "<variable id=\"Abfragen\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Truy vấn</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565762\n"
+"00000450.xhp\n"
+"par_id3153880\n"
+"62\n"
"help.text"
-msgid "ODF 1.2"
-msgstr "ODF 1.2"
+msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
+msgstr "<variable id=\"Tabellen\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Bảng</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530440\n"
+"00000450.xhp\n"
+"par_id3153760\n"
+"64\n"
"help.text"
-msgid "2011-09-30"
-msgstr ""
+msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
+msgstr "<variable id=\"tabellenentwurf\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Bảng</emph>, sau đó chọn lệnh <emph>Chèn > Thiết kế bảng</emph> hay <emph>Sửa > Sửa</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530471\n"
+"00000450.xhp\n"
+"par_id3156329\n"
+"65\n"
"help.text"
-msgid "OpenOffice.org 3, StarOffice 9, Oracle Open Office"
-msgstr ""
+msgid "<variable id=\"indexentwurf\">In a database file window, click the Tables icon. Choose <emph>Insert - Table Design</emph> or <emph>Edit - Edit</emph></variable>"
+msgstr "<variable id=\"indexentwurf\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Bảng</emph>, sau đó chọn lệnh <emph>Chèn > Thiết kế bảng</emph> hay <emph>Sửa > Sửa</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id1001200912381153\n"
+"00000450.xhp\n"
+"par_id3154047\n"
+"23\n"
"help.text"
-msgid "ODF 1.2 (Extended)"
-msgstr ""
+msgid "<variable id=\"AbfrageNeu\">In a database file window, choose <emph>Insert - Query (Design view)</emph></variable>"
+msgstr "<variable id=\"AbfrageNeu\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Chèn > Truy vấn (ô xem thiết kế)</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id100120091238112\n"
+"00000450.xhp\n"
+"par_id3149579\n"
+"24\n"
"help.text"
-msgid "-"
-msgstr "-"
+msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
+msgstr "<variable id=\"entwab\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Truy vấn</emph>, sau đó chọn lệnh <emph>Sửa > Sửa</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id1001200912381174\n"
+"00000450.xhp\n"
+"par_id3149902\n"
+"25\n"
"help.text"
-msgid "OpenOffice.org 3.2 or StarOffice 9.2"
-msgstr "OpenOffice.org 3 hay StarOffice 9"
+msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
+msgstr "<variable id=\"FehlendesElement\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Truy vấn</emph>, sau đó chọn lệnh <emph>Sửa > Sửa</emph>. Không còn có lại trường đá tham chiếu thì bạn thấy hộp thoại này.</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811525591\n"
+"00000450.xhp\n"
+"par_id3159166\n"
+"26\n"
"help.text"
-msgid "In current versions, you can select to save your documents using ODF 1.2 (default) or ODF 1.0/1.1 (for backward compatibility). Choose <item type=\"menuitem\">Tools - Options - Load/Save - General</item> and select the ODF format version."
-msgstr "Trong phiên bản OpenOffice.org 3 hay StarOffice 9, người dùng có khả năng lưu tài liệu theo định dạng ODF 1.2 (mặc định) hay ODF 1.0/1.1 (để tương thích ngược). Mở mục trình đơn <item type=\"menuitem\">Công cụ > Tùy chọn > Nạp/Lưu > Chung</item> và lựa chọn phiên bản định dạng ODF."
+msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
+msgstr "<variable id=\"Joins\">Mở ô thiết kế truy vấn, sau đó chọn lệnh <emph>Chèn > Quan hệ mới</emph>, hoặc nhấn-đôi vào một đường kết nối giữa hai bảng.</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E9\n"
+"00000450.xhp\n"
+"par_id3151245\n"
"help.text"
-msgid "If you want to exchange documents with users that still use OpenOffice.org 1 or StarOffice 7, save the document using the respectively named filter in the <emph>File type</emph> listbox."
-msgstr "Nếu bạn muốn trao đổi tài liệu với người dùng vẫn còn chạy ứng dụng OpenOffice.org 1 hay StarOffice 7, hãy lưu tài liệu dùng bộ lọc có tên tương ứng trong hộp danh sách <emph>Dạng tập tin</emph>."
+msgid "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Biểu tượng</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3146907\n"
-"1\n"
+"00000450.xhp\n"
+"par_id3153896\n"
+"41\n"
"help.text"
-msgid "If you want to define another file format as the default, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph> to find alternative file formats for each $[officename] document type."
-msgstr ""
+msgid "Insert Tables"
+msgstr "Chèn bảng"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3150398\n"
-"28\n"
+"00000450.xhp\n"
+"par_id3149457\n"
"help.text"
-msgid "XML file structure"
-msgstr "Cấu trúc tập tin XML"
+msgid "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Biểu tượng</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3149649\n"
-"29\n"
+"00000450.xhp\n"
+"par_id3159085\n"
+"43\n"
"help.text"
-msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
-msgstr "Tài liệu theo định dạng OpenDocument được cất giữ dạng kho nén zip chứa tập tin XML. Để xem tập tin XML như vậy, bạn có thể giải nén kho bằng chương trình unzip (hay chương trình giải nén khác cũng mở kho nén zip). Tập tin OpenDocument chứa những tập tin và thư mục này:"
+msgid "New Relation"
+msgstr "Quan hệ mới"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153178\n"
-"30\n"
+"00000450.xhp\n"
+"par_id3150414\n"
+"47\n"
"help.text"
-msgid "The text content of the document is located in <emph>content.xml</emph>."
-msgstr "Nội dung văn bản của tài liệu nằm trong tập tin <emph>content.xml</emph>."
+msgid "<emph>Find Record</emph> icon on the Table Data bar and Form Design bar"
+msgstr "Biểu tượng <emph>Tìm mục ghi</emph> trên thanh <emph>Dữ liệu bảng</emph> và <emph>Thiết kế Biểu mẫu</emph>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3154068\n"
-"31\n"
+"00000450.xhp\n"
+"par_id3157962\n"
"help.text"
-msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. On the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General</emph> tab page you can activate the use of indentations and line breaks by clearing the check box <emph>Size optimization for ODF format</emph>."
-msgstr ""
+msgid "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Biểu tượng</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3145152\n"
-"32\n"
+"00000450.xhp\n"
+"par_id3157322\n"
+"48\n"
"help.text"
-msgid "The file <emph>meta.xml</emph> contains the meta information of the document, which you can enter under <emph>File - Properties</emph>."
-msgstr "Tập tin <emph>meta.xml</emph> chứa siêu thông tin về tài liệu, mà bạn có thể nhập vào hộp thoại sẽ mở khi bạn chọn lệnh trình đơn <emph>Tập tin > Thuộc tính</emph>."
+msgid "Find Record"
+msgstr "Tìm mục ghi"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150740\n"
-"33\n"
+"00000450.xhp\n"
+"par_id3150870\n"
+"49\n"
"help.text"
-msgid "If you save a document with a password, <emph>meta.xml</emph> will not be encrypted."
-msgstr "Lưu tài liệu bằng mật khẩu thì tập tin <emph>meta.xml</emph> vẫn không được mật mã."
+msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar"
+msgstr "Biểu tượng <emph>Thứ tự Sắp xếp</emph> trên thanh <emph>Dữ liệu bảng</emph> và <emph>Thiết kế Biểu mẫu</emph>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150391\n"
-"34\n"
+"00000450.xhp\n"
+"par_id3150393\n"
"help.text"
-msgid "The file <emph>settings.xml</emph> contains further information about the settings for this document."
-msgstr "Tập tin <emph>settings.xml</emph> chứa thêm thông tin về thiết lập cho tài liệu này."
+msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Biểu tượng</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150447\n"
-"35\n"
+"00000450.xhp\n"
+"par_id3145745\n"
+"50\n"
"help.text"
-msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
-msgstr "Tập tin <emph>styles.xml,</emph> chứa các kiểu dáng được áp dụng cho tài liệu, như đặt trong cửa sổ <emph>Kiểu dáng và Định dạng</emph>."
+msgid "Sort Order"
+msgstr "Thứ tự Sắp xếp"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153353\n"
-"36\n"
+"00000450.xhp\n"
+"par_id3145171\n"
+"55\n"
"help.text"
-msgid "The <emph>meta-inf/manifest.xml</emph> file describes the structure of the XML file."
-msgstr "Tập tin <emph>meta-inf/manifest.xml</emph> diễn tả cấu trúc của tập tin XML đó."
+msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"allgemein\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153368\n"
-"37\n"
+"00000450.xhp\n"
+"par_id3159252\n"
+"63\n"
"help.text"
-msgid "Additional files and folders can be contained in the packed file format."
-msgstr "Định dạng tập tin đã nén sẽ chứa thêm tập tin và thư mục."
+msgid "<variable id=\"tabellecopy\">Drag and drop a table or a query into the table part of another database file window</variable>"
+msgstr "<variable id=\"tabellecopy\">Kéo thả một bảng hay truy vấn vào phần bảng của cửa sổ tập tin cơ sở dữ liệu khác</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3154299\n"
-"38\n"
+"00000450.xhp\n"
+"par_id3148560\n"
+"66\n"
"help.text"
-msgid "Definition of the XML formats"
-msgstr "Định nghĩa định dạng XML"
+msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
+msgstr "<variable id=\"formularneu\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Chèn > Biểu mẫu</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10AAD\n"
+"00000450.xhp\n"
+"par_id3155430\n"
+"67\n"
"help.text"
-msgid "The schema for the OpenDocument formats can be found on the <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> web site."
-msgstr "Bạn có thể tìm lược đồ cho các định dạng OpenDocument ở địa chỉ Web của tổ chứa <link href=\"http://www.oasis-open.org\">OASIS</link>."
+msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"benutzereinstellungen\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10AC5\n"
+"00000450.xhp\n"
+"par_id3147441\n"
+"69\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01130000.xhp\">Trợ lý Chuyển đổi Tài liệu</link>"
+msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
+msgstr "<variable id=\"relationen\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Công cụ > Quan hệ</emph></variable>"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
+"00040500.xhp\n"
"tit\n"
"help.text"
msgid "Format Menu"
msgstr "Trình đơn Định dạng"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"hd_id3155757\n"
+"00040500.xhp\n"
+"hd_id3150347\n"
"1\n"
"help.text"
msgid "Format Menu"
msgstr "Trình đơn Định dạng"
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147294\n"
-"2\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Height</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Hàng > Bề cao</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149551\n"
-"3\n"
-"help.text"
-msgid "Open context menu of a row header in an open database table - choose <emph>Row Height</emph>"
-msgstr "Mở trình đơn ngữ cảnh của phần đầu hàng trong bảng cơ sở dữ liệu còn mở, sau đó chọn mục <emph>Bề cao hàng</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153136\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Width</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Cột > Bề rộng</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150756\n"
-"5\n"
-"help.text"
-msgid "Open context menu of a column header in a database table - choose <emph>Column Width</emph>"
-msgstr "Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu còn mở, sau đó chọn mục <emph>Bề rộng cột</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3148668\n"
-"11\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ô > (thẻ) Số</emph></caseinline></switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3152349\n"
-"13\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Định dạng > Kiểu dáng và Định dạng</emph>, mở trình đơn ngữ cảnh rồi chọn mục <emph>Sửa/Mới > Số</emph></caseinline></switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3161459\n"
-"14\n"
-"help.text"
-msgid "Open context menu for a column header in an open database table - choose <emph>Column Format - Format</emph> tab"
-msgstr "Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu còn mở, sau đó chọn mục <emph>Định dạng cột > Định dạng</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147531\n"
-"15\n"
-"help.text"
-msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
-msgstr "Chọn lệnh <emph>Định dạng > Trục > Trục Y > (thẻ) Số</emph> (tài liệu đồ thị)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150823\n"
-"32\n"
-"help.text"
-msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Fields - Other - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
-msgstr "Cũng như hộp thoại <emph>Định dạng số</emph> cho bảng và trường trong tài liệu văn bản: chọn lệnh <emph>Định dạng > Định dạng số</emph>, hoặc chọn <emph>Chèn > Trường > Khác > (thẻ) Biến</emph> rồi chọn mục « Định dạng thêm » trong danh sách các <emph>Định dạng</emph>."
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3154923\n"
-"6\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\">Choose <emph>Format - Title - Main Title - Alignment</emph> tab </caseinline><defaultinline>Choose <emph>Format - Cells - Alignment</emph> tab</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\">Chọn lệnh <emph>Định dạng > Tựa đề > Tựa đề chính > (thẻ) Sắp hàng</emph> </caseinline><defaultinline>Chọn lệnh <emph>Định dạng > Ô > (thẻ) Sắp hàng</emph></defaultinline></switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149457\n"
-"7\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng cột > (thẻ) Sắp hàng</emph></defaultinline></switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150400\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"tabform\">Open context menu of a row header in a database table - choose <emph>Table Format</emph></variable>"
-msgstr "<variable id=\"tabform\">Mở trình đơn ngữ cảnh của phần đầu hàng trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng bảng</emph></variable>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149650\n"
-"33\n"
-"help.text"
-msgid "<variable id=\"spaltform\">Open context menu of a column header in a database table - choose <emph>Column Format</emph></variable>"
-msgstr "<variable id=\"spaltform\">Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng cột</emph></variable>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153799\n"
-"34\n"
-"help.text"
-msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
-msgstr "<variable id=\"zeilenloeschen\">Mở trình đơn ngữ cảnh của phần hàng cột trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Xoá hàng</emph></variable>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150495\n"
-"16\n"
-"help.text"
-msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Lật</emph> ($[officename] Draw)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3155742\n"
-"17\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đồ họa > (thẻ) Đồ họa</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3158407\n"
-"35\n"
-"help.text"
-msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Lật</emph> (tài liệu trình diễn)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150290\n"
-"20\n"
-"help.text"
-msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Lật > Theo chiều dọc</emph> ($[officename] Draw)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153179\n"
-"21\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đồ họa > (thẻ) Đồ họa</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3157960\n"
-"36\n"
-"help.text"
-msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Lật > Theo chiều dọc</emph> (tài liệu trình diễn)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153369\n"
-"26\n"
-"help.text"
-msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Lật > Theo chiều ngang</emph> ($[officename] Draw)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147348\n"
-"27\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics</emph>, and then click the <emph>Graphics</emph> tab"
-msgstr "Chọn lệnh <emph>Định dạng > Đồ họa</emph>, sau đó nhấn vào thẻ <emph>Đồ họa</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3156106\n"
-"42\n"
-"help.text"
-msgid "Choose <emph>Format - Flip - Horizontally</emph>"
-msgstr "Chọn lệnh <emph>Định dạng > Lật > Theo chiều ngang</emph>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3152578\n"
-"37\n"
-"help.text"
-msgid "Right-click a selected object, and then choose <emph>Flip - Horizontally</emph> ($[officename] Impress)"
-msgstr "Nhấn-phải vào đối tượng đã chọn, sau đó chọn mục <emph>Lật > Theo chiều ngang</emph> ($[officename] Impress)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147318\n"
-"38\n"
-"help.text"
-msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
-msgstr "Chọn lệnh <emph>Sửa đổi > Phân bổ</emph> ($[officename] Draw)"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149064\n"
-"39\n"
-"help.text"
-msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
-msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Phân bổ</emph> ($[officename] Impress)"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit Menu"
-msgstr "Trình đơn Sửa"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"hd_id3147273\n"
-"1\n"
-"help.text"
-msgid "Edit Menu"
-msgstr "Trình đơn Sửa"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3085157\n"
-"2\n"
-"help.text"
-msgid "Choose <emph>Edit - Undo</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Hủy bướ</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145160\n"
-"564\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154094\n"
-"3\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar or Table Data bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph> hay <emph>Dữ liệu bảng</emph>, nhấn vào"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3155449\n"
-"help.text"
-msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155577\">Biểu tượng</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148563\n"
-"4\n"
-"help.text"
-msgid "Undo"
-msgstr "Hủy bước"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145068\n"
-"5\n"
-"help.text"
-msgid "Choose <emph>Edit - Redo</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Bước lại</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154938\n"
-"help.text"
-msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150358\">Biểu tượng</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3151211\n"
-"7\n"
-"help.text"
-msgid "Redo"
-msgstr "Bước lại"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154365\n"
+"00040500.xhp\n"
+"par_id3145356\n"
"8\n"
"help.text"
-msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
-msgstr "<variable id=\"letzter\">Chọn lệnh <emph>Sửa > Lặp lại</emph></variable>"
+msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph></variable>"
+msgstr "<variable id=\"standard\">Chọn lệnh <emph>Định dạng > Định dạng Mặc định</emph></variable>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149765\n"
+"00040500.xhp\n"
+"par_id3153244\n"
"9\n"
"help.text"
-msgid "Choose <emph>Edit - Cut</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Cắt</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3144762\n"
-"565\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
+msgid "Choose <emph>Format - Character</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148744\n"
+"00040500.xhp\n"
+"par_id3152352\n"
"10\n"
"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
+msgid "On <emph>Text Formatting</emph> Bar (with cursor in object), click"
+msgstr "Trên thanh <emph>Định dạng Văn bản</emph> (khi con trỏ nằm trong đối tượng), nhấn vào"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145173\n"
+"00040500.xhp\n"
+"par_id3148998\n"
"help.text"
-msgid "<image id=\"img_id3145744\" src=\"cmd/sc_helpmenu.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145744\" src=\"cmd/sc_helpmenu.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145744\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154894\">Biểu tượng</alt></image>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154153\n"
+"00040500.xhp\n"
+"par_id3149999\n"
"11\n"
"help.text"
-msgid "Cut"
-msgstr "Cắt"
+msgid "Character"
+msgstr "Ký tự"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150742\n"
+"00040500.xhp\n"
+"par_id3153935\n"
"12\n"
"help.text"
-msgid "Choose <emph>Edit - Copy</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Chép</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148923\n"
-"566\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159254\n"
-"13\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154985\n"
-"help.text"
-msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156441\">Biểu tượng</alt></image>"
+msgid "Choose <emph>Format - Character - Font</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Phông</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150685\n"
+"00040500.xhp\n"
+"par_id3157958\n"
"14\n"
"help.text"
-msgid "Copy"
-msgstr "Chép"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159153\n"
-"15\n"
-"help.text"
-msgid "Choose <emph>Edit - Paste</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Dán</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3155860\n"
-"567\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh và chọn mục <emph>Sửa/Mới > (thẻ) Phông</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159083\n"
+"00040500.xhp\n"
+"par_id3155338\n"
"16\n"
"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3156106\n"
-"help.text"
-msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159196\">Biểu tượng</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154471\n"
-"17\n"
-"help.text"
-msgid "Paste"
-msgstr "Dán"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3152791\n"
-"532\n"
-"help.text"
-msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
-msgstr "<variable id=\"inhalte\">Chọn lệnh <emph>Sửa > Dán đặc biệt</emph></variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148555\n"
-"533\n"
-"help.text"
-msgid "Choose <emph>Edit - Select All</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Chọn tất cả</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3152417\n"
-"568\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145748\n"
-"help.text"
-msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153095\">Biểu tượng</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153139\n"
-"575\n"
-"help.text"
-msgid "Select All"
-msgstr "Chọn tất cả"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145251\n"
-"555\n"
-"help.text"
-msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Changes</emph></variable>"
-msgstr "<variable id=\"aenderungen\">Chọn lệnh <emph>Sửa > Thay đổi</emph></variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153336\n"
-"556\n"
-"help.text"
-msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Changes - Record</emph></variable>"
-msgstr "<variable id=\"aufzeichnen\">Chọn lệnh <emph>Sửa > Thay đổi > Thu</emph></variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150594\n"
-"557\n"
-"help.text"
-msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Changes - Show</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Changes - Show</emph></caseinline></switchinline></variable>"
-msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Sửa > Thay đổi > Hiện</emph></caseinline><caseinline select=\"CALC\">Chọn lệnh <emph>Sửa > Thay đổi > Hiện</emph></caseinline></switchinline></variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153845\n"
-"558\n"
-"help.text"
-msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Changes - Accept or Reject</emph></variable>"
-msgstr "<variable id=\"rotlinie\">Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối</emph></variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148587\n"
-"559\n"
-"help.text"
-msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab"
-msgstr "Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối > Liệt kê</emph> tab"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150396\n"
-"574\n"
-"help.text"
-msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
-msgstr "Chọn lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng và sửa thay đổi.</emph> Khi hộp thoại Tự động Định dạng xuất hiện, nhấn vào nút <emph>Sửa thay đổi</emph> và thấy trang thẻ <emph>Liệt kê</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153878\n"
-"560\n"
-"help.text"
-msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Changes - Accept or Reject - Filter</emph> tab </variable>"
-msgstr "<variable id=\"rotliniefilter\">Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối > Lọc</emph></variable>"
+msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab"
+msgstr "Mở trình đơn ngữ cảnh của phần đầu hàng trên bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng bảng > (thẻ) Phông</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151281\n"
-"561\n"
+"00040500.xhp\n"
+"par_id3150355\n"
+"18\n"
"help.text"
-msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Changes - Merge Document</emph></variable>"
-msgstr "<variable id=\"einfuegen\">Chọn lệnh <emph>Sửa > Thay đổi > Trộn tài liệu</emph></variable>"
+msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > (thẻ) Ký tự</emph> (tài liệu đồ thị)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153224\n"
-"562\n"
+"00040500.xhp\n"
+"par_id3149812\n"
+"19\n"
"help.text"
-msgid "<variable id=\"dvergl\">Choose <emph>Edit - Compare Document</emph></variable>"
-msgstr "<variable id=\"dvergl\">Chọn lệnh <emph>Sửa > So sánh tài liệu</emph></variable>"
+msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Chú giải > (thẻ) Ký tự</emph> (tài liệu đồ thị)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148773\n"
-"563\n"
+"00040500.xhp\n"
+"par_id3153717\n"
+"20\n"
"help.text"
-msgid "Choose <emph>Edit - Changes - Comment</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Thay đổi > Chú thích</emph>"
+msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Trục > (thẻ) Ký tự</emph> (tài liệu đồ thị)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149488\n"
-"571\n"
+"00040500.xhp\n"
+"par_id3154749\n"
+"17\n"
"help.text"
-msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Thay đổi > Chấp nhận hay Từ chối > Liệt kê</emph>. Nhấn vào mục trong danh sách, sau đó mở trình đơn ngữ cảnh. Chọn lệnh <emph>Sửa chú thích</emph>."
+msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
+msgstr "Chọn lệnh <emph>Định dạng > Ô > (thẻ) Phông</emph> (bảng tính)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156297\n"
-"49\n"
+"00040500.xhp\n"
+"par_id3156306\n"
+"199\n"
"help.text"
-msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr "Chọn lệnh <emph>Sửa > Tìm và Thay thế</emph>"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgstr "Lệnh trình đơn <emph>Định dạng > Trang > Đầu/Chân trang > (nút) Sửa</emph> (bảng tính)"
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154503\n"
-"569\n"
+"00040500.xhp\n"
+"par_id3155829\n"
+"21\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
+msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Hiệu ứng phông</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155083\n"
-"456\n"
+"00040500.xhp\n"
+"par_id3149819\n"
+"23\n"
"help.text"
-msgid "On Standard bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) HIệu ứng phông</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150020\n"
+"00040500.xhp\n"
+"par_id3159176\n"
+"200\n"
"help.text"
-msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149121\">Biểu tượng</alt></image>"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgstr "Lệnh trình đơn <emph>Định dạng > Trang > Đầu/Chân trang > (nút) Sửa</emph> (bảng tính)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3144748\n"
-"50\n"
+"00040500.xhp\n"
+"par_id3153541\n"
+"181\n"
"help.text"
-msgid "Find & Replace"
-msgstr "Tìm và thay thế"
+msgid "Choose <emph>Format - Character - Position</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Vị trí</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156357\n"
-"552\n"
+"00040500.xhp\n"
+"par_id3159256\n"
+"183\n"
"help.text"
-msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
-msgstr "<variable id=\"suchenattribute\">Chọn lệnh <emph>Sửa > Tìm và Thay thế > Thuộc tính</emph></variable>"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Sắp hàng</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153840\n"
-"553\n"
+"00040500.xhp\n"
+"par_id3151385\n"
+"201\n"
"help.text"
-msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
-msgstr "<variable id=\"suchenformat\">Chọn lệnh <emph>Sửa > Tìm và Thay thế > (nút) Định dạng</emph></variable>"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgstr "Lệnh trình đơn <emph>Định dạng > Trang > Đầu/Chân trang > (nút) Sửa</emph> (bảng tính)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3146971\n"
-"554\n"
+"00040500.xhp\n"
+"par_id3148550\n"
+"186\n"
"help.text"
-msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box and <emph>...</emph> button."
-msgstr "Chọn lệnh <emph>Sửa > Tìm và Thay thế > (hộp chọn) Tìm tương tự</emph> và cái nút <emph>...</emph>."
+msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Bố trí Châu Á</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153709\n"
-"572\n"
+"00040500.xhp\n"
+"par_id3152811\n"
+"188\n"
"help.text"
-msgid "On the <emph>Table Data</emph> Bar, click <emph>Find</emph> icon - <emph>Similarity search</emph> check box - <emph>...</emph> button (database table view)"
-msgstr "Trên thanh <emph>Dữ liệu bảng</emph>, nhấn vào biểu tượng <emph>Tìm</emph> rồi hộp chọn <emph>Tìm tương tự</emph> và cái nút <emph>...</emph> (ô xem bảng cơ sở dữ liệu)"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Bố trí Châu Á</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150749\n"
-"573\n"
+"00040500.xhp\n"
+"par_id3153524\n"
+"190\n"
"help.text"
-msgid "On <emph>Form Design</emph> Bar, click <emph>Record Search</emph> - <emph>Similarity search</emph> check box - <emph>...</emph> button (form view)"
-msgstr "Trên thanh <emph>Thiết kế biểu mẫu</emph>, nhấn vào mục <emph>Tìm mục ghi > (hộp chọn) Tìm tương tự > (nút) ...</emph> (ô xem biểu mẫu)"
+msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Kiểu in Châu Á</emph> (không phải trong mã HTML)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3152960\n"
-"534\n"
+"00040500.xhp\n"
+"par_id3154366\n"
+"191\n"
"help.text"
-msgid "Choose <emph>View - Navigator</emph>"
-msgstr "Chọn lệnh <emph>Xem > Bộ điều hướng</emph>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Kiểu in Châu Á</emph></caseinline></switchinline>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3163824\n"
-"535\n"
+"00040500.xhp\n"
+"par_id3148742\n"
+"193\n"
"help.text"
-msgid "On <emph>Standard</emph> Bar, click"
-msgstr "Trên thanh <emph>Chuẩn</emph>, nhấn vào"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Kiểu in Châu Á</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159183\n"
+"00040500.xhp\n"
+"par_id3148922\n"
+"26\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Biểu tượng</alt></image>"
+msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Siêu liên kết</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3147359\n"
-"536\n"
+"00040500.xhp\n"
+"par_id3149169\n"
+"29\n"
"help.text"
-msgid "Navigator On/Off"
-msgstr "Bật/tắt Bộ điều hướng"
+msgid "Choose <emph>Format - Paragraph</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3147338\n"
-"576\n"
+"00040500.xhp\n"
+"par_id3151381\n"
+"30\n"
"help.text"
-msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph></variable>"
-msgstr "<variable id=\"litdat\">Chọn lệnh <emph>Công cụ > Cơ sở Dữ liệu Thư tịch</emph></variable>"
+msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
+msgstr "Trên thanh <emph>Định dạng Văn bản</emph> (khi con trỏ nằm trong đối tượng), nhấn vào"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149281\n"
-"538\n"
+"00040500.xhp\n"
+"par_id3155995\n"
"help.text"
-msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
-msgstr "<variable id=\"link\">Chọn lệnh <emph>Sửa > Liên kết</emph></variable>"
+msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150495\">Biểu tượng</alt></image>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159339\n"
-"551\n"
+"00040500.xhp\n"
+"par_id3147299\n"
+"31\n"
"help.text"
-msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
-msgstr "<variable id=\"linkae\">Chọn lệnh <emph>Sửa > Liên kết > Sửa liên kết</emph> (chỉ liên kết kiểu DDE)</variable>"
+msgid "Paragraph"
+msgstr "Đoạn văn"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148927\n"
-"543\n"
+"00040500.xhp\n"
+"par_id3147289\n"
+"4\n"
"help.text"
-msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
-msgstr "Chọn một khung nào đó, sau đó chọn lệnh <emph>Sửa > Đối tượng > Thuộc tính</emph>"
+msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Sắp hàng</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156315\n"
-"577\n"
+"00040500.xhp\n"
+"par_id3147352\n"
+"179\n"
"help.text"
-msgid "Open context menu of selected frame - choose <emph>Properties</emph>"
-msgstr "Mở trình đơn ngữ cảnh của khung đã chọn, sau đó chọn mục <emph>Thuộc tính</emph>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Sắp hàng</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151251\n"
-"545\n"
+"00040500.xhp\n"
+"par_id3154640\n"
+"32\n"
"help.text"
-msgid "<variable id=\"plugin\">Choose <emph>Edit - Plug-in</emph></variable>"
-msgstr "<variable id=\"plugin\">Chọn lệnh <emph>Sửa > Phần bổ sung</emph></variable>"
+msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Thụt lề và Giãn cách</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156091\n"
-"546\n"
+"00040500.xhp\n"
+"par_id3152463\n"
+"34\n"
"help.text"
-msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
-msgstr "<variable id=\"imagemap\">Chọn lệnh <emph>Sửa > Sơ đồ ảnh</emph> (cũng nằm trong trình đơn ngữ cảnh của đối tượng đã chọn) </variable>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Thụt lề và Giãn cách</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155936\n"
-"550\n"
+"00040500.xhp\n"
+"par_id3154319\n"
+"39\n"
"help.text"
-msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
-msgstr "<variable id=\"imapeigbea\">Chọn lệnh <emph>Sửa > Sơ đồ ảnh</emph>, sau đó lựa chọn một phần của sơ đồ ảnh và nhấn vào mục <emph>Thuộc tính > Mô tả</emph></variable>"
+msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Thẻ</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149259\n"
-"547\n"
+"00040500.xhp\n"
+"par_id3154833\n"
+"41\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
-msgstr "<variable id=\"edit1\">Chọn lệnh <emph>Sửa > Đối tượng</emph></variable>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Thẻ</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154966\n"
-"548\n"
+"00040500.xhp\n"
+"par_id3159155\n"
+"43\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
-msgstr "<variable id=\"edit2\">Chọn lệnh <emph>Sửa > Đối tượng > Sửa</emph>, (cũng nằm trong trình đơn ngữ cảnh của đối tượng đã chọn) </variable>"
+msgid "Double-click the ruler"
+msgstr "Nhấn đôi vào thước đo"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149565\n"
-"549\n"
+"00040500.xhp\n"
+"par_idN109E2\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
-msgstr "<variable id=\"edit3\">Chọn lệnh <emph>Sửa > Đối tượng > Mở</emph></variable>"
+msgid "(all options only in Writer or Calc)"
+msgstr "(tất cả các tùy chọn chỉ hoạt động trong Writer hay Calc)"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156105\n"
+"44\n"
"help.text"
-msgid "Glossary of Internet Terms"
-msgstr "Từ điển các thuật ngữ Internet"
+msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Viền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3150702\n"
+"00040500.xhp\n"
+"par_id3154149\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>Internet glossary</bookmark_value><bookmark_value>common terms;Internet glossary</bookmark_value><bookmark_value>glossaries;Internet terms</bookmark_value><bookmark_value>terminology;Internet glossary</bookmark_value>"
-msgstr "<bookmark_value>bản chú giải Internet</bookmark_value><bookmark_value>thuật ngữ thường dùng;từ điển thuật ngữ Internet</bookmark_value><bookmark_value>tự điển thuật ngữ; thuật ngữ Internet</bookmark_value><bookmark_value>thuật ngữ; từ điển thuật ngữ Internet</bookmark_value>"
+msgid "Choose <emph>Format - Picture - Borders</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ảnh > (thẻ) Viền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3150702\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3163822\n"
+"48\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
-msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Từ điển các thuật ngữ Internet\">Từ điển các thuật ngữ Internet</link>"
+msgid "Choose <emph>Format - Frame/Object - Borders</emph> tab"
+msgstr "Chọn thẻ <emph>Định dạng > Khung/Đối tượng > Viền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3155577\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3150048\n"
+"51\n"
"help.text"
-msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
-msgstr "Nếu bạn là người mới đến Internet, bạn sẽ thấy nhiều thuật ngữ không quen thuộc: trình duyệt, liên kết lưu, thư điện tử, trang chủ, máy tìm kiếm v.v. Để giúp bạn quen với Internet, từ điển thuật ngữ này giải thích một số thuật ngữ quan trọng hơn thường dùng trên Internet, Intranet, mail và news. Lưu ý: bạn cũng có thể tra các thuật ngữ và từ cấu tạo Internet ở từ điển cộng đồng tiếng Việt Wiktionary (http://vi.wiktionary.org/wiki/Trang_Ch%C3%ADnh) và một trang từ cấu tạo Internet riêng (http://www.riverland.net.au/~clytie/viet/netacrvn.html)."
+msgid "Choose <emph>Format - Page - Borders</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Viền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3153146\n"
-"36\n"
+"00040500.xhp\n"
+"par_id3149911\n"
+"53\n"
"help.text"
-msgid "Frames"
-msgstr "Khung"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Viền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3157909\n"
-"37\n"
+"00040500.xhp\n"
+"par_id3150094\n"
+"54\n"
"help.text"
-msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
-msgstr "Khung (frames) có ích để thiết kế bố trí của trang <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> (trang Web). $[officename] dùng khung nổi vào đó bạn có thể chèn đối tượng như đồ họa (ảnh), tập tin phim và âm thanh (v.d. âm nhạc). Trình đơn ngữ cảnh của khung thì hiển thị các tùy chọn để phục hồi hay chỉnh sửa nội dung của khung. Cũng có truy cập một số lệnh như vậy bằng cách lựa chọn khung, sau đó chọn lệnh trình đơn <emph>Sửa > Đối tượng</emph>."
+msgid "Choose <emph>Format - Page - Header - More</emph> button"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3147077\n"
-"43\n"
+"00040500.xhp\n"
+"par_id3154501\n"
+"55\n"
"help.text"
-msgid "FTP"
-msgstr "FTP"
+msgid "Choose <emph>Format - Page - Footer - More</emph> button"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3147335\n"
-"44\n"
+"00040500.xhp\n"
+"par_id3148455\n"
+"56\n"
"help.text"
-msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
-msgstr "FTP là từ cấu tạo bằng chữ đầu của những từ khác: nọ đại diện thuật ngữ File Transfer Protocol (giao thức truyền tập tin) để truyền tập tin qua Internet. FTP server (trình phục vụ FTP) là chương trình trên máy tính được kết nối đến Internet mà cất giữ các tập tin cần truyền bằng FTP. Dù FTP dùng để truyền và tải xuống tập tin qua Internet, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol: giao thức truyền siêu văn bản) cung cấp thiết lập kết nối và cách truyền dữ liệu giữa trình phục vụ Web và ứng dụng khách (v.d. trình duyệt Web trên máy tính của bạn)."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ô > (thẻ) Viền</emph></caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3145609\n"
+"00040500.xhp\n"
+"par_id3155915\n"
+"177\n"
"help.text"
-msgid "<bookmark_value>HTML; definition</bookmark_value>"
-msgstr "<bookmark_value>HTML; định nghĩa</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lệnh trình đơn <emph>Định dạng > Đoạn văn > (thẻ) Viền > Giãn cách tới nội dung</emph></caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3145609\n"
-"56\n"
+"00040500.xhp\n"
+"par_id3159130\n"
+"178\n"
"help.text"
-msgid "HTML"
-msgstr "HTML"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lệnh trình đơn<emph> Định dạng > Trang > (thẻ) Viền > Giãn cách tới nội dung</emph></caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3161459\n"
+"00040500.xhp\n"
+"par_id3155853\n"
"57\n"
"help.text"
-msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> and integrates text, graphics, videos and sound."
-msgstr "HTML (Hypertext Markup Language: ngôn ngữ định dạng siêu văn bản) là một ngôn ngữ mã tài liệu dùng làm định dạng tập tin cho các tài liệu Web (WWW). Nó bắt nguồn từ ngôn ngữ <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> và hợp nhất cả văn bản, đồ họa, ảnh động và âm thanh."
+msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đoạn văn > (thẻ) Nền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154346\n"
+"00040500.xhp\n"
+"par_id3147330\n"
"58\n"
"help.text"
-msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
-msgstr "Nếu bạn muốn gõ trực tiếp các lệnh HTML, chẳng hạn khi làm bài học từ cuốn sách HTML sẵn sàng, ghi nhớ rằng trang HTML chỉ là tập tin văn bản thuần (nhập thô). Lưu tài liệu như vậy dưới kiểu tài liệue <emph>Văn bản</emph> và gán cho nó phần mở rộng tập tin « .html ». Kiểm tra xem tên tập tin không chứa ký tự đặc biệt (chữ có dấu phụ, đ, Đ, v.v.). Muốn mở lại tập tin này bằng $[officename] để chỉnh sửa mã HTML thì bạn cần phải nạp nó với kiểu tập tin <emph>Văn bản</emph> (đúng như lưu nó), không phải với kiểu <emph>trang Web</emph> mà hiển thị trang như trong trình duyệt."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153960\n"
-"244\n"
-"help.text"
-msgid "There are several references on the Internet providing an introduction to the HTML language."
-msgstr "Có vài tham chiếu trên Internet mà cung cấp (miễn phí) lời giới thiệu về ngôn ngữ HTML."
+msgid "Choose <emph>Format - Character - Background</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự > (thẻ) Nền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3147423\n"
+"00040500.xhp\n"
+"par_id3149486\n"
"59\n"
"help.text"
-msgid "HTTP"
-msgstr "HTTP"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153379\n"
-"60\n"
-"help.text"
-msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)."
-msgstr "Hypertext Transfer Protocol (giao thức truyền siêu văn bản) ghi lưu tiến trình truyền tài liệu Web (WWW) giữa các máy phục vụ WWW và trình duyệt (ứng dụng khách)."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3149290\n"
-"help.text"
-msgid "<bookmark_value>hyperlinks; definition</bookmark_value>"
-msgstr "<bookmark_value>siêu liên kết; định nghĩa</bookmark_value>"
+msgid "Choose <emph>Format - Picture - Background</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Ảnh > (thẻ) Nền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3149290\n"
+"00040500.xhp\n"
+"par_id3150592\n"
"61\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Siêu liên kết"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3145420\n"
-"62\n"
-"help.text"
-msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents."
-msgstr "Siêu liên kết (hyperlink) là tham chiếu chéo được tô sáng trong văn bản theo màu sắc khác nhau và được cú nhấn chuột kích hoạt. Dùng siêu liên kết, người đọc có thể nhảy tới thông tin nào đó trong tài liệu, cũng như tới thông tin liên quan trong tài liệu khác."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156281\n"
-"63\n"
-"help.text"
-msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)."
-msgstr "Trong $[officename], bạn có thể gán diêu liên kết cho văn bản, cũng như cho đồ họa và khung văn bản (xem biểu tượng Hộp thoại Siêu liên kết trên thanh Chuẩn)."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3152805\n"
-"help.text"
-msgid "<bookmark_value>ImageMap; definition</bookmark_value>"
-msgstr "<bookmark_value>Sơ đồ ảnh; định nghĩa</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3152805\n"
-"64\n"
-"help.text"
-msgid "ImageMap"
-msgstr "Sơ đồ ảnh"
+msgid "Choose <emph>Format - Frame/Object - Background</emph> tab"
+msgstr "Chọn thẻ <emph>Định dạng > Khung/Đối tượng > Viền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154685\n"
+"00040500.xhp\n"
+"par_id3151321\n"
"65\n"
"help.text"
-msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">ImageMap Editor</link>."
-msgstr "Sơ đồ ảnh (ImageMap) là một đồ họa hay khung có theo tham chiếu. Bạn có thể nhấn vào vùng đã xác định của đồ họa hay khung văn bản để đi tới một địa chỉ (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) đích, mà được liên kết tới vùng đó. Các vùng tham chiếu, cùng với các địa chỉ URL đã liên kết và văn bản tương ứng được hiển thị khi để con trỏ chuột ở trên vùng đó, được xác định trong <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">Bộ Sửa Sơ Đồ Ảnh</link>."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153178\n"
-"66\n"
-"help.text"
-msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap."
-msgstr "Có hai khác Sơ đồ ảnh khác nhau. Sơ đồ ảnh bên khách được tính trên máy khách (v.d. máy của người dùng) mà nạp đồ họa từ Internet, còn Sơ đồ bên máy phục vụ được tính trên máy phục vụ mà cung cấp trang <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> (trang Web) trên Internet. Khi máy phục vụ tính dữ liệu, cú nhấn vào Sơ đồ ảnh sẽ gửi cho máy phục vụ toạ đồ tương đối của con trỏ bên trong ảnh, sau đó một chương trình chuyên dụng trên máy phục vụ sẽ đáp ứng. Khi máy khách tính dữ liệu, cú nhấn vào một điểm nóng đã xác định trên Sơ đồ ảnh sẽ kích hoạt địa chỉ URL, đúng như nó là một liên kết văn bản bình thường. Địa chỉ URL cũng xuất hiện bên dưới con trỏ chuột khi người dùng để nó ở trên Sơ đồ ảnh."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3150740\n"
-"67\n"
-"help.text"
-msgid "As ImageMaps can be used in different ways, they can be stored in different formats."
-msgstr "Vì Sơ đồ ảnh có thể được sử dụng bằng nhiều cách khác nhau, nó cũng có thể được cất giữ theo định dạng khác nhau."
+msgid "Choose <emph>Format - Page - Background</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Nền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3146874\n"
+"00040500.xhp\n"
+"par_id3154510\n"
"68\n"
"help.text"
-msgid "ImageMap Formats"
-msgstr "Định dạng Sơ đồ ảnh"
+msgid "Choose <emph>Format - Page - Header - More</emph> button"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3145153\n"
+"00040500.xhp\n"
+"par_id3159110\n"
"69\n"
"help.text"
-msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer."
-msgstr "Sơ đồ ảnh phân biệt cơ bản ra những sơ đồ được phân tích trên máy phục vụ (v.d. bởi nhà cung cấp dịch vụ Internet của bạn) và những sơ đồ liên kết phân tích bởi trình duyệt Web trên máy tính của người dùng."
+msgid "Choose <emph>Format - Page - Footer - More</emph> button"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (nút) Nhiều</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3152881\n"
+"00040500.xhp\n"
+"par_id3153532\n"
+"67\n"
"help.text"
-msgid "<bookmark_value>Server Side ImageMap</bookmark_value>"
-msgstr "<bookmark_value>Sơ đồ ảnh bên máy phục vụ</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Nền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3152881\n"
-"70\n"
+"00040500.xhp\n"
+"par_id3144747\n"
+"174\n"
"help.text"
-msgid "Server Side ImageMaps"
-msgstr "Sơ đồ ảnh bên máy phục vụ"
+msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
+msgstr "Chọn lệnh <emph>Chèn/Sửa > Phần > (thẻ) Nền</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3153057\n"
+"00040500.xhp\n"
+"par_id3146900\n"
"71\n"
"help.text"
-msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:"
-msgstr "Sơ đồ ảnh bên máy phục vụ sẽ xuất hiện cho người dùng như một hình hay khung trên trang. Nhấn chuột vào Sơ đồ ảnh, để gửi cho máy phục vụ toạ đồ của vị trí tương đối. Với sự giúp của một chương trình thêm, trình phục vụ thì quyết định bước kế tiếp cần làm. Có vài phương pháp không tương thích với nhau để xác định tiến trình này, hai cái thường dùng nhất là:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ô > (thẻ) Nền</emph></caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3147502\n"
+"00040500.xhp\n"
+"par_id3146791\n"
"72\n"
"help.text"
-msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
-msgstr "W3C (CERN) HTTP Server (Kiểu định dạng: MAP - CERN)"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154011\n"
-"73\n"
-"help.text"
-msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
-msgstr "NCSA HTTP Server (Kiểu định dạng: MAP - NCSA)"
+msgid "Choose <emph>Format - Page - Organizer</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Bộ tổ chức</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149483\n"
+"00040500.xhp\n"
+"par_id3154482\n"
"74\n"
"help.text"
-msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
-msgstr "$[officename] tạo Sơ đồ ảnh cho cả hai phương pháp này. Hãy chọn định dạng trong danh sách <emph>Kiểu tập tin</emph> mà xuất hiện trong hộp thoại <emph>Lưu dạng</emph> trong <emph>Bộ Sửa Sơ đồ Ảnh</emph>. Sau đó thì tạo các tập tin sơ đồ riêng mà bạn cần phải tải lên máy phục vụ. Bạn cũng cần phải hỏi nhà cung cấp dịch vụ Internet (ISP) hay máy phục vụ hỗ trợ kiểu Sơ đồ ảnh nào và truy cập chương trình ước lượng như thế nào."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3152418\n"
-"help.text"
-msgid "<bookmark_value>Client Side ImageMap</bookmark_value>"
-msgstr "<bookmark_value>Sơ đồ ảnh bên khách</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Bộ tổ chức</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3152418\n"
+"00040500.xhp\n"
+"par_id3153357\n"
"75\n"
"help.text"
-msgid "Client Side ImageMap"
-msgstr "Sơ đồ ảnh bên khách"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3151290\n"
-"76\n"
-"help.text"
-msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
-msgstr "Trong hình hay khung, vùng nhấn chuột được được ngụ ý bởi địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> mà xuất hiện khi người dùng để con trỏ ở trên. Sơ đồ ảnh được cất giữ trên một lớp bên dưới hình, và cứa thông tin về các vùng đã tham chiếu. Nhược điểm duy nhất về Sơ đồ bên khách là trình duyệt Web cũ không thể đọc được: tuy nhiên, nhược điểm này sẽ tự giải quyết sau một khoảng thời gian."
+msgid "Choose <emph>Format - Page - Page</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Trang</emph>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149664\n"
+"00040500.xhp\n"
+"par_id3154362\n"
"77\n"
"help.text"
-msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
-msgstr "Khi lưu Sơ đồ ảnh, hã chọn kiểu tập tin <emph>SIP - Sơ đồ ảnh StarView</emph>. Hành động này sẽ lưu Sơ đồ ảnh một cách trực tiếp theo một định dạng có thể được áp dụng cho mọi hình hay khung trong tài liệu của bạn. Tuy nhiên, nêu bạn chỉ muốn sử dụng Sơ đồ ảnh đó trên hình hay khung hiện tại, bạn không cần lưu nó theo định dạng riêng nào. Sau khi xác định các vùng hoạt động (nhấn chuột được), đơn giản hãy nhấn vào cái nút <emph>Apply</emph>. Không cần làm gì nữa. Sơ đồ ảnh bên khách được lưu theo định dạng <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> thì được chèn trực tiếp vào trang bằng mã HTML."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3159125\n"
-"help.text"
-msgid "<bookmark_value>Java; definition</bookmark_value>"
-msgstr "<bookmark_value>Java; định nghĩa</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3159125\n"
-"92\n"
-"help.text"
-msgid "Java"
-msgstr "Java"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153188\n"
-"93\n"
-"help.text"
-msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
-msgstr "Chương trình lập trình Java là một ngôn ngữ lập trình không phụ thuộc vào nền tảng được phát triển bởi công ty Sun Microsystems Inc. (http://www.sun.com) mà rất thích hợp với sử dụng trên Internet. Các trang Web và ứng dụng được viết bằng tập tin hạng Java có thể được dùng trên tất cả các hệ điều hành hiện tại. Chương trình dùng ngôn ngữ lập trình Java thì thường được phát triển trong một môi trường phát triển Java, sau đó được biên dịch thành một « mã byte »."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3159153\n"
-"help.text"
-msgid "<bookmark_value>plug-ins; definition</bookmark_value>"
-msgstr "<bookmark_value>phần bổ sung; định nghĩa</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3159153\n"
-"107\n"
-"help.text"
-msgid "Plug-In"
-msgstr "Phần bổ sung"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154127\n"
-"109\n"
-"help.text"
-msgid "Extensions providing additional functionality in Web browsers are referred to as Plug-Ins."
-msgstr "Phần mở rộng mà cung cấp thêm chức năng trong trình duyệt Web thì được gọi như là Phần bổ sung (Plugin hay Plug-in)."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3147484\n"
-"108\n"
-"help.text"
-msgid "A Plug-In is a term used in various contexts:"
-msgstr "Phần bổ sung là một thuật ngữ được dùng trong vài ngữ cảnh khác nhau :"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3168608\n"
-"172\n"
-"help.text"
-msgid "Plug-Ins in $[officename]"
-msgstr "Phần bổ sung trong $[officename]"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149910\n"
-"111\n"
-"help.text"
-msgid "You will notice in $[officename] that the <emph>Formatting</emph> Bar changes after certain operations. For example, if you insert a formula into your text document, you see icons for editing the formula, in fact the same icons you see in formula documents. In this sense, we refer to the formula as a plug-in within the text document."
-msgstr "Trong $[officename], bạn sẽ thấy rằng thanh <emph>Định dạng</emph> thay đổi sau một số thao tác nào đó. Chẳng hạn, nếu bạn chèn vào tài liệu văn bản một công thức, bạn thấy các biểu tượng để chỉnh sửa công thức, tức là cùng những biểu tượng bạn thấy trong tài liệu kiểu công thức. Trong trường hợp này, công thức là một phần bổ sung bên trong tài liệu văn bản."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3148387\n"
-"177\n"
-"help.text"
-msgid "Using Plug-Ins to extend your programs"
-msgstr "Sử dụng phần bổ sung để mở rộng chương trình"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156737\n"
-"114\n"
-"help.text"
-msgid "Plug-ins, generally speaking, are software additions to particular applications which provide enhanced functionality. Often import and export filters for various file formats are stored as plug-ins in a plug-in directory."
-msgstr "Nói chung, phần bổ sung là phần mềm được thêm vào ứng dụng để cung cấp chức năng tăng cường. Chẳng hạn, bộ lọc nhập/xuất khẩu tập tin theo các định dạng khác nhau sẽ được cất giữ như phần bổ sung trong một thư mục phần bổ sung riêng."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149958\n"
-"115\n"
-"help.text"
-msgid "Netscape web browser extensions produced by Netscape Communication Corporation are also called plug-ins. These are external programs mainly taken from the multimedia field and which communicate with the browser through standardized interfaces. These plug-ins can be linked to $[officename] documents."
-msgstr "Phần mở rộng (extension) cho trình duyệt Web Netscape được công ty Netscape Communication Corporation tạo thì cũng được gọi là phần bổ sung. Nó là chương trình bên ngoài được lấy chính từ vùng âm nhạc/ảnh mà liên lạc với trình duyệt giao diện tiêu chuẩn. Phần bổ sung như vậy có thể được liên kết đến tài liệu $[officename]."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149420\n"
-"179\n"
-"help.text"
-msgid "Any Netscape plug-ins (32 bit) installed on your system are automatically recognized by $[officename]."
-msgstr "$[officename] tự động nhận ra bất cứ phần mở rộng Netscape nào (32-bit) được cài đặt vào hệ thống của bạn."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145647\n"
-"127\n"
-"help.text"
-msgid "Proxy"
-msgstr "Ủy nhiệm"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3148455\n"
-"128\n"
-"help.text"
-msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy."
-msgstr "Ủy nhiệm (proxy), máy phục vụ ủy nhiệm (proxy server) là một máy tính trên mạng nội bộ mà hoạt động như một kiểu bảng nháp hay bộ nhớ tạm thời khi truyền dữ liệu. Khi nào bạn truy cập Internet từ máy tính chạy trên một mạng dùng chung (v.d. ở chỗ làm hay trường học) và yêu cầu một trang Web đã được đọc bởi người khác dùng máy tính cùng trên mạng đó, trình ủy nhiệm có thể hiển thị trang một cách rất nhanh hơn, miễn là nó vẫn được cất giữ trong bộ nhớ. Chỉ cần kiểm tra ủy nhiệm có phiên bản mới nhất của trang đó. Có thì không cần tải trang lần nữa xuống Internet (công việc rất chậm hơn), vì nó nạp được một cách trực tiếp từ máy ủy nhiệm trên mạng nội bộ."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3154729\n"
-"help.text"
-msgid "<bookmark_value>SGML; definition</bookmark_value>"
-msgstr "<bookmark_value>SGML; định nghĩa</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3154729\n"
-"229\n"
-"help.text"
-msgid "SGML"
-msgstr "SGML"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3147330\n"
-"230\n"
-"help.text"
-msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
-msgstr "SGML diễn tả Standard Generalized Markup Language (ngôn ngữ định dạng suy rộng tiêu chuẩn). SGML dựa vào ý kiến rằng tài liệu có các phần tử kiểu cấu trúc và kiểu ngữ nghĩa học khác mà có thể được diễn tả, không cần tham chiếu đến cách hiển thị phần tử như vậy. Cách hiển thị thật của tài liệu như vậy có thể biến đổi, phụ thuộc vào phương tiện xuất và tùy thích kiểu dáng. Trong văn bản kết cấu, SGML không chỉ định nghĩa cấu trúc (trong DTD: Document Type Definition: lời định nghĩa kiểu tài liệu) cũng đảm bảo dùng thống nhất các cấu trúc đó."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3148747\n"
-"231\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
-msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> là một trường hợp SGML đặc biệt. Có nghĩa là phần lớn trình duyệt Web hỗ trợ chỉ phạm vi tiêu chuẩn SGML bị hạn chế, nhưng gần tất cả các hệ thống có khả năng SGML cũng có khả năng xuất các trang HTML đẹp."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3153950\n"
-"help.text"
-msgid "<bookmark_value>search engines; definition</bookmark_value>"
-msgstr "<bookmark_value>cơ chế tìm kiếm; định nghĩa</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153950\n"
-"138\n"
-"help.text"
-msgid "Search Engines"
-msgstr "Cơ chế tìm kiếm"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3157965\n"
-"139\n"
-"help.text"
-msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words."
-msgstr "Cơ chế tìm kiếm (search engine) là một dịch vụ trên Internet mà dựa vào chương trình phần mềm được dùng để thám hiểm rất nhiều thông tin dùng từ khoá. Bạn có thể sử dụng cơ chế tìm kiếm (v.d. Google) để tìm mục trên Internet, bằng cách gõ vào trường nhập một chuỗi tóm tắt (v.d. gõ « OpenOffice.org tài liệu hướng dẫn » để tìm thêm thông tin tiếng Việt về cách sử dụng OpenOffice.org)."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3150751\n"
-"help.text"
-msgid "<bookmark_value>tags; definition</bookmark_value>"
-msgstr "<bookmark_value>thẻ; định nghĩa</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3150751\n"
-"141\n"
-"help.text"
-msgid "Tags"
-msgstr "Thẻ"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156360\n"
-"142\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
-msgstr "Trang <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> chứa một số câu lệnh nào đó kiểu cấu trúc và định dạng được gọi là thẻ (tag, tags). Thẻ là từ mã nằm giữa dấu ngoặc nhọn trong ngôn ngữ diễn tả tài liệu HTML. Rất nhiều thẻ cũng chứa tham chiếu kiểu văn bản hay siêu liên kết giữa hai dấu ngoặc nhọn.Chẳng hạn, tiêu đề <h1>được đánh dấu bằng thẻ « h » nằm trước và sau</h1>, với số ngụ ý cấp kích cỡ (h1, h2, h3 v.v.). Một số thẻ chỉ xuất hiện một mình, v.d. <br> để ngắt dòng hay <img ...> để liên kết ảnh."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3153766\n"
-"help.text"
-msgid "<bookmark_value>URL; definition</bookmark_value>"
-msgstr "<bookmark_value>URL; định nghĩa</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153766\n"
-"145\n"
-"help.text"
-msgid "URL"
-msgstr "URL"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3152931\n"
-"146\n"
-"help.text"
-msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
-msgstr "URL (Uniform Resource Locator: bộ định vị tài nguyên thống nhất) thì hiển thị địa chỉ của một tài liệu hay máy phục vụ nào đó trên Internet. Cấu trúc chung của địa chỉ URL biến đổi tùy theo kiểu, thường có dạng « dịch vụ://tên_máy:cổng/đường_dẫn/trang#dấu », dù không phải tất cả các thành phần đều phải được yêu cầu trong mọi trường hợp. URL có thể là, chẳng hạn, một địa chỉ FTP (ftp://), một địa chỉ WWW (HTTP, http://), một địa chỉ của tập tin (file://) hay một địa chỉ thư điện tử (mailto://)."
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Gallery context menu"
-msgstr "Trình đơn ngữ cảnh của Bộ sưu tập"
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"hd_id3150672\n"
-"1\n"
-"help.text"
-msgid "Gallery context menu"
-msgstr "Trình đơn ngữ cảnh của Bộ sưu tập"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Trang</emph>"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3083278\n"
-"3\n"
+"00040500.xhp\n"
+"par_id3155515\n"
+"78\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Xác định cách chèn vào tài liệu đối tượng đã chọn.</ahelp>"
+msgid "Choose <emph>Format - Page - Header</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Đầu trang</emph>"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3156053\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3148405\n"
+"80\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADD\">Inserts a copy of the selected graphic object directly into the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD\">Chèn trực tiếp vào tài liệu một bản sao của đối tượng đồ họa đã chọn.</ahelp>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Đầu trang</emph>"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149038\n"
-"7\n"
+"00040500.xhp\n"
+"par_id3145618\n"
+"81\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Inserts the selected graphic as a link.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Chèn đồ họa đã chọn dạng liên kết.</ahelp>"
+msgid "Choose <emph>Format - Page - Footer</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Chân trang</emph>"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3158428\n"
-"15\n"
+"00040500.xhp\n"
+"par_id3155175\n"
+"83\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">Lệnh <emph>Xem thử</emph> thì hiển thị đồ họa đã chọn.</ahelp>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Sửa/Mới > (thẻ) Chân trang</emph>"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154522\n"
-"19\n"
+"00040500.xhp\n"
+"par_id3147404\n"
+"84\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Assigns a title to a selected Gallery object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Gán tựa đề cho đối tượng đã chọn từ Bộ sưu tập.</ahelp>"
+msgid "Choose <emph>Format - Styles and Formatting</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149750\n"
-"17\n"
+"00040500.xhp\n"
+"par_id3166447\n"
+"95\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Xoá đồ họa đã chọn, một khi xác nhận.</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3147321\n"
+"85\n"
"help.text"
-msgid "Dif Import/Export/ Lotus import/ dBASE import"
-msgstr "Nhập/xuất Dif / Nhập Lotus / Nhập dBase"
+msgid "On <emph>Formatting</emph> Bar, click"
+msgstr "Trên thanh <emph>Định dạng</emph>, nhấn vào"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"hd_id3155354\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3148533\n"
"help.text"
-msgid "Dif Import/Export/ Lotus import/ dBASE import"
-msgstr "Nhập/xuất Dif / Nhập Lotus / Nhập dBase"
+msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149568\">Biểu tượng</alt></image>"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3150620\n"
-"4\n"
+"00040500.xhp\n"
+"par_id3153534\n"
+"86\n"
"help.text"
-msgid "Defines the options for import/export. These dialogs will be automatically shown if the corresponding file type is selected."
-msgstr "Xác định các tùy chọn về chức năng nhập/xuất khẩu. Các hộp thoại này sẽ hiển thị tự động nếu kiểu tập tin tương ứng được chọn."
+msgid "Styles and Formatting"
+msgstr "Kiểu dáng và Định dạng"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"hd_id3149000\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3159313\n"
+"88\n"
"help.text"
-msgid "Character set"
-msgstr "Bộ ký tự"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Trên thanh <emph>Vẽ</emph>, nhấn vào</defaultinline></switchinline>"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3152790\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3109845\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Select the character set from the options used for import/export.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Hãy chọn bộ ký tự trong các tùy chọn được dùng cho chức năng nhập/xuất khẩu.</ahelp>"
+msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159236\">Biểu tượng</alt></image>"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3152942\n"
+"00040500.xhp\n"
+"par_id3152498\n"
"3\n"
"help.text"
-msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
-msgstr "Để tìm thêm thông tin về bộ lọc, xem chủ đề <link href=\"text/shared/00/00000020.xhp\" name=\"Thông tin về bộ lọc nhập/xuất khẩu\">Thông tin về bộ lọc nhập/xuất khẩu</link>."
-
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII Filter Options"
-msgstr "Tùy chọn lọc ASCII"
-
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3146856\n"
-"1\n"
-"help.text"
-msgid "ASCII Filter Options"
-msgstr "Tùy chọn lọc ASCII"
+msgid "<emph>3D Effects</emph>"
+msgstr "<emph>Hiệu ứng 3D</emph>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3153070\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3145256\n"
+"90\n"
"help.text"
-msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name."
-msgstr "Bạn có thể ghi rõ những tùy chọn nào, như phông cơ bản, ngôn ngữ, bộ ký tự và chỗ ngắt, được nhập/xuất khẩu cùng với tài liệu văn bản. Hộp thoại này xuất hiện khi bạn nạp tập tin ASCII với bộ lọc « Mã hoá văn bản », hoặc khi bạn lưu tài liệu lần thứ nhất, hoặc khi bạn « Lưu dạng » với tên khác."
+msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
+msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3159217\n"
-"3\n"
+"00040500.xhp\n"
+"par_id3154203\n"
+"91\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
+msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3155577\n"
-"4\n"
+"00040500.xhp\n"
+"par_id3151284\n"
+"92\n"
"help.text"
-msgid "Defines the settings for importing or exporting your file. When exporting, only the character set and paragraph break can be defined."
-msgstr "Xác định thiết lập để nhập/xuất khẩu tập tin của bạn. Khi xuất khẩu, chỉ có thể xác định bộ ký tự và chỗ ngắt đoạn văn."
+msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
+msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3146959\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3152475\n"
+"93\n"
"help.text"
-msgid "Character set"
-msgstr "Bộ ký tự"
+msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
+msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3143206\n"
-"6\n"
+"00040500.xhp\n"
+"par_id3154572\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_CHARSET\">Specifies the character set of the file for export or import.</ahelp>"
-msgstr "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_CHARSET\">Ghi rõ bộ ký tự của tập tin cần nhập/xuất khẩu.</ahelp>"
+msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
+msgstr "<variable id=\"3dgeometrie\">Mở trình đơn ngữ cảnh của đối tượng 3D, chọn thẻ <emph>Hiệu ứng 3D - Hình dạng</emph></variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3154926\n"
-"7\n"
+"00040500.xhp\n"
+"par_id3145220\n"
+"155\n"
"help.text"
-msgid "Default fonts"
-msgstr "Phông mặc định"
+msgid "Choose <emph>Format - Bullets and Numbering </emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số</emph>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3151262\n"
-"8\n"
+"00040500.xhp\n"
+"par_id3148771\n"
+"156\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_FONT\">By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing.</ahelp>"
-msgstr "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_FONT\">Bằng cách đặt phông chữ mặc định, bạn ghi rõ văn bản nên được hiển thị theo một phông nào đó. Chỉ có thể chọn phông mặc định khi nhập khẩu.</ahelp>"
+msgid "On <emph>Formatting</emph> toolbar, click"
+msgstr "Trên thanh công cụ <emph>Định dạng</emph>, nhấn vào"
-#: 00000215.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3154894\n"
-"9\n"
+"00040500.xhp\n"
+"par_id3149445\n"
"help.text"
-msgid "Language"
-msgstr "Ngôn ngữ"
+msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149964\">Biểu tượng</alt></image>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3153323\n"
-"10\n"
+"00040500.xhp\n"
+"par_id3157970\n"
+"163\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_LANGUAGE\">Specifies the language of the text, if this has not already been defined. This setting is only available when importing.</ahelp>"
-msgstr "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_LANGUAGE\">Ghi rõ ngôn ngữ của văn bản, nếu giá trị chưa được xác định. Thiết lập này chỉ sẵn sàng khi nhập khẩu.</ahelp>"
+msgid "Bullets On/Off"
+msgstr "Bật/tắt chấm điểm"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3147143\n"
-"11\n"
+"00040500.xhp\n"
+"par_id3149735\n"
+"157\n"
"help.text"
-msgid "Paragraph break"
-msgstr "Ngắt đoạn văn"
+msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
+msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Tùy chọn</emph>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3143281\n"
-"12\n"
+"00040500.xhp\n"
+"par_id3150785\n"
+"164\n"
"help.text"
-msgid "Defines the type of paragraph break for a text line."
-msgstr "Xác định cách ngắt đoạn văn cho dòng văn bản. (Các tên ký tự theo đây bắt nguồn từ máy đánh chữ: không còn có nghĩa lại, nhưng phần mềm khác nhau sẽ đợi ký tự, hay tổ hợp ký tự khác nhau để bắt đầu dòng mới)."
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Trình diễn</emph>, sau đó mở trình đơn ngữ cảnh của kiểu dáng phác thảo và chọn mục <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3150935\n"
-"13\n"
+"00040500.xhp\n"
+"par_id3148420\n"
+"165\n"
"help.text"
-msgid "CR & LF"
-msgstr "CR & LF"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3145829\n"
-"14\n"
+"00040500.xhp\n"
+"par_id3148888\n"
+"158\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CRLF\">Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CRLF\">Nhập ký tự\"Carriage Return\" và \"Linefeed\" để ngắt đoạn văn. Tùy chọn này làm mặc định.</ahelp>"
+msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Chấm điểm</emph>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3153551\n"
-"15\n"
+"00040500.xhp\n"
+"par_id3149917\n"
+"166\n"
"help.text"
-msgid "CR"
-msgstr "CR"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Trình diễn</emph>, sau đó mở trình đơn ngữ cảnh của kiểu dáng phác thảo và chọn mục <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3156042\n"
-"16\n"
+"00040500.xhp\n"
+"par_id3154930\n"
+"167\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CR\">Produces a \"Carriage Return\" as the paragraph break.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CR\">Nhập ký tự \"Carriage Return\" để ngắt đoạn văn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3150713\n"
-"17\n"
+"00040500.xhp\n"
+"par_id3150862\n"
+"159\n"
"help.text"
-msgid "LF"
-msgstr "LF"
+msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Đánh số</emph>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3145090\n"
-"18\n"
+"00040500.xhp\n"
+"par_id3155378\n"
+"168\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_LF\">Produces a \"Linefeed\" as the paragraph break.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_LF\">Nhập ký tự \"Linefeed\" để ngắt đoạn văn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Trình diễn</emph>, sau đó mở trình đơn ngữ cảnh của kiểu dáng phác thảo và chọn mục <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156011\n"
+"169\n"
"help.text"
-msgid "Standard Icons Alt Texts to be Embedded"
-msgstr "Chuỗi xen kẽ cần nhúng trong biểu tượng chuẩn"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10546\n"
+"00040500.xhp\n"
+"par_id0611200904324832\n"
"help.text"
-msgid "<variable id=\"alt_icon\">Icon </variable>"
-msgstr "<variable id=\"alt_icon\">Biểu tượng </variable>"
+msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Graphics</emph> tab</variable>"
+msgstr "<variable id=\"graphics\">Chọn <emph>Định dạng - Chấm đầu và Đánh số - Graphics</emph> tab</variable>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10555\n"
+"00040500.xhp\n"
+"par_id3155848\n"
+"160\n"
"help.text"
-msgid "<variable id=\"alt_warning\">Warning Icon </variable>"
-msgstr "<variable id=\"alt_warning\">Biểu tượng Cảnh báo </variable>"
+msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Phác thảo</emph>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10564\n"
+"00040500.xhp\n"
+"par_id3148733\n"
+"170\n"
"help.text"
-msgid "<variable id=\"alt_tip\">Tip Icon </variable>"
-msgstr "<variable id=\"alt_tip\">Biểu tượng Gợi ý </variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10573\n"
+"00040500.xhp\n"
+"par_id3156658\n"
+"162\n"
"help.text"
-msgid "<variable id=\"alt_note\">Note Icon </variable>"
-msgstr "<variable id=\"alt_note\">Biểu tượng Ghi chú </variable>"
+msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
+msgstr "Chọn lệnh <emph>Định dạng > Chấm điểm và Đánh số > (thẻ) Vị trí</emph>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156170\n"
+"152\n"
"help.text"
-msgid "Context Menu of Web Pages in Read-Only Mode"
-msgstr "Trình đơn Ngữ cảnh của Trang Web ở Chế độ Chỉ đọc"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Công cụ > Đánh số Phác thảo > (thẻ) Vị trí</emph></caseinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3158397\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3153812\n"
+"173\n"
"help.text"
-msgid "Context Menu of Web Pages in Read-Only Mode"
-msgstr "Trình đơn Ngữ cảnh của Trang Web ở Chế độ Chỉ đọc"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - Numbering Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn lệnh <emph>Kiểu dáng và Định dạng > Kiểu dáng Đánh số</emph>, sau đó mở trình đơn ngữ cảnh của mục nhập và chọn lệnh <emph>Mới/Sửa</emph></caseinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145348\n"
-"18\n"
+"00040500.xhp\n"
+"par_id3151332\n"
+"194\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Opens a dialog where you can save the selected graphics.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Mở hộp thoại trong đó bạn có thể lưu các đồ họa đã chọn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Picture </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lệnh trình đơn <emph>Định dạng > Ảnh > (thẻ) Xén</emph> </caseinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151262\n"
-"31\n"
+"00040500.xhp\n"
+"par_id3153317\n"
+"198\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Copies the link at the mouse pointer to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Sao chép vào bảng nháp liên kết nằm dưới con trỏ chuột.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Picture</emph> toolbar:</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Biểu tượng trên thanh công cụ <emph>Ảnh</emph>:</defaultinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3155934\n"
-"37\n"
+"00040500.xhp\n"
+"par_id3149953\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Copies a selected graphic to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Sao chép vào bảng nháp đồ họa đã chọn.</ahelp>"
+msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155092\">Biểu tượng</alt></image>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145629\n"
-"22\n"
+"00040500.xhp\n"
+"par_id3153695\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">If you have deactivated the graphics display, choose the<emph> Load Graphics </emph>command to make them visible.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">Nếu bạn đã tắt khả năng hiển thị đồ họa thì chọn lệnh <emph>Nạp đồ họa</emph> để hiển thị lại.</ahelp>"
+msgid "Crop"
+msgstr "Xén"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150902\n"
-"24\n"
+"00040500.xhp\n"
+"par_id3151254\n"
+"195\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Sets all graphics in the document to be invisible.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Đặt mọi đồ họa trong tài liệu đó là vô hình.</ahelp>"
+msgid "Choose <emph>Format - Change Case</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Đổi chữ hoa/thường</emph>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153910\n"
-"26\n"
+"00040500.xhp\n"
+"par_id3159624\n"
+"196\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Disables inserted plug-ins.</ahelp> Click this command again to reactivate the <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link>."
-msgstr "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Tắt các phần bổ sung đã chèn.</ahelp> Nhấn chuột lần nữa vào lệnh này để kích hoạt lại các <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"phần bổ sung\">phần bổ sung</link>."
+msgid "Open context menu (text) - choose <emph>Change Case</emph>"
+msgstr "Mở trình đơn ngữ cảnh (văn bản) và chọn mục <emph>Định dạng > Chữ cái/Ký tự</emph>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3148548\n"
-"38\n"
+"00040500.xhp\n"
+"par_id3153579\n"
+"197\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Allows you to save the background of a Web page.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Cho phép bạn lưu nền của trang Web.</ahelp>"
+msgid "Menu <emph>Format - Asian phonetic guide</emph>"
+msgstr "Lệnh trình đơn <emph>Định dạng > Chỉ dẫn ngữ âm Châu Á</emph>"
#: 00040501.xhp
msgctxt ""
@@ -12347,7 +10842,6 @@ msgid "Format Menu"
msgstr "Trình đơn Định dạng"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3150156\n"
@@ -12357,7 +10851,6 @@ msgid "<variable id=\"aupitab\">Open <emph>Form Controls</emph> toolbar, click <
msgstr "<variable id=\"aupitab\">Mở thanh công cụ <emph>Điều khiển Biểu mẫu</emph>, rồi nhấn vào biểu tượng <emph>Điều khiển thêm</emph>, nhấn vào biểu tượng <emph>Điều khiển bảng</emph> và kéo con chuột để tạo trường.</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3154408\n"
@@ -12367,7 +10860,6 @@ msgid "<variable id=\"aupitab1\">Open <emph>Form Controls</emph> toolbar, click
msgstr "<variable id=\"aupitab1\">Mở thanh công cụ <emph>Điều khiển Biểu mẫu</emph>, rồi nhấn vào biểu tượng <emph>Điều khiển thêm</emph>, nhấn vào biểu tượng <emph>Điều khiển bảng</emph> và kéo con chuột để tạo trường. Không cho phép kết nối cơ sở dữ liệu trong biểu mẫu hiện thời.</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3149748\n"
@@ -12377,7 +10869,6 @@ msgid "<variable id=\"aupitab2\">Open <emph>Form Controls</emph> toolbar, click
msgstr "<variable id=\"aupitab2\">Mở thanh công cụ <emph>Điều khiển Biểu mẫu</emph>, rồi nhấn vào biểu tượng <emph>Điều khiển thêm</emph>, nhấn vào biểu tượng <emph>Điều khiển bảng</emph> và kéo con chuột để tạo trường. Phải có kết nối cơ sở dữ liệu.</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3156553\n"
@@ -12387,7 +10878,6 @@ msgid "<variable id=\"aupikomli\">Open Form Controls toolbar, click <emph>Combo
msgstr "<variable id=\"aupikomli\">Mở thanh công cụ <emph>Điều khiển Biểu mẫu</emph>, rồi nhấn vào biểu tượng <emph>Hộp tổ hợp</emph> hay <emph>Hộp liệt kê</emph> và kéo con chuột để tạo trường. Phải có kết nối cơ sở dữ liệu trong biểu mẫu.</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3148825\n"
@@ -12397,7 +10887,6 @@ msgid "<variable id=\"aupikomli1\">Open Form Controls toolbar, click <emph>Combo
msgstr "<variable id=\"aupikomli1\">Mở thanh công cụ <emph>Điều khiển Biểu mẫu</emph>, rồi nhấn vào biểu tượng <emph>Hộp tổ hợp</emph> hay <emph>Hộp liệt kê</emph> và kéo con chuột để tạo trường. Phải có kết nối cơ sở dữ liệu trong biểu mẫu : Trợ lý — Trang 1</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3155434\n"
@@ -12407,7 +10896,6 @@ msgid "<variable id=\"aupikomli2\">Open Form Controls toolbar, click <emph>Combo
msgstr "<variable id=\"aupikomli2\">Mở thanh công cụ <emph>Điều khiển Biểu mẫu</emph>, rồi nhấn vào biểu tượng <emph>Hộp tổ hợp</emph> hay <emph>Hộp liệt kê</emph> và kéo con chuột để tạo trường. Phải có kết nối cơ sở dữ liệu trong biểu mẫu : Trợ lý — Trang 2</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3151378\n"
@@ -12417,7 +10905,6 @@ msgid "<variable id=\"aupikomli3a\">Open Form Controls toolbar, click <emph>List
msgstr "<variable id=\"aupikomli3a\">Mở thanh công cụ <emph>Điều khiển Biểu mẫu</emph>, sau đó nhấn vào biểu tượn <emph>Hộp liệt kê</emph> và kéo con chuột để tạo trường. Phải có kết nối cơ sở dữ liệu trong biểu mẫu : Trợ lý — Trang 3</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3151246\n"
@@ -13502,447 +11989,1772 @@ msgctxt ""
msgid "<variable id=\"anderzelle\">Choose <emph>Format - Anchor - To Cell</emph></variable>"
msgstr "<variable id=\"anderzelle\">Chọn lệnh <emph>Định dạng > Thả neo > Vào ô</emph></variable>"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
+"00040502.xhp\n"
"tit\n"
"help.text"
-msgid "Warning Print Options"
-msgstr "Tùy chọn in cảnh báo"
+msgid "Format Menu"
+msgstr "Trình đơn Định dạng"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3145759\n"
+"00040502.xhp\n"
+"hd_id3149741\n"
"1\n"
"help.text"
-msgid "Warning Print Options"
-msgstr "Tùy chọn in cảnh báo"
+msgid "Format Menu"
+msgstr "Trình đơn Định dạng"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3152352\n"
+"00040502.xhp\n"
+"par_id3146857\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">The<emph> Warning Print Options </emph>dialog appears when the page setup does not match the defined print range.</ahelp> This is the case, for example, if you draw a rectangle that is larger than the current page format."
-msgstr "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">Hộp thoại <emph>Tùy chọn in cảnh báo</emph> xuất hiện khi thiết lập trang không tương ứng với phạm vi in đã xác định.</ahelp> Trường hợp này xảy ra, chẳng hạn, nếu bạn vẽ một hình chữ nhật lớn hơn định dạng trang hiện thời."
+msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
+msgstr "Chọn lệnh <emph>Định dạng > Đường</emph> (Impress and Draw)"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3150620\n"
+"00040502.xhp\n"
+"par_id366527\n"
+"help.text"
+msgid "Choose <emph>Format - Object - Line </emph>(Writer)"
+msgstr "Chọn lệnh <emph>Định dạng > Đối tượng > Đường</emph> (Writer)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3835261\n"
+"help.text"
+msgid "Choose <emph>Format - Graphic - Line </emph>(Calc)"
+msgstr "Chọn lệnh <emph>Định dạng > Đồ họa > Đường</emph> (Calc)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148668\n"
"3\n"
"help.text"
-msgid "Print options"
-msgstr "Tùy chọn in"
+msgid "On <emph>Line and Filling</emph> Bar, click"
+msgstr "Trên thanh <emph>Đường và Tô đầy</emph>, nhấn vào"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3156324\n"
+"00040502.xhp\n"
+"par_id3148889\n"
+"help.text"
+msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150669\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3159147\n"
+"4\n"
+"help.text"
+msgid "Line"
+msgstr "Đường"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154285\n"
"5\n"
"help.text"
-msgid "Fit page to print range"
-msgstr "Vừa trang khít phạm vi in"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
+msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline>thẻ <emph>Đường > Đường</emph>"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3158405\n"
+"00040502.xhp\n"
+"par_id3147335\n"
"7\n"
"help.text"
-msgid "If you select the <emph>Fit page to print range </emph>option, the <emph>Warning Print Options</emph> dialog will not appear in subsequent print runs of this document."
-msgstr "Bật tùy chọn <emph>Vừa trang khít phạm vi in</emph> thì hộp thoại <emph>Tùy chọn in cảnh báo</emph> sẽ không xuất hiện vào lúc sau in tài liệu này."
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh và chọn mục <emph>Sửa/Mới > (thẻ) Đường</emph> (tài liệu trình diễn)"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3156553\n"
+"00040502.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "Print on multiple pages"
-msgstr "In trên nhiều trang"
+msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > (thẻ) Viền</emph> (đồ thị)"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3154823\n"
+"00040502.xhp\n"
+"par_id3153061\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Specifies whether to distribute the printout on multiple pages.</ahelp> The print range will be printed on multiple pages."
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Ghi rõ có nên phân phối bản in ra nhiều trang hay không.</ahelp> Phạm vi in sẽ được in trên nhiều trang."
+msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
+msgstr "Chọn lệnh <emph>Định dạng > Chú giải > (thẻ) Viền</emph> (đồ thị)"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3147010\n"
+"00040502.xhp\n"
+"par_id3155922\n"
"10\n"
"help.text"
-msgid "Trim"
-msgstr "Tỉa"
+msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
+msgstr "Chọn lệnh <emph>Định dạng > Trục > (thẻ) Đường</emph> (đồ thị)"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3151111\n"
+"00040502.xhp\n"
+"par_id3147559\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing.</ahelp>"
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Ghi rõ có nên cắt ra cái gì nằm ở ngoại phạm vi in tối đa, không bao gồm nó trong bản in.</ahelp>"
+msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
+msgstr "Chọn lệnh <emph>Định dạng > Lưới > (thẻ) Đường</emph> (đồ thị)"
-#: 00000450.xhp
+#: 00040502.xhp
msgctxt ""
-"00000450.xhp\n"
+"00040502.xhp\n"
+"par_id3154758\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
+msgstr "Chọn lệnh <emph>Định dạng > Tường đồ thị > (thẻ) Viền</emph> (đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153960\n"
+"13\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
+msgstr "Chọn lệnh <emph>Định dạng > Sàn đồ thị > (thẻ) Viền</emph> (đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154939\n"
+"14\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
+msgstr "Chọn lệnh <emph>Định dạng > Vùng đồ thị > (thẻ) Viền</emph> (đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151293\n"
+"15\n"
+"help.text"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgstr "<variable id=\"linienstile\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Đường > Kiểu đường</emph></variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149317\n"
+"16\n"
+"help.text"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgstr "<variable id=\"linienenden\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng hình vẽ> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Đường > Kiểu mũi tên</emph></variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156082\n"
+"17\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148922\n"
+"18\n"
+"help.text"
+msgid "On <emph>Line and Filling</emph> Bar, click"
+msgstr "Trên thanh <emph>Đường và Tô đầy</emph>, nhấn vào"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150393\n"
+"19\n"
+"help.text"
+msgid "Area"
+msgstr "Vùng"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154948\n"
+"20\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline>thẻ <emph>Vùng > Vùng</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145607\n"
+"22\n"
+"help.text"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Kiểu dáng và Định dạng</emph>, sau đó mở trình đơn ngữ cảnh và chọn mục <emph>Sửa/Mới > (thẻ) Vùng</emph> (tài liệu trình diễn)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152922\n"
+"23\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157894\n"
+"24\n"
+"help.text"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Chú giải > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3144444\n"
+"25\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tường đồ thị > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156543\n"
+"26\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Sàn đồ thị > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150685\n"
+"27\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Vùng đồ thị > (thẻ) Vùng</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149664\n"
+"120\n"
+"help.text"
+msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
+msgstr "Chọn lệnh <emph>Định dạng > Trang > (thẻ) Nền</emph> (trong $[officename] Impress và $[officename] Draw)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163820\n"
+"28\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
+msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Màu sắc</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152462\n"
+"29\n"
+"help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Colors</emph> tab"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154985\n"
+"141\n"
+"help.text"
+msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Vùng > (thẻ) Trong suốt</emph> (tài liệu vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145365\n"
+"142\n"
+"help.text"
+msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Vùng > (thẻ) Trong suốt</emph> (tài liệu trình diễn)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151117\n"
+"143\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tường đồ thị > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147326\n"
+"144\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Vùng đồ thị > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154920\n"
+"145\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Sàn đồ thị > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145591\n"
+"146\n"
+"help.text"
+msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > Mọi tựa đề > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145750\n"
+"147\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > Tựa đề chính > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148556\n"
+"148\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề > Phụ đề > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163710\n"
+"149\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề (Trục X) > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150487\n"
+"150\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề (Trục Y) > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154320\n"
+"151\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Tựa đề (Trục Z) > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151113\n"
+"152\n"
+"help.text"
+msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Thuộc tính Đối tượng > Điểm dữ liệu > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149266\n"
+"153\n"
+"help.text"
+msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Thuộc tính Đối tượng > Dãy dữ liệu > (thẻ) Trong suốt</emph> (tài liệu đồ thị)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150011\n"
+"30\n"
+"help.text"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgstr "<variable id=\"schatte\">Chọn <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Bóng</emph> </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147441\n"
+"31\n"
+"help.text"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgstr "<variable id=\"verlauf\">Chọn <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng hình vẽ> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline>thẻ <emph>Vùng > Dải màu</emph> </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155308\n"
+"32\n"
+"help.text"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgstr "<variable id=\"schraffur\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng> </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Lưới đan</emph> </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145800\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgstr "<variable id=\"bitmap\">Chọn <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vùng > Ảnh bitmap</emph> </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145251\n"
+"34\n"
+"help.text"
+msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline></variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152810\n"
+"35\n"
+"help.text"
+msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151060\n"
+"36\n"
+"help.text"
+msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149911\n"
+"37\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156286\n"
+"89\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Phím F4</caseinline><caseinline select=\"IMPRESS\">Phím F4</caseinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153052\n"
+"help.text"
+msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150965\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149938\n"
+"39\n"
+"help.text"
+msgid "Position and Size"
+msgstr "Vị trí và Kích cỡ"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148833\n"
+"170\n"
+"help.text"
+msgid "Open the context menu for the object - choose <emph>Name</emph>"
+msgstr "Mở trình đơn ngữ cảnh cho đối tượng, sau đó chọn mục <emph>Tên</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id411999\n"
+"help.text"
+msgid "Open the context menu for the object - choose <emph>Description</emph>"
+msgstr "Mở trình đơn ngữ cảnh cho đối tượng, sau đó chọn mục <emph>Mô tả</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153099\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgstr "<variable id=\"position2\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Vị trí và Kích cỡ</emph></variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152973\n"
+"42\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
+msgstr "Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Xoay</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148495\n"
+"help.text"
+msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146898\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146790\n"
+"44\n"
+"help.text"
+msgid "Rotate"
+msgstr "Xoay"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145666\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgstr "<variable id=\"ecke\">Chọn lệnh <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Xiên và Bán kính góc</emph> </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146081\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgstr "<variable id=\"legende\">Chọn thẻ <emph>Định dạng > </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Đối tượng > </emph></caseinline><caseinline select=\"CALC\"><emph>Đồ họa > </emph></caseinline></switchinline><emph>Vị trí và Kích cỡ > Chú giải</emph> (chỉ cho khung thoại kiểu hộp văn bản, không phải cho khung thoại kiểu hình riêng</variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3083283\n"
+"172\n"
+"help.text"
+msgid "Choose <emph>Edit - Points</emph>"
+msgstr "Chọn lệnh <emph>Sửa > Điểm</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145642\n"
+"47\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Mở trình đơn ngữ cảnh, rồi chọn mục <emph>Sửa điểm</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Sửa điểm</emph></caseinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149019\n"
+"90\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Phím F8</caseinline><caseinline select=\"IMPRESS\">Phím F8</caseinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150044\n"
+"help.text"
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153966\n"
+"49\n"
+"help.text"
+msgid "Edit Points"
+msgstr "Sửa điểm"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151248\n"
+"50\n"
+"help.text"
+msgid "Choose <emph>Format - Character</emph> (drawing functions)"
+msgstr "Chọn lệnh <emph>Định dạng > Ký tự</emph> (chức năng vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145229\n"
+"121\n"
+"help.text"
+msgid "Open context menu - choose <emph>Character</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Ký tự</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151342\n"
+"122\n"
+"help.text"
+msgid "Open context menu - choose <emph>Size</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kích cỡ</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149255\n"
+"123\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155177\n"
+"124\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Bold</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > In đậm</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145766\n"
+"help.text"
+msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.222inch\" height=\"0.222inch\" localize=\"true\"><alt id=\"alt_id3156558\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147001\n"
+"55\n"
+"help.text"
+msgid "Bold"
+msgstr "In đậm"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151276\n"
+"125\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Italic</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > In nghiêng</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3159091\n"
+"help.text"
+msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.222inch\" height=\"0.222inch\" localize=\"true\"><alt id=\"alt_id3155578\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150234\n"
+"58\n"
+"help.text"
+msgid "Italic"
+msgstr "In nghiêng"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154589\n"
+"126\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Underline</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Gạch dưới</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145223\n"
+"help.text"
+msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.222inch\" height=\"0.222inch\" localize=\"true\"><alt id=\"alt_id3151068\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154715\n"
+"88\n"
+"help.text"
+msgid "Underline"
+msgstr "Gạch dưới"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145131\n"
+"127\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Gạch đè</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3158214\n"
+"128\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Shadow</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Bóng</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150207\n"
+"129\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Contour</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Nét ngoài</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154383\n"
+"130\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Superscript</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Chỉ số Trên</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152767\n"
+"131\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Subscript</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Kiểu dáng > Chỉ số Dưới</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155377\n"
+"132\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154475\n"
+"133\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng > Đơn</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150478\n"
+"134\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng > 1,5 dòng</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147167\n"
+"135\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Giãn cách dòng > Đôi</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146978\n"
+"69\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
+msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Trái</emph> (chức năng vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153009\n"
+"136\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Left</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Trái</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147310\n"
+"help.text"
+msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155370\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151336\n"
+"71\n"
+"help.text"
+msgid "Align Left"
+msgstr "Canh lề trái"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155823\n"
+"72\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
+msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Phải</emph> (chức năng vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155762\n"
+"137\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Right</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Phải</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149408\n"
+"help.text"
+msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154421\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153607\n"
+"74\n"
+"help.text"
+msgid "Align Right"
+msgstr "Canh lề phải"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149189\n"
+"75\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
+msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Giữa</emph> (chức năng vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154624\n"
+"138\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Center</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Giữa</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153815\n"
+"help.text"
+msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149757\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153076\n"
+"77\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Canh lề ở giữa nằm ngang</caseinline><defaultinline>ở Giữa</defaultinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146151\n"
+"78\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)"
+msgstr "Chọn lệnh <emph>Định dạng > Canh lề > Canh đều</emph> (chức năng vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3168612\n"
+"139\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Canh lề > Canh đều</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156189\n"
+"help.text"
+msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145308\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153131\n"
+"80\n"
+"help.text"
+msgid "Justified"
+msgstr "Canh đều"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150527\n"
+"81\n"
+"help.text"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgstr "<variable id=\"font\">Nhấn vào biểu tượng <emph>Chữ nghệ thuật</emph> trên thanh <emph>Vẽ</emph></variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3144503\n"
+"103\n"
+"help.text"
+msgid "Choose <emph>Format - Group</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Nhóm lại</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154854\n"
+"140\n"
+"help.text"
+msgid "Open context menu - choose <emph>Group</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Nhóm lại</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157985\n"
+"83\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)"
+msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Nhóm lại</emph> (tài liệu văn bản, bảng tính)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157980\n"
+"104\n"
+"help.text"
+msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Nhóm lại</emph> (tài liệu vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149508\n"
+"84\n"
+"help.text"
+msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Nhóm > Nhóm lại</emph> (đối tượng biểu mẫu)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146858\n"
+"help.text"
+msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154344\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149593\n"
+"113\n"
+"help.text"
+msgid "Group"
+msgstr "Nhóm lại"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153023\n"
+"85\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)"
+msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Rã nhóm</emph> (tài liệu văn bản, bảng tính)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163378\n"
+"105\n"
+"help.text"
+msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Rá nhóm</emph> (tài liệu vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156038\n"
+"86\n"
+"help.text"
+msgid "Open context menu - choose <emph>Ungroup</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Rã nhóm</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151300\n"
+"help.text"
+msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150831\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146894\n"
+"115\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Rã nhóm"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153109\n"
+"106\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
+msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Ra nhóm</emph> (tài liệu văn bản, bảng tính)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145678\n"
+"107\n"
+"help.text"
+msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Ra nhóm</emph> (tài liệu vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152367\n"
+"108\n"
+"help.text"
+msgid "Open context menu - choose <emph>Exit Group</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Ra nhóm</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3158402\n"
+"help.text"
+msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149422\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155347\n"
+"117\n"
+"help.text"
+msgid "Exit Group"
+msgstr "Ra nhóm"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149129\n"
+"109\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
+msgstr "Chọn lệnh <emph>Định dạng > Nhóm > Vào nhóm</emph> (tài liệu văn bản, bảng tính)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145354\n"
+"110\n"
+"help.text"
+msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Vào nhóm</emph> (tài liệu vẽ)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149946\n"
+"111\n"
+"help.text"
+msgid "Open context menu - choose <emph>Enter Group</emph>"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Vào nhóm</emph>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152388\n"
+"help.text"
+msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149900\">Biểu tượng</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152547\n"
+"119\n"
+"help.text"
+msgid "Enter Group"
+msgstr "Vào nhóm"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
"tit\n"
"help.text"
-msgid "Database"
-msgstr "Cơ sở dữ liệu"
+msgid "Format Menu"
+msgstr "Trình đơn Định dạng"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"hd_id3154689\n"
+"00040503.xhp\n"
+"hd_id3155757\n"
"1\n"
"help.text"
-msgid "Database"
-msgstr "Cơ sở dữ liệu"
+msgid "Format Menu"
+msgstr "Trình đơn Định dạng"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3152876\n"
-"7\n"
+"00040503.xhp\n"
+"par_id3147294\n"
+"2\n"
"help.text"
-msgid "<variable id=\"DBTab\">In a database file window, choose <emph>Tools - Table Filter</emph></variable>"
-msgstr "<variable id=\"DBTab\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Công cụ > Lọc bảng</emph></variable>"
+msgid "Choose <emph>Format - Row - Height</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Hàng > Bề cao</emph>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153244\n"
-"57\n"
+"00040503.xhp\n"
+"par_id3149551\n"
+"3\n"
"help.text"
-msgid "<variable id=\"DBAbfragen\"><emph>View - Database Objects - Queries</emph></variable>"
-msgstr "<variable id=\"DBAbfragen\"><emph>Xem > Đối tượng Cơ sở Dữ liệu > Truy vấn</emph></variable>"
+msgid "Open context menu of a row header in an open database table - choose <emph>Row Height</emph>"
+msgstr "Mở trình đơn ngữ cảnh của phần đầu hàng trong bảng cơ sở dữ liệu còn mở, sau đó chọn mục <emph>Bề cao hàng</emph>"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147294\n"
+"00040503.xhp\n"
+"par_id3153136\n"
"4\n"
"help.text"
-msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
-msgstr "<variable id=\"Typ\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính > (thẻ) Thiết lập Cấp cao</emph></variable>"
+msgid "Choose <emph>Format - Column - Width</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Cột > Bề rộng</emph>"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159411\n"
+"00040503.xhp\n"
+"par_id3150756\n"
"5\n"
"help.text"
-msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
-msgstr "<variable id=\"Datenquelle\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu ODBC hay Sổ địa chỉ, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Kiểu kết nối</emph></variable>"
+msgid "Open context menu of a column header in a database table - choose <emph>Column Width</emph>"
+msgstr "Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu còn mở, sau đó chọn mục <emph>Bề rộng cột</emph>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149119\n"
+"00040503.xhp\n"
+"par_id3148668\n"
+"11\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn lệnh <emph>Định dạng > Ô > (thẻ) Số</emph></caseinline></switchinline>"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3152349\n"
+"13\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Định dạng > Kiểu dáng và Định dạng</emph>, mở trình đơn ngữ cảnh rồi chọn mục <emph>Sửa/Mới > Số</emph></caseinline></switchinline>"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3161459\n"
+"14\n"
+"help.text"
+msgid "Open context menu for a column header in an open database table - choose <emph>Column Format - Format</emph> tab"
+msgstr "Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu còn mở, sau đó chọn mục <emph>Định dạng cột > Định dạng</emph>"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3147531\n"
+"15\n"
+"help.text"
+msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
+msgstr "Chọn lệnh <emph>Định dạng > Trục > Trục Y > (thẻ) Số</emph> (tài liệu đồ thị)"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3150823\n"
+"32\n"
+"help.text"
+msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Fields - Other - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
+msgstr "Cũng như hộp thoại <emph>Định dạng số</emph> cho bảng và trường trong tài liệu văn bản: chọn lệnh <emph>Định dạng > Định dạng số</emph>, hoặc chọn <emph>Chèn > Trường > Khác > (thẻ) Biến</emph> rồi chọn mục « Định dạng thêm » trong danh sách các <emph>Định dạng</emph>."
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3154923\n"
"6\n"
"help.text"
-msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph></variable>"
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\">Choose <emph>Format - Title - Main Title - Alignment</emph> tab </caseinline><defaultinline>Choose <emph>Format - Cells - Alignment</emph> tab</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\">Chọn lệnh <emph>Định dạng > Tựa đề > Tựa đề chính > (thẻ) Sắp hàng</emph> </caseinline><defaultinline>Chọn lệnh <emph>Định dạng > Ô > (thẻ) Sắp hàng</emph></defaultinline></switchinline>"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154497\n"
-"8\n"
+"00040503.xhp\n"
+"par_id3149457\n"
+"7\n"
"help.text"
-msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
-msgstr "<variable id=\"ODBC\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu ODBC, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Kiểu kết nối</emph></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng cột > (thẻ) Sắp hàng</emph></defaultinline></switchinline>"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149355\n"
-"61\n"
+"00040503.xhp\n"
+"par_id3150400\n"
+"8\n"
"help.text"
-msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
-msgstr "<variable id=\"ldap\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu Sổ địa chỉ, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "<variable id=\"tabform\">Open context menu of a row header in a database table - choose <emph>Table Format</emph></variable>"
+msgstr "<variable id=\"tabform\">Mở trình đơn ngữ cảnh của phần đầu hàng trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng bảng</emph></variable>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157896\n"
-"9\n"
+"00040503.xhp\n"
+"par_id3149650\n"
+"33\n"
"help.text"
-msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"JDBC\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu JDBC, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "<variable id=\"spaltform\">Open context menu of a column header in a database table - choose <emph>Column Format</emph></variable>"
+msgstr "<variable id=\"spaltform\">Mở trình đơn ngữ cảnh của phần đầu cột trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Định dạng cột</emph></variable>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3148548\n"
-"81\n"
+"00040503.xhp\n"
+"par_id3153799\n"
+"34\n"
"help.text"
-msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"mysql\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu MySQL, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
+msgstr "<variable id=\"zeilenloeschen\">Mở trình đơn ngữ cảnh của phần hàng cột trong bảng cơ sở dữ liệu, sau đó chọn mục <emph>Xoá hàng</emph></variable>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149346\n"
-"10\n"
+"00040503.xhp\n"
+"par_id3150495\n"
+"16\n"
"help.text"
-msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"dBase\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu dBase, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Lật</emph> ($[officename] Draw)"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147043\n"
-"11\n"
+"00040503.xhp\n"
+"par_id3155742\n"
+"17\n"
"help.text"
-msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
-msgstr "<variable id=\"dBasein\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu dBase, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính > Chỉ mục</emph></variable>"
+msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đồ họa > (thẻ) Đồ họa</emph>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154317\n"
-"12\n"
+"00040503.xhp\n"
+"par_id3158407\n"
+"35\n"
"help.text"
-msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"Text\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu Văn bản, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Lật</emph> (tài liệu trình diễn)"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150774\n"
+"00040503.xhp\n"
+"par_id3150290\n"
"20\n"
"help.text"
-msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"ADO\">Trong cửa sổ tập tin cơ sở dữ liệu kiểu MS ADO, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Lật > Theo chiều dọc</emph> ($[officename] Draw)"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3151110\n"
+"00040503.xhp\n"
+"par_id3153179\n"
"21\n"
"help.text"
-msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>"
-msgstr "<variable id=\"SQLStatement\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Công cụ > SQL</emph></variable>"
+msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đồ họa > (thẻ) Đồ họa</emph>"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147209\n"
-"22\n"
+"00040503.xhp\n"
+"par_id3157960\n"
+"36\n"
"help.text"
-msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
-msgstr "<variable id=\"Abfragen\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Truy vấn</emph></variable>"
+msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Lật > Theo chiều dọc</emph> (tài liệu trình diễn)"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153880\n"
-"62\n"
+"00040503.xhp\n"
+"par_id3153369\n"
+"26\n"
"help.text"
-msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
-msgstr "<variable id=\"Tabellen\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Bảng</emph></variable>"
+msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Lật > Theo chiều ngang</emph> ($[officename] Draw)"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153760\n"
-"64\n"
+"00040503.xhp\n"
+"par_id3147348\n"
+"27\n"
"help.text"
-msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"tabellenentwurf\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Bảng</emph>, sau đó chọn lệnh <emph>Chèn > Thiết kế bảng</emph> hay <emph>Sửa > Sửa</emph></variable>"
+msgid "Choose <emph>Format - Graphics</emph>, and then click the <emph>Graphics</emph> tab"
+msgstr "Chọn lệnh <emph>Định dạng > Đồ họa</emph>, sau đó nhấn vào thẻ <emph>Đồ họa</emph>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3156329\n"
-"65\n"
+"00040503.xhp\n"
+"par_id3156106\n"
+"42\n"
"help.text"
-msgid "<variable id=\"indexentwurf\">In a database file window, click the Tables icon. Choose <emph>Insert - Table Design</emph> or <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"indexentwurf\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Bảng</emph>, sau đó chọn lệnh <emph>Chèn > Thiết kế bảng</emph> hay <emph>Sửa > Sửa</emph></variable>"
+msgid "Choose <emph>Format - Flip - Horizontally</emph>"
+msgstr "Chọn lệnh <emph>Định dạng > Lật > Theo chiều ngang</emph>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154047\n"
-"23\n"
+"00040503.xhp\n"
+"par_id3152578\n"
+"37\n"
"help.text"
-msgid "<variable id=\"AbfrageNeu\">In a database file window, choose <emph>Insert - Query (Design view)</emph></variable>"
-msgstr "<variable id=\"AbfrageNeu\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Chèn > Truy vấn (ô xem thiết kế)</emph></variable>"
+msgid "Right-click a selected object, and then choose <emph>Flip - Horizontally</emph> ($[officename] Impress)"
+msgstr "Nhấn-phải vào đối tượng đã chọn, sau đó chọn mục <emph>Lật > Theo chiều ngang</emph> ($[officename] Impress)"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149579\n"
-"24\n"
+"00040503.xhp\n"
+"par_id3147318\n"
+"38\n"
"help.text"
-msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"entwab\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Truy vấn</emph>, sau đó chọn lệnh <emph>Sửa > Sửa</emph></variable>"
+msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
+msgstr "Chọn lệnh <emph>Sửa đổi > Phân bổ</emph> ($[officename] Draw)"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149902\n"
-"25\n"
+"00040503.xhp\n"
+"par_id3149064\n"
+"39\n"
"help.text"
-msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
-msgstr "<variable id=\"FehlendesElement\">Trong cửa sổ tập tin cơ sở dữ liệu, nhấn vào biểu tượng <emph>Truy vấn</emph>, sau đó chọn lệnh <emph>Sửa > Sửa</emph>. Không còn có lại trường đá tham chiếu thì bạn thấy hộp thoại này.</variable>"
+msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
+msgstr "Mở trình đơn ngữ cảnh, sau đó chọn mục <emph>Phân bổ</emph> ($[officename] Impress)"
-#: 00000450.xhp
-#, fuzzy
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159166\n"
+"01000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Showing and Hiding Docked Windows"
+msgstr "Hiển thị và ẩn cửa sổ đã thả neo"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3085157\n"
+"1\n"
+"help.text"
+msgid "Showing and Hiding Docked Windows"
+msgstr "Hiển thị và ẩn cửa sổ đã thả neo"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3149948\n"
+"2\n"
+"help.text"
+msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
+msgstr "Mọi cửa sổ <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">thả neo</link> có một biểu tượng để điều khiển các thuộc tính hiển thị của cửa sổ đó."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3150502\n"
+"3\n"
+"help.text"
+msgid "To show or hide a docked window, click the icon."
+msgstr "Để hiển thị hay ẩn cửa sổ thả neo, nhấn vào biểu tượng này."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3150465\n"
+"13\n"
+"help.text"
+msgid "AutoShow and AutoHide Docked Windows"
+msgstr "Tự động hiển thị và Tự động ẩn cửa sổ thả neo"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3155504\n"
+"14\n"
+"help.text"
+msgid "You can click the edge of a hidden docked window to open the window."
+msgstr "Bạn có thể nhấn vào cạnh của cửa sổ thả neo mà bị ẩn, để mở cửa sổ."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3153257\n"
+"15\n"
+"help.text"
+msgid "The docked window closes automatically when you move the mouse pointer outside of the window."
+msgstr "Cửa sổ thả neo sẽ đóng tự động khi bạn di chuyển con trỏ chuột ra ngoài cửa sổ."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3154046\n"
+"16\n"
+"help.text"
+msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode."
+msgstr "Nhiều cửa sổ thả neo đều thì làm cùng một cửa sổ ở chế độ Tự động hiển thị/ẩn."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3145416\n"
+"18\n"
+"help.text"
+msgid "Drag and Drop"
+msgstr "Kéo thả"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3149578\n"
+"19\n"
+"help.text"
+msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode."
+msgstr "Nếu bạn kéo một đối tượng qua cạnh cửa sổ thả neo mà bị ẩn, cửa sổ mở ở chế độ Tự động hiển thị."
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Gallery context menu"
+msgstr "Trình đơn ngữ cảnh của Bộ sưu tập"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"hd_id3150672\n"
+"1\n"
+"help.text"
+msgid "Gallery context menu"
+msgstr "Trình đơn ngữ cảnh của Bộ sưu tập"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3083278\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Xác định cách chèn vào tài liệu đối tượng đã chọn.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3156053\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADD\">Inserts a copy of the selected graphic object directly into the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD\">Chèn trực tiếp vào tài liệu một bản sao của đối tượng đồ họa đã chọn.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3149038\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Inserts the selected graphic as a link.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Chèn đồ họa đã chọn dạng liên kết.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3158428\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">Lệnh <emph>Xem thử</emph> thì hiển thị đồ họa đã chọn.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3154522\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Assigns a title to a selected Gallery object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Gán tựa đề cho đối tượng đã chọn từ Bộ sưu tập.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3149750\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Xoá đồ họa đã chọn, một khi xác nhận.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Context Menu of Web Pages in Read-Only Mode"
+msgstr "Trình đơn Ngữ cảnh của Trang Web ở Chế độ Chỉ đọc"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3158397\n"
+"1\n"
+"help.text"
+msgid "Context Menu of Web Pages in Read-Only Mode"
+msgstr "Trình đơn Ngữ cảnh của Trang Web ở Chế độ Chỉ đọc"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145348\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Opens a dialog where you can save the selected graphics.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Mở hộp thoại trong đó bạn có thể lưu các đồ họa đã chọn.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151262\n"
+"31\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Copies the link at the mouse pointer to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Sao chép vào bảng nháp liên kết nằm dưới con trỏ chuột.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155934\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Copies a selected graphic to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Sao chép vào bảng nháp đồ họa đã chọn.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145629\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">If you have deactivated the graphics display, choose the<emph> Load Graphics </emph>command to make them visible.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">Nếu bạn đã tắt khả năng hiển thị đồ họa thì chọn lệnh <emph>Nạp đồ họa</emph> để hiển thị lại.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150902\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Sets all graphics in the document to be invisible.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Đặt mọi đồ họa trong tài liệu đó là vô hình.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153910\n"
"26\n"
"help.text"
-msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
-msgstr "<variable id=\"Joins\">Mở ô thiết kế truy vấn, sau đó chọn lệnh <emph>Chèn > Quan hệ mới</emph>, hoặc nhấn-đôi vào một đường kết nối giữa hai bảng.</variable>"
+msgid "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Disables inserted plug-ins.</ahelp> Click this command again to reactivate the <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link>."
+msgstr "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Tắt các phần bổ sung đã chèn.</ahelp> Nhấn chuột lần nữa vào lệnh này để kích hoạt lại các <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"phần bổ sung\">phần bổ sung</link>."
-#: 00000450.xhp
+#: 01020000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3151245\n"
+"01020000.xhp\n"
+"par_id3148548\n"
+"38\n"
"help.text"
-msgid "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Allows you to save the background of a Web page.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Cho phép bạn lưu nền của trang Web.</ahelp>"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153896\n"
-"41\n"
+"01050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Insert Tables"
-msgstr "Chèn bảng"
+msgid "General"
+msgstr "Chung"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149457\n"
+"01050000.xhp\n"
+"hd_id3158397\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
+msgstr "<link href=\"text/shared/00/01050000.xhp\" name=\"Chung\">Chung</link>"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159085\n"
-"43\n"
+"01050000.xhp\n"
+"par_id3159242\n"
+"2\n"
"help.text"
-msgid "New Relation"
-msgstr "Quan hệ mới"
+msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>"
+msgstr ""
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150414\n"
-"47\n"
+"01050000.xhp\n"
+"hd_id3150264\n"
+"3\n"
"help.text"
-msgid "<emph>Find Record</emph> icon on the Table Data bar and Form Design bar"
-msgstr "Biểu tượng <emph>Tìm mục ghi</emph> trên thanh <emph>Dữ liệu bảng</emph> và <emph>Thiết kế Biểu mẫu</emph>"
+msgid "Name"
+msgstr "Tên"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157962\n"
+"01050000.xhp\n"
+"par_id3154094\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Displays the name of the theme.</ahelp> If no name has been assigned, you can type a new name in the text box."
+msgstr "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Hiển thị tên của sắc thái.</ahelp> Chưa gán tên thì bạn có thể gõ tên mới vào hộp văn bản."
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157322\n"
-"48\n"
+"01050000.xhp\n"
+"hd_id3147089\n"
+"5\n"
"help.text"
-msgid "Find Record"
-msgstr "Tìm mục ghi"
+msgid "Type"
+msgstr "Kiểu"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150870\n"
-"49\n"
+"01050000.xhp\n"
+"par_id3145071\n"
+"6\n"
"help.text"
-msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar"
-msgstr "Biểu tượng <emph>Thứ tự Sắp xếp</emph> trên thanh <emph>Dữ liệu bảng</emph> và <emph>Thiết kế Biểu mẫu</emph>"
+msgid "Specifies the object type."
+msgstr "Ghi rõ kiểu đối tượng."
-#: 00000450.xhp
-#, fuzzy
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150393\n"
+"01050000.xhp\n"
+"hd_id3147576\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Biểu tượng</alt></image>"
+msgid "Location"
+msgstr "Vị trí"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3145745\n"
-"50\n"
+"01050000.xhp\n"
+"par_id3146797\n"
+"8\n"
"help.text"
-msgid "Sort Order"
-msgstr "Thứ tự Sắp xếp"
+msgid "Specifies the complete object path."
+msgstr "Ghi rõ đường dẫn hoàn toàn đến đối tượng."
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3145171\n"
-"55\n"
+"icon_alt.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"allgemein\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "Standard Icons Alt Texts to be Embedded"
+msgstr "Chuỗi xen kẽ cần nhúng trong biểu tượng chuẩn"
-#: 00000450.xhp
-#, fuzzy
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159252\n"
-"63\n"
+"icon_alt.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "<variable id=\"tabellecopy\">Drag and drop a table or a query into the table part of another database file window</variable>"
-msgstr "<variable id=\"tabellecopy\">Kéo thả một bảng hay truy vấn vào phần bảng của cửa sổ tập tin cơ sở dữ liệu khác</variable>"
+msgid "<variable id=\"alt_icon\">Icon </variable>"
+msgstr "<variable id=\"alt_icon\">Biểu tượng </variable>"
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3148560\n"
-"66\n"
+"icon_alt.xhp\n"
+"par_idN10555\n"
"help.text"
-msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
-msgstr "<variable id=\"formularneu\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Chèn > Biểu mẫu</emph></variable>"
+msgid "<variable id=\"alt_warning\">Warning Icon </variable>"
+msgstr "<variable id=\"alt_warning\">Biểu tượng Cảnh báo </variable>"
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3155430\n"
-"67\n"
+"icon_alt.xhp\n"
+"par_idN10564\n"
"help.text"
-msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"benutzereinstellungen\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Sửa > Cơ sở dữ liệu > Thuộc tính</emph></variable>"
+msgid "<variable id=\"alt_tip\">Tip Icon </variable>"
+msgstr "<variable id=\"alt_tip\">Biểu tượng Gợi ý </variable>"
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147441\n"
-"69\n"
+"icon_alt.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
-msgstr "<variable id=\"relationen\">Trong cửa sổ tập tin cơ sở dữ liệu, chọn lệnh <emph>Công cụ > Quan hệ</emph></variable>"
+msgid "<variable id=\"alt_note\">Note Icon </variable>"
+msgstr "<variable id=\"alt_note\">Biểu tượng Ghi chú </variable>"
diff --git a/source/vi/helpcontent2/source/text/shared/01.po b/source/vi/helpcontent2/source/text/shared/01.po
index c699f47a689..b1def3139e1 100644
--- a/source/vi/helpcontent2/source/text/shared/01.po
+++ b/source/vi/helpcontent2/source/text/shared/01.po
@@ -1,1357 +1,837 @@
-#
+#. extracted from helpcontent2/source/text/shared/01
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-01-18 13:18+0100\n"
-"PO-Revision-Date: 2012-06-16 15:56+0200\n"
+"POT-Creation-Date: 2013-06-03 08:43+0200\n"
+"PO-Revision-Date: 2013-01-19 19:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1358624018.0\n"
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"tit\n"
-"help.text"
-msgid "Extension Update"
-msgstr "Cập nhật phần mở rộng"
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"hd_id9688100\n"
-"help.text"
-msgid "Extension Update"
-msgstr "Cập nhật phần mở rộng"
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id5084688\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click the <emph>Check for Updates</emph> button in the <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose <emph>Update</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn vào nút <emph>Kiểm tra có bản cập nhật</emph> trong <link href=\"text/shared/01/packagemanager.xhp\">Bộ Quản lý Phần mở rộng</link> để kiểm tra có bản cập nhật trực tuyến chưa cho các phần mở rộng đã cài đặt. Để kiểm tra có bản cập nhật trực tuyến chưa chỉ cho phần mở rộng được chọn, nhấn-phải để mở trình đơn ngữ cảnh, sau đó chọn lệnh <emph>Cập nhật</emph>.</ahelp>"
-
-#: extensionupdate.xhp
-#, fuzzy
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6401257\n"
-"help.text"
-msgid "When you click the <item type=\"menuitem\">Check for Updates</item> button or choose the <item type=\"menuitem\">Update</item> command, the Extension Update dialog is displayed and the check for availability of updates starts immediately."
-msgstr "Khi bạn nhấn vào cái nút <emph>Kiểm tra có bản cập nhật</emph> hay chọn lệnh <emph>Cập nhật</emph>, hộp thoại <emph>Cập nhật Phần mở rộng</emph> được hiển thị và tiến trình kiểm tra có sẵn bản cập nhật chưa sẽ khởi chạy ngay lập tức."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id5841242\n"
-"help.text"
-msgid "<ahelp hid=\".\">While checking for updates, you see a progress indicator. Wait for some messages to show up in the dialog, or click Cancel to abort the update check.</ahelp>"
-msgstr "<ahelp hid=\".\">Trong khi kiểm tra có bản cập nhật, bạn thấy chỉ thị tiến hàng. Đợi thông điệp hiển thị trong hộp thoại, hoặc nhấn vào nút <emph>Thôi</emph> để hủy bỏ tiến trình kiểm tra có bản cập nhật.</ahelp>"
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6794030\n"
-"help.text"
-msgid "If no updates are available, the message in the dialog tells you there are no updates. Close the dialog."
-msgstr "Không có sẵn bản cập nhật thì thông điệp trong hộp thoại báo bạn như vậy. Đóng hộp thoại."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id7096774\n"
-"help.text"
-msgid "If updates are available, the updates can either be installed automatically, or you must respond with some action:"
-msgstr "Có sẵn bản cập nhật thì hoặc có thể cài đặt các bản cập nhật ngay lập tức, hoặc bạn cần phải đáp ứng bằng cách nào :"
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6420484\n"
-"help.text"
-msgid "The Extension Update dialog may contain entries which are not selectable and hence no automatic update can be performed."
-msgstr "Hộp thoại <emph>Cập nhật Phần mở rộng</emph> có thể chứa các mục nhập không thể lựa chọn được thì không thể tự động kiểm tra có bản cập nhật."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6986602\n"
-"help.text"
-msgid "Dependencies are not fulfilled (the update needs some more or newer files to be installed)."
-msgstr "Không thỏa tiêu chuẩn cách phụ thuộc (bản cập nhật cần thiết cài đặt thêm tập tin hay tập tin mới)."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id616779\n"
-"help.text"
-msgid "Insufficient user rights (the Extension Manager was started from the menu, but shared extensions can only be modified when %PRODUCTNAME does not run, and only by a user with appropriate rights). See <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> for details."
-msgstr "Không đủ quyền người dùng (Bộ Quản lý Phần mở rộng đã được khởi chạy từ trình đơn, nhưng các phần mở rộng dùng chung chỉ có thể được sửa đổi khi %PRODUCTNAME không đang chạy, và chỉ bởi người dùng có quyền truy cập thích hợp). Xem <link href=\"text/shared/01/packagemanager.xhp\">Bộ Quản lý Phần mở rộng</link> để tìm chi tiết."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id791039\n"
-"help.text"
-msgid "A manual update is necessary."
-msgstr "Cần thiết cập nhật bằng tay."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id757469\n"
-"help.text"
-msgid "<ahelp hid=\".\">When you click the Install button the Download and Installation dialog is displayed.</ahelp>"
-msgstr "<ahelp hid=\".\">Khi bạn nhấn vào nút <emph>Cài đặt</emph>, hộp thoại <emph>Tải về và Cài đặt</emph> được hiển thị.</ahelp>"
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id5189062\n"
-"help.text"
-msgid "All extensions which can be directly downloaded are downloaded now. The progress is shown in the Download and Installation dialog. If an extension cannot be downloaded, a message is displayed. The operation continues for the remaining extensions."
-msgstr "Tất cả các phần mở rộng mà có khả năng tải về trực tiếp thì được tải về ngay bây giờ. Tiến hành được hiển thị trong hộp thoại <emph>Tải về và Cài đặt</emph>. Nếu một phần mở rộng nào đó không thể tải về được, một thông điệp được hiển thị. Thao tác sẽ tiếp tục đối với các phần mở rộng còn lại."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id3949095\n"
-"help.text"
-msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser."
-msgstr "Một số phần mở rộng nào đó có thể được nhãn với chuỗi « cập nhật dựa vào trình duyệt ». Những phần mở rộng này không thể được tải về thông qua <emph>Bộ Quản lý Phần mở rộng</emph>. Cần phải mở một trình duyệt Web để tải bản cập nhật phần mở rộng xuống một địa chỉ Web nào đó. Địa chỉ này có thể cần thiết thêm vài việc tương tác người dùng để tải về phần mở rộng. Sau khi tải về, bạn cần phải tự cài đặt phần mở rộng, chẳng hạn bằng cách nhấn-đôi vào biểu tượng của phần mở rộng trong khung duyệt tập tin."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id3729056\n"
-"help.text"
-msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately."
-msgstr "Đối với các phần mở rộng có nhãn « cập nhật dựa vào trình duyệt », <emph>Bộ Quản lý Phần mở rộng</emph> sẽ mở trình duyệt Web của bạn ở địa chỉ Web tương ứng. Hành động này xảy ra khi bạn đóng hộp thoại, sau khi tải về các bản cập nhật phần mở rộng khác. Không có phần mở rộng có thể tải về trực tiếp thì trình duyệt Web được khởi chạy ngay lập tức."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6854457\n"
-"help.text"
-msgid "After the last extension has been downloaded, the installation begins. First all installed extensions for which an update could be downloaded successfully, are removed. Then the updated extensions are installed. If an error occurs, a message that the installation failed is displayed, but the operation proceeds."
-msgstr "Một khi tải về phần mở rộng cuối cùng, tiến trình cài đặt khởi chạy. Đầu tiên gỡ bỏ các phần mở rộng có bản cập nhật được tải về thành công. Sau đó thì cài đặt các phần mở rộng đã cập nhật. Gặp lỗi thì hiển thị thông điệp rằng tiến trình cài đặt bị lỗi, nhưng thao tác vẫn còn tiếp tục lại."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id3372295\n"
-"help.text"
-msgid "If all updates have been processed the Download and Installation dialog shows that it has finished. You can abort the download and installation process by clicking the <emph>Abort Update</emph> button."
-msgstr "Nếu tất cả các bản cập nhật đã được xử lý, hộp thoại <emph>Tải về và Cài đặt</emph> sẽ hiển thị rằng tiến trình đã chạy xong. Bạn vẫn còn có khả năng hủy bỏ tiến trình tải về và cài đặt, bằng cách nhấn vào nút <emph>Hủy bỏ cập nhật</emph>."
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"hd_id5699942\n"
-"help.text"
-msgid "Show all Updates"
-msgstr "Hiện mọi bản cập nhật"
-
-#: extensionupdate.xhp
-#, fuzzy
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id641193\n"
-"help.text"
-msgid "<ahelp hid=\".\">By default, only the downloadable extensions are shown in the dialog. Mark <emph>Show all Updates</emph> to see also other extensions and error messages.</ahelp>"
-msgstr "<ahelp hid=\".\">Mặc định là hộp thoại hiển thị chỉ những phần mở rộng có thể tải về. Bật tùy chọn <emph>Hiện mọi bản cập nhật</emph> để thấy các phần mở rộng khác và thông điệp lỗi.</ahelp>"
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"par_id7634510\n"
-"help.text"
-msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
-msgstr "<link href=\"text/shared/01/packagemanager.xhp\">Bộ Quản lý Phần mở rộng</link>"
-
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
+"01010000.xhp\n"
"tit\n"
"help.text"
-msgid "General"
-msgstr "Chung"
-
-#: 01100200.xhp
-msgctxt ""
-"01100200.xhp\n"
-"bm_id3149955\n"
-"help.text"
-msgid "<bookmark_value>version numbers of documents</bookmark_value> <bookmark_value>documents; version numbers</bookmark_value> <bookmark_value>files; version numbers</bookmark_value> <bookmark_value>editing time of documents</bookmark_value> <bookmark_value>documents; editing time</bookmark_value>"
-msgstr "<bookmark_value>số thứ tự phiên bản của tài liệu</bookmark_value><bookmark_value>tài liệu; số thứ tự phiên bản</bookmark_value><bookmark_value>tập tin; số thứ tự phiên bản</bookmark_value><bookmark_value>thời gian chỉnh sửa của tài liệu</bookmark_value><bookmark_value>tài liệu; thời gian chỉnh sửa</bookmark_value>"
+msgid "New"
+msgstr "Mới"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3148668\n"
+"01010000.xhp\n"
+"hd_id3154788\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"Chung\">Chung</link>"
+msgid "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">New</link>"
+msgstr "<link href=\"text/shared/01/01010000.xhp\" name=\"Mới\">Mới</link>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3154863\n"
+"01010000.xhp\n"
+"par_id3145669\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_DOCINFODOC\">Contains basic information about the current file.</ahelp>"
-msgstr "<ahelp hid=\"HID_DOCINFODOC\">Chứa thông tin cơ bản về tập tin hiện tại.</ahelp>"
-
-#: 01100200.xhp
-msgctxt ""
-"01100200.xhp\n"
-"hd_id3149999\n"
-"3\n"
-"help.text"
-msgid "File"
-msgstr "Tập tin"
-
-#: 01100200.xhp
-msgctxt ""
-"01100200.xhp\n"
-"par_id3153114\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODOC:ED_FILE_NAME\">Displays the file name.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODOC:ED_FILE_NAME\">Hiển thị tên tập tin.</ahelp>"
-
-#: 01100200.xhp
-msgctxt ""
-"01100200.xhp\n"
-"hd_id3156136\n"
-"17\n"
-"help.text"
-msgid "Type:"
-msgstr "Kiểu :"
+msgid "<ahelp hid=\".uno:AddDirect\">Creates a new $[officename] document.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddDirect\">Tạo một tài liệu $[officename] mới.</ahelp>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3155552\n"
-"20\n"
+"01010000.xhp\n"
+"par_id3149182\n"
+"115\n"
"help.text"
-msgid "Displays the file type for the current document."
-msgstr "Hiển thị kiểu tập tin của tài liệu hiện tại."
+msgid "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Creates a new $[officename] document. Click the arrow to select the document type.</ahelp>"
+msgstr "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Tạo một tài liệu $[officename] mới. Nhấn vào mũi tên để chọn kiểu tài liệu.</ahelp>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3145314\n"
-"18\n"
+"01010000.xhp\n"
+"par_id3153528\n"
+"81\n"
"help.text"
-msgid "Location:"
-msgstr "Vị trí:"
+msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates.</emph></ahelp>"
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3150506\n"
-"21\n"
+"01010000.xhp\n"
+"par_id3147009\n"
+"82\n"
"help.text"
-msgid "Displays the path and the name of the directory where the file is stored."
-msgstr "Hiển thị đường dẫn và tên của thư mục chứa tập tin này."
+msgid "A template is a file that contains the design elements for a document, including formatting styles, backgrounds, frames, graphics, fields, page layout, and text."
+msgstr "Mẫu là một tập tin chứa các phần tử thiết kế cho một tài liệu nào đó, bao gồm tất cả các kiểu dáng định dạng, nền, đồ họa, trường, bố trí trang và văn bản."
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3155892\n"
-"19\n"
+"01010000.xhp\n"
+"par_id3147242\n"
+"112\n"
"help.text"
-msgid "Size:"
-msgstr "Kích cỡ :"
+msgid "<emph>Icon</emph>"
+msgstr "<emph>Biểu tượng</emph>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3153311\n"
-"22\n"
+"01010000.xhp\n"
+"par_id3149580\n"
+"113\n"
"help.text"
-msgid "Displays the size of the current document in bytes."
-msgstr "Hiển thị kích cỡ (theo byte) của tài liệu hiện tại."
+msgid "<emph>Name</emph>"
+msgstr "<emph>Tên</emph>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3149178\n"
-"7\n"
+"01010000.xhp\n"
+"par_id3153258\n"
+"114\n"
"help.text"
-msgid "Created:"
-msgstr "Tạo :"
+msgid "<emph>Function</emph>"
+msgstr "<emph>Chức năng</emph>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3153748\n"
-"8\n"
+"01010000.xhp\n"
+"par_id3145317\n"
"help.text"
-msgid "Displays the date and time and author when the file was first saved."
-msgstr "Hiển thị ngày tháng, thời gian và tác giả lưu đầu tiên tập tin này."
+msgid "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Biểu tượng</alt></image>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3149182\n"
-"9\n"
+"01010000.xhp\n"
+"par_id3153349\n"
+"61\n"
"help.text"
-msgid "Modified:"
-msgstr "Sửa đổi:"
+msgid "Text Document"
+msgstr "Tài liệu văn bản"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3150355\n"
-"10\n"
+"01010000.xhp\n"
+"par_id3156153\n"
+"62\n"
"help.text"
-msgid "Displays the date and time and author when the file was last saved in a $[officename] file format."
-msgstr "Hiển thị ngày tháng, thời gian và tác giả lưu cuối cùng tập tin này theo định dạng $[officename]."
+msgid "Creates a new text document ($[officename] Writer)."
+msgstr "Tạo một tài liệu văn bản mới ($[officename] Writer)"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106C5\n"
+"01010000.xhp\n"
+"par_id3145121\n"
"help.text"
-msgid "Digitally signed:"
-msgstr "Có chữ ký số :"
+msgid "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Biểu tượng</alt></image>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106C9\n"
+"01010000.xhp\n"
+"par_id3148552\n"
+"63\n"
"help.text"
-msgid "Displays the date and the time when the file was last signed as well as the name of the author who signed the document."
-msgstr "Hiển thị ngày tháng và thời gian ký cuối cùng tập tin này, cũng như tên của tác giả đã ký tài liệu."
+msgid "Spreadsheet"
+msgstr "Bảng tính"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106CC\n"
+"01010000.xhp\n"
+"par_id3154280\n"
+"64\n"
"help.text"
-msgid "Digital Signature"
-msgstr "Chữ ký số"
+msgid "Creates a new spreadsheet document ($[officename] Calc)."
+msgstr "Tạo một tài liệu bảng tính mới ($[officename] Calc)"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106D0\n"
+"01010000.xhp\n"
+"par_id3149456\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link> dialog where you can manage digital signatures for the current document."
-msgstr "Mở hộp thoại <link href=\"text/shared/01/digitalsignatures.xhp\">Chữ ký số</link> trong đó bạn có thể quản lý các chữ ký điện số cho tài liệu hiện tại."
+msgid "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Biểu tượng</alt></image>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3156346\n"
-"11\n"
+"01010000.xhp\n"
+"par_id3153798\n"
+"65\n"
"help.text"
-msgid "Last printed:"
-msgstr "In cuối:"
+msgid "Presentation"
+msgstr "Trình diễn"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3152780\n"
-"12\n"
+"01010000.xhp\n"
+"par_id3154946\n"
+"66\n"
"help.text"
-msgid "Displays the date and time and user name when the file was last printed."
-msgstr "Hiển thị ngày tháng, thời gian và người dùng in cuối cùng tập tin này."
+msgid "Creates a new presentation document ($[officename] Impress). If activated, the <link href=\"text/shared/autopi/01050000.xhp\" name=\"Presentation Wizard\">Presentation Wizard</link> dialog appears."
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3153252\n"
-"15\n"
+"01010000.xhp\n"
+"par_id3150495\n"
"help.text"
-msgid "Revision number:"
-msgstr "Số duyệt"
+msgid "<image id=\"img_id3154329\" src=\"res/sx03246.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154329\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154329\" src=\"res/sx03246.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154329\">Biểu tượng</alt></image>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3149955\n"
-"16\n"
+"01010000.xhp\n"
+"par_id3154217\n"
+"99\n"
"help.text"
-msgid "Displays the number of times that the file has been saved."
-msgstr "Hiển thị số lần lưu tập tin này."
+msgid "Drawing"
+msgstr "Bản vẽ"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3155342\n"
-"13\n"
+"01010000.xhp\n"
+"par_id3149167\n"
+"100\n"
"help.text"
-msgid "Editing time:"
-msgstr "Thời gian sửa:"
+msgid "Creates a new drawing document ($[officename] Draw)."
+msgstr "Tạo một tài liệu vẽ mới ($[officename] Draw)."
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3149795\n"
-"14\n"
+"01010000.xhp\n"
+"par_idN1089C\n"
"help.text"
-msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
-msgstr "Hiển thị tổng số thời gian chỉnh sửa tập tin này, kể từ tạo. Thời gian chỉnh sửa được cập nhật khi nào bạn lưu tập tin."
+msgid "<image id=\"Graphic3\" src=\"res/sx03245.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic3\" src=\"res/sx03245.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3154810\n"
-"33\n"
+"01010000.xhp\n"
+"par_idN108CB\n"
"help.text"
-msgid "Apply User Data"
-msgstr "Áp dụng dữ liệu người dùng"
+msgid "Database"
+msgstr "Cơ sở dữ liệu"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3143271\n"
-"34\n"
+"01010000.xhp\n"
+"par_idN108D0\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:CHECKBOX:TP_DOCINFODOC:CB_USE_USERDATA\">Saves the user's full name with the file. You can edit the name by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>.</ahelp>"
-msgstr ""
+msgid "Opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link> to create a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link>."
+msgstr "Mở <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Trợ lý Cơ sở Dữ liệu</link> để tạo một <link href=\"text/shared/explorer/database/dabadoc.xhp\">tập tin cơ sở dữ liệu</link>."
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3154046\n"
-"35\n"
+"01010000.xhp\n"
+"par_id3159149\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<image id=\"img_id3150868\" src=\"res/sx03139.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150868\" src=\"res/sx03139.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Biểu tượng</alt></image>"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3152349\n"
-"36\n"
+"01010000.xhp\n"
+"par_id3154298\n"
+"79\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_DOCINFODOC:BTN_DELETE\">Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_DOCINFODOC:BTN_DELETE\">Đặt lại: thời gian chỉnh sửa về số không, ngày tháng tạo thành ngày/giờ hiện thời và số thứ tự phiên bản về số 1. Cũng xoá các ngày tháng sửa đổi và in ấn.</ahelp>"
+msgid "HTML Document"
+msgstr "Tài liệu HTML"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3149576\n"
-"5\n"
+"01010000.xhp\n"
+"par_id3152460\n"
+"80\n"
"help.text"
-msgid "Template:"
-msgstr "Mẫu :"
+msgid "Creates a new HTML document."
+msgstr "Tạo một tài liệu HTML mới."
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3147530\n"
-"6\n"
+"01010000.xhp\n"
+"par_idN107BF\n"
"help.text"
-msgid "Displays the template that was used to create the file."
-msgstr "Hiển thị mẫu đã được dùng để tạo tập tin này."
+msgid "<image id=\"Graphic2\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic2\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 05350000.xhp
+#: 01010000.xhp
msgctxt ""
-"05350000.xhp\n"
-"tit\n"
+"01010000.xhp\n"
+"par_idN107F0\n"
"help.text"
-msgid "3D Effects"
-msgstr "Hiệu ứng 3D"
+msgid "XML Form Document"
+msgstr "Tài liệu Biểu mẫu XML"
-#: 05350000.xhp
+#: 01010000.xhp
msgctxt ""
-"05350000.xhp\n"
-"hd_id3153136\n"
-"1\n"
+"01010000.xhp\n"
+"par_idN107F5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350000.xhp\" name=\"3D Effects\">3D Effects</link>"
-msgstr "<link href=\"text/shared/01/05350000.xhp\" name=\"Hiệu ứng 3D\">Hiệu ứng 3D</link>"
+msgid "Creates a new <link href=\"text/shared/guide/xforms.xhp\">XForms</link> document."
+msgstr "Tạo một tài liệu <link href=\"text/shared/guide/xforms.xhp\">XForm</link> mới."
-#: 05350000.xhp
+#: 01010000.xhp
msgctxt ""
-"05350000.xhp\n"
-"par_id3156324\n"
-"2\n"
+"01010000.xhp\n"
+"par_id3147426\n"
"help.text"
-msgid "<ahelp hid=\".uno:Window3D\">Specifies the properties of 3D object(s) in the current document.</ahelp>"
-msgstr "<ahelp hid=\".uno:Window3D\">Ghi rõ các thuộc tính về đối tượng ba chiều (3D) trong tài liệu hiện tại.</ahelp>"
+msgid "<image id=\"img_id3163710\" src=\"res/sx03248.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163710\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163710\" src=\"res/sx03248.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163710\">Biểu tượng</alt></image>"
-#: 05150101.xhp
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"tit\n"
+"01010000.xhp\n"
+"par_id3152938\n"
+"89\n"
"help.text"
-msgid "Add AutoFormat"
-msgstr "Thêm Tự động Định dạng"
+msgid "Master Document"
+msgstr "Tài liệu chủ"
-#: 05150101.xhp
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"hd_id3154841\n"
-"1\n"
+"01010000.xhp\n"
+"par_id3150961\n"
+"90\n"
"help.text"
-msgid "Add AutoFormat"
-msgstr "Thêm Tự động Định dạng"
+msgid "Creates a new <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>."
+msgstr "Tạo một <link href=\"text/shared/01/01010001.xhp\" name=\"tài liệu chủ\">tài liệu chủ</link> mới."
-#: 05150101.xhp
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"hd_id3154812\n"
-"2\n"
+"01010000.xhp\n"
+"par_id3155854\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "<image id=\"img_id3147317\" src=\"res/sx03247.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147317\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147317\" src=\"res/sx03247.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147317\">Biểu tượng</alt></image>"
-#: 05150101.xhp
-#, fuzzy
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"par_id3153391\n"
-"3\n"
+"01010000.xhp\n"
+"par_id3155511\n"
+"77\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SW:EDIT:DLG_SWDLG_STRINPUT:ED_INPUT\">Nhập tên cho Tự động Định dạng mới, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
+msgid "Formula"
+msgstr "Công thức"
-#: 05120200.xhp
+#: 01010000.xhp
msgctxt ""
-"05120200.xhp\n"
-"tit\n"
+"01010000.xhp\n"
+"par_id3150872\n"
+"78\n"
"help.text"
-msgid "1.5 Lines"
-msgstr "1,5 dòng"
+msgid "Creates a new formula document ($[officename] Math)."
+msgstr "Tạo một tài liệu công thức ($[officename] Math)."
-#: 05120200.xhp
+#: 01010000.xhp
msgctxt ""
-"05120200.xhp\n"
-"hd_id3152459\n"
-"1\n"
+"01010000.xhp\n"
+"par_id3154145\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120200.xhp\" name=\"1.5 Lines\">1.5 Lines</link>"
-msgstr "<link href=\"text/shared/01/05120200.xhp\" name=\"1,5 dòng\">1,5 dòng</link>"
+msgid "<image id=\"img_id3083443\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083443\">Icon</alt></image>"
+msgstr "<image id=\"img_id3083443\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083443\">Biểu tượng</alt></image>"
-#: 05120200.xhp
+#: 01010000.xhp
msgctxt ""
-"05120200.xhp\n"
-"par_id3146807\n"
-"2\n"
+"01010000.xhp\n"
+"par_id3149417\n"
+"105\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpacePara15\">Sets the line spacing of the current paragraph to one and half lines.</ahelp>"
-msgstr "<ahelp hid=\".uno:SpacePara15\">Đặt khoảng cách dòng của đoạn văn hiện tại thành 1,5 dòng.</ahelp>"
+msgid "Labels"
+msgstr "Nhãn"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"tit\n"
+"01010000.xhp\n"
+"par_id3148388\n"
+"106\n"
"help.text"
-msgid "Illumination"
-msgstr "Chiếu sáng"
+msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link> dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer)."
+msgstr "Mở hộp thoại <link href=\"text/shared/01/01010200.xhp\" name=\"Nhãn\">Nhãn</link> trong đó bạn có thể đặt các tùy chọn về nhãn, sau đó tạo một tài liệu văn bản mới chứa các nhãn đó ($[officename] Writer)."
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3151260\n"
-"1\n"
+"01010000.xhp\n"
+"par_id3155415\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350400.xhp\" name=\"Illumination\">Illumination</link>"
-msgstr "<link href=\"text/shared/01/05350400.xhp\" name=\"Chiếu sáng\">Chiếu sáng</link>"
+msgid "<image id=\"img_id3156283\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156283\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156283\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156283\">Biểu tượng</alt></image>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3149741\n"
-"2\n"
+"01010000.xhp\n"
+"par_id3150592\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT\">Define the light source for the selected 3D object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT\">Xác định nguồn ánh sáng cho đối tượng 3D đã chọn.</ahelp>"
+msgid "Business Cards"
+msgstr "Danh thiếp"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3154984\n"
-"4\n"
+"01010000.xhp\n"
+"par_id3150968\n"
+"108\n"
"help.text"
-msgid "Illumination"
-msgstr "Chiếu sáng"
+msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">Business Cards</link> dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer)."
+msgstr "Mở hộp thoại <link href=\"text/shared/01/01010300.xhp\" name=\"Danh thiếp\">Danh thiếp</link> trong đó bạn có thể đặt các tùy chọn về danh thiếp, sau đó tạo một tài liệu văn bản mới chứa các danh thiếp đó ($[officename] Writer)."
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155391\n"
-"5\n"
+"01010000.xhp\n"
+"par_id3154729\n"
"help.text"
-msgid "Specify the light source for the object, as well as the color of the light source and of the ambient light. You can define up to eight different light sources."
-msgstr "Ghi rõ nguồn ánh sáng cho đối tượng, cũng như màu của nguồn ánh sáng và của ánh sáng chung quanh. Bạn có khả năng xác định đến tám nguồn ánh sáng khác nhau."
+msgid "<image id=\"img_id3150422\" src=\"res/sx03242.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150422\" src=\"res/sx03242.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150422\">Biểu tượng</alt></image>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3153748\n"
-"6\n"
+"01010000.xhp\n"
+"par_id3154510\n"
+"69\n"
"help.text"
-msgid "Light source"
-msgstr "Nguồn sáng"
+msgid "Templates"
+msgstr "Mẫu"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3149149\n"
-"7\n"
+"01010000.xhp\n"
+"par_id3155603\n"
+"70\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8\">Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the <emph>Ambient light</emph> box.</ahelp> You can also press the Spacebar to turn the light source on or off."
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8\">Nhấn chuột hai lần để bật nguồn ánh sáng, sau đó trong danh sách chọn màu cho ánh sáng. Bạn cũng có thể đặt màu của ánh sáng chung quanh, bằng cách chọn màu trong hộp <emph>Sáng chung quanh</emph>.</ahelp> Cũng có thể bấm phím dài để bật/tắt nguồn ánh sáng."
+msgid "Creates a new document using an existing template."
+msgstr ""
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3159269\n"
+"01010000.xhp\n"
+"par_idN1096F\n"
"help.text"
-msgid "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3156155\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3156155\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/shared/guide/doc_open.xhp\">Opening documents</link>"
+msgstr "<link href=\"text/shared/guide/doc_open.xhp\">Mở tài liệu</link>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3154143\n"
-"8\n"
+"01010000.xhp\n"
+"par_idN109E7\n"
"help.text"
-msgid "Light is on"
-msgstr "Ánh sáng đã mở"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new text document ($[officename] Writer).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu văn bản mới ($[officename] Writer).</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155449\n"
+"01010000.xhp\n"
+"par_idN109FE\n"
"help.text"
-msgid "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147573\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147573\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new spreadsheet document ($[officename] Calc).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu bảng tính mới ($[officename] Calc).</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155829\n"
-"9\n"
+"01010000.xhp\n"
+"par_idN10A15\n"
"help.text"
-msgid "Light is off"
-msgstr "Ánh sáng bị đóng"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress). If activated, the Presentation Wizard dialog appears.</ahelp>"
+msgstr ""
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3159166\n"
-"10\n"
+"01010000.xhp\n"
+"par_idN10A2C\n"
"help.text"
-msgid "Color Selection"
-msgstr "Chọn màu"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new drawing document ($[officename] Draw).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu vẽ mới ($[officename] Draw).</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155421\n"
-"11\n"
+"01010000.xhp\n"
+"par_idN10A43\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_LIGHT_1\">Select a color for the current light source.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_LIGHT_1\">Chọn màu cho nguồn ánh sáng hiện thời.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Database Wizard to create a database file.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở <emph>Trợ lý Cơ sở Dữ liệu</emph> để tạo một tài liệu cơ sở dữ liệu.</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3149955\n"
-"12\n"
+"01010000.xhp\n"
+"par_idN10A5A\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color in the color dialog\">Select Color in the color dialog</link>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu trong Hộp thoại Màu sắc\">Chọn màu trong Hộp thoại Màu sắc</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new HTML document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu HTML mới.</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3153061\n"
-"13\n"
+"01010000.xhp\n"
+"par_idN10A71\n"
"help.text"
-msgid "Ambient light"
-msgstr "Sáng chung quanh"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new XForms document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu biểu mẫu XForm mới.</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3144511\n"
-"15\n"
+"01010000.xhp\n"
+"par_idN10A88\n"
"help.text"
-msgid "Color Selection"
-msgstr "Chọn màu"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new master document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3153896\n"
-"16\n"
+"01010000.xhp\n"
+"par_idN10A9F\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT\">Select a color for the ambient light.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT\">Chọn màu cho ánh sáng chung quanh.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new formula document ($[officename] Math).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu công thức mới ($[officename] Math).</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3149670\n"
-"17\n"
+"01010000.xhp\n"
+"par_idN10AB6\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Labels dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Nhãn</emph> trong đó bạn có thể đặt các tùy chọn về nhãn, sau đó tạo một tài liệu văn bản mới chứa các nhãn ($[officename] Writer).</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3153961\n"
-"18\n"
+"01010000.xhp\n"
+"par_idN10ACD\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Business Cards dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Danh thiếp</emph> trong đó bạn có thể đặt các tùy chọn về danh thiếp, sau đó tạo một tài liệu văn bản mới chứa các danh thiếp ($[officename] Writer).</ahelp>"
-#: 05350400.xhp
+#: 01010000.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3151056\n"
-"19\n"
+"01010000.xhp\n"
+"par_idN10AE4\n"
"help.text"
-msgid "Displays a preview of the light source changes."
-msgstr "Hiển thị ô xem thử khi thay đổi nguồn ánh sáng."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new document using an existing template or opens a sample document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu mới dựa vào một mẫu đã tồn tại, hoặc mở một tài liệu thí dụ.</ahelp>"
-#: 05030500.xhp
+#: 01010001.xhp
msgctxt ""
-"05030500.xhp\n"
+"01010001.xhp\n"
"tit\n"
"help.text"
-msgid "Borders"
-msgstr "Viền"
+msgid "Master Document"
+msgstr "Tài liệu chủ"
-#: 05030500.xhp
+#: 01010001.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3154812\n"
+"01010001.xhp\n"
+"hd_id3153514\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
-msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Viền\">Viền</link>"
+msgid "<link href=\"text/shared/01/01010001.xhp\" name=\"Master Document\">Master Document</link>"
+msgstr "<link href=\"text/shared/01/01010001.xhp\" name=\"Tài liệu chủ\">tài liệu chủ</link>"
-#: 05030500.xhp
+#: 01010001.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3151097\n"
+"01010001.xhp\n"
+"par_id3154682\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_BORDER\">Sets the border options for the selected objects in Writer or Calc.</ahelp>"
-msgstr "<ahelp hid=\"HID_BORDER\">Đặt các tùy chọn viền về những đối tượng đã chọn trong mô-đun Writer hay Calc.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3155351\n"
-"44\n"
-"help.text"
-msgid "You can specify the border position, size, and style in Writer or Calc. <switchinline select=\"appl\"><caseinline select=\"WRITER\">In $[officename] Writer, you can add borders to pages, frames, graphics, tables, paragraphs, and to embedded objects. </caseinline></switchinline>"
-msgstr "Trong Writer hay Calc, bạn có thể ghi rõ vị trí, kích cỡ và kích cỡ của viền.<switchinline select=\"appl\"><caseinline select=\"WRITER\">Trong $[officename] Writer, bạn có thể thêm viền vào trang, khung, đồ họa, bảng, đoạn văn và đối tượng nhúng. </caseinline></switchinline>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3152997\n"
-"40\n"
-"help.text"
-msgid "To modify the border of an entire table, place the cursor in a table cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab. To modify the border of a table cell, select the cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab."
-msgstr "Để sửa đổi viền của toàn bảng, để con trỏ vào ô bảng, nhấn-phải, chọn mục <emph>Bảng</emph>, sau đó nhấn vào thẻ <emph>Viền</emph>. Để sửa đổi viền của một ô bảng, lựa chọn ô đó, chọn mục <emph>Bảng</emph>, sau đó nhấn vào thẻ <emph>Viền</emph>."
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3145417\n"
-"3\n"
-"help.text"
-msgid "Line arrangement"
-msgstr "Bố trí đường"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3153332\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BORDER_CTL_PRESETS\">Select a predefined border style to apply.</ahelp>"
-msgstr "<ahelp hid=\"HID_BORDER_CTL_PRESETS\">Chọn một kiểu dáng viền đã xác định cần áp dụng.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3148643\n"
-"5\n"
-"help.text"
-msgid "If you are in a table or spreadsheet, you can also add or remove predefined borders. Use the <emph>Borders</emph> icon on the <emph>Table Bar</emph>."
-msgstr "Trong bảng hay bảng tính, bạn cũng có thể thêm hay gỡ bỏ viền đã xác định sẵn. Hãy dùng biểu tượng <emph>Viền</emph> trên thanh <emph>Bảng</emph>."
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3149575\n"
-"23\n"
-"help.text"
-msgid "Line"
-msgstr "Đường"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3152360\n"
-"24\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_LINESTYLE\">Click the border style that you want to apply. The style is applied to the borders selected in the preview.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_LINESTYLE\">Nhấn vào kiểu dáng viền bạn muốn áp dụng. Kiểu dáng này được áp dụng cho những viền được chọn trong ô xem thử.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3154938\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_LINECOLOR\">Select the line color that you want to use for the selected border(s).</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_LINECOLOR\">Chọn màu đường bạn muốn dùng cho các viền đã chọn.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3150359\n"
-"21\n"
-"help.text"
-msgid "Spacing to contents"
-msgstr "Giãn cách tới nội dung"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3154365\n"
-"22\n"
-"help.text"
-msgid "Specify the amount of space that you want to leave between the border and the contents of the selection."
-msgstr "Ghi rõ khoảng cách bạn muốn để lại giữa viền và nội dung của vùng chọn."
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3147084\n"
-"45\n"
-"help.text"
-msgid "Left"
-msgstr "Trái"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3151176\n"
-"46\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_LEFT\">Enter the distance that you want to have between the left border and the contents of the selection.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_LEFT\">Nhập khoảng cách bạn muốn để lại giữa viền bên trái và nội dung của vùng chọn.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3150650\n"
-"47\n"
-"help.text"
-msgid "Right"
-msgstr "Phải"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3153104\n"
-"48\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_RIGHT\">Enter the distance that you want to have between the right border and the contents of the selection.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_RIGHT\">Nhập khoảng cách bạn muốn để lại giữa viền bên phải và nội dung của vùng chọn.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3150495\n"
-"49\n"
-"help.text"
-msgid "Top"
-msgstr "Trên"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3156212\n"
-"50\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_TOP\">Enter the distance that you want to have between the top border and the contents of the selection.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_TOP\">Nhập khoảng cách bạn muốn thấy giữa viền bên trên và nội dung của vùng chọn.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3150767\n"
-"51\n"
-"help.text"
-msgid "Bottom"
-msgstr "Dưới"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3158410\n"
-"52\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_BOTTOM\">Enter the distance that you want to have between the bottom border and the contents of the selection.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_BOTTOM\">Nhập khoảng cách bạn muốn thấy giữa viền bên dưới và nội dung của vùng chọn.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3155429\n"
-"53\n"
-"help.text"
-msgid "Synchronize"
-msgstr "Đồng bộ hoá"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3154299\n"
-"54\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_BORDER_CB_SYNC\">Applies the same <emph>spacing to contents</emph> setting to all four borders when you enter a new distance.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_BORDER_CB_SYNC\">Áp dụng cùng một thiết lập <emph>Giãn cách tới nội dung</emph> cho cả bốn viền khi bạn nhập khoảng cách mới.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"bm_id3155855\n"
-"help.text"
-msgid "<bookmark_value>shadows; borders</bookmark_value><bookmark_value>borders; shadows</bookmark_value><bookmark_value>margins; shadows</bookmark_value>"
-msgstr "<bookmark_value>bóng; viền</bookmark_value><bookmark_value>viền; bóng</bookmark_value><bookmark_value>lề; bóng</bookmark_value>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3155855\n"
-"31\n"
-"help.text"
-msgid "Shadow style"
-msgstr "Kiểu bóng"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3146975\n"
-"32\n"
-"help.text"
-msgid "You can also apply a shadow effect to borders. For the best results, only apply this effect when all four borders are visible."
-msgstr "Bạn cũng có thể áp dụng cho viền hiệu ứng đổ bóng. Để thu được kết quả đẹp nhất, chỉ áp dụng hiệu ứng này khi cả bốn viền hiện rõ."
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3157309\n"
-"43\n"
-"help.text"
-msgid "Graphics or objects that are anchored to a frame in the document cannot exceed the size of the frame. If you apply a shadow to the borders of an object that fills an entire frame, the size of the object is reduced to display the shadows."
-msgstr "Đồ họa hay đối tượng đã thả neo vào khung trong tài liệu thì không thể vượt quá kích cỡ của khung. Nếu bạn đổ bóng từ các viền của một đối tượng chiếm toàn khung, kích cỡ của đối tượng bị giảm để hiển thị bóng đổ."
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3153728\n"
-"33\n"
-"help.text"
-msgid "Position"
-msgstr "Vị trí"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3153364\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BORDER_CTL_SHADOWS\">Click a shadow style for the selected borders.</ahelp>"
-msgstr "<ahelp hid=\"HID_BORDER_CTL_SHADOWS\">Nhấn vào một kiểu dáng đổ bóng cho các viền đã chọn.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3156444\n"
-"35\n"
-"help.text"
-msgid "Distance"
-msgstr "Khoảng cách"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3156060\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_BORDER:ED_SHADOWSIZE\">Enter the width of the shadow.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_BORDER:ED_SHADOWSIZE\">Nhập bề rộng của bóng.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"hd_id3155307\n"
-"37\n"
-"help.text"
-msgid "Color"
-msgstr "Màu"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_id3146147\n"
-"38\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_SHADOWCOLOR\">Select a color for the shadow.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_SHADOWCOLOR\">Chọn một màu cho bóng.</ahelp>"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_idN10A2B\n"
-"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_idN10A2F\n"
-"help.text"
-msgid "Specifies the properties for the current paragraph or the selected paragraphs."
-msgstr "Ghi rõ các thuộc tính về đoạn văn hiện tại, hay các đoạn văn đã chọn."
-
-#: 05030500.xhp
-msgctxt ""
-"05030500.xhp\n"
-"par_idN10A3A\n"
-"help.text"
-msgid "Merge with next paragraph"
-msgstr "Trộn với đoạn văn sau"
+msgid "Use a <emph>Master Document</emph> to organize complex projects, such as a book. <ahelp hid=\".\">A <emph>Master Document</emph> can contain the individual files for each chapter of a book, as well as a table of contents, and an index.</ahelp>"
+msgstr "Hãy sử dụng một <emph>Tài liệu chủ</emph> để tổ chức dự án phức tạp, v.d. viết cuốn sách. <ahelp hid=\".\">Một <emph>Tài liệu chủ</emph> có khả năng chứa các tập tin riêng cho từng chương của cuốn sách, cũng như mục lục và chỉ mục.</ahelp>"
-#: 05030500.xhp
+#: 01010001.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN10A3E\n"
+"01010001.xhp\n"
+"par_id3149828\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVXPAGE_BORDER:CB_MERGEWITHNEXT\">Merges the border style and the shadow style of the current paragraph with the next paragraph.</ahelp> These styles are only merged if the indent, border, and shadow styles of the next paragraph are the same as the current paragraph. This option is also available for Paragraph Styles."
-msgstr "<ahelp hid=\"svx:CheckBox:RID_SVXPAGE_BORDER:CB_MERGEWITHNEXT\">Trộn kiểu dáng viền và kiểu dáng bóng của đoạn văn hiện tại với đoạn văn kế tiếp.</ahelp> Chỉ có thể trộn với nhau các kiểu dáng này nếu đoạn văn kế tiếp có cùng một kiểu dáng thụt lề, viền và bóng với đoạn văn hiện tại. Tùy chọn này cũng sẵn sàng cho Kiểu dáng Đoạn văn."
+msgid "<link href=\"text/shared/01/02110000.xhp\" name=\"Navigator for Master Documents\">Navigator for Master Documents</link>"
+msgstr "<link href=\"text/shared/01/02110000.xhp\" name=\"Bộ điều hướng tài liệu chủ\">Bộ điều hướng tài liệu chủ</link>"
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN109BA\n"
+"01010100.xhp\n"
+"par_id3148520\n"
+"117\n"
"help.text"
-msgid "Merge adjacent line styles"
-msgstr "Trộn các kiểu đường kề nhau"
+msgid "The <emph>Templates Manager</emph> dialog allows you to manage your templates."
+msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN109BE\n"
+"01010100.xhp\n"
+"par_id3157898\n"
+"118\n"
"help.text"
-msgid "<ahelp hid=\"700793922\">Merges two different border styles of adjacent cells in a Writer table into one border style. This property is valid for a whole table in a Writer document.</ahelp>"
-msgstr "<ahelp hid=\"700793922\">Trộn vào cùng một kiểu dáng viền hai kiểu dáng viền khác nhau của các ô kề nhau trong bảng Writer. Thuộc tính này hợp lệ cho toàn bảng trong tài liệu Writer.</ahelp>"
+msgid "To open the <emph>Templates Manager</emph> dialog, do one of the following:"
+msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN109C1\n"
+"01010100.xhp\n"
+"par_id3156414\n"
+"125\n"
"help.text"
-msgid "The rules can be condensed to the statement that the stronger attribute wins. If, for example, one cell has a red border of 2 point width, and the adjacent cell has a blue border of 3 point width, then the common border between these two cells will be blue with 3 point width."
-msgstr "Quy tắc là thuộc tính mạnh hơn có quyền cao hơn. Chẳng hạ, nếu ô bảng này có viền màu đỏ có bề rộng 2 điểm, và ô kề nhau có viền màu xanh có bề rộng 3 điểm thì viền chung giữa hai ô này là màu viên và có bề rộng 3 điểm."
+msgid "Choose <emph>File - New - Templates</emph>"
+msgstr ""
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"tit\n"
+"01010100.xhp\n"
+"par_id3153114\n"
+"126\n"
"help.text"
-msgid "Comment"
-msgstr "Ghi chú"
+msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N."
+msgstr "Nhấn tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N."
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"bm_id3154100\n"
+"01010100.xhp\n"
+"hd_id3159234\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>comments;inserting/editing/deleting/printing</bookmark_value> <bookmark_value>inserting; comments</bookmark_value> <bookmark_value>editing; comments</bookmark_value> <bookmark_value>deleting;comments</bookmark_value> <bookmark_value>Navigator;comments</bookmark_value> <bookmark_value>printing;comments</bookmark_value> <bookmark_value>records; inserting comments </bookmark_value> <bookmark_value>remarks, see also comments</bookmark_value>"
-msgstr "<bookmark_value>ghi chú;chèn/chỉnh sửa/xoá/in</bookmark_value><bookmark_value>chèn;ghi chú</bookmark_value><bookmark_value>chỉnh sửa; ghi chú</bookmark_value><bookmark_value>xoá;ghi chú</bookmark_value><bookmark_value>Bộ điều hướng;ghi chú</bookmark_value><bookmark_value>in ấn;ghi chú</bookmark_value><bookmark_value>bản ghi; chèn ghi chú </bookmark_value><bookmark_value>bình luận, xem thêm ghi chú</bookmark_value>"
+msgid "Categories"
+msgstr "Loại"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154100\n"
-"1\n"
+"01010100.xhp\n"
+"par_id3157958\n"
+"6\n"
"help.text"
-msgid "Comment"
-msgstr "Chú thích"
+msgid "<ahelp hid=\".\">Categories are shown in the box on the left side of the<emph> Templates and Documents</emph> dialog. Click a category to display the files associated with that category in the <emph>Title </emph>box.</ahelp>"
+msgstr "<ahelp hid=\".\">Các phân loại được hiển thị trong hộp bên trái hộp thoại <emph>Mẫu và Tài liệu</emph>. Nhấn vào một phân loại nào đó để hiển thị trong hộp <emph>Tựa đề</emph> các tập tin liên quan đến nó.</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3151100\n"
-"2\n"
+"01010100.xhp\n"
+"hd_id3149388\n"
+"100\n"
"help.text"
-msgid "<variable id=\"notizbearbeitentext\"><ahelp hid=\".uno:InsertAnnotation\">Inserts a comment.</ahelp></variable>"
-msgstr "<variable id=\"notizbearbeitentext\"><ahelp hid=\".uno:InsertAnnotation\">Chèn một ghi chú.</ahelp></variable>"
+msgid "Title Box"
+msgstr "Hộp Tựa đề"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id9851680\n"
+"01010100.xhp\n"
+"par_id3150355\n"
+"101\n"
"help.text"
-msgid "Inserting comments"
-msgstr "Chèn ghi chú"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">Lists the available templates or documents for the selected category. Select a template or document and, then click <emph>Open</emph>. To preview the document, click the <emph>Preview</emph> button above the box on the right.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">Liệt kê các mẫu hay tài liệu sẵn sàng cho phân loại đã chọn. Hãy chọn một mẫu hay tài liệu nào đó, sau đó nhấn vào cái nút <emph>Mở</emph>. Để xem thử tài liệu, nhấn vào nút <emph>Xem thử</emph> bên trên hộp bên phải.</ahelp>"
-#: 04050000.xhp
-#, fuzzy
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id1830500\n"
+"01010100.xhp\n"
+"hd_id3152996\n"
+"102\n"
"help.text"
-msgid "In Writer, the command <item type=\"menuitem\">Insert - Comment</item> or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+C key combination inserts a comment anchor at the current cursor position. A comment box is shown at the page margin, where you can enter the text of your comment. A line connects anchor and comment box. If a text range is selected, the comment is attached to the text range."
-msgstr "Trong Writer,lệnh<item type=\"menuitem\">Chèn - chú thích</item> hoặc tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+N sẽ chèn vào một đánh dấu ghi chú tại vị trí dấu nhắc văn bản hiện tại. Một hộp ghi chú sẽ được hiển thị bên lề của trang, bạn có thể điền vào những gì cần ghi chú trong hộp này, sẽ có một đường thẳng nối giữa dấu neo và hộp ghi chú."
+msgid "Back"
+msgstr "Lùi"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0915200910571516\n"
+"01010100.xhp\n"
+"par_id3153257\n"
"help.text"
-msgid "In Calc, Draw, and Impress, the command <item type=\"menuitem\">Insert - Comment</item> inserts a comment."
-msgstr "Trong Bảng vẽ, Bảng tính, Trình diễn, lệnh<item type=\"menuitem\">Chèn-Ghi chú</item> chèn một ghi chú."
+msgid "<image id=\"img_id3149784\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149784\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149784\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149784\">Biểu tượng</alt></image>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id1831\n"
+"01010100.xhp\n"
+"par_id3153822\n"
+"103\n"
"help.text"
-msgid "The author name and the date and time of creating this comment is shown at the bottom of the comment box."
-msgstr "Tên của tác giả và ngày giờ tạo ghi chú này được hiển thị ở dưới của hộp ghi chú."
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">Moves back to the previous window in the dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">Trở về cửa sổ trước trong hộp thoại.</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id6718649\n"
+"01010100.xhp\n"
+"hd_id3148685\n"
+"104\n"
"help.text"
-msgid "The comments by different authors get different colors. Choose <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - User Data</item> to enter your name so that it can show up as the comment author."
-msgstr ""
+msgid "Up One Level"
+msgstr "Lên một bậc"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id2929166\n"
+"01010100.xhp\n"
+"par_id3156152\n"
"help.text"
-msgid "Editing comments"
-msgstr "Sửa chú thích"
+msgid "<image id=\"img_id3149762\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149762\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149762\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149762\">Biểu tượng</alt></image>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id5201879\n"
+"01010100.xhp\n"
+"par_id3156024\n"
+"105\n"
"help.text"
-msgid "Every user with write permission to the document can edit and delete comments of all authors."
-msgstr "Mọi người dùng có quyền ghi vào tài liệu văn bản thì có khả năng chỉnh sửa và xoá ghi chú của bất cứ tác giả nào."
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">Moves up one folder level, if available.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">Đi lên một bậc thư mục (nếu có).</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2571794\n"
+"01010100.xhp\n"
+"hd_id3147264\n"
+"106\n"
"help.text"
-msgid "The comment box contains an icon with a down arrow. Click the icon to open a menu with some commands to delete comments."
-msgstr "Hộp ghi chú chứa một biểu tượng có mũi tên chỉ xuống. Nhấn vào biểu tượng này để mở trình đơn chứa một số lệnh để xoá ghi chú."
+msgid "Print"
+msgstr "In"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0522200809383431\n"
+"01010100.xhp\n"
+"par_id3154346\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete the current comment.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá ghi chú hiện tại.</ahelp>"
+msgid "<image id=\"img_id3148663\" src=\"cmd/sc_print.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148663\" src=\"cmd/sc_print.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Biểu tượng</alt></image>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0522200809383485\n"
+"01010100.xhp\n"
+"par_id3150359\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments by this author in the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá mọi ghi chú của tác giả này khỏi tài liệu hiện tại.</ahelp>"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Prints the selected template or document.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">In ấn mẫu hay tài liệu đã chọn..</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0522200809383428\n"
+"01010100.xhp\n"
+"hd_id3149651\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments in the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá mọi ghi chú khỏi tài liệu hiện tại.</ahelp>"
+msgid "Preview"
+msgstr "Xem thử"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id1857051\n"
+"01010100.xhp\n"
+"par_id3148799\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose a command to delete the current comment, or all comments from the same author as the current comment, or all comments in the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn một lệnh để xoá ghi chú hiện tại, hay tất cả các ghi chú của cùng một tác giả với ghi chú hiện tại, hay tất cả các ghi chú trong tài liệu đó.</ahelp>"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Allows you to preview the template or document, as well as view the document properties.</ahelp> To preview the template or document, click the <emph>Preview</emph> icon at the top of the Preview box on the right side of the dialog. To view the properties of the document, click the <emph>Document Properties</emph> icon at the top of the Preview box."
+msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Cho bạn có khả năng xem thử mẫu hay tài liệu, cũng như xem các thuộc tính về tài liệu.</ahelp> Để xem thử mẫu hay tài liệu, nhấn vào biểu tượng <emph>Xem thử</emph> ở đầu hộp Xem Thử bên phải hộp thoại. Để xem các thuộc tính về tài liệu. nhấn vào biểu tượng <emph>Thuộc tính Tài liệu</emph> cũng ở đầu hộp Xem Thử."
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0305200911090684\n"
+"01010100.xhp\n"
+"hd_id3149807\n"
+"108\n"
"help.text"
-msgid "If the comment in a text document was written by another author, there is a Reply command in the context menu. <ahelp hid=\".\">This command inserts a new comment adjacent to the comment to which you want to reply.</ahelp> The comment anchor is the same for both comments. Type your reply text in the new comment. Save and send your document to other authors, then those authors can add replies, too."
-msgstr "Nếu ghi chú trong một tài liệu văn bản là của một tác giả khác, sử dụng lệnh Hồi âm trong trình đơn ngữ cảnh. <ahelp hid=\".\">Lệnh này chèn một ghi chú mới, kề ghi chú bạn muốn hồi âm.</ahelp> Neo ghi chú là giống nhau cho cả hai ghi chú. Gõ văn bản hồi âm của bạn trong ghi chú mới. Lưu và gửi tài liệu của bạn cho những tác giả khác, những tác giả đó cũng có thể thêm hồi âm."
+msgid "Preview"
+msgstr "Xem thử"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0804200803435883\n"
+"01010100.xhp\n"
+"par_id3150741\n"
"help.text"
-msgid "<ahelp hid=\".\">Use <item type=\"menuitem\">View - Comments</item> to show or hide all comments (not available in Calc).</ahelp>"
-msgstr "<ahelp hid=\".\">Use <item type=\"menuitem\">Xem-Ghi chú</item> để hiện thị hoặc ẩn tất cả ghi chú (không có trong bảng tính).</ahelp>"
+msgid "<image id=\"img_id3148451\" src=\"svtools/res/preview_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148451\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148451\" src=\"svtools/res/preview_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148451\">Biểu tượng</alt></image>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0302200901430918\n"
+"01010100.xhp\n"
+"par_id3151043\n"
+"109\n"
"help.text"
-msgid "In the Find & Replace dialog of text documents, you can select to include the comments texts in your searches."
-msgstr "Trong hộp thoại Tìm kiếm và Thay thế của tài liệu văn bản, bạn có thể chọn để bao gồm những văn bản ghi chú trong những tìm kiếm của bạn"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">Allows you to preview the selected template or document.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">Cho bạn có khả năng xem thử mẫu hay tài liệu.</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3445539\n"
+"01010100.xhp\n"
+"hd_id3145606\n"
+"110\n"
"help.text"
-msgid "Navigating from comment to comment in text documents"
-msgstr "Di chuyển từ ghi chú này sang ghi chú khác trong những tài liệu văn bản"
+msgid "Document Properties"
+msgstr "Thuộc tính Tài liệu"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id4271370\n"
+"01010100.xhp\n"
+"par_id3147353\n"
"help.text"
-msgid "When the cursor is inside a comment, you can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Down to jump to the next comment, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Up to jump to the previous comment."
-msgstr "Khi con trỏ chuột ở trong một ghi chú, bạn có thể nhấn tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Down để chuyển tới ghi chú tiếp theo, hoặc nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Up để chuyển về ghi chú trước đó."
+msgid "<image id=\"img_id3153367\" src=\"svtools/res/info_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153367\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153367\" src=\"svtools/res/info_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153367\">Biểu tượng</alt></image>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2116153\n"
+"01010100.xhp\n"
+"par_id3153210\n"
+"12\n"
"help.text"
-msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor. You can also use the small Navigation window below the vertical scrollbar to jump from one comment anchor to the next comment anchor."
-msgstr "Khi con trỏ nằm bên trong đoạn văn thông thường, hãy bấm phím nói trên để nhảy tới neo ghi chú kế tiếp hay về neo ghi chú trước. Bạn cũng có thể sử dụng cửa sổ <emph>điều hướng</emph> nhỏ bên dưới thanh cuộn nằm dọc, để nhảy từ neo ghi chú này sang neo ghi chú khác."
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">Displays the properties for the selected template or document.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">Hiển thị các thuộc tính về tài liệu hay mẫu đã chọn.</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id5381328\n"
+"01010100.xhp\n"
+"hd_id3153142\n"
+"111\n"
"help.text"
-msgid "You can also open the Navigator to see a list of all comments. Right-click a comment name in the Navigator to edit or delete the comment."
-msgstr "Bạn cũng có thể mở Bộ điều hướng để xem danh sách tất cả các ghi chú. Nhấn-phải vào một tên ghi chú trong Bộ điều hướng để chỉnh sửa hay xoá ghi chú đó."
+msgid "Organize"
+msgstr "Tổ chức"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id5664235\n"
+"01010100.xhp\n"
+"par_id3156441\n"
+"112\n"
"help.text"
-msgid "Printing comments"
-msgstr "In ghi chú"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">Adds, removes, or rearranges templates or sample documents.</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">Thêm, gỡ bỏ hay sắp đặt lại các mẫu hay tài liệu thí dụ.</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2254402\n"
+"01010100.xhp\n"
+"hd_id3149483\n"
+"113\n"
"help.text"
-msgid "To change the printing option for comments for all your text documents, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME Writer - Print</item>."
-msgstr ""
+msgid "Edit"
+msgstr "Sửa"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id0915200910571612\n"
+"01010100.xhp\n"
+"par_id3154470\n"
+"114\n"
"help.text"
-msgid "Comments in spreadsheets"
-msgstr "Những ghi chú trong bảng tính"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected template for editing.</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Mở mẫu đã chọn để chỉnh sửa.</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3166460\n"
-"6\n"
+"01010100.xhp\n"
+"hd_id3147428\n"
+"115\n"
"help.text"
-msgid "When you attach a comment to a cell, a callout appears where you can enter your text. A small square in the upper right corner of a cell marks the position of a comment. To display the comment permanently, right-click the cell, and choose <emph>Show Comment</emph>."
-msgstr "Khi bạn đính một ghi chú kèm theo một ô, chương trình hiển thị một khung thoại để bạn có thể gõ đoạn văn vào. Một hình vuông nhỏ ở góc trên bên phải của ô thì ngụ ý vị trí của ghi chú. Để luôn hiển thị ghi chú, nhấn-phải vào ô đó, sau đó chọn lệnh <emph>Hiện ghi chú</emph>."
+msgid "Open"
+msgstr "Mở"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id8336741\n"
+"01010100.xhp\n"
+"par_id3148617\n"
+"116\n"
"help.text"
-msgid "To change the object properties of a comment, for example the background color, choose <emph>Show Comment</emph> as above, then right-click the comment (do not double-click the text)."
-msgstr "Để thay đổi các thuộc tính đối tượng của một ghi chú nào đó, ví dụ màu nền, hãy chọn lệnh <emph>Hiện ghi chú</emph> như nói trên, sau đó nhấn-phải vào ghi chú (không nhấn đôi vào đoạn văn của ghi chú)."
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected document or creates a document based on the selected template.</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Mở tài liệu đã chọn, hoặc tạo một tài liệu dựa vào mẫu đã chọn.</ahelp>"
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3155390\n"
-"7\n"
+"01010100.xhp\n"
+"par_id3155306\n"
+"98\n"
"help.text"
-msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, right-click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
+msgid "To add another folder to the template path, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] - Paths</emph></link>, and then enter the path."
msgstr ""
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"par_idN107A1\n"
-"help.text"
-msgid "To change the position or size of a comment, drag a border or corner of the comment."
-msgstr "Để thay đổi vị trí hay kích cỡ của một ghi chú nào đó, kéo một viền hay góc của nó."
-
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"par_id9499496\n"
-"help.text"
-msgid "To delete a comment, right-click the cell, then choose <emph>Delete Comment</emph>."
-msgstr "Để xoá một ghi chú nào đó, nhấn-phải vào ô đó, sau đó chọn lệnh <emph>Xoá ghi chú</emph>."
-
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"par_id2036805\n"
-"help.text"
-msgid "You can also right-click a comment name in the Navigator window to choose some editing commands."
-msgstr "Bạn cũng có thể nhấn-phải vào một tên ghi chú trong cửa sổ Bộ điều hướng, để chọn một số lệnh chỉnh sửa."
-
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"par_id3153716\n"
-"8\n"
-"help.text"
-msgid "To set the printing options for comments in your spreadsheet, choose <emph>Format - Page</emph>, and then click the <emph>Sheet</emph> tab."
-msgstr "Để đặt các tùy chọn in ấn cho các ghi chú trong bảng tính, chọn lệnh trình đơn <emph>Định dạng > Trang</emph>, sau đó nhấn vào thẻ<emph>Bảng</emph>."
-
-#: 04050000.xhp
+#: 01010100.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2419507\n"
+"01010100.xhp\n"
+"par_id3149379\n"
"help.text"
-msgid "In Impress, you can choose to use the Notes view to write a page of notes for every slide. Additionally, you can insert comments to your slides."
-msgstr "Trong trình diễn, bạn có thể chọn để sử dụng xem Lưu ý để viết một trang lưu ý cho mỗi tờ chiếu. Thêm vào đó, bạn có thể chèn ghi chú cho những tờ chiếu của bạn."
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"File properties\">File properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Thuộc tính tập tin\">Thuộc tính tập tin</link>"
#: 01010200.xhp
msgctxt ""
@@ -1414,5678 +894,4383 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/labels.xhp\" name=\"Creating labels\">Creating labels</link>"
msgstr "<link href=\"text/shared/guide/labels.xhp\" name=\"Tạo nhãn\">Tạo nhãn</link>"
-#: 05250600.xhp
+#: 01010201.xhp
msgctxt ""
-"05250600.xhp\n"
+"01010201.xhp\n"
"tit\n"
"help.text"
-msgid "To Background"
-msgstr "Về nền"
+msgid "Labels"
+msgstr "Nhãn"
-#: 05250600.xhp
+#: 01010201.xhp
msgctxt ""
-"05250600.xhp\n"
-"hd_id3146959\n"
+"01010201.xhp\n"
+"hd_id3149987\n"
"1\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\" name=\"To Background\">To Background</link></variable>"
-msgstr "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\" name=\"Về nền\">Về nền</link></variable>"
+msgid "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">Labels</link>"
+msgstr "<link href=\"text/shared/01/01010201.xhp\" name=\"Nhãn\">Nhãn</link>"
-#: 05250600.xhp
+#: 01010201.xhp
msgctxt ""
-"05250600.xhp\n"
-"par_id3146902\n"
+"01010201.xhp\n"
+"par_id3152952\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetObjectToBackground\">Moves the selected object behind text.</ahelp>"
-msgstr "<ahelp hid=\".uno:SetObjectToBackground\">Hạ thấp đối tượng đã chọn xuống bên dưới văn bản.</ahelp>"
-
-#: 05250600.xhp
-msgctxt ""
-"05250600.xhp\n"
-"par_id3148731\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Geometry"
-msgstr "Dạng hình"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"hd_id3149551\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\">Geometry</link>"
-msgstr "<link href=\"text/shared/01/05350200.xhp\" name=\"Dạng hình\">Dạng hình</link>"
+msgid "<ahelp hid=\"HID_LAB_LAB\">Specify the label text and choose the paper size for the label.</ahelp>"
+msgstr "<ahelp hid=\"HID_LAB_LAB\">Hãy ghi rõ chuỗi cần hiển thị trên nhãn, và chọn kích cỡ tờ giấy sẽ chứa các nhãn.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150008\n"
-"2\n"
+"01010201.xhp\n"
+"hd_id3158397\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_GEO\">Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose <emph>Convert - To 3D</emph>, or <emph>Convert - To 3D Rotation Object</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_GEO\">Điều chỉnh hỉnh của đối tượng ba chiều (3D) đã chọn. Chỉ có thể sửa đổi hình của đối tượng ba chiều đã được tạo bằng cách chuyển đổi đối tượng hai chiều (2D). Để chuyển đổi đối tượng hai chiều sang ba chiều, lựa chọn đối tượng, nhấn chuột phải, sau đó chọn lệnh <emph>Chuyển đổi > Sang 3D</emph>, hay <emph>Chuyển đổi > Sang đối tượng xoay 3D</emph>.</ahelp>"
+msgid "Inscription"
+msgstr "Câu viết"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3148538\n"
+"01010201.xhp\n"
+"par_id3154350\n"
"4\n"
"help.text"
-msgid "Geometry"
-msgstr "Dạng hình"
+msgid "Enter or insert the text that you want to appear on the label(s)."
+msgstr "Nhập hay chèn đoạn bạn muốn thấy trên mỗi nhãn."
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3153662\n"
+"01010201.xhp\n"
+"hd_id3147294\n"
"5\n"
"help.text"
-msgid "Define the shape properties for the selected 3D object."
-msgstr "Xác định các thuộc tính hình về đối tượng 3D đã chọn."
+msgid "Label text"
+msgstr "Văn bản nhãn"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149812\n"
-"12\n"
+"01010201.xhp\n"
+"par_id3150838\n"
+"6\n"
"help.text"
-msgid "Rounded edges"
-msgstr "Cạnh tròn"
+msgid "<ahelp hid=\"SW_MULTILINEEDIT_TP_LAB_LAB_EDT_WRITING\">Enter the text that you want to appear on the label. You can also insert a database field.</ahelp>"
+msgstr "<ahelp hid=\"SW_MULTILINEEDIT_TP_LAB_LAB_EDT_WRITING\">Nhập đoạn bạn muốn thấy trên mỗi nhãn. Cũng có thể chèn địa điểm của một trường cơ sở dữ liệu.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3154142\n"
-"13\n"
+"01010201.xhp\n"
+"hd_id3150603\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL\">Enter the amount by which you want to round the corners of the selected 3D object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL\">Nhập hệ số theo đó bạn muốn làm tròn các góc của đối tượng 3D đã chọn.</ahelp>"
+msgid "Address"
+msgstr "Địa chỉ"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3155585\n"
-"14\n"
+"01010201.xhp\n"
+"par_id3153089\n"
+"8\n"
"help.text"
-msgid "Scaled depth"
-msgstr "Độ sâu tỷ lệ"
+msgid "<ahelp hid=\"SW_CHECKBOX_TP_LAB_LAB_BOX_ADDR\">Creates a label with your return address. Text that is currently in the <emph>Label text</emph> box is overwritten.</ahelp>"
+msgstr "<ahelp hid=\"SW_CHECKBOX_TP_LAB_LAB_BOX_ADDR\">Tạo một nhãn hiển thị địa chỉ trả về của bạn. Đoạn hiện thời nằm trong hộp <emph>Văn bản nhãn</emph> thì bị ghi đè.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3146137\n"
-"15\n"
+"01010201.xhp\n"
+"par_id3155555\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_BACKSCALE\">Enter the amount by which to increase or decrease the area of the front side of the selected 3D object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_BACKSCALE\">Nhập hệ số theo đó cần tăng hay giảm diện tích của mặt trước của đối tượng 3D đã chọn.</ahelp>"
+msgid "To change your return address, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\">%PRODUCTNAME</link></emph>, and then click on the <emph>User Data</emph> tab."
+msgstr ""
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3150466\n"
-"16\n"
+"01010201.xhp\n"
+"hd_id3147557\n"
+"10\n"
"help.text"
-msgid "Rotation angle"
-msgstr "Góc xoay"
+msgid "Database"
+msgstr "Cơ sở dữ liệu"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3153320\n"
-"17\n"
+"01010201.xhp\n"
+"par_id3148620\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_END_ANGLE\">Enter the angle in degrees to rotate the selected 3D rotation object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_END_ANGLE\">Nhập góc theo độ cần xoay đối tượng xoay 3D đã chọn.</ahelp>"
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_DATABASE\">Select the database that you want to use as the data source for your label. </ahelp>"
+msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_DATABASE\">Chọn cơ sở dữ liệu bạn muốn dùng làm nguồn cho nhãn. </ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149276\n"
-"18\n"
+"01010201.xhp\n"
+"hd_id3149388\n"
+"12\n"
"help.text"
-msgid "Depth"
-msgstr "Độ sâu"
+msgid "Table"
+msgstr "Bảng"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3153252\n"
-"19\n"
+"01010201.xhp\n"
+"par_id3149827\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DEPTH\">Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DEPTH\">Nhập độ sâu khối lồi cho đối tượng 3D đã chọn. Tùy chọn này không sẵn sàng cho đối tượng xoay 3D.</ahelp>"
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_TABLE\">Select the database table containing the field(s) that you want to use in your label.</ahelp>"
+msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_TABLE\">Chọn bảng cơ sở dữ liệu chứa (các) trường bạn muốn dùng để tạo nhãn.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3159343\n"
-"6\n"
+"01010201.xhp\n"
+"hd_id3155391\n"
+"14\n"
"help.text"
-msgid "Segments"
-msgstr "Đoạn"
+msgid "Database field"
+msgstr "Trường cơ sở dữ liệu"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3155388\n"
-"7\n"
+"01010201.xhp\n"
+"par_id3149750\n"
+"15\n"
"help.text"
-msgid "You can change the number of segments that are used to draw a 3D rotation object."
-msgstr "Bạn có thể thay đổi số đoạn dùng để vẽ mỗi đối tượng xoay 3D."
+msgid "<ahelp hid=\"SW_IMAGEBUTTON_TP_LAB_LAB_BTN_INSERT\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
+msgstr "<ahelp hid=\"SW_IMAGEBUTTON_TP_LAB_LAB_BTN_INSERT\">Chọn trường cơ sở dữ liệu thích hợp, sau đó nhấn vào mũi tên bên trái hộp này để chèn trường này vào hộp <emph>Văn bản nhãn</emph>.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3152909\n"
-"8\n"
+"01010201.xhp\n"
+"par_id3152780\n"
+"16\n"
"help.text"
-msgid "Horizontal"
-msgstr "Nằm ngang"
+msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
+msgstr "Tên của cơ sở dữ liệu nằm giữa một cặp dấu ngoặc trong hộp <emph>Văn bản nhãn</emph>. Bạn cũng có thể liệt kê nhiều trường cơ sở dữ liệu, định giới bằng dấu cách. Bấm phím <item type=\"keycode\">Enter</item> để chèn một trường cơ sở dữ liệu vào một dòng mới."
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150943\n"
-"9\n"
+"01010201.xhp\n"
+"hd_id3147653\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_HORIZONTAL\">Enter the number of horizontal segments to use in the selected 3D rotation object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_HORIZONTAL\">Nhập số đoạn nằm ngang cần dùng để tạo đối tượng xoay 3D đã chọn.</ahelp>"
+msgid "Format"
+msgstr "Định dạng"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149416\n"
-"10\n"
+"01010201.xhp\n"
+"par_id3149762\n"
+"18\n"
"help.text"
-msgid "Vertical"
-msgstr "Thẳng đứng"
+msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab.."
+msgstr "Bạn có thể chọn một định dạng đã xác định sẵn, hoặc một định dạng kích cỡ bạn ghi rõ trên thẻ <emph>Định dạng</emph>."
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3151245\n"
-"11\n"
+"01010201.xhp\n"
+"hd_id3154143\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_VERTICAL\">Enter the number of vertical segments to use in the selected 3D rotation object</ahelp>"
-msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_VERTICAL\">Nhập số đoạn thẳng đứng cần dùng để tạo đối tượng xoay 3D đã chọn.</ahelp>"
+msgid "Continuous"
+msgstr "Liên tục"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3153626\n"
+"01010201.xhp\n"
+"par_id3151339\n"
"20\n"
"help.text"
-msgid "Normals"
-msgstr "Pháp tuyến"
+msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_CONT\">Prints labels on continuous paper.</ahelp>"
+msgstr "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_CONT\">In các nhãn trên giấy cuộn liên tục.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150822\n"
+"01010201.xhp\n"
+"hd_id3150131\n"
"21\n"
"help.text"
-msgid "Allows you to modify the rendering style of the 3D surface."
-msgstr "Cho phép bạn sửa đổi kiểu dáng vẽ của mặt 3D."
+msgid "Sheet"
+msgstr "Tờ giấy"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149046\n"
+"01010201.xhp\n"
+"par_id3159167\n"
"22\n"
"help.text"
-msgid "Object-Specific"
-msgstr "Đặc trưng cho đối tượng"
+msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_SHEET\">Prints labels on individual sheets.</ahelp>"
+msgstr "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_SHEET\">In các nhãn trên mỗi tờ giấy riêng.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3149670\n"
+"01010201.xhp\n"
+"hd_id3156327\n"
"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ\">Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ\">Vẽ mặt 3D tùy theo hình của đối tượng. Thí dụ, hình tròn được vẽ với mặt hình tròn.</ahelp>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3152811\n"
-"help.text"
-msgid "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150865\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150865\">Biểu tượng</alt></image>"
+msgid "Brand"
+msgstr "Tên hãng"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3151211\n"
+"01010201.xhp\n"
+"par_id3150466\n"
"24\n"
"help.text"
-msgid "Object-Specific"
-msgstr "Đặc trưng cho đối tượng"
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_MAKE\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
+msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_MAKE\">Chọn tên hãng của kiểu giấy bạn muốn sử dụng.</ahelp> Mỗi tên hãng có các định dạng kích cỡ riêng."
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3153797\n"
+"01010201.xhp\n"
+"hd_id3153821\n"
"25\n"
"help.text"
-msgid "Flat"
-msgstr "Phẳng"
+msgid "Type"
+msgstr "Kiểu"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3146874\n"
+"01010201.xhp\n"
+"par_id3149235\n"
"26\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT\">Renders the 3D surface as polygons.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT\">Vẽ mặt 3D dưới dạng hình đa giác.</ahelp>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3157962\n"
-"help.text"
-msgid "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3154068\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3154068\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_TYPE\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
+msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_TYPE\">Chọn định dạng kích cỡ bạn muốn ùng. Các định dạng sẵn sàng thì phụ thuộc vào mục bạn chọn trong danh sách các <emph>Tên hãng</emph>. Muốn sử dụng một định dạng nhãn riêng thì chọn mục <emph>[Người dùng]</emph>, sau đó nhấn vào thẻ <link href=\"text/shared/01/01010202.xhp\" name=\"Định dạng\"><emph>Định dạng</emph></link> để xác định định dạng.</ahelp>"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3145202\n"
+"01010201.xhp\n"
+"hd_id3153828\n"
"27\n"
"help.text"
-msgid "Flat"
-msgstr "Phẳng"
+msgid "Info"
+msgstr "Thông tin"
-#: 05350200.xhp
+#: 01010201.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3147228\n"
+"01010201.xhp\n"
+"par_id3152349\n"
"28\n"
"help.text"
-msgid "Spherical"
-msgstr "Hình cầu"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3150288\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE\">Renders a smooth 3D surface.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE\">Vẽ mặt 3D mịn.</ahelp>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3148923\n"
-"help.text"
-msgid "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149807\">Biểu tượng</alt></image>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3149983\n"
-"30\n"
-"help.text"
-msgid "Spherical"
-msgstr "Hình cầu"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"hd_id3153056\n"
-"31\n"
-"help.text"
-msgid "Invert Normals"
-msgstr "Đảo pháp tuyến"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3145785\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT\">Inverts the light source.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT\">Đảo ngược nguồn ánh sáng.</ahelp>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3152940\n"
-"help.text"
-msgid "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151116\">Biểu tượng</alt></image>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3156061\n"
-"33\n"
-"help.text"
-msgid "Invert Normals"
-msgstr "Đảo pháp tuyến"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"hd_id3152417\n"
-"34\n"
-"help.text"
-msgid "Double-sided Illumination"
-msgstr "Chiếu sáng mặt đôi"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3163820\n"
-"35\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING\">Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the <emph>Invert Normals</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING\">Chiếu sáng đối tượng từ bên trong và bên ngoài. Để dùng nguồn ánh sáng chung quanh, bật tùy chọn này, sau đó nhấn vào nút <emph>Đảo pháp tuyến</emph>.</ahelp>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3157309\n"
-"help.text"
-msgid "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Biểu tượng</alt></image>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3154986\n"
-"36\n"
-"help.text"
-msgid "Double-sided illumination"
-msgstr "Chiếu sáng mặt đôi"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"hd_id3153190\n"
-"37\n"
-"help.text"
-msgid "Double-Sided"
-msgstr "Mặt đôi"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3154692\n"
-"38\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED\">Closes the shape of a 3D object that was created by extruding a freeform line (<emph>Convert - To 3D</emph>).</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED\">Đóng hình của một đối tượng 3D đã được tạo bằng cách đẩy ra một đường dạng tự do (<emph>Chuyển đổi > Sang 3D</emph>).</ahelp>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3150686\n"
-"help.text"
-msgid "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152460\">Biểu tượng</alt></image>"
-
-#: 05350200.xhp
-msgctxt ""
-"05350200.xhp\n"
-"par_id3155307\n"
-"39\n"
-"help.text"
-msgid "Double-Sided"
-msgstr "Mặt đôi"
+msgid "The paper type and the dimensions of the label are displayed at the bottom of the <emph>Format</emph> area."
+msgstr "Kiểu của giấy và các chiều của nhãn được hiển thị ở đáy của vùng <emph>Định dạng</emph>."
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
+"01010202.xhp\n"
"tit\n"
"help.text"
-msgid "Append libraries"
-msgstr "Phụ thêm thư viện"
+msgid "Format"
+msgstr "Định dạng"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3158442\n"
+"01010202.xhp\n"
+"hd_id3151260\n"
"1\n"
"help.text"
-msgid "Append libraries"
-msgstr "Phụ thêm thư viện"
+msgid "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">Format</link>"
+msgstr "<link href=\"text/shared/01/01010202.xhp\" name=\"Định dạng\">Định dạng</link>"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3155271\n"
+"01010202.xhp\n"
+"par_id3153255\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"\">Locate the <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
-msgstr "<ahelp hid=\"\">Tìm thư viện Basic <item type=\"productname\">%PRODUCTNAME</item> mà bạn muốn thêm vào danh sách hiện thời, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
+msgid "<ahelp hid=\"HID_LAB_FMT\">Set paper formatting options.</ahelp>"
+msgstr "<ahelp hid=\"HID_LAB_FMT\">Đặt các tùy chọn về định dạng giấy.</ahelp>"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3152952\n"
+"01010202.xhp\n"
+"hd_id3159194\n"
"3\n"
"help.text"
-msgid "File name:"
-msgstr "Tên tập tin:"
+msgid "Horizontal pitch"
+msgstr "Dốc nằm ngang"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3152876\n"
+"01010202.xhp\n"
+"par_id3154186\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append. You can also select a library from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Nhập tên của hay đường dẫn đến thư viện bạn muốn phụ thêm. Cũng có thể chọn một thư viện trong danh sách.</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HDIST\">Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here.</ahelp>"
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HDIST\">Hiển thị khoảng cách giữa các cạnh bên trái của hai nhãn hay danh thiếp kề nhau. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3147294\n"
+"01010202.xhp\n"
+"hd_id3155555\n"
"5\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "Vertical pitch"
+msgstr "Dốc thẳng đứng"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3143272\n"
+"01010202.xhp\n"
+"par_id3152425\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_VDIST\">Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here.</ahelp>"
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_VDIST\">Hiển thị khoảng cách giữa cạnh bên trên của một nhãn hay danh thiếp, và cạnh bên trên của nhãn hay danh thiếp đúng bên dưới. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
+
+#: 01010202.xhp
+msgctxt ""
+"01010202.xhp\n"
+"hd_id3147399\n"
"7\n"
"help.text"
-msgid "Insert as reference (read-only)"
-msgstr "Chèn dạng tham chiếu (chỉ đọc)"
+msgid "Width"
+msgstr "Bề rộng"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3154350\n"
+"01010202.xhp\n"
+"par_id3147576\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Thêm thư viện đã chọn theo định dạng tập tin chỉ đọc (không thể ghi vào hay thay đổi bằng bất cứ cách nào). Thư viện này được nạp lại mỗi lần bạn khởi chạy chương trình <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_WIDTH\">Displays the width for the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_WIDTH\">Hiển thị bề rộng của nhãn hay danh thiếp. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3154788\n"
+"01010202.xhp\n"
+"hd_id3150774\n"
"9\n"
"help.text"
-msgid "Replace existing libraries"
-msgstr "Thay thế thư viện đã có"
+msgid "Height"
+msgstr "Bề cao"
-#: 06130500.xhp
+#: 01010202.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3154894\n"
+"01010202.xhp\n"
+"par_id3149827\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Thay thế một thư viện cùng tên với thư viện hiện thời.</ahelp>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print"
-msgstr "In"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"bm_id3154621\n"
-"help.text"
-msgid "<bookmark_value>printing; documents</bookmark_value><bookmark_value>documents; printing</bookmark_value><bookmark_value>text documents; printing</bookmark_value><bookmark_value>spreadsheets; printing</bookmark_value><bookmark_value>presentations; print menu</bookmark_value><bookmark_value>drawings; printing</bookmark_value><bookmark_value>choosing printers</bookmark_value><bookmark_value>printers; choosing</bookmark_value><bookmark_value>print area selection</bookmark_value><bookmark_value>selecting; print areas</bookmark_value><bookmark_value>pages; selecting one to print</bookmark_value><bookmark_value>printing; selections</bookmark_value><bookmark_value>printing; copies</bookmark_value><bookmark_value>copies; printing</bookmark_value><bookmark_value>spoolfiles with Xprinter</bookmark_value>"
-msgstr "<bookmark_value>in ấn; tài liệu</bookmark_value><bookmark_value>tài liệu; in ấn</bookmark_value><bookmark_value>tài liệu văn bản; in ấn</bookmark_value><bookmark_value>bảng tính; in ấn</bookmark_value><bookmark_value>trình diễn; trình đơn In</bookmark_value><bookmark_value>bản vẽ; in ấn</bookmark_value><bookmark_value>chọn máy in</bookmark_value><bookmark_value>máy in; chọn</bookmark_value><bookmark_value>chọn vùng cần in</bookmark_value><bookmark_value>chọn; vùng cần in</bookmark_value><bookmark_value>trang; chọn trang cần in</bookmark_value><bookmark_value>in ấn; vùng chọn</bookmark_value><bookmark_value>in ấn; bản sao</bookmark_value><bookmark_value>bản sao; in ấn</bookmark_value><bookmark_value>tập tin ống dẫn với Xprinter</bookmark_value>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id3154621\n"
-"1\n"
-"help.text"
-msgid "Print"
-msgstr "In"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id3146946\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document.</ahelp></variable> The printing options can vary according to the printer and the operating system that you use."
-msgstr "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">In ấn tài liệu hiện tại, vùng chọn hiện tại, hay những trang bạn xác định.</ahelp></variable> Các tùy chọn in có thể biến đổi tùy theo máy in và hệ điều hành bạn dùng."
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912284853\n"
-"help.text"
-msgid "The Print dialog consists of three main parts: A preview with navigation buttons, several tab pages with control elements specific to the current document type, and the Print, Cancel, and Help buttons."
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200901193992\n"
-"help.text"
-msgid "If you just want to know how to print your document, click any of the following links."
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531416\n"
-"help.text"
-msgid "<emph>Printing text documents:</emph>"
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531487\n"
-"help.text"
-msgid "<emph>Printing spreadsheets:</emph>"
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531410\n"
-"help.text"
-msgid "<emph>Printing presentations:</emph>"
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531449\n"
-"help.text"
-msgid "<emph>General printing:</emph>"
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912284952\n"
-"help.text"
-msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open Tools - Options - %PRODUCTNAME (application name) - Print."
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id3156080\n"
-"41\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for text documents, choose <link href=\"text/shared/optionen/01040400.xhp\" name=\"Tools - Options - Writer - Print\"><emph>Tools - Options - %PRODUCTNAME Writer - Print</emph></link>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để đặt các tùy chọn <item type=\"productname\">%PRODUCTNAME</item> mặc định cho các tài liệu văn bản, chọn mục trình đơn <link href=\"text/shared/optionen/01040400.xhp\" name=\"Công cụ > Tùy chọn > Writer > In\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Writer > In</emph></link>. </caseinline></switchinline>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_idN1099E\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for spreadsheet documents, choose <link href=\"text/shared/optionen/01060700.xhp\" name=\"Tools - Options - Calc - Print\"><emph>Tools - Options - %PRODUCTNAME Calc - Print</emph></link>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Để đặt các tùy chọn <item type=\"productname\">%PRODUCTNAME</item> mặc định cho các tài liệu bảng tính, chọn mục trình đơn <link href=\"text/shared/optionen/01060700.xhp\" name=\"Công cụ > Tùy chọn > Calc > In\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > In</emph></link>. </caseinline></switchinline>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_idN109CD\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">To set the default <item type=\"productname\">%PRODUCTNAME</item>printer options for presentation documents, choose <link href=\"text/shared/optionen/01070400.xhp\" name=\"Tools - Options - Impress - Print\"><emph>Tools - Options - %PRODUCTNAME Impress - Print</emph></link>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Để đặt các tùy chọn <item type=\"productname\">%PRODUCTNAME</item> mặc định cho các tài liệu trình diễn, chọn mục trình đơn <link href=\"text/shared/optionen/01070400.xhp\" name=\"Công cụ > Tùy chọn > Impress > In\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Impress > In</emph></link>. </caseinline></switchinline>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200901194137\n"
-"help.text"
-msgid "Press Shift+F1 or choose <item type=\"menuitem\">Help - What's This?</item> and point to any control element in the Print dialog to see an extended help text."
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912284914\n"
-"help.text"
-msgid "Preview"
-msgstr "Xem thử"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id081820091228505\n"
-"help.text"
-msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285056\n"
-"help.text"
-msgid "General"
-msgstr "Chung"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285064\n"
-"help.text"
-msgid "On the General tab page, you find the most important control elements for printing. You can define which contents of your document are to be printed. You can select the printer and open the printer settings dialog."
-msgstr ""
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id2\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print colors and objects that are inserted to the background of the page (Format - Page - Background).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ nếu nền của đối tượng đã chọn là trong suốt hoặc mờ đục.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id4\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphics and drawings or OLE objects of your text document are printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ nếu nền của đối tượng đã chọn là trong suốt hoặc mờ đục.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id6\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text that is marked as hidden.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào biểu tượng này để duyệt qua các khung văn bản.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id8\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để in các bộ giữ chỗ kiểu văn bản. Tắt thì để lại các bộ giữ chỗ kiểu văn bản còn trống trong bản in.</ahelp><link href=\"text/swriter/01/04090003.xhp\">Bộ giữ chỗ kiểu văn bản</link> là trường."
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id10\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the form control fields of the text document are printed.</ahelp>"
-msgstr "<ahelp hid=\"SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_CTRLFLD\">Ghi rõ có nên in điều khiển biểu mẫu của tài liệu văn bản, hay không.</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HEIGHT\">Displays the height for the label or business card. If you are defining a custom format, enter a value here.</ahelp>"
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HEIGHT\">Hiển thị bề cao của nhãn hay danh thiếp. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id12\n"
+"01010202.xhp\n"
+"hd_id3149182\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to always print text in black.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
+msgid "Left margin"
+msgstr "Lề trái"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id14\n"
+"01010202.xhp\n"
+"par_id3154823\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này thì in các trang trắng đã được chèn tự động. Có ích nếu bạn in mặt đôi. Chẳng hạn, trong cuốn sách, một kiểu dáng đoạn văn « Chương » nào đó đã được đặt để bắt đầu luôn luôn với trang có số lẻ. Trang trước kết thúc trên trang lẻ thì %PRODUCTNAME chèn một trang trắng có số chẵn, để làm cho trang kế tiếp bắt đầu trên trang lẻ. Tùy chọn này điều khiển có nên in trang trắng hay không.</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_LEFT\">Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_LEFT\">Hiển thị khoảng cách giữa cạnh bên trái của trang và cạnh bên trái của nhãn hay danh thiếp thứ nhất trên trang. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id16\n"
+"01010202.xhp\n"
+"hd_id3156346\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
+msgid "Upper margin"
+msgstr "Lề trên"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id18\n"
+"01010202.xhp\n"
+"par_id3150355\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_UPPER\">Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_UPPER\">Hiển thị khoảng cách giữa cạnh bên trên của trang và cạnh bên trên của nhãn hay danh thiếp thứ nhất trên trang. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id20\n"
+"01010202.xhp\n"
+"hd_id3147573\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether you want the name of the document to be included in the printout.</ahelp>"
-msgstr "<ahelp hid=\"STARMATH_CHECKBOX_RID_PRINTOPTIONPAGE_CB_TITLEROW\">Ghi rõ có nên bao gồm tựa đề của tài liệu trong bản in, hay không.</ahelp>"
+msgid "Columns"
+msgstr "Cột"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id22\n"
+"01010202.xhp\n"
+"par_id3153252\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to include the contents of the Commands window at the bottom of the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nội dung trong ô sẽ được đặt tại phần dưới ô.</ahelp>"
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_COLUMNS\">Enter the number of labels or business cards that you want to span the width of the page.</ahelp>"
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_COLUMNS\">Nhập số nhãn hay danh thiếp bạn muốn thấy nằm qua toàn bề rộng của trang.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id24\n"
+"01010202.xhp\n"
+"hd_id3154143\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies a thin border to the formula area in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Canh lề nội dung của ô theo bên phải ô.</ahelp>"
+msgid "Rows"
+msgstr "Hàng"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id26\n"
+"01010202.xhp\n"
+"par_id3145119\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the formula without adjusting the current font size.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Căn chuẩn vị trí của bảng ở trong trang hay trình diễn.</ahelp>"
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_ROWS\">Enter the number of labels or business cards that you want to span the height of the page.</ahelp>"
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_ROWS\">Nhập số nhãn hay danh thiếp bạn muốn thấy nằm qua toàn bề cao của trang.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id28\n"
+"01010202.xhp\n"
+"hd_id3147336\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Adjusts the formula to the page format used in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị chú giải bên trái đồ thị.</ahelp>"
+msgid "Save"
+msgstr "Lưu"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id30\n"
+"01010202.xhp\n"
+"par_id3156152\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xác định chiều cao của đối tượng đã chọn.</ahelp>"
+msgid "<ahelp hid=\"SW_PUSHBUTTON_TP_LAB_FMT_PB_SAVE\">Saves the current label or business card format.</ahelp>"
+msgstr "<ahelp hid=\"SW_PUSHBUTTON_TP_LAB_FMT_PB_SAVE\">Lưu định dạng hiện thời của nhãn hay danh thiếp.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id32\n"
+"01010202.xhp\n"
+"hd_id3146773\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xác định chiều cao của đối tượng đã chọn.</ahelp>"
+msgid "Save Label Format"
+msgstr "Lưu định dạng nhãn"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id34\n"
+"01010202.xhp\n"
+"hd_id3154897\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If checked empty pages that have no cell contents or draw objects are not printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều ngang trên tờ giấy được in ấn.</ahelp>"
+msgid "Brand"
+msgstr "Tên hãng"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id36\n"
+"01010202.xhp\n"
+"par_id3155421\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For printers with multiple trays this option specifies whether the paper tray used is specified by the system settings of the printer.</ahelp>"
-msgstr "<ahelp hid=\"SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP\">Đối với máy in có nhiều khay, tùy chọn <emph>Khay giấy từ thiết lập máy in</emph> cho biết khay giấy được dùng là khay giấy hệ thống chọn lúc thiết lập máy in .</ahelp>"
+msgid "<ahelp hid=\"SW_COMBOBOX_DLG_SAVE_LABEL_CB_MAKE\">Enter or select the desired brand.</ahelp>"
+msgstr "<ahelp hid=\"SW_COMBOBOX_DLG_SAVE_LABEL_CB_MAKE\">Gõ hay chọn tên hãng đã muốn.</ahelp>"
-#: 01130000.xhp
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3149164\n"
+"01010202.xhp\n"
+"hd_id3155180\n"
"25\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the entire document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id3152944\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the pages or slides that you specify in the <emph>Pages</emph> box.</ahelp>"
-msgstr "#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\n<ahelp hid=\".\" visibility=\"hidden\">Để thoát khỏi chế độ xem thử, hãy nhấn nút <emph>Đóng ô xem thử</emph>.</ahelp>\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\n<ahelp hid=\".\" visibility=\"hidden\">Để rời khỏi ô xem thử trang, nhấn vào nút <emph>Đóng ô</emph>.</ahelp>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id3150244\n"
-"30\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the selected area(s) or object(s) in the current document.</ahelp>"
-msgstr ""
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id3146848\n"
-"28\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12.</ahelp>"
-msgstr "Để xuất một phạm vi trang, dùng định dạng « 3-6 ». Để xuất mỗi trang riêng, dùng định dạng « 7;9;11 ». Bạn cũng có thể xuất tổ hợp phạm vi trang và trang đơn, dùng định dạng như « 3-6;8;10;12 »."
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id3150772\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints to a file instead of to a printer.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id38\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc.</ahelp>"
+msgid "Type"
+msgstr "Kiểu"
-#: 01130000.xhp
-#, fuzzy
+#: 01010202.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id40\n"
+"01010202.xhp\n"
+"par_id3159158\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to print pages in reverse order.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự các điểm dữ liệu.</ahelp>"
+msgid "<ahelp hid=\"SW_EDIT_DLG_SAVE_LABEL_ED_TYPE\">Enter or select a label type.</ahelp>"
+msgstr "<ahelp hid=\"SW_EDIT_DLG_SAVE_LABEL_ED_TYPE\">Gõ hay chọn kiểu của nhãn.</ahelp>"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3145069\n"
-"34\n"
+"01010203.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of copies that you want to print.</ahelp>"
-msgstr ""
+msgid "Options"
+msgstr "Tùy chọn"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150865\n"
-"36\n"
+"01010203.xhp\n"
+"hd_id3155599\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Preserves the page order of the original document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hoàn nguyên kích cỡ của đối tượng về kích cỡ gốc.</ahelp>"
+msgid "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/shared/01/01010203.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3156113\n"
-"16\n"
+"01010203.xhp\n"
+"par_id3154497\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the printer properties dialog. The printer properties vary according to the printer that you select.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"HID_LAB_PRT\" visibility=\"visible\">Sets additional options for your labels or business cards, including text synchronization and printer settings.</ahelp>"
+msgstr "<ahelp hid=\"HID_LAB_PRT\" visibility=\"visible\">Đặt các tùy chọn thêm về xác nhãn hay danh thiếp của bạn, bao gồm cách đồng bộ hoá văn bản và thiết lập máy in.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id42\n"
+"01010203.xhp\n"
+"hd_id3150713\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Show/Hide detailed information of the selected printer.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Định dạng tiêu đề được chọn.</ahelp>"
+msgid "Entire Page"
+msgstr "Toàn trang"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3149511\n"
+"01010203.xhp\n"
+"par_id3155355\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The list box shows the installed printers. Click the printer to use for the current print job. Click the Printer details button to see some information about the selected printer. Click the Properties button to change some of the printer properties.</ahelp>"
-msgstr ""
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id44\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify which pages to include in the output.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id46\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Brochure option to print the document in brochure format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id48\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which pages of a brochure to print.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một hình riêng trong danh sách.</ahelp>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200904102910\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For brochure printing, you can select a left-to-right order of pages or a right-to-left order.</ahelp>"
-msgstr ""
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id50\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to draw a border around each page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn chuột để đi tới trang trợ lý có tên đó.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id52\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select order in which pages are to be printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu đồ thị cơ bản.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id54\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the orientation of the paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id56\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between the printed pages and paper edge.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự sắp xếp.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id58\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between individual pages on each sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu con của kiểu đồ thị cơ bản.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id60\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of rows.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn định dạng tập tin.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id62\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn định dạng tập tin.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id64\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many pages to print per sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đối với bản phát tay, chọn số các ảnh chiếu cần in trên mỗi tờ giấy.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id66\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Print multiple pages per sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id68\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which parts of the document should be printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id70\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many slides to print per page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự sắp xếp.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id72\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to arrange slides on the printed page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều dọc trên tờ giấy được in ấn.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id74\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the page name of a document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id76\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the current date and time.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id78\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the pages that are currently hidden.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id80\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print in original colors.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id82\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as grayscale.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id84\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as black and white.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id86\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to scale slides in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chấn để chọn tất cả các bảng trong tài liệu.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id88\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not want to further scale pages when printing.</ahelp>"
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_DEFAULT\">Ghi rõ rằng bạn không muốn co giãn trang một cách nữa khi in.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id90\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</ahelp>"
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_PAGESIZE\">Ghi rõ có nên co giãn các đối tượng nằm bên ngoài các lề của máy in hiện thời, để vừa tờ giấy của máy in, hay không.</ahelp>"
-
-#: 01130000.xhp
-#, fuzzy
-msgctxt ""
-"01130000.xhp\n"
-"par_id92\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper.</ahelp>"
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_PAGETILE\">Ghi rõ có nên in các trang theo định dạng đã xếp lát. Có trang hay ảnh chiếu nhỏ hơn tờ giấy thì vài trang hay ảnh chiếu sẽ được in trên cùng một tờ giấy.</ahelp>"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285074\n"
-"help.text"
-msgid "%PRODUCTNAME Writer / Calc / Impress / Draw / Math"
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285019\n"
-"help.text"
-msgid "The tab page with the same name as the current application can be used to define the contents, color, size, and pages to be printed. You define settings that are specific to the current document type."
-msgstr ""
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285112\n"
-"help.text"
-msgid "Page Layout"
-msgstr "Bố trí trang"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285150\n"
-"help.text"
-msgid "The Page Layout tab page can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper."
-msgstr ""
+msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_PAGE\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgstr "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_PAGE\" visibility=\"visible\">Tạo một trang đầy đủ các nhãn hay danh thiếp.</ahelp>"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200904164735\n"
+"01010203.xhp\n"
+"hd_id3146958\n"
+"5\n"
"help.text"
-msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
-msgstr ""
+msgid "Single Label"
+msgstr "Nhãn đơn"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200904102987\n"
+"01010203.xhp\n"
+"par_id3155535\n"
+"6\n"
"help.text"
-msgid "For some document types, you can choose to print a brochure."
-msgstr ""
+msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_SINGLE\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgstr "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_SINGLE\" visibility=\"visible\">In trên trang chỉ một nhãn hay danh thiếp riêng lẻ.</ahelp>"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
+"01010203.xhp\n"
+"hd_id3148621\n"
+"7\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "Column"
+msgstr "Cột"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
+"01010203.xhp\n"
+"par_id3145345\n"
+"8\n"
"help.text"
-msgid "On the Options tab page you can set some additional options for the current print job. Here you can specify to print to a file instead of printing on a printer."
-msgstr ""
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_COL\" visibility=\"visible\">Enter the number of labels or business cards that you want to have in a row on your page.</ahelp>"
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_COL\" visibility=\"visible\">Gõ số nhãn hay danh thiếp bạn muốn thấy nằm trong mỗi hàng trên trang.</ahelp>"
-#: 01130000.xhp
-#, fuzzy
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0819200910481678\n"
+"01010203.xhp\n"
+"hd_id3149398\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Unix hints</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Chú thích </caseinline></switchinline>"
+msgid "Row"
+msgstr "Hàng"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3157320\n"
-"47\n"
+"01010203.xhp\n"
+"par_id3166410\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">If you want, you can use the STAR_SPOOL_DIR environment variable to specify the directory where the Xprinter spoolfiles are saved. For example:</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Bạn cũng có thể sử dụng biến môi trường « STAR_SPOOL_DIR » để ghi rõ thư mục vào đó cần lưu các tập tin ống dẫn (spoolfile) của Xprinter. Thí dụ : </caseinline></switchinline>"
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_ROW\" visibility=\"visible\">Enter the number of rows of labels or business cards that you want to have on your page.</ahelp>"
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_ROW\" visibility=\"visible\">Gõ số hàng các nhãn hay danh thiếp bạn muốn thấy trên trang.</ahelp>"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3154330\n"
-"48\n"
+"01010203.xhp\n"
+"hd_id3149237\n"
+"15\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">setenv STAR_SPOOL_DIR /usr/local/tmp (in the csh/tcsh) or</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">« setenv STAR_SPOOL_DIR /usr/local/tmp » (trong trình bao csh/tcsh) hay </caseinline></switchinline>"
+msgid "Synchronize contents"
+msgstr "Đồng bộ hoá nội dung"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150768\n"
-"49\n"
+"01010203.xhp\n"
+"par_id3155342\n"
+"16\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">export STAR_SPOOL_DIR=/usr/local/tmp (in the sh/bash)</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">« export STAR_SPOOL_DIR=/usr/local/tmp » (trong trình bao sh/bash) </caseinline></switchinline>"
+msgid "<ahelp visibility=\"visible\" hid=\"SW:CHECKBOX:TP_LAB_PRT:CB_SYNCHRON\">Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the <emph>Synchronize Labels </emph>button.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SW:CHECKBOX:TP_LAB_PRT:CB_SYNCHRON\">Cho phép bạn chỉnh sửa một nhãn hay danh thiếp riêng lẻ, và cập nhật nội dung của các nhãn hay danh thiếp còn lại trên trang khi bạn nhấn vào cái nút <emph>Đồng bộ hoá nhãn </emph>.</ahelp>"
-#: 01130000.xhp
+#: 01010203.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150449\n"
-"50\n"
+"01010203.xhp\n"
+"hd_id3149164\n"
+"18\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">You can also use the <link href=\"text/shared/guide/spadmin.xhp\" name=\"spadmin printer setup program\">spadmin printer setup program</link> to specify additional printer options.</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Bạn cũng có thể sử dụng chương trình thiết lập máy in <link href=\"text/shared/guide/spadmin.xhp\" name=\"spadmin\">spadmin</link> để ghi rõ thêm tùy chọn về máy in. </caseinline></switchinline>"
+msgid "Synchronize Labels"
+msgstr "Đồng bộ hoá nhãn"
-#: 05250000.xhp
+#: 01010203.xhp
msgctxt ""
-"05250000.xhp\n"
-"tit\n"
+"01010203.xhp\n"
+"par_id3148474\n"
+"17\n"
"help.text"
-msgid "Arrange"
-msgstr "Sắp đặt"
+msgid "The <emph>Synchronize labels </emph>button only appears in your document if you selected the <emph>Synchronize contents </emph>on the<emph> Options tab </emph>when you created the labels or business cards."
+msgstr "Cái nút <emph>Đồng bộ hoá nhãn</emph> chỉ xuất hiện trong cửa sổ tài liệu nếu bạn đã bật tùy chọn <emph>Đồng bộ hoá nội dung</emph> trên thẻ <emph>Tùy chọn</emph> trong khi tạo nhan hay danh thiếp."
-#: 05250000.xhp
+#: 01010203.xhp
msgctxt ""
-"05250000.xhp\n"
-"bm_id3152427\n"
+"01010203.xhp\n"
+"par_id3149762\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>objects; arranging within stacks</bookmark_value><bookmark_value>arranging; objects</bookmark_value><bookmark_value>borders; arranging</bookmark_value><bookmark_value>pictures; arranging within stacks</bookmark_value><bookmark_value>draw objects; arranging within stacks</bookmark_value><bookmark_value>controls; arranging within stacks</bookmark_value><bookmark_value>OLE objects; arranging within stacks</bookmark_value><bookmark_value>charts; arranging within stacks</bookmark_value><bookmark_value>layer arrangement</bookmark_value><bookmark_value>levels; depth stagger</bookmark_value><bookmark_value>depth stagger</bookmark_value>"
-msgstr "<bookmark_value>đối tượng; sắp đặt bên trong đống</bookmark_value><bookmark_value>sắp đặt; đối tượng</bookmark_value><bookmark_value>viền; sắp đặt</bookmark_value><bookmark_value>ảnh; sắp đặt bên trong đống</bookmark_value><bookmark_value>đối tượng vẽ; sắp đặt bên trong đống</bookmark_value><bookmark_value>điều khiển; sắp đặt bên trong đống</bookmark_value><bookmark_value>đối tượng OLE; sắp đặt bên trong đống</bookmark_value><bookmark_value>đồ thị; sắp đặt bên trong đống</bookmark_value><bookmark_value>sắp đặt lớp</bookmark_value><bookmark_value>cấp; xếp chéo độ sâu</bookmark_value><bookmark_value>xếp chéo độ sâu</bookmark_value>"
+msgid "<ahelp hid=\"SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC\" visibility=\"visible\">Copies the contents of the top left label or business card to the remaining labels or business cards on the page.</ahelp>"
+msgstr "<ahelp hid=\"SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC\" visibility=\"visible\">Sao chép nội dung của nhãn hay danh thiếp ở góc trên bên trái vào các nhãn hay danh thiếp còn lại trên trang.</ahelp>"
-#: 05250000.xhp
+#: 01010203.xhp
msgctxt ""
-"05250000.xhp\n"
-"hd_id3152427\n"
-"1\n"
+"01010203.xhp\n"
+"hd_id3150504\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Arranging Objects\">Arrange</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Sắp đặt đối tượng\">Sắp đặt</link>"
+msgid "Printer"
+msgstr "Máy in"
-#: 05250000.xhp
+#: 01010203.xhp
msgctxt ""
-"05250000.xhp\n"
-"par_id3154230\n"
-"2\n"
+"01010203.xhp\n"
+"par_id3148990\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectPosition\">Changes the stacking order of the selected object(s).</ahelp>"
-msgstr "<ahelp hid=\".uno:ObjectPosition\">Sửa đổi thứ tự xếp đống của các đối tượng đã chọn.</ahelp>"
+msgid "Displays the name of the currently selected printer."
+msgstr "Hiển thị tên của máy in được chọn hiện thời."
-#: 05250000.xhp
+#: 01010203.xhp
msgctxt ""
-"05250000.xhp\n"
-"hd_id3153894\n"
-"9\n"
+"01010203.xhp\n"
+"hd_id3153127\n"
+"13\n"
"help.text"
-msgid "Layer for text and graphics"
-msgstr "Lớp cho văn bản hay đồ họa"
+msgid "Setup"
+msgstr "Thiết lập"
-#: 05250000.xhp
+#: 01010203.xhp
msgctxt ""
-"05250000.xhp\n"
-"par_id3154186\n"
-"4\n"
+"01010203.xhp\n"
+"par_id3144438\n"
+"14\n"
"help.text"
-msgid "Each object that you place in your document is successively stacked on the preceding object. Use the arrange commands to change the stacking order of objects in your document. You cannot change the stacking order of text."
-msgstr "Mỗi đối tượng bạn đặt vào tài liệu thì được xếp đống lần lượt trên đối tượng đặt trước. Hãy dùng các câu lệnh sắp đặt để sửa đổi thứ tự xếp đống của các đối tượng trong tài liệu. Tuy nhiên, không thể sửa đổi thứ tự xếp đống văn bản."
+msgid "<ahelp visibility=\"visible\" hid=\"SW:PUSHBUTTON:TP_LAB_PRT:BTN_PRTSETUP\">Opens the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SW:PUSHBUTTON:TP_LAB_PRT:BTN_PRTSETUP\">Mở hộp thoại <link href=\"text/shared/01/01140000.xhp\" name=\"Thiết lập Máy in\">Thiết lập Máy in</link>.</ahelp>"
-#: 05070300.xhp
+#: 01010300.xhp
msgctxt ""
-"05070300.xhp\n"
+"01010300.xhp\n"
"tit\n"
"help.text"
-msgid "Align Right"
-msgstr "Canh lề phải"
+msgid "Business cards"
+msgstr "Danh thiếp"
-#: 05070300.xhp
+#: 01010300.xhp
msgctxt ""
-"05070300.xhp\n"
-"hd_id3153383\n"
+"01010300.xhp\n"
+"hd_id3149038\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070300.xhp\" name=\"Align Right\">Align Right</link>"
-msgstr "<link href=\"text/shared/01/05070300.xhp\" name=\"Canh lề phải\">Canh lề phải</link>"
+msgid "<link href=\"text/shared/01/01010300.xhp\" name=\"Business cards\">Business cards</link>"
+msgstr "<link href=\"text/shared/01/01010300.xhp\" name=\"Danh thiếp\">Danh thiếp</link>"
-#: 05070300.xhp
+#: 01010300.xhp
msgctxt ""
-"05070300.xhp\n"
-"par_id3151264\n"
+"01010300.xhp\n"
+"par_id3149987\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignRight\">Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin.</ahelp>"
-msgstr "<ahelp hid=\".uno:AlignRight\">Chỉnh canh các cạnh bên phải của những đối tượng đã chọn. Nếu chỉ chọn một đối tượng Draw hay Impress thì cạnh bên phải của đối tượng được chỉnh canh theo lề bên phải của trang.</ahelp>"
-
-#: 05070300.xhp
-msgctxt ""
-"05070300.xhp\n"
-"par_id3144336\n"
-"3\n"
-"help.text"
-msgid "Objects are aligned to the right edge of the rightmost object in the selection."
-msgstr "Các đối tượng được chỉnh canh theo cạnh bên phải của đối tượng tận bên phải trong văn bản."
+msgid "<ahelp hid=\".uno:InsertBusinessCard\">Design and create your own business cards.</ahelp> You can choose from a number of pre-defined size formats or create your own."
+msgstr "<ahelp hid=\".uno:InsertBusinessCard\">Thiết kế và tạo các danh thiếp đẹp riêng.</ahelp> Bạn có thể chọn trong một số định dạng định dạng đã xác định sẵn, hoặc tạo định dạng riêng."
-#: 02090000.xhp
+#: 01010301.xhp
msgctxt ""
-"02090000.xhp\n"
+"01010301.xhp\n"
"tit\n"
"help.text"
-msgid "Select All"
-msgstr "Chọn tất cả"
+msgid "Medium"
+msgstr "Phương tiện"
-#: 02090000.xhp
+#: 01010301.xhp
msgctxt ""
-"02090000.xhp\n"
-"hd_id3145138\n"
+"01010301.xhp\n"
+"hd_id3148765\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02090000.xhp\" name=\"Select All\">Select All</link>"
-msgstr "<link href=\"text/shared/01/02090000.xhp\" name=\"Chọn tất cả\">Chọn tất cả</link>"
+msgid "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">Medium</link>"
+msgstr "<link href=\"text/shared/01/01010301.xhp\" name=\"Phương tiện\">Phương tiện</link>"
-#: 02090000.xhp
+#: 01010301.xhp
msgctxt ""
-"02090000.xhp\n"
-"par_id3149999\n"
+"01010301.xhp\n"
+"par_id3150278\n"
"2\n"
"help.text"
-msgid "<variable id=\"allestext\"><ahelp hid=\".uno:Select\" visibility=\"visible\">Selects the entire content of the current file, frame, or text object.</ahelp></variable>"
-msgstr "<variable id=\"allestext\"><ahelp hid=\".uno:Select\" visibility=\"visible\">Lựa chọn toàn nội dung của tập tin, khung hay đối tượng văn bản đang biên soạn.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Select the size of your business card from a number of pre-defined size formats, or a size format that you specify on the <emph>Format </emph>tab.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kích cỡ của danh thiếp trong một số định dạng kích cỡ đã xác định sẵn, hoặc một định dạng kích cỡ bạn ghi rõ trên thẻ <emph>Định dạng</emph>.</ahelp>"
-#: 02090000.xhp
+#: 01010301.xhp
msgctxt ""
-"02090000.xhp\n"
-"par_id3155261\n"
+"01010301.xhp\n"
+"hd_id3149991\n"
"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet.</caseinline> <defaultinline/> </switchinline>"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Để lựa chọn tất cả các ô trên bảng, nhấn vào cái nút ở giao của phần đầu cột và hàng, ở góc trên bên trái bảng.</caseinline> <defaultinline/> </switchinline>"
+msgid "Format"
+msgstr "Định dạng"
-#: 02090000.xhp
+#: 01010301.xhp
msgctxt ""
-"02090000.xhp\n"
-"par_id3154046\n"
+"01010301.xhp\n"
+"par_id3147543\n"
"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the sheets in a spreadsheet file, right-click the name tab of a sheet, and then choose <emph>Select All Sheets</emph>.<ahelp hid=\".uno:TableSelectAll\" visibility=\"hidden\">Selects all of the sheets in the current spreadsheet.</ahelp></caseinline> <defaultinline/> </switchinline>"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Để lựa chọn tất cả các bảng trong một tập tin bảng tính, nhấn-phải vào thẻ tên của bảng, sau đó chọn lệnh <emph>Chọn mọi bảng</emph>.<ahelp hid=\".uno:TableSelectAll\" visibility=\"hidden\">Lựa chọn tất cả các bảng trong bảng tính hiện tại.</ahelp></caseinline> <defaultinline/> </switchinline>"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add Condition"
-msgstr "Thêm điều kiện"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"bm_id8615680\n"
-"help.text"
-msgid "<bookmark_value>conditions;items in Data Navigator</bookmark_value><bookmark_value>XForms;conditions</bookmark_value>"
-msgstr "<bookmark_value>điều kiện;mục trong Bộ Duyệt Dữ Liệu</bookmark_value><bookmark_value>biểu mẫu XForm; điều kiện</bookmark_value>"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN1053E\n"
-"help.text"
-msgid "Add Condition"
-msgstr "Thêm điều kiện"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<ahelp hid=\".\">Add a condition in this subdialog of the Add Item / Edit Item dialog of the Data Navigator.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm một điều kiện trong hộp thoại phụ bày cua hộp thoại <emph>Thêm/Sửa mục</emph> của Bộ Duyệt Dữ Liệu.</ahelp>"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10561\n"
-"help.text"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter a condition.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập điều kiện.</ahelp>"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Result"
-msgstr "Kết quả"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays a preview of the result.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị ô xem thử kết quả.</ahelp>"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "Edit Namespaces"
-msgstr "Sửa miền tên"
-
-#: xformsdataaddcon.xhp
-msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Form Namespaces dialog where you can add, edit, or delete namespaces.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Miền tên Biểu mẫu</emph> trong đó bạn có thể thêm, chỉnh sửa hay xoá miền tên.</ahelp>"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit Dictionary"
-msgstr "Sửa từ điển"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"bm_id905789\n"
-"help.text"
-msgid "<bookmark_value>common terms;Chinese dictionary</bookmark_value><bookmark_value>dictionaries;common terms in simplified and traditional chinese</bookmark_value>"
-msgstr "<bookmark_value>thuật ngữ chung;từ điển tiếng Trung</bookmark_value><bookmark_value>từ điển;thuật ngữ chung bằng tiếng Trung phổ thông và tiếng Trung truyền thông</bookmark_value>"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN1053D\n"
-"help.text"
-msgid "Edit Dictionary"
-msgstr "Sửa từ điển"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<ahelp hid=\".\">Edit the <link href=\"text/shared/01/06010600.xhp\">Chinese conversion</link> terms.</ahelp>"
-msgstr "<ahelp hid=\".\">Chỉnh sửa các thuật ngữ <link href=\"text/shared/01/06010600.xhp\">dịch tiếng Trung</link>.</ahelp>"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN10566\n"
-"help.text"
-msgid "You can use this dialog to edit, to add, or to delete entries from the conversion dictionary. The file path name for the conversion dictionary is user/wordbook/commonterms.ctd. You cannot delete the default entries in this file."
-msgstr "Bạn có thể sử dụng từ điển này để thêm, chỉnh sửa hay xoá mục nhập trong từ điển dịch. Tên đường dẫn tập tin cho từ điển dịch là « user/wordbook/commonterms.ctd ». Bạn không thể xoá những mục nhập mặc định khỏi tập tin này."
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Traditional Chinese to Simplified Chinese"
-msgstr "Tiếng Trung phồn thể sang giản thể"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN1056D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Converts traditional Chinese to simplified Chinese.</ahelp>"
-msgstr "<ahelp hid=\".\">Dịch tiếng Trung truyền thống sang tiếng Trung phổ thông.</ahelp>"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "Simplified Chinese to Traditional Chinese"
-msgstr "Tiếng Trung giản thể sang phồn thể"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN10574\n"
-"help.text"
-msgid "<ahelp hid=\".\">Converts simplified Chinese to traditional Chinese.</ahelp>"
-msgstr "<ahelp hid=\".\">Dịch tiếng Trung phổ thông sang tiếng Trung truyền thống.</ahelp>"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN10577\n"
-"help.text"
-msgid "Reverse Mapping"
-msgstr "Ánh xạ ngược"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN1057B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Automatically adds the reverse mapping direction to the list for each modification that you enter.</ahelp>"
-msgstr "<ahelp hid=\".\">Tự động thêm hướng ánh xá ngược vào danh sách cho mỗi sự sửa đổi bạn nhập vào.</ahelp>"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN1057E\n"
-"help.text"
-msgid "Term"
-msgstr "Thuật ngữ"
-
-#: 06010601.xhp
-msgctxt ""
-"06010601.xhp\n"
-"par_idN10582\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the text that you want to replace with the Mapping term.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập văn bản bạn muốn thay thế bằng thuật ngữ Ánh xạ.</ahelp>"
+msgid "Select a size format for your business card."
+msgstr "Chọn định dạng kích cỡ cho danh thiếp."
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10585\n"
+"01010301.xhp\n"
+"hd_id3160463\n"
+"5\n"
"help.text"
-msgid "Mapping"
-msgstr "Ánh xạ"
+msgid "Continuous"
+msgstr "Liên tục"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10589\n"
+"01010301.xhp\n"
+"par_id3150279\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the text that you want to replace the Term with.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập văn bản nên thay thế Thuật ngữ.</ahelp>"
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">Prints business cards on continuous paper.</ahelp>"
+msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">In các danh thiếp trên giấy cuộn liên tục.</ahelp>"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1058C\n"
+"01010301.xhp\n"
+"hd_id3154840\n"
+"7\n"
"help.text"
-msgid "Property"
-msgstr "Thuộc tính"
+msgid "Sheet"
+msgstr "Tờ giấy"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10590\n"
+"01010301.xhp\n"
+"par_id3148731\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Defines the class of the selected term.</ahelp>"
-msgstr "<ahelp hid=\".\">Xác định hạng của thuật ngữ đã chọn.</ahelp>"
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">Prints business cards on individual sheets.</ahelp>"
+msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">In các danh thiếp trên mỗi tờ giấy.</ahelp>"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10593\n"
+"01010301.xhp\n"
+"hd_id3154894\n"
+"9\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "Brand"
+msgstr "Tên hãng"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10597\n"
+"01010301.xhp\n"
+"par_id3155351\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds the term to the conversion dictionary. If the term is already in the dictionary, the new term receives precedence.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm thuật ngữ vào từ điển dịch. Thuật ngữ đã có trong từ điển thì thuật ngữ mới có quyền cao hơn.</ahelp>"
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
+msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Chọn tên hãng giấy bạn muốn sử dụng.</ahelp> Mỗi tên hãng có các định dạng kích cỡ riêng."
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1059A\n"
+"01010301.xhp\n"
+"hd_id3153935\n"
+"11\n"
"help.text"
-msgid "Modify"
-msgstr "Sửa"
+msgid "Type"
+msgstr "Kiểu"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1059E\n"
+"01010301.xhp\n"
+"par_id3159201\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Saves the modified entry to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Lưu vào tập tin cơ sở dữ liệu mục nhập đã sửa đổi.</ahelp>"
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
+msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Chọn định dạng kích cỡ bạn muốn sử dụng. Các định dạng sẵn sàng thì phụ thuộc vào mục bạn đã chọn trong hộp <emph>Tên hãng</emph>. Muốn sử dụng một định dạng kích cỡ riêng thì chọn mục <emph>[Người dùng]</emph>, sau đó nhấn vào cái nút <<link href=\"text/shared/01/01010202.xhp\" name=\"Định dạng\"><emph>Định dạng</emph></link> để xác định định dạng.</ahelp>"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN105A1\n"
+"01010301.xhp\n"
+"hd_id3147226\n"
+"13\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "Info"
+msgstr "Thông tin"
-#: 06010601.xhp
+#: 01010301.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN105A5\n"
+"01010301.xhp\n"
+"par_id3153394\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Removes the selected user-defined entry from the dictionary.</ahelp>"
-msgstr "<ahelp hid=\".\">Gỡ bỏ khỏi từ điển mục nhập tự xác định đã chọn.</ahelp>"
+msgid "The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area."
+msgstr "Kiểu giấy và các chiều của danh thiếp được hiển thị ở đáy của vùng <emph>Định dạng</emph>."
-#: 02100300.xhp
+#: 01010302.xhp
msgctxt ""
-"02100300.xhp\n"
+"01010302.xhp\n"
"tit\n"
"help.text"
-msgid "Text Format (Search)"
-msgstr "Định dạng Văn bản (Tìm kiếm)"
-
-#: 02100300.xhp
-msgctxt ""
-"02100300.xhp\n"
-"hd_id3154840\n"
-"130\n"
-"help.text"
-msgid "Text Format (Search)"
-msgstr "Định dạng Văn bản (Tìm kiếm)"
-
-#: 02100300.xhp
-msgctxt ""
-"02100300.xhp\n"
-"par_id3150355\n"
-"131\n"
-"help.text"
-msgid "<variable id=\"formattext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_FORMAT\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp></variable>"
-msgstr "<variable id=\"formattext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_FORMAT\">Tìm các tính năng định dạng văn bản cụ thể, v.d. kiểu phông, hiệu ứng phông và đặc tính luồng văn bản.</ahelp></variable>"
-
-#: 02100300.xhp
-msgctxt ""
-"02100300.xhp\n"
-"par_id3145383\n"
-"192\n"
-"help.text"
-msgid "The search criteria for attributes are listed below the <emph>Search for</emph> box."
-msgstr "Các tiêu chuẩn tìm kiếm thuộc tính được liệt kê bên dưới hộp <emph>Tìm kiếm</emph>."
-
-#: 02100300.xhp
-msgctxt ""
-"02100300.xhp\n"
-"par_id3150466\n"
-"132\n"
-"help.text"
-msgid "You do not need to specify a search text in the <emph>Search for</emph> box when you search and replace formatting."
-msgstr "Tuy nhiên, bạn không cần ghi rõ chuỗi tìm kiếm trong hộp <emph>Tìm kiếm</emph> khi bạn tìm và thay thế định dạng."
-
-#: 02100300.xhp
-msgctxt ""
-"02100300.xhp\n"
-"par_id3156152\n"
-"133\n"
-"help.text"
-msgid "To define a replacement format, click in the <emph>Replace with</emph> box, and then click the <emph>Format </emph>button."
-msgstr "Để xác định một định dạng thay thế, nhấn vào hộp <emph>Thay thế bằng</emph>, rồi bấm cái nút <emph>Định dạng</emph>."
-
-#: 02100300.xhp
-msgctxt ""
-"02100300.xhp\n"
-"par_id3153821\n"
-"157\n"
-"help.text"
-msgid "Use the <emph>Text Format (Search)</emph> or the <emph>Text Format (Replace)</emph> to define your formatting search criteria. These dialogs contain the following tab pages:"
-msgstr "Dùng hộp thoại <emph>Định dạng Văn bản (Tìm)</emph> hay <emph>Định dạng Văn bản (Thay thế)</emph> để xác định các tiêu chuẩn tìm kiếm định dạng. Hai hộp thoại này chứa những thẻ trang này:"
-
-#: 02100300.xhp
-msgctxt ""
-"02100300.xhp\n"
-"par_id3062837\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm tính năng định dạng văn bản dứt khoát, như kiểu phông, hiệu ứng phông và đặc tính luồng văn bản.</ahelp>"
+msgid "Business Cards"
+msgstr "Danh thiếp"
-#: 02100300.xhp
+#: 01010302.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3149457\n"
+"01010302.xhp\n"
+"hd_id3152414\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100200.xhp\" name=\"Attributes\">Attributes</link>"
-msgstr "<link href=\"text/shared/01/02100200.xhp\" name=\"Thuộc tính\">Thuộc tính</link>"
+msgid "<link href=\"text/shared/01/01010302.xhp\" name=\"Business Cards\">Business Cards</link>"
+msgstr "<link href=\"text/shared/01/01010302.xhp\" name=\"Danh thiếp\">Danh thiếp</link>"
-#: 06140101.xhp
+#: 01010302.xhp
msgctxt ""
-"06140101.xhp\n"
-"tit\n"
+"01010302.xhp\n"
+"par_id3153882\n"
+"2\n"
"help.text"
-msgid "New Menu"
-msgstr "Trình đơn mới"
+msgid "<ahelp hid=\"\" visibility=\"visible\">Define the appearance of your business cards.</ahelp>"
+msgstr "<ahelp hid=\"\" visibility=\"visible\">Xác định hình thức của danh thiếp của bạn.</ahelp>"
-#: 06140101.xhp
+#: 01010302.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN10540\n"
+"01010302.xhp\n"
+"hd_id3146873\n"
+"3\n"
"help.text"
-msgid "New Menu"
-msgstr "Trình đơn mới"
+msgid "Content"
+msgstr "Nội dung"
-#: 06140101.xhp
+#: 01010302.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN10558\n"
+"01010302.xhp\n"
+"par_id3147527\n"
+"4\n"
"help.text"
-msgid "Menu name"
-msgstr "Tên trình đơn"
+msgid "Select a design layout for your business card."
+msgstr "Chọn một bố trí thiết kế cho danh thiếp."
-#: 06140101.xhp
+#: 01010302.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN1055C\n"
+"01010302.xhp\n"
+"par_id3158442\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter.</ahelp>"
-msgstr ""
+msgid "<ahelp visibility=\"visible\" hid=\"HID_BUSINESS_CARD_CONTENT\">Select a business card category in <emph>AutoText - Section</emph> box, and then click a layout in the <emph>Content </emph>list.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"HID_BUSINESS_CARD_CONTENT\">Chọn một phân loại danh thiếp trong hộp <emph>Tốc ký > Phần</emph>, sau đó nhấn vào một bố trí trong danh sách <emph>Nội dung</emph>.</ahelp>"
-#: 06140101.xhp
+#: 01010302.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN1055F\n"
+"01010302.xhp\n"
+"hd_id3148668\n"
+"6\n"
"help.text"
-msgid "Menu position"
-msgstr "Vị trí trình đơn"
+msgid "AutoText - Section"
+msgstr "Tốc ký > Phần"
-#: 06140101.xhp
+#: 01010302.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN10563\n"
+"01010302.xhp\n"
+"par_id3154894\n"
+"7\n"
"help.text"
-msgid "Moves the selected menu entry up one position or down one position in the menu when you click the arrow buttons."
-msgstr "Dời mục nhập trình đơn đã chọn lên hay xuống một vị trí trong trình đơn khi bạn nhấn vào cái nút mũi tên."
+msgid "<ahelp visibility=\"visible\" hid=\"SW_LISTBOX_TP_VISITING_CARDS_LB_AUTO_TEXT_GROUP\">Select a business card category, and then click a layout in the <emph>Content </emph>list.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SW_LISTBOX_TP_VISITING_CARDS_LB_AUTO_TEXT_GROUP\">Chọn một phân loại danh thiếp, sau đó nhấn vào một bố tri trong danh sách <emph>Nội dung</emph>.</ahelp>"
-#: 05080400.xhp
+#: 01010303.xhp
msgctxt ""
-"05080400.xhp\n"
+"01010303.xhp\n"
"tit\n"
"help.text"
-msgid "Justify"
-msgstr "Canh đều"
+msgid "Private"
+msgstr "Cá nhân"
-#: 05080400.xhp
+#: 01010303.xhp
msgctxt ""
-"05080400.xhp\n"
-"hd_id3152937\n"
+"01010303.xhp\n"
+"hd_id3149031\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080400.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05080400.xhp\" name=\"Canh đều\">Canh đều</link>"
+msgid "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">Private</link>"
+msgstr "<link href=\"text/shared/01/01010303.xhp\" name=\"Cá nhân\">Cá nhân</link>"
-#: 05080400.xhp
+#: 01010303.xhp
msgctxt ""
-"05080400.xhp\n"
-"par_id3146856\n"
+"01010303.xhp\n"
+"par_id3148731\n"
"2\n"
"help.text"
-msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Aligns the selected paragraph(s) to the left and the right page margins. If you want, you can also specify the alignment options for the last line of a paragraph by choosing <emph>Format - Paragraph - Alignment</emph>.</ahelp></variable>"
-msgstr "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Chỉnh canh các đoạn văn đã chọn theo lề bên trái và bên phải của trang. Bạn cũng có thể ghi rõ các tùy chọn chỉnh canh cho dòng cuối cùng của đoạn văn, bằng cách chọn lệnh <emph>Định dạng > Đoạn văn > Canh lề</emph>.</ahelp></variable>"
-
-#: 05340500.xhp
-msgctxt ""
-"05340500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide Columns"
-msgstr "Ẩn cột"
+msgid "<ahelp hid=\".\">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
+msgstr "<ahelp hid=\".\">Chứa các thông tin cá nhân dành cho danh thiếp. Các bố trí danh thiếp được chọn trên thẻ <emph>Danh thiếp</emph>.</ahelp>"
-#: 05340500.xhp
+#: 01010303.xhp
msgctxt ""
-"05340500.xhp\n"
-"hd_id3148882\n"
-"1\n"
+"01010303.xhp\n"
+"hd_id3159201\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340500.xhp\" name=\"Hide Columns\">Hide Columns</link>"
-msgstr "<link href=\"text/shared/01/05340500.xhp\" name=\"Ẩn cột\">Ẩn cột</link>"
+msgid "Private data"
+msgstr "Dữ liệu cá nhân"
-#: 05340500.xhp
+#: 01010303.xhp
msgctxt ""
-"05340500.xhp\n"
-"par_id3155620\n"
-"2\n"
+"01010303.xhp\n"
+"par_id3147399\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Hides the selected column(s). To display hidden columns, right-click any column header, and then choose <emph>Show Columns</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Ẩn những cột đã chọn. Để hiển thị cột bị ẩn, nhấn-phải vào bất cứ đầu cột nào, sau đó chọn lệnh <emph>Hiện cột</emph>.</ahelp>"
+msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>."
+msgstr ""
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"tit\n"
+"01010303.xhp\n"
+"hd_id3156427\n"
+"15\n"
"help.text"
-msgid "Line Styles"
-msgstr "Kiểu dáng Đường"
+msgid "First name 2"
+msgstr "Tên 2"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3148919\n"
-"1\n"
+"01010303.xhp\n"
+"par_id3149750\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200200.xhp\" name=\"Line Styles\">Line Styles</link>"
-msgstr "<link href=\"text/shared/01/05200200.xhp\" name=\"Kiểu dáng Đường\">Kiểu dáng Đường</link>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2\">Enter the first name of the person, whom you want to use as a second contact.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2\">Hãy nhập tên (v.d. « Mình ») của người bạn muốn đặt là liên lạc thứ hai.</ahelp>"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3150146\n"
-"2\n"
+"01010303.xhp\n"
+"hd_id3145345\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINE_DEF\">Edit or create dashed or dotted line styles.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINE_DEF\">Chỉnh sửa hay tạo các kiểu dáng đường chấm chấm hay gạch gạch.</ahelp>"
+msgid "Last name 2"
+msgstr "Họ 2"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3147617\n"
-"3\n"
+"01010303.xhp\n"
+"par_id3154288\n"
+"18\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2\">Enter the last name of the person, whom you want to use as a second contact.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2\">Hãy nhập họ (v.d. « Nguyễn ») của người bạn muốn đặt là liên lạc thứ hai.</ahelp>"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3146873\n"
-"15\n"
+"01010303.xhp\n"
+"hd_id3150774\n"
+"19\n"
"help.text"
-msgid "Line style"
-msgstr "Kiểu dáng Đường"
+msgid "Initials 2"
+msgstr "VT 2"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3146807\n"
-"16\n"
+"01010303.xhp\n"
+"par_id3151110\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES\">Select the style of line that you want to create.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES\">Chọn kiểu đường bạn muốn tạo.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2\">Enter the initials of the person, whom you want to use as a second contact.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2\">Hãy nhập tên viết tắt (v.d. « V. » cho Văn) của người bạn muốn đặt là liên lạc thứ hai.</ahelp>"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3149948\n"
+"01010303.xhp\n"
+"hd_id3153543\n"
"5\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "Country"
+msgstr "Quốc gia"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3149031\n"
+"01010303.xhp\n"
+"par_id3150085\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2\">Select the combination of dashes and dots that you want.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2\">Chọn tổ hợp các dấu chấm và dấu gạch thích hợp.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_STATE\">Enter the name of the country in which you live.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_STATE\">Nhập tên của nước bạn ở (v.d. « Việt Nam ».</ahelp>"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3148731\n"
+"01010303.xhp\n"
+"hd_id3155449\n"
"7\n"
"help.text"
-msgid "Number"
-msgstr "Số"
+msgid "Profession"
+msgstr "Nghề nghiệp"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3155351\n"
+"01010303.xhp\n"
+"par_id3156192\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2\">Enter the number of times that you want a dot or a dash to appear in a sequence.</ahelp>"
-msgstr "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2\">Nhập số lần bạn muốn thấy dấu chấm hay gạch trong mỗi dãy.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION\">Enter the title of your profession.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION\">Nhập tên của nghề nghiệp của bạn (v.d. « Lập trình viên »).</ahelp>"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3154422\n"
+"01010303.xhp\n"
+"hd_id3147336\n"
"9\n"
"help.text"
-msgid "Length"
-msgstr "Bề dài"
+msgid "Phone"
+msgstr "Điện thoại"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3149640\n"
+"01010303.xhp\n"
+"par_id3145315\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2\">Enter the length of the dash.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2\">Nhập chiều dài của dấu gạch.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PHONE\">Enter your home telephone number.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PHONE\">Nhập số điện thoại ở nhà của bạn.</ahelp>"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3093440\n"
+"01010303.xhp\n"
+"hd_id3149763\n"
"11\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "Mobile"
+msgstr "Di động"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3147834\n"
+"01010303.xhp\n"
+"par_id3156155\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between dots or dashes.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE\">Nhập khoảng cách bạn muốn để lại giữa hai dấu chấm hay hai dấu gạch.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE\">Nhập số điện thoại di động của bạn.</ahelp>"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3155805\n"
+"01010303.xhp\n"
+"hd_id3154306\n"
"13\n"
"help.text"
-msgid "Fit to line width"
-msgstr "Vừa bề rộng đường"
+msgid "Homepage"
+msgstr "Trang chủ"
-#: 05200200.xhp
+#: 01010303.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3147291\n"
+"01010303.xhp\n"
+"par_id3153666\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE\">Automatically adjusts the entries relative to the length of the line.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE\">Tự động điều chỉnh các mục nhập tương đối so với chiều dài của đường.</ahelp>"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"hd_id3155355\n"
-"17\n"
-"help.text"
-msgid "Add"
-msgstr "Thêm"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"par_id3149827\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD\">Creates a new line style using the current settings.</ahelp>"
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD\">Tạo một kiểu dáng đường mới dựa vào thiết lập hiện thời.</ahelp>"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"hd_id3155338\n"
-"19\n"
-"help.text"
-msgid "Name"
-msgstr "Tên"
-
-#: 05200200.xhp
-#, fuzzy
-msgctxt ""
-"05200200.xhp\n"
-"par_id3153681\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"\">Enter a name.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập điều kiện.</ahelp>"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"hd_id3155893\n"
-"21\n"
-"help.text"
-msgid "Modify"
-msgstr "Sửa"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"par_id3157863\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY\">Updates the selected line style using the current settings. To change the name of the selected line style, enter a new name when prompted.</ahelp>"
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY\">Cập nhật kiểu dáng đường đã chọn, dùng thiết lập hiện thời. Để thay đổi tên của kiểu dáng đường đã chọn, nhập tên mới khi chương trình nhắc.</ahelp>"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"hd_id3147275\n"
-"23\n"
-"help.text"
-msgid "Load line style table"
-msgstr "Nạp bảng kiểu dáng đường"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"par_id3154749\n"
-"24\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD\">Imports a list of line styles.</ahelp>"
-msgstr "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD\">Nhập khẩu danh sách các kiểu dáng đường.</ahelp>"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"hd_id3148642\n"
-"25\n"
-"help.text"
-msgid "Save line style table"
-msgstr "Lưu bảng kiểu dáng đường"
-
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"par_id3155449\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE\">Saves the current list of line styles, so that you can load it again later.</ahelp>"
-msgstr "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE\">Lưu lại danh sách các kiểu dáng đường hiện thời, để bạn có thể nạp lại sau.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_WWW\">Enter the address of your internet homepage.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_WWW\">Nhập địa chỉ của trang chủ Internet của bạn.</ahelp>"
-#: 05100000.xhp
+#: 01010304.xhp
msgctxt ""
-"05100000.xhp\n"
+"01010304.xhp\n"
"tit\n"
"help.text"
-msgid "Size"
-msgstr "Kích cỡ"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"bm_id3153391\n"
-"help.text"
-msgid "<bookmark_value>text; font sizes</bookmark_value><bookmark_value>font sizes; text</bookmark_value>"
-msgstr "<bookmark_value>văn bản; các kích cỡ phông</bookmark_value><bookmark_value>các kích cỡ phông; văn bản</bookmark_value>"
+msgid "Business"
+msgstr "Kinh doanh"
-#: 05100000.xhp
+#: 01010304.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3153391\n"
+"01010304.xhp\n"
+"hd_id3152942\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100000.xhp\" name=\"Size\">Size</link>"
-msgstr "<link href=\"text/shared/01/05100000.xhp\" name=\"Kích cỡ\">Kích cỡ</link>"
+msgid "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">Business</link>"
+msgstr "<link href=\"text/shared/01/01010304.xhp\" name=\"Kinh doanh\">Kinh doanh</link>"
-#: 05100000.xhp
+#: 01010304.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3146856\n"
+"01010304.xhp\n"
+"par_id3151097\n"
"2\n"
"help.text"
-msgid "Set the font size for the selected text."
-msgstr "Đặt kích cỡ phông cho văn bản đã chọn."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Number Format Codes"
-msgstr "Mã định dạng con số"
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"bm_id3153514\n"
-"help.text"
-msgid "<bookmark_value>format codes; numbers</bookmark_value><bookmark_value>conditions; in number formats</bookmark_value><bookmark_value>number formats; codes</bookmark_value><bookmark_value>currency formats</bookmark_value><bookmark_value>formats;of currencies/date/time</bookmark_value><bookmark_value>numbers; date, time and currency formats</bookmark_value><bookmark_value>Euro; currency formats</bookmark_value><bookmark_value>date formats</bookmark_value><bookmark_value>times, formats</bookmark_value>"
-msgstr "<bookmark_value>mã định dạng; con số</bookmark_value><bookmark_value>điều kiện; trong định dạng con số</bookmark_value><bookmark_value>định dạng con số; mã</bookmark_value><bookmark_value>định dạng tiền tệ</bookmark_value><bookmark_value>định dạng;của tiền tệ/ngày/giờ</bookmark_value><bookmark_value>con số; định dạng ngày tháng, thời gian và tiền tệ</bookmark_value><bookmark_value>đồng Euro; định dạng tiền tệ</bookmark_value><bookmark_value>định dạng ngày tháng</bookmark_value><bookmark_value>thời gian, định dạng</bookmark_value><bookmark_value>đồng Âu; định dạng tiền tệ</bookmark_value>"
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"hd_id3153514\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link></variable>"
-msgstr "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Mã định dạng con số\">Mã định dạng con số</link></variable>"
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3150467\n"
-"88\n"
-"help.text"
-msgid "Number format codes can consist of up to three sections separated by a semicolon (;)."
-msgstr "Mã định dạng con số có thể chứa đến ba phần định giới bằng dấu chấm phẩy « ; »."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3150146\n"
-"108\n"
-"help.text"
-msgid "In a number format code with two sections, the first section applies to positive values and zero, and the second section applies to negative values."
-msgstr "Trong mã định dạng con số có hai phần, phần đầu áp dụng cho các giá trị dương và số không, còn phần cuối áp dụng cho các giá trị âm."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3158442\n"
-"109\n"
-"help.text"
-msgid "In a number format code with three sections, the first section applies to positive values, the second section to negative values, and the third section to the value zero."
-msgstr "Trong mã định dạng con số có ba phần, phần thứ nhất áp dụng cho các giá trị dương, phần thứ hai áp dụng cho các giá trị âm, và phần thứ ba áp dụng cho số không."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3155069\n"
-"110\n"
-"help.text"
-msgid "You can also assign conditions to the three sections, so that the format is only applied if a condition is met."
-msgstr "Bạn cũng có thể gán điều kiện cho ba phần này, để mà định dạng chỉ được áp dụng nếu thỏa điều kiện."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"hd_id3151262\n"
-"229\n"
-"help.text"
-msgid "Decimal Places and Significant Digits"
-msgstr "Lần số và Số lẻ"
+msgid "<ahelp hid=\"\">Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
+msgstr "<ahelp hid=\"\">Chứa các thông tin liên lạc cho danh thiếp dùng một bố tri từ phân loại « Business Card, Work » (danh thiếp, việc làm). Bố trí danh thiếp được chọn trên thẻ <emph>Danh thiếp</emph>.</ahelp>"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153624\n"
+"01010304.xhp\n"
+"hd_id3149549\n"
"3\n"
"help.text"
-msgid "Use zero (0) or the number sign (#) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format."
-msgstr "Hãy dùng số không (0) hay ký hiệu con số (#) làm bộ giữ chỗ trong mã định dạng con số để đại diện con số. Dấu thăng (#) chỉ hiển thị số lẻ, còn số không (0) hiển thị số không nếu con số có ít chữ số hơn định dạng con số."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3153323\n"
-"107\n"
-"help.text"
-msgid "Use question marks (?) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
-msgstr "Dùng dấu hỏi (?) để đại diện số chữ số phù hợp với tử số và mẫu số của phân số. Phân số không thỏa điều kiện này thì được hiển thị dạng con số với chấm động."
+msgid "Business data"
+msgstr "Dữ liệu kinh doanh"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148440\n"
+"01010304.xhp\n"
+"par_id3156027\n"
"4\n"
"help.text"
-msgid "If a number contains more digits to the right of the decimal delimiter than there are placeholders in the format, the number is rounded accordingly. If a number contains more digits to the left of the decimal delimiter than there are placeholders in the format, the entire number is displayed. Use the following list as a guide for using placeholders when you create a number format code:"
-msgstr "Nếu con số chứa số chữ số bên phải dấu tách thập phân hơn số dấu giữ chỗ trong định dạng, con số này bị làm tròn một cách tương ứng. Nếu con số chứa số chữ số bên trái dấu tách thập phân hơn số dấu giữ chỗ trong định dạng, toàn con số được hiển thị. Danh sách theo đây giúp bạn dùng bộ giữ chỗ khi tao mã định dạng con số."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3150902\n"
-"86\n"
-"help.text"
-msgid "Placeholders"
-msgstr "Bộ giữ chỗ"
+msgid "Enter the contact information that you want to include on your business card."
+msgstr "Nhập thông tin liên lạc bạn muốn thấy trên danh thiếp của bạn."
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157896\n"
-"87\n"
+"01010304.xhp\n"
+"par_id3155892\n"
+"17\n"
"help.text"
-msgid "Explanation"
-msgstr "Giải thích"
+msgid "If you want to include your name on a business card, enter your name on the <emph>Private </emph>tab. Then choose a layout on the <emph>Business Cards </emph>tab that includes a name placeholder."
+msgstr "Muốn thấy tên của bạn trên một danh thiếp thì nhập tên vào thẻ <emph>Cá nhân</emph>. Sau đó, trên thẻ <emph>Danh thiếp </emph>, chọn một bố trí chứa một bộ giữ chỗ cho tên."
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152801\n"
+"01010304.xhp\n"
+"hd_id3150355\n"
"5\n"
"help.text"
-msgid "#"
-msgstr "#"
+msgid "Company 2nd line"
+msgstr "Công ty (dòng 2)"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145090\n"
+"01010304.xhp\n"
+"par_id3153031\n"
"6\n"
"help.text"
-msgid "Does not display extra zeros."
-msgstr "Không hiển thị thêm số không."
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_COMP_EXT\">Enter additional company details.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_COMP_EXT\">Nhập thêm thông tin về công ty.</ahelp>"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147088\n"
+"01010304.xhp\n"
+"hd_id3150771\n"
"7\n"
"help.text"
-msgid "0 (Zero)"
-msgstr "0 (Số không)"
+msgid "Slogan"
+msgstr "Khẩu hiệu"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150774\n"
+"01010304.xhp\n"
+"par_id3156327\n"
"8\n"
"help.text"
-msgid "Displays extra zeros if the number has less places than zeros in the format."
-msgstr "Hiển thị thêm số không nếu con số có ít lần số hơn các số không trong định dạng."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_idN1087E\n"
-"help.text"
-msgid "Examples"
-msgstr "Thí dụ"
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_SLOGAN\">Enter the slogan of your company.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_SLOGAN\">Nhập khẩu hiệu của công ty của bạn.</ahelp>"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149182\n"
+"01010304.xhp\n"
+"hd_id3153146\n"
"9\n"
"help.text"
-msgid "Number Format"
-msgstr "Định dạng số"
+msgid "Country"
+msgstr "Quốc gia"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154749\n"
+"01010304.xhp\n"
+"par_id3155449\n"
"10\n"
"help.text"
-msgid "Format Code"
-msgstr "Mã định dạng"
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_STATE\">Enter the name of the country where your business is located.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_STATE\">Nhập tên của nước công ty của bạn ở.</ahelp>"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148538\n"
+"01010304.xhp\n"
+"hd_id3154380\n"
"11\n"
"help.text"
-msgid "3456.78 as 3456.8"
-msgstr "3456,78 như 3456,8"
+msgid "Phone"
+msgstr "Điện thoại"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150355\n"
+"01010304.xhp\n"
+"par_id3154046\n"
"12\n"
"help.text"
-msgid "####.#"
-msgstr "####.#"
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_PHONE\">Enter your business telephone number.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_PHONE\">Nhập số điện thoại ở chỗ làm của bạn.</ahelp>"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154142\n"
+"01010304.xhp\n"
+"hd_id3158430\n"
"13\n"
"help.text"
-msgid "9.9 as 9.900"
-msgstr "9,9 như 9,900"
+msgid "Mobile"
+msgstr "Di động"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159256\n"
+"01010304.xhp\n"
+"par_id3156329\n"
"14\n"
"help.text"
-msgid "#.000"
-msgstr "#.000"
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_MOBILE\">Nhập số điện thoại di động việc làm của bạn.</ahelp>"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147077\n"
+"01010304.xhp\n"
+"hd_id3154306\n"
"15\n"
"help.text"
-msgid "13 as 13.0 and 1234.567 as 1234.57"
-msgstr "13 như 13,0 và 1234,567 như 1234,57"
+msgid "Homepage"
+msgstr "Trang chủ"
-#: 05020301.xhp
+#: 01010304.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155388\n"
+"01010304.xhp\n"
+"par_id3148563\n"
"16\n"
"help.text"
-msgid "#.0#"
-msgstr "#.0#"
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3149578\n"
-"17\n"
-"help.text"
-msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
-msgstr "5,75 như 5 3/4 và 6,3 như 6 3/10"
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_WWW\">Enter the address of your company's internet homepage.</ahelp>"
+msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_WWW\">Nhập địa chỉ của trang chủ Internet của công ty của bạn.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145315\n"
-"18\n"
+"01020000.xhp\n"
+"tit\n"
"help.text"
-msgid "# ???/???"
-msgstr "# ???/???"
+msgid "Open"
+msgstr "Mở"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156152\n"
-"19\n"
+"01020000.xhp\n"
+"bm_id3145211\n"
"help.text"
-msgid ".5 as 0.5"
-msgstr ",5 như 0,5"
+msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149762\n"
-"20\n"
+"01020000.xhp\n"
+"hd_id3146936\n"
+"1\n"
"help.text"
-msgid "0.##"
-msgstr "0.##"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Mở\">Mở</link>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3149276\n"
-"230\n"
+"01020000.xhp\n"
+"par_id3151191\n"
+"2\n"
"help.text"
-msgid "Thousands Separator"
-msgstr "Dấu tách phần nghìn"
+msgid "<variable id=\"oeffnentext\"><ahelp hid=\"HID_EXPLORERDLG_FILE\">Opens or imports a file.</ahelp></variable>"
+msgstr "<variable id=\"oeffnentext\"><ahelp hid=\"HID_EXPLORERDLG_FILE\">Mở hay nhập khẩu một tập tin.</ahelp></variable>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154380\n"
-"21\n"
+"01020000.xhp\n"
+"par_id3149877\n"
+"109\n"
"help.text"
-msgid "Depending on your language setting, you can use a comma or a period as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000."
-msgstr "Phụ thuộc vào thiết lập ngôn ngữ, bạn có thể dùng dấu phẩy (v.d. tiếng Anh) hay dấu chấm (v.d. tiếng Việt) làm dấu tách phần nghìn. Cũng có thể dùng dấu tách để giảm kích cỡ con số được hiển thị theo bội số cho 1000."
+msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154905\n"
-"22\n"
+"01020000.xhp\n"
+"par_id3150713\n"
+"52\n"
"help.text"
-msgid "Number Format"
-msgstr "Định dạng số"
+msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
+msgstr "Tập tin cần mở cũng chứa <emph>Kiểu dáng</emph> thì một số <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"quy tắc đặc biệt\">quy tắc đặc biệt</link> có tác động."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150822\n"
-"23\n"
+"01020000.xhp\n"
+"hd_id3147250\n"
+"11\n"
"help.text"
-msgid "Format Code"
-msgstr "Mã định dạng"
+msgid "Up One Level"
+msgstr "Lên một bậc"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147264\n"
-"24\n"
+"01020000.xhp\n"
+"par_id3147226\n"
+"12\n"
"help.text"
-msgid "15000 as 15,000"
-msgstr "15000 như 15.000"
+msgid "<ahelp hid=\"SVTOOLS_MENUBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_UP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151223\n"
-"25\n"
+"01020000.xhp\n"
+"hd_id3145211\n"
+"13\n"
"help.text"
-msgid "#,###"
-msgstr "#,###"
+msgid "Create New Folder"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154935\n"
-"26\n"
+"01020000.xhp\n"
+"par_id3153681\n"
+"14\n"
"help.text"
-msgid "16000 as 16"
-msgstr "16000 như 16"
+msgid "<ahelp hid=\"SVTOOLS_IMAGEBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_NEWFOLDER\">Creates a new folder.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153961\n"
-"27\n"
+"01020000.xhp\n"
+"hd_id3148538\n"
+"19\n"
"help.text"
-msgid "#,"
-msgstr "#,"
+msgid "Display area"
+msgstr "Vùng hiển thị"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3154836\n"
-"79\n"
+"01020000.xhp\n"
+"par_id3156113\n"
+"20\n"
"help.text"
-msgid "Including Text in Number Format Codes"
-msgstr "Gộp văn bản trong mã định dạng con số"
+msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3150398\n"
-"231\n"
+"01020000.xhp\n"
+"par_id3159256\n"
+"78\n"
"help.text"
-msgid "Text and Numbers"
-msgstr "Văn bản và Con số"
+msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
+msgstr "Để mở nhiều tài liệu đồng thời, mỗi tài liệu trong một cửa sổ riêng, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi nhấn vào mỗi tập tin, sau đó nhấn vào nút <emph>Mở</emph>."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154224\n"
-"80\n"
+"01020000.xhp\n"
+"par_id3154514\n"
+"110\n"
"help.text"
-msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\"."
-msgstr "Để gộp chữ cái trong một định dạng con số được áp dụng cho một ô bảng chứa con số, để một dấu nháy kép (\") vào phía trước và phía sau chuỗi văn bản, hoặc để một dấu xuyệc ngược (\\) vào phía trước một ký tự riêng lẻ. Chẳng hạn, gõ chuỗi <emph>#,# \"mét\"</emph> để hiển thị « 3,5 mét » hay <emph>#,# \\m</emph> để hiển thị « 3,5 m »."
+msgid "Click a column header to sort the files. Click again to reverse the sort order."
+msgstr "Nhấn vào đầu cột để sắp xếp các tập tin. Nhấn chuột lần nữa để đảo ngược thứ tự sắp xếp."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3148979\n"
-"232\n"
+"01020000.xhp\n"
+"par_id3149514\n"
+"111\n"
"help.text"
-msgid "Text and Text"
-msgstr "Văn bản và Văn bản"
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">Để xoá tập tin, nhấn-phải vào nó, sau đó chọn lệnh <emph>Xoá</emph>.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153338\n"
-"82\n"
+"01020000.xhp\n"
+"par_id3147618\n"
+"112\n"
"help.text"
-msgid "To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (\" \"), and then add an at sign (@). For example, enter <emph>\"Total for \"@</emph> to display \"Total for December\"."
-msgstr "Để gộp chữ cái trong một định dạng con số được áp dụng cho một ô bảng có thể chứa chữ cái, bao gồm chuỗi bằng dấu nháy kép « \" », sau đó thêm một dấu a-còng « @ ». Chẳng hạn, gõ « \"Tổng số trong \"@ » để hiển thị « Tổng số trong Tháng Mười Hai »."
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">Để xoá tập tin, nhấn-phải vào nó, sau đó chọn lệnh <emph>Thay tên</emph>.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3154330\n"
-"233\n"
+"01020000.xhp\n"
+"par_id3153331\n"
+"124\n"
"help.text"
-msgid "Spaces"
-msgstr "Dấu cách"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_YES\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_YES\" visibility=\"hidden\">Nhấn vào để xoá tập tin có tên hiển thị trong hộp thoại này.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156294\n"
-"81\n"
+"01020000.xhp\n"
+"par_id3161458\n"
+"125\n"
"help.text"
-msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
-msgstr "Để dùng một ký tự để xác định bề rộng của một dấu cách trong định dạng con số, gõ một gạch dưới « _ » có ký tự đó theo sau. Bề rộng của dấu cách biến đổi tùy theo bề rộng của ký tự bạn chọn. Chẳng hạn, <emph>_M</emph> sẽ tạo một dấu cách rộng hơn <emph>_i</emph>."
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_NO\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_NO\" visibility=\"hidden\">Nhấn vào để thôi thao tác xoá tập tin có tên hiển thị trong hộp thoại này.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3155994\n"
-"234\n"
+"01020000.xhp\n"
+"par_id3147531\n"
+"126\n"
"help.text"
-msgid "Color"
-msgstr "Màu"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_ALL\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_ALL\" visibility=\"hidden\">Nhấn vào để xoá tất cả các tập tin đã chọn.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156423\n"
-"28\n"
+"01020000.xhp\n"
+"hd_id3154280\n"
+"21\n"
"help.text"
-msgid "To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:"
-msgstr "Để đặt màu của một phần của mã định dạng con số, chèn vào một của những tên màu này [giữa hai dấu ngoặc vuông]:"
+msgid "File name"
+msgstr "Tên tập tin"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154630\n"
-"29\n"
+"01020000.xhp\n"
+"par_id3161656\n"
+"22\n"
"help.text"
-msgid "CYAN"
-msgstr "CYAN (màu xanh lá mạ)"
+msgid "<ahelp hid=\"HID_FILEDLG_AUTOCOMPLETEBOX\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEDLG_AUTOCOMPLETEBOX\">Nhập một tên tập tin, hay đường dẫn đến tập tin. Cũng có thể nhập một địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> mà bất đầu với phần giao thức (v.d. http://).</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148676\n"
-"30\n"
+"01020000.xhp\n"
+"par_id3150541\n"
+"72\n"
"help.text"
-msgid "GREEN"
-msgstr "GREEN (màu lục)"
+msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
+msgstr "Bạn cũng có thể sử dụng ký tự đại diện trong hộp <emph>Tên tập tin</emph>, để lọc danh sách tập tin được hiển thị."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154123\n"
-"31\n"
+"01020000.xhp\n"
+"par_id3153779\n"
+"24\n"
"help.text"
-msgid "BLACK"
-msgstr "BLACK (màu đen)"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149167\n"
-"32\n"
+"01020000.xhp\n"
+"hd_id3145117\n"
+"81\n"
"help.text"
-msgid "BLUE"
-msgstr "BLUE (màu xanh)"
+msgid "Version"
+msgstr "Phiên bản"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3158407\n"
-"33\n"
+"01020000.xhp\n"
+"par_id3149291\n"
+"82\n"
"help.text"
-msgid "MAGENTA"
-msgstr "MAGENTA (màu đỏ tươi)"
+msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
+msgstr "<ahelp hid=\"HID_FILEOPEN_VERSION\">Có nhiều phiên bản của tập tin đã chọn thì lựa chọn phiên bản bạn muốn mở.</ahelp> Bạn có khả năng lưu và tổ chức các phiên bản khác nhau của cùng một tài liệu, bằng cách chọn mục trình đơn <emph>Tập tin > Phiên bản</emph>. Tuy nhiên, các phiên bản tài liệu này được mở ở chế độ chỉ đọc (không thể ghi được)."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149560\n"
-"34\n"
+"01020000.xhp\n"
+"hd_id3150767\n"
+"25\n"
"help.text"
-msgid "RED"
-msgstr "RED (màu đỏ)"
+msgid "File type"
+msgstr "Kiểu tập tin"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147502\n"
-"35\n"
+"01020000.xhp\n"
+"par_id3153969\n"
+"26\n"
"help.text"
-msgid "WHITE"
-msgstr "WHITE (màu trắng)"
+msgid "<ahelp hid=\"SVTOOLS_LISTBOX_DLG_SVT_EXPLORERFILE_LB_EXPLORERFILE_FILETYPE\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153368\n"
-"36\n"
+"01020000.xhp\n"
+"hd_id3154125\n"
+"27\n"
"help.text"
-msgid "YELLOW"
-msgstr "YELLOW (màu vàng)"
+msgid "Open"
+msgstr "Mở"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3147435\n"
-"111\n"
+"01020000.xhp\n"
+"par_id3152933\n"
+"28\n"
"help.text"
-msgid "Conditions"
-msgstr "Điều kiện"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_OPEN\">Opens the selected document(s).</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_OPEN\">Mở (các) tài liệu đã chọn.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3148575\n"
-"235\n"
+"01020000.xhp\n"
+"hd_id3147085\n"
+"88\n"
"help.text"
-msgid "Conditional Brackets"
-msgstr "Dấu ngoặc vu điều kiện"
+msgid "Insert"
+msgstr "Chèn"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155312\n"
-"112\n"
+"01020000.xhp\n"
+"par_id3156293\n"
+"89\n"
"help.text"
-msgid "You can define a number format so that it only applies when the condition that you specify is met. Conditions are enclosed by square brackets [ ]."
-msgstr "Bạn có thể xác định một định dạng con số để cho nó áp dụng chỉ khi thỏa điều kiện bạn ghi rõ. Điều kiện nằm [giữa dấu ngoặc vuông]."
+msgid "If you opened the dialog by choosing <emph>Insert - File</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
+msgstr "Nếu bạn đã mở hộp thoại này bằng cách chọn lệnh <emph>Chèn > Tập tin</emph>, cái nút <emph>Mở</emph> thật có nhãn <emph>Chèn</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Chèn vào tài liệu hiện tại tập tin đã chọn, ở vị trí con trỏ.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159179\n"
-"115\n"
+"01020000.xhp\n"
+"hd_id3144762\n"
+"35\n"
"help.text"
-msgid "You can use any combination of numbers and the <, <=, >, >=, = and <> operators."
-msgstr "Bạn có thể sử dụng bất cứ tổ hợp nào các con số và toán tử <, <=, >, >=, =, <> ."
+msgid "Read-only"
+msgstr "Chỉ đọc"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159196\n"
-"236\n"
+"01020000.xhp\n"
+"par_id3145785\n"
+"36\n"
"help.text"
-msgid "For example, if you want to apply different colors to different temperature data, enter:"
-msgstr "Chẳng hạn, nếu bạn muốn áp dụng các màu khác nhau cho dữ liệu nhiệt độ khác nhau, nhập:"
+msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEOPEN_READONLY\">Mở tập tin ở chế độ chỉ đọc (không thể ghi được).</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150872\n"
+"01020000.xhp\n"
+"hd_id3149984\n"
"113\n"
"help.text"
-msgid "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
-msgstr "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
+msgid "Play"
+msgstr "Phát"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157870\n"
+"01020000.xhp\n"
+"par_id3147289\n"
"114\n"
"help.text"
-msgid "All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red."
-msgstr "Nhiệt độ dưới số không thì màu xanh, nhiệt độ giữa 0 và 30ºC thì màu đen, và nhiệt độ trên 30ºC thì màu đỏ."
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"hd_id3154833\n"
-"90\n"
-"help.text"
-msgid "Positive and Negative Numbers"
-msgstr "Con số Dương và Âm"
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3147295\n"
-"91\n"
-"help.text"
-msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
-msgstr "Để xác định định dạng con số mà thêm chuỗi khác vào con số phụ thuộc vào nó là số dương (+ plus), số âm (- minus) hay số bằng số không (vô giá trị: null), dùng định dạng này:"
-
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3153727\n"
-"92\n"
-"help.text"
-msgid "\"plus\" 0;\"minus\" 0;\"null\" 0"
-msgstr "\"plus\" 0;\"minus\" 0;\"null\" 0"
+msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Phát tập tin âm thanh đã chọn. Nhấn chuột lần nữa để dừng phát.</ahelp>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
+"01020000.xhp\n"
"hd_id3149260\n"
-"83\n"
+"53\n"
"help.text"
-msgid "Percentages and Scientific Notation"
-msgstr "Phần trăm và Kiểu ghi Khoa học"
+msgid "Opening Documents With Templates"
+msgstr "Mở Tài liệu bằng Mẫu"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3147218\n"
-"237\n"
+"01020000.xhp\n"
+"par_id3145367\n"
+"40\n"
"help.text"
-msgid "Percentages"
-msgstr "Phần trăm"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151168\n"
-"84\n"
+"01020000.xhp\n"
+"par_id3151292\n"
+"120\n"
"help.text"
-msgid "To display numbers as percentages, add the percent sign (%) to the number format."
-msgstr "Để hiển thị số theo phần trăm, thêm ký hiệu phần trăm (%) cho định dạng số."
+msgid "the shared template folder"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3156005\n"
-"89\n"
+"01020000.xhp\n"
+"par_id3144442\n"
+"121\n"
"help.text"
-msgid "Scientific Notation"
-msgstr "Kiểu ghi Khoa học"
+msgid "the user template folder <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory</caseinline><defaultinline>in the Documents and Settings folder</defaultinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146923\n"
-"85\n"
+"01020000.xhp\n"
+"par_id3146905\n"
+"122\n"
"help.text"
-msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+."
-msgstr "Kiểu ghi khoa học thì cho pháp bạn viết con số rất lớn hay phân số rất nhỏ theo dạng tóm gọn. Chẳng hạn, 650000 kiểu ghi khoa học là « 6.5 × 10⁵ », và 0.000065 là « 6.5 × 10⁻⁵ ». Trong <item type=\"productname\">%PRODUCTNAME</item>, hai con số này được ghi dạng « 6.5E+5 » và « 6.5E-5 » riêng từng cái. Để tạo một định dạng con số mà hiển thị con số kiểu ghi khoa học, nhập một dấu thăng (#) hay số không (0), sau đó một của những mã này: E-, E+, e- hay e+."
+msgid "all template folders as defined in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\">%PRODUCTNAME - Paths</link></emph>"
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3159080\n"
-"98\n"
+"01020000.xhp\n"
+"par_id7375713\n"
"help.text"
-msgid "Number Format Codes of Currency Formats"
-msgstr "Mã định dạng con số của định dạng tiền tệ"
+msgid "When you use <item type=\"menuitem\">File - Template - Save</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147318\n"
-"99\n"
+"01020000.xhp\n"
+"par_id6930143\n"
"help.text"
-msgid "The default currency format for the cells in your spreadsheet is determined by the regional setting of your operating system. If you want, you can apply a custom currency symbol to a cell. For example, enter #,##0.00 € to display 4.50 € (Euros)."
-msgstr "Định dạng tiền tệ mặc định cho các ô trên bảng tính của bạn được xác định tùy theo thiết lập miền địa phương (locale) của hệ điều hành. Bạn cũng có thể áp dụng cho mỗi ô bảng một ký hiệu tiền tệ tự chọn. Chẳng hạn, nhập « #.##0,00 € » để hiển thị « 4.50 € » (đồng Âu, Euro)."
+msgid "When you use <item type=\"menuitem\">File - Save As</item> and select a template filter to save a template at any other folder that is not in the list, then the documents based on that template will not be checked."
+msgstr ""
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150032\n"
-"167\n"
+"01020000.xhp\n"
+"par_id3150105\n"
+"73\n"
"help.text"
-msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
-msgstr "Bạn cũng có thể ghi rõ riêng thiết lập miền địa phương cho tiền tệ, bằng cách nhập vào phía sau ký hiệu mã miền địa phương của quốc gia. Chẳng hạn, « [$€-407] » đại diện đồng Âu tại Đức. Để xem mã miền địa phương của quốc gia, chọn quốc gia đó trong danh sách các <emph>Ngôn ngữ</emph> trên thẻ <emph>Số</emph> của hộp thoại <emph>Định dạng ô</emph>."
+msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
+msgstr "Khi bạn mở một tài liệu mà được tạo dựa vào « mẫu dính » (như xác định trên), <item type=\"productname\">%PRODUCTNAME</item> kiểm tra nếu mẫu đã bị sửa đổi chưa (kể từ lần cuối cùng mở tài liệu). Mẫu bị sửa đổi thì hiển thị một hộp thoại cho bạn chọn những kiểu dáng nào cần áp dụng cho tài liệu."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3157309\n"
-"238\n"
+"01020000.xhp\n"
+"par_id3153096\n"
+"74\n"
"help.text"
-msgid "Date and Time Formats"
-msgstr "Định dạng Ngày/Giờ"
+msgid "To apply the new styles from the template to the document, click <emph>Yes</emph>."
+msgstr "Để áp dụng những kiểu dáng mới từ mẫu đến tài liệu, nhấn vào nút <emph>Có</emph>."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3153740\n"
-"37\n"
+"01020000.xhp\n"
+"par_id3147581\n"
+"75\n"
"help.text"
-msgid "Date Formats"
-msgstr "Định dạng ngày tháng"
+msgid "To retain the styles that are currently used in the document, click <emph>No</emph>."
+msgstr "Để giữ lại các kiểu dáng được dùng hiện thời trong tài liệu, nhấn vào nút <emph>Không</emph>."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152791\n"
-"38\n"
+"01020000.xhp\n"
+"par_id3154988\n"
+"44\n"
"help.text"
-msgid "To display days, months and years, use the following number format codes."
-msgstr "Để hiển thị ngày, tháng và năm, dùng những mã định dạng theo đây."
+msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened."
+msgstr "Nếu tài liệu được tạo dựa vào một mẫu không còn tìm thấy lại, một hộp thoại sẽ mở để yêu cầu bạn ngụ ý thủ tục thích hợp với lần kế tiếp mở tài liệu đó."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id610980\n"
+"01020000.xhp\n"
+"par_id3151351\n"
+"91\n"
"help.text"
-msgid "Not all format codes give meaningful results for all languages."
-msgstr "Không phải tất cả các mã định dạng trả về kết quả có ích cho mọi ngôn ngữ."
+msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
+msgstr "Để ngắt liên kết giữa tài liệu và mẫu bị thiếu, nhấn vào nút <emph>Không</emph>; không thì <item type=\"productname\">%PRODUCTNAME</item> vẫn còn tìm mẫu lần kế tiếp bạn mở tài liệu đó."
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152376\n"
-"39\n"
+"01020000.xhp\n"
+"par_id3149417\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "<link href=\"text/shared/guide/doc_open.xhp\" name=\"Opening Documents\">Opening Documents</link>"
+msgstr "<link href=\"text/shared/guide/doc_open.xhp\" name=\"Mở tài liệu\">Mở tài liệu</link>"
-#: 05020301.xhp
+#: 01020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159130\n"
-"40\n"
+"01020000.xhp\n"
+"par_id3153848\n"
"help.text"
-msgid "Format Code"
-msgstr "Mã định dạng"
+msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
+msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Bộ lọc Nhập/Xuất khẩu\">Bộ lọc Nhập/Xuất khẩu</link>"
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147380\n"
-"41\n"
+"01020101.xhp\n"
+"tit\n"
"help.text"
-msgid "Month as 3."
-msgstr "Tháng có một chữ số : Tháng Ba là « 3 »."
+msgid "Select Path"
+msgstr "Chọn đường dẫn"
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146928\n"
-"42\n"
+"01020101.xhp\n"
+"hd_id3150620\n"
+"1\n"
"help.text"
-msgid "M"
-msgstr "M"
+msgid "Select Path"
+msgstr "Chọn đường dẫn"
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145594\n"
-"43\n"
+"01020101.xhp\n"
+"par_id3149962\n"
+"2\n"
"help.text"
-msgid "Month as 03."
-msgstr "Tháng có hai chữ số : Tháng Ba là « 03 »."
+msgid "Sets file paths."
+msgstr "Đặt đường dẫn đến tập tin."
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153052\n"
-"44\n"
+"01020101.xhp\n"
+"hd_id3152821\n"
+"4\n"
"help.text"
-msgid "MM"
-msgstr "MM"
+msgid "Select"
+msgstr "Chọn"
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145728\n"
-"45\n"
+"01020101.xhp\n"
+"par_id3150902\n"
+"5\n"
"help.text"
-msgid "Month as Jan-Dec"
-msgstr "Tháng là viết tắt : Tháng Ba là « Th3 »."
+msgid "<ahelp hid=\"HID_FILEDLG_PATH_BTN\" visibility=\"visible\">Selects the indicated path.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEDLG_PATH_BTN\" visibility=\"visible\">Chọn đường dẫn được ngụ ý.</ahelp>"
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151073\n"
-"46\n"
+"01020101.xhp\n"
+"hd_id3148585\n"
+"6\n"
"help.text"
-msgid "MMM"
-msgstr "MMM"
+msgid "Path:"
+msgstr "Đường dẫn:"
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149909\n"
-"47\n"
+"01020101.xhp\n"
+"par_id3149346\n"
+"7\n"
"help.text"
-msgid "Month as January-December"
-msgstr "Tháng hoàn toàn : Tháng Ba là « Tháng Ba »."
+msgid "<ahelp hid=\"HID_FILEDLG_PATH_FILENAME\" visibility=\"visible\">Enter or select the path from the list.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEDLG_PATH_FILENAME\" visibility=\"visible\">Nhập đường dẫn, hoặc chọn một đường dẫn trong danh sách.</ahelp>"
-#: 05020301.xhp
+#: 01020101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155318\n"
-"48\n"
+"01020101.xhp\n"
+"par_id3149750\n"
"help.text"
-msgid "MMMM"
-msgstr "MMMM"
+msgid "<link name=\"Open Dialog\" href=\"text/shared/01/01020000.xhp\"><emph>Open</emph> Dialog</link>"
+msgstr "<link name=\"Hộp thoại Mở\" href=\"text/shared/01/01020000.xhp\">Hộp thoại <emph>Mở</emph></link>"
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151218\n"
-"116\n"
+"01020103.xhp\n"
+"tit\n"
"help.text"
-msgid "First letter of Name of Month"
-msgstr "Chữ đầu của tên tháng"
+msgid "Filter Selection"
+msgstr "Chọn bộ lọc"
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150420\n"
-"117\n"
+"01020103.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "MMMMM"
-msgstr "MMMMM"
+msgid "Filter Selection"
+msgstr "Chọn bộ lọc"
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154501\n"
-"49\n"
+"01020103.xhp\n"
+"par_id3154926\n"
+"2\n"
"help.text"
-msgid "Day as 2"
-msgstr "Ngày có một chữ số : ngày hai là « 2 »."
+msgid "Allows you to select an import filter."
+msgstr "Cho phép bạn chọn một bộ lọc nhập khẩu."
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156181\n"
-"50\n"
+"01020103.xhp\n"
+"hd_id3151100\n"
+"4\n"
"help.text"
-msgid "D"
-msgstr "D"
+msgid "Filter list"
+msgstr "Danh sách bộ lọc"
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146969\n"
-"51\n"
+"01020103.xhp\n"
+"par_id3159201\n"
+"5\n"
"help.text"
-msgid "Day as 02"
-msgstr "Ngày có hai chữ số : ngày hai là « 02 »."
+msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_FILTER_SELECT:LB_DLG_LISTBOX\">Select the import filter for the file that you want to open.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:LISTBOX:DLG_FILTER_SELECT:LB_DLG_LISTBOX\">Chọn bộ lọc nhập khẩu cho tập tin bạn muốn mở.</ahelp>"
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156358\n"
-"52\n"
+"01020103.xhp\n"
+"par_id3152918\n"
+"6\n"
"help.text"
-msgid "DD"
-msgstr "DD"
+msgid "If $[officename] does not recognize the file type of the document that your want to open, try any of the following:"
+msgstr "Nếu $[officename] không nhận dạng kiểu tập tin của tài liệu bạn muốn mở, làm một của những hành động này:"
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148495\n"
-"53\n"
+"01020103.xhp\n"
+"par_id3152924\n"
+"7\n"
"help.text"
-msgid "Day as Sun-Sat"
-msgstr "Hôm viết tắt : hôm Thứ Hai là « T2 », hôm Chủ Nhật là « CN »."
+msgid "Select the import filter from the list."
+msgstr "Chọn bộ lọc nhập khẩu trong danh sách."
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3161665\n"
-"54\n"
+"01020103.xhp\n"
+"par_id3155892\n"
+"9\n"
"help.text"
-msgid "NN or DDD"
-msgstr "NN hay DDD"
+msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a (*.doc) extension for $[officename] to use the appropriate filter."
+msgstr "Kiểm tra xem phần mở rộng tập tin tương ứng với kiểu tài liệu. Chẳng hạn, tài liệu Microsoft Word phải có phần mở rộng « .doc » để $[officename] dùng bộ lọc thích hợp. (Để tìm thêm thông tin về bất cứ phần mở rộng tập tin nào, xem địa chỉ \"http://filext.com/\".)"
-#: 05020301.xhp
+#: 01020103.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154272\n"
-"118\n"
+"01020103.xhp\n"
+"par_id3147571\n"
+"8\n"
"help.text"
-msgid "Day as Sunday to Saturday"
-msgstr "Hôm hoàn toàn: hôm Thứ Hai là « Thứ Hai », hôm Chủ Nhật là « Chủ Nhật »."
+msgid "Install a missing import filter with the <emph>$[officename] Setup</emph> program."
+msgstr "Cài đặt bộ lọc nhập khẩu thêm, dùng chương trình thiết lập <emph>$[officename] Setup</emph>."
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145164\n"
-"119\n"
+"01050000.xhp\n"
+"tit\n"
"help.text"
-msgid "NNN or DDDD"
-msgstr "NNN hay DDDD"
+msgid "Close"
+msgstr "Đóng"
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146791\n"
-"55\n"
+"01050000.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "Day followed by comma, as in \"Sunday,\""
-msgstr "Hôm có dấu phẩy theo sau, v.d. « Chủ Nhật, »"
+msgid "<bookmark_value>documents; closing</bookmark_value><bookmark_value>closing;documents</bookmark_value>"
+msgstr "<bookmark_value>đối tượng; chỉnh sửa</bookmark_value><bookmark_value>đóng;tài liệu</bookmark_value>"
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146081\n"
-"56\n"
+"01050000.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "NNNN"
-msgstr "NNNN"
+msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close\">Close</link>"
+msgstr "<link href=\"text/shared/01/01050000.xhp\" name=\"Đóng\">Đóng</link>"
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156275\n"
-"57\n"
+"01050000.xhp\n"
+"par_id3148731\n"
+"2\n"
"help.text"
-msgid "Year as 00-99"
-msgstr "Năm có hai chữ số : « 00-99 »."
+msgid "<ahelp hid=\".uno:CloseDoc\">Closes the current document without exiting the program.</ahelp>"
+msgstr "<ahelp hid=\".uno:CloseDoc\">Đóng tài liệu hiện tại mà không thoát khỏi chương trình.</ahelp>"
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3143236\n"
-"58\n"
+"01050000.xhp\n"
+"par_id3149095\n"
+"7\n"
"help.text"
-msgid "YY"
-msgstr "YY"
+msgid "The <emph>Close </emph>command closes all of the open windows for the current document."
+msgstr "Lệnh <emph>Đóng</emph> thì đóng tất cả các cửa sổ còn mở đối với tài liệu hiện tại."
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148408\n"
-"59\n"
+"01050000.xhp\n"
+"par_id3148620\n"
+"4\n"
"help.text"
-msgid "Year as 1900-2078"
-msgstr "Năm có bốn chữ số : « 1900-2078 »"
+msgid "If you have made changes to the current document, you are prompted if you want to <link href=\"text/shared/01/01060000.xhp\" name=\"save\">save</link> your changes."
+msgstr "Nếu bạn đã thay đổi tài liệu hiện tại, chương trình sẽ nhắc bạn <link href=\"text/shared/01/01060000.xhp\" name=\"lưu\">lưu</link> lại các thay đổi."
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151358\n"
-"60\n"
+"01050000.xhp\n"
+"par_id3159201\n"
+"8\n"
"help.text"
-msgid "YYYY"
-msgstr "YYYY"
+msgid "When you close the last open document window, you see the <link href=\"text/shared/guide/startcenter.xhp\">Start Center</link>."
+msgstr "Nếu như bạn đóng cửa sổ tài liệu còn mở duy nhất còn lại, <link href=\"text/shared/guide/startcenter.xhp\">Trang bắt đầu</link> sẽ được hiển thị."
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153355\n"
-"96\n"
+"01050000.xhp\n"
+"par_id3153821\n"
+"9\n"
"help.text"
-msgid "Calendar week"
-msgstr "Tuần của lịch"
+msgid "<link href=\"text/shared/02/10100000.xhp\" name=\"Close the current window\">Close the current window</link>"
+msgstr "<link href=\"text/shared/02/10100000.xhp\" name=\"Đóng cửa sổ hiện tại\">Đóng cửa sổ hiện tại</link>"
-#: 05020301.xhp
+#: 01050000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150744\n"
-"97\n"
+"01050000.xhp\n"
+"par_id3154750\n"
+"10\n"
"help.text"
-msgid "WW"
-msgstr "WW"
+msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit $[officename]\">Exit $[officename]</link>"
+msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Thoát khỏi $[officename]\">Thoát khỏi $[officename]</link>"
-#: 05020301.xhp
+#: 01060000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154302\n"
-"103\n"
+"01060000.xhp\n"
+"tit\n"
"help.text"
-msgid "Quarterly as Q1 to Q4"
-msgstr "Hàng quý: « Q1 » đến « Q4 »"
+msgid "Save"
+msgstr "Lưu"
-#: 05020301.xhp
+#: 01060000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159266\n"
-"104\n"
+"01060000.xhp\n"
+"hd_id3147000\n"
+"5\n"
"help.text"
-msgid "Q"
-msgstr "Q"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgstr "<link href=\"text/shared/01/01060000.xhp\" name=\"Lưu\">Lưu</link>"
-#: 05020301.xhp
+#: 01060000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147583\n"
-"105\n"
+"01060000.xhp\n"
+"par_id3153255\n"
+"1\n"
"help.text"
-msgid "Quarterly as 1st quarter to 4th quarter"
-msgstr "Hàng quý: « 1st quarter » đến « 4th quarter »"
+msgid "<ahelp hid=\".uno:Save\">Saves the current document.</ahelp>"
+msgstr "<ahelp hid=\".uno:Save\">Lưu lại tài liệu hiện tại.</ahelp>"
-#: 05020301.xhp
+#: 01060000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146918\n"
-"106\n"
+"01060000.xhp\n"
+"par_id3152551\n"
+"4\n"
"help.text"
-msgid "QQ"
-msgstr "QQ"
+msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
+msgstr "Khi bạn chỉnh sửa mục nhập Tốc Ký, câu lệnh này trở thành <emph>Lưu Tốc ký</emph>."
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147534\n"
-"120\n"
+"01070000.xhp\n"
+"tit\n"
"help.text"
-msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
-msgstr "Đại tùy theo lịch Gengou Nhật (ký tự đơn, giá trị có thể là: M, T, S, H)"
+msgid "Save As"
+msgstr "Lưu dạng"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151249\n"
-"121\n"
+"01070000.xhp\n"
+"bm_id3151260\n"
"help.text"
-msgid "G"
-msgstr "G"
+msgid "<bookmark_value>saving as command; precautions</bookmark_value>"
+msgstr "<bookmark_value>câu lệnh Lưu dạng; sự phòng ngừa</bookmark_value>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3163806\n"
-"122\n"
+"01070000.xhp\n"
+"hd_id3151260\n"
+"1\n"
"help.text"
-msgid "Era, abbreviation"
-msgstr "Đại viết tắt"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Lưu dạng\">Lưu dạng</link>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155962\n"
-"123\n"
+"01070000.xhp\n"
+"par_id3146856\n"
+"2\n"
"help.text"
-msgid "GG"
-msgstr "GG"
+msgid "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Saves the current document in a different location, or with a different file name or file type.</ahelp></variable>"
+msgstr "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Lưu tài liệu hiện tại vào vị trí khác, với tên tập tin khác, và/hay với kiểu tập tin khác.</ahelp></variable>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151187\n"
-"124\n"
+"01070000.xhp\n"
+"par_id3155934\n"
+"64\n"
"help.text"
-msgid "Era, full name"
-msgstr "Đại, tên đầy đủ"
+msgid "The following sections describe the <emph><item type=\"productname\">%PRODUCTNAME</item> Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149568\n"
-"125\n"
+"01070000.xhp\n"
+"par_id3147654\n"
+"59\n"
"help.text"
-msgid "GGG"
-msgstr "GGG"
+msgid "To save a document as a template, use the command <emph>File - Save As Template</emph>."
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147344\n"
-"126\n"
+"01070000.xhp\n"
+"hd_id3146774\n"
"help.text"
-msgid "Number of the year within an era, without a leading zero for single-digit years"
-msgstr "Số của năm bên trong đại, không có số không đi trước cho năm chữ số đơn"
+msgid "Connect To Server"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147255\n"
-"127\n"
+"01070000.xhp\n"
+"par_id3153820\n"
"help.text"
-msgid "E"
-msgstr "E"
+msgid "<ahelp hid=\".\">Opens a dialog where you can set up connection to various types of servers, including WebDAV, FTP, SSH, Windows Share and CMIS.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148487\n"
-"128\n"
+"01070000.xhp\n"
+"hd_id3146775\n"
+"19\n"
"help.text"
-msgid "Number of the year within an era, with a leading zero for single-digit years"
-msgstr "Số của năm bên trong đại, có số không đi trước cho năm chữ số đơn"
+msgid "Up One Level"
+msgstr "Lên một bậc"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150298\n"
-"129\n"
+"01070000.xhp\n"
+"par_id3153821\n"
+"20\n"
"help.text"
-msgid "EE or R"
-msgstr "EE hay R"
+msgid "<ahelp hid=\"HID_FILESAVE_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152861\n"
-"138\n"
+"01070000.xhp\n"
+"hd_id3159157\n"
+"21\n"
"help.text"
-msgid "Era, full name and year"
-msgstr "Đại, tên đầy đủ và năm"
+msgid "Create New Folder"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149926\n"
-"139\n"
+"01070000.xhp\n"
+"par_id3155583\n"
+"22\n"
"help.text"
-msgid "RR or GGGEE"
-msgstr "RR hay GGGEE"
+msgid "<ahelp hid=\"HID_FILESAVE_CREATEDIRECTORY\">Creates a new folder.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811423518\n"
+"01070000.xhp\n"
+"hd_id3155627\n"
"help.text"
-msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you will need to know the formatting codes used in that other locale."
-msgstr "Những mã định dạng được lập danh sách ở trên sẽ có tác dụng với phiên bản của %PRODUCTNAME trong ngôn ngữ của bạn. Có điều nếu bạn cần chuyển dạng ngôn ngữ của %PRODUCTNAME sang một ngôn ngữ khác, bạn sẽ cần biết các mã định dạng sử dụng trong ngôn ngữ đó."
+msgid "Places area"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811423556\n"
+"01070000.xhp\n"
+"par_id3149901\n"
"help.text"
-msgid "For example, if your software is set to an English locale, and you want to format a year with four digits, you enter YYYY as a formatting code. When you switch to a German locale, you must use JJJJ instead. The following table lists only the localized differences."
-msgstr "Ví dụ, nếu bạn đang chọn ngôn ngữ tiếng Anh, và bạn muốn định dạng năm theo 4 chữ số, bạn sẽ điền YYYY như là mã định dạng. Khi bạn chuyển sang tiếng Đức bạn sẽ phải sử dụng JJJJ làm mã định dạng. Bảng sau đây lập danh sách những khác biệt giữa các phiên bản bản địa."
+msgid "<ahelp hid=\".\">Displays \"favourite\" places, i.e. shortcuts to local or remote locations.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563044\n"
+"01070000.xhp\n"
+"hd_id3155628\n"
+"29\n"
"help.text"
-msgid "Locale"
-msgstr "Ngôn ngữ"
+msgid "Display area"
+msgstr "Vùng hiển thị"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563137\n"
+"01070000.xhp\n"
+"par_id3149902\n"
+"30\n"
"help.text"
-msgid "Year"
-msgstr "Năm"
+msgid "<ahelp hid=\"HID_FILESAVE_FILEVIEW\">Displays the files and folders in the folder that you are in.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563164\n"
+"01070000.xhp\n"
+"hd_id3154810\n"
+"37\n"
"help.text"
-msgid "Month"
-msgstr "Tháng"
+msgid "File name"
+msgstr "Tên tập tin"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563128\n"
+"01070000.xhp\n"
+"par_id3153626\n"
+"38\n"
"help.text"
-msgid "Day"
-msgstr "Ngày"
+msgid "<ahelp hid=\"HID_FILESAVE_FILEURL\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_FILEURL\">Nhập một tên tập tin, hoặc đường dẫn đến tập tin. Cũng có thể nhập một địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> chỉ tới tập tin (địa chỉ này phải bao gồm phần giao thức, v.d. http://).</ahelp>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563135\n"
+"01070000.xhp\n"
+"hd_id3149669\n"
+"39\n"
"help.text"
-msgid "Hour"
-msgstr "Giờ"
+msgid "File type"
+msgstr "Kiểu tập tin"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563289\n"
+"01070000.xhp\n"
+"par_id3156343\n"
+"40\n"
"help.text"
-msgid "Day Of Week"
-msgstr "Ngày trong tuần"
+msgid "<ahelp hid=\"HID_FILESAVE_FILETYPE\">Select the file format for the document that you are saving.</ahelp> In the display area, only the documents with this file type are displayed. File types are described in <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>."
+msgstr "<ahelp hid=\"HID_FILESAVE_FILETYPE\">Chọn định dạng tập tin cho tài liệu bạn đang lưu.</ahelp> Trong vùng trình bày thì chỉ hiển thị những tài liệu có kiểu tập tin này. Các kiểu tập tin được diễn tả trong phần <link href=\"text/shared/00/00000020.xhp\" name=\"Thông tin về bộ lọc Nhập/Xuất khẩu\">Thông tin về bộ lọc Nhập/Xuất khẩu</link>."
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156322\n"
+"01070000.xhp\n"
+"par_id3145116\n"
+"41\n"
"help.text"
-msgid "Era"
-msgstr "Kỉ nguyên"
+msgid "Always save your document in a <item type=\"productname\">%PRODUCTNAME</item> file type before saving it to an external file type. When you export to an external file type, some formatting features may be lost."
+msgstr "Lúc nào cũng nên lưu tài liệu theo một kiểu tập tin <item type=\"productname\">%PRODUCTNAME</item> trước khi xuất khẩu theo kiểu tập tin bên ngoài. Khi bạn xuất theo một kiểu tập tin bên ngoài, một số tính năng định dạng có thể bị mất."
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563233\n"
+"01070000.xhp\n"
+"hd_id3147228\n"
+"42\n"
"help.text"
-msgid "English - en"
-msgstr "Tiếng Anh - en"
+msgid "Save"
+msgstr "Lưu"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563243\n"
+"01070000.xhp\n"
+"par_id3154068\n"
+"43\n"
"help.text"
-msgid "and all not listed locales"
-msgstr "và tất cả những ngôn ngữ không được hiển thị"
+msgid "<ahelp hid=\"HID_FILESAVE_DOSAVE\">Saves the file.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_DOSAVE\">Lưu lại tập tin.</ahelp>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563352\n"
+"01070000.xhp\n"
+"hd_id3145744\n"
+"44\n"
"help.text"
-msgid "Y"
-msgstr "Y"
+msgid "Save with password"
+msgstr "Lưu bằng mật khẩu"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563396\n"
+"01070000.xhp\n"
+"par_id3145152\n"
+"45\n"
"help.text"
-msgid "M"
-msgstr "M"
+msgid "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Protects the file with a <link href=\"text/shared/01/password_dlg.xhp\" name=\"password\">password</link> that must be entered before a user can open the file.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Bảo vệ tập tin bằng một <link href=\"text/shared/01/password_dlg.xhp\" name=\"mật khẩu\">mật khẩu</link> mà phải được nhập vào để mở tập tin.</ahelp>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563385\n"
+"01070000.xhp\n"
+"par_id3152920\n"
+"65\n"
"help.text"
-msgid "D"
-msgstr "D"
+msgid "Only documents using the <item type=\"productname\">%PRODUCTNAME</item> XML-based format can be saved with a password."
+msgstr "Chỉ tài liệu theo định dạng dựa vào XML của <item type=\"productname\">%PRODUCTNAME</item> có thể được lưu bằng mật khẩu."
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563472\n"
+"01070000.xhp\n"
+"hd_id3147502\n"
+"66\n"
"help.text"
-msgid "H"
-msgstr "H"
+msgid "Edit filter settings"
+msgstr "Sửa thiết lập lọc"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563430\n"
+"01070000.xhp\n"
+"par_id3152883\n"
+"67\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<ahelp hid=\"HID_FILESAVE_CUSTOMIZEFILTER\">Allows you to set the spreadsheet saving options for some types of data files.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_CUSTOMIZEFILTER\">Cho phép bạn đặt các tùy chọn về chức năng lưu bảng tính cho một số kiểu tập tin dữ liệu nào đó.</ahelp>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563488\n"
+"01070000.xhp\n"
+"hd_id3154988\n"
+"47\n"
"help.text"
-msgid "G"
-msgstr "G"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563484\n"
+"01070000.xhp\n"
+"par_id3159125\n"
+"48\n"
"help.text"
-msgid "German - de"
-msgstr "Tiếng Đức - de"
+msgid "<ahelp hid=\"HID_FILESAVE_SELECTION\">Exports only the selected graphic objects in <item type=\"productname\">%PRODUCTNAME</item> Draw and Impress to another format. If this box is not checked, the entire document is exported.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_SELECTION\">Xuất khẩu theo định dạng khác chỉ những đối tượng đồ họa đã chọn trong chương trình <item type=\"productname\">%PRODUCTNAME</item> Draw hay Impress. Không bật tùy chọn này thì xuất khẩu toàn tài liệu.</ahelp>"
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563518\n"
+"01070000.xhp\n"
+"par_id3148577\n"
+"70\n"
"help.text"
-msgid "J"
-msgstr "J"
+msgid "If you are exporting to any document file type, the entire document is exported."
+msgstr "Nếu bạn xuất khẩu theo bất cứ kiểu tập tin tài liệu nào thì xuất khẩu toàn tài liệu."
-#: 05020301.xhp
+#: 01070000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563735\n"
+"01070000.xhp\n"
+"par_id3146986\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export of Text Files\">Export of Text Files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Xuất khẩu Tập tin Văn bản\">Xuất khẩu Tập tin Văn bản</link>"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563823\n"
+"01070001.xhp\n"
+"tit\n"
"help.text"
-msgid "Netherlands - nl"
-msgstr "Hà Lan - nl"
+msgid "Export"
+msgstr "Xuất"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563852\n"
+"01070001.xhp\n"
+"bm_id3153383\n"
"help.text"
-msgid "J"
-msgstr "J"
+msgid "<bookmark_value>documents; exporting</bookmark_value><bookmark_value>converting; $[officename] documents</bookmark_value><bookmark_value>exporting;to foreign formats</bookmark_value>"
+msgstr "<bookmark_value>tài liệu; xuất khẩu</bookmark_value><bookmark_value>chuyển đổi; tài liệu $[officename]</bookmark_value><bookmark_value>xuất khẩu;theo định dạng bên ngoài</bookmark_value>"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563827\n"
+"01070001.xhp\n"
+"hd_id3153383\n"
+"13\n"
"help.text"
-msgid "U"
-msgstr "U"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Xuất\">Xuất</link>"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563916\n"
+"01070001.xhp\n"
+"par_id3149355\n"
+"1\n"
"help.text"
-msgid "French - fr"
-msgstr "Tiếng Pháp - fr"
+msgid "<variable id=\"exportieren\"><ahelp hid=\".uno:ExportTo\">Saves the current document with a different name and format to a location that you specify.</ahelp></variable>"
+msgstr "<variable id=\"exportieren\"><ahelp hid=\".uno:ExportTo\">Lưu tài liệu hiện tại với tên khác, định dạng khác và/hay vào vị trí bạn ghi rõ.</ahelp></variable>"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563970\n"
+"01070001.xhp\n"
+"par_id3150710\n"
+"2\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "The following sections describe the <emph>$[officename] Export</emph> dialog box. To activate the <emph>$[officename] Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"$[officename] - General\">$[officename] - General</link></emph>, and then select the <emph>Use $[officename] dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgstr ""
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563980\n"
+"01070001.xhp\n"
+"hd_id3150693\n"
+"4\n"
"help.text"
-msgid "J"
-msgstr "J"
+msgid "Up One Level"
+msgstr "Lên một bậc"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564065\n"
+"01070001.xhp\n"
+"hd_id3153312\n"
+"5\n"
"help.text"
-msgid "O"
-msgstr "O"
+msgid "Create New Directory"
+msgstr "Tạo thư mục mới"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156407\n"
+"01070001.xhp\n"
+"hd_id3155535\n"
+"6\n"
"help.text"
-msgid "Italian - it"
-msgstr "Tiếng Y - it"
+msgid "Default Directory"
+msgstr "Thư mục mặc định"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156403\n"
+"01070001.xhp\n"
+"hd_id3154317\n"
+"7\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "Display area"
+msgstr "Vùng hiển thị"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564042\n"
+"01070001.xhp\n"
+"hd_id3147209\n"
+"8\n"
"help.text"
-msgid "G"
-msgstr "G"
+msgid "File Name"
+msgstr "Tên tập tin"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156412\n"
+"01070001.xhp\n"
+"hd_id3152996\n"
+"9\n"
"help.text"
-msgid "O"
-msgstr "O"
+msgid "File Type"
+msgstr "Kiểu tập tin"
-#: 05020301.xhp
+#: 01070001.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564119\n"
+"01070001.xhp\n"
+"hd_id3148539\n"
+"10\n"
"help.text"
-msgid "X"
-msgstr "X"
+msgid "Export"
+msgstr "Xuất"
-#: 05020301.xhp
+#: 01100000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564197\n"
+"01100000.xhp\n"
+"tit\n"
"help.text"
-msgid "Portuguese - pt"
-msgstr "Tiếng Bồ Đào Nha - pt"
+msgid "Document Properties"
+msgstr "Thuộc tính Tài liệu"
-#: 05020301.xhp
+#: 01100000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564272\n"
+"01100000.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Document Properties\">Document Properties</link></variable>"
+msgstr ""
-#: 05020301.xhp
+#: 01100000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156423\n"
+"01100000.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "O"
-msgstr "O"
+msgid "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno:SetDocumentProperties\">Displays the properties for the current file, including statistics such as word count and the date the file was created.</ahelp></variable>"
+msgstr "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno:SetDocumentProperties\">Hiển thị các thuộc tính về tập tin hiện tại, bao gồm thống kê như tổng số từ và ngày tháng tạo tập tin.</ahelp></variable>"
-#: 05020301.xhp
+#: 01100000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564218\n"
+"01100000.xhp\n"
+"par_id3153748\n"
+"4\n"
"help.text"
-msgid "Spanish - es"
-msgstr "Tiếng Tây Ba Nha - es"
+msgid "The <emph>Properties</emph> dialog contains the following tab pages:"
+msgstr "Hộp thoại <emph>Thuộc tính</emph> chứa những trang thẻ này:"
-#: 05020301.xhp
+#: 01100000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564390\n"
+"01100000.xhp\n"
+"par_id3148643\n"
+"5\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "Depending on your access rights to the file, you might not see all of the tabs in the <emph>Properties</emph> dialog."
+msgstr "Phụ thuộc vào quyền truy cập đến tập tin của bạn, không phải tất cả các thẻ có thể hiển thị trong hộp thoại <emph>Thuộc tính</emph>."
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564319\n"
+"01100100.xhp\n"
+"tit\n"
"help.text"
-msgid "O"
-msgstr "O"
+msgid "Description"
+msgstr "Mô tả"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156433\n"
+"01100100.xhp\n"
+"hd_id3147588\n"
+"1\n"
"help.text"
-msgid "Danish - da"
-msgstr "Tiếng Đan Mạch - da"
+msgid "<link href=\"text/shared/01/01100100.xhp\" name=\"Description\">Description</link>"
+msgstr "<link href=\"text/shared/01/01100100.xhp\" name=\"Mô tả\">Mô tả</link>"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156444\n"
+"01100100.xhp\n"
+"par_id3154682\n"
+"2\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/DescriptionInfoPage\">Contains descriptive information about the document.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/descriptioninfopage/DescriptionInfoPage\">Chức thông tin diễn tả tài liệu.</ahelp>"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564448\n"
+"01100100.xhp\n"
+"hd_id3152372\n"
+"3\n"
"help.text"
-msgid "Norwegian - no, nb, nn"
-msgstr "Tiếng Nauy - no, nb, nn"
+msgid "Title"
+msgstr "Tựa đề"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564549\n"
+"01100100.xhp\n"
+"par_id3156042\n"
+"4\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/title\">Enter a title for the document.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/descriptioninfopage/title\">Nhập tên cho tài liệu.</ahelp>"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564565\n"
+"01100100.xhp\n"
+"hd_id3145669\n"
+"5\n"
"help.text"
-msgid "Swedish - sv"
-msgstr "Tiếng Thụy Điển - sv"
+msgid "Subject"
+msgstr "Chủ đề"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564556\n"
+"01100100.xhp\n"
+"par_id3147571\n"
+"6\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/subject\">Enter a subject for the document. You can use a subject to group documents with similar contents.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/descriptioninfopage/subject\">Nhập chủ đề về tài liệu. Bạn cũng có thể sử dụng chủ đề để nhóm lại các tài liệu có nội dung tương tự.</ahelp>"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564637\n"
+"01100100.xhp\n"
+"hd_id3156426\n"
+"7\n"
"help.text"
-msgid "Finnish - fi"
-msgstr "Tiếng Phần Lan - fi"
+msgid "Keywords"
+msgstr "Từ khoá"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564627\n"
+"01100100.xhp\n"
+"par_id3155338\n"
+"8\n"
"help.text"
-msgid "V"
-msgstr "V"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/keywords\">Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/descriptioninfopage/keywords\">Điền vào những từ mà bạn muốn sử dụng để lập chỉ mục cho tài liệu của mình. Các từ khóa phải được phân cách bằng dấu phẩy. Những từ khóa có thể chứa khoảng trắng hoặc dấu chấm phẩy.</ahelp>"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564643\n"
+"01100100.xhp\n"
+"hd_id3148620\n"
+"9\n"
"help.text"
-msgid "K"
-msgstr "K"
+msgid "Comments"
+msgstr "Chú thích"
-#: 05020301.xhp
+#: 01100100.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564763\n"
+"01100100.xhp\n"
+"par_id3155391\n"
+"10\n"
"help.text"
-msgid "P"
-msgstr "P"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/comments\">Enter comments to help identify the document.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/descriptioninfopage/comments\">Nhập chú thích để giúp nhận dạng tài liệu.</ahelp>"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564715\n"
+"01100200.xhp\n"
+"tit\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "General"
+msgstr "Chung"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3149929\n"
-"227\n"
+"01100200.xhp\n"
+"bm_id3149955\n"
"help.text"
-msgid "Entering Dates"
-msgstr "Nhập ngày tháng"
+msgid "<bookmark_value>version numbers of documents</bookmark_value> <bookmark_value>documents; version numbers</bookmark_value> <bookmark_value>files; version numbers</bookmark_value> <bookmark_value>editing time of documents</bookmark_value> <bookmark_value>documents; editing time</bookmark_value>"
+msgstr "<bookmark_value>số thứ tự phiên bản của tài liệu</bookmark_value><bookmark_value>tài liệu; số thứ tự phiên bản</bookmark_value><bookmark_value>tập tin; số thứ tự phiên bản</bookmark_value><bookmark_value>thời gian chỉnh sửa của tài liệu</bookmark_value><bookmark_value>tài liệu; thời gian chỉnh sửa</bookmark_value>"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148397\n"
-"228\n"
+"01100200.xhp\n"
+"hd_id3148668\n"
+"1\n"
"help.text"
-msgid "To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002."
-msgstr "Để nhập vào ô bảng một ngày tháng, dùng định dạng hệ thống lịch do Giáo hoàng Gregory XIII (1502 - 1585). Chẳng hạn, dùng miền địa phương tiếng Anh, nhập « 1/2/2002 » để ghi rõ ngày 2, Tháng Một, năm 2002."
+msgid "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">General</link>"
+msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"Chung\">Chung</link>"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153274\n"
-"137\n"
+"01100200.xhp\n"
+"par_id3154863\n"
+"2\n"
"help.text"
-msgid "All date formats are dependent on the locale that is set in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type=\"productname\">%PRODUCTNAME</item> uses the Gregorian Calendar."
-msgstr ""
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/DocumentInfoPage\">Contains basic information about the current file.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/documentinfopage/DocumentInfoPage\">Chứa thông tin cơ bản về tập tin hiện tại.</ahelp>"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153795\n"
-"216\n"
+"01100200.xhp\n"
+"hd_id3149999\n"
+"3\n"
"help.text"
-msgid "To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY."
-msgstr "Để ghi rõ một định dạng lịch không phụ thuộc vào miền địa phương, thêm một cờ bổ trợ vào phía trước định dạng ngày tháng. Chẳng hạn, để hiển thị ngày tháng tùy theo hệ thống lịch Do Thái khi đặt miền địa phương không phải Do Thái, nhập « [~jewish]DD/MM/YYYY »."
+msgid "File"
+msgstr "Tập tin"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145764\n"
-"217\n"
+"01100200.xhp\n"
+"par_id3153114\n"
+"4\n"
"help.text"
-msgid "Modifier"
-msgstr "Cờ bổ trợ"
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/nameed\">Displays the file name.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/documentinfopage/nameed\">Hiển thị tên tập tin.</ahelp>"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152967\n"
-"218\n"
+"01100200.xhp\n"
+"hd_id3156136\n"
+"17\n"
"help.text"
-msgid "Calendar"
-msgstr "Lịch"
+msgid "Type:"
+msgstr "Kiểu :"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148390\n"
-"219\n"
+"01100200.xhp\n"
+"par_id3155552\n"
+"20\n"
"help.text"
-msgid "[~buddhist]"
-msgstr "[~buddhist]"
+msgid "Displays the file type for the current document."
+msgstr "Hiển thị kiểu tập tin của tài liệu hiện tại."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153781\n"
-"220\n"
+"01100200.xhp\n"
+"hd_id3145314\n"
+"18\n"
"help.text"
-msgid "Thai Buddhist Calendar"
-msgstr "Lịch đạo Phật Thái"
+msgid "Location:"
+msgstr "Vị trí:"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157969\n"
-"133\n"
+"01100200.xhp\n"
+"par_id3150506\n"
+"21\n"
"help.text"
-msgid "[~gengou]"
-msgstr "[~gengou]"
+msgid "Displays the path and the name of the directory where the file is stored."
+msgstr "Hiển thị đường dẫn và tên của thư mục chứa tập tin này."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154656\n"
-"134\n"
+"01100200.xhp\n"
+"hd_id3155892\n"
+"19\n"
"help.text"
-msgid "Japanese Gengou Calendar"
-msgstr "Lịch Gengou Nhật"
+msgid "Size:"
+msgstr "Kích cỡ :"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150086\n"
-"131\n"
+"01100200.xhp\n"
+"par_id3153311\n"
+"22\n"
"help.text"
-msgid "[~gregorian]"
-msgstr "[~gregorian]"
+msgid "Displays the size of the current document in bytes."
+msgstr "Hiển thị kích cỡ (theo byte) của tài liệu hiện tại."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146070\n"
-"132\n"
+"01100200.xhp\n"
+"hd_id3149178\n"
+"7\n"
"help.text"
-msgid "Gregorian Calendar"
-msgstr "Lịch Gregory"
+msgid "Created:"
+msgstr "Tạo :"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146808\n"
-"221\n"
+"01100200.xhp\n"
+"par_id3153748\n"
+"8\n"
"help.text"
-msgid "[~hanja] or [~hanja_yoil]"
-msgstr "[~hanja] hay [~hanja_yoil]"
+msgid "Displays the date and time and author when the file was first saved."
+msgstr "Hiển thị ngày tháng, thời gian và tác giả lưu đầu tiên tập tin này."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149207\n"
-"136\n"
+"01100200.xhp\n"
+"hd_id3149182\n"
+"9\n"
"help.text"
-msgid "Korean Calendar"
-msgstr "Lịch Hàn"
+msgid "Modified:"
+msgstr "Sửa đổi:"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150304\n"
-"222\n"
+"01100200.xhp\n"
+"par_id3150355\n"
+"10\n"
"help.text"
-msgid "[~hijri]"
-msgstr "[~hijri]"
+msgid "Displays the date and time and author when the file was last saved in a $[officename] file format."
+msgstr "Hiển thị ngày tháng, thời gian và tác giả lưu cuối cùng tập tin này theo định dạng $[officename]."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149238\n"
-"223\n"
+"01100200.xhp\n"
+"par_idN106C5\n"
"help.text"
-msgid "Arabic Islamic Calendar, currently supported for the following locales: ar_EG, ar_LB, ar_SA, and ar_TN"
-msgstr "Lịch đạo Hồi A Rập, hiện thời hỗ trợ cho những miền địa phương này: ar_EG, ar_LB, ar_SA, ar_TN"
+msgid "Digitally signed:"
+msgstr "Có chữ ký số :"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154903\n"
-"224\n"
+"01100200.xhp\n"
+"par_idN106C9\n"
"help.text"
-msgid "[~jewish]"
-msgstr "[~jewish]"
+msgid "Displays the date and the time when the file was last signed as well as the name of the author who signed the document."
+msgstr "Hiển thị ngày tháng và thời gian ký cuối cùng tập tin này, cũng như tên của tác giả đã ký tài liệu."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151288\n"
-"225\n"
+"01100200.xhp\n"
+"par_idN106CC\n"
"help.text"
-msgid "Jewish Calendar"
-msgstr "Lịch Do Thái"
+msgid "Digital Signature"
+msgstr "Chữ ký số"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3166442\n"
-"135\n"
+"01100200.xhp\n"
+"par_idN106D0\n"
"help.text"
-msgid "[~ROC]"
-msgstr "[~ROC]"
+msgid "Opens the <link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link> dialog where you can manage digital signatures for the current document."
+msgstr "Mở hộp thoại <link href=\"text/shared/01/digitalsignatures.xhp\">Chữ ký số</link> trong đó bạn có thể quản lý các chữ ký điện số cho tài liệu hiện tại."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145587\n"
-"226\n"
+"01100200.xhp\n"
+"hd_id3156346\n"
+"11\n"
"help.text"
-msgid "Republic Of China Calendar"
-msgstr "Lịch Trung Quốc"
+msgid "Last printed:"
+msgstr "In cuối:"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152419\n"
-"140\n"
+"01100200.xhp\n"
+"par_id3152780\n"
+"12\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nếu bạn tính toán với một hay nhiều ô bảng có định dạng ngày tháng, kết quả được định dạng tùy theo những sự ánh xạ này: </caseinline></switchinline>"
+msgid "Displays the date and time and user name when the file was last printed."
+msgstr "Hiển thị ngày tháng, thời gian và người dùng in cuối cùng tập tin này."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154194\n"
-"141\n"
+"01100200.xhp\n"
+"hd_id3153252\n"
+"15\n"
"help.text"
-msgid "Initial Format"
-msgstr "Định dạng đầu tiên"
+msgid "Revision number:"
+msgstr "Số duyệt"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149787\n"
-"142\n"
+"01100200.xhp\n"
+"par_id3149955\n"
+"16\n"
"help.text"
-msgid "Result Format"
-msgstr "Định dạng kết quả"
+msgid "Displays the number of times that the file has been saved."
+msgstr "Hiển thị số lần lưu tập tin này."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152993\n"
-"143\n"
+"01100200.xhp\n"
+"hd_id3155342\n"
+"13\n"
"help.text"
-msgid "Date + Date"
-msgstr "Ngày + Ngày"
+msgid "Editing time:"
+msgstr "Thời gian sửa:"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150292\n"
-"144\n"
+"01100200.xhp\n"
+"par_id3149795\n"
+"14\n"
"help.text"
-msgid "Number (Days)"
-msgstr "Số (ngày)"
+msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
+msgstr "Hiển thị tổng số thời gian chỉnh sửa tập tin này, kể từ tạo. Thời gian chỉnh sửa được cập nhật khi nào bạn lưu tập tin."
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150460\n"
-"145\n"
+"01100200.xhp\n"
+"hd_id3154810\n"
+"33\n"
"help.text"
-msgid "Date + Number"
-msgstr "Ngày + Số"
+msgid "Apply User Data"
+msgstr "Áp dụng dữ liệu người dùng"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154371\n"
-"146\n"
+"01100200.xhp\n"
+"par_id3143271\n"
+"34\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">Saves the user's full name with the file. You can edit the name by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145082\n"
-"147\n"
+"01100200.xhp\n"
+"hd_id3154046\n"
+"35\n"
"help.text"
-msgid "Date + Time"
-msgstr "Ngày + Giờ"
+msgid "Delete"
+msgstr "Xoá"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156290\n"
-"148\n"
+"01100200.xhp\n"
+"par_id3152349\n"
+"36\n"
"help.text"
-msgid "Date&Time"
-msgstr "Ngày và Giờ"
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/reset\">Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/documentinfopage/reset\">Đặt lại: thời gian chỉnh sửa về số không, ngày tháng tạo thành ngày/giờ hiện thời và số thứ tự phiên bản về số 1. Cũng xoá các ngày tháng sửa đổi và in ấn.</ahelp>"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152456\n"
-"149\n"
+"01100200.xhp\n"
+"hd_id3149576\n"
+"5\n"
"help.text"
-msgid "Date + Date&Time"
-msgstr "Ngày + Ngày và Giờ"
+msgid "Template:"
+msgstr "Mẫu :"
-#: 05020301.xhp
+#: 01100200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156169\n"
-"150\n"
+"01100200.xhp\n"
+"par_id3147530\n"
+"6\n"
"help.text"
-msgid "Number"
-msgstr "Số"
+msgid "Displays the template that was used to create the file."
+msgstr "Hiển thị mẫu đã được dùng để tạo tập tin này."
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154527\n"
-"151\n"
+"01100300.xhp\n"
+"tit\n"
"help.text"
-msgid "Time + Time"
-msgstr "Giờ + Giờ"
+msgid "Custom Properties"
+msgstr "Thuộc tính riêng"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159625\n"
-"152\n"
+"01100300.xhp\n"
+"hd_id3155069\n"
+"1\n"
"help.text"
-msgid "Time"
-msgstr "Giờ"
+msgid "<link href=\"text/shared/01/01100300.xhp\" name=\"Custom Properties\">Custom Properties</link>"
+msgstr "<link href=\"text/shared/01/01100300.xhp\" name=\"Thuộc tính tập tin\">Thuộc tính tập tin</link>"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146802\n"
-"153\n"
+"01100300.xhp\n"
+"par_id3155934\n"
+"9\n"
"help.text"
-msgid "Time + Number"
-msgstr "Giờ + Số"
+msgid "<ahelp hid=\"sfx2/ui/custominfopage/CustomInfoPage\">Allows you to assign custom information fields to your document.</ahelp>"
+msgstr "<ahelp hid=\"sfx2/ui/custominfopage/CustomInfoPage\">Cho phép bạn gán cho tài liệu các trường thông tin riêng.</ahelp>"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146770\n"
-"154\n"
+"01100300.xhp\n"
+"hd_id3151234\n"
+"2\n"
"help.text"
-msgid "Time"
-msgstr "Giờ"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155500\n"
-"155\n"
+"01100300.xhp\n"
+"par_id3152551\n"
+"3\n"
"help.text"
-msgid "Time + Date&Time"
-msgstr "Giờ + Ngày và Giờ"
+msgid "<ahelp hid=\"sfx2/ui/custominfopage/properties\">Enter your custom contents. You can change the name, type, and contents of each row. You can add or remove rows. The items will be exported as metadata to other file formats.</ahelp>"
+msgstr "<ahelp hid=\"sfx2/ui/custominfopage/properties\">Điền vào nội dung tùy chọn của bạn. Bạn có thể thay đổi tên, lọai và nội dung của các hàng, cũng như thêm vào hay xóa chúng. Những thông này sẽ được xuất dưới dạng thông tin đặc tả trong các định dạng tập tin khác.</ahelp>"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155128\n"
-"156\n"
+"01100300.xhp\n"
+"hd_id0811200812071796\n"
"help.text"
-msgid "Date&Time"
-msgstr "Ngày và Giờ"
+msgid "Add"
+msgstr "Thêm"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152904\n"
-"157\n"
+"01100300.xhp\n"
+"par_id0811200812071785\n"
"help.text"
-msgid "Date&Time + Date&Time"
-msgstr "Ngày và Giờ + Ngày và Giờ"
+msgid "<ahelp hid=\".\">Click to add a new row to the Properties list.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn chuột để thêm hàng mới vào danh sách Thuộc tính.</ahelp>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159143\n"
-"158\n"
+"01100400.xhp\n"
+"tit\n"
"help.text"
-msgid "Time"
-msgstr "Giờ"
+msgid "Statistics"
+msgstr "Thống kê"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148909\n"
-"159\n"
+"01100400.xhp\n"
+"bm_id1472518\n"
"help.text"
-msgid "Date&Time + Number"
-msgstr "Ngày và Giờ + Số"
+msgid "<bookmark_value>number of pages</bookmark_value><bookmark_value>documents;number of pages/tables/sheets</bookmark_value><bookmark_value>number of tables</bookmark_value><bookmark_value>number of sheets</bookmark_value><bookmark_value>cells;number of</bookmark_value><bookmark_value>pictures;number of</bookmark_value><bookmark_value>OLE objects;number of</bookmark_value>"
+msgstr "<bookmark_value>số các trang</bookmark_value><bookmark_value>tài liệu;số các trang/bảng/bảng tính</bookmark_value><bookmark_value>số các bảng</bookmark_value><bookmark_value>số các bảng tính</bookmark_value><bookmark_value>ô bảng;số</bookmark_value><bookmark_value>ảnh;số</bookmark_value><bookmark_value>đối tượng OLE;số</bookmark_value>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154806\n"
-"160\n"
+"01100400.xhp\n"
+"hd_id3149962\n"
+"1\n"
"help.text"
-msgid "Date&Time"
-msgstr "Ngày và Giờ"
+msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"Statistics\">Statistics</link>"
+msgstr "<link href=\"text/shared/01/01100400.xhp\" name=\"Thống kê\">Thống kê</link>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151269\n"
-"161\n"
+"01100400.xhp\n"
+"par_id3156045\n"
+"2\n"
"help.text"
-msgid "Number + Number"
-msgstr "Số + Số"
+msgid "<ahelp hid=\"modules/swriter/ui/statisticsinfopage/StatisticsInfoPage\">Displays statistics for the current file.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/statisticsinfopage/StatisticsInfoPage\">Hiển thị thống kê về tập tin hiện tại.</ahelp>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154951\n"
-"162\n"
+"01100400.xhp\n"
+"par_id3156324\n"
+"36\n"
"help.text"
-msgid "Number"
-msgstr "Số"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Một số giá trị thống kê cũng có thể được dùng làm <link href=\"text/swriter/02/14020000.xhp\" name=\"biến trong công thức\">biến trong công thức</link>. </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149174\n"
-"163\n"
+"01100400.xhp\n"
+"hd_id3153255\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">The Date&Time format displays the date and time that an entry was made to a cell with this format. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Định dạng « Ngày và Giờ » hiển thị ngày tháng và thời gian nhập gì vào ô bảng theo định dạng này. </caseinline></switchinline>"
+msgid "Number of Pages:"
+msgstr "Tổng trang:"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3143225\n"
-"164\n"
+"01100400.xhp\n"
+"par_id3154230\n"
+"4\n"
"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item>, a date with the value \"0\" corresponds to Dec 30, 1899."
-msgstr "Trong <item type=\"productname\">%PRODUCTNAME</item>, ngày tháng có giá trị « 0 » tương ứng với ngày 30, Tháng Mười Hai, năm 1899."
+msgid "Number of pages in the file."
+msgstr "Tổng số trang trong tập tin."
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3155870\n"
-"61\n"
+"01100400.xhp\n"
+"hd_id3156027\n"
+"5\n"
"help.text"
-msgid "Time Formats"
-msgstr "Định dạng Thời gian"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng bảng: </caseinline><caseinline select=\"CALC\">Tổng bảng tính: </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150108\n"
-"62\n"
+"01100400.xhp\n"
+"par_id3153527\n"
+"6\n"
"help.text"
-msgid "To display hours, minutes and seconds use the following number format codes."
-msgstr "Để hiển thị giờ, phút và giây, dùng những mã định dạng số này:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file. </caseinline><caseinline select=\"CALC\">Number of sheets in the file. </caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các bảng trong tập tin. </caseinline><caseinline select=\"CALC\">Số các bảng tính trong tập tin. </caseinline></switchinline> Thống kê này không bao gồm bảng được chèn như đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>."
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149158\n"
-"63\n"
+"01100400.xhp\n"
+"hd_id3153311\n"
+"30\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of Cells: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tổng ô : </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154341\n"
-"64\n"
+"01100400.xhp\n"
+"par_id3156114\n"
+"31\n"
"help.text"
-msgid "Format Code"
-msgstr "Mã định dạng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Số các ô bảng có nội dung trong tập tin. </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154557\n"
-"65\n"
+"01100400.xhp\n"
+"hd_id3147210\n"
+"7\n"
"help.text"
-msgid "Hours as 0-23"
-msgstr "Giờ không có số không đi trước (0-23)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Graphics: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng đồ họa: </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156348\n"
-"66\n"
+"01100400.xhp\n"
+"par_id3166411\n"
+"8\n"
"help.text"
-msgid "h"
-msgstr "h"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of graphics in the file. This statistic does not include graphics that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các ảnh trong tập tin. Thống kê này không bao gồm bảng được chèn như đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>. </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3143218\n"
-"67\n"
+"01100400.xhp\n"
+"hd_id3147618\n"
+"9\n"
"help.text"
-msgid "Hours as 00-23"
-msgstr "Giờ có số không đi trước (00-23)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of OLE Objects: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng đối tượng OLE: </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155266\n"
-"68\n"
+"01100400.xhp\n"
+"par_id3149820\n"
+"10\n"
"help.text"
-msgid "hh"
-msgstr "hh"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> trong tập tin, cũng tính các bảng và đồ họa được chèn dạng đối tượng OLE. </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150139\n"
-"69\n"
+"01100400.xhp\n"
+"hd_id3153665\n"
+"11\n"
"help.text"
-msgid "Minutes as 0-59"
-msgstr "Phút không có số không đi trước (0-59)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Paragraphs: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng đoạn văn: </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149588\n"
-"70\n"
+"01100400.xhp\n"
+"par_id3156156\n"
+"12\n"
"help.text"
-msgid "m"
-msgstr "m"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các đoạn văn (cũng tính các đoạn văn trắng) trong tập tin. </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150531\n"
-"71\n"
+"01100400.xhp\n"
+"hd_id3155261\n"
+"13\n"
"help.text"
-msgid "Minutes as 00-59"
-msgstr "Phút có số không đi trước (00-59)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Words: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng từ : </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147409\n"
-"72\n"
+"01100400.xhp\n"
+"par_id3147402\n"
+"14\n"
"help.text"
-msgid "mm"
-msgstr "mm"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các từ (cũng tính các từ chỉ là một ký tự riêng lẻ) trong tập tin. </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154854\n"
-"73\n"
+"01100400.xhp\n"
+"hd_id3150466\n"
+"15\n"
"help.text"
-msgid "Seconds as 0-59"
-msgstr "Giây không có số không đi trước (0-59)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Characters: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng ký tự : </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156173\n"
-"74\n"
+"01100400.xhp\n"
+"par_id3149294\n"
+"16\n"
"help.text"
-msgid "s"
-msgstr "s"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các ký tự (cũng tính các dấu cách) trong tập tin. Không tính ký tự không thể in.</caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149506\n"
-"75\n"
+"01100400.xhp\n"
+"hd_id3148947\n"
+"32\n"
"help.text"
-msgid "Seconds as 00-59"
-msgstr "Giây có số không đi trước (00-59)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Lines: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng dòng: </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157981\n"
-"76\n"
+"01100400.xhp\n"
+"par_id3149650\n"
+"33\n"
"help.text"
-msgid "ss"
-msgstr "ss"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các dòng trong tập tin. </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156039\n"
-"77\n"
+"01100400.xhp\n"
+"hd_id3153525\n"
+"34\n"
"help.text"
-msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>hh:mm:ss.00</emph> to display the time as \"01:02:03.45\"."
-msgstr "Để hiển thị số giây dạng phân số, thêm vào mã định dạng số dấu tách thập phân. Chẳng hạn, nhập <emph>hh:mm:ss.00</emph> để hiển thị giờ dạng « 01:02:03.45 »."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cập nhật </caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148649\n"
-"102\n"
+"01100400.xhp\n"
+"par_id3148981\n"
+"35\n"
"help.text"
-msgid "If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS"
-msgstr "Nhập giờ dạng « 02:03.45 » hay « 01:02:03.45 » hay « 25:01:02 » thì gán những định dạng theo đây (nếu chưa xác định định dạng giờ khác): MM:SS.00 hay [HH]:MM:SS.00 hay [HH]:MM:SS"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/statisticsinfopage/update\">Updates the statistics.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/statisticsinfopage/update\">Cập nhật các thống kê.</ahelp></caseinline></switchinline>"
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3158404\n"
-"169\n"
+"01100600.xhp\n"
+"tit\n"
"help.text"
-msgid "Displaying Numbers Using Native Characters"
-msgstr "Hiển thị con số dùng ký tự sở hữu"
+msgid "Security"
+msgstr "Bảo mật"
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149998\n"
-"170\n"
+"01100600.xhp\n"
+"bm_id1472519\n"
"help.text"
-msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
-msgstr "Để hiển thị con số dùng các ký tự của ngôn ngữ mẹ đẻ, thêm vào phía trước mã định dạng con số một cờ bổ trợ [NatNum1], [NatNum2], ... [NatNum11] ."
+msgid "<bookmark_value>password as document property</bookmark_value><bookmark_value>file sharing options for current document</bookmark_value><bookmark_value>read-only documents;opening documents as</bookmark_value><bookmark_value>saving;with password by default</bookmark_value><bookmark_value>user data;removing when saving</bookmark_value>"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154600\n"
-"171\n"
+"01100600.xhp\n"
+"hd_id3149969\n"
"help.text"
-msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
-msgstr "Cờ bổ trợ [NatNum1] lúc nào cũng dùng phép ánh xạ một đối một để chuyển đổi con số sang một chuỗi tương ứng với mã định dạng con số của miền địa phương tương ứng. Các cờ bổ trợ khác làm kết quả khác nhau đối với miền địa phương khác nhau. Miền địa phương (locale) có thể là ngôn ngữ hay miền riêng cho đó xác định mã định dạng, hoặc một cờ bổ trợ như « [$-yyy] » mà đi theo cờ bổ trợ con số sở hữu. Trong trường hợp này, « yyy » là MS-LCID thập lục cũng được dùng trong mã định dạng tiền tệ. Chẳng hạn, để hiển thị con số dùng ký tự Kanji ngắn tiếng Nhật dưới miền địa phương tiếng Anh, dùng mã định dạng con số này:"
+msgid "<link href=\"text/shared/01/01100600.xhp\" name=\"Security\">Security</link>"
+msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"Chung\">Chung</link>"
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152546\n"
-"172\n"
+"01100600.xhp\n"
+"par_id3156049\n"
"help.text"
-msgid "[NatNum1][$-411]0"
-msgstr "[NatNum1][$-411]0"
+msgid "<ahelp hid=\".\">Sets password options for the current document.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147269\n"
-"173\n"
+"01100600.xhp\n"
+"par_idN106AA\n"
"help.text"
-msgid "In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type=\"productname\">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type=\"productname\">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers."
-msgstr "Trong danh sách theo đây, hiển thị cờ bổ trợ [DBNumX] của MS™ Excel mà tương ứng với cờ bổ trợ [NatNum] của <item type=\"productname\">%PRODUCTNAME</item>. Bạn cũng có thể dùng cờ bổ trợ kiểu [DBNumX] thay cho kiểu [NatNum] cho miền địa phương của mình. Khi nào có thể, <item type=\"productname\">%PRODUCTNAME</item> ánh xạ nội bộ cờ bổ trợ [DBNumX] tới cờ bổ trợ [NatNumN]."
+msgid "Open file read-only"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_idN11234\n"
+"01100600.xhp\n"
+"par_idN106AE\n"
"help.text"
-msgid "Displaying dates using [NatNum] modifiers can have a different effect than displaying other types of numbers. Such effects are indicated by 'CAL: '. For example, 'CAL: 1/4/4' indicates that the year is displayed using the [NatNum1] modifier, while the day and month are displayed using the [NatNum4] modifier. If 'CAL' is not specified, the date formats for that particular modifier are not supported."
-msgstr "Hiển thị ngày tháng dùng cờ bổ trợ [NatNum] có thể làm kết quả khác với hiển thị kiểu con số khác. Kết quả như vậy được « CAL » ngụ ý. Chẳng hạn « CAL: 1/4/4 » ngụ ý rằng năm được hiển thị dùng cờ bổ trợ [NatNum1], còn ngày và tháng được hiển thị dùng cờ bổ trợ [NatNum4]. Chưa ghi rõ « CAL » thì không hỗ trợ định dạng ngày tháng cho cờ bổ trợ đó."
+msgid "<ahelp hid=\".\">Select to allow this document to be opened in read-only mode only.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153111\n"
-"174\n"
+"01100600.xhp\n"
+"par_idN106B1\n"
"help.text"
-msgid "[NatNum1] Transliterations"
-msgstr "Chuyển chữ [NatNum1]"
+msgid "This file sharing option protects the document against accidental changes. It is still possible to edit a copy of the document and save that copy with the same name as the original."
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146895\n"
-"175\n"
+"01100600.xhp\n"
+"par_idN106B4\n"
"help.text"
-msgid "Chinese: Chinese lower case characters; CAL: 1/7/7 [DBNum1]"
-msgstr "Tiếng Trung: ký tự chữ thường tiếng Trung; CAL: 1/7/7 [DBNum1]"
+msgid "Record changes"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152536\n"
-"176\n"
+"01100600.xhp\n"
+"par_idN106B8\n"
"help.text"
-msgid "Japanese: short Kanji characters [DBNum1]; CAL: 1/4/4 [DBNum1]"
-msgstr "Tiếng Nhật: ký tự Kanji ngắn [DBNum1]; CAL: 1/4/4 [DBNum1]"
+msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Changes - Record</emph>.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146125\n"
-"177\n"
+"01100600.xhp\n"
+"par_idN106C9\n"
"help.text"
-msgid "Korean: Korean lower case characters [DBNum1]; CAL: 1/7/7 [DBNum1]"
-msgstr "Tiếng Hàn: ký tự chữ thường tiếng Hàn [DBNum1]; CAL: 1/7/7 [DBNum1]"
+msgid "To protect the recording state with a password, click <emph>Protect</emph> and enter a password. Other users of this document can apply their changes, but they cannot disable change recording without knowing the password."
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149945\n"
-"178\n"
+"01100600.xhp\n"
+"par_idN106D0\n"
"help.text"
-msgid "Thai: Thai characters"
-msgstr "Tiếng Thái: ký tự tiếng Thái"
+msgid "Protect / Unprotect"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153264\n"
-"179\n"
+"01100600.xhp\n"
+"par_idN106D4\n"
"help.text"
-msgid "Arabic: Indic characters"
-msgstr "TIếng A Rập: ký tự ngôn ngữ Ấn Độ"
+msgid "<ahelp hid=\"cui/ui/securityinfopage/protect\">Protects the change recording state with a password. If change recording is protected for the current document, the button is named <emph>Unprotect</emph>. Click <emph>Unprotect</emph> and type the correct password to disable the protection.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148973\n"
-"180\n"
+"01110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Indic: Indic characters"
-msgstr "Ngôn ngữ Ấn Độ : ký tự ngôn ngữ Ấn Độ"
+msgid "Templates"
+msgstr "Mẫu"
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_idN112A3\n"
+"01110000.xhp\n"
+"hd_id3155577\n"
+"1\n"
"help.text"
-msgid "Hebrew: Hebrew letters"
-msgstr "Tiếng Do Thái: chữ tiếng Do Thái"
+msgid "<link href=\"text/shared/01/01110000.xhp\" name=\"Templates\">Templates</link>"
+msgstr "<link href=\"text/shared/01/01110000.xhp\" name=\"Mẫu\">Mẫu</link>"
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147520\n"
-"181\n"
+"01110000.xhp\n"
+"par_id3154894\n"
+"2\n"
"help.text"
-msgid "[NatNum2] Transliteration in"
-msgstr "Chuyển chữ [NatNum2] bằng"
+msgid "<ahelp hid=\".\">Lets you organize and edit your templates, as well as save the current file as a template.</ahelp>"
+msgstr "<ahelp hid=\".\">Cho bạn có khả năng tổ chức và chỉnh sửa các mẫu, cũng như lưu tập tin hiện tại dạng mẫu.</ahelp>"
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155383\n"
-"182\n"
+"01110000.xhp\n"
+"hd_id3149893\n"
+"3\n"
"help.text"
-msgid "Chinese: Chinese upper case characters; CAL: 2/8/8 [DBNum2]"
-msgstr "Tiếng Trung: ký tự chữ hoa tiếng Trung; CAL: 2/8/8 [DBNum2]"
+msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Address Book Source\">Address Book Source</link>"
+msgstr "<link href=\"text/shared/01/01110101.xhp\" name=\"Nguồn Sổ địa chỉ\">Nguồn Sổ địa chỉ</link>"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153931\n"
-"183\n"
+"01110101.xhp\n"
+"tit\n"
"help.text"
-msgid "Japanese: traditional Kanji characters; CAL: 2/5/5 [DBNum2]"
-msgstr "Tiếng Nhật: ký tự Kanji truyền thống; CAL: 2/5/5 [DBNum2]"
+msgid "Templates: Address Book Assignment"
+msgstr "Mẫu > Gán Sổ Địa Chỉ"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155097\n"
-"184\n"
+"01110101.xhp\n"
+"hd_id3156411\n"
+"1\n"
"help.text"
-msgid "Korean: Korean upper case characters [DBNum2]; CAL: 2/8/8 [DBNum2]"
-msgstr "Tiếng Hàn: ký tự chữ hoa tiếng Hàn [DBNum2]; CAL: 2/8/8 [DBNum2]"
+msgid "Templates: Address Book Assignment"
+msgstr "Mẫu > Gán Sổ Địa Chỉ"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152976\n"
-"185\n"
+"01110101.xhp\n"
+"par_id3147576\n"
+"2\n"
"help.text"
-msgid "[NatNum3] Transliteration in"
-msgstr "Chuyển chữ [NatNum3] bằng"
+msgid "<ahelp hid=\".uno:AddressBookSource\">Edit the field assignments and the data source for your address book.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddressBookSource\">Chỉnh sửa các sự gán trường và nguồn dữ liệu cho Sổ địa chỉ của bạn.</ahelp>"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154353\n"
-"186\n"
+"01110101.xhp\n"
+"hd_id3149399\n"
+"3\n"
"help.text"
-msgid "Chinese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
-msgstr "Tiếng Trung: chữ số A Rập rộng đầy đủ ; CAL: 3/3/3 [DBNum3]"
+msgid "Address Book Source"
+msgstr "Nguồn sổ địa chỉ"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154669\n"
-"187\n"
+"01110101.xhp\n"
+"par_id3152996\n"
+"4\n"
"help.text"
-msgid "Japanese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
-msgstr "Tiếng Nhật: chữ số A Rập rộng đầy đủ ; CAL: 3/3/3 [DBNum3]"
+msgid "Set the data source and data table for your address book."
+msgstr "Đặt nguồn dữ liệu và bảng dữ liệu cho Sổ địa chỉ của bạn."
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150472\n"
-"188\n"
+"01110101.xhp\n"
+"hd_id3147654\n"
+"5\n"
"help.text"
-msgid "Korean: fullwidth Arabic digits [DBNum3]; CAL: 3/3/3 [DBNum3]"
-msgstr "Tiếng Hàn: chữ số A Rập rộng đầy đủ [DBNum3]; CAL: 3/3/3 [DBNum3]"
+msgid "Data Source"
+msgstr "Nguồn dữ liệu"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157811\n"
-"189\n"
+"01110101.xhp\n"
+"par_id3154306\n"
+"6\n"
"help.text"
-msgid "[NatNum4] Transliteration in"
-msgstr "Chuyển chữ [NatNum4] bằng"
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/datasource\">Select the data source for your address book.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154592\n"
-"190\n"
+"01110101.xhp\n"
+"hd_id3145315\n"
+"7\n"
"help.text"
-msgid "Chinese: lower case text [DBNum1]"
-msgstr "Tiếng Trung: văn bản chữ thường [DBNum1]"
+msgid "Table"
+msgstr "Bảng"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150350\n"
-"191\n"
+"01110101.xhp\n"
+"par_id3149164\n"
+"8\n"
"help.text"
-msgid "Japanese: modern long Kanji text [DBNum2]"
-msgstr "Tiếng Nhật: văn bản chữ Kanji dài hiện đại [DBNum2]"
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/datatable\">Select the data table for your address book.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150930\n"
-"192\n"
+"01110101.xhp\n"
+"hd_id3145119\n"
+"9\n"
"help.text"
-msgid "Korean: formal lower case text"
-msgstr "Tiếng Hàn: văn bản chữ thường hình thức"
+msgid "Configure"
+msgstr "Tùy chỉnh"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153546\n"
-"193\n"
+"01110101.xhp\n"
+"par_id3150771\n"
+"10\n"
"help.text"
-msgid "[NatNum5] Transliteration in"
-msgstr "Chuyển chữ [NatNum5] bằng"
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/admin\">Add a new data source to the <emph>Address Book Source </emph>list.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155612\n"
-"194\n"
+"01110101.xhp\n"
+"hd_id3155629\n"
+"11\n"
"help.text"
-msgid "Chinese: Chinese upper case text [DBNum2]"
-msgstr "Tiếng Trung: văn bản chữ hoa [DBNum2]"
+msgid "Field assignment"
+msgstr "Gán trường"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155909\n"
-"195\n"
+"01110101.xhp\n"
+"par_id3153320\n"
+"12\n"
"help.text"
-msgid "Japanese: traditional long Kanji text [DBNum3]"
-msgstr "Tiếng Nhật: văn bản chữ Kanji dài truyền thống [DBNum3]"
+msgid "Define the field assignments for your address book."
+msgstr "Xác định các sự gán trường cho Sổ địa chỉ của bạn."
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151304\n"
-"196\n"
+"01110101.xhp\n"
+"hd_id3155830\n"
+"13\n"
"help.text"
-msgid "Korean: formal upper case text"
-msgstr "Tiếng Hàn: văn bản chữ hoa hình thức"
+msgid "(Field name)"
+msgstr "(Tên trường)"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155075\n"
-"197\n"
+"01110101.xhp\n"
+"par_id3154143\n"
+"14\n"
"help.text"
-msgid "[NatNum6] Transliteration in"
-msgstr "Chuyển chữ [NatNum6] bằng"
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/assign\">Select the field in the data table that corresponds to the address book entry.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150214\n"
-"198\n"
+"01110300.xhp\n"
+"tit\n"
"help.text"
-msgid "Chinese: fullwidth text [DBNum3]"
-msgstr "Tiếng Trung: văn bản chữ rộng đầy đủ [DBNum3]"
+msgid "Saving (Templates)"
+msgstr "Lưu (Mẫu)"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154114\n"
-"199\n"
+"01110300.xhp\n"
+"hd_id3160463\n"
+"1\n"
"help.text"
-msgid "Japanese: fullwidth text"
-msgstr "Tiếng Nhật: văn bản chữ rộng đầy đủ"
+msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"Saving (Templates)\">Saving (Templates)</link>"
+msgstr "<link href=\"text/shared/01/01110300.xhp\" name=\"Lưu (Mẫu)\">Lưu (Mẫu)</link>"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155344\n"
-"200\n"
+"01110300.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "Korean: fullwidth text"
-msgstr "Tiếng Hàn: văn bản chữ rộng đầy đủ"
+msgid "<ahelp hid=\".uno:SaveAsTemplate\">Saves the current document as a template.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveAsTemplate\">Lưu tài liệu hiện tại dạng mẫu.</ahelp>"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155538\n"
-"201\n"
+"01110300.xhp\n"
+"hd_id3147226\n"
+"4\n"
"help.text"
-msgid "[NatNum7] Transliteration in"
-msgstr "Chuyển chữ [NatNum7] bằng"
+msgid "New Template"
+msgstr "Mẫu mới"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145123\n"
-"202\n"
+"01110300.xhp\n"
+"par_id3147043\n"
+"5\n"
"help.text"
-msgid "Japanese: modern short Kanji text"
-msgstr "Tiếng Nhật: văn bản chữ Kanji ngắn hiện đại"
+msgid "<ahelp hid=\"SFX2:EDIT:DLG_DOC_TEMPLATE:ED_NAME\">Enter a name for the template.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:EDIT:DLG_DOC_TEMPLATE:ED_NAME\">Nhập tên cho mẫu.</ahelp>"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149424\n"
-"203\n"
+"01110300.xhp\n"
+"hd_id3147571\n"
+"6\n"
"help.text"
-msgid "Korean: informal lower case text"
-msgstr "Tiếng Hàn: văn bản chữ thường không hình thức"
+msgid "Templates"
+msgstr "Mẫu"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153688\n"
-"204\n"
+"01110300.xhp\n"
+"par_id3150774\n"
+"7\n"
"help.text"
-msgid "[NatNum8] Transliteration in"
-msgstr "Chuyển chữ [NatNum8] bằng"
+msgid "Lists templates and template categories."
+msgstr "Liệt kê các mẫu và phân loại mẫu."
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156122\n"
-"205\n"
+"01110300.xhp\n"
+"hd_id3143268\n"
+"8\n"
"help.text"
-msgid "Japanese: traditional short Kanji text [DBNum4]"
-msgstr "Tiếng Nhật: văn bản chữ Kanji ngắn truyền thống [DBNum4]"
+msgid "Categories"
+msgstr "Loại"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145602\n"
-"206\n"
+"01110300.xhp\n"
+"par_id3159233\n"
+"9\n"
"help.text"
-msgid "Korean: informal upper case text"
-msgstr "Tiếng Hàn: văn bản chữ hoa không hình thức"
+msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_SECTION\">Select a category in which to save the new template.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159228\n"
-"207\n"
+"01110300.xhp\n"
+"hd_id3150693\n"
+"10\n"
"help.text"
-msgid "[NatNum9] Transliteration in"
-msgstr "Chuyển chữ [NatNum9] bằng"
+msgid "Templates"
+msgstr "Mẫu"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154644\n"
-"208\n"
+"01110300.xhp\n"
+"par_id3149398\n"
+"11\n"
"help.text"
-msgid "Korean: Hangul characters"
-msgstr "Tiếng Hàn: ký tự Hangul"
+msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_STYLESHEETS\">Lists the available template categories.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_STYLESHEETS\">Liệt kê các phân loại mẫu sẵn sàng.</ahelp>"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155396\n"
-"209\n"
+"01110300.xhp\n"
+"hd_id3163803\n"
+"12\n"
"help.text"
-msgid "[NatNum10] Transliteration in"
-msgstr "Chuyển chữ [NatNum10] bằng"
+msgid "Edit"
+msgstr "Sửa"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150878\n"
-"210\n"
+"01110300.xhp\n"
+"par_id3147242\n"
+"13\n"
"help.text"
-msgid "Korean: formal Hangul text [DBNum4]; CAL: 9/11/11 [DBNum4]"
-msgstr "Tiếng Hàn: văn bản chữ Hangul hình thức [DBNum4]; CAL: 9/11/11 [DBNum4]"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_EDIT\">Opens the selected template for editing.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_EDIT\">Mở mẫu đã chọn, để chỉnh sửa.</ahelp>"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149384\n"
-"211\n"
+"01110300.xhp\n"
+"hd_id3156156\n"
+"14\n"
"help.text"
-msgid "[NatNum11] Transliteration in"
-msgstr "Chuyển chữ [NatNum11] bằng"
+msgid "Organize"
+msgstr "Tổ chức"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154213\n"
-"212\n"
+"01110300.xhp\n"
+"par_id3155419\n"
+"15\n"
"help.text"
-msgid "Korean: informal Hangul text"
-msgstr "Tiếng Hàn: văn bản chữ Hangul không hình thức"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_ORGANIZE\">Opens the <emph>Template Management</emph> dialog where you can organize or create new templates.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_ORGANIZE\">Mở hộp thoại <emph>Quản lý mẫu</emph>, trong đó bạn co thể tổ chức các mẫu, hay tạo mẫu mới.</ahelp>"
-#: 05290000.xhp
+#: 01110400.xhp
msgctxt ""
-"05290000.xhp\n"
+"01110400.xhp\n"
"tit\n"
"help.text"
-msgid "Group"
-msgstr "Nhóm"
+msgid "Edit"
+msgstr "Sửa"
-#: 05290000.xhp
+#: 01110400.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3150603\n"
+"01110400.xhp\n"
+"hd_id3150620\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Nhóm\">Nhóm</link>"
+msgid "<link href=\"text/shared/01/01110400.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/shared/01/01110400.xhp\" name=\"Sửa\">Sửa</link>"
-#: 05290000.xhp
+#: 01110400.xhp
msgctxt ""
-"05290000.xhp\n"
-"par_id3153323\n"
+"01110400.xhp\n"
+"par_id3144415\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Groups keep together selected objects, so that they can be moved or formatted as a single object.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhóm thì kết hợp các đối tượng đã chọn, để di chuyển hay định dạng dưới dạng một đối tượng riêng lẻ.</ahelp>"
-
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"hd_id3150943\n"
-"7\n"
-"help.text"
-msgid "Working with groups"
-msgstr "Thao tác nhóm"
-
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"par_id3152909\n"
-"8\n"
-"help.text"
-msgid "To edit the individual objects of a group, select the group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Enter Group</emph></caseinline><defaultinline><emph>Group - Enter Group</emph></defaultinline></switchinline>"
-msgstr "Để chỉnh sửa mỗi đối tượng riêng trong nhóm, lựa chọn nhóm đó, nhấn-phải vào nó, sau đó chọn lệnh <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Vào nhóm</emph></caseinline><defaultinline><emph>Nhóm > Vào nhóm</emph></defaultinline></switchinline>"
-
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"par_id3159158\n"
-"9\n"
-"help.text"
-msgid "When you are editing a group, the objects that are not part of the group are faded."
-msgstr "Khi bạn chỉnh sửa nhóm, các đối tượng không thuộc về nhóm đó được hiển thị mờ."
-
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"par_id3153541\n"
-"10\n"
-"help.text"
-msgid "Use Tab and Shift+Tab to move forwards and backwards through the objects in a group."
-msgstr "Hãy dùng phím <item type=\"keycode\">Tab</item> và <item type=\"keycode\">Shift+Tab</item> để di chuyển tiếp về ngược qua các đối tượng trong nhóm."
+msgid "<ahelp hid=\".uno:OpenTemplate\">Opens a dialog where you can select a template for editing.</ahelp>"
+msgstr "<ahelp hid=\".uno:OpenTemplate\">Mở một hộp thoại trong đó bạn co thể chọn mẫu để chỉnh sửa.</ahelp>"
-#: 05290000.xhp
+#: 01130000.xhp
msgctxt ""
-"05290000.xhp\n"
-"par_id3154810\n"
-"11\n"
+"01130000.xhp\n"
+"tit\n"
"help.text"
-msgid "To exit a group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Exit Group</emph></caseinline><defaultinline><emph>Group - Exit Group</emph></defaultinline></switchinline>"
-msgstr "Để rời khỏi nhóm, nhấn-phải chuột, sau đó chọn lệnh <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Ra nhóm</emph></caseinline><defaultinline><emph>Nhóm > Ra nhóm</emph></defaultinline></switchinline>"
+msgid "Print"
+msgstr "In"
-#: 05290000.xhp
+#: 01130000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3145120\n"
-"3\n"
+"01130000.xhp\n"
+"bm_id3154621\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Grouping\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
+msgid "<bookmark_value>printing; documents</bookmark_value><bookmark_value>documents; printing</bookmark_value><bookmark_value>text documents; printing</bookmark_value><bookmark_value>spreadsheets; printing</bookmark_value><bookmark_value>presentations; print menu</bookmark_value><bookmark_value>drawings; printing</bookmark_value><bookmark_value>choosing printers</bookmark_value><bookmark_value>printers; choosing</bookmark_value><bookmark_value>print area selection</bookmark_value><bookmark_value>selecting; print areas</bookmark_value><bookmark_value>pages; selecting one to print</bookmark_value><bookmark_value>printing; selections</bookmark_value><bookmark_value>printing; copies</bookmark_value><bookmark_value>copies; printing</bookmark_value><bookmark_value>spoolfiles with Xprinter</bookmark_value>"
+msgstr "<bookmark_value>in ấn; tài liệu</bookmark_value><bookmark_value>tài liệu; in ấn</bookmark_value><bookmark_value>tài liệu văn bản; in ấn</bookmark_value><bookmark_value>bảng tính; in ấn</bookmark_value><bookmark_value>trình diễn; trình đơn In</bookmark_value><bookmark_value>bản vẽ; in ấn</bookmark_value><bookmark_value>chọn máy in</bookmark_value><bookmark_value>máy in; chọn</bookmark_value><bookmark_value>chọn vùng cần in</bookmark_value><bookmark_value>chọn; vùng cần in</bookmark_value><bookmark_value>trang; chọn trang cần in</bookmark_value><bookmark_value>in ấn; vùng chọn</bookmark_value><bookmark_value>in ấn; bản sao</bookmark_value><bookmark_value>bản sao; in ấn</bookmark_value><bookmark_value>tập tin ống dẫn với Xprinter</bookmark_value>"
-#: 05290000.xhp
+#: 01130000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3152474\n"
-"4\n"
+"01130000.xhp\n"
+"hd_id3154621\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Remove\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Gỡ bỏ\">Rã nhóm</link>"
+msgid "Print"
+msgstr "In"
-#: 05290000.xhp
+#: 01130000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3145609\n"
-"5\n"
+"01130000.xhp\n"
+"par_id3146946\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit group\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Sửa nhóm\">Sửa nhóm</link>"
+msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document.</ahelp></variable> The printing options can vary according to the printer and the operating system that you use."
+msgstr "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">In ấn tài liệu hiện tại, vùng chọn hiện tại, hay những trang bạn xác định.</ahelp></variable> Các tùy chọn in có thể biến đổi tùy theo máy in và hệ điều hành bạn dùng."
-#: 05290000.xhp
+#: 01130000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3145068\n"
-"6\n"
+"01130000.xhp\n"
+"par_id0818200912284853\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit\">Exit group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Rời\">Ra nhóm</link>"
+msgid "The Print dialog consists of three main parts: A preview with navigation buttons, several tab pages with control elements specific to the current document type, and the Print, Cancel, and Help buttons."
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id0818200901193992\n"
"help.text"
-msgid "Transformation"
-msgstr "Chuyển dạng"
+msgid "If you just want to know how to print your document, click any of the following links."
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3147477\n"
-"21\n"
+"01130000.xhp\n"
+"par_id0818200912531416\n"
"help.text"
-msgid "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\" name=\"Transformation\">Transformation</link></variable>"
-msgstr "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\" name=\"Chuyển dạng\">Chuyển dạng</link></variable>"
+msgid "<emph>Printing text documents:</emph>"
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3154350\n"
-"1\n"
+"01130000.xhp\n"
+"par_id0818200912531487\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"\">Nhập hay chỉnh sửa thông tin tập tin về một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
+msgid "<emph>Printing spreadsheets:</emph>"
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3148668\n"
-"2\n"
+"01130000.xhp\n"
+"par_id0818200912531410\n"
"help.text"
-msgid "DocType"
-msgstr "DocType (kiểu tài liệu)"
+msgid "<emph>Printing presentations:</emph>"
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3155934\n"
-"3\n"
+"01130000.xhp\n"
+"par_id0818200912531449\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_DOCTYPE\" visibility=\"visible\">Enter the DOCTYPE of the XML file.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_DOCTYPE\" visibility=\"visible\">Nhập DOCTYPE (kiểu tài liệu) của tập tin XML.</ahelp>"
+msgid "<emph>General printing:</emph>"
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3155892\n"
-"11\n"
+"01130000.xhp\n"
+"par_id0818200912284952\n"
"help.text"
-msgid "The public identifier is used to detect the filter when you open a file without specifying a filter."
-msgstr "Số nhận diện công cộng được dùng để phát hiện bộ lọc khi bạn mở tập tin mà không ghi rõ bộ lọc riêng."
+msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open Tools - Options - %PRODUCTNAME (application name) - Print."
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3155338\n"
-"12\n"
+"01130000.xhp\n"
+"par_id3156080\n"
+"41\n"
"help.text"
-msgid "Browse"
-msgstr "Duyệt"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for text documents, choose <link href=\"text/shared/optionen/01040400.xhp\" name=\"Tools - Options - Writer - Print\"><emph>Tools - Options - %PRODUCTNAME Writer - Print</emph></link>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để đặt các tùy chọn <item type=\"productname\">%PRODUCTNAME</item> mặc định cho các tài liệu văn bản, chọn mục trình đơn <link href=\"text/shared/optionen/01040400.xhp\" name=\"Công cụ > Tùy chọn > Writer > In\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Writer > In</emph></link>. </caseinline></switchinline>"
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3150506\n"
-"13\n"
+"01130000.xhp\n"
+"par_idN1099E\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE\" visibility=\"visible\">Opens a file selection dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE\" visibility=\"visible\">Mở hộp thoại lựa chọn tập tin.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for spreadsheet documents, choose <link href=\"text/shared/optionen/01060700.xhp\" name=\"Tools - Options - Calc - Print\"><emph>Tools - Options - %PRODUCTNAME Calc - Print</emph></link>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Để đặt các tùy chọn <item type=\"productname\">%PRODUCTNAME</item> mặc định cho các tài liệu bảng tính, chọn mục trình đơn <link href=\"text/shared/optionen/01060700.xhp\" name=\"Công cụ > Tùy chọn > Calc > In\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > In</emph></link>. </caseinline></switchinline>"
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3153527\n"
-"14\n"
+"01130000.xhp\n"
+"par_idN109CD\n"
"help.text"
-msgid "XSLT for export"
-msgstr "XSLT cần xuất"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">To set the default <item type=\"productname\">%PRODUCTNAME</item>printer options for presentation documents, choose <link href=\"text/shared/optionen/01070400.xhp\" name=\"Tools - Options - Impress - Print\"><emph>Tools - Options - %PRODUCTNAME Impress - Print</emph></link>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Để đặt các tùy chọn <item type=\"productname\">%PRODUCTNAME</item> mặc định cho các tài liệu trình diễn, chọn mục trình đơn <link href=\"text/shared/optionen/01070400.xhp\" name=\"Công cụ > Tùy chọn > Impress > In\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Impress > In</emph></link>. </caseinline></switchinline>"
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3152552\n"
-"15\n"
+"01130000.xhp\n"
+"par_id0818200901194137\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_EXPORT_XSLT\" visibility=\"visible\">If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_EXPORT_XSLT\" visibility=\"visible\">Nếu đây là một bộ lọc xuất khẩu, nhập tên tập tin của bảng kiểu dáng XSLT bạn muốn dùng để xuất khẩu.</ahelp>"
+msgid "Press Shift+F1 or choose <item type=\"menuitem\">Help - What's This?</item> and point to any control element in the Print dialog to see an extended help text."
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3149149\n"
-"20\n"
+"01130000.xhp\n"
+"hd_id0818200912284914\n"
"help.text"
-msgid "XSLT for import"
-msgstr "XSLT cần nhập"
+msgid "Preview"
+msgstr "Xem thử"
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3147653\n"
-"16\n"
+"01130000.xhp\n"
+"par_id081820091228505\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_XSLT\" visibility=\"visible\">If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_IMPORT_XSLT\" visibility=\"visible\">Nếu đây là một bộ lọc nhập khẩu, nhập tên tập tin của bảng kiểu dáng XSLT bạn muốn dùng để nhập khẩu.</ahelp>"
+msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3147242\n"
-"17\n"
+"01130000.xhp\n"
+"hd_id0818200912285056\n"
"help.text"
-msgid "Template for import"
-msgstr "Mẫu cần nhập"
+msgid "General"
+msgstr "Chung"
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3153320\n"
-"18\n"
+"01130000.xhp\n"
+"par_id0818200912285064\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE\" visibility=\"visible\">Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE\" visibility=\"visible\">Nhập tên của mẫu bạn muốn dùng để nhập khẩu. Trên mẫu, các kiểu dáng được xác định để hiển thị thẻ XML.</ahelp>"
+msgid "On the General tab page, you find the most important control elements for printing. You can define which contents of your document are to be printed. You can select the printer and open the printer settings dialog."
+msgstr ""
-#: 06150120.xhp
+#: 01130000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3156330\n"
-"19\n"
+"01130000.xhp\n"
+"par_id2\n"
"help.text"
-msgid "The path to the directory that contains the template must be included in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph>. When you open an XML file whose filter uses the template, the template opens first. In the template, you can map $[officename] styles to display XML tags in the XML document."
-msgstr ""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print colors and objects that are inserted to the background of the page (Format - Page - Background).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ nếu nền của đối tượng đã chọn là trong suốt hoặc mờ đục.</ahelp>"
-#: 05110800.xhp
+#: 01130000.xhp
msgctxt ""
-"05110800.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id4\n"
"help.text"
-msgid "Subscript"
-msgstr "Chỉ số Dưới"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphics and drawings or OLE objects of your text document are printed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ nếu nền của đối tượng đã chọn là trong suốt hoặc mờ đục.</ahelp>"
-#: 05110800.xhp
+#: 01130000.xhp
msgctxt ""
-"05110800.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"01130000.xhp\n"
+"par_id6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110800.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05110800.xhp\" name=\"Chỉ số Dưới\">Chỉ số Dưới</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text that is marked as hidden.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào biểu tượng này để duyệt qua các khung văn bản.</ahelp>"
-#: 05110800.xhp
+#: 01130000.xhp
msgctxt ""
-"05110800.xhp\n"
-"par_id3152790\n"
-"2\n"
+"01130000.xhp\n"
+"par_id8\n"
"help.text"
-msgid "<ahelp hid=\".uno:SubScript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp>"
-msgstr "<ahelp hid=\".uno:SubScript\">Giảm kích cỡ phông của chuỗi đã chọn, và hạ thấp chuỗi xuống dưới đường cơ bản.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để in các bộ giữ chỗ kiểu văn bản. Tắt thì để lại các bộ giữ chỗ kiểu văn bản còn trống trong bản in.</ahelp><link href=\"text/swriter/01/04090003.xhp\">Bộ giữ chỗ kiểu văn bản</link> là trường."
-#: 03990000.xhp
+#: 01130000.xhp
msgctxt ""
-"03990000.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id10\n"
"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the form control fields of the text document are printed.</ahelp>"
+msgstr "<ahelp hid=\"SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_CTRLFLD\">Ghi rõ có nên in điều khiển biểu mẫu của tài liệu văn bản, hay không.</ahelp>"
-#: 03990000.xhp
+#: 01130000.xhp
msgctxt ""
-"03990000.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"01130000.xhp\n"
+"par_id12\n"
"help.text"
-msgid "<link href=\"text/shared/01/03990000.xhp\" name=\"Toolbars\">Toolbars</link>"
-msgstr "<link href=\"text/shared/01/03990000.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to always print text in black.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 03990000.xhp
+#: 01130000.xhp
msgctxt ""
-"03990000.xhp\n"
-"par_id3149748\n"
-"2\n"
+"01130000.xhp\n"
+"par_id14\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to show and hide toolbars.</ahelp> A toolbar contains icons and options that let you quickly access $[officename] commands."
-msgstr "<ahelp hid=\".\">Mở một trình đơn phụ để hiển thị và ẩn các thanh công cụ khác nhau.</ahelp> Thanh công cụ chứa các biểu tượng và tùy chọn để giúp bạn truy cập nhanh đến các chức năng $[officename]."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này thì in các trang trắng đã được chèn tự động. Có ích nếu bạn in mặt đôi. Chẳng hạn, trong cuốn sách, một kiểu dáng đoạn văn « Chương » nào đó đã được đặt để bắt đầu luôn luôn với trang có số lẻ. Trang trước kết thúc trên trang lẻ thì %PRODUCTNAME chèn một trang trắng có số chẵn, để làm cho trang kế tiếp bắt đầu trên trang lẻ. Tùy chọn này điều khiển có nên in trang trắng hay không.</ahelp>"
-#: 03990000.xhp
+#: 01130000.xhp
msgctxt ""
-"03990000.xhp\n"
-"hd_id3153683\n"
-"3\n"
+"01130000.xhp\n"
+"par_id16\n"
"help.text"
-msgid "<link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Tùy chỉnh\">Tùy chỉnh</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 03990000.xhp
+#: 01130000.xhp
msgctxt ""
-"03990000.xhp\n"
-"par_id2789086\n"
+"01130000.xhp\n"
+"par_id18\n"
"help.text"
-msgid "Opens a dialog where you can add, edit, and remove icons."
-msgstr "Mở một hộp thoại trong đó bạn có thể thêm, sửa đổi và gỡ biểu tượng."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 03990000.xhp
-#, fuzzy
+#: 01130000.xhp
msgctxt ""
-"03990000.xhp\n"
-"hd_id371715\n"
+"01130000.xhp\n"
+"par_id20\n"
"help.text"
-msgid "Reset"
-msgstr "Đặt lại"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether you want the name of the document to be included in the printout.</ahelp>"
+msgstr "<ahelp hid=\"STARMATH_CHECKBOX_RID_PRINTOPTIONPAGE_CB_TITLEROW\">Ghi rõ có nên bao gồm tựa đề của tài liệu trong bản in, hay không.</ahelp>"
-#: 03990000.xhp
+#: 01130000.xhp
msgctxt ""
-"03990000.xhp\n"
-"par_id1886654\n"
+"01130000.xhp\n"
+"par_id22\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose <emph>View - Toolbars - Reset</emph> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn lệnh <emph>Xem > Thanh công cụ > Đặt lại</emph> để đặt lại các thanh công cụ về ứng xử tùy thuộc ngữ cảnh mặc định. Một số thanh công cụ nào đó vẫn còn sẽ hiển thị tự động, phụ thuộc vào ngữ cảnh.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to include the contents of the Commands window at the bottom of the printout.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nội dung trong ô sẽ được đặt tại phần dưới ô.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id24\n"
"help.text"
-msgid "Zoom & View Layout"
-msgstr "Thu/Phóng và Xem bố trí"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies a thin border to the formula area in the printout.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Canh lề nội dung của ô theo bên phải ô.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"bm_id3154682\n"
+"01130000.xhp\n"
+"par_id26\n"
"help.text"
-msgid "<bookmark_value>zooming;page views</bookmark_value> <bookmark_value>views; scaling</bookmark_value> <bookmark_value>screen; scaling</bookmark_value> <bookmark_value>pages; scaling</bookmark_value>"
-msgstr "<bookmark_value>thu phóng;khung xem trang</bookmark_value><bookmark_value>ô xem;co giãn</bookmark_value><bookmark_value>màn hình;co giãn</bookmark_value><bookmark_value>trang;co giãn</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the formula without adjusting the current font size.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Căn chuẩn vị trí của bảng ở trong trang hay trình diễn.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3154682\n"
-"1\n"
+"01130000.xhp\n"
+"par_id28\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom & View Layout</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\">Thu/Phóng và Xem bố trí</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Adjusts the formula to the page format used in the printout.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hiển thị chú giải bên trái đồ thị.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3149578\n"
-"2\n"
+"01130000.xhp\n"
+"par_id30\n"
"help.text"
-msgid "<variable id=\"massstabtext\"><ahelp hid=\".uno:Zoom\">Reduces or enlarges the screen display of %PRODUCTNAME.</ahelp></variable> The current zoom factor is displayed as a percentage value on the <emph>Status</emph> bar."
-msgstr "<variable id=\"massstabtext\"><ahelp hid=\".uno:Zoom\">Giảm hay tăng kích cỡ của ô hiển thị %PRODUCTNAME trên màn hình.</ahelp></variable> Hệ số thu phóng hiện thời được hiển thị dạng phần trăm trên thanh <emph>Trạng thái</emph>."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xác định chiều cao của đối tượng đã chọn.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3149655\n"
-"26\n"
+"01130000.xhp\n"
+"par_id32\n"
"help.text"
-msgid "Zooming is handled differently on Unix, Linux, and Windows platforms. A document saved with a 100% zoom factor in Windows is displayed at a larger zoom factor on Unix/Linux platforms. To change the zoom factor, double-click or right-click the percentage value on the <emph>Status</emph> bar, and select the zoom factor that you want."
-msgstr "Chức năng thu phóng được quản lý khác trên hệ thống UNIX, Linux hay Windows. Tài liệu được lưu theo hệ số thu phóng 100% dưới Windows sẽ được hiển thị ở hệ số thu phóng cao hơn dưới UNIX/Linux. Để điều chỉnh hệ số thu phóng, nhấn-đôi hay nhấn-phải vào giá trị phần trăm trên thanh <emph>Trạng thái</emph>, sau đó chọn hệ số thu phóng thích hợp."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xác định chiều cao của đối tượng đã chọn.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3149669\n"
-"3\n"
+"01130000.xhp\n"
+"par_id34\n"
"help.text"
-msgid "Zoom factor"
-msgstr "Hệ số Thu Phóng"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If checked empty pages that have no cell contents or draw objects are not printed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều ngang trên tờ giấy được in ấn.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3154389\n"
-"4\n"
+"01130000.xhp\n"
+"par_id36\n"
"help.text"
-msgid "Set the zoom factor at which to display the current document and all documents of the same type that you open thereafter."
-msgstr "Đặt hệ số thu phóng ở đó cần hiển thị tài liệu hiện tại và các tài liệu cùng kiểu được mở sau."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For printers with multiple trays this option specifies whether the paper tray used is specified by the system settings of the printer.</ahelp>"
+msgstr "<ahelp hid=\"SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP\">Đối với máy in có nhiều khay, tùy chọn <emph>Khay giấy từ thiết lập máy in</emph> cho biết khay giấy được dùng là khay giấy hệ thống chọn lúc thiết lập máy in .</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3153351\n"
-"20\n"
+"01130000.xhp\n"
+"par_id3149164\n"
+"25\n"
"help.text"
-msgid "Optimal"
-msgstr "Tối ưu"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the entire document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
#, fuzzy
msgctxt ""
-"03010000.xhp\n"
-"par_id3144760\n"
-"21\n"
+"01130000.xhp\n"
+"par_id3152944\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at .</defaultinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Thay đổi kích cỡ của ô hiển thị để vừa khít bề rộng của phạm vi ô đã chọn. </caseinline><defaultinline>Thay đổi kích cỡ của ô hiển thị để vừa khít bề rộng của văn bản trong tài liệu.</defaultinline></switchinline></ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the pages or slides that you specify in the <emph>Pages</emph> box.</ahelp>"
+msgstr "#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\n<ahelp hid=\".\" visibility=\"hidden\">Để thoát khỏi chế độ xem thử, hãy nhấn nút <emph>Đóng ô xem thử</emph>.</ahelp>\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\n<ahelp hid=\".\" visibility=\"hidden\">Để rời khỏi ô xem thử trang, nhấn vào nút <emph>Đóng ô</emph>.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3151210\n"
-"22\n"
+"01130000.xhp\n"
+"par_id3150244\n"
+"30\n"
"help.text"
-msgid "Fit width and height"
-msgstr "Vừa bề rộng và bề cao"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the selected area(s) or object(s) in the current document.</ahelp>"
+msgstr ""
-#: 03010000.xhp
-#, fuzzy
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3150543\n"
-"25\n"
+"01130000.xhp\n"
+"par_id3146848\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\"> Đặt lại kích thước hiển thị để vừa với chiều dài và chiều cao của vùng ô được chọn khi bắt đầu lệnh. </caseinline><defaultinline>Hiển thị toàn bộ trang trên màn hình.</defaultinline></switchinline></ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12.</ahelp>"
+msgstr "Để xuất một phạm vi trang, dùng định dạng « 3-6 ». Để xuất mỗi trang riêng, dùng định dạng « 7;9;11 ». Bạn cũng có thể xuất tổ hợp phạm vi trang và trang đơn, dùng định dạng như « 3-6;8;10;12 »."
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3152771\n"
-"24\n"
+"01130000.xhp\n"
+"par_id3150772\n"
+"18\n"
"help.text"
-msgid "Fit width"
-msgstr "Vừa bề rộng"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints to a file instead of to a printer.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3143231\n"
-"23\n"
+"01130000.xhp\n"
+"par_id38\n"
"help.text"
-msgid "<ahelp hid=\"HID_MNU_ZOOM_PAGE_WIDTH\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
-msgstr "<ahelp hid=\"HID_MNU_ZOOM_PAGE_WIDTH\">Hiển thị bề rộng hoàn toàn của trang tài liệu. Cạnh bên trên/dưới của trang có thể không hiện rõ.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3153106\n"
-"9\n"
+"01130000.xhp\n"
+"par_id40\n"
"help.text"
-msgid "100 %"
-msgstr "100 %"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to print pages in reverse order.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự các điểm dữ liệu.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3147353\n"
-"10\n"
+"01130000.xhp\n"
+"par_id3145069\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/zoomdialog/100pc\">Displays the document at its actual size.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of copies that you want to print.</ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3153191\n"
-"15\n"
+"01130000.xhp\n"
+"par_id3150865\n"
+"36\n"
"help.text"
-msgid "Variable"
-msgstr "Biến đổi"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Preserves the page order of the original document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hoàn nguyên kích cỡ của đối tượng về kích cỡ gốc.</ahelp>"
-#: 03010000.xhp
-#, fuzzy
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3159125\n"
+"01130000.xhp\n"
+"par_id3156113\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/zoomdialog/zoomsb\">Enter the zoom factor at which you want to display the document. Enter a percentage in the box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_ZOOM:ED_USER\">Hãy nhập hệ số thu phóng ở đó bạn muốn hiển thị tài liệu. Nhập vào hộp một tỷ lệ phần tram.</ahelp>"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"hd_id7319864\n"
-"help.text"
-msgid "View layout"
-msgstr "Xem bố trí"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"par_id3423871\n"
-"help.text"
-msgid "For text documents, you can set the view layout. Reduce the zoom factor to see the effects of different view layout settings."
-msgstr "Đối với tập tin văn bản, bạn có thể đặt bố trí xem. Hãy giảm hệ số thu/phóng để thấy hiệu ứng của các thiết lập bố trí xem khác nhau."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the printer properties dialog. The printer properties vary according to the printer that you select.</ahelp>"
+msgstr ""
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3818475\n"
+"01130000.xhp\n"
+"par_id42\n"
"help.text"
-msgid "Automatic"
-msgstr "Tự động"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Show/Hide detailed information of the selected printer.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Định dạng tiêu đề được chọn.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3187353\n"
+"01130000.xhp\n"
+"par_id3149511\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">The automatic view layout displays pages side by side, as many as the zoom factor allows.</ahelp>"
-msgstr "<ahelp hid=\".\">Bố trí tự động xem thì hiển thị các trang nằm cạnh nhau, càng nhiều trang càng có thể theo hệ số thu/phóng đó.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The list box shows the installed printers. Click the printer to use for the current print job. Click the Printer details button to see some information about the selected printer. Click the Properties button to change some of the printer properties.</ahelp>"
+msgstr ""
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id8455153\n"
+"01130000.xhp\n"
+"par_id44\n"
"help.text"
-msgid "Single page"
-msgstr "Trang đơn"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify which pages to include in the output.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9912411\n"
+"01130000.xhp\n"
+"par_id46\n"
"help.text"
-msgid "<ahelp hid=\".\">The single page view layout displays pages beneath each other, but never side by side.</ahelp>"
-msgstr "<ahelp hid=\".\">Bố trí xem trang đơn thì hiển thị các trang nằm dưới nhau, không bao giờ cạnh nhau.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Brochure option to print the document in brochure format.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id9204992\n"
+"01130000.xhp\n"
+"par_id48\n"
"help.text"
-msgid "Columns"
-msgstr "Cột"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which pages of a brochure to print.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một hình riêng trong danh sách.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id1993774\n"
+"01130000.xhp\n"
+"par_id0818200904102910\n"
"help.text"
-msgid "<ahelp hid=\".\">In columns view layout you see pages in a given number of columns side by side. Enter the number of columns.</ahelp>"
-msgstr "<ahelp hid=\".\">Trong bố trí xem theo cột, bạn có thể thấy các trang theo một số cột đã ghi rõ, cả nằm cạnh nhau. Hãy nhập số cột thích hợp.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For brochure printing, you can select a left-to-right order of pages or a right-to-left order.</ahelp>"
+msgstr ""
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id2949919\n"
+"01130000.xhp\n"
+"par_id50\n"
"help.text"
-msgid "Book mode"
-msgstr "Chế độ sách"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to draw a border around each page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn chuột để đi tới trang trợ lý có tên đó.</ahelp>"
-#: 03010000.xhp
+#: 01130000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id2355113\n"
+"01130000.xhp\n"
+"par_id52\n"
"help.text"
-msgid "<ahelp hid=\".\">In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number.</ahelp>"
-msgstr "<ahelp hid=\".\">Trong bố trí chế độ sách, bạn thấy hai trang nằm cạnh nhau, giống như một cuốn sách mở. Trang thứ nhất là một trang bên phải có số thứ tự lẻ.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select order in which pages are to be printed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu đồ thị cơ bản.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id54\n"
"help.text"
-msgid "Formatting Mark"
-msgstr "Dấu định dạng"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the orientation of the paper.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"bm_id9930722\n"
+"01130000.xhp\n"
+"par_id56\n"
"help.text"
-msgid "<bookmark_value>CTL;(not) wrapping words</bookmark_value> <bookmark_value>words;wrapping in CTL</bookmark_value>"
-msgstr "<bookmark_value>CTL;(không) bao từ</bookmark_value><bookmark_value>từ;bao trong CTL</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between the printed pages and paper edge.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự sắp xếp.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id030220091035120\n"
+"01130000.xhp\n"
+"par_id58\n"
"help.text"
-msgid "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">Formatting Mark</link></variable>"
-msgstr "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">Dấu định dạng</link></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between individual pages on each sheet of paper.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một kiểu con của kiểu đồ thị cơ bản.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id0302200910351248\n"
+"01130000.xhp\n"
+"par_id60\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to insert special formatting marks. Enable CTL for more commands.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở một trình đơn phụ để chèn những dấu định dạng đặc biệt. Bật CTL để sử dụng nhiều lệnh hơn.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of rows.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn định dạng tập tin.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id9996948\n"
+"01130000.xhp\n"
+"par_id62\n"
"help.text"
-msgid "Non-breaking space"
-msgstr "Dấu cách không ngắt"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of columns.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn định dạng tập tin.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id8326975\n"
+"01130000.xhp\n"
+"par_id64\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a space that will keep bordering characters together on line breaks.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn một dấu cách sẽ giữ nhau hai ký tự bên cạnh khi dòng ngắt.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many pages to print per sheet of paper.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đối với bản phát tay, chọn số các ảnh chiếu cần in trên mỗi tờ giấy.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id6383556\n"
+"01130000.xhp\n"
+"par_id66\n"
"help.text"
-msgid "Non-breaking hyphen"
-msgstr "Gạch nối không ngắt"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Print multiple pages per sheet of paper.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id8469191\n"
+"01130000.xhp\n"
+"par_id68\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a hyphen that will keep bordering characters together on line breaks.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn một dấu gạch nối từ sẽ giữ nhau hai ký tự bên cạnh khi dòng ngắt.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which parts of the document should be printed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id3306680\n"
+"01130000.xhp\n"
+"par_id70\n"
"help.text"
-msgid "Optional hyphen"
-msgstr "Gạch nối tùy chọn"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many slides to print per page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt thứ tự sắp xếp.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id9407330\n"
+"01130000.xhp\n"
+"par_id72\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an invisible hyphen within a word that will appear and create a line break once it becomes the last character in a line.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn vào bên trong từ một dấu gạch nối từ vô hình sẽ xuất hiện và tạo chỗ ngắt dòng nếu nó trở thành ký tự cuối cùng trên dòng.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to arrange slides on the printed page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều dọc trên tờ giấy được in ấn.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id2295907\n"
+"01130000.xhp\n"
+"par_id74\n"
"help.text"
-msgid "No-width optional break"
-msgstr "Không có bề rộng, ngắt tùy chọn"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the page name of a document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id1536301\n"
+"01130000.xhp\n"
+"par_id76\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn vào bên trong từ một dấu cách vô hình sẽ chèn một chỗ ngắt dòng nếu nó trở thành ký tự cuối cùng trên dòng. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the current date and time.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id3245643\n"
+"01130000.xhp\n"
+"par_id78\n"
"help.text"
-msgid "No-width no break"
-msgstr "Không có bề rộng, không ngắt"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the pages that are currently hidden.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id1085238\n"
+"01130000.xhp\n"
+"par_id80\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will keep the word together at the end of a line. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn vào bên trong từ một dấu cách vô hình sẽ giữ nhau nguyên từ ở kết thúc dòng. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print in original colors.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id4634540\n"
+"01130000.xhp\n"
+"par_id82\n"
"help.text"
-msgid "Left-to-right mark"
-msgstr "Dấu trái qua phải"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as grayscale.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id6690878\n"
+"01130000.xhp\n"
+"par_id84\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn một dấu hướng văn bản mà ảnh hưởng đến hướng văn bản của chuỗi nào theo sau dấu này. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as black and white.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ghi rõ có nên in ra các giá trị lặp lại.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id9420148\n"
+"01130000.xhp\n"
+"par_id86\n"
"help.text"
-msgid "Right-to-left mark"
-msgstr "Dấu phải qua trái"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to scale slides in the printout.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chấn để chọn tất cả các bảng trong tài liệu.</ahelp>"
-#: formatting_mark.xhp
+#: 01130000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id923184\n"
+"01130000.xhp\n"
+"par_id88\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn một dấu hướng văn bản mà ảnh hưởng đến hướng văn bản của chuỗi nào theo sau dấu này. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not want to further scale pages when printing.</ahelp>"
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_DEFAULT\">Ghi rõ rằng bạn không muốn co giãn trang một cách nữa khi in.</ahelp>"
-#: 05080100.xhp
+#: 01130000.xhp
msgctxt ""
-"05080100.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id90\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</ahelp>"
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_PAGESIZE\">Ghi rõ có nên co giãn các đối tượng nằm bên ngoài các lề của máy in hiện thời, để vừa tờ giấy của máy in, hay không.</ahelp>"
-#: 05080100.xhp
+#: 01130000.xhp
msgctxt ""
-"05080100.xhp\n"
-"hd_id3154349\n"
-"1\n"
+"01130000.xhp\n"
+"par_id92\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080100.xhp\" name=\"Left\">Left</link>"
-msgstr "<link href=\"text/shared/01/05080100.xhp\" name=\"Trái\">Trái</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper.</ahelp>"
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_PAGETILE\">Ghi rõ có nên in các trang theo định dạng đã xếp lát. Có trang hay ảnh chiếu nhỏ hơn tờ giấy thì vài trang hay ảnh chiếu sẽ được in trên cùng một tờ giấy.</ahelp>"
-#: 05080100.xhp
+#: 01130000.xhp
msgctxt ""
-"05080100.xhp\n"
-"par_id3150756\n"
-"2\n"
+"01130000.xhp\n"
+"hd_id0818200912285074\n"
"help.text"
-msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the left page margin.</ahelp></variable>"
-msgstr "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Chỉnh canh các đoạn văn đã chọn theo lề bên trái của trang.</ahelp></variable>"
+msgid "%PRODUCTNAME Writer / Calc / Impress / Draw / Math"
+msgstr ""
-#: 05030000.xhp
+#: 01130000.xhp
msgctxt ""
-"05030000.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id0818200912285019\n"
"help.text"
-msgid "Paragraph"
-msgstr "Đoạn văn"
+msgid "The tab page with the same name as the current application can be used to define the contents, color, size, and pages to be printed. You define settings that are specific to the current document type."
+msgstr ""
-#: 05030000.xhp
+#: 01130000.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3150467\n"
-"1\n"
+"01130000.xhp\n"
+"hd_id0818200912285112\n"
"help.text"
-msgid "Paragraph"
-msgstr "Đoạn văn"
+msgid "Page Layout"
+msgstr "Bố trí trang"
-#: 05030000.xhp
+#: 01130000.xhp
msgctxt ""
-"05030000.xhp\n"
-"par_id3148668\n"
-"2\n"
+"01130000.xhp\n"
+"par_id0818200912285150\n"
"help.text"
-msgid "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
-msgstr "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Sửa đổi định dạng của đoạn văn hiện tại, v.d. khoảng thụt lề và hướng chỉnh canh.</ahelp></variable> Để sửa đổi phông của đoạn văn hiện tại, lựa chọn toàn đoạn văn, chọn lệnh <emph>Định dạng > Ký tự</emph>, sau đó nhấn vào thẻ <emph>Phông</emph>."
+msgid "The Page Layout tab page can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper."
+msgstr ""
-#: 05030000.xhp
+#: 01130000.xhp
msgctxt ""
-"05030000.xhp\n"
-"par_id3156042\n"
-"3\n"
+"01130000.xhp\n"
+"par_id0818200904164735\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kiểu dáng Đoạn văn cho đoạn văn hiện tại được hiển thị trên thanh công cụ <emph>Định dạng</emph>, cũng được tô sáng trong cửa sổ <link href=\"text/swriter/01/05140000.xhp\" name=\"Kiểu dáng\">Kiểu dáng và Định dạng</link>. </caseinline></switchinline>"
+msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
+msgstr ""
-#: 05250400.xhp
+#: 01130000.xhp
msgctxt ""
-"05250400.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id0818200904102987\n"
"help.text"
-msgid "Send to Back"
-msgstr "Hạ xuống dưới"
+msgid "For some document types, you can choose to print a brochure."
+msgstr ""
-#: 05250400.xhp
+#: 01130000.xhp
msgctxt ""
-"05250400.xhp\n"
-"hd_id3155620\n"
-"1\n"
+"01130000.xhp\n"
+"hd_id0818200912285138\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250400.xhp\" name=\"Send to Back\">Send to Back</link>"
-msgstr "<link href=\"text/shared/01/05250400.xhp\" name=\"Hạ xuống dưới\">Hạ xuống dưới</link>"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 05250400.xhp
+#: 01130000.xhp
msgctxt ""
-"05250400.xhp\n"
-"par_id3156116\n"
-"2\n"
+"01130000.xhp\n"
+"par_id0818200912285146\n"
"help.text"
-msgid "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">Moves the selected object to the bottom of the stacking order, so that it is behind the other objects.</ahelp>"
-msgstr "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">Hạ thấp đối tượng đã chọn xuống dưới đống, để ẩn « phía sau » các đối tượng khác.</ahelp>"
+msgid "On the Options tab page you can set some additional options for the current print job. Here you can specify to print to a file instead of printing on a printer."
+msgstr ""
-#: 05250400.xhp
+#: 01130000.xhp
msgctxt ""
-"05250400.xhp\n"
-"par_id3152895\n"
-"3\n"
+"01130000.xhp\n"
+"hd_id0819200910481678\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Unix hints</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Chú thích </caseinline></switchinline>"
-#: 05070400.xhp
+#: 01130000.xhp
msgctxt ""
-"05070400.xhp\n"
-"tit\n"
+"01130000.xhp\n"
+"par_id3157320\n"
+"47\n"
"help.text"
-msgid "Align Top"
-msgstr "Canh lề trên"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">If you want, you can use the STAR_SPOOL_DIR environment variable to specify the directory where the Xprinter spoolfiles are saved. For example:</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Bạn cũng có thể sử dụng biến môi trường « STAR_SPOOL_DIR » để ghi rõ thư mục vào đó cần lưu các tập tin ống dẫn (spoolfile) của Xprinter. Thí dụ : </caseinline></switchinline>"
-#: 05070400.xhp
+#: 01130000.xhp
msgctxt ""
-"05070400.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"01130000.xhp\n"
+"par_id3154330\n"
+"48\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070400.xhp\" name=\"Align Top\">Align Top</link>"
-msgstr "<link href=\"text/shared/01/05070400.xhp\" name=\"Canh lề trên\">Canh lề trên</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">setenv STAR_SPOOL_DIR /usr/local/tmp (in the csh/tcsh) or</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">« setenv STAR_SPOOL_DIR /usr/local/tmp » (trong trình bao csh/tcsh) hay </caseinline></switchinline>"
-#: 05070400.xhp
+#: 01130000.xhp
msgctxt ""
-"05070400.xhp\n"
-"par_id3154613\n"
-"2\n"
+"01130000.xhp\n"
+"par_id3150768\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignTop\">Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin.</ahelp>"
-msgstr "<ahelp hid=\".uno:AlignTop\">Chỉnh canh theo chiều dọc các cạnh bên trên của các đối tượng đã chọn. Nếu chỉ chọn một đối tượng trong Draw hay Impress thì cạnh bên trên của đối tượng được chỉnh canh lề bên trên của trang.</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">export STAR_SPOOL_DIR=/usr/local/tmp (in the sh/bash)</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">« export STAR_SPOOL_DIR=/usr/local/tmp » (trong trình bao sh/bash) </caseinline></switchinline>"
-#: 05070400.xhp
+#: 01130000.xhp
msgctxt ""
-"05070400.xhp\n"
-"par_id3154230\n"
-"3\n"
+"01130000.xhp\n"
+"par_id3150449\n"
+"50\n"
"help.text"
-msgid "Objects are aligned to the top edge of the topmost object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
-msgstr "Các đối tượng được chỉnh canh theo cạnh bên trên của đối tượng trên cùng trong vùng chọn. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">You can also use the <link href=\"text/shared/guide/spadmin.xhp\" name=\"spadmin printer setup program\">spadmin printer setup program</link> to specify additional printer options.</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Bạn cũng có thể sử dụng chương trình thiết lập máy in <link href=\"text/shared/guide/spadmin.xhp\" name=\"spadmin\">spadmin</link> để ghi rõ thêm tùy chọn về máy in. </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
+"01140000.xhp\n"
"tit\n"
"help.text"
-msgid "Versions"
-msgstr "Phiên bản"
+msgid "Printer Setup"
+msgstr "Thiết lập Máy in"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"bm_id1759697\n"
+"01140000.xhp\n"
+"bm_id3147294\n"
"help.text"
-msgid "<bookmark_value>versions;file saving as, restriction</bookmark_value>"
-msgstr "<bookmark_value>phiên bản;lưu tập tin dạng, hạn chế</bookmark_value>"
+msgid "<bookmark_value>printers; properties</bookmark_value><bookmark_value>settings; printers</bookmark_value><bookmark_value>properties; printers</bookmark_value><bookmark_value>default printer; setting up</bookmark_value><bookmark_value>printers; default printer</bookmark_value><bookmark_value>page formats; restriction</bookmark_value>"
+msgstr "<bookmark_value>máy in; thuộc tính</bookmark_value><bookmark_value>thiết lập; máy in</bookmark_value><bookmark_value>thuộc tính; máy in</bookmark_value><bookmark_value>máy in mặc định; thiết lập</bookmark_value><bookmark_value>máy in; máy in mặc định</bookmark_value><bookmark_value>định dạng trang; hạn chế</bookmark_value>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3143272\n"
+"01140000.xhp\n"
+"hd_id3147294\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Phiên bản\">Phiên bản</link>"
+msgid "Printer Setup"
+msgstr "Thiết lập Máy in"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3157898\n"
+"01140000.xhp\n"
+"par_id3154422\n"
"2\n"
"help.text"
-msgid "<variable id=\"versionentext\"><ahelp hid=\".uno:VersionDialog\">Saves and organizes multiple versions of the current document in the same file. You can also open, delete, and compare previous versions.</ahelp></variable>"
-msgstr "<variable id=\"versionentext\"><ahelp hid=\".uno:VersionDialog\">Lưu lại và tổ chức các phiên bản khác nhau của cùng một tài liệu trong cùng một tập tin. Bạn cũng có khả năng mở, xoá và so sánh các phiên bản trước.</ahelp></variable>"
+msgid "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Select the default printer for the current document.</ahelp></variable>"
+msgstr "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Chọn máy in mặc định cho tài liệu hiện tại.</ahelp></variable>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153527\n"
-"22\n"
+"01140000.xhp\n"
+"par_id3148620\n"
+"20\n"
"help.text"
-msgid "If you save a copy of a file that contains version information (by choosing <emph>File - Save As)</emph>, the version information is not saved with the file."
-msgstr "Nếu bạn lưu một bản sao của tập tin chứa thông tin về phiên bản (bằng cách chọn lệnh<emph>Tập tin > Lưu dạng)</emph> thì thông tin phiên bản vẫn không được lưu cùng với tập tin."
+msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects."
+msgstr "Có lẽ bạn cần phải đợi một chút khi thay đổi máy in mặc định cho một tài liệu chứa các đối tượng OLE $[officename] nhúng."
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3149750\n"
+"01140000.xhp\n"
+"hd_id3145345\n"
"4\n"
"help.text"
-msgid "New versions"
-msgstr "Phiên bản mới"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Printer </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Máy in </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3163802\n"
+"01140000.xhp\n"
+"par_id3145211\n"
"5\n"
"help.text"
-msgid "Set the options for saving a new version of the document."
-msgstr "Đặt các tùy chọn về chức năng lưu một phiên bản mới của tài liệu."
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Lists the information that applies to the selected printer. </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Liệt kê thông tin thích hợp với máy in đã chọn. </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3147243\n"
+"01140000.xhp\n"
+"par_id3148538\n"
+"19\n"
+"help.text"
+msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer."
+msgstr "Danh sách rỗng thì bạn cần phải cài đặt một máy in mặc định cho hệ điều hành đó. Tham chiếu đến Trợ giúp trực tiếp cho hệ điều hành, để tìm hướng dẫn về cài đặt và thiết lập máy in mặc định như thế nào."
+
+#: 01140000.xhp
+msgctxt ""
+"01140000.xhp\n"
+"hd_id3154381\n"
"6\n"
"help.text"
-msgid "Save New Version"
-msgstr "Lưu phiên bản mới"
+msgid "Name"
+msgstr "Tên"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3149149\n"
+"01140000.xhp\n"
+"par_id3156155\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE\">Saves the current state of the document as a new version. If you want, you can also enter comments in the <emph>Insert Version Comment </emph>dialog before you save the new version.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE\">Lưu tình trạng hiện thời của tài liệu như một phiên bản mới. Bạn cũng có thể ghi chú vào hộp thoại <emph>Chèn ghi chú phiên bản </emph> trước khi xác nhận chức năng lưu phiên bản mới.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Lists the installed printers on your operating system. To change the default printer, select a printer name from the list.</ahelp>"
+msgstr "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Liệt kê các máy in đã cài đặt vào hệ điều hành của bạn. Để thay đổi máy in mặc định, chọn tên của máy in khác trong danh sách.</ahelp>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3153348\n"
+"01140000.xhp\n"
+"hd_id3156153\n"
"8\n"
"help.text"
-msgid "Insert Version Comment"
-msgstr "Chèn ghi chú phiên bản"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Status </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Trạng thái </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3150466\n"
+"01140000.xhp\n"
+"par_id3150465\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS\">Enter a comment here when you are saving a new version. If you clicked <emph>Show </emph>to open this dialog, you cannot edit the comment.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS\">Ghi chú vào đây khi bạn lưu phiên bản mới. Tuy nhiên, nếu bạn đã nhấn vào nút <emph>Hiện</emph> để mở hộp thoại này, bạn vẫn còn không thể chỉnh sửa ghi chú.</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Describes the current status of the selected printer. </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Diễn tả trạng thái hiện thời về máy in đã chọn. </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3149514\n"
+"01140000.xhp\n"
+"hd_id3154898\n"
"10\n"
"help.text"
-msgid "Always save version when closing"
-msgstr "Lúc nào cũng lưu phiên bản khi đóng"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Type </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Kiểu</caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153823\n"
+"01140000.xhp\n"
+"par_id3156326\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE\">If you have made changes to your document, $[officename] automatically saves a new version when you close the document.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE\">Bạn sửa đổi tài liệu thì $[officename] tự động lưu một phiên bản mới khi bạn đóng tài liệu.</ahelp>"
-
-#: 01190000.xhp
-msgctxt ""
-"01190000.xhp\n"
-"par_id6663823\n"
-"help.text"
-msgid "If you save the document manually, do not change the document after saving, and then close, no new version will be created."
-msgstr ""
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the type of printer that you selected. </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Hiển thị kiểu máy in bạn đã chọn. </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3159167\n"
+"01140000.xhp\n"
+"hd_id3149416\n"
"12\n"
"help.text"
-msgid "Existing versions"
-msgstr "Phiên bản đã có"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Location </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Vị trí </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3156327\n"
+"01140000.xhp\n"
+"par_id3149955\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_VERSIONS\">Lists the existing versions of the current document, the date and the time they were created, the author and the associated comments.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MODALDIALOG:DLG_VERSIONS\">Liệt kê các phiên bản đã tồn tại của tài liệu, và cho mỗi bản sao, ngày/giờ tạo, tác giả và ghi chú liên quan.</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the port for the selected printer. </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Hiển thị cổng cho máy in đã chọn. </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3149578\n"
+"01140000.xhp\n"
+"hd_id3145316\n"
"14\n"
"help.text"
-msgid "Open"
-msgstr "Mở"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Comments </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Chú thích </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153827\n"
+"01140000.xhp\n"
+"par_id3155923\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN\">Opens the selected version in a read-only window.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN\">Mở phiên bản đã chọn trong cửa sổ chỉ-đọc (không thể ghi vào).</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays additional information for the printer. </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Hiển thị thêm thông tin về máy in. </caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3147530\n"
+"01140000.xhp\n"
+"hd_id3149669\n"
"16\n"
"help.text"
-msgid "Show"
-msgstr "Hiện"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153061\n"
+"01140000.xhp\n"
+"par_id3149045\n"
"17\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW\">Displays the entire comment for the selected version.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW\">Hiển thị toàn ghi chú về phiên bản đã chọn.</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Changes the printer settings of your operating system for the current document.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Sửa đổi thiết lập máy in của hệ điều hành chỉ cho tài liệu hiện tại.</ahelp></caseinline></switchinline>"
-#: 01190000.xhp
+#: 01140000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3154923\n"
+"01140000.xhp\n"
+"par_id3157322\n"
"18\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
-
-#: 01190000.xhp
-msgctxt ""
-"01190000.xhp\n"
-"par_id3149669\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE\">Deletes the selected version.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE\">Xoá phiên bản đã chọn.</ahelp>"
-
-#: 01190000.xhp
-msgctxt ""
-"01190000.xhp\n"
-"hd_id3148739\n"
-"21\n"
-"help.text"
-msgid "Compare"
-msgstr "So sánh"
-
-#: 01190000.xhp
-msgctxt ""
-"01190000.xhp\n"
-"par_id3152811\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link>."
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE\">So sánh các thay đổi được làm trong mỗi phiên bản.</ahelp> Bạn cũng có thể <link href=\"text/shared/01/02230400.xhp\" name=\"Chấp nhận hay Từ chối thay đổi\"><emph>Chấp nhận hay Từ chối thay đổi</emph></link>."
-
-#: 05250100.xhp
-msgctxt ""
-"05250100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Bring to Front"
-msgstr "Nâng lên trên"
-
-#: 05250100.xhp
-msgctxt ""
-"05250100.xhp\n"
-"hd_id3154044\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250100.xhp\" name=\"Bring to Front\">Bring to Front</link>"
-msgstr "<link href=\"text/shared/01/05250100.xhp\" name=\"Nâng lên trên\">Nâng lên trên</link>"
-
-#: 05250100.xhp
-msgctxt ""
-"05250100.xhp\n"
-"par_id3149991\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">Moves the selected object to the top of the stacking order, so that it is in front of other objects.</ahelp>"
-msgstr "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">Nâng đối tượng đã chọn lên trên đống, để hiện rõ « phía trước » các đối tượng khác.</ahelp>"
-
-#: 05250100.xhp
-msgctxt ""
-"05250100.xhp\n"
-"par_id3147588\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
+msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <emph>Format - Page</emph>."
+msgstr "Kiểm tra xem tùy chọn bố trí <emph>Nằm ngang</emph> hay <emph>Thẳng đứng</emph> tương ứng với định dạng trang bạn đã đặt, bằng cách chọn lệnh <emph>Định dạng > Trang</emph>."
#: 01160000.xhp
msgctxt ""
@@ -7261,359 +5446,39 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01160300.xhp\" name=\"Create AutoAbstract\">Create AutoAbstract</link>"
msgstr "<link href=\"text/swriter/01/01160300.xhp\" name=\"Tạo Trích yếu Tự động\">Tạo Trích yếu Tự động</link>"
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Standard Bar"
-msgstr "Thanh Chuẩn"
-
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"bm_id3150467\n"
-"help.text"
-msgid "<bookmark_value>standard bar on/off</bookmark_value>"
-msgstr "<bookmark_value>hiện/ẩn thanh chuẩn</bookmark_value>"
-
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"hd_id3150467\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/03020000.xhp\" name=\"Standard Bar\">Standard Bar</link>"
-msgstr "<link href=\"text/shared/01/03020000.xhp\" name=\"Thanh Chuẩn\">Thanh Chuẩn</link>"
-
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"par_id3149495\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FunctionBarVisible\">Shows or hides the <emph>Standard Bar</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:FunctionBarVisible\">Hiển thị hay ẩn <emph>Thanh Chuẩn</emph>.</ahelp>"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Document List"
-msgstr "Danh sách Tài liệu"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"hd_id3155620\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/07080000.xhp\" name=\"Document List\">Document List</link>"
-msgstr "<link href=\"text/shared/01/07080000.xhp\" name=\"Danh sách Tài liệu\">Danh sách Tài liệu</link>"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3147273\n"
-"2\n"
-"help.text"
-msgid "Lists the currently open documents. Select the name of a document in the list to switch to that document."
-msgstr "Liệt kê các tài liệu còn mở. Chọn tên của một tài liệu trong danh sách, để chuyển đổi sang tài liệu đó."
-
-#: 05090000.xhp
-msgctxt ""
-"05090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Font"
-msgstr "Phông"
-
-#: 05090000.xhp
-msgctxt ""
-"05090000.xhp\n"
-"bm_id3155271\n"
-"help.text"
-msgid "<bookmark_value>fonts; text objects</bookmark_value><bookmark_value>text objects; fonts</bookmark_value>"
-msgstr "<bookmark_value>phông; đối tượng văn bản</bookmark_value><bookmark_value>đối tượng văn bản; phông</bookmark_value>"
-
-#: 05090000.xhp
-msgctxt ""
-"05090000.xhp\n"
-"hd_id3155271\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05090000.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05090000.xhp\" name=\"Phông\">Phông</link>"
-
-#: 05090000.xhp
-msgctxt ""
-"05090000.xhp\n"
-"par_id3153383\n"
-"2\n"
-"help.text"
-msgid "Set the font options for the selected text."
-msgstr "Đặt các tùy chọn phông cho văn bản đã chọn."
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Description"
-msgstr "Mô tả"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"hd_id3147588\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100100.xhp\" name=\"Description\">Description</link>"
-msgstr "<link href=\"text/shared/01/01100100.xhp\" name=\"Mô tả\">Mô tả</link>"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"par_id3154682\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DOCINFODESC\">Contains descriptive information about the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DOCINFODESC\">Chức thông tin diễn tả tài liệu.</ahelp>"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"hd_id3152372\n"
-"3\n"
-"help.text"
-msgid "Title"
-msgstr "Tựa đề"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"par_id3156042\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_TITLE\">Enter a title for the document.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_TITLE\">Nhập tên cho tài liệu.</ahelp>"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"hd_id3145669\n"
-"5\n"
-"help.text"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"par_id3147571\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_THEMA\">Enter a subject for the document. You can use a subject to group documents with similar contents.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_THEMA\">Nhập chủ đề về tài liệu. Bạn cũng có thể sử dụng chủ đề để nhóm lại các tài liệu có nội dung tương tự.</ahelp>"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"hd_id3156426\n"
-"7\n"
-"help.text"
-msgid "Keywords"
-msgstr "Từ khoá"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"par_id3155338\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_KEYWORDS\">Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_KEYWORDS\">Điền vào những từ mà bạn muốn sử dụng để lập chỉ mục cho tài liệu của mình. Các từ khóa phải được phân cách bằng dấu phẩy. Những từ khóa có thể chứa khoảng trắng hoặc dấu chấm phẩy.</ahelp>"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"hd_id3148620\n"
-"9\n"
-"help.text"
-msgid "Comments"
-msgstr "Chú thích"
-
-#: 01100100.xhp
-msgctxt ""
-"01100100.xhp\n"
-"par_id3155391\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:TP_DOCINFODESC:ED_COMMENT\">Enter comments to help identify the document.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MULTILINEEDIT:TP_DOCINFODESC:ED_COMMENT\">Nhập chú thích để giúp nhận dạng tài liệu.</ahelp>"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"tit\n"
-"help.text"
-msgid "Enter Master Password"
-msgstr "Gõ mật khẩu chủ"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"hd_id3154183\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"password_maintitle\"><link href=\"text/shared/01/password_main.xhp\" name=\"Enter Master Password\">Enter Master Password</link></variable>"
-msgstr "<variable id=\"password_maintitle\"><link href=\"text/shared/01/password_main.xhp\" name=\"Gõ mật khẩu chủ\">Gõ mật khẩu chủ</link></variable>"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id3154841\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"\">Assign a master password to protect the access to a saved password.</ahelp>"
-msgstr "<ahelp hid=\"\">Gán một mật khẩu chủ để bảo vệ khả năng truy cập đến mật khẩu đã lưu.</ahelp>"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id3146857\n"
-"3\n"
-"help.text"
-msgid "You can save some passwords for the duration of a session, or permanently to a file protected by a master password."
-msgstr "Bạn có thể lưu một số mật khẩu nào đó trong phiên đang chạy, hoặc lưu hẳn vào tập tin được mật khẩu chủ bảo vệ."
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id3147000\n"
-"6\n"
-"help.text"
-msgid "You must enter the master password to access a file or service that is protected by a saved password. You only need to enter the master password once during a session."
-msgstr "Bạn phải nhập mật khẩu chủ để truy cập đến một tập tin hay dịch vụ được bảo vệ bằng mật khẩu đã lưu. Chỉ cần nhập mật khẩu chủ một lần trong mỗi phiên chạy."
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545958\n"
-"help.text"
-msgid "You should only use passwords that are hard to find by other persons or programs. A password should follow these rules:"
-msgstr "Bạn nên sử dụng những mật khẩu mà người khác hoặc chương trình khác khó tìm thấy. Một mật khẩu phải tuân thủ những qui tắc sau:"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545989\n"
-"help.text"
-msgid "Length of eight or more characters."
-msgstr "Có độ dài từ 8 ký tự trở lên."
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545951\n"
-"help.text"
-msgid "Contains a mix of lower case and upper case letters, numbers, and special characters."
-msgstr "Chứa cả chữ thường, chữ hoa, số và những ký tự đặc biệt."
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545923\n"
-"help.text"
-msgid "Cannot be found in any wordbook or encyclopedia."
-msgstr "Không tìm thấy sách có chứa từ hay sách bách khoa nào"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910550049\n"
-"help.text"
-msgid "Has no direct relation to your personal data, e.g., date of birth or car plate."
-msgstr "Không liên hệ trực tiếp đến thông tin cá nhân của bạn như ngày sinh hoặc biển số xe."
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"hd_id3147588\n"
-"7\n"
-"help.text"
-msgid "Master password"
-msgstr "Mật khẩu chủ"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id3148731\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD\">Type a master password to prevent unauthorized users from accessing stored passwords.</ahelp>"
-msgstr "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD\">Gõ một mật khẩu chủ để ngăn cản người lạ truy cập đến các mật khẩu đã lưu.</ahelp>"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"hd_id3144436\n"
-"9\n"
-"help.text"
-msgid "Confirm master password"
-msgstr "Xác nhận mật khẩu chủ"
-
-#: password_main.xhp
-msgctxt ""
-"password_main.xhp\n"
-"par_id3145129\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT\">Re-enter the master password.</ahelp>"
-msgstr "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT\">Nhập lại mật khẩu chủ.</ahelp>"
-
-#: 05120000.xhp
+#: 01160200.xhp
msgctxt ""
-"05120000.xhp\n"
+"01160200.xhp\n"
"tit\n"
"help.text"
-msgid "Line Spacing"
-msgstr "Giãn cách dòng"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"bm_id3152876\n"
-"help.text"
-msgid "<bookmark_value>line spacing; context menu in paragraphs</bookmark_value><bookmark_value>text; line spacing</bookmark_value>"
-msgstr "<bookmark_value>giãn cách dòng; trình đơn ngữ cảnh trong đoạn văn</bookmark_value><bookmark_value>văn bản; giãn cách dòng</bookmark_value>"
+msgid "Document as E-mail"
+msgstr "Tài liệu dạng Thư điện tử"
-#: 05120000.xhp
+#: 01160200.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3152876\n"
+"01160200.xhp\n"
+"hd_id3150702\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120000.xhp\" name=\"Line Spacing\">Line Spacing</link>"
-msgstr "<link href=\"text/shared/01/05120000.xhp\" name=\"Giãn cách dòng\">Giãn cách dòng</link>"
+msgid "<link href=\"text/shared/01/01160200.xhp\">Document as E-mail</link>"
+msgstr "<link href=\"text/shared/01/01160200.xhp\">Tài liệu dạng Thư điện tử</link>"
-#: 05120000.xhp
+#: 01160200.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3153514\n"
+"01160200.xhp\n"
+"par_id3152823\n"
"2\n"
"help.text"
-msgid "Specify the amount of space to leave between lines of text in a paragraph."
-msgstr "Ghi rõ khoảng cách cần để lại giữa hai dòng văn bản trong đoạn văn."
+msgid "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">Opens a new window in your default e-mail program with the current document as an attachment. The current file format is used.</ahelp></variable> If the document is new and unsaved, the format specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General is used."
+msgstr ""
-#: 05120000.xhp
+#: 01160200.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3155364\n"
+"01160200.xhp\n"
+"par_id0807200809553672\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Thụt lề và Giãn cách\">Thụt lề và Giãn cách</link>"
+msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail."
+msgstr "Nếu tài liệu trong định dạng HTML, các hình ảnh được nhúng hay liên kết tới sẽ không được gửi trong thư điện tử."
#: 01160300.xhp
msgctxt ""
@@ -7704,2655 +5569,1878 @@ msgctxt ""
msgid "Save"
msgstr "Lưu"
-#: 06990000.xhp
+#: 01170000.xhp
msgctxt ""
-"06990000.xhp\n"
+"01170000.xhp\n"
"tit\n"
"help.text"
-msgid "Spellcheck"
-msgstr "Kiểm tra chính tả"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"hd_id3147069\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06990000.xhp\" name=\"Spellcheck\">Spellcheck</link>"
-msgstr "<link href=\"text/shared/01/06990000.xhp\" name=\"Kiểm tra Chính tả\">Kiểm tra Chính tả</link>"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"par_id3153116\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Checks spelling manually.</ahelp>"
-msgstr "<ahelp hid=\".\">Kiểm tra chính tả bằng tay.</ahelp>"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"par_id2551957\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Check\">Spellcheck dialog</link>"
-msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Kiểm tra\">Hộp thoại Kiểm tra Chính tả</link>"
+msgid "Exit"
+msgstr "Thoát"
-#: 05360000.xhp
+#: 01170000.xhp
msgctxt ""
-"05360000.xhp\n"
-"tit\n"
+"01170000.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "Distribution"
-msgstr "Phân phối"
+msgid "<bookmark_value>exiting;$[officename]</bookmark_value>"
+msgstr "<bookmark_value>thoát;$[officename]</bookmark_value>"
-#: 05360000.xhp
+#: 01170000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3154812\n"
+"01170000.xhp\n"
+"hd_id3154545\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
-msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Phân phối\">Phân phối</link>"
+msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit</link>"
+msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Thoát\">Thoát</link>"
-#: 05360000.xhp
+#: 01170000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3149119\n"
+"01170000.xhp\n"
+"par_id3151299\n"
"2\n"
"help.text"
-msgid "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp></variable>"
-msgstr "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Phân phối ba hoặc hơn nữa đối tượng đã chọn một cách đều đều theo trục nằm ngang hay trục thẳng đứng. Bạn cũng có thể phân phối đều đều khoảng cách giữa các đối tượng khác nhau.</ahelp></variable>"
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Objects are distributed with respect to the outermost objects in the selection."
-msgstr "Các đối tượng được phân phối tương ứng với các đối tượng ngoài cùng trong vùng chọn."
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"hd_id3149811\n"
-"4\n"
-"help.text"
-msgid "Horizontally"
-msgstr "Theo chiều ngang"
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"par_id3150355\n"
-"5\n"
-"help.text"
-msgid "Specify the horizontal distribution for the selected objects."
-msgstr "Ghi rõ sự phân phối theo chiều ngang cho các đối tượng đã chọn."
+msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>"
+msgstr "<ahelp hid=\".\">Thay thế mọi lần gặp đoạn văn hay định dạng bạn muốn thay thế.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Lặp lại lệnh này đến khi thay thế tất cả các đoạn/đồ trên ảnh chiếu của bạn. </caseinline></switchinline>"
-#: 05360000.xhp
+#: 01170000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3149276\n"
+"01170000.xhp\n"
+"par_id3154184\n"
"6\n"
"help.text"
-msgid "None"
-msgstr "Không có"
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"par_id3147618\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE\">Does not distribute the objects horizontally.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE\">Không phân phối các đối tượng theo chiều ngang.</ahelp>"
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"hd_id3148990\n"
-"8\n"
-"help.text"
-msgid "Left"
-msgstr "Trái"
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"par_id3159269\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT\">Distributes the selected objects, so that the left edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT\">Phân phối các đối tượng đã chọn, để mà các cạnh bên trái của các đối tượng được đặt cách nhau đều đều.</ahelp>"
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"hd_id3150130\n"
-"10\n"
-"help.text"
-msgid "Center"
-msgstr "Giữa"
-
-#: 05360000.xhp
-msgctxt ""
-"05360000.xhp\n"
-"par_id3153146\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER\">Distributes the selected objects, so that the horizontal centers of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER\">Phân phối các đối tượng đã chọn, để mà các trung tâm nằm ngang của các đối tượng được đặt cách nhau đều đều.</ahelp>"
+msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close the current document\">Close the current document</link>"
+msgstr "<link href=\"text/shared/01/01050000.xhp\" name=\"Đóng tài liệu hiện tại\">Đóng tài liệu hiện tại</link>"
-#: 05360000.xhp
+#: 01180000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3147574\n"
-"12\n"
+"01180000.xhp\n"
+"tit\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "Save All"
+msgstr "Lưu tất cả"
-#: 05360000.xhp
+#: 01180000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3148924\n"
-"13\n"
+"01180000.xhp\n"
+"hd_id3150347\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE\">Distributes the selected objects horizontally, so that the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE\">Phân phối theo chiều ngang các đối tượng đã chọn, để mà các đối tượng được đặt cách nhau đều đều.</ahelp>"
+msgid "<link href=\"text/shared/01/01180000.xhp\" name=\"Save All\">Save All</link>"
+msgstr "<link href=\"text/shared/01/01180000.xhp\" name=\"Lưu tất cả\">Lưu tất cả</link>"
-#: 05360000.xhp
+#: 01180000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3155390\n"
-"14\n"
+"01180000.xhp\n"
+"par_id3151299\n"
+"1\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "<ahelp hid=\".uno:SaveAll\">Saves all modified $[officename] documents.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveAll\">Lưu tất cả các tài liệu $[officename] đã chỉnh sửa.</ahelp>"
-#: 05360000.xhp
+#: 01180000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3153252\n"
-"15\n"
+"01180000.xhp\n"
+"par_id3148440\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT\">Distributes the selected objects, so that the right edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT\">Phân phối các đối tượng đã chọn, để mà các cạnh bên phải của các đối tượng được đặt cách nhau đều đều.</ahelp>"
+msgid "If you are saving a new file or a copy of a read-only file, the <link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link> dialog appears."
+msgstr "Nếu bạn đang lưu một tập tin mới, hay một bản sao của tập tin chỉ-đọc, hộp thoại <link href=\"text/shared/01/01070000.xhp\" name=\"Lưu dạng\">Lưu dạng</link> sẽ mở."
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3150245\n"
-"16\n"
+"01190000.xhp\n"
+"tit\n"
"help.text"
-msgid "Vertically"
-msgstr "Nằm dọc"
+msgid "Versions"
+msgstr "Phiên bản"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3155321\n"
-"17\n"
+"01190000.xhp\n"
+"bm_id1759697\n"
"help.text"
-msgid "Specify the vertical distribution for the selected objects."
-msgstr "Ghi rõ sự phân phối theo chiều dọc cho các đối tượng đã chọn."
+msgid "<bookmark_value>versions;file saving as, restriction</bookmark_value>"
+msgstr "<bookmark_value>phiên bản;lưu tập tin dạng, hạn chế</bookmark_value>"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3148563\n"
-"18\n"
+"01190000.xhp\n"
+"hd_id3143272\n"
+"1\n"
"help.text"
-msgid "None"
-msgstr "Không có"
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Phiên bản\">Phiên bản</link>"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3155922\n"
-"19\n"
+"01190000.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE\">Does not distribute the objects vertically.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE\">Không phân phối theo chiều dọc các đối tượng.</ahelp>"
+msgid "<variable id=\"versionentext\"><ahelp hid=\".uno:VersionDialog\">Saves and organizes multiple versions of the current document in the same file. You can also open, delete, and compare previous versions.</ahelp></variable>"
+msgstr "<variable id=\"versionentext\"><ahelp hid=\".uno:VersionDialog\">Lưu lại và tổ chức các phiên bản khác nhau của cùng một tài liệu trong cùng một tập tin. Bạn cũng có khả năng mở, xoá và so sánh các phiên bản trước.</ahelp></variable>"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3153626\n"
-"20\n"
+"01190000.xhp\n"
+"par_id3153527\n"
+"22\n"
"help.text"
-msgid "Top"
-msgstr "Trên"
+msgid "If you save a copy of a file that contains version information (by choosing <emph>File - Save As)</emph>, the version information is not saved with the file."
+msgstr "Nếu bạn lưu một bản sao của tập tin chứa thông tin về phiên bản (bằng cách chọn lệnh<emph>Tập tin > Lưu dạng)</emph> thì thông tin phiên bản vẫn không được lưu cùng với tập tin."
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3152361\n"
-"21\n"
+"01190000.xhp\n"
+"hd_id3149750\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP\">Distributes the selected objects, so that the top edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP\">Phân phối các đối tượng đã chọn, để mà các cạnh bên trên của các đối tượng được đặt cách nhau đều đều.</ahelp>"
+msgid "New versions"
+msgstr "Phiên bản mới"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3147264\n"
-"22\n"
+"01190000.xhp\n"
+"par_id3163802\n"
+"5\n"
"help.text"
-msgid "Center"
-msgstr "Giữa"
+msgid "Set the options for saving a new version of the document."
+msgstr "Đặt các tùy chọn về chức năng lưu một phiên bản mới của tài liệu."
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3161656\n"
-"23\n"
+"01190000.xhp\n"
+"hd_id3147243\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER\">Distributes the selected objects, so that the vertical centers of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER\">Phân phối các đối tượng đã chọn, để mà các trung tâm thẳng đứng của các đối tượng được đặt cách nhau đều đều.</ahelp>"
+msgid "Save New Version"
+msgstr "Lưu phiên bản mới"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3150865\n"
-"24\n"
+"01190000.xhp\n"
+"par_id3149149\n"
+"7\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE\">Saves the current state of the document as a new version. If you want, you can also enter comments in the <emph>Insert Version Comment </emph>dialog before you save the new version.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE\">Lưu tình trạng hiện thời của tài liệu như một phiên bản mới. Bạn cũng có thể ghi chú vào hộp thoại <emph>Chèn ghi chú phiên bản </emph> trước khi xác nhận chức năng lưu phiên bản mới.</ahelp>"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3153360\n"
-"25\n"
+"01190000.xhp\n"
+"hd_id3153348\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE\">Distributes the selected objects vertically, so that the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE\">Phân phối theo chiều dọc các đối tượng đã chọn, để mà các đối tượng được đặt cách nhau đều đều.</ahelp>"
+msgid "Insert Version Comment"
+msgstr "Chèn ghi chú phiên bản"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3154071\n"
-"26\n"
+"01190000.xhp\n"
+"par_id3150466\n"
+"9\n"
"help.text"
-msgid "Bottom"
-msgstr "Dưới"
+msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS\">Enter a comment here when you are saving a new version. If you clicked <emph>Show </emph>to open this dialog, you cannot edit the comment.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS\">Ghi chú vào đây khi bạn lưu phiên bản mới. Tuy nhiên, nếu bạn đã nhấn vào nút <emph>Hiện</emph> để mở hộp thoại này, bạn vẫn còn không thể chỉnh sửa ghi chú.</ahelp>"
-#: 05360000.xhp
+#: 01190000.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3152771\n"
-"27\n"
+"01190000.xhp\n"
+"hd_id3149514\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM\">Distributes the selected objects, so that the bottom edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM\">Phân phối các đối tượng đã chọn, để mà các cạnh bên dưới của các đối tượng được đặt cách nhau đều đều.</ahelp>"
+msgid "Always save version when closing"
+msgstr "Lúc nào cũng lưu phiên bản khi đóng"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"tit\n"
+"01190000.xhp\n"
+"par_id3153823\n"
+"11\n"
"help.text"
-msgid "Language"
-msgstr "Ngôn ngữ"
+msgid "<ahelp hid=\"SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE\">If you have made changes to your document, $[officename] automatically saves a new version when you close the document.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE\">Bạn sửa đổi tài liệu thì $[officename] tự động lưu một phiên bản mới khi bạn đóng tài liệu.</ahelp>"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN1055C\n"
+"01190000.xhp\n"
+"par_id6663823\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010500.xhp\">Language</link>"
-msgstr "<link href=\"text/shared/01/06010500.xhp\">Ngôn ngữ</link>"
+msgid "If you save the document manually, do not change the document after saving, and then close, no new version will be created."
+msgstr ""
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN1056C\n"
+"01190000.xhp\n"
+"hd_id3159167\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu where you can choose language specific commands.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở một trình đơn phụ trong đó bạn có thể chọn các lệnh đặc trưng cho ngôn ngữ.</ahelp>"
+msgid "Existing versions"
+msgstr "Phiên bản đã có"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id5787224\n"
+"01190000.xhp\n"
+"par_id3156327\n"
+"13\n"
"help.text"
-msgid "For Selection"
-msgstr "Cho vùng chọn"
+msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_VERSIONS\">Lists the existing versions of the current document, the date and the time they were created, the author and the associated comments.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:MODALDIALOG:DLG_VERSIONS\">Liệt kê các phiên bản đã tồn tại của tài liệu, và cho mỗi bản sao, ngày/giờ tạo, tác giả và ghi chú liên quan.</ahelp>"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id1507309\n"
+"01190000.xhp\n"
+"hd_id3149578\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the selected text. <br/>Choose None to exclude the selected text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở một trình đơn phụ. Hãy chọn một ngôn ngữ cho văn bản đã chọn.<br/>Chọn <emph>Không có</emph>để loại trừ văn bản đã chọn khỏi tiến trình kiểm tra chính tả và gạch nối từ.<br/>Chọn <emph>Nhiều</emph> để mở hộp thoại chứa thêm tùy chọn.</ahelp>"
+msgid "Open"
+msgstr "Mở"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id7693411\n"
+"01190000.xhp\n"
+"par_id3153827\n"
+"15\n"
"help.text"
-msgid "For Paragraph"
-msgstr "Cho đoạn văn"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN\">Opens the selected version in a read-only window.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN\">Mở phiên bản đã chọn trong cửa sổ chỉ-đọc (không thể ghi vào).</ahelp>"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id3928952\n"
+"01190000.xhp\n"
+"hd_id3147530\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the current paragraph. <br/>Choose None to exclude the current paragraph from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở một trình đơn phụ. Hãy chọn một ngôn ngữ cho đoạn văn đã chọn.<br/>Chọn <emph>Không có</emph>để loại trừ đoạn văn hiện tại khỏi tiến trình kiểm tra chính tả và gạch nối từ.<br/>Chọn <emph>Nhiều</emph> để mở hộp thoại chứa thêm tùy chọn.</ahelp>"
+msgid "Show"
+msgstr "Hiện"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id5206762\n"
+"01190000.xhp\n"
+"par_id3153061\n"
+"17\n"
"help.text"
-msgid "For all Text"
-msgstr "Cho mọi văn bản"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW\">Displays the entire comment for the selected version.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW\">Hiển thị toàn ghi chú về phiên bản đã chọn.</ahelp>"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id5735953\n"
+"01190000.xhp\n"
+"hd_id3154923\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for all text. <br/>Choose None to exclude all text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở một trình đơn phụ. Hãy chọn một ngôn ngữ cho mọi văn bản.<br/>Chọn <emph>Không có</emph>để loại trừ mọi văn bản khỏi tiến trình kiểm tra chính tả và gạch nối từ.<br/>Chọn <emph>Nhiều</emph> để mở hộp thoại chứa thêm tùy chọn.</ahelp>"
+msgid "Delete"
+msgstr "Xoá"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105AF\n"
+"01190000.xhp\n"
+"par_id3149669\n"
+"19\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Gạch nối từ"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE\">Deletes the selected version.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE\">Xoá phiên bản đã chọn.</ahelp>"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105B3\n"
+"01190000.xhp\n"
+"hd_id3148739\n"
+"21\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/05340300.xhp\">Format - Cells - Alignment</link> tab page."
-msgstr "Mở trang thẻ <link href=\"text/shared/01/05340300.xhp\">Định dạng > Ô > Canh lề</link>."
+msgid "Compare"
+msgstr "So sánh"
-#: 06010500.xhp
+#: 01190000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105D0\n"
+"01190000.xhp\n"
+"par_id3152811\n"
+"23\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Gạch nối từ"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link>."
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE\">So sánh các thay đổi được làm trong mỗi phiên bản.</ahelp> Bạn cũng có thể <link href=\"text/shared/01/02230400.xhp\" name=\"Chấp nhận hay Từ chối thay đổi\"><emph>Chấp nhận hay Từ chối thay đổi</emph></link>."
-#: 06010500.xhp
+#: 01990000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105D4\n"
+"01990000.xhp\n"
+"tit\n"
"help.text"
-msgid "Turns hyphenation on and off."
-msgstr "Bật/tắt chức năng gạch nối từ."
+msgid "Recent Documents"
+msgstr "Tài liệu vừa mở"
-#: 06010500.xhp
+#: 01990000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105E7\n"
+"01990000.xhp\n"
+"hd_id3150279\n"
+"6\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Gạch nối từ"
+msgid "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Recent Documents\">Recent Documents</link></variable>"
+msgstr "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Tài liệu vừa mở\">Tài liệu vừa mở</link></variable>"
-#: 06010500.xhp
+#: 01990000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105EB\n"
+"01990000.xhp\n"
+"par_id3154794\n"
+"5\n"
"help.text"
-msgid "Turns hyphenation on and off."
-msgstr "Bật/tắt chức năng gạch nối từ."
+msgid "<ahelp hid=\".\">Lists the most recently opened files. To open a file in the list, click its name.</ahelp>"
+msgstr "<ahelp hid=\".\">Liệt kê các tập tin vừa mở. Để mở một tập tin nào đó trong danh sách này, nhấn vào tên của nó.</ahelp>"
-#: 06010500.xhp
+#: 01990000.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id0805200811534540\n"
+"01990000.xhp\n"
+"par_id3159079\n"
+"4\n"
"help.text"
-msgid "More Dictionaries Online"
-msgstr "Tìm thêm các từ điển trực tuyến"
+msgid "The file is opened by the <item type=\"productname\">%PRODUCTNAME</item> module that saved it."
+msgstr "Tập tin được mở bằng mô-đun <item type=\"productname\">%PRODUCTNAME</item> đã lưu nó."
-#: 06010500.xhp
+#: 02010000.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id0805200811534630\n"
+"02010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the default browser on the dictionaries extension page.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở trình duyệt mặc định vào trang của các phần mở rộng cho từ điển.</ahelp>"
+msgid "Undo"
+msgstr "Hủy bước"
-#: 05120300.xhp
+#: 02010000.xhp
msgctxt ""
-"05120300.xhp\n"
-"tit\n"
+"02010000.xhp\n"
+"bm_id3155069\n"
"help.text"
-msgid "Double (Line)"
-msgstr "Đôi (dòng)"
+msgid "<bookmark_value>undoing;editing</bookmark_value><bookmark_value>editing;undoing</bookmark_value>"
+msgstr "<bookmark_value>hoàn tác;chỉnh sửa</bookmark_value><bookmark_value>soạn thảo;hồi lại</bookmark_value>"
-#: 05120300.xhp
+#: 02010000.xhp
msgctxt ""
-"05120300.xhp\n"
-"hd_id3083278\n"
+"02010000.xhp\n"
+"hd_id3155069\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120300.xhp\" name=\"Double (Line)\">Double (Line)</link>"
-msgstr "<link href=\"text/shared/01/05120300.xhp\" name=\"Đôi (dòng)\">Đôi (dòng)</link>"
+msgid "<link href=\"text/shared/01/02010000.xhp\" name=\"Undo\">Undo</link>"
+msgstr "<link href=\"text/shared/01/02010000.xhp\" name=\"Hoàn tác\">Hoàn tác</link>"
-#: 05120300.xhp
+#: 02010000.xhp
msgctxt ""
-"05120300.xhp\n"
-"par_id3149783\n"
+"02010000.xhp\n"
+"par_id3149205\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpacePara2\">Sets the line spacing of the current paragraph to two lines.</ahelp>"
-msgstr "<ahelp hid=\".uno:SpacePara2\">Đặt khoảng cách dòng của đoạn văn hiện tại thành 2 dòng.</ahelp>"
+msgid "<ahelp hid=\"HID_IMAPDLG_UNDO\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_UNDO\">Hủy bước bạn mới làm, v.d. gọi lệnh hay gõ từ. Để chọn lệnh cần hủy, nhấn vào mũi tên bên cạnh biểu tượng <emph>Hoàn tác</emph> trên thanh <emph>Chuẩn</emph>.</ahelp>"
-#: 04100000.xhp
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"tit\n"
+"02010000.xhp\n"
+"par_idN10630\n"
"help.text"
-msgid "Special Character"
-msgstr "Ký tự Đặc biệt"
+msgid "To change the number of commands that you can undo, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Memory, and enter a new value in the number of steps box."
+msgstr ""
-#: 04100000.xhp
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3152937\n"
-"1\n"
+"02010000.xhp\n"
+"par_id3163803\n"
+"8\n"
"help.text"
-msgid "Special Character"
-msgstr "Ký tự Đặc biệt"
+msgid "Some commands (for example, editing Styles) cannot be undone."
+msgstr "Một số bước nào đó (v.d. chỉnh sửa Kiểu dáng) không thể hủy được."
-#: 04100000.xhp
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3150838\n"
-"2\n"
+"02010000.xhp\n"
+"par_id3155338\n"
+"11\n"
"help.text"
-msgid "<variable id=\"sonder\"><ahelp hid=\".uno:Bullet\">Inserts special characters from the installed fonts.</ahelp></variable>"
-msgstr "<variable id=\"sonder\"><ahelp hid=\".uno:Bullet\">Chèn ký tự đặc biệt từ những phông đã cài đặt.</ahelp></variable>"
+msgid "You can cancel the Undo command by choosing Edit - Redo."
+msgstr "Bạn cũng có thể hủy bước <emph>Hoàn tác</emph> chính nó, bằng cách chọn lệnh <emph>Sửa > Bước lại</emph>."
-#: 04100000.xhp
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3152372\n"
-"11\n"
+"02010000.xhp\n"
+"hd_id3166410\n"
+"7\n"
"help.text"
-msgid "When you click a character in the <emph>Special Characters </emph>dialog, a preview and the corresponding numerical code for the character is displayed."
-msgstr "Khi bạn nhấn vào một ký tự nào đó trên bảng chọn <emph>Ký tự Đặc biệt</emph> cũng hiển thị ô xem thử và mã thuộc số tương ứng với ký tự."
+msgid "About the Undo command in database tables"
+msgstr "Thông tin về lệnh <emph>Hoàn tác</emph> trong bảng của cơ sở dữ liệu"
-#: 04100000.xhp
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3151315\n"
+"02010000.xhp\n"
+"par_id3148492\n"
"3\n"
"help.text"
-msgid "Font"
-msgstr "Phông"
+msgid "When you are working with database tables, you can only undo the last command."
+msgstr "Khi thao tác bảng trong cơ sở dữ liệu, bạn chỉ có thê hủy bước mới làm (chỉ một bước)."
-#: 04100000.xhp
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3152924\n"
+"02010000.xhp\n"
+"par_id3155504\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/specialcharacters/fontlb\">Select a font to display the special characters that are associated with it.</ahelp>"
-msgstr ""
-
-#: 04100000.xhp
-msgctxt ""
-"04100000.xhp\n"
-"hd_id3155555\n"
-"19\n"
-"help.text"
-msgid "Subset"
-msgstr "Tập con"
+msgid "If you change the content of a record in a database table that has not been saved, and then use the<emph> Undo</emph> command, the record is erased."
+msgstr "Hơn nữa, nếu bạn sửa đổi nội dung của một bản ghi trong một bảng cơ sở dữ liệu chưa được lưu, sau đó dùng lệnh <emph>Hoàn tác</emph>, bản ghi bị xoá. (Lưu nhiều, mất tiểu !)"
-#: 04100000.xhp
-#, fuzzy
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3145090\n"
-"20\n"
+"02010000.xhp\n"
+"hd_id3149415\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/specialcharacters/subsetlb\">Select a Unicode category for the current font.</ahelp> The special characters for the selected Unicode category are displayed in the character table."
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_CHARMAP_LB_SUBSET\">Chọn một phân loại Unicode cho phông hiện thời.</ahelp> Các ký tự đặc biệt cho phân loại Unicode đã chọn thì được hiển thị trên bảng ký tự."
+msgid "About the Undo command in presentations"
+msgstr "Thông tin về lệnh <emph>Hoàn tác</emph> trong trình diễn"
-#: 04100000.xhp
+#: 02010000.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3145071\n"
-"5\n"
+"02010000.xhp\n"
+"par_id3159147\n"
+"10\n"
"help.text"
-msgid "Character Table"
-msgstr "Bảng ký tự"
+msgid "The <emph>Undo</emph> list is cleared when you apply a new layout to a slide."
+msgstr "Danh sách các bước có thể hủy (<emph>Hoàn tác)</emph>) bị xóa khi bạn áp dụng vào ảnh chiếu một bố trí mới."
-#: 04100000.xhp
+#: 02020000.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3154288\n"
-"6\n"
+"02020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Click the special character(s) that you want to insert, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Nhấn vào (những) ký tự đặc biệt bạn muốn chèn, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
+msgid "Redo"
+msgstr "Làm lại"
-#: 04100000.xhp
+#: 02020000.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3154317\n"
-"7\n"
+"02020000.xhp\n"
+"bm_id3149991\n"
"help.text"
-msgid "Characters"
-msgstr "Ký tự"
+msgid "<bookmark_value>restoring;editing</bookmark_value><bookmark_value>redo command</bookmark_value>"
+msgstr "<bookmark_value>phục hồi;chỉnh sửa</bookmark_value><bookmark_value>lệnh bước lại</bookmark_value><bookmark_value>làm lại</bookmark_value>"
-#: 04100000.xhp
+#: 02020000.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3152551\n"
-"8\n"
+"02020000.xhp\n"
+"hd_id3149991\n"
+"1\n"
"help.text"
-msgid "Displays the special characters that you have selected."
-msgstr "Hiển thị những ký tự đặc biệt bạn đã chọn."
+msgid "<link href=\"text/shared/01/02020000.xhp\" name=\"Redo\">Redo</link>"
+msgstr "<link href=\"text/shared/01/02020000.xhp\" name=\"Bước lại\">Bước lại</link>"
-#: 04100000.xhp
+#: 02020000.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3155535\n"
-"12\n"
+"02020000.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<ahelp hid=\"HID_IMAPDLG_REDO\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_REDO\">Đảo ngược hành động của lệnh <emph>Hoàn tác</emph> cuối cùng. Để chọn bước bị hủy bạn muốn phục hồi, nhấn vào mũi tên bên cạnh biểu tượng <emph>Bước lại</emph> trên thanh <emph>Chuẩn</emph>.</ahelp>"
-#: 04100000.xhp
+#: 02030000.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3147653\n"
-"13\n"
+"02030000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/specialcharacters/delete\">Clears the current selection of special characters that you want to insert.</ahelp>"
-msgstr ""
+msgid "Repeat"
+msgstr "Lặp lại"
-#: 04140000.xhp
+#: 02030000.xhp
msgctxt ""
-"04140000.xhp\n"
-"tit\n"
+"02030000.xhp\n"
+"bm_id3150279\n"
"help.text"
-msgid "Inserting Pictures"
-msgstr "Chèn ảnh"
+msgid "<bookmark_value>repeating; commands</bookmark_value><bookmark_value>commands; repeating</bookmark_value>"
+msgstr "<bookmark_value>lặp lại; lệnh</bookmark_value><bookmark_value>lệnh; lặp lại</bookmark_value>"
-#: 04140000.xhp
+#: 02030000.xhp
msgctxt ""
-"04140000.xhp\n"
-"hd_id3154350\n"
+"02030000.xhp\n"
+"hd_id3150279\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Inserting Pictures\">Inserting Pictures</link>"
-msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Chèn ảnh\">Chèn ảnh</link>"
+msgid "<link href=\"text/shared/01/02030000.xhp\" name=\"Repeat\">Repeat</link>"
+msgstr "<link href=\"text/shared/01/02030000.xhp\" name=\"Lặp lại\">Lặp lại</link>"
-#: 04140000.xhp
+#: 02030000.xhp
msgctxt ""
-"04140000.xhp\n"
-"par_id3159411\n"
+"02030000.xhp\n"
+"par_id3155934\n"
"2\n"
"help.text"
-msgid "<variable id=\"grafiktext\"><ahelp hid=\".uno:InsertGraphic\">Inserts a picture into the current document.</ahelp></variable>"
-msgstr "<variable id=\"grafiktext\"><ahelp hid=\".uno:InsertGraphic\">Chèn vào tài liệu hiện tại một hình ảnh.</ahelp></variable>"
-
-#: 04140000.xhp
-msgctxt ""
-"04140000.xhp\n"
-"hd_id3149760\n"
-"17\n"
-"help.text"
-msgid "Style"
-msgstr "Kiểu dáng"
-
-#: 04140000.xhp
-msgctxt ""
-"04140000.xhp\n"
-"par_id3154398\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FILEOPEN_IMAGE_TEMPLATE\">Select the frame style for the graphic.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEOPEN_IMAGE_TEMPLATE\">Chọn kiểu đáng khung cho đồ họa.</ahelp>"
+msgid "<ahelp hid=\".uno:Repeat\">Repeats the last command. This command is available in Writer and Calc.</ahelp>"
+msgstr "<ahelp hid=\".uno:Repeat\">Lặp lại câu lệnh mới làm. Chức năng này sẵn sàng trong cả hai mô-đun Writer và Calc.</ahelp>"
-#: 04140000.xhp
+#: 02040000.xhp
msgctxt ""
-"04140000.xhp\n"
-"hd_id3150789\n"
-"6\n"
+"02040000.xhp\n"
+"tit\n"
"help.text"
-msgid "Link"
-msgstr "Liên kết"
+msgid "Cut"
+msgstr "Cắt"
-#: 04140000.xhp
+#: 02040000.xhp
msgctxt ""
-"04140000.xhp\n"
-"par_id3153750\n"
-"7\n"
+"02040000.xhp\n"
+"bm_id3146936\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_LINK_CB\">Inserts the selected graphic file as a link.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEDLG_LINK_CB\">Chèn dạng liên kết tập tin đồ họa đã chọn.</ahelp>"
+msgid "<bookmark_value>cutting</bookmark_value><bookmark_value>clipboard; cutting</bookmark_value>"
+msgstr "<bookmark_value>cắt</bookmark_value><bookmark_value>bảng nháp; cắt</bookmark_value>"
-#: 04140000.xhp
+#: 02040000.xhp
msgctxt ""
-"04140000.xhp\n"
-"hd_id3155805\n"
-"8\n"
+"02040000.xhp\n"
+"hd_id3146936\n"
+"1\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "<link href=\"text/shared/01/02040000.xhp\" name=\"Cut\">Cut</link>"
+msgstr "<link href=\"text/shared/01/02040000.xhp\" name=\"Cắt\">Cắt</link>"
-#: 04140000.xhp
+#: 02040000.xhp
msgctxt ""
-"04140000.xhp\n"
-"par_id3153311\n"
-"9\n"
+"02040000.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_PREVIEW_CB\">Displays a preview of the selected graphic file.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEDLG_PREVIEW_CB\">Hiển thị ô xem thử của tập tin đồ họa đã chọn.</ahelp>"
+msgid "<ahelp hid=\".uno:Cut\">Removes and copies the selection to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\".uno:Cut\">Gỡ bỏ và sao chép vùng chọn sang bảng nháp.</ahelp>"
-#: 05040100.xhp
+#: 02050000.xhp
msgctxt ""
-"05040100.xhp\n"
+"02050000.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Tổ chức"
+msgid "Copy"
+msgstr "Chép"
-#: 05040100.xhp
+#: 02050000.xhp
msgctxt ""
-"05040100.xhp\n"
-"bm_id3153383\n"
+"02050000.xhp\n"
+"bm_id3154824\n"
"help.text"
-msgid "<bookmark_value>organizing; styles</bookmark_value> <bookmark_value>styles; organizing</bookmark_value>"
-msgstr "<bookmark_value>tổ chức; kiểu dáng</bookmark_value><bookmark_value>kiểu dáng; tổ chức</bookmark_value>"
+msgid "<bookmark_value>clipboard; Unix</bookmark_value><bookmark_value>copying; in Unix</bookmark_value>"
+msgstr "<bookmark_value>bảng nháp; UNIX</bookmark_value><bookmark_value>sao chép; dưới UNIX</bookmark_value>"
-#: 05040100.xhp
+#: 02050000.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3153383\n"
+"02050000.xhp\n"
+"hd_id3152876\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\" name=\"Organizer\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\" name=\"Tổ chức\">Tổ chức</link>"
+msgid "<link href=\"text/shared/01/02050000.xhp\" name=\"Copy\">Copy</link>"
+msgstr "<link href=\"text/shared/01/02050000.xhp\" name=\"Chép\">Chép</link>"
-#: 05040100.xhp
+#: 02050000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3147588\n"
+"02050000.xhp\n"
+"par_id3154682\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_MANAGE_STYLES\">Set the options for the selected style.</ahelp>"
-msgstr "<ahelp hid=\"HID_MANAGE_STYLES\">Đặt các tùy chọn về kiểu dáng đã chọn.</ahelp>"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3149525\n"
-"3\n"
-"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "<ahelp hid=\".uno:Copy\">Copies the selection to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\".uno:Copy\">Sao chép vùng chọn sang bảng nháp.</ahelp>"
-#: 05040100.xhp
+#: 02050000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3160481\n"
+"02050000.xhp\n"
+"par_id3155552\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_MANAGE_STYLES:ED_NAME\">Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_MANAGE_STYLES:ED_NAME\">Hiển thị tên của kiểu dáng đã chọn. Nếu bạn đang tạo hay sửa đổi một kiểu dáng riêng, nhập tên cho nó. Tuy nhiên, không thể thay đổi tên của kiểu dáng đã xác định sẵn.</ahelp>"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3153750\n"
-"13\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoUpdate </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động Cập nhật </caseinline></switchinline>"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3153749\n"
-"14\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SFX2:CHECKBOX:TP_MANAGE_STYLES:CB_AUTO\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SFX2:CHECKBOX:TP_MANAGE_STYLES:CB_AUTO\">Cập nhật kiểu dáng khi bạn áp dụng định dạng trực tiếp cho một đoạn văn dùng kiểu dáng này. Định dạng của tất cả các đoạn văn dùng kiểu dáng này thì được cập nhật tự động.</ahelp></caseinline></switchinline>"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id0107200910584081\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cập nhật kiểu dáng khi bạn áp dụng định dạng trực tiếp cho một đoạn văn dùng kiểu dáng này. Định dạng của tất cả đoạn văn dùng kiểu dáng này được cập nhật tự động.</ahelp>"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3155392\n"
-"5\n"
-"help.text"
-msgid "Next Style"
-msgstr "Kiểu dáng sau"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3155941\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_NEXT\">Select an existing style that you want to follow the current style in your document. For paragraph styles, the next style is applied to the paragraph that is created when you press Enter. For page styles, the next style is applied when a new page is created.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_NEXT\">Chọn một kiểu dáng đã tồn tại mà nên theo kiểu dáng hiện thời trong tài liệu. Đối với kiểu dáng đoạn văn, kiểu dáng kế tiếp được áp dụng cho đoạn văn được tạo khi bạn bấm phím <item type=\"keycode\">Enter</item>. Đối với đoạn văn trang, kiểu dáng kế tiếp được áp dụng khi một trang mới được tạo.</ahelp>"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3163802\n"
-"7\n"
-"help.text"
-msgid "Linked with"
-msgstr "Liên kết với"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3166461\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_BASE\">Select an existing style that you want to base the new style on, or select none to define your own style.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_BASE\">Chọn một kiểu dáng đã tồn tại vào đó bạn muốn dựa kiểu dáng mới, hoặc không chọn gì để xác định kiểu dáng riêng.</ahelp>"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3148474\n"
-"9\n"
-"help.text"
-msgid "Category"
-msgstr "Loại"
-
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3159269\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_REGION\">Displays the category for the current style. If you are creating or modifying a new style, select 'Custom Style' from the list.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_REGION\">Hiển thị phân loại cho kiểu dáng hiện thời. Nếu bạn đang tạo hay sửa đổi một kiểu dáng mới, chọn mục « Kiểu dáng riêng » trong danh sách.</ahelp>"
+msgid "Each time you copy, the existing content of the clipboard is overwritten."
+msgstr "Ghi chú : mỗi lần bạn sao chép, nội dung trước của bảng nháp bị ghi đè. Bảng nháp chỉ chứa dữ liệu một cách tạm thời."
-#: 05040100.xhp
+#: 02050000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3150771\n"
-"17\n"
+"02050000.xhp\n"
+"par_id3154824\n"
+"3\n"
"help.text"
-msgid "You cannot change the category for a predefined style."
-msgstr "Không thể thay đổi phân loại cho kiểu dáng đã xác định sẵn."
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><variable id=\"unixkopieren\">$[officename] also supports the clipboard under Unix; however, you must use the $[officename] commands, such as Ctrl+C.</variable></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><variable id=\"unixkopieren\">$[officename] cũng hỗ trợ chức năng bảng nháp dưới UNIX; tuy nhiên, bạn cần phải sử dụng các lệnh của $[officename], v.d. <item type=\"keycode\">Ctrl+C</item>.</variable></caseinline></switchinline>"
-#: 05040100.xhp
+#: 02060000.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3153717\n"
-"11\n"
+"02060000.xhp\n"
+"tit\n"
"help.text"
-msgid "Contains"
-msgstr "Chứa"
+msgid "Paste"
+msgstr "Dán"
-#: 05040100.xhp
+#: 02060000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3154306\n"
-"12\n"
+"02060000.xhp\n"
+"bm_id3149031\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:TP_MANAGE_STYLES:ED_DESC\">Describes the relevant formatting used in the current style.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MULTILINEEDIT:TP_MANAGE_STYLES:ED_DESC\">Diễn tả các định dạng thích hợp dùng trong kiểu dáng hiện thời.</ahelp>"
+msgid "<bookmark_value>pasting;cell ranges</bookmark_value><bookmark_value>clipboard; pasting</bookmark_value><bookmark_value>cells;pasting</bookmark_value>"
+msgstr "<bookmark_value>dán;phạm vi ô bảng</bookmark_value><bookmark_value>bảng nháp; dán</bookmark_value><bookmark_value>ô bảng;dán</bookmark_value>"
-#: 05040100.xhp
+#: 02060000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_idN1072D\n"
+"02060000.xhp\n"
+"hd_id3149031\n"
+"1\n"
"help.text"
-msgid "Assign Shortcut Key"
-msgstr "Gán phím tắt"
+msgid "<link href=\"text/shared/01/02060000.xhp\" name=\"Paste\">Paste</link>"
+msgstr "<link href=\"text/shared/01/02060000.xhp\" name=\"Dán\">Dán</link>"
-#: 05040100.xhp
+#: 02060000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_idN10731\n"
+"02060000.xhp\n"
+"par_id3149511\n"
+"2\n"
"help.text"
-msgid "Opens the <emph>Tools - Customize - Keyboard</emph> tab page where you can assign a shortcut key to the current Style."
-msgstr "Mở trang thẻ <emph>Công cụ > Đặc chế > Bàn phím</emph> trên đó bạn có thể gán một phím tắt cho kiểu dáng hiện thời."
+msgid "<ahelp hid=\".uno:Paste\">Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects.</ahelp>"
+msgstr ""
-#: 05040100.xhp
+#: 02060000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3145085\n"
+"02060000.xhp\n"
+"par_id3147834\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Update Style\">Update Style</link>"
-msgstr "<link href=\"text/swriter/01/05140000.xhp\" name=\"Cập nhật Kiểu dáng\">Cập nhật Kiểu dáng</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trên bảng tính, khi bạn dán một phạm vi ô từ bảng nháp, kết quả phụ thuộc vào vùng chọn hiện thời. Chỉ chọn một ô thì phạm vi ô được dán từ ô đó. Nếu bạn ngụ ý một phạm vi ô rộng hơn phạm vi ô trên bảng nháp, phạm vi ô từ bảng nháp sẽ được dán lặp lại để điền vào phạm vi ô đã ngụ ý (tương tự với lát đều ảnh ở nền). </caseinline></switchinline>"
-#: 02180100.xhp
+#: 02070000.xhp
msgctxt ""
-"02180100.xhp\n"
+"02070000.xhp\n"
"tit\n"
"help.text"
-msgid "Modify Links"
-msgstr "Sửa liên kết"
-
-#: 02180100.xhp
-msgctxt ""
-"02180100.xhp\n"
-"bm_id3149877\n"
-"help.text"
-msgid "<bookmark_value>links; modifying</bookmark_value><bookmark_value>changing; links</bookmark_value>"
-msgstr "<bookmark_value>liên kết; sửa đổi</bookmark_value><bookmark_value>thay đổi; liên kết</bookmark_value>"
+msgid "Paste Special"
+msgstr "Dán đặc biệt"
-#: 02180100.xhp
+#: 02070000.xhp
msgctxt ""
-"02180100.xhp\n"
-"hd_id3149877\n"
+"02070000.xhp\n"
+"hd_id3147477\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180100.xhp\" name=\"Modify Links\">Modify Links</link>"
-msgstr "<link href=\"text/shared/01/02180100.xhp\" name=\"Sửa liên kết\">Sửa liên kết</link>"
+msgid "Paste Special"
+msgstr "Dán đặc biệt"
-#: 02180100.xhp
+#: 02070000.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3150838\n"
+"02070000.xhp\n"
+"par_id3147143\n"
"2\n"
"help.text"
-msgid "Change the properties for the selected <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link>."
-msgstr "Sửa đổi các thuộc tính về <link href=\"text/shared/00/00000005.xhp#dde\" name=\"liên kết DDE\">liên kết DDE</link> đã chọn."
-
-#: 02180100.xhp
-msgctxt ""
-"02180100.xhp\n"
-"hd_id3149549\n"
-"3\n"
-"help.text"
-msgid "Edit Links"
-msgstr "Sửa liên kết"
-
-#: 02180100.xhp
-msgctxt ""
-"02180100.xhp\n"
-"par_id3153114\n"
-"4\n"
-"help.text"
-msgid "Lets you set the properties for the selected link."
-msgstr "Cho phép bạn đặt các thuộc tính về liên kết đã chọn."
+msgid "<variable id=\"inhalteeinfuegentext\"><ahelp hid=\".uno:PasteSpecial\">Inserts the contents of the clipboard into the current file in a format that you can specify.</ahelp></variable>"
+msgstr "<variable id=\"inhalteeinfuegentext\"><ahelp hid=\".uno:PasteSpecial\">Chèn vào tập tin hiện tại nội dung của bảng nháp, theo định dạng bạn có thể xác định.</ahelp></variable>"
-#: 02180100.xhp
+#: 02070000.xhp
msgctxt ""
-"02180100.xhp\n"
-"hd_id3148548\n"
+"02070000.xhp\n"
+"hd_id3147576\n"
"5\n"
"help.text"
-msgid "Application:"
-msgstr "Ứng dụng:"
+msgid "Source"
+msgstr "Nguồn"
-#: 02180100.xhp
+#: 02070000.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3154751\n"
+"02070000.xhp\n"
+"par_id3149388\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_APP\">Lists the application that last saved the source file.</ahelp>"
-msgstr "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_APP\">Hiển thị ứng dụng mới lưu tập tin nguồn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pastespecial/source\">Displays the source of the clipboard contents.</ahelp>"
+msgstr ""
-#: 02180100.xhp
+#: 02070000.xhp
msgctxt ""
-"02180100.xhp\n"
-"hd_id3155338\n"
+"02070000.xhp\n"
+"hd_id3153684\n"
"7\n"
"help.text"
-msgid "File:"
-msgstr "Tập tin:"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 02180100.xhp
+#: 02070000.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3153527\n"
+"02070000.xhp\n"
+"par_id3149812\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_TOPIC\">Lists the path to the source file.</ahelp>"
-msgstr "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_TOPIC\">Hiển thị đường dẫn tới tập tin nguồn.</ahelp>"
-
-#: 02180100.xhp
-msgctxt ""
-"02180100.xhp\n"
-"hd_id3153577\n"
-"9\n"
-"help.text"
-msgid "Section"
-msgstr "Phần"
-
-#: 02180100.xhp
-msgctxt ""
-"02180100.xhp\n"
-"par_id3146958\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_ITEM\">Lists the section that the link refers to in the source file. If you want, you can enter a new section here.</ahelp>"
-msgstr "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_ITEM\">Hiển thị phần đến đó liên kết tham chiếu trong tập tin nguồn. Bạn cũng có thể nhập vào đây một phần mới.</ahelp>"
-
-#: gallery.xhp
-msgctxt ""
-"gallery.xhp\n"
-"tit\n"
-"help.text"
-msgid "Gallery"
-msgstr "Bộ sưu tập"
-
-#: gallery.xhp
-msgctxt ""
-"gallery.xhp\n"
-"par_id3149783\n"
-"46\n"
-"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_ICONVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as icons.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_ICONVIEW\" visibility=\"hidden\">Hiển thị các đối tượng của <emph>Bộ sưu tập</emph> dưới dạng biểu tượng.</ahelp>"
-
-#: gallery.xhp
-msgctxt ""
-"gallery.xhp\n"
-"par_id3148983\n"
-"47\n"
-"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as small icons, with title and path information.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Hiển thị nội dung của <emph>Bộ sưu tập</emph> dưới dạng biểu tượng nhỏ chứa thông tin về tựa đề và đường dẫn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pastespecial/list\">Select a format for the clipboard contents that you want to paste.</ahelp>"
+msgstr ""
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3153894\n"
-"1\n"
+"02070000.xhp\n"
+"par_id3147653\n"
+"68\n"
"help.text"
-msgid "<link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link>"
-msgstr "<link href=\"text/shared/01/gallery.xhp\" name=\"Bộ sưu tập\">Bộ sưu tập</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Khi bạn dán vào tài liệu văn bản một số dữ liệu HTML, bạn có thể chọn hoặc « Định dạng HTML » hoặc « Định dạng HTML không có ghi chú ». Sự chọn thứ hai là giá trị mặc định: nó dán toàn dữ liệu HTML, mà không phải dán ghi chú. (Ghi chú trong mã nguồn HTML nên là « vô hình », không hiển thị cho người đọc trang.)</caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3150789\n"
-"2\n"
+"02070000.xhp\n"
+"hd_id3155420\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".uno:Gallery\">Opens the <emph>Gallery</emph>, where you can select graphics and sounds to insert into your document.</ahelp>"
-msgstr "<ahelp hid=\".uno:Gallery\">Mở <emph>Bộ sưu tập</emph>, trong đó bạn có thể lựa chọn đồ họa và âm thanh để chèn vào tài liệu.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste Special </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dán đặc biệt</caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3155555\n"
-"44\n"
+"02070000.xhp\n"
+"par_id3150976\n"
+"16\n"
"help.text"
-msgid "You can display the contents of the <emph>Gallery </emph>as icons, or icons with titles and path information."
-msgstr "Bạn có khả năng hiển thị nội dung của <emph>Bộ sưu tập</emph> dưới dạng biểu tượng, hay biểu tượng cũng có thông tin về tựa và đường dẫn."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">This dialog appears in Calc if the clipboard contains spreadsheet cells. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trong Calc, hộp thoại này tự mở nếu bảng nháp chứa các ô bảng tính.</caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3153394\n"
-"45\n"
+"02070000.xhp\n"
+"hd_id3155341\n"
+"17\n"
"help.text"
-msgid "To zoom in or zoom out on a single object in the <emph>Gallery</emph>, double-click the object, or select the object, and then press the Spacebar."
-msgstr "Để phóng to hay thu nhỏ đối với một đối tượng riêng trong <emph>Bộ sưu tập</emph>, nhấn-đôi vào đối tượng, hay lựa chọn đối tượng, sau đó bấm phím dài."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selection </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lựa chọn </caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3145346\n"
-"26\n"
+"02070000.xhp\n"
+"par_id3152909\n"
+"40\n"
"help.text"
-msgid "Themes are listed on the left side of the <emph>Gallery</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">Click a theme to view the objects associated with the theme.</ahelp>"
-msgstr "Các sắc thái được liệt kê bên trái <emph>Bộ sưu tập</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">Nhấn vào một sắc thái nào đó để xem các đối tượng liên kết với nó.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select a format for the clipboard contents that you want to paste. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn định dạng cho nội dung bảng nháp bạn muốn dán.</caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3155355\n"
-"50\n"
+"02070000.xhp\n"
+"hd_id3145120\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_WINDOW\">To insert a <emph>Gallery </emph>object, select the object, and then drag it into the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_WINDOW\">Để chèn một đối tượng <emph>Bộ sưu tập</emph>, lựa chọn đối tượng, sau đó kéo nó vào tài liệu.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste all </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dán tất cả</caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3156113\n"
-"4\n"
+"02070000.xhp\n"
+"par_id3146848\n"
+"42\n"
"help.text"
-msgid "Adding a New File to the Gallery"
-msgstr "Thêm tập tin mới vào Bộ sưu tập"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSALL\">Pastes all cell contents, comments, formats, and objects into the current document.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSALL\">Dán vào tài liệu hiện tại tất cả các nội dung ô, ghi chú, định dạng và đối tượng.</ahelp></caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3153032\n"
+"02070000.xhp\n"
+"hd_id3155449\n"
"43\n"
"help.text"
-msgid "To add a file to the <emph>Gallery</emph>, right-click a theme, choose <emph>Properties</emph>, click the <emph>Files </emph>tab, and then click <emph>Add</emph>. You can also click an object in the current document, hold, and then drag it to the <emph>Gallery</emph> window."
-msgstr "Để thêm một tập tin mới vào <emph>Bộ sưu tập</emph>, nhấn-phải vào một sắc thái nào đó, chọn mục <emph>Thuộc tính</emph>, nhấn vào thẻ <emph>Tập tin</emph>, sau đó nhấn vào nút <emph>Thêm</emph>. Bạn cũng có thể nhấn vào một đối tượng trong tài liệu hiện tại, sau đó kéo nó vào ô cửa sổ <emph>Bộ sưu tập</emph>."
-
-#: gallery.xhp
-msgctxt ""
-"gallery.xhp\n"
-"hd_id3145315\n"
-"10\n"
-"help.text"
-msgid "New theme"
-msgstr "Sắc thái mới"
-
-#: gallery.xhp
-msgctxt ""
-"gallery.xhp\n"
-"par_id3150275\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_NEWTHEME\">Adds a new theme to the <emph>Gallery </emph>and lets you choose the files to include in the theme.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_NEWTHEME\">Thêm một sắc thái mới vào <emph>Bộ sưu tập</emph>, và cho phép bạn chọn những tập tin cần thêm vào cho sắc thái.</ahelp>"
-
-#: gallery.xhp
-msgctxt ""
-"gallery.xhp\n"
-"par_id3159167\n"
-"9\n"
-"help.text"
-msgid "To access the following commands, right-click a theme in the <emph>Gallery</emph>:"
-msgstr "Để truy cập đến những lệnh theo đây, nhấn-phải vào một sắc thái trong <emph>Bộ sưu tập</emph>:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Text </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Văn bản</caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3154142\n"
-"15\n"
+"02070000.xhp\n"
+"par_id3149244\n"
+"44\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSSTRINGS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing text. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSSTRINGS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các ô chứa văn bản. </caseinline></switchinline></ahelp>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3148990\n"
-"16\n"
+"02070000.xhp\n"
+"hd_id3148947\n"
+"45\n"
"help.text"
-msgid "The <emph>Properties of (Theme)</emph> dialog contains the following tabs:"
-msgstr "Hộp thoại <emph>Thuộc tính về (Sắc thái)</emph> chứa những thẻ này:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numbers </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Số</caseinline></switchinline>"
-#: gallery.xhp
+#: 02070000.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3151384\n"
-"25\n"
+"02070000.xhp\n"
+"par_id3152360\n"
+"46\n"
"help.text"
-msgid "<link href=\"text/shared/01/gallery_files.xhp\" name=\"Files\">Files</link>"
-msgstr "<link href=\"text/shared/01/gallery_files.xhp\" name=\"Tập tin\">Tập tin</link>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNUMBERS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing numbers. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNUMBERS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các ô chứa con số.</caseinline></switchinline></ahelp>"
-#: 05340404.xhp
+#: 02070000.xhp
msgctxt ""
-"05340404.xhp\n"
-"tit\n"
+"02070000.xhp\n"
+"hd_id3151054\n"
+"47\n"
"help.text"
-msgid "Delete Rows"
-msgstr "Xoá hàng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Date & Time </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ngày/Giờ</caseinline></switchinline>"
-#: 05340404.xhp
+#: 02070000.xhp
msgctxt ""
-"05340404.xhp\n"
-"hd_id3147617\n"
-"1\n"
+"02070000.xhp\n"
+"par_id3154226\n"
+"48\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340404.xhp\" name=\"Delete Rows\">Delete Rows</link>"
-msgstr "<link href=\"text/shared/01/05340404.xhp\" name=\"Xoá hàng\">Xoá hàng</link>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSDATETIME\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing date and time values. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSDATETIME\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các ô chứa giá trị ngày tháng và/hay thời gian.</caseinline></switchinline></ahelp>"
-#: 05340404.xhp
+#: 02070000.xhp
msgctxt ""
-"05340404.xhp\n"
-"par_id3147000\n"
-"2\n"
+"02070000.xhp\n"
+"hd_id3150791\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected row(s).</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá những hàng đã chọn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Công thức</caseinline></switchinline>"
-#: 05340404.xhp
+#: 02070000.xhp
msgctxt ""
-"05340404.xhp\n"
-"par_id3145129\n"
-"3\n"
+"02070000.xhp\n"
+"par_id3145744\n"
+"50\n"
"help.text"
-msgid "This command can be activated only when you select the <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\">Edit</link> icon on the Table Data bar or Standard bar."
-msgstr "Chỉ có thể kích hoạt chức năng này khi bạn chọn biểu tượng <link href=\"text/shared/02/07070000.xhp\" name=\"Sửa\">Sửa</link> trên thanh kiểu <emph>Dữ liệu bảng</emph> hay <emph>Chuẩn</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSFORMULAS\">Inserts cells containing formulae.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSFORMULAS\">Chèn các ô chứa công thức.</ahelp></caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"tit\n"
+"02070000.xhp\n"
+"hd_id3153968\n"
+"51\n"
"help.text"
-msgid "Templates and Documents"
-msgstr "Mẫu và Tài liệu"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chú thích</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3152937\n"
-"99\n"
+"02070000.xhp\n"
+"par_id3156422\n"
+"52\n"
"help.text"
-msgid "<variable id=\"vor_und_dok\"><link href=\"text/shared/01/01010100.xhp\" name=\"Templates and Documents\">Templates and Documents</link></variable>"
-msgstr "<variable id=\"vor_und_dok\"><link href=\"text/shared/01/01010100.xhp\" name=\"Mẫu và Tài liệu\">Mẫu và Tài liệu</link></variable>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNOTES\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNOTES\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn ghi chú đính kèm ô. Muốn thêm ghi chú vào nội dung ô đã tồn tại thì chọn chức năng <emph>Thêm</emph>.</caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3148520\n"
-"117\n"
+"02070000.xhp\n"
+"hd_id3152935\n"
+"53\n"
"help.text"
-msgid "The <emph>Templates and Documents</emph> dialog allows you to manage your templates and sample documents."
-msgstr "Cửa sổ <emph>Mẫu và Tài liệu</emph> cho phép bạn quản lý các mẫu và tài liệu thí dụ."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formats </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Định dạng</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3157898\n"
-"118\n"
+"02070000.xhp\n"
+"par_id3125863\n"
+"54\n"
"help.text"
-msgid "To open the <emph>Templates and Documents</emph> dialog, do one of the following:"
-msgstr "Để mở hộp thoại <emph>Mẫu và Tài liệu</emph> làm một của những hành động này:"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSATTRS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cell format attributes. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSATTRS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các thuộc tính về định dạng ô. </caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156414\n"
-"125\n"
+"02070000.xhp\n"
+"hd_id3156282\n"
+"65\n"
"help.text"
-msgid "Choose <emph>File - New - Templates and Documents</emph>"
-msgstr "Chọn lệnh <emph>Tập tin > Mới > Mẫu và Tài liệu</emph>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objects </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đối tượng</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153114\n"
-"126\n"
+"02070000.xhp\n"
+"par_id3149810\n"
+"66\n"
"help.text"
-msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N."
-msgstr "Nhấn tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N."
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSCONT_BTN_INSOBJECTS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSCONT_BTN_INSOBJECTS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các đối tượng nằm bên trong phạm vi ô bảng. Đối tượng này có thể là đối tượng OLE, đối tượng đồ thị hay đối tượng vẽ.</caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3159234\n"
-"5\n"
+"02070000.xhp\n"
+"hd_id3150440\n"
+"19\n"
"help.text"
-msgid "Categories"
-msgstr "Loại"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operations </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Thao tác</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3157958\n"
-"6\n"
+"02070000.xhp\n"
+"par_id3151351\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\".\">Categories are shown in the box on the left side of the<emph> Templates and Documents</emph> dialog. Click a category to display the files associated with that category in the <emph>Title </emph>box.</ahelp>"
-msgstr "<ahelp hid=\".\">Các phân loại được hiển thị trong hộp bên trái hộp thoại <emph>Mẫu và Tài liệu</emph>. Nhấn vào một phân loại nào đó để hiển thị trong hộp <emph>Tựa đề</emph> các tập tin liên quan đến nó.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select the operation to apply when you paste cells into your sheet. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn thao tác cần áp dụng khi bạn dán vào bảng tính các ô.</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149388\n"
-"100\n"
+"02070000.xhp\n"
+"hd_id3153952\n"
+"20\n"
"help.text"
-msgid "Title Box"
-msgstr "Hộp Tựa đề"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">None </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Không có</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3150355\n"
-"101\n"
+"02070000.xhp\n"
+"par_id3147348\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">Lists the available templates or documents for the selected category. Select a template or document and, then click <emph>Open</emph>. To preview the document, click the <emph>Preview</emph> button above the box on the right.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">Liệt kê các mẫu hay tài liệu sẵn sàng cho phân loại đã chọn. Hãy chọn một mẫu hay tài liệu nào đó, sau đó nhấn vào cái nút <emph>Mở</emph>. Để xem thử tài liệu, nhấn vào nút <emph>Xem thử</emph> bên trên hộp bên phải.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_NOOP\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_NOOP\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Không áp dụng thao tác khi bạn chèn từ bảng nhạp phạm vi ô. Nội dung của bảng nháp sẽ thay thế nội dung ô đã có</caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3152996\n"
-"102\n"
+"02070000.xhp\n"
+"hd_id3154988\n"
+"22\n"
"help.text"
-msgid "Back"
-msgstr "Lùi"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Add </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cộng </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153257\n"
+"02070000.xhp\n"
+"par_id3159196\n"
+"23\n"
"help.text"
-msgid "<image id=\"img_id3149784\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149784\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149784\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149784\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_ADD\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_ADD\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Cộng giá trị trong mỗi ô bảng nháp với giá trị trong mỗi ô đích. Còn nếu bảng nháp chỉ chứa ghi chú, tùy chọn này thêm ghi chú vào các ô đích.</caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153822\n"
-"103\n"
+"02070000.xhp\n"
+"hd_id3145263\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">Moves back to the previous window in the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">Trở về cửa sổ trước trong hộp thoại.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtract </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trừ </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3148685\n"
-"104\n"
+"02070000.xhp\n"
+"par_id3154149\n"
+"25\n"
"help.text"
-msgid "Up One Level"
-msgstr "Lên một bậc"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_SUB\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Subtracts the values in the clipboard cells from the values in the target cells. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_SUB\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Trừ mỗi giá trị trong ô bảng nháp khỏi mỗi giá trị trong ô đích.</caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156152\n"
+"02070000.xhp\n"
+"hd_id3155312\n"
+"26\n"
"help.text"
-msgid "<image id=\"img_id3149762\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149762\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149762\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149762\">Biểu tượng</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiply </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nhân </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156024\n"
-"105\n"
+"02070000.xhp\n"
+"par_id3155307\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">Moves up one folder level, if available.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">Đi lên một bậc thư mục (nếu có).</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_MUL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplies the values in the clipboard cells with the values in the target cells. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_MUL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Nhân giá trị trong mỗi ô bảng nháp với giá trị trong mỗi ô đích.. </caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3147264\n"
-"106\n"
+"02070000.xhp\n"
+"hd_id3154320\n"
+"28\n"
"help.text"
-msgid "Print"
-msgstr "In"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Divide </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chia </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3154346\n"
+"02070000.xhp\n"
+"par_id3155417\n"
+"29\n"
"help.text"
-msgid "<image id=\"img_id3148663\" src=\"cmd/sc_print.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148663\" src=\"cmd/sc_print.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_DIV\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divides the values in the target cells by the values in the clipboard cells. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_DIV\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chia giá trị trong mỗi ô bảng nháp cho giá trị trong mỗi ô đích.</caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3150359\n"
-"107\n"
+"02070000.xhp\n"
+"hd_id3147048\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Prints the selected template or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">In ấn mẫu hay tài liệu đã chọn..</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Options </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tùy chọn </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149651\n"
-"9\n"
+"02070000.xhp\n"
+"par_id3156283\n"
+"56\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sets the paste options for the clipboard contents. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đặt các tùy chọn về chức năng dán cho nội dung của bảng nháp.</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3148799\n"
-"10\n"
+"02070000.xhp\n"
+"hd_id3151052\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Allows you to preview the template or document, as well as view the document properties.</ahelp> To preview the template or document, click the <emph>Preview</emph> icon at the top of the Preview box on the right side of the dialog. To view the properties of the document, click the <emph>Document Properties</emph> icon at the top of the Preview box."
-msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Cho bạn có khả năng xem thử mẫu hay tài liệu, cũng như xem các thuộc tính về tài liệu.</ahelp> Để xem thử mẫu hay tài liệu, nhấn vào biểu tượng <emph>Xem thử</emph> ở đầu hộp Xem Thử bên phải hộp thoại. Để xem các thuộc tính về tài liệu. nhấn vào biểu tượng <emph>Thuộc tính Tài liệu</emph> cũng ở đầu hộp Xem Thử."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skip empty cells </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bỏ qua các ô rỗng </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149807\n"
-"108\n"
+"02070000.xhp\n"
+"par_id3148775\n"
+"31\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY\">Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the <emph>Multiply</emph> or the <emph>Divide</emph> operation, the operation is not applied to the target cell of an empty cell in the clipboard.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY\">Ô rỗng từ bảng nháp không thay thế ô đích. Nếu bạn bật tùy chọn này khi dùng thao tác <emph>Nhân</emph> hay <emph>Chia</emph> thì thao tác không có tác động ô đích của ô rỗng trên bảng nháp.</ahelp></caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3150741\n"
+"02070000.xhp\n"
+"par_id3155084\n"
+"32\n"
"help.text"
-msgid "<image id=\"img_id3148451\" src=\"svtools/res/preview_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148451\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148451\" src=\"svtools/res/preview_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148451\">Biểu tượng</alt></image>"
+msgid "If you select a mathematical operation and clear the<emph> Skip empty cells </emph>box, empty cells in the clipboard are treated as zeroes. For example, if you apply the <emph>Multiply</emph> operation, the target cells are filled with zeroes."
+msgstr "Nếu bạn chọn một thao tác toán học, và tắt tùy chọn <emph>Bỏ qua các ô rỗng</emph> thì các ô rỗng trên bảng nháp được tính như số không. Chẳng hạn, nếu bạn áp dụng thao tác <emph>Nhân</emph> thì các ô đích được điền vào bằng số không. (Ghi chú : thao tác chia với ô rỗng trên bảng nháp sẽ có kết quả là chia cho số không: không thể làm được nên chương trình thông báo lỗi.)"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3151043\n"
-"109\n"
+"02070000.xhp\n"
+"hd_id3147173\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">Allows you to preview the selected template or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">Cho bạn có khả năng xem thử mẫu hay tài liệu.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Transpose </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chuyển vị </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3145606\n"
-"110\n"
+"02070000.xhp\n"
+"par_id3147223\n"
+"34\n"
"help.text"
-msgid "Document Properties"
-msgstr "Thuộc tính Tài liệu"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_TRANSPOSE\">The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_TRANSPOSE\">Các hàng của phạm vi trên bảng nháp thì được dán để trở thành cột của phạm vi kết xuất. Cột của phạm vi trên bảng nháp sẽ trở thành hàng của phạm vi kết quả.</ahelp></caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3147353\n"
+"02070000.xhp\n"
+"hd_id3152971\n"
+"35\n"
"help.text"
-msgid "<image id=\"img_id3153367\" src=\"svtools/res/info_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153367\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153367\" src=\"svtools/res/info_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153367\">Biểu tượng</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Liên kết </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153210\n"
-"12\n"
+"02070000.xhp\n"
+"par_id3146969\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">Displays the properties for the selected template or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">Hiển thị các thuộc tính về tài liệu hay mẫu đã chọn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_LINK\">Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the <emph>Insert All</emph> option is also selected. </ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_LINK\">Chèn phạm vi ô như một liên kết, để thiết lập quan hệ giữa hai tập tin. Các thay đổi được làm trong tập tin nguồn cũng được cập nhật trong tập tin đích. Để đảm bảo các thay đổi được làm trong ô rỗng của tập tin nguồn cũng được cập nhật trong tập tin đích, bật tùy chọn <emph>Chèn tất cả</emph>.</ahelp></caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3153142\n"
-"111\n"
+"02070000.xhp\n"
+"par_id3145667\n"
+"37\n"
"help.text"
-msgid "Organize"
-msgstr "Tổ chức"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bạn cũng có khả năng liên kết với nhau các bảng bên trong cùng một tài liệu bảng tính. Khi bạn liên kết tới tập tin khác, một <link href=\"text/shared/00/00000005.xhp#dde\" name=\"liên kết DDE\">liên kết DDE</link> được tạo tự động. Một liên kết DDE được chèn dạng công thức ma trận thì chỉ có thể được sửa đổi hoàn toàn.</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156441\n"
-"112\n"
+"02070000.xhp\n"
+"hd_id3146914\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">Adds, removes, or rearranges templates or sample documents.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">Thêm, gỡ bỏ hay sắp đặt lại các mẫu hay tài liệu thí dụ.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shift Cells </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dời ô </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149483\n"
-"113\n"
+"02070000.xhp\n"
+"par_id3145169\n"
+"58\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set the shift options for the target cells when the clipboard content is inserted. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đặt các tùy chọn về chức năng dời cho những ô đích khi chèn nội dung của bảng nháp. </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3154470\n"
-"114\n"
+"02070000.xhp\n"
+"hd_id3155518\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected template for editing.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Mở mẫu đã chọn để chỉnh sửa.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Don't shift </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Không dời</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3147428\n"
-"115\n"
+"02070000.xhp\n"
+"par_id3154158\n"
+"60\n"
"help.text"
-msgid "Open"
-msgstr "Mở"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserted cells replace the target cells. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Các ô đã chèn thì thay thế các ô đích. </caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3148617\n"
-"116\n"
+"02070000.xhp\n"
+"hd_id3148483\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected document or creates a document based on the selected template.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Mở tài liệu đã chọn, hoặc tạo một tài liệu dựa vào mẫu đã chọn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Down </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Xuống</caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3155306\n"
-"98\n"
+"02070000.xhp\n"
+"par_id3152962\n"
+"62\n"
"help.text"
-msgid "To add another folder to the template path, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] - Paths</emph></link>, and then enter the path."
-msgstr ""
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted downward when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Các ô đích bị dời xuống khi bạn chèn các ô từ bảng nháp. </caseinline></switchinline></ahelp>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3149379\n"
+"02070000.xhp\n"
+"hd_id3145621\n"
+"63\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"File properties\">File properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Thuộc tính tập tin\">Thuộc tính tập tin</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Right </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">qua Phải </caseinline></switchinline>"
-#: 01010100.xhp
+#: 02070000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3147396\n"
+"02070000.xhp\n"
+"par_id3159264\n"
+"64\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110100.xhp\" name=\"Template Management\">Template Management</link>"
-msgstr "<link href=\"text/shared/01/01110100.xhp\" name=\"Quản lý mẫu\">Quản lý mẫu</link>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted to the right when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Các ô đích bị dời qua phải khi bạn chèn các ô từ bảng nháp.</caseinline></switchinline></ahelp>"
-#: 05990000.xhp
+#: 02090000.xhp
msgctxt ""
-"05990000.xhp\n"
+"02090000.xhp\n"
"tit\n"
"help.text"
-msgid "Text"
-msgstr "Văn bản"
+msgid "Select All"
+msgstr "Chọn tất cả"
-#: 05990000.xhp
+#: 02090000.xhp
msgctxt ""
-"05990000.xhp\n"
-"hd_id3155757\n"
+"02090000.xhp\n"
+"hd_id3145138\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Văn bản\">Văn bản</link>"
+msgid "<link href=\"text/shared/01/02090000.xhp\" name=\"Select All\">Select All</link>"
+msgstr "<link href=\"text/shared/01/02090000.xhp\" name=\"Chọn tất cả\">Chọn tất cả</link>"
-#: 05990000.xhp
+#: 02090000.xhp
msgctxt ""
-"05990000.xhp\n"
-"par_id3150467\n"
+"02090000.xhp\n"
+"par_id3149999\n"
"2\n"
"help.text"
-msgid "<variable id=\"texttext\"><ahelp hid=\".uno:TextAttributes\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp></variable>"
-msgstr "<variable id=\"texttext\"><ahelp hid=\".uno:TextAttributes\">Đặt các thuộc tính về chức năng bố trí và thả neo cho văn bản trên đối tượng kiểu vẽ hay văn bản đã chọn.</ahelp></variable>"
+msgid "<variable id=\"allestext\"><ahelp hid=\".uno:Select\" visibility=\"visible\">Selects the entire content of the current file, frame, or text object.</ahelp></variable>"
+msgstr "<variable id=\"allestext\"><ahelp hid=\".uno:Select\" visibility=\"visible\">Lựa chọn toàn nội dung của tập tin, khung hay đối tượng văn bản đang biên soạn.</ahelp></variable>"
-#: 05990000.xhp
+#: 02090000.xhp
msgctxt ""
-"05990000.xhp\n"
-"par_id3150620\n"
+"02090000.xhp\n"
+"par_id3155261\n"
"3\n"
"help.text"
-msgid "This command is only available for drawing objects that can contain text, for example for rectangles, but not for lines."
-msgstr "Câu lệnh này chỉ sẵn sàng để vẽ đối tượng có thể chứa văn bản, ví dụ hình chữ nhật, không phải đường."
+msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet.</caseinline> <defaultinline/> </switchinline>"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Để lựa chọn tất cả các ô trên bảng, nhấn vào cái nút ở giao của phần đầu cột và hàng, ở góc trên bên trái bảng.</caseinline> <defaultinline/> </switchinline>"
-#: 05210100.xhp
+#: 02090000.xhp
msgctxt ""
-"05210100.xhp\n"
-"tit\n"
+"02090000.xhp\n"
+"par_id3154046\n"
+"4\n"
"help.text"
-msgid "Area"
-msgstr "Vùng"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the sheets in a spreadsheet file, right-click the name tab of a sheet, and then choose <emph>Select All Sheets</emph>.<ahelp hid=\".uno:TableSelectAll\" visibility=\"hidden\">Selects all of the sheets in the current spreadsheet.</ahelp></caseinline> <defaultinline/> </switchinline>"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Để lựa chọn tất cả các bảng trong một tập tin bảng tính, nhấn-phải vào thẻ tên của bảng, sau đó chọn lệnh <emph>Chọn mọi bảng</emph>.<ahelp hid=\".uno:TableSelectAll\" visibility=\"hidden\">Lựa chọn tất cả các bảng trong bảng tính hiện tại.</ahelp></caseinline> <defaultinline/> </switchinline>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"bm_id3149999\n"
+"02100000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value>"
-msgstr "<bookmark_value>vùng; kiểu dáng</bookmark_value><bookmark_value>mẫu tô đầy cho vùng</bookmark_value><bookmark_value>màu tô đầy cho vùng</bookmark_value><bookmark_value>vùng vô hình</bookmark_value>"
+msgid "Find & Replace"
+msgstr "Tìm và thay thế"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3145759\n"
+"02100000.xhp\n"
+"hd_id3154044\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\">Area</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Vùng\">Vùng</link>"
+msgid "<variable id=\"02100000\"><link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link></variable>"
+msgstr "<variable id=\"02100000\"><link href=\"text/shared/01/02100000.xhp\" name=\"Tìm và thay thế\">Tìm và thay thế</link></variable>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149748\n"
+"02100000.xhp\n"
+"par_id3149893\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_AREA\">Set the fill options for the selected drawing object.</ahelp>"
-msgstr "<ahelp hid=\"HID_AREA_AREA\">Đặt các tùy chọn tô đầy cho đối tượng vẽ đã chọn.</ahelp>"
+msgid "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Searches for or replaces text or formats in the current document.</ahelp></variable>"
+msgstr "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Tìm kiếm và/hay thay thế văn bản hay định dạng trong tài liệu hiện tại.</ahelp></variable>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3154863\n"
-"65\n"
+"02100000.xhp\n"
+"par_id00001\n"
"help.text"
-msgid "You can save collections of colors, gradients, hatchings, and bitmap patterns as lists that you can later load and use."
-msgstr "Bạn có khả năng lưu lại tập hợp các màu sắc, dải màu, lưới đan và mẫu mảnh ảnh dang danh sách bạn có thể nạp lại sau để sử dụng."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the text to search in the current document. Press Enter to search the text.</ahelp>"
+msgstr ""
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3149999\n"
-"3\n"
+"02100000.xhp\n"
+"par_id00002\n"
"help.text"
-msgid "Fill"
-msgstr "Tô đầy"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in downward direction.</ahelp>"
+msgstr ""
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3154673\n"
-"4\n"
+"02100000.xhp\n"
+"par_id00003\n"
"help.text"
-msgid "<variable id=\"sytext\"><ahelp hid=\".uno:FillStyle\">Select the type of fill that you want to apply to the selected drawing object.</ahelp></variable>"
-msgstr "<variable id=\"sytext\"><ahelp hid=\".uno:FillStyle\">Chọn kiểu tô đầy bạn muốn áp dụng cho đối tượng vẽ đã chọn.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in upward direction.</ahelp>"
+msgstr ""
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3148548\n"
-"55\n"
+"02100000.xhp\n"
+"hd_id3152425\n"
+"3\n"
"help.text"
-msgid "List boxes on the <emph>Drawing Object Properties</emph> toolbar:"
-msgstr "Hộp liệt kê trên thanh công cụ <emph>Thuộc tính Đối tượng Vẽ</emph>:"
+msgid "Search For"
+msgstr "Tìm kiếm"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3147373\n"
-"5\n"
+"02100000.xhp\n"
+"par_id3155805\n"
+"4\n"
"help.text"
-msgid "None"
-msgstr "Không có"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Enter the text that you want to search for, or select a previous search from the list.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Nhập chuỗi cần tìm, hoặc chọn một chuỗi tìm kiếm vừa dùng trong danh sách.</ahelp>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3147088\n"
-"6\n"
+"02100000.xhp\n"
+"par_id3153683\n"
+"189\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_FILL_OFF\">Does not apply a fill to the selected object. If the object contains a fill, the fill is removed.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_FILL_OFF\">Không tô đầy đối tượng đã chọn. Nếu đối tượng đã tô đầy, mẫu tô đầy bị gỡ bỏ.</ahelp>"
+msgid "Search options are listed in the <emph>Options </emph>area of the dialog"
+msgstr ""
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3153345\n"
-"8\n"
+"02100000.xhp\n"
+"hd_id3152551\n"
+"5\n"
"help.text"
-msgid "Color"
-msgstr "Màu"
+msgid "Replace With"
+msgstr "Thay thế bằng"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149750\n"
-"9\n"
+"02100000.xhp\n"
+"par_id3156426\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLOR\">Fills the selected object with the color that you click in the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLOR\">Tô đầy đối tượng đã chọn bằng màu vào đó bạn nhấn trong danh sách.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/replacelist\">Enter the replacement text, or select a recent replacement text or style from the list.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/replacelist\">Nhập chuỗi thay thế, hoặc chọn một chuỗi thay thế vừa dùng trong danh sách.</ahelp>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3153147\n"
-"57\n"
+"02100000.xhp\n"
+"par_id3150506\n"
+"190\n"
"help.text"
-msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the<emph> Colors</emph> tab, and then click <emph>Edit</emph>."
-msgstr "Để thêm vào danh sách một màu khác, chọn lệnh <link href=\"text/shared/optionen/01010500.xhp\" name=\"Định dạng > Vùng\"><emph>Định dạng > Vùng</emph></link>, nhấn vào thẻ <emph>Màu sắc</emph>, sau đó nhấn vào nút <emph>Sửa</emph>."
+msgid "Replacement options are listed in the <emph>Options </emph>area of the dialog."
+msgstr ""
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id9695730\n"
+"02100000.xhp\n"
+"hd_id3166410\n"
+"8\n"
"help.text"
-msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the <emph>Colors</emph> tab, and then click <emph>Edit</emph>."
-msgstr "Để thêm vào danh sách một màu khác, chọn lệnh <link href=\"text/shared/optionen/01010500.xhp\" name=\"Định dạng > Vùng\"><emph>Định dạng > Vùng</emph></link>, nhấn vào thẻ <emph>Màu sắc</emph>, sau đó nhấn vào nút <emph>Sửa</emph>."
+msgid "Options"
+msgstr "Tùy chọn"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3144438\n"
+"02100000.xhp\n"
+"hd_id3148538\n"
"10\n"
"help.text"
-msgid "Gradient"
-msgstr "Dải màu"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Toàn ô</caseinline><defaultinline>Chỉ nguyên từ</defaultinline></switchinline>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3153716\n"
+"02100000.xhp\n"
+"par_id3149579\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_GRADIENT\">Fills the selected object with the gradient that you click in the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_GRADIENT\">Tô đầy đối tượng đã chọn bằng dải màu vào đó bạn nhấn trong danh sách.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3154047\n"
-"12\n"
-"help.text"
-msgid "Hatching"
-msgstr "Lưới đan"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3153698\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_HATCH\">Fills the selected object with the hatching pattern that you click in the list. To apply a background color to the hatching pattern, select the <emph>Background color</emph> box, and then click a color in the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_HATCH\">Tô đầy đối tượng đã chọn bằng mẫu lưới đan vào đó bạn nhấn trong danh sách. Để thêm vào mẫu lưới đan một màu nền, bật tùy chọn <emph>Màu nền</emph>, sau đó nhấn vào một màu nào đó trong danh sách.</ahelp>"
+msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
+msgstr "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Tìm kiếm nguyên từ hay ô hoàn toàn mà trùng với chuỗi tìm kiếm.</ahelp></variable>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3150771\n"
+"02100000.xhp\n"
+"hd_id3156192\n"
"14\n"
"help.text"
-msgid "Bitmap"
-msgstr "Ảnh bitmap"
+msgid "Backwards"
+msgstr "Ngược"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149762\n"
+"02100000.xhp\n"
+"par_id3150771\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_BITMAP\">Fills the selected object with the bitmap pattern that you click in the list. To add a bitmap to the list, open this dialog in %PRODUCTNAME Draw, click the <emph>Bitmaps </emph>tab, and then click <emph>Import</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_BITMAP\">Tô đầy đối tượng đã chọn bằng mẫu ảnh bitmap vào đó bạn nhấn trong danh sách. Để thêm vào danh sách một ảnh bitmap, mở hộp thoại này trong %PRODUCTNAME Draw, nhấn vào thẻ <emph>Ảnh mảng</emph>, sau đó nhấn vào nút <emph>Nhập</emph>.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/backwards\">Tiến trình tìm kiếm bắt đầu ở vị trí con trỏ hiện tại, sau đó đi ngược, về đầu của tập tin.</ahelp>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3150504\n"
+"02100000.xhp\n"
+"hd_id3144439\n"
"16\n"
"help.text"
-msgid "Area Fill"
-msgstr "Tô đầy vùng"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3153626\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_BITMAP\">Nhấn vào mẫu tô đầy bạn muốn áp dụng cho đối tượng đã chọn.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3154346\n"
-"20\n"
-"help.text"
-msgid "Increments (Gradients)"
-msgstr "Bước (Dải màu)"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3144423\n"
-"21\n"
-"help.text"
-msgid "Set the number of steps for blending the two end colors of a gradient."
-msgstr "Đặt số bước để pha hai màu cuối của dải màu."
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3147264\n"
-"22\n"
-"help.text"
-msgid "Automatic"
-msgstr "Tự động"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3149457\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STEPCOUNT\">Automatically determines the number of steps for blending the two end colors of the gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STEPCOUNT\">Tự động xác định số bước để pha hai màu cuối của dải màu.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3154388\n"
-"24\n"
-"help.text"
-msgid "Increment"
-msgstr "Bước"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3150360\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT\">Enter the number of steps for blending the two end colors of the gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT\">Nhập số bước để pha hai màu cuối của dải màu..</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3153381\n"
-"31\n"
-"help.text"
-msgid "Size (Bitmaps)"
-msgstr "Kích cỡ (Ảnh bitmap)"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3148798\n"
-"32\n"
-"help.text"
-msgid "Specify the dimensions of the bitmap."
-msgstr "Ghi rõ các chiều của ảnh bitmap."
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3154068\n"
-"33\n"
-"help.text"
-msgid "Relative"
-msgstr "Tương đối"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3125865\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_SCALE\">Rescales the bitmap relative to the size of the selected object by the percentage values that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes . Clear this checkbox to resize the selected object with the measurements that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_SCALE\">Co giãn lại ảnh bitmap tương đối so với kích cỡ của đối tượng đã chọn theo giá trị phần trăm bạn nhập vào hộp <emph>Rộng</emph> và <emph>Cao</emph>. Tắt tùy chọn này để thay đổi kích cỡ của đối tượng đã chọn theo giá trị bạn nhập vào hộp <emph>Rộng</emph> và <emph>Cao</emph>.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3149202\n"
-"35\n"
-"help.text"
-msgid "Original"
-msgstr "Gốc"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3153970\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_ORIGINAL\">Retains the original size of the bitmap when filling the selected object. To resize the bitmap, clear this checkbox, and then click <emph>Relative</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_ORIGINAL\">Giữ lại kích cỡ gốc của ảnh bitmap khi tô đầy đối tượng đã chọn. Để thay đổi kích cỡ của ảnh bitmap, tắt tùy chọn này, sau đó nhấn vào mục <emph>Tương đối</emph>.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3155994\n"
-"37\n"
-"help.text"
-msgid "Width"
-msgstr "Bề rộng"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3149810\n"
-"38\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE\">Enter a width for the bitmap.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE\">Nhập chiều rộng của ảnh bitmap.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3156281\n"
-"39\n"
-"help.text"
-msgid "Height"
-msgstr "Bề cao"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3150868\n"
-"40\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE\">Enter a height for the bitmap.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE\">Nhập chiều cao của ảnh bitmap.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3148673\n"
-"41\n"
-"help.text"
-msgid "Position (Bitmaps)"
-msgstr "Vị trí (Ảnh bitmap)"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3154821\n"
-"42\n"
-"help.text"
-msgid "Click in the position grid to specify the offset for tiling the bitmap."
-msgstr "Nhấn vào lưới vị trí để xác định khoảng dịch để xếp lát ảnh bitmap."
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Regular expressions</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Biểu thức chính quy</defaultinline></switchinline>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3153056\n"
-"43\n"
+"02100000.xhp\n"
+"par_id3155342\n"
+"156\n"
"help.text"
-msgid "X Offset"
-msgstr "Độ dịch X"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Allows you to use wildcards in your search.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Cho phép bạn dùng ký tự đại diện (v.d. *, ?) trong chuỗi tìm kiếm.</defaultinline></switchinline>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3147299\n"
-"44\n"
+"02100000.xhp\n"
+"par_id3727225\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET\">Enter the horizontal offset for tiling the bitmap.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET\">Nhập khoảng dịch theo chiều ngang để xếp lát ảnh bitmap.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Allows you to use wildcards in your search.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cho phép bạn dùng ký tự đại diện (v.d. *, ?) trong chuỗi tìm kiếm.</ahelp>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3149985\n"
+"02100000.xhp\n"
+"hd_id3154924\n"
"45\n"
"help.text"
-msgid "Y Offset"
-msgstr "Độ dịch Y"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3148559\n"
-"46\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET\">Enter the vertical offset for tiling the bitmap.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET\">Nhập khoảng dịch theo chiều dọc để xếp lát ảnh bitmap.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3156060\n"
-"27\n"
-"help.text"
-msgid "Tile"
-msgstr "Xếp lát"
+msgid "Match case"
+msgstr "So sánh chữ hoa/thường"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3152576\n"
-"28\n"
+"02100000.xhp\n"
+"bm_id3154760\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_TILE\">Tiles the bitmap to fill the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_TILE\">Xếp lát ảnh bitmap để tô đầy đối tượng đã chọn.</ahelp>"
+msgid "<bookmark_value>case sensitivity;searching</bookmark_value>"
+msgstr "<bookmark_value>phân biệt chữ hoa/thường;tìm kiếm</bookmark_value>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3150334\n"
-"29\n"
+"02100000.xhp\n"
+"par_id3154760\n"
+"46\n"
"help.text"
-msgid "AutoFit"
-msgstr "Tự động vừa"
+msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
+msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Phân biệt các chữ hoa và chữ thường.</ahelp></variable>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149481\n"
-"30\n"
+"02100000.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STRETCH\">Stretches the bitmap to fill the selected object. To use this feature, clear the <emph>Tile </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STRETCH\">Kéo giãn ảnh bitmap để tô đầy đối tượng đã chọn. Để sử dụng tính năng này, tắt tùy chọn <emph>Xếp lát</emph>.</ahelp>"
+msgid "<bookmark_value>finding; selections</bookmark_value>"
+msgstr "<bookmark_value>tìm; vùng chọn</bookmark_value>"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3148555\n"
+"02100000.xhp\n"
+"hd_id3147264\n"
"47\n"
"help.text"
-msgid "Offset"
-msgstr "Độ dịch"
+msgid "Current selection only"
+msgstr "Chỉ vùng chọn hiện thời"
-#: 05210100.xhp
+#: 02100000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3155412\n"
+"02100000.xhp\n"
+"par_id3150866\n"
"48\n"
"help.text"
-msgid "Specify the offset for tiling the bitmap in terms of rows and columns."
-msgstr "Xác định khoảng dịch để xếp lát ảnh bitmap, theo số hàng/cột."
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3151115\n"
-"49\n"
-"help.text"
-msgid "Row"
-msgstr "Hàng"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3155369\n"
-"50\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_ROW\">Horizontally offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_ROW\">Dịch theo chiều ngang ảnh bitmap gốc tương đối so với các đá lát ảnh mảng, theo giá trị bạn nhập.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3144442\n"
-"51\n"
-"help.text"
-msgid "Column"
-msgstr "Cột"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3146974\n"
-"52\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLUMN\">Vertically offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLUMN\">Dịch theo chiều dọc ảnh bitmap gốc tương đối so với các đá lát ảnh mảng, theo giá trị bạn nhập.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3150684\n"
-"53\n"
-"help.text"
-msgid "Percent"
-msgstr "Phần trăm"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3155314\n"
-"54\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_OFFSET\">Enter the percentage to offset the rows or columns.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_OFFSET\">Nhập phần trăm để dịch chuyển các hàng/cột.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3152887\n"
-"59\n"
-"help.text"
-msgid "Background Color (Hatching)"
-msgstr "Màu nền (Lưới đan)"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3153364\n"
-"61\n"
-"help.text"
-msgid "Background color"
-msgstr "Màu nền"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3152940\n"
-"62\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_AREA:CB_HATCHBCKGRD\">Applies a background color to the hatching pattern. Select this checkbox, and then click a color in the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_AREA:CB_HATCHBCKGRD\">Áp dụng màu nền cho mẫu lưới đan. Bật tùy chọn này, sau đó nhấn vào một màu nào đó trong danh sách.</ahelp>"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3152460\n"
-"63\n"
-"help.text"
-msgid "List of colors"
-msgstr "Danh sách màu sắc"
-
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3157309\n"
-"64\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR\">Click the color that you want to use as a background for the selected hatching pattern.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR\">Nhấn vào màu bạn muốn dùng làm nền cho mẫu lưới đan đã chọn.</ahelp>"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Aligning (Objects)"
-msgstr "Chỉnh canh (Đối tượng)"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"bm_id3149987\n"
-"help.text"
-msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
-msgstr "<bookmark_value>chỉnh canh; đối tượng</bookmark_value><bookmark_value>định vị; đối tượng</bookmark_value><bookmark_value>sắp xếp; đối tượng</bookmark_value>"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"hd_id3149987\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
-msgstr "<link href=\"text/shared/01/05070000.xhp\" name=\"Chỉnh canh (Đối tượng)\">Chỉnh canh (Đối tượng)</link>"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"par_id3150445\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Aligns selected objects with respect to one another.</ahelp>"
-msgstr "<ahelp hid=\".\">Căn chỉnh những đối tượng sau sau cho phù hợp.</ahelp>"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"par_id3150144\n"
-"4\n"
-"help.text"
-msgid "If one of the selected objects is anchored as a character, some of the alignment options do not work."
-msgstr "Trong những đối tượng đã chọn, nếu có một đồ đã thả neo vào ký tự, một số tùy chọn chỉnh canh nào đó không hoạt động được."
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"par_id8872646\n"
-"help.text"
-msgid "Not all types of objects can be selected together. Not all modules (Writer, Calc, Impress, Draw) support all types of alignment."
-msgstr "Không phải tất cả các kiểu đối tượng có khả năng được chọn với nhau. Không phải tất cả các mô-đun (Writer, Calc, Impress, Draw) hỗ trợ mọi cách chỉnh canh."
-
-#: 01110000.xhp
-msgctxt ""
-"01110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Templates"
-msgstr "Mẫu"
-
-#: 01110000.xhp
-msgctxt ""
-"01110000.xhp\n"
-"hd_id3155577\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01110000.xhp\" name=\"Templates\">Templates</link>"
-msgstr "<link href=\"text/shared/01/01110000.xhp\" name=\"Mẫu\">Mẫu</link>"
-
-#: 01110000.xhp
-msgctxt ""
-"01110000.xhp\n"
-"par_id3154894\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Lets you organize and edit your templates, as well as save the current file as a template.</ahelp>"
-msgstr "<ahelp hid=\".\">Cho bạn có khả năng tổ chức và chỉnh sửa các mẫu, cũng như lưu tập tin hiện tại dạng mẫu.</ahelp>"
-
-#: 01110000.xhp
-msgctxt ""
-"01110000.xhp\n"
-"hd_id3149893\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Address Book Source\">Address Book Source</link>"
-msgstr "<link href=\"text/shared/01/01110101.xhp\" name=\"Nguồn Sổ địa chỉ\">Nguồn Sổ địa chỉ</link>"
-
-#: 01160200.xhp
-msgctxt ""
-"01160200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Document as E-mail"
-msgstr "Tài liệu dạng Thư điện tử"
-
-#: 01160200.xhp
-msgctxt ""
-"01160200.xhp\n"
-"hd_id3150702\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\">Document as E-mail</link>"
-msgstr "<link href=\"text/shared/01/01160200.xhp\">Tài liệu dạng Thư điện tử</link>"
-
-#: 01160200.xhp
-msgctxt ""
-"01160200.xhp\n"
-"par_id3152823\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">Opens a new window in your default e-mail program with the current document as an attachment. The current file format is used.</ahelp></variable> If the document is new and unsaved, the format specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General is used."
-msgstr ""
-
-#: 01160200.xhp
-msgctxt ""
-"01160200.xhp\n"
-"par_id0807200809553672\n"
-"help.text"
-msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail."
-msgstr "Nếu tài liệu trong định dạng HTML, các hình ảnh được nhúng hay liên kết tới sẽ không được gửi trong thư điện tử."
-
-#: 05200100.xhp
-msgctxt ""
-"05200100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line"
-msgstr "Đường"
-
-#: 05200100.xhp
-msgctxt ""
-"05200100.xhp\n"
-"hd_id3148882\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Đường\">Đường</link>"
-
-#: 05200100.xhp
-msgctxt ""
-"05200100.xhp\n"
-"par_id3153272\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_LINE_LINE\">Set the formatting options for the selected line or the line that you want to draw. You can also add arrowheads to a line, or change chart symbols.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINE_LINE\">Đặt các tùy chọn định dạng cho đường đã chọn, hay đường bạn muốn vẽ. Bạn cũng có thể thêm vào đường một hai mũi tên đầu, hoặc thay đổi các ký hiệu đồ thị.</ahelp>"
-
-#: 05200100.xhp
-msgctxt ""
-"05200100.xhp\n"
-"hd_id3147000\n"
-"3\n"
-"help.text"
-msgid "Line properties"
-msgstr "Thuộc tính Đường"
-
-#: 05200100.xhp
-msgctxt ""
-"05200100.xhp\n"
-"hd_id3148983\n"
-"5\n"
-"help.text"
-msgid "Styles"
-msgstr "Kiểu dáng"
+msgid "<ahelp hid=\".\">Searches only the selected text or cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Tìm kiếm chỉ trong đoạn văn hoặc các ô đã chọn.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3147143\n"
-"6\n"
+"02100000.xhp\n"
+"par_id8876918\n"
"help.text"
-msgid "<variable id=\"stiltext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_LINE_STYLE\">Select the line style that you want to use.</ahelp></variable>"
-msgstr "<variable id=\"stiltext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_LINE_STYLE\">Chọn kiểu dáng đường cần dùng.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Search for list. To specify a replacement style, select a style from the Replace with list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm đoạn văn được định dạng bằng kiểu dáng bạn ghi rõ. Đánh dấu trong hộp chọn này, sau đó chọn một kiểu dáng trong danh sách <emph>Tìm kiếm</emph>. Để ghi rõ một kiểu dáng thay thế, chọn một kiểu dáng trong danh sách <emph>Thay thế bằng</emph>.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3150789\n"
-"7\n"
+"02100000.xhp\n"
+"hd_id3153524\n"
+"49\n"
"help.text"
-msgid "Colors"
-msgstr "Màu sắc"
+msgid "Search for Styles / Including Styles"
+msgstr "Tìm kiểu dáng / Kèm thêm kiểu dáng"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3147226\n"
-"8\n"
+"02100000.xhp\n"
+"par_id3155103\n"
+"50\n"
"help.text"
-msgid "<variable id=\"farbetext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_COLOR\">Select a color for the line.</ahelp></variable>"
-msgstr "<variable id=\"farbetext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_COLOR\">Chọn màu cho đường.</ahelp></variable>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Search for </emph>list. To specify a replacement style, select a style from the <emph>Replace with</emph> list.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Tìm kiếm văn bản theo định dạng bạn ghi rõ. Bật tùy chọn này, sau đó chọn một kiểu dáng trong danh sách <emph>Tìm kiếm</emph>. Để ghi rõ kiểu dáng thay thế, chọn một kiểu dáng trong danh sách <emph>Thay thế bằng</emph> list.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3159234\n"
-"9\n"
+"02100000.xhp\n"
+"par_idN109CC\n"
"help.text"
-msgid "Widths"
-msgstr "Rộng"
+msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
+msgstr "Một khi bạn chọn các thuộc tính thích hợp với tiến trình tìm kiếm, hộp <emph>Tìm kiếm Kiểu dáng</emph> trong vùng <emph>Tùy chọn</emph> của hộp thoại <emph>Tìm và Thay thế</emph> của %PRODUCTNAME Writer trở thành <emph>Kèm thêm kiểu dáng</emph>."
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3150774\n"
-"10\n"
+"02100000.xhp\n"
+"par_idN109DF\n"
"help.text"
-msgid "<variable id=\"breitetext\"><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH\">Select the width for the line. You can append a measurement unit. A zero line width results in a hairline with a width of one pixel of the output medium.</ahelp></variable>"
-msgstr "<variable id=\"breitetext\"><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH\">Chọn bề rộng của đường. Bạn cũng có thể phụ thêm đơn vị đo. Bề rộng đường số không có kết quả là nét hất lên có bề rộng một điểm ảnh theo phương tiện xuất.</ahelp></variable>"
+msgid "If you want to search for text in which attributes were set by using direct formatting and styles, select the <emph>Including Styles</emph> box."
+msgstr "Muốn tìm kiếm văn bản có các thuộc tính được đặt bằng định dạng trực tiếp và kiểu dáng thì bật tùy chọn <emph>Kèm thêm kiểu dáng</emph>."
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3153681\n"
-"11\n"
+"02100000.xhp\n"
+"hd_id0302200901464169\n"
"help.text"
-msgid "Transparency"
-msgstr "Trong suốt"
+msgid "Comments"
+msgstr "Chú thích"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3156346\n"
-"12\n"
+"02100000.xhp\n"
+"par_id0302200901464150\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT\">Enter the transparency of the line, where 100% corresponds to completely transparent and 0% to completely opaque. </ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT\">Nhập tính trong suốt của đường, mà 100% tương ứng với trong suốt hoàn toàn, và 0% là đục hoàn toàn.</ahelp>"
+msgid "<ahelp hid=\".\">In Writer, you can select to include the comment texts in your searches.</ahelp>"
+msgstr "<ahelp hid=\".\">Trong Writer, bạn có thể lựa chọn để bao gồm ghi chú trong những tìm kiếm của bạn.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3152996\n"
-"33\n"
+"02100000.xhp\n"
+"hd_id3149167\n"
+"204\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The <emph>Line</emph> tab of the <emph>Data Series</emph> dialog is only available if you select an XY <emph>Chart type</emph>.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Thẻ <emph>Đường</emph> của hộp thoại <emph>Dãy dữ liệu</emph> chỉ sẵn sàng nếu bạn chọn <emph>Kiểu đồ thị</emph> « XY ».</defaultinline></switchinline>"
+msgid "<variable id=\"halbnormaltitel\">Match character width (only if Asian languages are enabled)</variable>"
+msgstr "<variable id=\"halbnormaltitel\">Khớp bề rộng ký tự (chỉ nếu cũng hiệu lực các ngôn ngữ Châu Á).</variable>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3153331\n"
-"23\n"
+"02100000.xhp\n"
+"par_id3145744\n"
+"208\n"
"help.text"
-msgid "Icon"
-msgstr "Biểu tượng"
+msgid "<variable id=\"halbnormaltext\"><ahelp hid=\"svx/ui/findreplacedialog/matchcharwidth\">Distinguishes between half-width and full-width character forms.</ahelp></variable>"
+msgstr "<variable id=\"halbnormaltext\"><ahelp hid=\"svx/ui/findreplacedialog/matchcharwidth\">Phân biệt dạng ký tự kiểu nửa rộng và rộng đầy.</ahelp></variable>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3149955\n"
-"24\n"
+"02100000.xhp\n"
+"hd_id3153178\n"
+"205\n"
"help.text"
-msgid "Set the options for the data point symbols in your chart."
-msgstr "Đặt các tùy chọn về những ký hiệu điểm dữ liệu trên đồ thị."
+msgid "<variable id=\"aehnlichtitel\">Sounds like (Japanese) (only if Asian languages are enabled)</variable>"
+msgstr "<variable id=\"aehnlichtitel\">Nghe như (tiếng Nhật) (chỉ nếu cũng hiệu lực các ngôn ngữ Châu Á).</variable>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3158430\n"
-"25\n"
+"02100000.xhp\n"
+"par_id3145421\n"
+"206\n"
"help.text"
-msgid "Select"
-msgstr "Chọn"
+msgid "<variable id=\"aehnlichtext\"><ahelp hid=\"svx/ui/findreplacedialog/soundslike\">Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the <emph>...</emph> button to specify the search options. </ahelp></variable>"
+msgstr "<variable id=\"aehnlichtext\"><ahelp hid=\"svx/ui/findreplacedialog/soundslike\">Cho phép bạn ghi rõ các tùy chọn tìm kiếm về kiểu ghi tương tự được dùng trong văn bản tiếng Nhật. Bật tùy chọn này, sau đó nhấn vào nút <emph>...</emph> để ghi rõ các tùy chọn tìm kiếm.</ahelp></variable>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3152944\n"
-"26\n"
+"02100000.xhp\n"
+"par_id3149765\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP\">Select the symbol style that you want to use in your chart.</ahelp> If you select <emph>Automatic</emph>, $[officename] uses the default symbols for the selected chart type."
-msgstr "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP\">Chọn kiểu dáng ký hiệu bạn muốn dùng trên đồ thị.</ahelp> Chọn mục <emph>Tự động</emph>, thì $[officename] dùng các ký hiệu mặc định cho kiểu đồ thị đã chọn."
+msgid "<variable id=\"aehnlichbutton\"><ahelp hid=\"svx/ui/findreplacedialog/soundslikebtn\" visibility=\"hidden\">Sets the search options for similar notation used in Japanese text.</ahelp></variable>"
+msgstr "<variable id=\"aehnlichbutton\"><ahelp hid=\"svx/ui/findreplacedialog/soundslikebtn\" visibility=\"hidden\">Đặt các tùy chọn tìm kiếm về kiểu ghi tương tự được dùng trong văn bản tiếng Nhật.</ahelp></variable>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154381\n"
-"27\n"
+"02100000.xhp\n"
+"par_id3148672\n"
+"212\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "<link href=\"text/shared/optionen/01150200.xhp\" name=\"Searching in Japanese\">Searching in Japanese</link>"
+msgstr "<link href=\"text/shared/optionen/01150200.xhp\" name=\"Tìm bằng tiếng Nhật\">Tìm bằng tiếng Nhật</link>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3150976\n"
-"28\n"
+"02100000.xhp\n"
+"hd_id3154299\n"
+"66\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH\">Enter a width for the symbol.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH\">Nhập chiều rộng cho ký hiệu.</ahelp>"
+msgid "Find All"
+msgstr "Tìm tất cả"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3149166\n"
-"29\n"
+"02100000.xhp\n"
+"par_id3145785\n"
+"67\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)."
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL\">Tìm và lựa chọn mọi lần gặp đoạn văn hay định dạng bạn tìm kiếm trong tài liệu (chỉ trong tài liệu kiểu Writer và Calc).</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3155179\n"
-"30\n"
+"02100000.xhp\n"
+"par_id31454242785\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT\">Enter a height for the symbol.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT\">Nhập chiều cao cho ký hiệu.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents).</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL\">Tìm và lựa chọn mọi lần gặp đoạn văn hay định dạng bạn tìm kiếm trong tài liệu (chỉ trong tài liệu kiểu Writer và Calc).</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3147620\n"
-"31\n"
+"02100000.xhp\n"
+"hd_id3163821\n"
+"68\n"
"help.text"
-msgid "Keep ratio"
-msgstr "Giữ tỷ lệ"
+msgid "Find"
+msgstr "Tìm"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3156326\n"
-"32\n"
+"02100000.xhp\n"
+"par_id3147436\n"
+"69\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO\">Maintains the proportions of the symbol when you enter a new height or width value.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO\">Bảo tồn tỷ lệ của ký hiệu khi bạn sửa đổi chiều cao/rộng.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finds and selects the next occurrence of the text or format that you searching for in the document.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/search\">Tìm và lựa chọn lần kế tiếp gặp đoạn văn hay định dạng bạn tìm kiếm trong tài liệu.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154579\n"
-"13\n"
+"02100000.xhp\n"
+"hd_id3153742\n"
+"70\n"
"help.text"
-msgid "Arrow styles"
-msgstr "Kiểu mũi tên"
+msgid "Replace All"
+msgstr "Thay thế tất cả"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3161459\n"
-"14\n"
+"02100000.xhp\n"
+"par_id3145660\n"
+"71\n"
"help.text"
-msgid "You can add arrowheads to one end, or both ends of the selected line. To add a custom arrow style to the list, select the arrow in your document, and then click on the <link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\"><emph>Arrow Styles</emph></link> tab of this dialog."
-msgstr "Bạn có thể thêm mũi tên đầu vào một cuối, hay vào cả hai cuối của đường đã chọn. Để thêm vào danh sách một kiểu dáng mũi tên riêng, chọn mũi tên trong tài liệu, sau đó nhấn vào thẻ <link href=\"text/shared/01/05200300.xhp\" name=\"Kiểu dáng Mũi tên\"><emph>Kiểu dáng Mũi tên</emph></link> của hộp thoại."
+msgid "<ahelp hid=\".\">Replaces all of the occurrences of the text or format that you want to replace.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Repeat this command until all replacements on your slide have been made.</caseinline></switchinline>"
+msgstr "<ahelp hid=\".\">Thay thế mọi lần gặp đoạn văn hay định dạng bạn muốn thay thế.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Lặp lại lệnh này đến khi thay thế tất cả các đoạn/đồ trên ảnh chiếu của bạn. </caseinline></switchinline>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3147530\n"
-"15\n"
+"02100000.xhp\n"
+"hd_id3149065\n"
+"72\n"
"help.text"
-msgid "Style"
-msgstr "Kiểu dáng"
+msgid "Replace"
+msgstr "Thay thế"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3146794\n"
-"16\n"
+"02100000.xhp\n"
+"par_id3151170\n"
+"73\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_END_STYLE\">Select the arrowhead that you want to apply to the selected line.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_END_STYLE\">Chọn mũi tên đầu bạn muốn áp dụng cho đường đã chọn.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/replace\">Replaces the selected text or format that you searched for, and then searches for the next occurrence.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/replace\">Thay thế đoạn hay định dạng bạn đã tìm kiếm, sau đó tìm kiếm lần gặp kế tiếp.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3149656\n"
-"17\n"
+"02100000.xhp\n"
+"hd_id3147348\n"
+"192\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attribute</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Thuộc tính\">Thuộc tính</link></caseinline></switchinline>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3148755\n"
-"18\n"
+"02100000.xhp\n"
+"hd_id3155854\n"
+"193\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH\">Enter a width for the arrowhead.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH\">Nhập chiều rộng cho mũi tên đầu.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Định dạng\">Định dạng</link></caseinline></switchinline>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154935\n"
-"19\n"
+"02100000.xhp\n"
+"par_id8641315\n"
"help.text"
-msgid "Center"
-msgstr "Ở giữa"
+msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics."
+msgstr "Tìm các tính năng định dạng văn bản dứt khoát, v.d. kiểu phông, hiệu ứng phông và đặc tính luồng văn bản."
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3153526\n"
-"20\n"
+"02100000.xhp\n"
+"hd_id3154188\n"
+"135\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_LINE:TSB_CENTER_END\">Places the center of the arrowhead(s) on the endpoint(s) of the selected line.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_LINE:TSB_CENTER_END\">Đặt điểm giữa của các mũi tên đầu vào các điểm cuối của đường đã chọn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Không định dạng</caseinline></switchinline>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154072\n"
-"21\n"
+"02100000.xhp\n"
+"par_id3159155\n"
+"136\n"
"help.text"
-msgid "Synchronize ends"
-msgstr "Đồng bộ hoá hai cuối"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click in the <emph>Search for </emph>or the <emph>Replace with </emph>box, and then click this button to remove the search criteria based on formats.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nhấn vào hộp <emph>Tìm kiếm</emph> hay <emph>Thay thế bằng</emph>, sau đó nhấn vào cái nút này để gỡ bỏ các tiêu chuẩn tìm kiếm phụ thuộc vào định dạng.</caseinline></switchinline>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3154365\n"
-"22\n"
+"02100000.xhp\n"
+"par_id1334269\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE\">Automatically updates both arrowhead settings when you enter a different width, select a different arrowhead style,or center an arrowhead.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE\">Tự động cập nhật cả hai thiết lập mũi tên đầu khi bạn sửa đổi chiều rộng, chọn kiểu dáng mũi tên đầu khác, hoặc giữa lại mũi tên đầu.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click in the Search for or the Replace with box, and then click this button to remove the search criteria based on formats.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào hộp « Tìm kiếm » hay « Thay thế bằng », sau đó nhấn vào cái nút này để gỡ bỏ các tiêu chuẩn tìm kiếm dựa vào định dạng.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154580\n"
+"02100000.xhp\n"
+"par_id3150337\n"
+"137\n"
"help.text"
-msgid "Corner and cap styles"
-msgstr ""
+msgid "The search criteria for formatting attributes are displayed under the <emph>Search for </emph>or the <emph>Replace with </emph>box."
+msgstr "Tiêu chuẩn tìm kiếm để định dạng thuộc tính được hiển thị bên dưới hộp <emph>Tìm kiếm</emph> hay <emph>Thay thế bằng</emph>."
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154582\n"
+"02100000.xhp\n"
+"par_id3150113\n"
+"139\n"
"help.text"
-msgid "Corner style"
-msgstr ""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows more or fewer search options. Click this button again to hide the extended search options.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm hoặc bớt việc hiển thị các tùy chọn tìm kiếm. Nhấn nút này một lần nữa để giấu đi những tùy chọn tìm kiếm mở rộng.</ahelp>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3154583\n"
+"02100000.xhp\n"
+"hd_id3154944\n"
+"140\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_EDGE_STYLE\">Select the shape to be used at the corners of the line. In case of a small angle between lines, a mitered shape is replaced with a beveled shape.</ahelp>"
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm trong</caseinline></switchinline>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154585\n"
+"02100000.xhp\n"
+"hd_id3146925\n"
+"142\n"
"help.text"
-msgid "Cap style"
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Công thức</caseinline></switchinline>"
-#: 05200100.xhp
+#: 02100000.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3154586\n"
+"02100000.xhp\n"
+"par_id6719870\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_CAP_STYLE\">Select the style of the line end caps. The caps are added to inner dashes as well.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in formulas and in fixed (not calculated) values. For example, you could look for formulas that contain 'SUM'.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm các ký tự bạn ghi rõ, tìm kiếm qua các giá trị và kết quả của công thức. Ví dụ, bạn có thể tìm công thức chứa toán tử « SUM » (tổng).</ahelp>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"hd_id3149400\n"
+"144\n"
"help.text"
-msgid "Confirm Delete"
-msgstr "Xác nhận xoá"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Values</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Giá trị</caseinline></switchinline>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"02100000.xhp\n"
+"par_id3146969\n"
+"145\n"
"help.text"
-msgid "Confirm Delete"
-msgstr "Xác nhận xoá"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in values and in the results of formulas.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm các ký tự bạn ghi rõ trong các giá trị trong kết quả của công thức. </caseinline></switchinline>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"2\n"
+"02100000.xhp\n"
+"par_id6064943\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Xác nhận hay thôi hành động xoá.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in values and in the results of formulas.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm các ký tự bạn ghi rõ, tìm kiếm qua các giá trị và kết quả của công thức.</ahelp>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"3\n"
+"02100000.xhp\n"
+"hd_id3145650\n"
+"146\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chú thích</caseinline></switchinline>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"4\n"
+"02100000.xhp\n"
+"par_id3153947\n"
+"147\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Thực hiện hành động xoá trong tập tin hiện tại.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in the comments that are attached to the cells.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm các ký tự bạn chỉ định trong các ghi chú đính kèm các ô. </caseinline></switchinline>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"5\n"
+"02100000.xhp\n"
+"par_id9799798\n"
"help.text"
-msgid "Delete All"
-msgstr "Xoá tất cả"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in the comments that are attached to the cells.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm các ký tự bạn chỉ định trong các ghi chú đính kèm các ô.</ahelp>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"6\n"
+"02100000.xhp\n"
+"hd_id3153004\n"
+"148\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Thực hiện hành động xoá trong tất cả các tập tin đã chọn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search direction</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hướng tìm</caseinline></switchinline>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"7\n"
+"02100000.xhp\n"
+"par_id3156332\n"
+"207\n"
"help.text"
-msgid "Do Not Delete"
-msgstr "Không xoá"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Determines the order for searching the cells.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Xác định thứ tự cần theo khi tìm kiếm qua các ô bảng. </caseinline></switchinline>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"8\n"
+"02100000.xhp\n"
+"hd_id3155064\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Từ chối hành động xoá cho tập tin hiện tại.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Rows</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Theo hàng</caseinline></switchinline>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"9\n"
+"02100000.xhp\n"
+"par_id743430\n"
"help.text"
-msgid "Cancel"
-msgstr "Thôi"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from left to right across the rows.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm từ trái sang phải, qua các hàng.</ahelp>"
-#: 03150100.xhp
+#: 02100000.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"10\n"
+"02100000.xhp\n"
+"hd_id3156277\n"
+"152\n"
"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
-msgstr "Thôi hành động xoá trong tập tin hiện tại và bất cứ tập tin khác nào cũng được chọn."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Columns</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Theo cột</caseinline></switchinline>"
-#: 05250200.xhp
+#: 02100000.xhp
msgctxt ""
-"05250200.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"par_id3145207\n"
+"153\n"
"help.text"
-msgid "Bring Forward"
-msgstr "Nâng lên"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm từ trên xuống dưới qua các cột.</caseinline></switchinline>"
-#: 05250200.xhp
+#: 02100000.xhp
msgctxt ""
-"05250200.xhp\n"
-"hd_id3152790\n"
-"1\n"
+"02100000.xhp\n"
+"par_id3470564\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250200.xhp\" name=\"Bring Forward \">Bring Forward </link>"
-msgstr "<link href=\"text/shared/01/05250200.xhp\" name=\"Nâng lên \">Nâng lên </link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from top to bottom through the columns.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm từ trên xuống dưới qua các cột.</ahelp>"
-#: 05250200.xhp
+#: 02100000.xhp
msgctxt ""
-"05250200.xhp\n"
-"par_id3151264\n"
-"2\n"
+"02100000.xhp\n"
+"hd_id3153764\n"
+"194\n"
"help.text"
-msgid "<ahelp hid=\".\">Moves the selected object up one level, so that it is closer to top of the stacking order.</ahelp>"
-msgstr "<ahelp hid=\".\">Nâng đối tượng đã chọn lên một cấp, gần hơn đầu đống.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Extras</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bổ sung</caseinline></switchinline>"
-#: 05250200.xhp
+#: 02100000.xhp
msgctxt ""
-"05250200.xhp\n"
-"par_id3149495\n"
-"3\n"
+"02100000.xhp\n"
+"bm_id3152960\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
+msgid "<bookmark_value>searching; all sheets</bookmark_value> <bookmark_value>finding; in all sheets</bookmark_value> <bookmark_value>sheets; searching all</bookmark_value>"
+msgstr "<bookmark_value>tìm kiếm;qua mọi bảng</bookmark_value><bookmark_value>tìm; trong mọi bảng</bookmark_value><bookmark_value>bảng;tìm kiếm tất cả</bookmark_value>"
-#: 05250500.xhp
+#: 02100000.xhp
msgctxt ""
-"05250500.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"hd_id3152960\n"
+"196\n"
"help.text"
-msgid "To Foreground"
-msgstr "Tới cận cảnh"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in all sheets</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm trong mọi bảng</caseinline></switchinline>"
-#: 05250500.xhp
+#: 02100000.xhp
msgctxt ""
-"05250500.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"02100000.xhp\n"
+"par_id3145619\n"
+"197\n"
"help.text"
-msgid "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\" name=\"To Foreground\">To Foreground</link></variable>"
-msgstr "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\" name=\"Tới cận cảnh\">Tới cận cảnh</link></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm qua tất cả các trang tính của tập tin bảng tính hiện tại. </caseinline></switchinline>"
-#: 05250500.xhp
+#: 02100000.xhp
msgctxt ""
-"05250500.xhp\n"
-"par_id3151387\n"
-"2\n"
+"02100000.xhp\n"
+"par_id4089175\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetObjectToForeground\">Moves the selected object in front of text.</ahelp>"
-msgstr "<ahelp hid=\".uno:SetObjectToForeground\">Nâng đối tượng đã chọn lên bên trên văn bản.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches through all of the sheets in the current spreadsheet file.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm qua tất cả các trang tính trong tập tin bảng tính hiện tại.</ahelp>"
-#: 05250500.xhp
+#: 02100000.xhp
msgctxt ""
-"05250500.xhp\n"
-"par_id3147000\n"
-"6\n"
+"02100000.xhp\n"
+"par_id3151101\n"
+"188\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
+msgid "After you close the <emph>Find & Replace</emph> dialog, you can still search using the last search criteria that you entered, by pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
+msgstr "Một khi đóng hộp thoại <emph>Tìm và Thay thế</emph>, bạn vẫn còn có thể tìm kiếm dựa vào tiêu chuẩn tìm kiếm cuối cùng bạn đã đặt, bằng cách bấm tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
#: 02100001.xhp
msgctxt ""
@@ -10420,7 +7508,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "."
-msgstr "."
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -10438,7 +7526,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "^"
-msgstr "^"
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -10456,7 +7544,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "$"
-msgstr "$"
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -10482,7 +7570,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "*"
-msgstr "*"
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -10500,7 +7588,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "+"
-msgstr "+"
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -10527,7 +7615,7 @@ msgctxt ""
"199\n"
"help.text"
msgid "?"
-msgstr "?"
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -10545,7 +7633,7 @@ msgctxt ""
"158\n"
"help.text"
msgid "\\"
-msgstr "\\"
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -10812,7 +7900,7 @@ msgctxt ""
"186\n"
"help.text"
msgid "|"
-msgstr "|"
+msgstr ""
#: 02100001.xhp
msgctxt ""
@@ -11174,1355 +8262,6 @@ msgctxt ""
msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Calc\">Wiki page about regular expressions in Calc</link>"
msgstr ""
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Gradients"
-msgstr "Dải màu"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3145356\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradients\">Gradients</link>"
-msgstr "<link href=\"text/shared/01/05210300.xhp\" name=\"Dải màu\">Dải màu</link>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3154812\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AREA_GRADIENT\">Set the properties of a gradient, or save and load gradient lists.</ahelp>"
-msgstr "<ahelp hid=\"HID_AREA_GRADIENT\">Đặt các thuộc tính về dải màu, hoặc lưu và nạp danh sách các dải màu.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3148983\n"
-"3\n"
-"help.text"
-msgid "Type"
-msgstr "Kiểu"
-
-#: 05210300.xhp
-#, fuzzy
-msgctxt ""
-"05210300.xhp\n"
-"par_id3148440\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_GRADIENT_TYPES\">Select the gradient that you want to apply.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_GRADIENTS\">Chọn kiểu dải màu bạn muốn tạo hay áp dụng.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3149511\n"
-"5\n"
-"help.text"
-msgid "Center X"
-msgstr "Tâm X"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3153114\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_CENTER_X\">Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_CENTER_X\">Nhập khoảng dịch theo chiều ngang cho dải màu, mà 0% tương ứng với vị trí hiện thời theo chiều ngang của màu điểm cuối trong dải màu. Màu điểm cuối là màu được chọn trong hộp <emph>Đến</emph>.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3157896\n"
-"7\n"
-"help.text"
-msgid "Center Y"
-msgstr "Tâm Y"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3154751\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_CENTER_Y\">Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_CENTER_Y\">Nhập khoảng dịch theo chiều ngang cho dải màu, mà 0% tương ứng với vị trí hiện thời theo chiều dọc của màu điểm cuối trong dải màu. Màu điểm cuối là màu được chọn trong hộp <emph>Đến</emph>.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3151226\n"
-"9\n"
-"help.text"
-msgid "Angle"
-msgstr "Góc"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3149177\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_ANGLE\">Enter a rotation angle for the selected gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_ANGLE\">Nhập góc xoay cho dải màu đã chọn.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3149827\n"
-"11\n"
-"help.text"
-msgid "Border"
-msgstr "Viền"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3155941\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_BORDER\">Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_BORDER\">Nhập giá trị theo đó bạn muốn điều chỉnh vùng của màu điểm cuối trong dải màu. Màu điểm cuối là màu được chọn trong hộp <emph>Đến</emph>.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3152551\n"
-"35\n"
-"help.text"
-msgid "From"
-msgstr "Từ"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3153527\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_COLOR_FROM\">Select a color for the beginning point of the gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_COLOR_FROM\">Chọn màu cho điểm bắt đầu dải màu.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3149398\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_COLOR_FROM\">Enter the intensity for the color in the <emph>From </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_COLOR_FROM\">Nhập vào hộp <emph>Từ</emph> cường độ cho màu, mà 0% tương ứng với màu đen, và 100% tương ứng với màu đã chọn.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3149903\n"
-"36\n"
-"help.text"
-msgid "To"
-msgstr "Đến"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3159269\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_COLOR_TO\">Select a color for the endpoint of the gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_COLOR_TO\">Chọn màu cho điểm kết thúc dải màu.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3154142\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_COLOR_TO\">Enter the intensity for the color in the <emph>To </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_COLOR_TO\">Nhập vào hộp <emph>Đến</emph> cường độ cho màu, mà 0% tương ứng với màu đen, và 100% tương ứng với màu đã chọn.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3155830\n"
-"15\n"
-"help.text"
-msgid "Gradients"
-msgstr "Dải màu"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3157909\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_GRADIENTS\">Select the type of gradient that you want to apply or create.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_GRADIENTS\">Chọn kiểu dải màu bạn muốn tạo hay áp dụng.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3150669\n"
-"17\n"
-"help.text"
-msgid "Add"
-msgstr "Thêm"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3145416\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_GRADIENT:BTN_ADD\">Adds a custom gradient to the current list. Specify the properties of your gradient, and then click this button</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_GRADIENT:BTN_ADD\">Thêm vào danh sách hiện thời một dải màu riêng. Ghi rõ các thuộc tính về dải màu, sau đó nhấn vào nút này.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3150772\n"
-"19\n"
-"help.text"
-msgid "Modify"
-msgstr "Sửa"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3147573\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_GRADIENT:BTN_MODIFY\">Applies the current gradient properties to the selected gradient. If you want, you can save the gradient under a different name.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_GRADIENT:BTN_MODIFY\">Áp dụng cho dải màu đã chọn các thuộc tính dải màu hiện thời. Bạn cũng có thể lưu lại dải màu dưới tên khác.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3155341\n"
-"31\n"
-"help.text"
-msgid "Load Gradients List"
-msgstr "Nạp danh sách dải màu"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3145085\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_GRADIENT:BTN_LOAD\">Load a different list of gradients.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_GRADIENT:BTN_LOAD\">Nạp một danh sách dải màu khác.</ahelp>"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"hd_id3148943\n"
-"33\n"
-"help.text"
-msgid "Save Gradients List"
-msgstr "Lưu danh sách dải màu"
-
-#: 05210300.xhp
-msgctxt ""
-"05210300.xhp\n"
-"par_id3161459\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_GRADIENT:BTN_SAVE\">Saves the current list of gradients, so that you can load it later.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_GRADIENT:BTN_SAVE\">Lưu lại danh sách dải màu hiện thời, để nạp lại sau.</ahelp>"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Alignment (Text Objects)"
-msgstr "Chỉnh canh (Đối tượng Văn bản)"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"bm_id3152942\n"
-"help.text"
-msgid "<bookmark_value>aligning; text objects</bookmark_value><bookmark_value>text objects; alignment</bookmark_value>"
-msgstr "<bookmark_value>canh lề; đối tượng văn bản</bookmark_value><bookmark_value>đối tượng văn bản; chỉnh canh</bookmark_value>"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"hd_id3152942\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05080000.xhp\" name=\"Alignment (Text Objects)\">Alignment (Text Objects)</link>"
-msgstr "<link href=\"text/shared/01/05080000.xhp\" name=\"Chỉnh canh (Đối tượng Văn bản)\">Chỉnh canh (Đối tượng Văn bản)</link>"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"par_id3150278\n"
-"2\n"
-"help.text"
-msgid "Set the alignment options for the current selection."
-msgstr "Đặt các tùy chọn chỉnh canh cho vùng chọn hiện thời."
-
-#: 05250300.xhp
-msgctxt ""
-"05250300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Send Backward"
-msgstr "Hạ thấp"
-
-#: 05250300.xhp
-msgctxt ""
-"05250300.xhp\n"
-"hd_id3150146\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250300.xhp\" name=\"Send Backward\">Send Backward</link>"
-msgstr "<link href=\"text/shared/01/05250300.xhp\" name=\"Hạ thấp\">Hạ thấp</link>"
-
-#: 05250300.xhp
-msgctxt ""
-"05250300.xhp\n"
-"par_id3150794\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Moves the selected object down one level, so that it is closer to the bottom of the stacking order.</ahelp>"
-msgstr "<ahelp hid=\".\">Hạ thấp đối tượng đã chọn xuống một cấp, gần hơn cuối đống.</ahelp>"
-
-#: 05250300.xhp
-msgctxt ""
-"05250300.xhp\n"
-"par_id3150445\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"tit\n"
-"help.text"
-msgid "List"
-msgstr "Danh sách"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3159242\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02230401.xhp\" name=\"List\">List</link>"
-msgstr "<link href=\"text/shared/01/02230401.xhp\" name=\"Danh sách\">Danh sách</link>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3154894\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PAGE\">Accept or reject individual changes.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_VIEW_PAGE\">Chấp nhận hay từ chối mỗi thay đổi.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3149511\n"
-"26\n"
-"help.text"
-msgid "The <emph>List </emph>tab displays all of the changes that were recorded in the current document. If you want to filter this list, click the <emph>Filter </emph>tab, and then select your <link href=\"text/shared/01/02230402.xhp\" name=\"filter criteria\">filter criteria</link>.<switchinline select=\"appl\"><caseinline select=\"WRITER\"> If the list contains nested changes, the dependencies are shown regardless of the filter. </caseinline></switchinline>"
-msgstr "Thẻ <emph>Danh sách</emph> thì hiển thị các thay đổi đã được ghi nhớ trong tài liệu hiện tại. Muốn lọc danh sách này thì nhấn vào thẻ <emph>Lọc</emph>, sau đó chọn các <link href=\"text/shared/01/02230402.xhp\" name=\"tiêu chuẩn lọc\">tiêu chuẩn lọc</link>.<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nếu danh sách chứa các thay đổi lồng nhau, những quan hệ phụ thuộc được hiển thị bất chấp hành động lọc.</caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3153114\n"
-"27\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nested changes occur where changes made by different authors overlap. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay đổi lồng nhau xảy ra khi các tác giả khác nhau thực hiện các thay đổi chồng chéo nhau.</caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3155552\n"
-"29\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Click the plus sign beside an entry in the list to view all of the changes that were recorded for a cell. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nhấn vào dấu cộng bên cạnh mục nhập trong danh sách để xem các thay đổi đã thu cho ô.</caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3154824\n"
-"31\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If one of the nested changes for a cell matches a filter criterion, all of the changes for the cell are displayed. When you filter the change list, the entries in the list appear in different colors according to the following table: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nếu một của những thay đổi lồng nhau vẫn còn tương ứng với một tiêu chuẩn lọc, chương trình hiển thị tất cả các thay đổi của ô đó. Hành động lọc danh sách thay đổi cũng hiển thị các mục nhập bằng màu sắc khác hau, tùy theo bảng này:</caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3156426\n"
-"32\n"
-"help.text"
-msgid "Color"
-msgstr "Màu"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3145382\n"
-"33\n"
-"help.text"
-msgid "Meaning"
-msgstr "Nghĩa"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3150355\n"
-"34\n"
-"help.text"
-msgid "black"
-msgstr "đen"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3149416\n"
-"35\n"
-"help.text"
-msgid "The entry matches a filter criterion."
-msgstr "Mục nhập tương ứng với một tiêu chuẩn lọc."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3145317\n"
-"36\n"
-"help.text"
-msgid "blue"
-msgstr "xanh"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3156327\n"
-"37\n"
-"help.text"
-msgid "One or more subentries matches a filter criterion."
-msgstr "Một hay nhiều mục nhập phụ tương ứng với một tiêu chuẩn lọc."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3156156\n"
-"38\n"
-"help.text"
-msgid "gray"
-msgstr "xám"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3149192\n"
-"39\n"
-"help.text"
-msgid "The subentry does not match a filter criterion."
-msgstr "Mục nhập phụ không tương ứng với tiêu chuẩn lọc."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3155421\n"
-"40\n"
-"help.text"
-msgid "green"
-msgstr "lục"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3149237\n"
-"41\n"
-"help.text"
-msgid "The subentry matches a filter criterion."
-msgstr "Mục nhập phụ tương ứng với một tiêu chuẩn lọc."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3153146\n"
-"3\n"
-"help.text"
-msgid "Selection field"
-msgstr "Trường chọn"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3161459\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_DG_VIEW\">Lists the changes that were recorded in the document. When you select an entry in the list, the change is highlighted in the document. To sort the list, click a column heading. </ahelp> Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click to select multiple entries in the list."
-msgstr ""
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3152812\n"
-"6\n"
-"help.text"
-msgid "To edit the comment for an entry in the list, right-click the entry, and then choose<emph> Edit - Comment</emph>."
-msgstr "Để chỉnh sửa chú thích về mục nhập trong danh sách, nhấn-phải vào mục, sau đó chọn lệnh <emph>Sửa > Chú thích</emph>."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3153524\n"
-"7\n"
-"help.text"
-msgid "After you accept or reject a change, the entries of the list are re-ordered according to \"Accepted\" or \"Rejected\" status."
-msgstr "Một khi chấp nhận hay từ chối thay đổi thì các mục nhập được sắp xếp lại trong danh sách, tùy theo trạng thái « Đã chấp nhận » hay « Bị từ chối »."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3153379\n"
-"8\n"
-"help.text"
-msgid "Action"
-msgstr "Hành động"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3153361\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SORT_ACTION\">Lists the changes that were made in the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SORT_ACTION\">Liệt kê các thay đổi đã được làm trong tài liệu.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3152920\n"
-"10\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Position </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vị trí</caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3149202\n"
-"11\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lists the cells with contents that were changed. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Liệt kê các ô có nội dung đã thay đổi.</caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3148452\n"
-"12\n"
-"help.text"
-msgid "Author"
-msgstr "Tác giả"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3153178\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SORT_AUTHOR\">Lists the user who made the change.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SORT_AUTHOR\">Hiển thị người dùng đã làm thay đổi đó.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3144762\n"
-"14\n"
-"help.text"
-msgid "Date"
-msgstr "Ngày"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3156422\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SORT_DATE\">Lists the date and time that the change was made.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SORT_DATE\">Hiển thị ngày tháng và thời gian làm thay đổi.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3157962\n"
-"16\n"
-"help.text"
-msgid "Comment"
-msgstr "Chú thích"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3150868\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_SORT_COMMENT\">Lists the comments that are attached to the change.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SORT_COMMENT\">Liệt kê các chú thích đính kèm thay đổi.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3154218\n"
-"18\n"
-"help.text"
-msgid "Accept"
-msgstr "Chấp nhận"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3152935\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_ACCEPT\">Accepts the selected change and removes the highlighting from the change in the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_VIEW_PB_ACCEPT\">Đồng ý với thay đổi đã chọn, và gỡ bỏ sự tô sáng khỏi thay đổi trong tài liệu.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3156543\n"
-"22\n"
-"help.text"
-msgid "Reject"
-msgstr "Từ chối"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3150441\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_REJECT\">Rejects the selected change and removes the highlighting from the change in the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_VIEW_PB_REJECT\">Không đồng ý với thay đổi đã chọn; cũng gỡ bỏ sự tô sáng khỏi thay đổi trong tài liệu.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3155429\n"
-"20\n"
-"help.text"
-msgid "Accept All"
-msgstr "Chấp nhận tất cả"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3150012\n"
-"21\n"
-"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_ACCEPTALL\">Accepts all of the changes and removes the highlighting from the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_VIEW_PB_ACCEPTALL\">Đồng ý với tất cả các thay đổi, cũng gỡ bỏ sự tô sáng khỏi tài liệu.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3153742\n"
-"24\n"
-"help.text"
-msgid "Reject All"
-msgstr "Từ chối tất cả"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3151353\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_REJECTALL\">Rejects all of the changes and removes the highlighting from the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_VIEW_PB_REJECTALL\">Không đồng ý với tất cả các thay đổi, cũng gỡ bỏ sự tô sáng khỏi tài liệu.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3147442\n"
-"28\n"
-"help.text"
-msgid "To reverse the acceptance or rejection of a change, choose <emph>Undo </emph>on the <emph>Edit </emph>menu."
-msgstr "Để hủy bước chấp nhận hay từ chối một thay đổi nào đó, chọn lệnh <emph>Hủy bước</emph> trong trình đơn <emph>Sửa</emph>."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3159196\n"
-"30\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Undo </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hủy bước</caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3151116\n"
-"42\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Format - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo </emph>button appears in the dialog.<ahelp hid=\"HID_REDLINING_VIEW_PB_UNDO\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nếu bạn đã làm thay đổi bằng cách chọn lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng và sửa thay đổi</emph>, nút <emph>Hủy bước</emph> sẽ cũng xuất hiện trong hộp thoại.<ahelp hid=\"HID_REDLINING_VIEW_PB_UNDO\"> Hoàn tác chấp nhận hay từ chối mới làm.</ahelp></caseinline></switchinline>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3152576\n"
-"43\n"
-"help.text"
-msgid "There are additional commands in the <emph>context menu</emph> of the list:"
-msgstr "Có một số lệnh thêm trong <emph>trình đơn ngữ cảnh</emph> của danh sách:"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3146975\n"
-"44\n"
-"help.text"
-msgid "Edit comment"
-msgstr "Sửa chú thích"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3153210\n"
-"45\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_CHANGES_COMMENT\">Edit the comment for the selected change.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_CHANGES_COMMENT\">Chỉnh sửa chú thích về thay đổi đã chọn.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3153281\n"
-"46\n"
-"help.text"
-msgid "Sort"
-msgstr "Sắp xếp"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3149486\n"
-"47\n"
-"help.text"
-msgid "Sorts the list according to the column headings."
-msgstr "Sắp xếp danh sách theo đầu cột."
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3155316\n"
-"48\n"
-"help.text"
-msgid "Action"
-msgstr "Hành động"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3151280\n"
-"49\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SORT_ACTION\">Sorts the list according to the type of change.</ahelp>"
-msgstr "<ahelp hid=\"HID_SORT_ACTION\">Sắp xếp danh sách theo kiểu thay đổi.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3150116\n"
-"50\n"
-"help.text"
-msgid "Author"
-msgstr "Tác giả"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3149960\n"
-"51\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SORT_AUTHOR\">Sorts the list according to the Author.</ahelp>"
-msgstr "<ahelp hid=\"HID_SORT_AUTHOR\">Sắp xếp danh sách theo Tác giả.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3148775\n"
-"52\n"
-"help.text"
-msgid "Date"
-msgstr "Ngày"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3153223\n"
-"53\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SORT_DATE\">Sorts the list according to the date and time.</ahelp>"
-msgstr "<ahelp hid=\"HID_SORT_DATE\">Sắp xếp danh sách theo ngày/giờ.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3150594\n"
-"54\n"
-"help.text"
-msgid "Comment"
-msgstr "Chú thích"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3145595\n"
-"55\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SORT_COMMENT\">Sorts the list according to the comments that are attached to the changes.</ahelp>"
-msgstr "<ahelp hid=\"HID_SORT_COMMENT\">Sắp xếp danh sách theo chú thích đính kèm thay đổi.</ahelp>"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"hd_id3153157\n"
-"56\n"
-"help.text"
-msgid "Document Position"
-msgstr "Vị trí Tài liệu"
-
-#: 02230401.xhp
-msgctxt ""
-"02230401.xhp\n"
-"par_id3157976\n"
-"57\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SORT_POSITION\">Sorts the list in a descending order according to the position of the changes in the document. This is the default sorting method.</ahelp>"
-msgstr "<ahelp hid=\"HID_SORT_POSITION\">Sắp xếp danh sách theo thứ tự giảm dần, theo vị trí của thay đổi trong tài liệu. Đây là phương pháp sắp xếp mặc định.</ahelp>"
-
-#: 05200000.xhp
-msgctxt ""
-"05200000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line"
-msgstr "Đường"
-
-#: 05200000.xhp
-msgctxt ""
-"05200000.xhp\n"
-"hd_id3154350\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Đường\">Đường</link>"
-
-#: 05200000.xhp
-msgctxt ""
-"05200000.xhp\n"
-"par_id3147588\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"linietext\"><ahelp hid=\".uno:FormatLine\">Sets the formatting options for the selected line.</ahelp></variable>"
-msgstr "<variable id=\"linietext\"><ahelp hid=\".uno:FormatLine\">Đặt các tùy chọn định dạng cho đường đã chọn.</ahelp></variable>"
-
-#: 05110100.xhp
-msgctxt ""
-"05110100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Bold"
-msgstr "Đậm"
-
-#: 05110100.xhp
-msgctxt ""
-"05110100.xhp\n"
-"bm_id3150278\n"
-"help.text"
-msgid "<bookmark_value>text; bold</bookmark_value><bookmark_value>bold; text</bookmark_value><bookmark_value>characters; bold</bookmark_value>"
-msgstr "<bookmark_value>văn bản; in đậm</bookmark_value><bookmark_value>in đậm; văn bản</bookmark_value><bookmark_value>ký tự; in đậm</bookmark_value>"
-
-#: 05110100.xhp
-msgctxt ""
-"05110100.xhp\n"
-"hd_id3150278\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05110100.xhp\" name=\"Bold\">Bold</link>"
-msgstr "<link href=\"text/shared/01/05110100.xhp\" name=\"Đậm\">Đậm</link>"
-
-#: 05110100.xhp
-msgctxt ""
-"05110100.xhp\n"
-"par_id3153089\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Bold\">Makes the selected text bold. If the cursor is in a word, the entire word is made bold. If the selection or word is already bold, the formatting is removed.</ahelp>"
-msgstr "<ahelp hid=\".uno:Bold\">Chuyển đổi đoạn văn đã chọn sang chữ in đậm. Nếu con trỏ nằm bên trong từ, toàn từ trở thành đậm. Nếu vùng chọn hay từ đã chữ đậm, hành động đây gỡ bỏ định dạng in đậm.</ahelp>"
-
-#: 05110100.xhp
-msgctxt ""
-"05110100.xhp\n"
-"par_id3153255\n"
-"3\n"
-"help.text"
-msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
-msgstr "Nếu con trỏ không phải bên trong từ, và chưa chọn văn bản, kiểu dáng phông được áp dụng cho chuỗi bạn gõ vào."
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Change Icon"
-msgstr "Đổi biểu tượng"
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "Change Icon"
-msgstr "Đổi biểu tượng"
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"par_idN10547\n"
-"help.text"
-msgid "Icons"
-msgstr "Biểu tượng"
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "Displays the available icons in %PRODUCTNAME. To replace the icon that you selected in the <link href=\"text/shared/01/06140400.xhp\">Customize</link> dialog, click an icon, then click the <emph>OK</emph> button."
-msgstr "Hiển thị các biểu tượng sẵn sàng trong %PRODUCTNAME. Để thay thế biểu tượng bạn đã chọn trong hộp thoại <link href=\"text/shared/01/06140400.xhp\">Đặc chế</link>, nhấn vào một biểu tượng nào đó, sau đó nhấn vào nút <emph>OK</emph>."
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "Import"
-msgstr "Nhập"
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"par_idN10560\n"
-"help.text"
-msgid "<ahelp hid=\".\">Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm các biểu tượng mới vào danh sách các biểu tượng. Bạn sẽ thấy hộp thoại mở tập tin mà nhập khẩu các biểu tượng đã chọn vào thư mục biểu tượng nội bộ của %PRODUCTNAME.</ahelp>"
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"par_idN10575\n"
-"help.text"
-msgid "You can only import icons that are in the PNG file format and that are 16x16 or 26x26 pixels in size."
-msgstr "Chỉ có khả năng nhập khẩu biểu tượng theo định dạng tập tin PNG mà có kích cỡ hoặc 16×16 hoặc 26×26 điểm ảnh."
-
-#: 06140402.xhp
-msgctxt ""
-"06140402.xhp\n"
-"par_id8224433\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to remove the selected icon from the list. Only user-defined icons can be removed.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn vào để gỡ bỏ biểu tượng đã chọn khỏi danh sách. Chỉ có thể gỡ bỏ các biểu tượng tự xác định (không phải biểu tượng mặc định).</ahelp>"
-
-#: 05260400.xhp
-msgctxt ""
-"05260400.xhp\n"
-"tit\n"
-"help.text"
-msgid "To Cell"
-msgstr "Vào ô"
-
-#: 05260400.xhp
-msgctxt ""
-"05260400.xhp\n"
-"hd_id3147212\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05260400.xhp\" name=\"To Cell\">To Cell</link>"
-msgstr "<link href=\"text/shared/01/05260400.xhp\" name=\"Vào ô\">Vào ô</link>"
-
-#: 05260400.xhp
-msgctxt ""
-"05260400.xhp\n"
-"par_id3150794\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToCell\" visibility=\"visible\">Anchors the selected item to a cell.</ahelp> The anchor icon is displayed in the upper left corner of the cell."
-msgstr "<ahelp hid=\".uno:SetAnchorToCell\" visibility=\"visible\">Thả mục đã chọn vào ô bảng.</ahelp> Biểu tượng neo được hiển thị ở góc trên bên trái ô."
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Business Cards"
-msgstr "Danh thiếp"
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"hd_id3152414\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01010302.xhp\" name=\"Business Cards\">Business Cards</link>"
-msgstr "<link href=\"text/shared/01/01010302.xhp\" name=\"Danh thiếp\">Danh thiếp</link>"
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"par_id3153882\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"\" visibility=\"visible\">Define the appearance of your business cards.</ahelp>"
-msgstr "<ahelp hid=\"\" visibility=\"visible\">Xác định hình thức của danh thiếp của bạn.</ahelp>"
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"hd_id3146873\n"
-"3\n"
-"help.text"
-msgid "Content"
-msgstr "Nội dung"
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"par_id3147527\n"
-"4\n"
-"help.text"
-msgid "Select a design layout for your business card."
-msgstr "Chọn một bố trí thiết kế cho danh thiếp."
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"par_id3158442\n"
-"5\n"
-"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"HID_BUSINESS_CARD_CONTENT\">Select a business card category in <emph>AutoText - Section</emph> box, and then click a layout in the <emph>Content </emph>list.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"HID_BUSINESS_CARD_CONTENT\">Chọn một phân loại danh thiếp trong hộp <emph>Tốc ký > Phần</emph>, sau đó nhấn vào một bố trí trong danh sách <emph>Nội dung</emph>.</ahelp>"
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"hd_id3148668\n"
-"6\n"
-"help.text"
-msgid "AutoText - Section"
-msgstr "Tốc ký > Phần"
-
-#: 01010302.xhp
-msgctxt ""
-"01010302.xhp\n"
-"par_id3154894\n"
-"7\n"
-"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SW_LISTBOX_TP_VISITING_CARDS_LB_AUTO_TEXT_GROUP\">Select a business card category, and then click a layout in the <emph>Content </emph>list.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SW_LISTBOX_TP_VISITING_CARDS_LB_AUTO_TEXT_GROUP\">Chọn một phân loại danh thiếp, sau đó nhấn vào một bố tri trong danh sách <emph>Nội dung</emph>.</ahelp>"
-
-#: 06140000.xhp
-msgctxt ""
-"06140000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Customize"
-msgstr "Đặc chế"
-
-#: 06140000.xhp
-msgctxt ""
-"06140000.xhp\n"
-"hd_id3146946\n"
-"1\n"
-"help.text"
-msgid "Customize"
-msgstr "Đặc chế"
-
-#: 06140000.xhp
-msgctxt ""
-"06140000.xhp\n"
-"par_id3155069\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Customizes $[officename] menus, shortcut keys, toolbars, and macro assignments to events.</ahelp></variable>"
-msgstr "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Tùy chỉnh các trình đơn, phím tắt, thanh công cụ và sự gán vĩ lệnh cho dữ kiện của $[officename].</ahelp></variable>"
-
-#: 06140000.xhp
-msgctxt ""
-"06140000.xhp\n"
-"par_id3152821\n"
-"7\n"
-"help.text"
-msgid "You can customize shortcut keys and macro assignments for the current application, or for all $[officename] applications."
-msgstr "Bạn có khả năng tùy chỉnh các phím tắt và sự gán vĩ lệnh chỉ cho ứng dụng hiện tại (v.d. Calc), hoặc cho tất cả các ứng dụng $[officename] (Calc, Writer, Base v.v.)."
-
-#: 06140000.xhp
-msgctxt ""
-"06140000.xhp\n"
-"par_id3153303\n"
-"4\n"
-"help.text"
-msgid "You can also save and load individual menu, shortcut key, and toolbar custom settings."
-msgstr "Bạn cũng có thể lưu và nạp thiết lập riêng cho mỗi trình đơn, phím tắt và thanh công cụ."
-
-#: 05020100.xhp
-#, fuzzy
-msgctxt ""
-"05020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Font"
-msgstr "Phông"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"bm_id3154812\n"
-"help.text"
-msgid "<bookmark_value>formats; fonts</bookmark_value><bookmark_value>characters;fonts and formats</bookmark_value><bookmark_value>fonts; formats</bookmark_value><bookmark_value>text; fonts and formats</bookmark_value><bookmark_value>typefaces; formats</bookmark_value><bookmark_value>font sizes; relative changes</bookmark_value><bookmark_value>languages; spellchecking and formatting</bookmark_value><bookmark_value>characters; enabling CTL and Asian characters</bookmark_value>"
-msgstr "<bookmark_value>định dạng; phông</bookmark_value><bookmark_value>ký tự;phông và định dạng</bookmark_value><bookmark_value>phông; định dạng</bookmark_value><bookmark_value>văn bản; phông và định dạng</bookmark_value><bookmark_value>mặt chữ; định dạng</bookmark_value><bookmark_value>kích cỡ phông; thay đổi tương đối</bookmark_value><bookmark_value>ngôn ngữ; kiểm tra chính tả và định dạng</bookmark_value><bookmark_value>ký tự; hiệu lực CTL và ký tự Châu Á</bookmark_value>"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3154812\n"
-"1\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Characters\">Characters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link></defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link></defaultinline></switchinline>"
-
-#: 05020100.xhp
-#, fuzzy
-msgctxt ""
-"05020100.xhp\n"
-"par_id3158405\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zn\"><ahelp hid=\"cui/ui/charnamepage/CharNamePage\">Specify the formatting and the font that you want to apply.</ahelp></variable>"
-msgstr "<variable id=\"zn\"><ahelp hid=\"HID_SVXPAGE_CHAR_NAME\">Ghi rõ định dạng và phông bạ muốn áp dụng.</ahelp></variable>"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155616\n"
-"3\n"
-"help.text"
-msgid "The changes are applied to the current selection, to the entire word that contains the cursor, or to the new text that you type."
-msgstr "Các thay đổi được áp dụng cho vùng chọn hiện tại, cho nguyên từ chứa con trỏ, hay cho chuỗi mới bạn gõ vào."
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155552\n"
-"52\n"
-"help.text"
-msgid "Depending on your language settings, you can change the formatting for the following font types:"
-msgstr "Phụ thuộc vào thiết lập ngôn ngữ, bạn có thể thay đổi định dạng cho những kiểu phông này:"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3147291\n"
-"53\n"
-"help.text"
-msgid "Western text font - Latin character sets."
-msgstr "Phông văn bản Phương Tây — bộ ký tự La-tinh"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155391\n"
-"54\n"
-"help.text"
-msgid "Asian text font - Chinese, Japanese, or Korean character sets"
-msgstr "Phông văn bản Châu Á — bộ ký tự tiếng Trung/Nhật/Hàn"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3147576\n"
-"57\n"
-"help.text"
-msgid "Complex text layout font - right-to-left text direction"
-msgstr "Phông bố trí văn bản phức tạp — hướng văn bản từ bên trái qua bên phải"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153663\n"
-"58\n"
-"help.text"
-msgid "To enable support for complex text layout and Asian character sets, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>, and then select the <emph>Enabled </emph>box in the corresponding area."
-msgstr ""
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3148686\n"
-"4\n"
-"help.text"
-msgid "Font"
-msgstr "Phông"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3148491\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlfontnamelb\">Enter the name of an installed font that you want to use, or select a font from the list.</ahelp>"
-msgstr ""
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3143271\n"
-"10\n"
-"help.text"
-msgid "Typeface"
-msgstr "Mặt chữ"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155922\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlstylelb\">Select the formatting that you want to apply.</ahelp>"
-msgstr ""
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3151054\n"
-"16\n"
-"help.text"
-msgid "Size"
-msgstr "Kích cỡ"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3150359\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values.</ahelp>"
-msgstr ""
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3148797\n"
-"45\n"
-"help.text"
-msgid "If you are creating a Style that is based on another Style, you can enter a percentage value or a point value (for example, -2pt or +5pt)."
-msgstr "Nếu bạn đang tạo một Kiểu dáng dựa vào Kiểu dáng khác, bạn cũng có thể nhập giá trị phần trăm hay giá trị điểm (v.d. -2pt hay +5pt)."
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3151176\n"
-"38\n"
-"help.text"
-msgid "Language"
-msgstr "Ngôn ngữ"
-
-#: 05020100.xhp
-#, fuzzy
-msgctxt ""
-"05020100.xhp\n"
-"par_id3157961\n"
-"39\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_NAME_LB_CTL_LANG\">Đặt ngôn ngữ mà hàm kiểm tra chính tả dùng cho đoạn đã chọn của văn bản bạn gõ vào. Những mô-đun ngôn ngữ sẵn sàng thì có dấu kiểm phía trước.</ahelp>"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153770\n"
-"59\n"
-"help.text"
-msgid "You can only change the language setting for cells (choose <emph>Format - Cells – Numbers</emph>)."
-msgstr "Bạn chỉ có khả năng thay đổi thiết lập ngôn ngữ cho ô bảng (chọn lệnh <emph>Định dạng > Ô > Số</emph>)."
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3145364\n"
-"60\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Asian languages support\">Asian languages support</link>"
-msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Hỗ trợ ngôn ngữ Châu Á\">Hỗ trợ ngôn ngữ Châu Á</link>"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3147213\n"
-"61\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Complex text layout support\">Complex text layout support</link>"
-msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Hỗ trợ bố trí văn bản phức tạp\">Hỗ trợ bố trí văn bản phức tạp</link>"
-
-#: 05110500.xhp
-msgctxt ""
-"05110500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shadows"
-msgstr "Bóng"
-
-#: 05110500.xhp
-msgctxt ""
-"05110500.xhp\n"
-"bm_id3154545\n"
-"help.text"
-msgid "<bookmark_value>text; shadowed</bookmark_value><bookmark_value>characters; shadowed</bookmark_value><bookmark_value>shadows;characters, using context menu</bookmark_value>"
-msgstr "<bookmark_value>văn bản; đổ bóng</bookmark_value><bookmark_value>ký tự; đổ bóng</bookmark_value><bookmark_value>bóng;ký tự, dùng trình đơn ngữ cảnh</bookmark_value>"
-
-#: 05110500.xhp
-msgctxt ""
-"05110500.xhp\n"
-"hd_id3154545\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05110500.xhp\" name=\"Shadows\">Shadows</link>"
-msgstr "<link href=\"text/shared/01/05110500.xhp\" name=\"Bóng\">Bóng</link>"
-
-#: 05110500.xhp
-msgctxt ""
-"05110500.xhp\n"
-"par_id3151299\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Shadowed\">Adds a shadow to the selected text, or if the cursor is in a word, to the entire word.</ahelp>"
-msgstr "<ahelp hid=\".uno:Shadowed\">Thêm bóng đổ vào chuỗi đã chọn, hoặc nếu con trỏ bên trong từ, vào toàn từ.</ahelp>"
-
#: 02100100.xhp
msgctxt ""
"02100100.xhp\n"
@@ -12554,8 +8293,8 @@ msgctxt ""
"par_id3146856\n"
"53\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_SIMILARITY\">Find terms that are similar to the <emph>Search for </emph>text. Select this checkbox, and then click the <emph>...</emph> button to define the similarity options.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_SIMILARITY\">Tìm các mục tương đương với chuỗi trong hộp <emph>Tìm kiếm </emph>. Bật tùy chọn này, sau đó bấm cái nút <emph>...</emph> để xác định các tùy chọn về tính tương đương.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Find terms that are similar to the <emph>Search for </emph>text. Select this checkbox, and then click the <emph>...</emph> button to define the similarity options.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Tìm các mục tương đương với chuỗi trong hộp <emph>Tìm kiếm </emph>. Bật tùy chọn này, sau đó bấm cái nút <emph>...</emph> để xác định các tùy chọn về tính tương đương.</ahelp>"
#: 02100100.xhp
msgctxt ""
@@ -12581,8 +8320,8 @@ msgctxt ""
"par_id3145629\n"
"55\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_SIMILARITY\">Set the options for the similarity search.</ahelp>"
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_SIMILARITY\">Đặt các tùy chọn về chức năng tìm tương đương.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\">Set the options for the similarity search.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\">Đặt các tùy chọn về chức năng tìm tương đương.</ahelp>"
#: 02100100.xhp
msgctxt ""
@@ -12674,1439 +8413,1688 @@ msgctxt ""
msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCHSIMILARITY_CB_RELAX\">Searches for a term that matches any combination of the similarity search settings.</ahelp>"
msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCHSIMILARITY_CB_RELAX\">Tìm từ tương ứng với bất cứ tổ hợp nào của thiết lập tìm tưng đương.</ahelp>"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
+"02100200.xhp\n"
"tit\n"
"help.text"
-msgid "Footer"
-msgstr "Chân trang"
+msgid "Attributes"
+msgstr "Thuộc tính"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3155620\n"
+"02100200.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040400.xhp\" name=\"Footer\">Footer</link>"
-msgstr "<link href=\"text/shared/01/05040400.xhp\" name=\"Chân trang\">Chân trang</link>"
+msgid "Attributes"
+msgstr "Thuộc tính"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3156553\n"
+"02100200.xhp\n"
+"par_id3153331\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_FOOTER\">Adds a footer to the current page style. A footer is an area in the bottom page margin, where you can add text or graphics.</ahelp>"
-msgstr "<ahelp hid=\"HID_FORMAT_FOOTER\">Thêm vào kiểu dáng trang hiện thời một phần chân trang. Chân trang là một vùng trong lề bên dưới của trang, vào đó bạn có thể thêm văn bản hay ảnh.</ahelp>"
+msgid "<variable id=\"attributetext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE\">Choose the text attributes that you want to search for. For example, if you search for the <emph>Font</emph> attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found. </ahelp></variable>"
+msgstr "<variable id=\"attributetext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE\">Chọn các thuộc tính văn bản bạn muốn tìm. Chẳng hạn, nếu bạn tìm kiếm thuộc tính <emph>Phông</emph>, hàm sẽ tìm mọi đoạn văn không dùng phông mặc định. Nó tìm mọi đoạn văn có thuộc tính phông đã đặt trực tiếp, và mọi đoạn văn có kiểu dáng chuyển đổi thuộc tính phông. </ahelp></variable>"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3145136\n"
-"32\n"
+"02100200.xhp\n"
+"hd_id3150944\n"
+"6\n"
"help.text"
-msgid "If you want, you can also add borders or a background fill to a footer."
-msgstr "Bạn cũng có thể thêm vào phần chân trang các viền hay nền tô đầy."
+msgid "Options"
+msgstr "Tùy chọn"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3155339\n"
-"31\n"
+"02100200.xhp\n"
+"par_id3151384\n"
+"7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để chèn vào tài liệu hiện tại một phần chân trang, bật tùy chọn <emph>Hiện chân trang</emph>, rồi nhấn vào nút <emph>OK</emph>. </caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_SEARCHATTR_CTL_ATTR\">Select the attributes that you want to search for.</ahelp>"
+msgstr "<ahelp hid=\"HID_SEARCHATTR_CTL_ATTR\">Chọn các thuộc tính bạn muốn tìm kiếm.</ahelp>"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3147209\n"
-"30\n"
+"02100200.xhp\n"
+"hd_id3149245\n"
+"56\n"
"help.text"
-msgid "If you want to extend a footer into the page margins, insert a frame into the footer."
-msgstr "Muốn kéo dài phần chân trang qua lề trang thì chèn khung vào chân trang."
+msgid "Keep with Next Paragraph"
+msgstr "Giữ với đoạn văn kế tiếp"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3150976\n"
-"28\n"
+"02100200.xhp\n"
+"par_id3154760\n"
+"57\n"
"help.text"
-msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
-msgstr "Để di chuyển nhanh dấu nhắc từ trong văn bản sang \"Đầu trang\" hay \"Cuối trang\", nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down. Nhấn nút đó một lần nữa để chuyển dấu nhắc về lại văn bản chính."
+msgid "Finds the <emph>Keep With Next Paragraph</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Giữ với đoạn văn kế tiếp</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3150504\n"
-"3\n"
+"02100200.xhp\n"
+"hd_id3145068\n"
+"40\n"
"help.text"
-msgid "Footer"
-msgstr "Chân trang"
+msgid "Split Paragraph"
+msgstr "Xẻ đoạn văn"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3149235\n"
-"4\n"
+"02100200.xhp\n"
+"par_id3147560\n"
+"41\n"
"help.text"
-msgid "Set the properties of the footer."
-msgstr "Đặt các thuộc tính về phần chân trang."
+msgid "Finds the <emph>Do not split paragraph</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Không xẻ đoạn văn</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154380\n"
-"6\n"
+"02100200.xhp\n"
+"hd_id3156435\n"
+"52\n"
"help.text"
-msgid "Footer on"
-msgstr "Hiện chân trang"
+msgid "Spacing"
+msgstr "Giãn cách"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3153348\n"
-"7\n"
+"02100200.xhp\n"
+"par_id3150866\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_TURNON\">Adds a footer to the current page style.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_TURNON\">Thêm vào kiểu dáng trang hiện thời một phần chân trang.</ahelp>"
+msgid "Finds the <emph>Spacing</emph> (top, bottom) attribute."
+msgstr "Tìm thuộc tính <emph>Giãn cách</emph> (bên trên/dưới)."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3145087\n"
-"20\n"
+"02100200.xhp\n"
+"hd_id3154071\n"
+"38\n"
"help.text"
-msgid "Same content left/right"
-msgstr "Cùng nội dung bên trái/phải"
+msgid "Alignment"
+msgstr "Canh lề"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3149575\n"
-"21\n"
+"02100200.xhp\n"
+"par_id3154365\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED\">Các trang lẻ và trang chẵn đều có cùng nội dung.<switchinline select=\"appl\"><caseinline select=\"CALC\"> Để gán phần chân trang khác nhau cho các trang lẻ và các trang chẵn, tắt tùy chọn này, sau đó nhấn vào nút <emph>Sửa</emph>. </caseinline></switchinline></ahelp>"
+msgid "Finds the <emph>Alignment</emph> (left, right, centered, justified) attribute."
+msgstr "Tìm thuộc tính <emph>Chỉnh canh</emph> (bên trái/phải, giữa, canh đều)."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154937\n"
-"21\n"
+"02100200.xhp\n"
+"hd_id3145171\n"
+"8\n"
"help.text"
-msgid "Same content on first page"
-msgstr ""
+msgid "Effects"
+msgstr "Hiệu ứng"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154939\n"
+"02100200.xhp\n"
+"par_id3149203\n"
+"9\n"
+"help.text"
+msgid "Finds characters that use the <emph>Capital, Lowercase, Small capitals, </emph>and <emph>Title </emph>character attributes."
+msgstr "Tìm các ký tự dùng thuộc tính ký tự kiểu <emph>Chữ hoa, Chữ thường, Chữ hoa nhỏ</emph> và <emph>Tựa đề</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3148676\n"
+"60\n"
+"help.text"
+msgid "Blinking"
+msgstr "Nhấp nháy"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3153193\n"
+"61\n"
+"help.text"
+msgid "Finds characters use the <emph>Blinking</emph> attribute."
+msgstr "Tìm các ký tự dùng thuộc tính <emph>Nhấp nháy</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3153968\n"
+"14\n"
+"help.text"
+msgid "Strikethrough"
+msgstr "Gạch đè"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3145746\n"
+"15\n"
+"help.text"
+msgid "Finds characters that use the <emph>Strikethrough</emph> (single or double) attribute."
+msgstr "Tìm các ký tự dùng thuộc tính <emph>Gạch đè</emph> (đơn, đôi)."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3156422\n"
+"50\n"
+"help.text"
+msgid "Indent"
+msgstr "Thụt lề"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3150449\n"
+"51\n"
+"help.text"
+msgid "Finds the <emph>Indent</emph> (from left, from right, first line) attribute."
+msgstr "Tìm thuộc tính <emph>Thụt lề</emph> (từ bên trái/phải, dòng đầu)."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3145203\n"
+"44\n"
+"help.text"
+msgid "Widows"
+msgstr "Thiếu"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3153105\n"
+"45\n"
+"help.text"
+msgid "Finds the <emph>Widow Control</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Điều khiển dòng thiếu</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3149560\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED_FIRST\">First and even/odd pages share the same content.</ahelp>"
-msgstr ""
+msgid "Kerning"
+msgstr "Định chỗ"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3147264\n"
+"02100200.xhp\n"
+"par_id3155132\n"
+"23\n"
+"help.text"
+msgid "Finds <emph>Spacing</emph> (standard, expanded, condensed) attributes and Pair Kerning."
+msgstr "Tìm thuộc tính <emph>Giãn cách</emph> (chuẩn, giãn ra, co lại) và thuộc tính Định chỗ cặp."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3145261\n"
+"12\n"
+"help.text"
+msgid "Outline"
+msgstr "Nét ngoài"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3153143\n"
+"13\n"
+"help.text"
+msgid "Finds the <emph>Outline</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Nét ngoài</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3148575\n"
"16\n"
"help.text"
-msgid "Left margin"
-msgstr "Lề trái"
+msgid "Position"
+msgstr "Vị trí"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3156434\n"
+"02100200.xhp\n"
+"par_id3146922\n"
"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_LMARGIN\">Enter the amount of space to leave between the left edge of the page and the left edge of the footer.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_LMARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên trái của trang và cạnh bên trái của phần chân trang.</ahelp>"
+msgid "Finds characters using the <emph>Normal, Superscript</emph> or <emph>Subscript </emph>attributes."
+msgstr "Tìm các ký tự dùng thuộc tính <emph>Chuẩn, Chỉ số Trên</emph> hay <emph>Chỉ số Dưới</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154073\n"
+"02100200.xhp\n"
+"hd_id3156062\n"
+"62\n"
+"help.text"
+msgid "Register-true"
+msgstr "Đăng ký đúng"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3152886\n"
+"63\n"
+"help.text"
+msgid "Finds the <emph>Register-true</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Đăng ký đúng</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3159196\n"
+"64\n"
+"help.text"
+msgid "Relief"
+msgstr "Khắc nổi"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3146120\n"
+"65\n"
+"help.text"
+msgid "Finds the <emph>Relief </emph>attribute."
+msgstr "Tìm thuộc tính <emph>Khắc nổi</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3154014\n"
+"66\n"
+"help.text"
+msgid "Rotation"
+msgstr "Xoay"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3150873\n"
+"67\n"
+"help.text"
+msgid "Finds the <emph>Rotation</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Xoay</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3152576\n"
+"28\n"
+"help.text"
+msgid "Shadowed"
+msgstr "Có bóng"
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"par_id3150104\n"
+"29\n"
+"help.text"
+msgid "Finds the <emph>Shadowed</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Có bóng</emph>."
+
+#: 02100200.xhp
+msgctxt ""
+"02100200.xhp\n"
+"hd_id3159156\n"
"18\n"
"help.text"
-msgid "Right margin"
-msgstr "Lề phải"
+msgid "Font"
+msgstr "Phông"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154224\n"
+"02100200.xhp\n"
+"par_id3154320\n"
"19\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_RMARGIN\">Enter the amount of space to leave between the right edge of the page and the right edge of the footer.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_RMARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên phải của trang và cạnh bên phải của phần chân trang.</ahelp>"
+msgid "Finds any instance where the default font was changed."
+msgstr "Tìm đoạn nào có phông khác với phông mặc định."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154140\n"
-"8\n"
+"02100200.xhp\n"
+"hd_id3151113\n"
+"10\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "Font Color"
+msgstr "Màu phông"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154908\n"
-"9\n"
+"02100200.xhp\n"
+"par_id3149664\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_DIST\">Enter the amount of space that you want to maintain between the bottom edge of the document text and the top edge of the footer.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_DIST\">Nhập khoảng cách cần để lại giữa cạnh bên dưới của văn bản tài liệu và cạnh bên trên của phần chân trang.</ahelp>"
+msgid "Finds any instance where the default font color was changed."
+msgstr "Tìm đoạn nào có màu phông khác với màu phông mặc định."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3158409\n"
-"34\n"
+"02100200.xhp\n"
+"hd_id3152794\n"
+"20\n"
"help.text"
-msgid "Use dynamic spacing"
-msgstr "Giãn cách động"
+msgid "Font Size"
+msgstr "Kích cỡ phông"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3144760\n"
-"35\n"
+"02100200.xhp\n"
+"par_id3150962\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_FOOTER_CB_DYNSPACING\">Overrides the <emph>Spacing </emph>setting and allows the footer to expand into the area between the footer and document text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_FOOTER_CB_DYNSPACING\">Có quyền cao hơn thiết lập <emph>Giãn cách</emph>, và cho phép phần chân trang mở rộng vào vùng giữa phần chân trang và văn bản tài liệu.</ahelp>"
+msgid "Finds the <emph>Font size/Font height</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Kích cỡ/Bề cao phông</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154821\n"
-"12\n"
+"02100200.xhp\n"
+"hd_id3163717\n"
+"32\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "Font Weight"
+msgstr "Độ đậm phông"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3125865\n"
-"13\n"
+"02100200.xhp\n"
+"par_id3150593\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_HEIGHT\">Enter the height you want for the footer.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_HEIGHT\">Nhập chiều cao thích hợp với phần chân trang.</ahelp>"
+msgid "Finds the <emph>Bold</emph> or the <emph>Bold and Italic</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Đậm</emph> hay <emph>Đậm và Nghiêng</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3150742\n"
-"14\n"
+"02100200.xhp\n"
+"hd_id3146928\n"
+"26\n"
"help.text"
-msgid "AutoFit height"
-msgstr "Bề cao tự động vừa"
+msgid "Font Posture"
+msgstr "Dáng phông"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3145744\n"
-"15\n"
+"02100200.xhp\n"
+"par_id3154097\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN\">Automatically adjusts the height of the footer to fit the content you enter.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN\">Tự động điều chỉnh chiều cao của phần chân trang để vừa nội dung bạn nhập.</ahelp>"
+msgid "Finds the <emph>Italic</emph> or the <emph>Bold and Italic</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Đậm</emph> hay <emph>Đậm và Nghiêng</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3149807\n"
-"23\n"
+"02100200.xhp\n"
+"hd_id3148388\n"
+"42\n"
"help.text"
-msgid "More"
-msgstr "Nhiều"
+msgid "Orphans"
+msgstr "Thừa"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3145421\n"
-"24\n"
+"02100200.xhp\n"
+"par_id3156737\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_FOOTER:BTN_EXTRAS\">Defines a border, a background color, or a background pattern for the footer.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_FOOTER:BTN_EXTRAS\">Xác định cho phần chân trang một viền, màu nền hay mẫu nền.</ahelp>"
+msgid "Finds the <link href=\"text/shared/00/00000005.xhp#schuster\">Orphan Control</link> attribute."
+msgstr "Tìm thuộc tính <link href=\"text/shared/00/00000005.xhp#schuster\">Điều khiển dòng thừa</link>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3157892\n"
-"26\n"
+"02100200.xhp\n"
+"hd_id3153159\n"
+"54\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sửa </caseinline></switchinline>"
+msgid "Page Style"
+msgstr "Kiểu dáng trang"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id0609200910255518\n"
+"02100200.xhp\n"
+"par_id3147045\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit footer text.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm hoặc chỉnh sửa văn bản chân trang.</ahelp>"
+msgid "Finds the <emph>Break With Page Style</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Chỗ ngắt có kiểu dáng trang</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3150439\n"
-"27\n"
+"02100200.xhp\n"
+"hd_id3147124\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FOOTER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit footer text.\">Add or edit footer text.</link></caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FOOTER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit footer text.\">Thêm hay chỉnh sửa văn bản chân trang.</link></caseinline></switchinline></ahelp>"
+msgid "Hyphenation"
+msgstr "Gạch nối từ"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3151112\n"
+"02100200.xhp\n"
+"par_id3153877\n"
+"49\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04230000.xhp\" name=\"Footers\">Footers</link>"
-msgstr "<link href=\"text/swriter/01/04230000.xhp\" name=\"Chân trang\">Chân trang</link>"
+msgid "Finds the <emph>Hyphenation</emph> attribute."
+msgstr "Tìm thuộc tính <emph>Gạch nối từ</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3155411\n"
+"02100200.xhp\n"
+"hd_id3148773\n"
+"68\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Thay đổi đơn vị đo\">Thay đổi đơn vị đo</link>"
+msgid "Scale"
+msgstr "Co giãn"
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154189\n"
+"02100200.xhp\n"
+"par_id3147396\n"
+"69\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
-msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Viền\">Viền</link>"
+msgid "Finds the <emph>Scale </emph>attribute."
+msgstr "Tìm thuộc tính <emph>Co giãn</emph>."
-#: 05040400.xhp
+#: 02100200.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3152791\n"
+"02100200.xhp\n"
+"hd_id3148455\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Nền\">Nền</link>"
+msgid "Language"
+msgstr "Ngôn ngữ"
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"tit\n"
+"02100200.xhp\n"
+"par_id3150716\n"
+"25\n"
"help.text"
-msgid "Toolbars"
-msgstr "Thanh công cụ"
+msgid "Finds the <emph>Language</emph> attribute (for spelling)."
+msgstr "Tìm thuộc tính <emph>Ngôn ngữ</emph> (cho hàm chính tả)."
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"hd_id3154100\n"
-"1\n"
+"02100200.xhp\n"
+"hd_id3154511\n"
+"46\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140400.xhp\" name=\"Toolbars\">Toolbars</link>"
-msgstr "<link href=\"text/shared/01/06140400.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link>"
+msgid "Tab Stops"
+msgstr "Vị trí tab"
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_id3150279\n"
-"2\n"
+"02100200.xhp\n"
+"par_id3151037\n"
+"47\n"
"help.text"
-msgid "Lets you customize $[officename] toolbars."
-msgstr "Cho phép bạn tùy chỉnh các thanh công cụ của $[officename]."
+msgid "Finds paragraphs that use an additional tab set."
+msgstr "Tìm các đoạn văn dùng các vị trí tab thêm."
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10601\n"
+"02100200.xhp\n"
+"hd_id3154164\n"
+"30\n"
"help.text"
-msgid "Toolbar"
-msgstr "Thanh công cụ"
+msgid "Underline"
+msgstr "Gạch dưới"
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10604\n"
+"02100200.xhp\n"
+"par_id3148566\n"
+"31\n"
"help.text"
-msgid "Select the toolbar you want to edit."
-msgstr "Chọn thanh công cụ cần chỉnh sửa."
+msgid "Finds characters that use the <emph>Underlined</emph> attribute (single, double, or dotted)."
+msgstr "Tìm các ký tự dùng thuộc tính <emph>Gạch dưới</emph> (đơn, đôi, chấm chấm)."
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10607\n"
+"02100200.xhp\n"
+"hd_id3153099\n"
+"70\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "Vertical text alignment"
+msgstr "Canh lề văn bản nằm dọc"
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1060A\n"
+"02100200.xhp\n"
+"par_id3145650\n"
+"71\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar.</ahelp> Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar."
-msgstr ""
+msgid "Finds the <emph>Vertical text alignment </emph>attribute."
+msgstr "Tìm thuộc tính <emph>Canh lề văn bản nằm dọc</emph>."
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106011\n"
+"02100200.xhp\n"
+"hd_id3147259\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name of a new toolbar.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
+msgid "Individual Words"
+msgstr "Mỗi từ riêng"
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106012\n"
+"02100200.xhp\n"
+"par_id3156438\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the location of the new toolbar.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
+msgid "Finds individual words that use the underlined or the strikethrough attribute."
+msgstr "Tìm mỗi từ riêng mà dùng thuộc tính gạch dưới hay gạch đè."
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1061B\n"
+"02100200.xhp\n"
+"hd_id3153948\n"
+"58\n"
"help.text"
-msgid "Toolbar"
-msgstr "Thanh công cụ"
+msgid "Character background"
+msgstr "Nền ký tự"
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1061E\n"
+"02100200.xhp\n"
+"par_id3145300\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\".\">The Toolbar button opens a submenu</ahelp> with the following commands:"
-msgstr "<ahelp hid=\".\">Cái nút <emph>Thanh công cụ</emph> mở trình đơn phụ</ahelp> chứa những lệnh này:"
+msgid "Finds characters that use the <emph>Background</emph> attribute."
+msgstr "Tìm các ký tự dùng thuộc tính <emph>Nền</emph>."
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10621\n"
+"02100200.xhp\n"
+"hd_id3146791\n"
+"36\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "Line Spacing"
+msgstr "Giãn cách dòng"
-#: 06140400.xhp
+#: 02100200.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10624\n"
+"02100200.xhp\n"
+"par_id3146912\n"
+"37\n"
"help.text"
-msgid "Opens the <emph>Name</emph> dialog, where you enter a new name for the selected toolbar."
-msgstr "Mở hộp thoại <emph>Tên</emph>, vào đó bạn nhập tên mới cho thanh công cụ đã chọn."
+msgid "Finds the <emph>Line spacing</emph> (single line, 1.5 lines, double, proportional, at least, lead) attribute."
+msgstr "Tìm thuộc tính <emph>Giãn cách dòng</emph> (dòng đơn, 1,5, đôi, tỷ lệ, ít nhất, đi trước)."
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1062B\n"
+"02100300.xhp\n"
+"tit\n"
"help.text"
-msgid "New name"
-msgstr "Tên mới"
+msgid "Text Format (Search)"
+msgstr "Định dạng Văn bản (Tìm kiếm)"
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1062E\n"
+"02100300.xhp\n"
+"hd_id3154840\n"
+"130\n"
"help.text"
-msgid "Enter the new name for the selected toolbar."
-msgstr "Nhập tên mới cho thanh công cụ đã chọn."
+msgid "Text Format (Search)"
+msgstr "Định dạng Văn bản (Tìm kiếm)"
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10631\n"
+"02100300.xhp\n"
+"par_id3150355\n"
+"131\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<variable id=\"formattext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_FORMAT\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp></variable>"
+msgstr "<variable id=\"formattext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_FORMAT\">Tìm các tính năng định dạng văn bản cụ thể, v.d. kiểu phông, hiệu ứng phông và đặc tính luồng văn bản.</ahelp></variable>"
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10634\n"
+"02100300.xhp\n"
+"par_id3145383\n"
+"192\n"
"help.text"
-msgid "Deletes the selected toolbar after you agree to the question. You can only delete custom toolbars, not the built-in toolbars."
-msgstr "Bạn xác nhận thì xoá thanh công cụ đã chọn. Bạn chỉ có khả năng xoá thanh công cụ riêng, không phải thanh công cụ có sẵn."
+msgid "The search criteria for attributes are listed below the <emph>Search for</emph> box."
+msgstr "Các tiêu chuẩn tìm kiếm thuộc tính được liệt kê bên dưới hộp <emph>Tìm kiếm</emph>."
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10637\n"
+"02100300.xhp\n"
+"par_id3150466\n"
+"132\n"
"help.text"
-msgid "Restore Default Settings"
-msgstr "Phục hồi thiết lập mặc định"
+msgid "You do not need to specify a search text in the <emph>Search for</emph> box when you search and replace formatting."
+msgstr "Tuy nhiên, bạn không cần ghi rõ chuỗi tìm kiếm trong hộp <emph>Tìm kiếm</emph> khi bạn tìm và thay thế định dạng."
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1063A\n"
+"02100300.xhp\n"
+"par_id3156152\n"
+"133\n"
"help.text"
-msgid "Restores the default settings."
-msgstr "Phục hồi thiết lập mặc định."
+msgid "To define a replacement format, click in the <emph>Replace with</emph> box, and then click the <emph>Format </emph>button."
+msgstr "Để xác định một định dạng thay thế, nhấn vào hộp <emph>Thay thế bằng</emph>, rồi bấm cái nút <emph>Định dạng</emph>."
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1064F\n"
+"02100300.xhp\n"
+"par_id3153821\n"
+"157\n"
"help.text"
-msgid "Icons only"
-msgstr "Chỉ biểu tượng"
+msgid "Use the <emph>Text Format (Search)</emph> or the <emph>Text Format (Replace)</emph> to define your formatting search criteria. These dialogs contain the following tab pages:"
+msgstr "Dùng hộp thoại <emph>Định dạng Văn bản (Tìm)</emph> hay <emph>Định dạng Văn bản (Thay thế)</emph> để xác định các tiêu chuẩn tìm kiếm định dạng. Hai hộp thoại này chứa những thẻ trang này:"
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10652\n"
+"02100300.xhp\n"
+"par_id3062837\n"
"help.text"
-msgid "Shows icons only."
-msgstr "Chỉ hiển thị các biểu tượng."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm tính năng định dạng văn bản dứt khoát, như kiểu phông, hiệu ứng phông và đặc tính luồng văn bản.</ahelp>"
-#: 06140400.xhp
+#: 02100300.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10655\n"
+"02100300.xhp\n"
+"par_id3149457\n"
"help.text"
-msgid "Text only"
-msgstr "Chỉ văn bản"
+msgid "<link href=\"text/shared/01/02100200.xhp\" name=\"Attributes\">Attributes</link>"
+msgstr "<link href=\"text/shared/01/02100200.xhp\" name=\"Thuộc tính\">Thuộc tính</link>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10658\n"
+"02110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Shows text only."
-msgstr "Hiển thị chỉ các nhãn của biểu tượng."
+msgid "Navigator for Master Documents"
+msgstr "Bộ điều hướng Tài liệu chủ"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1065B\n"
+"02110000.xhp\n"
+"hd_id3153391\n"
+"1\n"
"help.text"
-msgid "Icons & Text"
-msgstr "Nhãn và biểu tượng"
+msgid "<link href=\"text/shared/01/02110000.xhp\">Navigator for Master Documents</link>"
+msgstr "<link href=\"text/shared/01/02110000.xhp\">Bộ điều hướng tài liệu chủ</link>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1065E\n"
+"02110000.xhp\n"
+"par_id3150603\n"
+"2\n"
"help.text"
-msgid "Shows icons and text."
-msgstr "Hiển thị các nhãn cùng với các biểu tượng."
+msgid "In a <link href=\"text/shared/01/01010001.xhp\">master document</link>, you can switch the Navigator between normal view and master view."
+msgstr "Trong <link href=\"text/shared/01/01010001.xhp\">tài liệu chủ</link>, bạn có khả năng chuyển đổi Bộ điều hướng giữa ô xem chuẩn và ô xem chủ."
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1069AAA\n"
+"02110000.xhp\n"
+"par_id3148585\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item up in the list.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"HID_NAVIGATOR_GLOB_TREELIST\">The Navigator lists the main components of the master document. If you rest the mouse pointer over a name of a sub-document in the list, the full path of the sub-document is displayed.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVIGATOR_GLOB_TREELIST\">Bộ điều hướng liệt kê các thành phần chính của tài liệu chủ. Khi bạn để con trỏ chuột ở trên tên của tài liệu phụ trong danh sách, chương trình hiển thị đường dẫn đầy đủ đến tài liệu phụ đó.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1068AAA\n"
+"02110000.xhp\n"
+"par_id3150789\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item down in the list.</ahelp>"
-msgstr ""
+msgid "The master view in the Navigator displays the following icons:"
+msgstr "Ô xem chính của Bộ điều hướng sẽ hiển thị những biểu tượng dưới đây:"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10661\n"
+"02110000.xhp\n"
+"hd_id3152542\n"
+"4\n"
"help.text"
-msgid "Commands"
-msgstr "Lệnh"
+msgid "Toggle"
+msgstr "Bật/Tắt"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10664\n"
+"02110000.xhp\n"
+"par_id3153394\n"
+"5\n"
"help.text"
-msgid "Displays a list of commands for the selected toolbar of the current application or document."
-msgstr "Hiển thị danh sách các lệnh cho thanh công cụ đã chọn của ứng dụng hay tài liệu hiện tại."
+msgid "Switches between master view and normal view."
+msgstr "Chuyển đổi giữa ô xem chủ và ô xem chuẩn."
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10667\n"
+"02110000.xhp\n"
+"par_id3145313\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "<image id=\"img_id3155535\" src=\"sw/imglst/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Biểu tượng</alt></image>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1066A\n"
+"02110000.xhp\n"
+"par_id3159233\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog.</ahelp>"
-msgstr ""
+msgid "Toggle"
+msgstr "Bật/Tắt"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10675\n"
+"02110000.xhp\n"
+"hd_id3147275\n"
+"7\n"
"help.text"
-msgid "Modify"
+msgid "Edit"
msgstr "Sửa"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10678\n"
+"02110000.xhp\n"
+"par_id3147242\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">The Modify button opens a submenu</ahelp> with the following commands:"
-msgstr "<ahelp hid=\".\">Cái nút <emph>Sửa</emph> thì mở trình đơn phụ</ahelp> chứa những lệnh này:"
+msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the index dialog is opened.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Chỉnh sửa nội dung của thành phần được chọn trong danh sách Bộ điều hướng. Mục chọn là tập tin thì mở tập tin để soạn thảo. Mục chọn là chỉ mục thì mở hộp thoại chỉ mục.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1067B\n"
+"02110000.xhp\n"
+"par_id3153716\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "<image id=\"img_id3145416\" src=\"sw/imglst/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Biểu tượng</alt></image>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1067E\n"
+"02110000.xhp\n"
+"par_id3149192\n"
+"9\n"
"help.text"
-msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
-msgstr "Mở hộp thoại <emph>Thay tên</emph>, vào đó bạn nhập tên mới cho lệnh đã chọn."
+msgid "Edit"
+msgstr "Sửa"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10685\n"
+"02110000.xhp\n"
+"hd_id3150084\n"
+"10\n"
"help.text"
-msgid "New name"
-msgstr "Tên mới"
+msgid "Update"
+msgstr "Cập nhật"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10688\n"
+"02110000.xhp\n"
+"par_id3149164\n"
+"11\n"
"help.text"
-msgid "Enter the new name for the selected command."
-msgstr "Nhập tên mới cho lệnh đã chọn."
+msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Nhấn vào và chọn nội dung bạn muốn cập nhật.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1068B\n"
+"02110000.xhp\n"
+"par_id3159166\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<image id=\"img_id3153146\" src=\"sw/imglst/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Biểu tượng</alt></image>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1068E\n"
+"02110000.xhp\n"
+"par_id3145086\n"
+"12\n"
"help.text"
-msgid "Deletes the selected command after you agree to the question."
-msgstr "Bạn xác nhận thì xoá lệnh đã chọn."
+msgid "Update"
+msgstr "Cập nhật"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10691\n"
+"02110000.xhp\n"
+"hd_id3147264\n"
+"28\n"
"help.text"
-msgid "Restore Default Settings"
-msgstr "Phục hồi thiết lập mặc định"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10694\n"
+"02110000.xhp\n"
+"par_id3147303\n"
+"29\n"
"help.text"
-msgid "Restores the default settings."
-msgstr "Phục hồi thiết lập mặc định."
+msgid "<ahelp hid=\"HID_GLBLTREE_UPD_SEL\">Updates the contents of the selection.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_UPD_SEL\">Cập nhật nội dung của mục chọn.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106A9\n"
+"02110000.xhp\n"
+"hd_id3148756\n"
+"30\n"
"help.text"
-msgid "Begin a Group"
-msgstr "Tạo nhóm"
+msgid "Indexes"
+msgstr "Chỉ mục"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106AC\n"
+"02110000.xhp\n"
+"par_id3156435\n"
+"31\n"
"help.text"
-msgid "Inserts a separator line under the current toolbar entry."
-msgstr "Chèn một đường phân cách vào bên dưới mục nhập thanh công cụ hiện tại."
+msgid "<ahelp hid=\"HID_GLBLTREE_UPD_IDX\">Updates all indexes.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_UPD_IDX\">Cập nhật mọi chỉ mục.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106AF\n"
+"02110000.xhp\n"
+"hd_id3153524\n"
+"32\n"
"help.text"
-msgid "Change Icon"
-msgstr "Đổi biểu tượng"
+msgid "Links"
+msgstr "Liên kết"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106B2\n"
+"02110000.xhp\n"
+"par_id3154224\n"
+"33\n"
"help.text"
-msgid "Opens the Change Icon dialog, where you can assign a different icon to the current command."
-msgstr "Mở hộp thoại <emph>Đổi biểu tượng</emph>, trong đó bạn có thể gán biểu tượng khác cho lệnh hiện thời."
+msgid "<ahelp hid=\"HID_GLBLTREE_UPD_LINK\">Updates all links.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_UPD_LINK\">Cập nhật mọi liên kết.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106B5\n"
+"02110000.xhp\n"
+"hd_id3154938\n"
+"34\n"
"help.text"
-msgid "Reset Icon"
-msgstr "Lập lại biểu tượng"
+msgid "All"
+msgstr "Tất cả"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106B8\n"
+"02110000.xhp\n"
+"par_id3154154\n"
+"35\n"
"help.text"
-msgid "Resets the icon to the default icon."
-msgstr "Đặt lại biểu tượng về biểu tượng mặc định."
+msgid "<ahelp hid=\"HID_GLBLTREEUPD_ALL\">Updates all contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREEUPD_ALL\">Cập nhật mọi nội dung.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106BB\n"
+"02110000.xhp\n"
+"hd_id3154631\n"
+"48\n"
"help.text"
-msgid "Save In"
-msgstr "Lưu vào"
+msgid "Edit link"
+msgstr "Sửa liên kết"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106D2\n"
+"02110000.xhp\n"
+"par_id3153105\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the location where to load the configuration and where to save it.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn vị trí từ đó cần nạp cấu hình, và vào đó cần lưu nó.</ahelp>"
+msgid "This command is found by right-clicking an inserted file in the Navigator.<ahelp hid=\"HID_GLBLTREE_EDIT_LINK\">Changes the link properties for the selected file.</ahelp>"
+msgstr "Bạn tìm lệnh này bằng cách nhấn-phải vào tập tin được chèn vào Bộ điều hướng.<ahelp hid=\"HID_GLBLTREE_EDIT_LINK\">Thay đổi các thuộc tính liên kết về tập tin đã chèn.</ahelp>"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106D5\n"
+"02110000.xhp\n"
+"hd_id3152933\n"
+"13\n"
"help.text"
-msgid "For every entry in the list box, an own configuration is maintained. Select one of the open documents or select the application to load and edit the associated configuration. Edit the configuration and save it back to the location from where you loaded it. Editing the configuration in one location does not change the configuration in any other location."
-msgstr "Đối với mỗi mục nhập trong hộp liệt kê thì bảo tồn một cấu hình riêng. Hãy chọn một của những tài liệu còn mở, hoặc chọn ứng dụng cần nạp, và chỉnh sửa cấu hình liên quan. Chỉnh sửa cấu hình, sau đó lưu nó lại về vị trí từ đó bạn đã nạp nó. Tuy nhiên, việc chỉnh sửa cấu hình trong vị trí này không phải thay đổi cấu hình trong vị trí khác."
+msgid "Insert"
+msgstr "Chèn"
-#: 06140400.xhp
+#: 02110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106D8\n"
+"02110000.xhp\n"
+"par_id3147084\n"
+"14\n"
"help.text"
-msgid "It is not possible to load a configuration from one location and save it to another location."
-msgstr "Không thể nạp cấu hình từ vị trí này, sau đó lưu nó vào vị trí khác."
+msgid "<ahelp hid=\"HID_GLBLTREE_INSERT\">Inserts a file, an index, or a new document into the master document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_INSERT\">Chèn vào tài liệu chủ một tập tin, chỉ mục hay tài liệu mới.</ahelp>"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"par_id3153969\n"
+"57\n"
"help.text"
-msgid "Digital Signatures"
-msgstr "Chữ ký số"
+msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
+msgstr "Bạn cũng có thể chèn tập tin vào tài liệu chủ bằng cách kéo tập tin từ màn hình nền, sau đó thả nó vào ô xem chủ của Bộ điều hướng."
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10544\n"
+"02110000.xhp\n"
+"par_id3153951\n"
"help.text"
-msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link>"
-msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">Chữ ký số</link>"
+msgid "<image id=\"img_id3146984\" src=\"sw/imglst/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Biểu tượng</alt></image>"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10548\n"
+"02110000.xhp\n"
+"par_id3150486\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your document. You can also use the dialog to view certificates.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm và gỡ bỏ các chữ ký thuật số vào/khỏi tài liệu của bạn. Cũng có thể sử dụng hộp thoại này để xem các chứng nhận.</ahelp>"
+msgid "Insert"
+msgstr "Chèn"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10629\n"
+"02110000.xhp\n"
+"hd_id3146921\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file before you can apply a digital signature to the file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bạn cần phải lưu tập tin trước khi áp dụng cho tài liệu chữ ký thuật số.</ahelp>"
+msgid "Index"
+msgstr "Chỉ mục"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10644\n"
+"02110000.xhp\n"
+"par_id3149267\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file in OpenDocument format before you can apply a digital signature to the file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bạn cần phải lưu tập tin theo định dạng OpenDocument (tài liệu mở) trước khi áp dụng cho tài liệu chữ ký thuật số.</ahelp>"
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_IDX\">Inserts an index or a table of contents into the master document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_INS_IDX\">Chèn vào tài liệu chủ một chỉ mục hay mục lục.</ahelp>"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN1055F\n"
+"02110000.xhp\n"
+"hd_id3155413\n"
+"42\n"
"help.text"
-msgid "List"
-msgstr "Danh sách"
+msgid "File"
+msgstr "Tập tin"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10563\n"
+"02110000.xhp\n"
+"par_id3159198\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the digital signatures for the current document.</ahelp>"
-msgstr "<ahelp hid=\".\">Liệt kê các chữ ký thuật số cho tài liệu hiện tại.</ahelp>"
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_FILE\">Inserts one or more existing files into the master document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_INS_FILE\">Chèn vào tài liệu chủ một hay nhiều tập tin đã tồn tại.</ahelp>"
-#: digitalsignatures.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10566\n"
+"02110000.xhp\n"
+"hd_id3155856\n"
+"44\n"
"help.text"
-msgid "The Signed icon<image id=\"img_id4557023\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id4557023\">Icon</alt></image> indicates a valid digital signature, while the Exclamation mark icon<image id=\"img_id249336\" src=\"xmlsecurity/res/caution_11x16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id249336\">Icon</alt></image> indicates an invalid digital signature."
-msgstr "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Biểu tượng</alt></image> và <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "New Document"
+msgstr "Tài liệu mới"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_id0821200910573716\n"
+"02110000.xhp\n"
+"par_id3154321\n"
+"45\n"
"help.text"
-msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
-msgstr "Cũng xem <link href=\"text/shared/guide/digital_signatures.xhp\">Các chữ kí số</link>."
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">Creates and inserts a new sub-document.</ahelp> When you create a new document, you are prompted to enter the file name and the location where you want to save the document."
+msgstr "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">Tạo và chèn một tài liệu phụ mới.</ahelp> Khi bạn tạo một tài liệu mới, chương trình nhắc bạn nhập tên tập tin và vị trí vào đó cần lưu tài liệu."
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN1056C\n"
+"02110000.xhp\n"
+"hd_id3154472\n"
+"46\n"
"help.text"
-msgid "View Certificate"
-msgstr "Xem chứng nhận"
+msgid "Text"
+msgstr "Văn bản"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10570\n"
+"02110000.xhp\n"
+"par_id3163712\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/optionen/viewcertificate.xhp\">Xem chứng nhận</link>.</ahelp>"
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_TEXT\">Inserts a new paragraph in the master document where you can enter text. You cannot insert text next to an existing text entry in the Navigator.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_INS_TEXT\">Chèn vào tài liệu chủ một đoạn văn mới trong đó bạn có thể gõ chữ. Tuy nhiên, trong Bộ điều hướng không thể chèn văn bản vào bên cạnh mục nhập văn bản đã tồn tại.</ahelp>"
-#: digitalsignatures.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10581\n"
+"02110000.xhp\n"
+"hd_id3154640\n"
+"16\n"
"help.text"
-msgid "Sign Document"
-msgstr "In tài liệu"
+msgid "Save Contents as well"
+msgstr "Cũng lưu nội dung"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10585\n"
+"02110000.xhp\n"
+"par_id3149666\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/selectcertificate.xhp\">Select Certificate</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/01/selectcertificate.xhp\">Chọn chứng nhận</link>.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_TBX21\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_TBX21\">Lưu vào tài liệu chủ một bản sao của nội dung của các tập tin đã liên kết. Tùy chọn này đảm bảo nội dung hiện thời vẫn sẵn sàng ngay cả khi không thể truy cập đến tập tin đã liên kết.</ahelp>"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10596\n"
+"02110000.xhp\n"
+"par_id3151351\n"
"help.text"
-msgid "Remove"
-msgstr "Bỏ"
+msgid "<image id=\"img_id3152885\" src=\"sw/imglst/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Biểu tượng</alt></image>"
-#: digitalsignatures.xhp
+#: 02110000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN1059A\n"
+"02110000.xhp\n"
+"par_id3157974\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\">Removes the selected source from the list.</ahelp>"
-msgstr "<ahelp hid=\".\">Gỡ bỏ khỏi danh sách nguồn đã chọn.</ahelp>"
+msgid "Save Contents as well"
+msgstr "Cũng lưu nội dung"
-#: 05110300.xhp
+#: 02110000.xhp
msgctxt ""
-"05110300.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"hd_id3154096\n"
+"19\n"
"help.text"
-msgid "Underline"
-msgstr "Gạch dưới"
+msgid "Move Down"
+msgstr "Đem xuống"
-#: 05110300.xhp
+#: 02110000.xhp
msgctxt ""
-"05110300.xhp\n"
-"bm_id3150756\n"
+"02110000.xhp\n"
+"par_id3155852\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>characters;underlining</bookmark_value><bookmark_value>underlining;characters</bookmark_value>"
-msgstr "<bookmark_value>ký tự;gạch dưới</bookmark_value><bookmark_value>gạch dưới;ký tự</bookmark_value>"
+msgid "<ahelp hid=\"HID_NAVI_TBX23\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
+msgstr "<ahelp hid=\"HID_NAVI_TBX23\">Dời mục chọn xuống một chỗ trong danh sách Bộ điều hướng.</ahelp> Bạn cũng có thể di chuyển mục nhập bằng cách kéo-thả trong danh sách. Kéo mục văn bản vào mục văn bản khác thì trộn với nhau làm cùng một mục văn bản."
-#: 05110300.xhp
+#: 02110000.xhp
msgctxt ""
-"05110300.xhp\n"
-"hd_id3150756\n"
-"1\n"
+"02110000.xhp\n"
+"par_id3154790\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110300.xhp\" name=\"Underline\">Underline</link>"
-msgstr "<link href=\"text/shared/01/05110300.xhp\" name=\"Gạch dưới\">Gạch dưới</link>"
+msgid "<image id=\"img_id3166413\" src=\"sw/imglst/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Biểu tượng</alt></image>"
-#: 05110300.xhp
+#: 02110000.xhp
msgctxt ""
-"05110300.xhp\n"
-"par_id3149031\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3149417\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".uno:Underline\" visibility=\"visible\">Underlines or removes underlining from the selected text.</ahelp>"
-msgstr "<ahelp hid=\".uno:Underline\" visibility=\"visible\">Gạch dưới, hay gỡ bỏ gạch dưới chuỗi đã chọn.</ahelp>"
+msgid "Move Down"
+msgstr "Đem xuống"
-#: 05110300.xhp
+#: 02110000.xhp
msgctxt ""
-"05110300.xhp\n"
-"par_id3152821\n"
-"3\n"
+"02110000.xhp\n"
+"hd_id3147124\n"
+"22\n"
"help.text"
-msgid "If the cursor is not in a word, the new text that you enter is underlined."
-msgstr "Nếu con trỏ không phải bên trong từ, hành động này gạch dưới chuỗi bạn gõ vào."
+msgid "Move Up"
+msgstr "Đem lên"
-#: 05110300.xhp
+#: 02110000.xhp
msgctxt ""
-"05110300.xhp\n"
-"par_id3154894\n"
-"4\n"
+"02110000.xhp\n"
+"par_id3146927\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".uno:UnderlineDouble\" visibility=\"hidden\">Underlines the selected text with two lines.</ahelp>"
-msgstr "<ahelp hid=\".uno:UnderlineDouble\" visibility=\"hidden\">Gạch dưới chuỗi đã chọn, dùng gạch đôi.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_TBX22\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
+msgstr "<ahelp hid=\"HID_NAVI_TBX22\">Dời mục chọn lên một chỗ trong danh sách Bộ điều hướng.</ahelp> Bạn cũng có thể di chuyển mục nhập bằng cách kéo-thả trong danh sách. Kéo mục văn bản vào mục văn bản khác thì trộn với nhau làm cùng một mục văn bản."
-#: 05220000.xhp
+#: 02110000.xhp
msgctxt ""
-"05220000.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"par_id3156178\n"
"help.text"
-msgid "Text"
-msgstr "Văn bản"
+msgid "<image id=\"img_id3155083\" src=\"sw/imglst/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Biểu tượng</alt></image>"
-#: 05220000.xhp
+#: 02110000.xhp
msgctxt ""
-"05220000.xhp\n"
-"bm_id3146856\n"
+"02110000.xhp\n"
+"par_id3147257\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
-msgstr "<bookmark_value>văn bản; đối tượng văn bản/vẽ</bookmark_value><bookmark_value>đối tượng vẽ; chứa văn bản</bookmark_value><bookmark_value>khung; văn bản khít vừa khung</bookmark_value>"
+msgid "Move Up"
+msgstr "Đem lên"
-#: 05220000.xhp
+#: 02110000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3146856\n"
-"1\n"
+"02110000.xhp\n"
+"hd_id3148566\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05220000.xhp\" name=\"Văn bản\">Văn bản</link>"
+msgid "Delete"
+msgstr "Xoá"
-#: 05220000.xhp
+#: 02110000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3150279\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3153099\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_PAGE_TEXTATTR\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp>"
-msgstr "<ahelp hid=\"HID_PAGE_TEXTATTR\">Đặt các thuộc tính kiểu bố trí và thả neo về văn bản trên đối tượng kiểu vẽ hay văn bản đã chọn.</ahelp>"
+msgid "<ahelp hid=\"HID_GLBLTREE_DEL\">Deletes the selection from the Navigator list.</ahelp>"
+msgstr "<ahelp hid=\"HID_GLBLTREE_DEL\">Xoá mục chọn khỏi danh sách Bộ điều hướng.</ahelp>"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3154794\n"
-"4\n"
+"02180000.xhp\n"
+"tit\n"
"help.text"
-msgid "The text is positioned relative to the edges of the drawing or text object."
-msgstr "Văn bản được sắp đặt tương đối so với các cạnh của đối tượng."
+msgid "Edit Links"
+msgstr "Sửa liên kết"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3149031\n"
-"5\n"
+"02180000.xhp\n"
+"bm_id3156156\n"
"help.text"
-msgid "Text"
-msgstr "Văn bản"
+msgid "<bookmark_value>opening;documents with links</bookmark_value> <bookmark_value>links; updating specific links</bookmark_value> <bookmark_value>updating; links, on opening</bookmark_value> <bookmark_value>links; opening files with</bookmark_value>"
+msgstr "<bookmark_value>mở;tập tin có liên kết</bookmark_value><bookmark_value>liên kết; cập nhật liên kết riêng</bookmark_value><bookmark_value>cập nhật; liên kết, khi mở</bookmark_value><bookmark_value>liên kết; mở tập tin có liên kết</bookmark_value>"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3150445\n"
-"7\n"
+"02180000.xhp\n"
+"hd_id3150279\n"
+"1\n"
"help.text"
-msgid "Fit width to text"
-msgstr "Vừa bề rộng khít văn bản"
+msgid "Edit Links"
+msgstr "Sửa liên kết"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3145629\n"
-"8\n"
+"02180000.xhp\n"
+"par_id3150774\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_WIDTH\">Tăng chiều rộng của đối tượng để chứa văn bản, nếu đối tượng nhỏ hơn văn bản.</ahelp>"
+msgid "<variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files.</ahelp></variable>"
+msgstr "<variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Cho phép bạn chỉnh sửa các thuộc tính về mỗi liên kết trong tài liệu hiện tại, bao gồm đường dẫn đến tập tin nguồn. Lệnh này không sẵn sàng nếu tài liệu hiện tại không chứa liên kết tới tập tin khác.</ahelp></variable>"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3149511\n"
-"9\n"
+"02180000.xhp\n"
+"par_id3156156\n"
+"27\n"
"help.text"
-msgid "Fit height to text"
-msgstr "Vừa bề cao khít văn bản"
+msgid "When you open a file that contains links, you are prompted to update the links. Depending on where the linked files are stored, the update process can take several minutes to complete."
+msgstr "Khi bạn mở tập tin chứa liên kết, chương trình nhắc bạn cập nhật các liên kết. Phụ thuộc vào địa điểm của các tập tin đã liên kết, tiến trình cập nhật có thể chạy trong vòng vài phút."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3149640\n"
-"10\n"
+"02180000.xhp\n"
+"par_id3143270\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_HEIGHT\">Tăng chiều cao của đối tượng để chứa văn bản, nếu đối tượng nhỏ hơn văn bản.</ahelp>"
+msgid "If you are loading a file that contains DDE links, you are prompted to update the links. Decline the update if you do not want to establish a connection to the DDE server."
+msgstr "Nếu bạn tải một tập tin chứa các liên kết DDE, chương trình nhắc bạn cập nhật các liên kết. Hãy từ chối yêu cầu cập nhật nếu bạn không muốn kết nối tới máy chủ DDE."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3152867\n"
-"11\n"
+"02180000.xhp\n"
+"par_idN10646\n"
"help.text"
-msgid "Fit to frame"
-msgstr "Vừa khung"
+msgid "<ahelp hid=\"34869\">Double-click a link in the list to open a file dialog where you can select another object for this link.</ahelp>"
+msgstr "<ahelp hid=\"34869\">Nhấn-đôi vào một liên kết nào đó trong danh sách để mở hộp thoại tập tin trong đó bạn có thể chọn đối tượng khác cho liên kết này.</ahelp>"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3147834\n"
-"12\n"
+"02180000.xhp\n"
+"par_idN1099856\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FIT_TO_SIZE\">Resizes the text to fit the entire area of the drawing or text object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FIT_TO_SIZE\">Thay đổi kích cỡ của văn bản để chiếm toàn đối tượng đã chọn.</ahelp>"
+msgid "When you open a file by an URL from the Windows file dialog, Windows will open a local copy of the file, located in the Internet Explorer cache. The %PRODUCTNAME file dialog opens the remote file."
+msgstr "Khi bạn mở tập tin theo một địa chỉ URL từ hộp thoại tập tin của Windows, hệ điều hành Windows sẽ mở một bản sao cục bộ của tập tin đó, nằm trong bộ nhớ tạm của trình duyệt Web Internet Explorer. Còn %PRODUCTNAME mở tập tin từ xa."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3155892\n"
-"29\n"
+"02180000.xhp\n"
+"hd_id3155503\n"
+"3\n"
"help.text"
-msgid "Adjust to contour"
-msgstr "Chỉnh vào đường viền"
+msgid "Source file"
+msgstr "Tập tin nguồn"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3153577\n"
-"30\n"
+"02180000.xhp\n"
+"par_id3156152\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_CONTOUR\">Adapts the text flow so that it matches the contours of the selected drawing object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_CONTOUR\">Điều chỉnh luồng văn bản để tương ứng với các đường viền của đối tượng đã chọn.</ahelp>"
+msgid "Lists the path to the source file."
+msgstr "Liệt kê đường dẫn tới tập tin nguồn."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10705\n"
+"02180000.xhp\n"
+"hd_id3155449\n"
+"11\n"
"help.text"
-msgid "Word wrap text in shape"
-msgstr "Cuộn từ theo hình"
+msgid "Element"
+msgstr "Phần tử"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10709\n"
+"02180000.xhp\n"
+"par_id3153348\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Wraps the text that you add after double-clicking a custom shape to fit inside the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Cuộn văn bản bạn thêm sau khi nhấn-đôi vao hình riêng, để làm cho nó vừa bên trong hình đó.</ahelp>"
+msgid "Lists the application (if known) that last saved the source file."
+msgstr "Biết thì hiển thị ứng dụng mới lưu tập tin nguồn."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10720\n"
+"02180000.xhp\n"
+"hd_id3153061\n"
+"7\n"
"help.text"
-msgid "Resize shape to fit text"
-msgstr "Đổi kích cỡ hình vừa văn bản"
+msgid "Type"
+msgstr "Kiểu"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10724\n"
+"02180000.xhp\n"
+"par_id3151384\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Resizes a custom shape to fit the text that you enter after double-clicking the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Thay đổi kích cỡ của một hình riêng để chiếm văn bản bạn thêm sau khi nhấn-đôi vào hình đó.</ahelp>"
+msgid "Lists the file type, such as graphic, of the source file."
+msgstr "Hiển thị kiểu tập tin (v.d. đồ họa) của tập tin nguồn."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3154288\n"
-"13\n"
+"02180000.xhp\n"
+"hd_id3156343\n"
+"9\n"
"help.text"
-msgid "Spacing to borders"
-msgstr "Giãn cách tới các viền"
+msgid "Status"
+msgstr "Trạng thái"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3151265\n"
-"14\n"
+"02180000.xhp\n"
+"par_id3149046\n"
+"10\n"
"help.text"
-msgid "Specify the amount of space to leave between the edges of the drawing or text object and the borders of the text."
-msgstr "Ghi rõ khoảng cách cần để lại giữa các cạnh của bản vẽ hay đối tượng văn bản và các viền của văn bản."
+msgid "Lists additional information about the source file."
+msgstr "Hiển thị thêm thông tin về tập tin nguồn."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3150443\n"
+"02180000.xhp\n"
+"hd_id3147264\n"
"15\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "Automatic"
+msgstr "Tự động"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3156113\n"
+"02180000.xhp\n"
+"par_id3147304\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_LEFT\">Enter the amount of space to leave between the left edge of the drawing or text object and the left border of the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_LEFT\">Nhập khoảng cách cần để lại giữa cạnh bên trái của đối tượng và viền bên trái của văn bản.</ahelp>"
+msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_AUTOMATIC\">Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually.</ahelp> This option is not available for a linked graphic file."
+msgstr "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_AUTOMATIC\">Tự động cập nhật nội dung của liên kết khi bạn mở tập tin. Bất cứ thay đổi nào được làm trong tập tin nguồn thì được hiển thị trong tập tin chứa liên kết.</ahelp> Tuy nhiên, tùy chọn này không sẵn sàng cho tập tin đồ họa đã liên kết."
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3155419\n"
+"02180000.xhp\n"
+"par_id3149456\n"
+"30\n"
+"help.text"
+msgid "The <emph>Automatic</emph> option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing <emph>Edit - Paste Special</emph>, and then selecting the <emph>Link</emph> box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet."
+msgstr "Tùy chọn <emph>Tự động</emph> chỉ sẵn sàng cho liên kết kiểu DDE. Bạn có thể chèn một liên kết DDE bằng cách sao chép nội dung từ tập tin này, và dán vào tập tin đó bằng cách chọn lệnh <emph>Sửa > Dán đặc biệt</emph>, sau đó bật tùy chọn <emph>được</emph>. Vì DDE là một hệ thống liên kết dựa vào văn bản, chỉ những số thập phân đã hiển thị sẽ được sao chép vào bảng đích."
+
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"hd_id3154938\n"
"17\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "Manual"
+msgstr "Tự làm"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3155388\n"
+"02180000.xhp\n"
+"par_id3151210\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_RIGHT\">Enter the amount of space to leave between the right edge of the drawing or text object and the right border of the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_RIGHT\">Nhập khoảng cách cần để lại giữa cạnh bên phải của đối tượng và viền bên phải của văn bản.</ahelp>"
+msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_MANUAL\">Only updates the link when you click the <emph>Update </emph>button.</ahelp>"
+msgstr "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_MANUAL\">Chỉ cập nhật liên kết khi bạn nhấn vào cái nút <emph>Cập nhật</emph>.</ahelp>"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3148926\n"
+"02180000.xhp\n"
+"hd_id3156280\n"
"19\n"
"help.text"
-msgid "Top"
-msgstr "Trên"
+msgid "Update"
+msgstr "Cập nhật"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3157808\n"
+"02180000.xhp\n"
+"par_id3157320\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_TOP\">Enter the amount of space to leave between the top edge of the drawing or text object and the upper border of the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_TOP\">Nhập khoảng cách cần để lại giữa cạnh bên trên của đối tượng và viền bên trên của văn bản.</ahelp>"
+msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_UPDATE_NOW\">Updates the selected link so that the most recently saved version of the linked file is displayed in the current document.</ahelp>"
+msgstr "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_UPDATE_NOW\">Cập nhật liên kết đã chọn để hiển thị trong tài liệu hiện tại phiên bản mới lưu của tập tin đã liên kết.</ahelp>"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3149237\n"
+"02180000.xhp\n"
+"hd_id3151381\n"
"21\n"
"help.text"
-msgid "Bottom"
-msgstr "Dưới"
+msgid "Modify"
+msgstr "Sửa"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3159342\n"
+"02180000.xhp\n"
+"par_id3154125\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_BOTTOM\">Enter the amount of space to leave between the bottom edge of the drawing or text object and the lower border of the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_BOTTOM\">Nhập khoảng cách cần để lại giữa cạnh bên dưới của đối tượng và viền bên dưới của văn bản.</ahelp>"
+msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE\">Change the source file for the selected link.</ahelp>"
+msgstr "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE\">Sửa đổi tập tin nguồn cho liên kết đã chọn.</ahelp>"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3149192\n"
+"02180000.xhp\n"
+"hd_id3147084\n"
"23\n"
"help.text"
-msgid "Text anchor"
-msgstr "Neo văn bản"
+msgid "Break Link"
+msgstr "Ngắt liên kết"
-#: 05220000.xhp
+#: 02180000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3155179\n"
+"02180000.xhp\n"
+"par_id3147230\n"
"24\n"
"help.text"
-msgid "Set the anchor type and the anchor position."
-msgstr "Đặt kiểu neo và vị trí thả neo."
+msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_BREAK_LINK\">Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document.</ahelp>"
+msgstr "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_BREAK_LINK\">Ngắt liên kết giữa tập tin nguồn và tài liệu hiện tại. Nội dung mới cập nhật của tập tin nguồn vẫn được giữ trong tài liệu hiện tại.</ahelp>"
-#: 05220000.xhp
+#: 02180100.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3154381\n"
-"25\n"
+"02180100.xhp\n"
+"tit\n"
"help.text"
-msgid "Graphic field"
-msgstr "Trường đồ họa"
+msgid "Modify Links"
+msgstr "Sửa liên kết"
-#: 05220000.xhp
+#: 02180100.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3155504\n"
-"26\n"
+"02180100.xhp\n"
+"bm_id3149877\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEXTATTR_CTL_POSITION\">Click where you want to place the anchor for the text.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEXTATTR_CTL_POSITION\">Nhấn vào vị trí ở đó bạn muốn thả neo cho văn bản.</ahelp>"
+msgid "<bookmark_value>links; modifying</bookmark_value><bookmark_value>changing; links</bookmark_value>"
+msgstr "<bookmark_value>liên kết; sửa đổi</bookmark_value><bookmark_value>thay đổi; liên kết</bookmark_value>"
-#: 05220000.xhp
+#: 02180100.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3155323\n"
-"27\n"
+"02180100.xhp\n"
+"hd_id3149877\n"
+"1\n"
"help.text"
-msgid "Full width"
-msgstr "Rộng đầy đủ"
+msgid "<link href=\"text/shared/01/02180100.xhp\" name=\"Modify Links\">Modify Links</link>"
+msgstr "<link href=\"text/shared/01/02180100.xhp\" name=\"Sửa liên kết\">Sửa liên kết</link>"
-#: 05220000.xhp
-#, fuzzy
+#: 02180100.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3150244\n"
-"28\n"
+"02180100.xhp\n"
+"par_id3150838\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Anchors the text to the full width of the drawing object or text object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FULL_WIDTH\">Thả neo văn bản vào chiều rộng đầy đủ của đối tượng.</ahelp>"
+msgid "Change the properties for the selected <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link>."
+msgstr "Sửa đổi các thuộc tính về <link href=\"text/shared/00/00000005.xhp#dde\" name=\"liên kết DDE\">liên kết DDE</link> đã chọn."
-#: 06010101.xhp
+#: 02180100.xhp
msgctxt ""
-"06010101.xhp\n"
-"tit\n"
+"02180100.xhp\n"
+"hd_id3149549\n"
+"3\n"
"help.text"
-msgid "Writing aids"
-msgstr "Hỗ trợ soạn thảo"
+msgid "Edit Links"
+msgstr "Sửa liên kết"
-#: 06010101.xhp
+#: 02180100.xhp
msgctxt ""
-"06010101.xhp\n"
-"hd_id3145138\n"
-"1\n"
+"02180100.xhp\n"
+"par_id3153114\n"
+"4\n"
"help.text"
-msgid "Writing aids"
-msgstr "Hỗ trợ soạn thảo"
+msgid "Lets you set the properties for the selected link."
+msgstr "Cho phép bạn đặt các thuộc tính về liên kết đã chọn."
-#: 06010101.xhp
+#: 02180100.xhp
msgctxt ""
-"06010101.xhp\n"
-"par_id3148882\n"
-"2\n"
+"02180100.xhp\n"
+"hd_id3148548\n"
+"5\n"
"help.text"
-msgid "Select the user-defined dictionaries and set the rules for the spellchecking."
-msgstr "Chọn những từ điển tự xác định và đặt các quy tắc kiểm tra chính tả."
+msgid "Application:"
+msgstr "Ứng dụng:"
-#: 05290400.xhp
+#: 02180100.xhp
msgctxt ""
-"05290400.xhp\n"
-"tit\n"
+"02180100.xhp\n"
+"par_id3154751\n"
+"6\n"
"help.text"
-msgid "Exit Group"
-msgstr "Ra nhóm"
+msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_APP\">Lists the application that last saved the source file.</ahelp>"
+msgstr "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_APP\">Hiển thị ứng dụng mới lưu tập tin nguồn.</ahelp>"
-#: 05290400.xhp
+#: 02180100.xhp
msgctxt ""
-"05290400.xhp\n"
-"hd_id3157552\n"
-"1\n"
+"02180100.xhp\n"
+"hd_id3155338\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Ra nhóm\">Ra nhóm</link>"
+msgid "File:"
+msgstr "Tập tin:"
-#: 05290400.xhp
+#: 02180100.xhp
msgctxt ""
-"05290400.xhp\n"
-"par_id3147294\n"
-"2\n"
+"02180100.xhp\n"
+"par_id3153527\n"
+"8\n"
"help.text"
-msgid "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Exits the group, so that you can no longer edit the individual objects in the group.</ahelp></variable> If you are in a nested group, only the nested group is closed."
-msgstr "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Rời khỏi nhóm, vì vậy bạn không còn có khả năng chỉnh sửa lại mỗi đối tượng riêng trong nhóm.</ahelp></variable> Nếu con trỏ nằm trong nhóm lồng nhau, chỉ nhóm lồng nhau bị đóng."
+msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_TOPIC\">Lists the path to the source file.</ahelp>"
+msgstr "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_TOPIC\">Hiển thị đường dẫn tới tập tin nguồn.</ahelp>"
-#: 05290400.xhp
+#: 02180100.xhp
msgctxt ""
-"05290400.xhp\n"
-"par_id3153124\n"
+"02180100.xhp\n"
+"hd_id3153577\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Nhóm\">Nhóm</link>"
+msgid "Section"
+msgstr "Phần"
-#: 05290400.xhp
+#: 02180100.xhp
msgctxt ""
-"05290400.xhp\n"
-"par_id3148520\n"
+"02180100.xhp\n"
+"par_id3146958\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit Group\">Edit Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Sửa nhóm\">Sửa nhóm</link>"
+msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_ITEM\">Lists the section that the link refers to in the source file. If you want, you can enter a new section here.</ahelp>"
+msgstr "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_ITEM\">Hiển thị phần đến đó liên kết tham chiếu trong tập tin nguồn. Bạn cũng có thể nhập vào đây một phần mới.</ahelp>"
-#: 05290100.xhp
+#: 02190000.xhp
msgctxt ""
-"05290100.xhp\n"
+"02190000.xhp\n"
"tit\n"
"help.text"
-msgid "Group"
-msgstr "Nhóm"
+msgid "Plug-in"
+msgstr "Phần bổ sung"
-#: 05290100.xhp
+#: 02190000.xhp
msgctxt ""
-"05290100.xhp\n"
-"hd_id3152823\n"
-"1\n"
+"02190000.xhp\n"
+"bm_id3146946\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Nhóm\">Nhóm</link>"
+msgid "<bookmark_value>plug-ins; activating and deactivating</bookmark_value><bookmark_value>activating;plug-ins</bookmark_value><bookmark_value>deactivating; plug-ins</bookmark_value>"
+msgstr "<bookmark_value>phần bổ sung; bật/tắt</bookmark_value><bookmark_value>kích hoạt;phần bổ sung</bookmark_value><bookmark_value>hủy kích hoạt; phần bổ sung</bookmark_value>"
-#: 05290100.xhp
+#: 02190000.xhp
msgctxt ""
-"05290100.xhp\n"
-"par_id3154689\n"
-"2\n"
+"02190000.xhp\n"
+"hd_id3146946\n"
+"1\n"
"help.text"
-msgid "<variable id=\"gruppierentext\"><ahelp hid=\".uno:FormatGroup\" visibility=\"visible\">Groups the selected objects, so that they can be moved as a single object.</ahelp></variable>"
-msgstr "<variable id=\"gruppierentext\"><ahelp hid=\".uno:FormatGroup\" visibility=\"visible\">Nhóm lại các đối tượng đã chọn, để di chuyển dưới dạng một đối tượng riêng lẻ.</ahelp></variable>"
+msgid "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Plug-in</link>"
+msgstr "<link href=\"text/shared/01/02190000.xhp\" name=\"Phần bổ sung\">Phần bổ sung</link>"
-#: 05290100.xhp
+#: 02190000.xhp
msgctxt ""
-"05290100.xhp\n"
-"par_id3150008\n"
-"3\n"
+"02190000.xhp\n"
+"par_id3154863\n"
+"2\n"
"help.text"
-msgid "The properties of individual objects are maintained even after you group the objects. You can nest groups, that is, you can have a group within a group."
-msgstr "Các thuộc tính của mỗi đối tượng vẫn còn được bảo tồn, ngay cả sau khi bạn nhóm lại các đối tượng. Bạn cũng có thể lồng nhau các nhóm: đặt nhóm này bên trong nhóm khác."
+msgid "<ahelp hid=\".uno:PlugInsActive\">Allows you to edit <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link> in your file. Choose this command to enable or disable this feature. When enabled, a check mark appears beside this command, and you find commands to edit the plug-in in its context menu. When disabled, you find commands to control the plug-in in its context menu.</ahelp>"
+msgstr "<ahelp hid=\".uno:PlugInsActive\">Cho phép bạn chỉnh sửa các <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"phần bổ sung\">phần bổ sung</link> nằm trong tập tin. Chọn lệnh này để bật/tắt tính năng này. Bật thì bạn thấy dấu kiểm (√) bên cạnh lệnh này, và các lệnh để chỉnh sửa phần bổ sung trong trình đơn ngữ cảnh của lệnh này. Tắt thì bạn không thấy dấu kiểm, và trình đơn ngữ cảnh chứa các lệnh để điều khiển phần bổ sung.</ahelp>"
-#: 06010600.xhp
+#: 02200000.xhp
msgctxt ""
-"06010600.xhp\n"
+"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Chinese Conversion"
-msgstr ""
-
-#: 06010600.xhp
-msgctxt ""
-"06010600.xhp\n"
-"bm_id49745\n"
-"help.text"
-msgid "<bookmark_value>Chinese writing systems</bookmark_value><bookmark_value>simplified Chinese;conversion to traditional Chinese</bookmark_value><bookmark_value>traditional Chinese;conversion to simplified Chinese</bookmark_value>"
-msgstr "<bookmark_value>hệ thống viết tiếng Trung</bookmark_value><bookmark_value>tiếng Trung phổ thông;dịch sang tiếng Trung truyền thống</bookmark_value><bookmark_value>tiếng Trung truyền thống;dịch sang tiếng Trung phổ thông</bookmark_value>"
+msgid "Object"
+msgstr "Đối tượng"
-#: 06010600.xhp
+#: 02200000.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10547\n"
+"02200000.xhp\n"
+"hd_id3146959\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010600.xhp\">Chinese Conversion</link>"
-msgstr "<link href=\"text/shared/01/06010600.xhp\">Dịch tiếng Trung</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Đối tượng\">Đối tượng</link>"
-#: 06010600.xhp
+#: 02200000.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10557\n"
+"02200000.xhp\n"
+"par_id3154840\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted.</ahelp> You can only use this command if you enable Asian language support in <emph>Tools - Options - Language Settings - Languages</emph>."
-msgstr "<ahelp hid=\".\">Dịch văn bản tiếng Trung đã chọn từ hệ thống viết tiếng Trung này sang hệ thống viết tiếng Trung khác.</ahelp> Để sử dụng lệnh này, trước tiên bạn cần phải hiệu lực hỗ trợ ngôn ngữ Châu Á dưới mục trình đơn <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>."
+msgid "<ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <emph>Insert - Object </emph>command.</ahelp>"
+msgstr "<ahelp hid=\".uno:ObjectMenue\">Trong tập tin, cho phép bạn chỉnh sửa một đối tượng đã chọn mà bạn đã chèn bằng lệnh <emph>Chèn > Đối tượng</emph>.</ahelp>"
-#: 06010600.xhp
+#: 02200000.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10572\n"
+"02200000.xhp\n"
+"par_id3153551\n"
"help.text"
-msgid "Conversion direction"
-msgstr ""
+msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
+msgstr "<link href=\"text/shared/01/04150000.xhp\" name=\"Chèn > Đối tượng\">Chèn > Đối tượng</link>"
-#: 06010600.xhp
+#: 02200000.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10576\n"
+"02200000.xhp\n"
+"par_id1717886\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the conversion direction.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn hướng về đó cần dịch.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the object to the original size.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hoàn nguyên kích cỡ của đối tượng về kích cỡ gốc.</ahelp>"
-#: 06010600.xhp
+#: 02200100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10579\n"
+"02200100.xhp\n"
+"tit\n"
"help.text"
-msgid "Traditional Chinese to Simplified Chinese"
-msgstr "Tiếng Trung phồn thể sang giản thể"
+msgid "Edit"
+msgstr "Sửa"
-#: 06010600.xhp
+#: 02200100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN1057D\n"
+"02200100.xhp\n"
+"bm_id3145138\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts traditional Chinese text characters to simplified Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
-msgstr "<ahelp hid=\".\">Dịch các ký tự tiếng Trung truyền thống sang ký tự tiếng Trung phổ thông. Nhấn vào nút <emph>OK</emph> để dịch đoạn văn đã chọn. Chưa lựa chọn văn bản thì dịch toàn tài liệu.</ahelp>"
+msgid "<bookmark_value>objects; editing</bookmark_value><bookmark_value>editing; objects</bookmark_value>"
+msgstr "<bookmark_value>đối tượng; chỉnh sửa</bookmark_value><bookmark_value>chỉnh sửa; đối tượng</bookmark_value>"
-#: 06010600.xhp
+#: 02200100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10580\n"
+"02200100.xhp\n"
+"hd_id3145138\n"
+"1\n"
"help.text"
-msgid "Simplified Chinese to Traditional Chinese"
-msgstr "Tiếng Trung giản thể sang phồn thể"
+msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/shared/01/02200100.xhp\" name=\"Sửa\">Sửa</link>"
-#: 06010600.xhp
+#: 02200100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10584\n"
+"02200100.xhp\n"
+"par_id3150008\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts simplified Chinese text characters to traditional Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
-msgstr "<ahelp hid=\".\">Dịch các ký tự tiếng Trung phổ thông sang ký tự tiếng Trung truyền thống. Nhấn vào nút <emph>OK</emph> để dịch đoạn văn đã chọn. Chưa lựa chọn văn bản thì dịch toàn tài liệu.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object </emph>command.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"\">Trong tập tin, cho phép bạn chỉnh sửa một đối tượng đã chọn mà bạn đã chèn bằng lệnh <emph>Chèn > Đối tượng</emph>.</ahelp>"
-#: 06010600.xhp
+#: 02200200.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN1058E\n"
+"02200200.xhp\n"
+"tit\n"
"help.text"
-msgid "Common terms"
-msgstr "Thuật ngữ chung"
+msgid "Open"
+msgstr "Mở"
-#: 06010600.xhp
+#: 02200200.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10592\n"
+"02200200.xhp\n"
+"bm_id3085157\n"
"help.text"
-msgid "<ahelp hid=\".\">Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters.</ahelp>"
-msgstr "<ahelp hid=\".\">Thuật ngữ chung là từ có cùng một nghĩa bằng tiếng Trung kiểu truyền thống và phổ thông, nhưng được viết bằng ký tự khác nhau.</ahelp>"
+msgid "<bookmark_value>objects; opening</bookmark_value><bookmark_value>opening; objects</bookmark_value>"
+msgstr "<bookmark_value>đối tượng; mở</bookmark_value><bookmark_value>mở; đối tượng</bookmark_value>"
-#: 06010600.xhp
+#: 02200200.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10595\n"
+"02200200.xhp\n"
+"hd_id3085157\n"
+"1\n"
"help.text"
-msgid "Convert Common Terms"
-msgstr ""
+msgid "<link href=\"text/shared/01/02200200.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/02200200.xhp\" name=\"Mở\">Mở</link>"
-#: 06010600.xhp
+#: 02200200.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10599\n"
+"02200200.xhp\n"
+"par_id3151097\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts words with two or more characters that are in the list of common terms. After the list is scanned, the remaining text is converted character by character.</ahelp>"
-msgstr "<ahelp hid=\".\">Dịch các từ chứa hai hoặc hơn nữa ký tự mà nằm trong danh sách các thuật ngữ chung. Một khi quét danh sách này, văn bản còn lại được dịch từng ký tự.</ahelp>"
+msgid "Opens the selected OLE object with the program that the object was created in."
+msgstr "Mở đối tượng OLE đã chọn, dùng chương trình đầu tiên tạo đối tượng đó."
-#: 06010600.xhp
+#: 02200200.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN1059C\n"
+"02200200.xhp\n"
+"par_id3154230\n"
+"3\n"
"help.text"
-msgid "Edit terms"
-msgstr "Sửa thuật ngữ"
+msgid "This menu command is inserted into <emph>Edit – Objects</emph> submenu by the application that created the linked object. Depending on the application, the “Open” command for the OLE object might have a different name."
+msgstr "Lệnh trình đơn này được chèn vào trình đơn phụ <emph>Sửa > Đối tượng</emph> bởi ứng dụng đã tạo đối tượng đã liên kết. Phụ thuộc vào ứng dụng, nhãn « Mở » trên lệnh đối tượng OLE này có thể trở thành nhãn khác."
-#: 06010600.xhp
+#: 02200200.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN105A0\n"
+"02200200.xhp\n"
+"par_id3149760\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06010601.xhp\">Edit Dictionary</link> dialog where you can edit the list of conversion terms.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/01/06010601.xhp\">Sửa từ điển</link> trong đó bạn có thể chỉnh sửa danh sách các thuật ngữ dịch.</ahelp>"
+msgid "After you have completed your changes, close the source file for the OLE object. The OLE object is then updated in the container document."
+msgstr "Thay đổi xong thì bạn đóng tập tin nguồn cho đối tượng OLE. Vì thế đối tượng OLE được cập nhật trong tài liệu chứa."
#: 02210101.xhp
msgctxt ""
@@ -14404,1459 +10392,2047 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2:CHECKBOX:TP_FRAMEPROPERTIES:CB_MARGINHEIGHTDEFAULT\">Applies the default spacing.</ahelp>"
msgstr "<ahelp hid=\"SFX2:CHECKBOX:TP_FRAMEPROPERTIES:CB_MARGINHEIGHTDEFAULT\">Áp dụng khoảng cách mặc định.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
+"02220000.xhp\n"
"tit\n"
"help.text"
-msgid "Header"
-msgstr "Đầu trang"
+msgid "ImageMap Editor"
+msgstr "Sửa đồ thị ảnh"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3155599\n"
+"02220000.xhp\n"
+"hd_id3150502\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040300.xhp\" name=\"Header\">Header</link>"
-msgstr "<link href=\"text/shared/01/05040300.xhp\" name=\"Đầu trang\">Đầu trang</link>"
+msgid "ImageMap Editor"
+msgstr "Sửa đồ thị ảnh"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3156027\n"
+"02220000.xhp\n"
+"par_id3159194\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_HEADER\">Adds a header to the current page style. A header is an area in the top page margin, where you can add text or graphics.</ahelp>"
-msgstr "<ahelp hid=\"HID_FORMAT_HEADER\">Thêm vào kiểu dáng trang hiện thời một phần đầu trang. Đầu trang là một vùng trong lề bên trên trang, vào đó bạn có thể thêm văn bản hay ảnh.</ahelp>"
+msgid "<variable id=\"imagemaptext\"><ahelp hid=\"SVX:FLOATINGWINDOW:RID_SVXDLG_IMAP\">Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots.</ahelp></variable>"
+msgstr "<variable id=\"imagemaptext\"><ahelp hid=\"SVX:FLOATINGWINDOW:RID_SVXDLG_IMAP\">Cho bạn có khả năng đính địa chỉ URL kèm vùng riêng (được gọi là điểm nóng) trên một ảnh hay nhóm các ảnh. Sơ đồ ảnh là một nhóm chứa một hay nhiều điểm nóng.</ahelp></variable>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150693\n"
-"33\n"
+"02220000.xhp\n"
+"par_id3149751\n"
+"3\n"
"help.text"
-msgid "If you want, you can also add borders or a background fill to a header."
-msgstr "Bạn cũng có thể thêm vào đầu trang viền hay nền đã tô đầy."
+msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot."
+msgstr "Bạn có khả năng vẽ ba kiểu điểm nóng: hình chữ nhật, hình bầu dục và hình đa giác. Khi bạn nhấn vào một điểm nóng nào đó, địa chỉ URL của nó được mở trong cửa sổ hay khung bạn ghi rõ trong trình duyệt Web. Cũng có thể ghi rõ chuỗi được hiển thị khi con trỏ nằm trên điểm nóng."
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153821\n"
-"32\n"
+"02220000.xhp\n"
+"hd_id3154317\n"
+"5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To add a header to the current page style, select <emph>Header on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để thêm vào kiểu dáng trang hiện thời một phần đầu trang, bật tùy chọn <emph>Hiện đầu trang</emph>, sau đó nhấn vào nút <emph>OK</emph>. </caseinline></switchinline>"
+msgid "Apply"
+msgstr "Áp dụng"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153827\n"
-"31\n"
+"02220000.xhp\n"
+"par_id3150506\n"
+"7\n"
"help.text"
-msgid "If you want to extend a header into the page margins, insert a frame into the header."
-msgstr "Muốn kéo dài phần đầu trang qua lề trang thì chèn một khung vào đầu trang."
+msgid "<ahelp hid=\"HID_IMAPDLG_APPLY\">Applies the changes that you made to the image map.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_APPLY\">Áp dụng các thay đổi bạn đã làm trên sơ đồ ảnh.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154046\n"
-"29\n"
+"02220000.xhp\n"
+"par_id3149811\n"
"help.text"
-msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
-msgstr "Để di chuyển nhanh dấu nhắc từ trong văn bản sang \"Đầu trang\" hay \"Cuối trang\", nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down. Nhấn nút đó một lần nữa để chuyển dấu nhắc về lại văn bản chính."
+msgid "<image id=\"img_id3147275\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147275\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147275\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147275\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3152360\n"
-"4\n"
+"02220000.xhp\n"
+"par_id3153321\n"
+"6\n"
"help.text"
-msgid "Header"
-msgstr "Đầu trang"
+msgid "Apply"
+msgstr "Áp dụng"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154924\n"
-"5\n"
+"02220000.xhp\n"
+"hd_id3149579\n"
+"8\n"
"help.text"
-msgid "Set the properties of the header."
-msgstr "Đặt các thuộc tính về đầu trang."
+msgid "Open"
+msgstr "Mở"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3147304\n"
-"7\n"
+"02220000.xhp\n"
+"par_id3155829\n"
+"10\n"
"help.text"
-msgid "Header on"
-msgstr "Hiện đầu trang"
+msgid "<ahelp hid=\"HID_IMAPDLG_OPEN\">Loads an existing image map in the <emph>MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_OPEN\">Nạp một sơ đồ ảnh đã tồn tại theo định dạng tập tin <emph>MAP-CERN, MAP-NCSA</emph> hay <emph>SIP StarView ImageMap</emph>.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154388\n"
-"8\n"
+"02220000.xhp\n"
+"par_id3149795\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_TURNON\">Adds a header to the current page style.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_TURNON\">Thêm vào kiểu dáng trang hiện thời một phần đầu trang.</ahelp>"
+msgid "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3154936\n"
-"21\n"
+"02220000.xhp\n"
+"par_id3159158\n"
+"9\n"
"help.text"
-msgid "Same content left/right"
-msgstr "Cùng nội dung bên trái/phải"
+msgid "Open"
+msgstr "Mở"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154938\n"
-"22\n"
+"02220000.xhp\n"
+"hd_id3147618\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_SHARED\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different header to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_SHARED\">Các trang lẻ và trang chẵn đều có cùng nội dung.<switchinline select=\"appl\"><caseinline select=\"CALC\"> Để gán phần đầu trang khác nhau cho các trang lẻ và các trang chẵn, tắt tùy chọn này, sau đó nhấn vào nút <emph>Sửa</emph>. </caseinline></switchinline></ahelp>"
+msgid "Save"
+msgstr "Lưu"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3154937\n"
-"21\n"
+"02220000.xhp\n"
+"par_id3153626\n"
+"13\n"
"help.text"
-msgid "Same content on first page"
-msgstr ""
+msgid "<ahelp hid=\"HID_IMAPDLG_SAVEAS\">Saves the image map in the<emph> MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_SAVEAS\">Lưu sơ đồ ảnh theo định dạng tập tin <emph>MAP-CERN, MAP-NCSA</emph> hay <emph>SIP StarView ImageMap</emph>.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154939\n"
-"22\n"
+"02220000.xhp\n"
+"par_id3154280\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_SHARED_FIRST\">First and even/odd pages share the same content.</ahelp>"
-msgstr ""
+msgid "<image id=\"img_id3154923\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154923\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154923\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154923\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3145202\n"
-"17\n"
+"02220000.xhp\n"
+"par_id3152772\n"
+"12\n"
"help.text"
-msgid "Left margin"
-msgstr "Lề trái"
+msgid "Save"
+msgstr "Lưu"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150449\n"
-"18\n"
+"02220000.xhp\n"
+"hd_id3150791\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_LMARGIN\">Enter the amount of space to leave between the left edge of the page and the left edge of the header.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_LMARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên trái của trang và cạnh bên trái của phần đầu trang.</ahelp>"
+msgid "Select"
+msgstr "Chọn"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3153351\n"
-"19\n"
+"02220000.xhp\n"
+"par_id3154073\n"
+"16\n"
"help.text"
-msgid "Right margin"
-msgstr "Lề phải"
+msgid "<ahelp hid=\"HID_IMAPDLG_SELECT\">Selects a hotspot in the image map for editing.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_SELECT\">Trên sơ đồ ảnh, chọn một điểm nóng để chỉnh sửa.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3157322\n"
-"20\n"
+"02220000.xhp\n"
+"par_id3156214\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_RMARGIN\">Enter the amount of space to leave between the right edge of the page and the right edge of the header.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_RMARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên phải của trang và cạnh bên phải của phần đầu trang.</ahelp>"
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153192\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153192\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3148672\n"
-"9\n"
+"02220000.xhp\n"
+"par_id3153351\n"
+"15\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "Select"
+msgstr "Chọn"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153970\n"
-"10\n"
+"02220000.xhp\n"
+"hd_id3149807\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_DIST\">Enter the amount of space that you want to maintain between the bottom edge of the header and the top edge of the document text.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_DIST\">Nhập khoảng cách cần bảo tồn giữa cạnh bên dưới của phần đầu trang và cạnh bên trên của văn bản tài liệu.</ahelp>"
+msgid "Rectangle"
+msgstr "Chữ nhật"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3154330\n"
-"35\n"
+"02220000.xhp\n"
+"par_id3150870\n"
+"19\n"
"help.text"
-msgid "Use dynamic spacing"
-msgstr "Giãn cách động"
+msgid "<ahelp hid=\"HID_IMAPDLG_RECT\">Draws a rectangular hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_RECT\">Vẽ một điểm nóng hình chữ nhật theo hộp bạn kéo trên ảnh. Một khi vẽ thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3148453\n"
-"36\n"
+"02220000.xhp\n"
+"par_id3150769\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_HEADER_CB_DYNSPACING\">Overrides the <emph>Spacing </emph>setting, and allows the header to expand into the area between the header and the document text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_HEADER_CB_DYNSPACING\">Có quyền cao hơn thiết lập <emph>Giãn cách</emph>, và cho phép bạn mở rộng vào vùng giữa phần đầu trang và văn bản tài liệu.</ahelp>"
+msgid "<image id=\"img_id3154297\" src=\"cmd/sc_rect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154297\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154297\" src=\"cmd/sc_rect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154297\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3150290\n"
-"13\n"
+"02220000.xhp\n"
+"par_id3157894\n"
+"18\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "Rectangle"
+msgstr "Chữ nhật"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3155429\n"
-"14\n"
+"02220000.xhp\n"
+"hd_id3153518\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_HEIGHT\">Enter the height that you want for the header.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_HEIGHT\">Nhập chiều cao bạn muốn đặt cho phần đầu trang.</ahelp>"
+msgid "Ellipse"
+msgstr "Bầu dục"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3156543\n"
-"15\n"
+"02220000.xhp\n"
+"par_id3145591\n"
+"22\n"
"help.text"
-msgid "AutoFit height"
-msgstr "Bề cao tự động vừa"
+msgid "<ahelp hid=\"HID_IMAPDLG_CIRCLE\">Draws an elliptical hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_CIRCLE\">Vẽ một điểm nóng hình bầu dục theo hộp bạn kéo trên ảnh. Một khi vẽ thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153095\n"
-"16\n"
+"02220000.xhp\n"
+"par_id3155308\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_HEIGHT_DYN\">Automatically adjusts the height of the header to fit the content that you enter.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_HEIGHT_DYN\">Tự động điều chỉnh chiều cao của phần đầu trang để vừa nội dung bạn nhập.</ahelp>"
+msgid "<image id=\"img_id3154011\" src=\"cmd/sc_ellipse.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154011\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154011\" src=\"cmd/sc_ellipse.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154011\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3145271\n"
-"24\n"
+"02220000.xhp\n"
+"par_id3153212\n"
+"21\n"
"help.text"
-msgid "More"
-msgstr "Nhiều"
+msgid "Ellipse"
+msgstr "Bầu dục"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3145367\n"
+"02220000.xhp\n"
+"hd_id3153573\n"
+"23\n"
+"help.text"
+msgid "Polygon"
+msgstr "Đa giác"
+
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"par_id3153190\n"
"25\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HEADER:BTN_EXTRAS\">Defines a border, a background color, or a background pattern for the header.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HEADER:BTN_EXTRAS\">Xác định cho phần đầu trang một viền, màu nền hay mẫu nền.</ahelp>"
+msgid "<ahelp hid=\"HID_IMAPDLG_POLY\">Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_POLY\">Vẽ một điểm nóng hình đa giác trên ảnh. Nhấn vào biểu tượng này, kéo trên ảnh, sau đó nhấn chuột lại để xác định một mặt của hình đa giác. Di chuyển con trỏ sang vị trí dự định kết thúc mặt kế tiếp, rồi nhấn chuột lần nữa. Lặp lại đến khi bạn đã vẽ tất cả các mặt của hình đa giác. Một khi vẽ xong, nhấn-đôi để đóng hình đa giác. Sau đó thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3155306\n"
-"27\n"
+"02220000.xhp\n"
+"par_id3148577\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sửa </caseinline></switchinline>"
+msgid "<image id=\"img_id3156005\" src=\"cmd/sc_polygon.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156005\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156005\" src=\"cmd/sc_polygon.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156005\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id0609200910261473\n"
+"02220000.xhp\n"
+"par_id3153364\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit header text.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm hoặc chỉnh sửa văn bản đầu trang.</ahelp>"
+msgid "Polygon"
+msgstr "Đa giác"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3145749\n"
-"28\n"
+"02220000.xhp\n"
+"hd_id3153140\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HEADER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit\">Add or edit</link> header text. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HEADER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Thêm hay Sửa\">Thêm hay Sửa</link> văn bản phần đầu. </caseinline></switchinline></ahelp>"
+msgid "Freeform Polygon"
+msgstr "Đa giác có dạng tự do"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3163716\n"
+"02220000.xhp\n"
+"par_id3147046\n"
+"42\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04220000.xhp\" name=\"Headers\">Headers</link>"
-msgstr "<link href=\"text/swriter/01/04220000.xhp\" name=\"Đầu trang\">Đầu trang</link>"
+msgid "<ahelp hid=\"HID_IMAPDLG_FREEPOLY\">Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_FREEPOLY\">Vẽ một điểm nóng dựa vào hình đa giác có dạng tự do. Nhấn vào biểu tượng này, sau đó di chuyển con trỏ sang vị trí bạn muốn bắt đầu vẽ điểm nóng. Kéo một đường có dạng tự do, sau đó buông nút ra để đóng hình. Sau đó thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150032\n"
+"02220000.xhp\n"
+"par_id3153877\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Thay đổi đơn vị đo\">Thay đổi đơn vị đo</link>"
+msgid "<image id=\"img_id3148386\" src=\"cmd/sc_freeline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148386\" src=\"cmd/sc_freeline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148386\">Biểu tượng</alt></image>"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150873\n"
+"02220000.xhp\n"
+"par_id3159128\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
-msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Viền\">Viền</link>"
+msgid "Freeform Polygon"
+msgstr "Đa giác có dạng tự do"
-#: 05040300.xhp
+#: 02220000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3147326\n"
+"02220000.xhp\n"
+"hd_id3145251\n"
+"44\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Nền\">Nền</link>"
+msgid "Edit Points"
+msgstr "Sửa điểm"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"par_id3153745\n"
+"45\n"
"help.text"
-msgid "Filter Selection"
-msgstr "Chọn bộ lọc"
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYEDIT\">Lets you change the shape of the selected hotspot by editing the anchor points.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_POLYEDIT\">Cho phép bạn sửa đổi hình của điểm nóng đã chọn, bằng cách chỉnh sửa điểm neo.</ahelp>"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"02220000.xhp\n"
+"par_id3145801\n"
"help.text"
-msgid "Filter Selection"
-msgstr "Chọn bộ lọc"
+msgid "<image id=\"img_id3150113\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150113\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150113\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150113\">Biểu tượng</alt></image>"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3154926\n"
-"2\n"
+"02220000.xhp\n"
+"par_id3153416\n"
+"46\n"
"help.text"
-msgid "Allows you to select an import filter."
-msgstr "Cho phép bạn chọn một bộ lọc nhập khẩu."
+msgid "Edit points"
+msgstr "Sửa điểm"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"hd_id3151100\n"
-"4\n"
+"02220000.xhp\n"
+"hd_id3155600\n"
+"47\n"
"help.text"
-msgid "Filter list"
-msgstr "Danh sách bộ lọc"
+msgid "Move Points"
+msgstr "Dời điểm"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3159201\n"
-"5\n"
+"02220000.xhp\n"
+"par_id3151318\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_FILTER_SELECT:LB_DLG_LISTBOX\">Select the import filter for the file that you want to open.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:LISTBOX:DLG_FILTER_SELECT:LB_DLG_LISTBOX\">Chọn bộ lọc nhập khẩu cho tập tin bạn muốn mở.</ahelp>"
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYMOVE\">Lets you move the individual anchor points of the selected hotspot.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_POLYMOVE\">Cho phép bạn di chuyển mỗi điểm neo của điểm nóng đã chọn.</ahelp>"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3152918\n"
-"6\n"
+"02220000.xhp\n"
+"par_id3146971\n"
"help.text"
-msgid "If $[officename] does not recognize the file type of the document that your want to open, try any of the following:"
-msgstr "Nếu $[officename] không nhận dạng kiểu tập tin của tài liệu bạn muốn mở, làm một của những hành động này:"
+msgid "<image id=\"img_id3148570\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148570\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148570\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148570\">Biểu tượng</alt></image>"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3152924\n"
-"7\n"
+"02220000.xhp\n"
+"par_id3153839\n"
+"49\n"
"help.text"
-msgid "Select the import filter from the list."
-msgstr "Chọn bộ lọc nhập khẩu trong danh sách."
+msgid "Move Points"
+msgstr "Dời điểm"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3155892\n"
-"9\n"
+"02220000.xhp\n"
+"hd_id3145162\n"
+"50\n"
"help.text"
-msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a (*.doc) extension for $[officename] to use the appropriate filter."
-msgstr "Kiểm tra xem phần mở rộng tập tin tương ứng với kiểu tài liệu. Chẳng hạn, tài liệu Microsoft Word phải có phần mở rộng « .doc » để $[officename] dùng bộ lọc thích hợp. (Để tìm thêm thông tin về bất cứ phần mở rộng tập tin nào, xem địa chỉ \"http://filext.com/\".)"
+msgid "Insert Points"
+msgstr "Chèn điểm"
-#: 01020103.xhp
+#: 02220000.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3147571\n"
-"8\n"
+"02220000.xhp\n"
+"par_id3156355\n"
+"51\n"
"help.text"
-msgid "Install a missing import filter with the <emph>$[officename] Setup</emph> program."
-msgstr "Cài đặt bộ lọc nhập khẩu thêm, dùng chương trình thiết lập <emph>$[officename] Setup</emph>."
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYINSERT\">Adds an anchor point where you click on the outline of the hotspot.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_POLYINSERT\">Thêm một điểm neo vào vị trí ở đó bạn nhận chuột trên nét ngoài của điểm nóng.</ahelp>"
-#: 06050200.xhp
+#: 02220000.xhp
msgctxt ""
-"06050200.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"par_id3150749\n"
"help.text"
-msgid "Numbering Style"
-msgstr "Kiểu dáng Đánh số"
+msgid "<image id=\"img_id3146793\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146793\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146793\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146793\">Biểu tượng</alt></image>"
-#: 06050200.xhp
+#: 02220000.xhp
msgctxt ""
-"06050200.xhp\n"
-"hd_id3146807\n"
-"1\n"
+"02220000.xhp\n"
+"par_id3148915\n"
+"52\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering Style\">Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050200.xhp\" name=\"Kiểu dáng Đánh số\">Kiểu dáng Đánh số</link>"
+msgid "Insert Points"
+msgstr "Chèn điểm"
-#: 06050200.xhp
+#: 02220000.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3148765\n"
-"2\n"
+"02220000.xhp\n"
+"hd_id3083283\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different numbering styles that you can apply.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị các kiểu dáng đánh số khác nhau mà bạn có thể áp dụng.</ahelp>"
+msgid "Delete Points"
+msgstr "Xoá điểm"
-#: 06050200.xhp
+#: 02220000.xhp
msgctxt ""
-"06050200.xhp\n"
-"hd_id3147000\n"
-"3\n"
+"02220000.xhp\n"
+"par_id3163824\n"
+"54\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYDELETE\">Deletes the selected anchor point.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_POLYDELETE\">Xoá điểm neo đã chọn.</ahelp>"
-#: 06050200.xhp
+#: 02220000.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3151100\n"
-"4\n"
+"02220000.xhp\n"
+"par_id3149021\n"
"help.text"
-msgid "<ahelp hid=\"HID_VALUESET_SINGLENUM\">Click the numbering style that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"HID_VALUESET_SINGLENUM\">Nhấn vào kiểu dáng đánh số bạn muốn dùng.</ahelp>"
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Biểu tượng</alt></image>"
-#: 06050200.xhp
+#: 02220000.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3149355\n"
+"02220000.xhp\n"
+"par_id3147341\n"
+"55\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "Delete Points"
+msgstr "Xoá điểm"
-#: 06050200.xhp
+#: 02220000.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3152918\n"
+"02220000.xhp\n"
+"hd_id3166448\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "Active"
+msgstr "Hoạt động"
-#: 01100300.xhp
+#: 02220000.xhp
msgctxt ""
-"01100300.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"par_id3146918\n"
+"28\n"
"help.text"
-msgid "Custom Properties"
-msgstr "Thuộc tính riêng"
+msgid "<ahelp hid=\"HID_IMAPDLG_ACTIVE\">Disables or enables the hyperlink for the selected hotspot. A disabled hotspot is transparent.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_ACTIVE\">Bật/tắt siêu liên kết cho điểm nóng đã chọn. Điểm nóng bị tắt cũng trong suốt thì dễ phân biệt.</ahelp>"
-#: 01100300.xhp
+#: 02220000.xhp
msgctxt ""
-"01100300.xhp\n"
-"hd_id3155069\n"
-"1\n"
+"02220000.xhp\n"
+"par_id3155901\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100300.xhp\" name=\"Custom Properties\">Custom Properties</link>"
-msgstr "<link href=\"text/shared/01/01100300.xhp\" name=\"Thuộc tính tập tin\">Thuộc tính tập tin</link>"
+msgid "<image id=\"img_id3145232\" src=\"svx/res/id016.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145232\" src=\"svx/res/id016.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Biểu tượng</alt></image>"
-#: 01100300.xhp
+#: 02220000.xhp
msgctxt ""
-"01100300.xhp\n"
-"par_id3155934\n"
-"9\n"
+"02220000.xhp\n"
+"par_id3155959\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_DOCINFOUSER\">Allows you to assign custom information fields to your document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DOCINFOUSER\">Cho phép bạn gán cho tài liệu các trường thông tin riêng.</ahelp>"
+msgid "Active"
+msgstr "Hoạt động"
-#: 01100300.xhp
+#: 02220000.xhp
msgctxt ""
-"01100300.xhp\n"
-"hd_id3151234\n"
-"2\n"
+"02220000.xhp\n"
+"hd_id3153966\n"
+"38\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "Macro"
+msgstr "Vĩ lệnh"
-#: 01100300.xhp
+#: 02220000.xhp
msgctxt ""
-"01100300.xhp\n"
-"par_id3152551\n"
-"3\n"
+"02220000.xhp\n"
+"par_id3151250\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFOUSER:ED_INFO4\">Enter your custom contents. You can change the name, type, and contents of each row. You can add or remove rows. The items will be exported as metadata to other file formats.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_DOCINFOUSER:ED_INFO4\">Điền vào nội dung tùy chọn của bạn. Bạn có thể thay đổi tên, lọai và nội dung của các hàng, cũng như thêm vào hay xóa chúng. Những thông này sẽ được xuất dưới dạng thông tin đặc tả trong các định dạng tập tin khác.</ahelp>"
+msgid "<ahelp hid=\"HID_IMAPDLG_MACRO\">Lets you assign a macro that runs when you click the selected hotspot in a browser.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_MACRO\">Cho bạn có khả năng gán một vĩ lệnh sẽ chạy khi bạn nhấn vào điểm nóng này trong trình duyệt Web.</ahelp>"
-#: 01100300.xhp
+#: 02220000.xhp
msgctxt ""
-"01100300.xhp\n"
-"hd_id0811200812071796\n"
+"02220000.xhp\n"
+"par_id3145769\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153922\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153922\">Biểu tượng</alt></image>"
-#: 01100300.xhp
+#: 02220000.xhp
msgctxt ""
-"01100300.xhp\n"
-"par_id0811200812071785\n"
+"02220000.xhp\n"
+"par_id3149239\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to add a new row to the Properties list.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn chuột để thêm hàng mới vào danh sách Thuộc tính.</ahelp>"
+msgid "Macro"
+msgstr "Vĩ lệnh"
-#: 03110000.xhp
+#: 02220000.xhp
msgctxt ""
-"03110000.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"hd_id3149207\n"
+"56\n"
"help.text"
-msgid "Full Screen"
-msgstr "Toàn màn hình"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 03110000.xhp
+#: 02220000.xhp
msgctxt ""
-"03110000.xhp\n"
-"bm_id3160463\n"
+"02220000.xhp\n"
+"par_id3150785\n"
+"57\n"
"help.text"
-msgid "<bookmark_value>full screen view</bookmark_value><bookmark_value>screen; full screen views</bookmark_value><bookmark_value>complete screen view</bookmark_value><bookmark_value>views;full screen</bookmark_value>"
-msgstr "<bookmark_value>xem toàn màn hình</bookmark_value><bookmark_value>màn hình; ô xem toàn màn hình</bookmark_value><bookmark_value>ô xem màn hình hoàn toàn</bookmark_value><bookmark_value>ô xem;toàn màn hình</bookmark_value>"
+msgid "<ahelp hid=\"HID_IMAPDLG_PROPERTY\">Allows you to define the properties of the selected hotspot.</ahelp>"
+msgstr "<ahelp hid=\"HID_IMAPDLG_PROPERTY\">Cho phép bạn xác định các thuộc tính về điểm nóng đã chọn.</ahelp>"
-#: 03110000.xhp
+#: 02220000.xhp
msgctxt ""
-"03110000.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"02220000.xhp\n"
+"par_id3159104\n"
"help.text"
-msgid "<link href=\"text/shared/01/03110000.xhp\" name=\"Full Screen\">Full Screen</link>"
-msgstr "<link href=\"text/shared/01/03110000.xhp\" name=\"Toàn màn hình\">Toàn màn hình</link>"
+msgid "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149735\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149735\">Biểu tượng</alt></image>"
-#: 03110000.xhp
+#: 02220000.xhp
msgctxt ""
-"03110000.xhp\n"
-"par_id3148983\n"
-"2\n"
+"02220000.xhp\n"
+"par_id3153196\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\".uno:FullScreen\">Shows or hides the menus and toolbars in Writer or Calc. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".uno:FullScreen\">Hiển thị hay ẩn các trình đơn và thanh công cụ trong mô-đun Writer hay Calc. Để ra khỏi chế độ toàn màn hình, nhấn vào nút <emph>Bật/tắt toàn màn hình</emph>.</ahelp>"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 03110000.xhp
+#: 02220000.xhp
msgctxt ""
-"03110000.xhp\n"
-"par_id3152594\n"
+"02220000.xhp\n"
+"hd_id3144418\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_FULLSCREENTOOLBOX\">In Writer and Calc, you can also use the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+J to switch between the normal and full screen mode.</ahelp>"
-msgstr "<ahelp hid=\"HID_FULLSCREENTOOLBOX\">Trong Writer và Calc, bạn cũng có thể sử dụng phím tắt <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+J để chuyển đổi giữa chế độ màn hình bình thường và chế độ toàn màn hình.</ahelp>"
+msgid "Address:"
+msgstr "Địa chỉ:"
-#: 03110000.xhp
+#: 02220000.xhp
msgctxt ""
-"03110000.xhp\n"
-"par_id3154318\n"
-"28\n"
+"02220000.xhp\n"
+"par_id3157969\n"
+"30\n"
"help.text"
-msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
-msgstr "Bạn vẫn còn có thể sử dụng phím tắt ở chế độ <emph>Toàn màn hình</emph>, mặc dù sẽ không thể sử dụng các trình đơn. <switchinline select=\"sys\"><caseinline select=\"WIN\">Để mở trình đơn <emph>Xem</emph>, bấm tổ hợp phím <item type=\"keycode\">Alt+V</item>. </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAP:CBB_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to an anchor within the document, the address should be of the form \"file:///C/document_name#anchor_name\"."
+msgstr "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAP:CBB_URL\">Nhập địa chỉ URL của tập tin nên mở khi bạn nhấn vào điểm nóng đã chọn.</ahelp> Muốn nhảy tới một neo bên trong cùng tài liệu thì nhập địa chỉ có dạng « file:///C/tên_tài_liệu#tên_neo ». (Trong tài liệu HTML, dấu thăng (#) ngụ ý phần phụ của tài liệu.)"
-#: 01170000.xhp
+#: 02220000.xhp
msgctxt ""
-"01170000.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"hd_id3146132\n"
+"31\n"
"help.text"
-msgid "Exit"
-msgstr "Thoát"
+msgid "Text:"
+msgstr "Văn bản:"
-#: 01170000.xhp
+#: 02220000.xhp
msgctxt ""
-"01170000.xhp\n"
-"bm_id3154545\n"
+"02220000.xhp\n"
+"par_id3159090\n"
+"32\n"
"help.text"
-msgid "<bookmark_value>exiting;$[officename]</bookmark_value>"
-msgstr "<bookmark_value>thoát;$[officename]</bookmark_value>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAP:EDT_TEXT\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAP:EDT_TEXT\">Hãy nhập chuỗi nên hiển thị khi con trỏ để lại trên điểm nóng trong trình duyệt Web.</ahelp> Không nhập chuỗi riêng thì trình duyệt hiển thị <emph>Địa chỉ</emph> (URL)."
-#: 01170000.xhp
+#: 02220000.xhp
msgctxt ""
-"01170000.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"02220000.xhp\n"
+"hd_id3158445\n"
+"33\n"
"help.text"
-msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit</link>"
-msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Thoát\">Thoát</link>"
+msgid "Frame:"
+msgstr "Khung:"
-#: 01170000.xhp
-#, fuzzy
+#: 02220000.xhp
msgctxt ""
-"01170000.xhp\n"
-"par_id3151299\n"
-"2\n"
+"02220000.xhp\n"
+"par_id3150208\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>"
-msgstr "<ahelp hid=\".\">Thay thế mọi lần gặp đoạn văn hay định dạng bạn muốn thay thế.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Lặp lại lệnh này đến khi thay thế tất cả các đoạn/đồ trên ảnh chiếu của bạn. </caseinline></switchinline>"
+msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name from the list."
+msgstr "Nhập tên của khung đích trong đó bạn muốn mở địa chỉ URL này. Bạn cũng có thể chọn một tên khung tiêu chuẩn trong danh sách."
-#: 01170000.xhp
+#: 02220000.xhp
msgctxt ""
-"01170000.xhp\n"
-"par_id3154184\n"
-"6\n"
+"02220000.xhp\n"
+"par_id3153231\n"
+"35\n"
"help.text"
-msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close the current document\">Close the current document</link>"
-msgstr "<link href=\"text/shared/01/01050000.xhp\" name=\"Đóng tài liệu hiện tại\">Đóng tài liệu hiện tại</link>"
+msgid "<link href=\"text/shared/01/05020400.xhp#targets\" name=\"List of frame types\">List of frame types</link>"
+msgstr ""
-#: 05230100.xhp
+#: 02220000.xhp
msgctxt ""
-"05230100.xhp\n"
+"02220000.xhp\n"
+"hd_id3150345\n"
+"36\n"
+"help.text"
+msgid "Graphic View"
+msgstr "Xem đồ họa"
+
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"par_id3150382\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_IMAPDLG_GRAPHWND\"/>Displays the image map, so that you can click and edit the hotspots."
+msgstr "<ahelp hid=\"HID_IMAPDLG_GRAPHWND\"/>Hiển thị sơ đồ ảnh, để cho bạn nhấn vào và chỉnh sửa các điểm nóng."
+
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"par_id3150983\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Controlling the ImageMap Editor With the Keyboard\">Controlling the ImageMap Editor With the Keyboard</link>"
+msgstr "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Điều khiển bằng bàn phím bộ sửa sơ đồ ảnh\">Điều khiển bằng bàn phím bộ sửa sơ đồ ảnh</link>"
+
+#: 02220100.xhp
+msgctxt ""
+"02220100.xhp\n"
"tit\n"
"help.text"
-msgid "Position and Size"
-msgstr "Vị trí và Kích cỡ"
+msgid "Description"
+msgstr "Mô tả"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"bm_id3154350\n"
+"02220100.xhp\n"
+"bm_id1202200909085990\n"
"help.text"
-msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value><bookmark_value>draw objects;positioning and resizing</bookmark_value><bookmark_value>controls; positions and sizes</bookmark_value><bookmark_value>sizes;draw objects</bookmark_value><bookmark_value>anchors;types/positions for draw objects</bookmark_value><bookmark_value>draw objects; anchoring</bookmark_value>"
-msgstr "<bookmark_value>định vị;đối tượng vẽ và điều khiển</bookmark_value><bookmark_value>đối tượng vẽ;định vị và thay đổi kích cỡ</bookmark_value><bookmark_value>điều khiển; vị trí và kích cỡ</bookmark_value><bookmark_value>kích cỡ;đối tượng vẽ</bookmark_value><bookmark_value>neo;kiểu/vị trí cho đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; thả neo</bookmark_value>"
+msgid "<bookmark_value>hotspots;properties</bookmark_value> <bookmark_value>properties;hotspots</bookmark_value> <bookmark_value>ImageMap;hotspot properties</bookmark_value>"
+msgstr ""
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3154350\n"
+"02220100.xhp\n"
+"hd_id3154810\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230100.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr "<link href=\"text/shared/01/05230100.xhp\" name=\"Vị trí và Kích cỡ\">Vị trí và Kích cỡ</link>"
+msgid "Description"
+msgstr "Mô tả"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3153255\n"
+"02220100.xhp\n"
+"par_id3152910\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Resizes or moves the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">Thay đổi kích cỡ về hay di chuyển đối tượng đã chọn.</ahelp>"
+msgid "<ahelp hid=\"SVX:MODALDIALOG:RID_SVXDLG_IMAPURL\">Lists the properties for the selected hotspot.</ahelp>"
+msgstr "<ahelp hid=\"SVX:MODALDIALOG:RID_SVXDLG_IMAPURL\">Liệt kê các thuộc tính về điểm nóng đã chọn.</ahelp>"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3158405\n"
+"02220100.xhp\n"
+"hd_id3150976\n"
"3\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "Hyperlink"
+msgstr "Siêu liên kết"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3159201\n"
+"02220100.xhp\n"
+"par_id3152349\n"
"4\n"
"help.text"
-msgid "Specify the location of the selected object on the page."
-msgstr "Ghi rõ vị trí trên trang của đối tượng đã chọn."
+msgid "Lists the properties of the URL that is attached to the hotspot."
+msgstr "Liệt kê các thuộc tính về địa chỉ URL đính kèm điểm nóng đó."
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3157896\n"
+"02220100.xhp\n"
+"hd_id3156327\n"
"5\n"
"help.text"
-msgid "Position X"
-msgstr "Vị trí X"
+msgid "URL:"
+msgstr "URL:"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3155616\n"
+"02220100.xhp\n"
+"par_id3155831\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_X\">Enter the horizontal distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_X\">Nhập khoảng cách theo chiều ngang cần dời đối tượng tương đối so với điểm cơ bản đã chọn trên lưới.</ahelp>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C/[current_document_name]#anchor_name\"."
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URL\">Nhập địa chỉ URL đến tập tin muốn mở khi bạn nhấn vào điểm nóng đã chọn.</ahelp> Muốn nhảy tới một neo tên bên trong tài liệu hiện tại thì nhập địa chỉ có dạng « file:///C/tên_tài_liệu#tên_neo ». (Trong tài liệu HTML, dấu thăng (#) ngụ ý phần phụ của tài liệu.)"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3151226\n"
+"02220100.xhp\n"
+"hd_id3153827\n"
"7\n"
"help.text"
-msgid "Position Y"
-msgstr "Vị trí Y"
+msgid "Alternative text:"
+msgstr "Chuỗi xen kẽ:"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147373\n"
+"02220100.xhp\n"
+"par_id3153665\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_Y\">Enter the vertical distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_Y\">Nhập khoảng cách theo chiều dọc cần dời đối tượng tương đối so với điểm cơ bản đã chọn trên lưới.</ahelp>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION\">Nhập chuỗi nên hiển thị khi con trỏ để lại trên điểm nóng này trong trình duyệt Web.</ahelp> Không nhập chuỗi riêng thì hiển thị <emph>Địa chỉ</emph> (URL)."
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3147834\n"
+"02220100.xhp\n"
+"hd_id3149166\n"
"9\n"
"help.text"
-msgid "Base point"
-msgstr "Điểm cơ bản"
+msgid "Frame:"
+msgstr "Khung:"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147008\n"
+"02220100.xhp\n"
+"par_id3155922\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPPOSITION_CTRL\">Click a base point in the grid, and then enter the amount that you want to shift the object relative to the base point that you selected in the <emph>Position Y</emph> and <emph>Position X</emph> boxes. The base points correspond to the selection handles on an object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TPPOSITION_CTRL\">Nhấn vào một điểm cơ bản trên lưới, sau đó nhập giá trị theo đó bạn muốn dời đối tượng tương đối so với điểm cơ bản bạn đã chọn trong hai hộp <emph>Vị trí X</emph> và <emph>Vị trí Y</emph>. Các điểm cơ bản tương ứng với các móc lựa chọn trên đối tượng.</ahelp>"
+msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAPURL:CBB_TARGETS\">Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list.</ahelp>"
+msgstr "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAPURL:CBB_TARGETS\">Nhập tên của khung đích trong đó bạn muốn mở địa chỉ URL. Bạn cũng có thể chọn một tên khung tiêu chuẩn (được mọi trình duyệt nhận dạng) trong danh sách.</ahelp>"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3155942\n"
-"19\n"
+"02220100.xhp\n"
+"hd_id3147530\n"
+"11\n"
"help.text"
-msgid "Size"
-msgstr "Kích cỡ"
+msgid "Name:"
+msgstr "Tên:"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3150774\n"
-"20\n"
+"02220100.xhp\n"
+"par_id3148550\n"
+"12\n"
"help.text"
-msgid "Specify the amount by which you want to resize the selected object with respect to the selected base point ."
-msgstr "Ghi rõ giá trị theo đó bạn muốn thay đổi kích cỡ của đối tượng đã chọn, tương ứng so với điểm cơ bản đã chọn."
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_NAME\">Enter a name for the image.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_NAME\">Nhập tên cho ảnh.</ahelp>"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3143267\n"
-"21\n"
+"02220100.xhp\n"
+"hd_id7557298\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "Description"
+msgstr "Mô tả"
-#: 05230100.xhp
+#: 02220100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3149811\n"
-"22\n"
+"02220100.xhp\n"
+"par_id5057222\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_WIDTH\">Enter a width for the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_WIDTH\">Nhập chiều rộng cho đối tượng đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\">Enter a description for the hotspot.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập mô tả về điểm nóng.</ahelp>"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3150443\n"
-"23\n"
+"02230000.xhp\n"
+"tit\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "Changes"
+msgstr "Thay đổi"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147209\n"
-"24\n"
+"02230000.xhp\n"
+"hd_id3152952\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_HEIGHT\">Enter a height for the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_HEIGHT\">Nhập chiều cao cho đối tượng đã chọn.</ahelp>"
+msgid "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Changes</link>"
+msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Thay đổi\">Thay đổi</link>"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3149796\n"
-"25\n"
+"02230000.xhp\n"
+"par_id3145759\n"
+"2\n"
"help.text"
-msgid "Keep ratio"
-msgstr "Giữ tỷ lệ"
+msgid "<ahelp hid=\".\">Lists the commands that are available for tracking changes in your file.</ahelp>"
+msgstr "<ahelp hid=\".\">Liệt kê các lệnh sẵn sàng để theo dõi thay đổi trong đời sống của bạn.</ahelp>"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3155341\n"
-"26\n"
+"02230000.xhp\n"
+"hd_id3154894\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_POSITION_SIZE_CBX_SCALE\">Maintains proportions when you resize the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_POSITION_SIZE_CBX_SCALE\">Bảo tồn tỷ lệ khi bạn thay đổi kích cỡ của đối tượng đã chọn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02230200.xhp\" name=\"Hiện\">Hiện</link></caseinline></switchinline>"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3148686\n"
-"29\n"
+"02230000.xhp\n"
+"hd_id3154184\n"
+"8\n"
"help.text"
-msgid "Base point"
-msgstr "Điểm cơ bản"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/02230200.xhp\" name=\"Hiện\">Hiện</link></caseinline></switchinline>"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3154897\n"
-"30\n"
+"02230000.xhp\n"
+"hd_id3153527\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPSIZE_CTRL\">Click a base point in the grid, and then enter the new size dimensions for the selected object in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
-msgstr "<ahelp hid=\"HID_TPSIZE_CTRL\">Nhấn vào một điểm cơ bản trên lưới, sau đó nhập vào hai hộp <emph>Bề rộng</emph> và <emph>Bề cao</emph> các chiều kích cỡ cho đối tượng đã chọn.</ahelp>"
+msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject\">Accept or Reject</link>"
+msgstr "<link href=\"text/shared/01/02230400.xhp\" name=\"Chấp nhận hay Từ chối\">Chấp nhận hay Từ chối</link>"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3148990\n"
-"17\n"
+"02230000.xhp\n"
+"hd_id3145072\n"
+"3\n"
"help.text"
-msgid "Protect"
-msgstr "Bảo vệ"
+msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment\">Comment</link>"
+msgstr "<link href=\"text/shared/01/02230300.xhp\" name=\"Chú thích\">Chú thích</link>"
-#: 05230100.xhp
+#: 02230000.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3153698\n"
-"37\n"
+"02230000.xhp\n"
+"hd_id3150694\n"
+"5\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "<link href=\"text/shared/01/02230500.xhp\" name=\"Merge Document\">Merge Document</link>"
+msgstr "<link href=\"text/shared/01/02230500.xhp\" name=\"Trộn tài liệu\">Trộn tài liệu</link>"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3149784\n"
-"18\n"
+"02230100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_POSPROTECT\">Prevents changes to the position or the size of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_POSPROTECT\">Ngăn cản thay đổi vị trí hay kích cỡ của đối tượng đã chọn.</ahelp>"
+msgid "Record"
+msgstr "Thu"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3153254\n"
+"02230100.xhp\n"
+"hd_id3150758\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Record</link>"
+msgstr "<link href=\"text/shared/01/02230100.xhp\" name=\"Thu\">Thu</link>"
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3155599\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:TraceChangeMode\">Tracks each change that is made in the current document by author and date. </ahelp>"
+msgstr "<ahelp hid=\".uno:TraceChangeMode\">Theo dõi theo tác giả và ngày tháng mỗi thay đổi được làm trong tài liệu.</ahelp>"
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3155934\n"
+"26\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <emph><link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\">%PRODUCTNAME Writer - Changes</link></emph> in the Options dialog box.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nếu bạn chọn lệnh <emph>Thu > Hiện</emph>, các dòng chứa đoạn văn bị thay đổi được ngụ ý bởi đường thẳng đứng trong lề bên trái trang. Bạn cũng có thể đặt các thuộc tính về đường thẳng đứng này, và các phần tử đánh dấu khác, bằng cách chọn mụ c trình đơn <link href=\"text/shared/optionen/01040700.xhp\" name=\"Công cụ > Tùy chọn > Writer > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Writer > Thay đổi</emph></link>.</caseinline></switchinline>"
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3147261\n"
"27\n"
"help.text"
-msgid "Size"
-msgstr "Kích cỡ"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can set the properties of the markup elements by choosing <link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bạn cũng có thể đặt các thuộc tính về đường thẳng đứng này, và các phần tử đánh dấu khác, bằng cách chọn mụ c trình đơn <link href=\"text/shared/optionen/01060600.xhp\" name=\"Công cụ > Tùy chọn > Calc > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > Thay đổi</emph></link>.</caseinline></switchinline>"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3152349\n"
-"28\n"
+"02230100.xhp\n"
+"par_id3145669\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_SIZEPROTECT\">Prevents you from resizing the object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_SIZEPROTECT\">Ngăn cản bạn thay đổi kích cỡ của đối tượng.</ahelp>"
+msgid "The following changes are tracked when the record changes command is active:"
+msgstr "Theo đây có những thay đổi được theo dõi khi chức năng thu thay đổi đang chạy:"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3149275\n"
+"02230100.xhp\n"
+"par_id3149388\n"
+"8\n"
+"help.text"
+msgid "Paste and delete text"
+msgstr "Dán/Xoá văn bản"
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3150693\n"
+"9\n"
+"help.text"
+msgid "Move paragraphs"
+msgstr "Di chuyển đoạn văn"
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3147088\n"
+"10\n"
+"help.text"
+msgid "Sort text"
+msgstr "Sắp xếp văn bản"
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3148620\n"
"11\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchoring </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thả neo </caseinline></switchinline>"
+msgid "Find and replace text"
+msgstr "Tìm và Thay thế văn bản"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147531\n"
+"02230100.xhp\n"
+"par_id3145382\n"
"12\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Set the anchoring options for the selected object. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đặt các tùy chọn về chức năng thả neo cho đối tượng đã chọn. </caseinline></switchinline>"
+msgid "Insert attributes that are one character wide, for example, fields and footnotes."
+msgstr "Chèn thuộc tính có bề rộng một ký tự, v.d. trường và cước chú."
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3151246\n"
+"02230100.xhp\n"
+"par_id3146797\n"
"13\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchor </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Neo </caseinline></switchinline>"
+msgid "Insert sheets, ranges"
+msgstr "Chèn bảng hay phạm vi"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3154758\n"
+"02230100.xhp\n"
+"par_id3154749\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ANCHOR\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the type of anchor for the selected object. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ANCHOR\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn kiểu neo cho đối tượng đã chọn. </caseinline></switchinline></ahelp>"
+msgid "Insert document"
+msgstr "Chèn tài liệu"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3149295\n"
+"02230100.xhp\n"
+"par_id3153252\n"
"15\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Position </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Vị trí </caseinline></switchinline>"
+msgid "Insert AutoText"
+msgstr "Chèn Tốc ký"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3154935\n"
+"02230100.xhp\n"
+"par_id3155449\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ORIENT\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Specifies the position of the anchor in relation to the character height. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ORIENT\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Ghi rõ vị trí của neo tương đối so với chiều cao của ký tự. </caseinline></switchinline></ahelp>"
+msgid "Insert from clipboard"
+msgstr "Chèn từ bảng nháp"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3153525\n"
-"31\n"
+"02230100.xhp\n"
+"par_id3153821\n"
+"20\n"
"help.text"
-msgid "Adapt"
-msgstr "Chỉnh lại"
+msgid "Change cell contents by insertions and deletions"
+msgstr "Thay đổi nội dung ô bằng cách chèn hay xoá"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id31512110\n"
+"02230100.xhp\n"
+"par_id3150771\n"
+"21\n"
"help.text"
-msgid "Specifies, if the size of a drawing object should be adjusted to fit the size of entered text."
-msgstr ""
+msgid "Insert or delete columns and rows"
+msgstr "Chèn hay Xoá cột/hàng"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3151042\n"
-"33\n"
+"02230100.xhp\n"
+"par_id3150085\n"
+"22\n"
"help.text"
-msgid "Fit width to text"
-msgstr "Vừa bề rộng khít văn bản"
+msgid "Insert sheets"
+msgstr "Chèn bảng"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id31591510\n"
+"02230100.xhp\n"
+"par_id3154381\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
-msgstr ""
+msgid "Cut, copy and paste through the clipboard"
+msgstr "Cắt, Chép hay Dán thông qua bảng nháp"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3145746\n"
-"35\n"
+"02230100.xhp\n"
+"par_id3145119\n"
+"24\n"
"help.text"
-msgid "Fit height to text"
-msgstr "Vừa bề cao khít văn bản"
+msgid "Move by dragging and dropping"
+msgstr "Di chuyển bằng cách Kéo-Thả"
-#: 05230100.xhp
+#: 02230100.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id31540680\n"
+"02230100.xhp\n"
+"par_id3154347\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
-msgstr ""
+msgid "When the record changes command is active, you cannot delete, move, merge, split, or copy cells or delete sheets."
+msgstr "Tuy nhiên, khi chức năng thu thay đổi đang chạy, bạn không thể xoá, di chuyển, trộn, xẻ hay sao chép ô bảng, hay xoá bảng."
-#: 05230100.xhp
+#: 02230150.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3145606\n"
+"02230150.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchor types\">Anchor types</link>"
-msgstr "<link href=\"text/shared/01/05260000.xhp\" name=\"Kiểu neo\">Kiểu neo</link>"
+msgid "Protect Records"
+msgstr "Bảo vệ bản ghi"
-#: 02110000.xhp
+#: 02230150.xhp
msgctxt ""
-"02110000.xhp\n"
+"02230150.xhp\n"
+"hd_id3154349\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02230150.xhp\" name=\"Protect Records\">Protect Records</link>"
+msgstr "<link href=\"text/shared/01/02230150.xhp\" name=\"Bảo vệ bản ghi\">Bảo vệ bản ghi</link>"
+
+#: 02230150.xhp
+msgctxt ""
+"02230150.xhp\n"
+"par_id3150794\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ProtectTraceChangeMode\">Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password.</ahelp>"
+msgstr "<ahelp hid=\".uno:ProtectTraceChangeMode\">Ngăn cản người dùng tắt chức năng thu thay đổi, hay chấp nhận/từ chối thay đổi, nếu người dùng không nhập mật khẩu đúng.</ahelp>"
+
+#: 02230200.xhp
+msgctxt ""
+"02230200.xhp\n"
"tit\n"
"help.text"
-msgid "Navigator for Master Documents"
-msgstr "Bộ điều hướng Tài liệu chủ"
+msgid "Show Changes"
+msgstr "Hiện thay đổi"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3153391\n"
+"02230200.xhp\n"
+"bm_id3149988\n"
+"help.text"
+msgid "<bookmark_value>changes; showing</bookmark_value><bookmark_value>hiding;changes</bookmark_value><bookmark_value>showing; changes</bookmark_value>"
+msgstr "<bookmark_value>thay đổi; hiển thị</bookmark_value><bookmark_value>ẩn;thay đổi</bookmark_value><bookmark_value>hiển thị; thay đổi</bookmark_value>"
+
+#: 02230200.xhp
+msgctxt ""
+"02230200.xhp\n"
+"hd_id3149988\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02110000.xhp\">Navigator for Master Documents</link>"
-msgstr "<link href=\"text/shared/01/02110000.xhp\">Bộ điều hướng tài liệu chủ</link>"
+msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Show Changes\">Show Changes</link>"
+msgstr "<link href=\"text/shared/01/02230200.xhp\" name=\"Hiện thay đổi\">Hiện thay đổi</link>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150603\n"
+"02230200.xhp\n"
+"par_id3153323\n"
"2\n"
"help.text"
-msgid "In a <link href=\"text/shared/01/01010001.xhp\">master document</link>, you can switch the Navigator between normal view and master view."
-msgstr "Trong <link href=\"text/shared/01/01010001.xhp\">tài liệu chủ</link>, bạn có khả năng chuyển đổi Bộ điều hướng giữa ô xem chuẩn và ô xem chủ."
+msgid "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Shows or hides recorded changes.</ahelp></variable>"
+msgstr "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Hiển thị hay ẩn các thay đổi đã thu.</ahelp></variable>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3148585\n"
-"25\n"
+"02230200.xhp\n"
+"par_id3152425\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVIGATOR_GLOB_TREELIST\">The Navigator lists the main components of the master document. If you rest the mouse pointer over a name of a sub-document in the list, the full path of the sub-document is displayed.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVIGATOR_GLOB_TREELIST\">Bộ điều hướng liệt kê các thành phần chính của tài liệu chủ. Khi bạn để con trỏ chuột ở trên tên của tài liệu phụ trong danh sách, chương trình hiển thị đường dẫn đầy đủ đến tài liệu phụ đó.</ahelp>"
+msgid "You can change the display properties of the markup elements by choosing <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgstr "Bạn cũng có thể sửa đổi các thuộc tính về phần tử đánh dấu bằng cách chọn mục trình đơn<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Công cụ > Tùy chọn > Writer > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Writer > Thay đổi</emph></link>. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Công cụ > Tùy chọn > Calc > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > Thay đổi</emph></link>. </caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150789\n"
-"3\n"
+"02230200.xhp\n"
+"par_id3155356\n"
+"6\n"
"help.text"
-msgid "The master view in the Navigator displays the following icons:"
-msgstr "Ô xem chính của Bộ điều hướng sẽ hiển thị những biểu tượng dưới đây:"
+msgid "When you rest the mouse pointer over a change markup in the document, a <emph>Tip</emph> displays the author and the date and time that the change was made.<switchinline select=\"appl\"><caseinline select=\"CALC\"> If the <emph>Extended Tips</emph> are activated, the type of change and any attached comments are also displayed.</caseinline></switchinline>"
+msgstr "Khi bạn để lại con trỏ chuột ở trên dấu ngụ ý thay đổi trong tài liệu, một lời<emph>Gợi ý</emph> sẽ hiển thị tên tác giả và ngày/giờ làm thay đổi.<switchinline select=\"appl\"><caseinline select=\"CALC\">Kích hoạt chức năng <emph>Gợi ý Mở rộng</emph> thì cũng hiển thị kiểu thay đổi và chú thích đính kèm (nếu có). </caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3152542\n"
-"4\n"
+"02230200.xhp\n"
+"hd_id3153681\n"
+"8\n"
"help.text"
-msgid "Toggle"
-msgstr "Bật/Tắt"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show changes in spreadsheet</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hiện thay đổi trong bảng tính </caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153394\n"
-"5\n"
+"02230200.xhp\n"
+"par_id3149150\n"
+"9\n"
"help.text"
-msgid "Switches between master view and normal view."
-msgstr "Chuyển đổi giữa ô xem chủ và ô xem chuẩn."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT\">Shows or hides recorded changes.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT\">Hiển thị hay ẩn các thay đổi đã thu.</ahelp></caseinline></switchinline>"
-#: 02110000.xhp
-#, fuzzy
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3145313\n"
+"02230200.xhp\n"
+"hd_id3147336\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/imglst/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Biểu tượng</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show accepted changes</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hiện thay đổi đã chấp nhận </caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159233\n"
-"6\n"
+"02230200.xhp\n"
+"par_id3153541\n"
+"11\n"
"help.text"
-msgid "Toggle"
-msgstr "Bật/Tắt"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT\">Shows or hides the changes that were accepted.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT\">Hiển thị hay ẩn các thay đổi đã được chấp nhận.</ahelp></caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147275\n"
-"7\n"
+"02230200.xhp\n"
+"hd_id3149956\n"
+"12\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show rejected changes </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hiện thay đổi bị từ chối</caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147242\n"
-"8\n"
+"02230200.xhp\n"
+"par_id3159166\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the index dialog is opened.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Chỉnh sửa nội dung của thành phần được chọn trong danh sách Bộ điều hướng. Mục chọn là tập tin thì mở tập tin để soạn thảo. Mục chọn là chỉ mục thì mở hộp thoại chỉ mục.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT\">Shows or hides the changes that were rejected.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT\">Hiển thị hay ẩn các thay đổi đã bị từ chối.</ahelp></caseinline></switchinline>"
-#: 02110000.xhp
-#, fuzzy
+#: 02230200.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153716\n"
+"02230200.xhp\n"
+"par_id3145119\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/imglst/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comments\">Comments</link>"
+msgstr "<link href=\"text/shared/01/02230300.xhp\" name=\"Chú thích\">Chú thích</link>"
-#: 02110000.xhp
+#: 02230300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149192\n"
-"9\n"
+"02230300.xhp\n"
+"tit\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "Comment"
+msgstr "Ghi chú"
-#: 02110000.xhp
+#: 02230300.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150084\n"
-"10\n"
+"02230300.xhp\n"
+"hd_id3083278\n"
+"1\n"
"help.text"
-msgid "Update"
-msgstr "Cập nhật"
+msgid "Comment"
+msgstr "Ghi chú"
-#: 02110000.xhp
+#: 02230300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149164\n"
-"11\n"
+"02230300.xhp\n"
+"par_id3148983\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Nhấn vào và chọn nội dung bạn muốn cập nhật.</ahelp>"
+msgid "<variable id=\"kommentartext\"><ahelp hid=\"cui/ui/comment/edit\">Enter a comment for the recorded change.</ahelp></variable>"
+msgstr "<variable id=\"kommentartext\"><ahelp hid=\"cui/ui/comment/edit\">Nhập chú thích về thay đổi đã thu.</ahelp></variable>"
-#: 02110000.xhp
-#, fuzzy
+#: 02230300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159166\n"
+"02230300.xhp\n"
+"par_id3155391\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/imglst/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Biểu tượng</alt></image>"
+msgid "You can attach a comment when <switchinline select=\"appl\"><caseinline select=\"WRITER\">the cursor is in a changed text passage </caseinline><caseinline select=\"CALC\">the changed cell is selected</caseinline></switchinline>, or in the <emph>Accept or Reject Changes</emph> dialog."
+msgstr "Bạn có thể đính chú thích kèm khi <switchinline select=\"appl\"><caseinline select=\"WRITER\">con trỏ nằm trong đoạn bị thay đổi</caseinline><caseinline select=\"CALC\">ô bị thay đổi được chọn</caseinline></switchinline>, hay trong hộp thoại <emph>Chấp nhận hay Từ chối Thay đổi</emph>."
-#: 02110000.xhp
+#: 02230300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3145086\n"
-"12\n"
+"02230300.xhp\n"
+"par_id3156426\n"
+"5\n"
"help.text"
-msgid "Update"
-msgstr "Cập nhật"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments are displayed as callouts in the sheet when you rest your mouse pointer over a cell with a recorded change. You can also view comments that are attached to a changed cell in the changes list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link> dialog. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chú thích được hiển thị dạng khung thoại trên bảng khi bạn để lại con trỏ chuột trên ô chứa thay đổi đã thu. bạn cũng có thể xem chú thích đính kèm ô bị thay đổi trong danh sách thay đổi của hộp thoại <link href=\"text/shared/01/02230400.xhp\" name=\"Chấp nhận hay Từ chối Thay đổi\"><emph>Chấp nhận hay Từ chối Thay đổi</emph></link>. </caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230400.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147264\n"
-"28\n"
+"02230400.xhp\n"
+"tit\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "Accept or reject changes"
+msgstr "Chấp nhận hay từ chối thay đổi"
-#: 02110000.xhp
+#: 02230400.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147303\n"
-"29\n"
+"02230400.xhp\n"
+"hd_id3145138\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPD_SEL\">Updates the contents of the selection.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_UPD_SEL\">Cập nhật nội dung của mục chọn.</ahelp>"
+msgid "Accept or reject changes"
+msgstr "Chấp nhận hay từ chối thay đổi"
-#: 02110000.xhp
+#: 02230400.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3148756\n"
-"30\n"
+"02230400.xhp\n"
+"par_id3147240\n"
+"2\n"
"help.text"
-msgid "Indexes"
-msgstr "Chỉ mục"
+msgid "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Accept or reject recorded changes.</ahelp></variable>"
+msgstr "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Chấp nhận hay từ chối thay đổi đã thu.</ahelp></variable>"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3156435\n"
+"02230401.xhp\n"
+"tit\n"
+"help.text"
+msgid "List"
+msgstr "Danh sách"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3159242\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02230401.xhp\" name=\"List\">List</link>"
+msgstr "<link href=\"text/shared/01/02230401.xhp\" name=\"Danh sách\">Danh sách</link>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3154894\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/redlineviewpage/RedlineViewPage\">Accept or reject individual changes.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/redlineviewpage/RedlineViewPage\">Chấp nhận hay từ chối mỗi thay đổi.</ahelp>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3149511\n"
+"26\n"
+"help.text"
+msgid "The <emph>List </emph>tab displays all of the changes that were recorded in the current document. If you want to filter this list, click the <emph>Filter </emph>tab, and then select your <link href=\"text/shared/01/02230402.xhp\" name=\"filter criteria\">filter criteria</link>.<switchinline select=\"appl\"><caseinline select=\"WRITER\"> If the list contains nested changes, the dependencies are shown regardless of the filter. </caseinline></switchinline>"
+msgstr "Thẻ <emph>Danh sách</emph> thì hiển thị các thay đổi đã được ghi nhớ trong tài liệu hiện tại. Muốn lọc danh sách này thì nhấn vào thẻ <emph>Lọc</emph>, sau đó chọn các <link href=\"text/shared/01/02230402.xhp\" name=\"tiêu chuẩn lọc\">tiêu chuẩn lọc</link>.<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nếu danh sách chứa các thay đổi lồng nhau, những quan hệ phụ thuộc được hiển thị bất chấp hành động lọc.</caseinline></switchinline>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3153114\n"
+"27\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nested changes occur where changes made by different authors overlap. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay đổi lồng nhau xảy ra khi các tác giả khác nhau thực hiện các thay đổi chồng chéo nhau.</caseinline></switchinline>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3155552\n"
+"29\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Click the plus sign beside an entry in the list to view all of the changes that were recorded for a cell. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nhấn vào dấu cộng bên cạnh mục nhập trong danh sách để xem các thay đổi đã thu cho ô.</caseinline></switchinline>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3154824\n"
"31\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPD_IDX\">Updates all indexes.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_UPD_IDX\">Cập nhật mọi chỉ mục.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If one of the nested changes for a cell matches a filter criterion, all of the changes for the cell are displayed. When you filter the change list, the entries in the list appear in different colors according to the following table: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nếu một của những thay đổi lồng nhau vẫn còn tương ứng với một tiêu chuẩn lọc, chương trình hiển thị tất cả các thay đổi của ô đó. Hành động lọc danh sách thay đổi cũng hiển thị các mục nhập bằng màu sắc khác hau, tùy theo bảng này:</caseinline></switchinline>"
-#: 02110000.xhp
-#, fuzzy
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3153524\n"
+"02230401.xhp\n"
+"par_id3156426\n"
"32\n"
"help.text"
-msgid "Links"
-msgstr "Liên kết"
+msgid "Color"
+msgstr "Màu"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154224\n"
+"02230401.xhp\n"
+"par_id3145382\n"
"33\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPD_LINK\">Updates all links.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_UPD_LINK\">Cập nhật mọi liên kết.</ahelp>"
+msgid "Meaning"
+msgstr "Nghĩa"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154938\n"
+"02230401.xhp\n"
+"par_id3150355\n"
"34\n"
"help.text"
-msgid "All"
-msgstr "Tất cả"
+msgid "black"
+msgstr "đen"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154154\n"
+"02230401.xhp\n"
+"par_id3149416\n"
"35\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREEUPD_ALL\">Updates all contents.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREEUPD_ALL\">Cập nhật mọi nội dung.</ahelp>"
+msgid "The entry matches a filter criterion."
+msgstr "Mục nhập tương ứng với một tiêu chuẩn lọc."
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154631\n"
-"48\n"
+"02230401.xhp\n"
+"par_id3145317\n"
+"36\n"
"help.text"
-msgid "Edit link"
-msgstr "Sửa liên kết"
+msgid "blue"
+msgstr "xanh"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153105\n"
-"49\n"
+"02230401.xhp\n"
+"par_id3156327\n"
+"37\n"
"help.text"
-msgid "This command is found by right-clicking an inserted file in the Navigator.<ahelp hid=\"HID_GLBLTREE_EDIT_LINK\">Changes the link properties for the selected file.</ahelp>"
-msgstr "Bạn tìm lệnh này bằng cách nhấn-phải vào tập tin được chèn vào Bộ điều hướng.<ahelp hid=\"HID_GLBLTREE_EDIT_LINK\">Thay đổi các thuộc tính liên kết về tập tin đã chèn.</ahelp>"
+msgid "One or more subentries matches a filter criterion."
+msgstr "Một hay nhiều mục nhập phụ tương ứng với một tiêu chuẩn lọc."
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3152933\n"
+"02230401.xhp\n"
+"par_id3156156\n"
+"38\n"
+"help.text"
+msgid "gray"
+msgstr "xám"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3149192\n"
+"39\n"
+"help.text"
+msgid "The subentry does not match a filter criterion."
+msgstr "Mục nhập phụ không tương ứng với tiêu chuẩn lọc."
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3155421\n"
+"40\n"
+"help.text"
+msgid "green"
+msgstr "lục"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3149237\n"
+"41\n"
+"help.text"
+msgid "The subentry matches a filter criterion."
+msgstr "Mục nhập phụ tương ứng với một tiêu chuẩn lọc."
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3153146\n"
+"3\n"
+"help.text"
+msgid "Selection field"
+msgstr "Trường chọn"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3161459\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/redlineviewpage/changes\">Lists the changes that were recorded in the document. When you select an entry in the list, the change is highlighted in the document. To sort the list, click a column heading. </ahelp> Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click to select multiple entries in the list."
+msgstr ""
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3152812\n"
+"6\n"
+"help.text"
+msgid "To edit the comment for an entry in the list, right-click the entry, and then choose<emph> Edit - Comment</emph>."
+msgstr "Để chỉnh sửa chú thích về mục nhập trong danh sách, nhấn-phải vào mục, sau đó chọn lệnh <emph>Sửa > Chú thích</emph>."
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3153524\n"
+"7\n"
+"help.text"
+msgid "After you accept or reject a change, the entries of the list are re-ordered according to \"Accepted\" or \"Rejected\" status."
+msgstr "Một khi chấp nhận hay từ chối thay đổi thì các mục nhập được sắp xếp lại trong danh sách, tùy theo trạng thái « Đã chấp nhận » hay « Bị từ chối »."
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3153379\n"
+"8\n"
+"help.text"
+msgid "Action"
+msgstr "Hành động"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3153361\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_SORT_ACTION\">Lists the changes that were made in the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SORT_ACTION\">Liệt kê các thay đổi đã được làm trong tài liệu.</ahelp>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3152920\n"
+"10\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Position </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vị trí</caseinline></switchinline>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3149202\n"
+"11\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lists the cells with contents that were changed. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Liệt kê các ô có nội dung đã thay đổi.</caseinline></switchinline>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3148452\n"
+"12\n"
+"help.text"
+msgid "Author"
+msgstr "Tác giả"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3153178\n"
"13\n"
"help.text"
-msgid "Insert"
-msgstr "Chèn"
+msgid "<ahelp hid=\"HID_SC_SORT_AUTHOR\">Lists the user who made the change.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SORT_AUTHOR\">Hiển thị người dùng đã làm thay đổi đó.</ahelp>"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147084\n"
+"02230401.xhp\n"
+"hd_id3144762\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INSERT\">Inserts a file, an index, or a new document into the master document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_INSERT\">Chèn vào tài liệu chủ một tập tin, chỉ mục hay tài liệu mới.</ahelp>"
+msgid "Date"
+msgstr "Ngày"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153969\n"
-"57\n"
+"02230401.xhp\n"
+"par_id3156422\n"
+"15\n"
"help.text"
-msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
-msgstr "Bạn cũng có thể chèn tập tin vào tài liệu chủ bằng cách kéo tập tin từ màn hình nền, sau đó thả nó vào ô xem chủ của Bộ điều hướng."
+msgid "<ahelp hid=\"HID_SC_SORT_DATE\">Lists the date and time that the change was made.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SORT_DATE\">Hiển thị ngày tháng và thời gian làm thay đổi.</ahelp>"
-#: 02110000.xhp
-#, fuzzy
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153951\n"
+"02230401.xhp\n"
+"hd_id3157962\n"
+"16\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/imglst/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Biểu tượng</alt></image>"
+msgid "Comment"
+msgstr "Ghi chú"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150486\n"
-"15\n"
+"02230401.xhp\n"
+"par_id3150868\n"
+"17\n"
"help.text"
-msgid "Insert"
-msgstr "Chèn"
+msgid "<ahelp hid=\"HID_SC_SORT_COMMENT\">Lists the comments that are attached to the change.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SORT_COMMENT\">Liệt kê các chú thích đính kèm thay đổi.</ahelp>"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3146921\n"
-"36\n"
+"02230401.xhp\n"
+"hd_id3154218\n"
+"18\n"
"help.text"
-msgid "Index"
-msgstr "Chỉ mục"
+msgid "Accept"
+msgstr "Chấp nhận"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149267\n"
-"37\n"
+"02230401.xhp\n"
+"par_id3152935\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_IDX\">Inserts an index or a table of contents into the master document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_INS_IDX\">Chèn vào tài liệu chủ một chỉ mục hay mục lục.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/accept\">Accepts the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/accept\">Đồng ý với thay đổi đã chọn, và gỡ bỏ sự tô sáng khỏi thay đổi trong tài liệu.</ahelp>"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3155413\n"
+"02230401.xhp\n"
+"hd_id3156543\n"
+"22\n"
+"help.text"
+msgid "Reject"
+msgstr "Từ chối"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3150441\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/reject\">Rejects the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/reject\">Không đồng ý với thay đổi đã chọn; cũng gỡ bỏ sự tô sáng khỏi thay đổi trong tài liệu.</ahelp>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3155429\n"
+"20\n"
+"help.text"
+msgid "Accept All"
+msgstr "Chấp nhận tất cả"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3150012\n"
+"21\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/acceptall\">Accepts all of the changes and removes the highlighting from the document.</ahelp>"
+msgstr ""
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3153742\n"
+"24\n"
+"help.text"
+msgid "Reject All"
+msgstr "Từ chối tất cả"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3151353\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/rejectall\">Rejects all of the changes and removes the highlighting from the document.</ahelp>"
+msgstr ""
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3147442\n"
+"28\n"
+"help.text"
+msgid "To reverse the acceptance or rejection of a change, choose <emph>Undo </emph>on the <emph>Edit </emph>menu."
+msgstr "Để hủy bước chấp nhận hay từ chối một thay đổi nào đó, chọn lệnh <emph>Hủy bước</emph> trong trình đơn <emph>Sửa</emph>."
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3159196\n"
+"30\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Undo </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hủy bước</caseinline></switchinline>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3151116\n"
"42\n"
"help.text"
-msgid "File"
-msgstr "Tập tin"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Format - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo </emph>button appears in the dialog.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nếu bạn đã làm thay đổi bằng cách chọn lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng và sửa thay đổi</emph>, nút <emph>Hủy bước</emph> sẽ cũng xuất hiện trong hộp thoại.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Hoàn tác chấp nhận hay từ chối mới làm.</ahelp></caseinline></switchinline>"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159198\n"
+"02230401.xhp\n"
+"par_id3152576\n"
"43\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_FILE\">Inserts one or more existing files into the master document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_INS_FILE\">Chèn vào tài liệu chủ một hay nhiều tập tin đã tồn tại.</ahelp>"
+msgid "There are additional commands in the <emph>context menu</emph> of the list:"
+msgstr "Có một số lệnh thêm trong <emph>trình đơn ngữ cảnh</emph> của danh sách:"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3155856\n"
+"02230401.xhp\n"
+"hd_id3146975\n"
"44\n"
"help.text"
-msgid "New Document"
-msgstr "Tài liệu mới"
+msgid "Edit comment"
+msgstr "Sửa chú thích"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154321\n"
+"02230401.xhp\n"
+"par_id3153210\n"
"45\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">Creates and inserts a new sub-document.</ahelp> When you create a new document, you are prompted to enter the file name and the location where you want to save the document."
-msgstr "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">Tạo và chèn một tài liệu phụ mới.</ahelp> Khi bạn tạo một tài liệu mới, chương trình nhắc bạn nhập tên tập tin và vị trí vào đó cần lưu tài liệu."
+msgid "<ahelp hid=\"HID_SC_CHANGES_COMMENT\">Edit the comment for the selected change.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_CHANGES_COMMENT\">Chỉnh sửa chú thích về thay đổi đã chọn.</ahelp>"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154472\n"
+"02230401.xhp\n"
+"hd_id3153281\n"
"46\n"
"help.text"
-msgid "Text"
-msgstr "Văn bản"
+msgid "Sort"
+msgstr "Sắp xếp"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3163712\n"
+"02230401.xhp\n"
+"par_id3149486\n"
"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_TEXT\">Inserts a new paragraph in the master document where you can enter text. You cannot insert text next to an existing text entry in the Navigator.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_INS_TEXT\">Chèn vào tài liệu chủ một đoạn văn mới trong đó bạn có thể gõ chữ. Tuy nhiên, trong Bộ điều hướng không thể chèn văn bản vào bên cạnh mục nhập văn bản đã tồn tại.</ahelp>"
+msgid "Sorts the list according to the column headings."
+msgstr "Sắp xếp danh sách theo đầu cột."
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154640\n"
-"16\n"
+"02230401.xhp\n"
+"hd_id3155316\n"
+"48\n"
"help.text"
-msgid "Save Contents as well"
-msgstr "Cũng lưu nội dung"
+msgid "Action"
+msgstr "Hành động"
-#: 02110000.xhp
+#: 02230401.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149666\n"
+"02230401.xhp\n"
+"par_id3151280\n"
+"49\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SORT_ACTION\">Sorts the list according to the type of change.</ahelp>"
+msgstr "<ahelp hid=\"HID_SORT_ACTION\">Sắp xếp danh sách theo kiểu thay đổi.</ahelp>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3150116\n"
+"50\n"
+"help.text"
+msgid "Author"
+msgstr "Tác giả"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3149960\n"
+"51\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SORT_AUTHOR\">Sorts the list according to the Author.</ahelp>"
+msgstr "<ahelp hid=\"HID_SORT_AUTHOR\">Sắp xếp danh sách theo Tác giả.</ahelp>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3148775\n"
+"52\n"
+"help.text"
+msgid "Date"
+msgstr "Ngày"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3153223\n"
+"53\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SORT_DATE\">Sorts the list according to the date and time.</ahelp>"
+msgstr "<ahelp hid=\"HID_SORT_DATE\">Sắp xếp danh sách theo ngày/giờ.</ahelp>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3150594\n"
+"54\n"
+"help.text"
+msgid "Comment"
+msgstr "Ghi chú"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3145595\n"
+"55\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SORT_COMMENT\">Sorts the list according to the comments that are attached to the changes.</ahelp>"
+msgstr "<ahelp hid=\"HID_SORT_COMMENT\">Sắp xếp danh sách theo chú thích đính kèm thay đổi.</ahelp>"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"hd_id3153157\n"
+"56\n"
+"help.text"
+msgid "Document Position"
+msgstr "Vị trí Tài liệu"
+
+#: 02230401.xhp
+msgctxt ""
+"02230401.xhp\n"
+"par_id3157976\n"
+"57\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SORT_POSITION\">Sorts the list in a descending order according to the position of the changes in the document. This is the default sorting method.</ahelp>"
+msgstr "<ahelp hid=\"HID_SORT_POSITION\">Sắp xếp danh sách theo thứ tự giảm dần, theo vị trí của thay đổi trong tài liệu. Đây là phương pháp sắp xếp mặc định.</ahelp>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"tit\n"
+"help.text"
+msgid "Filter"
+msgstr "Lọc"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"hd_id3153323\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02230402.xhp\" name=\"Filter\">Filter</link>"
+msgstr "<link href=\"text/shared/01/02230402.xhp\" name=\"Lọc\">Lọc</link>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id3147088\n"
+"2\n"
+"help.text"
+msgid "Set the criteria for filtering the list of changes on the <link href=\"text/shared/01/02230401.xhp\" name=\"List\"><emph>List</emph></link> tab."
+msgstr "Đặt các tiêu chuẩn lọc danh sách thay đổi trên thẻ <link href=\"text/shared/01/02230401.xhp\" name=\"Danh sách\"><emph>Danh sách</emph></link> tab."
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"hd_id3150355\n"
+"3\n"
+"help.text"
+msgid "Date"
+msgstr "Ngày"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id3147573\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/endtime\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/redlinefilterpage/endtime\">Lọc danh sách thay đổi theo ngày/giờ bạn ghi rõ.</ahelp>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"hd_id3154811\n"
"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_TBX21\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_TBX21\">Lưu vào tài liệu chủ một bản sao của nội dung của các tập tin đã liên kết. Tùy chọn này đảm bảo nội dung hiện thời vẫn sẵn sàng ngay cả khi không thể truy cập đến tập tin đã liên kết.</ahelp>"
+msgid "Set Date/Time"
+msgstr "Đặt Ngày/Giờ"
-#: 02110000.xhp
-#, fuzzy
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3151351\n"
+"02230402.xhp\n"
+"par_id3159147\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/imglst/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3150771\" src=\"cmd/sc_timefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150771\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150771\" src=\"cmd/sc_timefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150771\">Biểu tượng</alt></image>"
-#: 02110000.xhp
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3157974\n"
+"02230402.xhp\n"
+"par_id3143270\n"
"18\n"
"help.text"
-msgid "Save Contents as well"
-msgstr "Cũng lưu nội dung"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/endclock\">Enters the current date and time into the corresponding boxes.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/redlinefilterpage/endclock\">Nhập vào hộp tương ứng ngày tháng và thời gian hiện thời.</ahelp>"
-#: 02110000.xhp
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154096\n"
-"19\n"
+"02230402.xhp\n"
+"hd_id3155261\n"
+"5\n"
"help.text"
-msgid "Move Down"
-msgstr "Đem xuống"
+msgid "Author"
+msgstr "Tác giả"
-#: 02110000.xhp
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3155852\n"
+"02230402.xhp\n"
+"par_id3150084\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/authorlist\">Filters the list of changes according to the name of the author that you select from the list.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/redlinefilterpage/authorlist\">Lọc danh sách thay đổi theo tên của tác giả bạn chọn trong danh sách.</ahelp>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"hd_id3147531\n"
+"13\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Range </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Phạm vi</caseinline></switchinline>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id3156344\n"
+"14\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"svx/ui/redlinefilterpage/rangeedit\">Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the <emph>Set Reference </emph>button (<emph>...</emph>).</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"svx/ui/redlinefilterpage/rangeedit\">Lọc danh sách thay đổi theo phạm vi ô bạn ghi rõ. Để chọn phạm vi ô trên bảng, nhấn vào cái nút <emph>Đặt tham chiếu</emph> (<emph>...</emph>).</ahelp></caseinline></switchinline>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id4441663\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the range of cells that you want to use as a filter.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc.</ahelp>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"hd_id3147304\n"
+"15\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set Reference </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đặt tham chiếu</caseinline></switchinline>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id3151210\n"
+"help.text"
+msgid "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Biểu tượng</alt></image>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id3156215\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/dotdotdot\">Select the range of cells that you want to use as a filter.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/redlinefilterpage/dotdotdot\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc.</ahelp>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"hd_id3159149\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_TBX23\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr "<ahelp hid=\"HID_NAVI_TBX23\">Dời mục chọn xuống một chỗ trong danh sách Bộ điều hướng.</ahelp> Bạn cũng có thể di chuyển mục nhập bằng cách kéo-thả trong danh sách. Kéo mục văn bản vào mục văn bản khác thì trộn với nhau làm cùng một mục văn bản."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shrink/Max </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Thu/Phóng </caseinline></switchinline>"
-#: 02110000.xhp
-#, fuzzy
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154790\n"
+"02230402.xhp\n"
+"par_id3149809\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/imglst/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3154153\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3154153\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Biểu tượng</alt></image>"
-#: 02110000.xhp
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149417\n"
+"02230402.xhp\n"
+"par_id3147287\n"
"21\n"
"help.text"
-msgid "Move Down"
-msgstr "Đem xuống"
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:RID_SCDLG_SIMPLEREF:RB_ASSIGN\">Select the range of cells that you want to use as a filter, and then click this button to return to the filter list.</ahelp>"
+msgstr "<ahelp hid=\"SC:IMAGEBUTTON:RID_SCDLG_SIMPLEREF:RB_ASSIGN\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc, sau đó nhấn vào nút này để trở về danh sách bộ lọc.</ahelp>"
-#: 02110000.xhp
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147124\n"
+"02230402.xhp\n"
+"hd_id3156543\n"
+"9\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Action </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hành động</caseinline></switchinline>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id3155413\n"
+"12\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"svx/ui/redlinefilterpage/actionlist\">Filters the list of changes according to the type of change that you select in the <emph>Action</emph> box.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"svx/ui/redlinefilterpage/actionlist\">Lọc danh sách thay đổi theo kiểu thay đổi bạn chọn trong hộp <emph>Hành động</emph>.</ahelp></caseinline></switchinline>"
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"hd_id3155855\n"
"22\n"
"help.text"
-msgid "Move Up"
-msgstr "Đem lên"
+msgid "Comment"
+msgstr "Ghi chú"
-#: 02110000.xhp
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146927\n"
+"02230402.xhp\n"
+"par_id3151114\n"
"23\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_TBX22\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr "<ahelp hid=\"HID_NAVI_TBX22\">Dời mục chọn lên một chỗ trong danh sách Bộ điều hướng.</ahelp> Bạn cũng có thể di chuyển mục nhập bằng cách kéo-thả trong danh sách. Kéo mục văn bản vào mục văn bản khác thì trộn với nhau làm cùng một mục văn bản."
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/commentedit\">Filters the comments of the changes according to the keyword(s) that you enter. </ahelp>"
+msgstr "<ahelp hid=\"svx/ui/redlinefilterpage/commentedit\">Lọc các chú thích về thay đổi theo những từ khoá bạn nhập vào. </ahelp>"
-#: 02110000.xhp
-#, fuzzy
+#: 02230402.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3156178\n"
+"02230402.xhp\n"
+"par_id3163820\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/imglst/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Biểu tượng</alt></image>"
+msgid "You can also use <link href=\"text/shared/01/02100000.xhp\" name=\"regular expressions\">regular expressions</link> (wildcards) when you filter the comments."
+msgstr "Bạn cũng có thể sử dụng <link href=\"text/shared/01/02100000.xhp\" name=\"biểu thức chính quy\">biểu thức chính quy</link> (ký tự đại diện) để lọc chú thích."
-#: 02110000.xhp
+#: 02230500.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147257\n"
-"24\n"
+"02230500.xhp\n"
+"tit\n"
"help.text"
-msgid "Move Up"
-msgstr "Đem lên"
+msgid "Merge Document"
+msgstr "Trộn tài liệu"
-#: 02110000.xhp
+#: 02230500.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3148566\n"
-"26\n"
+"02230500.xhp\n"
+"hd_id3149000\n"
+"1\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "Merge Document"
+msgstr "Trộn tài liệu"
-#: 02110000.xhp
+#: 02230500.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153099\n"
-"27\n"
+"02230500.xhp\n"
+"par_id3154408\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_DEL\">Deletes the selection from the Navigator list.</ahelp>"
-msgstr "<ahelp hid=\"HID_GLBLTREE_DEL\">Xoá mục chọn khỏi danh sách Bộ điều hướng.</ahelp>"
+msgid "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored.</ahelp></variable> Identical changes are merged automatically."
+msgstr "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Nhập khẩu vào tài liệu gốc những thay đổi được làm trong các bản sao của cùng một tài liệu.</ahelp></variable> Các thay đổi trùng thì được trộn tự động."
+
+#: 02240000.xhp
+msgctxt ""
+"02240000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Compare Document"
+msgstr "So sánh tài liệu"
+
+#: 02240000.xhp
+msgctxt ""
+"02240000.xhp\n"
+"hd_id3149877\n"
+"1\n"
+"help.text"
+msgid "Compare Document"
+msgstr "So sánh tài liệu"
+
+#: 02240000.xhp
+msgctxt ""
+"02240000.xhp\n"
+"par_id3150838\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
+msgstr "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">So sánh tài liệu hiện tại với một tài liệu khác mà bạn chọn.</ahelp></variable> Trong hộp thoại sẽ mở, nội dung của tài liệu đã chọn được đánh dấu như mục xoá. Bạn cũng có thể chèn vào tài liệu hiện tại nội dung của tập tin đã chọn, bằng cách chọn các mục xoá thích hợp, nhấn vào nút <emph>Từ chối</emph>, sau đó nhấn vào nút <emph>Chèn</emph>."
+
+#: 02240000.xhp
+msgctxt ""
+"02240000.xhp\n"
+"par_id3153662\n"
+"4\n"
+"help.text"
+msgid "The contents of footnotes, headers, frames and fields are ignored."
+msgstr "Nội dung của cả cước chú, phần đầu trang, khung và trường đều bị bỏ qua."
#: 02250000.xhp
msgctxt ""
@@ -16190,648 +12766,531 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new record into the current table.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chèn vào bảng hiện tại một bản ghi mới.</ahelp>"
-#: 06130001.xhp
+#: 03010000.xhp
msgctxt ""
-"06130001.xhp\n"
+"03010000.xhp\n"
"tit\n"
"help.text"
-msgid "Macros"
-msgstr "Vĩ lệnh"
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"hd_id3152414\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
-msgstr "<link href=\"text/shared/01/06130001.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link>"
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"par_id3150008\n"
-"3\n"
-"help.text"
-msgid "Lets you record or organize and edit macros."
-msgstr "Cho bạn có khả năng thu hay tổ chức và chỉnh sửa vĩ lệnh."
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp\">Run Macro</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp\">Chạy vĩ lệnh</link>"
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can start a macro.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể khởi chạy vĩ lệnh.</ahelp>"
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"par_idN10608\n"
-"help.text"
-msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signature</link>"
-msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">Chữ ký số</link>"
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"par_idN10618\n"
-"help.text"
-msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your macros. You can also use the dialog to view certificates.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm và gỡ bỏ chữ ký thuật số vào/khỏi các vĩ lệnh của bạn. Cũng có thể sử dụng hộp thoại để xem các chứng nhận.</ahelp>"
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp\">Organize Dialogs</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp\">Tổ chức Hộp thoại</link>"
-
-#: 06130001.xhp
-msgctxt ""
-"06130001.xhp\n"
-"par_idN105E3\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Dialogs tab page of the Macro Organizer.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở trang thẻ <emph>Hộp thoại</emph> của bộ <emph>Tổ chức Vĩ lệnh.</emph></ahelp>"
+msgid "Zoom & View Layout"
+msgstr "Thu/Phóng và Xem bố trí"
-#: 05340200.xhp
+#: 03010000.xhp
msgctxt ""
-"05340200.xhp\n"
-"tit\n"
+"03010000.xhp\n"
+"bm_id3154682\n"
"help.text"
-msgid "Column width"
-msgstr "Bề rộng cột"
+msgid "<bookmark_value>zooming;page views</bookmark_value> <bookmark_value>views; scaling</bookmark_value> <bookmark_value>screen; scaling</bookmark_value> <bookmark_value>pages; scaling</bookmark_value>"
+msgstr "<bookmark_value>thu phóng;khung xem trang</bookmark_value><bookmark_value>ô xem;co giãn</bookmark_value><bookmark_value>màn hình;co giãn</bookmark_value><bookmark_value>trang;co giãn</bookmark_value>"
-#: 05340200.xhp
+#: 03010000.xhp
msgctxt ""
-"05340200.xhp\n"
-"hd_id3158397\n"
+"03010000.xhp\n"
+"hd_id3154682\n"
"1\n"
"help.text"
-msgid "Column width"
-msgstr "Bề rộng cột"
+msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom & View Layout</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\">Thu/Phóng và Xem bố trí</link>"
-#: 05340200.xhp
+#: 03010000.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3153272\n"
+"03010000.xhp\n"
+"par_id3149578\n"
"2\n"
"help.text"
-msgid "<variable id=\"spaltetext\"><ahelp hid=\"HID_BROWSER_COLUMNWIDTH\" visibility=\"visible\">Changes the width of the current column, or the selected columns.</ahelp></variable>"
-msgstr "<variable id=\"spaltetext\"><ahelp hid=\"HID_BROWSER_COLUMNWIDTH\" visibility=\"visible\">Sửa đổi chiều rộng của cột hiện tại, hay của những cột đã chọn.</ahelp></variable>"
+msgid "<variable id=\"massstabtext\"><ahelp hid=\".uno:Zoom\">Reduces or enlarges the screen display of %PRODUCTNAME.</ahelp></variable> The current zoom factor is displayed as a percentage value on the <emph>Status</emph> bar."
+msgstr "<variable id=\"massstabtext\"><ahelp hid=\".uno:Zoom\">Giảm hay tăng kích cỡ của ô hiển thị %PRODUCTNAME trên màn hình.</ahelp></variable> Hệ số thu phóng hiện thời được hiển thị dạng phần trăm trên thanh <emph>Trạng thái</emph>."
-#: 05340200.xhp
+#: 03010000.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3152821\n"
-"7\n"
+"03010000.xhp\n"
+"par_id3149655\n"
+"26\n"
"help.text"
-msgid "You can also change the width of a column by dragging the divider beside the column header.<switchinline select=\"appl\"> <caseinline select=\"CALC\"> To fit the column width to the cell contents, double-click the divider.</caseinline> </switchinline>"
-msgstr "Bạn cũng có khả năng sửa đổi chiều rộng của cột bằng cách kéo đường chia nằm bên cạnh đầu cột. <switchinline select=\"appl\"> <caseinline select=\"CALC\"> Để vừa chiều rộng hàng khít nội dung của ô, nhấn-đôi vào đường chia.</caseinline> </switchinline>"
+msgid "Zooming is handled differently on Unix, Linux, and Windows platforms. A document saved with a 100% zoom factor in Windows is displayed at a larger zoom factor on Unix/Linux platforms. To change the zoom factor, double-click or right-click the percentage value on the <emph>Status</emph> bar, and select the zoom factor that you want."
+msgstr "Chức năng thu phóng được quản lý khác trên hệ thống UNIX, Linux hay Windows. Tài liệu được lưu theo hệ số thu phóng 100% dưới Windows sẽ được hiển thị ở hệ số thu phóng cao hơn dưới UNIX/Linux. Để điều chỉnh hệ số thu phóng, nhấn-đôi hay nhấn-phải vào giá trị phần trăm trên thanh <emph>Trạng thái</emph>, sau đó chọn hệ số thu phóng thích hợp."
-#: 05340200.xhp
+#: 03010000.xhp
msgctxt ""
-"05340200.xhp\n"
-"hd_id3149346\n"
+"03010000.xhp\n"
+"hd_id3149669\n"
"3\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "Zoom factor"
+msgstr "Hệ số Thu Phóng"
-#: 05340200.xhp
+#: 03010000.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3147576\n"
+"03010000.xhp\n"
+"par_id3154389\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_COLWIDTH_MF_VALUE\" visibility=\"visible\">Enter the column width that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_COLWIDTH_MF_VALUE\" visibility=\"visible\">Nhập chiều rộng cột bạn muốn dùng.</ahelp>"
-
-#: 05340200.xhp
-msgctxt ""
-"05340200.xhp\n"
-"hd_id3148621\n"
-"5\n"
-"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Default value</caseinline> <defaultinline>Automatic</defaultinline> </switchinline>"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Giá trị</caseinline> <defaultinline>Tự động</defaultinline> </switchinline>"
+msgid "Set the zoom factor at which to display the current document and all documents of the same type that you open thereafter."
+msgstr "Đặt hệ số thu phóng ở đó cần hiển thị tài liệu hiện tại và các tài liệu cùng kiểu được mở sau."
-#: 05340200.xhp
+#: 03010000.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3147008\n"
-"6\n"
+"03010000.xhp\n"
+"hd_id3153351\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_COLWIDTH_CB_STANDARD\" visibility=\"visible\">Automatically adjusts the column width based on the current font.</ahelp>"
-msgstr "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_COLWIDTH_CB_STANDARD\" visibility=\"visible\">Tự động điều chỉnh chiều rộng cột dựa vào phông hiện thời.</ahelp>"
+msgid "Optimal"
+msgstr "Tối ưu"
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"tit\n"
+"03010000.xhp\n"
+"par_id3144760\n"
+"21\n"
"help.text"
-msgid "Graphics"
-msgstr "Đồ họa"
+msgid "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at .</defaultinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Thay đổi kích cỡ của ô hiển thị để vừa khít bề rộng của phạm vi ô đã chọn. </caseinline><defaultinline>Thay đổi kích cỡ của ô hiển thị để vừa khít bề rộng của văn bản trong tài liệu.</defaultinline></switchinline></ahelp>"
-#: 06050400.xhp
-#, fuzzy
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"hd_id0611200904373284\n"
+"03010000.xhp\n"
+"hd_id3151210\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Graphics</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
+msgid "Fit width and height"
+msgstr "Vừa bề rộng và bề cao"
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904373226\n"
+"03010000.xhp\n"
+"par_id3150543\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị những đồ họa khác nhau mà bạn có thể sử dụng như điểm chấm trong danh sách điểm chấm.</ahelp>"
+msgid "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\"> Đặt lại kích thước hiển thị để vừa với chiều dài và chiều cao của vùng ô được chọn khi bắt đầu lệnh. </caseinline><defaultinline>Hiển thị toàn bộ trang trên màn hình.</defaultinline></switchinline></ahelp>"
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"hd_id0611200904361573\n"
+"03010000.xhp\n"
+"hd_id3152771\n"
+"24\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "Fit width"
+msgstr "Vừa bề rộng"
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id061120090436150\n"
+"03010000.xhp\n"
+"par_id3143231\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhắp vào đồ họa bạn muốn sử dụng làm điểm chấm.</ahelp>"
+msgid "<ahelp hid=\"HID_MNU_ZOOM_PAGE_WIDTH\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
+msgstr "<ahelp hid=\"HID_MNU_ZOOM_PAGE_WIDTH\">Hiển thị bề rộng hoàn toàn của trang tài liệu. Cạnh bên trên/dưới của trang có thể không hiện rõ.</ahelp>"
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"hd_id061120090436157\n"
+"03010000.xhp\n"
+"hd_id3153106\n"
+"9\n"
"help.text"
-msgid "Link graphics"
-msgstr "Đồ họa liên kết"
+msgid "100 %"
+msgstr "100 %"
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904361575\n"
+"03010000.xhp\n"
+"par_id3147353\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Nếu bật, các đồ họa được chèn vào như những liên kết. Nếu tắt, các đồ họa được nhúng vào tài liệu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/zoomdialog/100pc\">Displays the document at its actual size.</ahelp>"
+msgstr ""
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id061120090437338\n"
+"03010000.xhp\n"
+"hd_id3153191\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "Variable"
+msgstr "Biến đổi"
-#: 06050400.xhp
+#: 03010000.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904373391\n"
+"03010000.xhp\n"
+"par_id3159125\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "<ahelp hid=\"cui/ui/zoomdialog/zoomsb\">Enter the zoom factor at which you want to display the document. Enter a percentage in the box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_ZOOM:ED_USER\">Hãy nhập hệ số thu phóng ở đó bạn muốn hiển thị tài liệu. Nhập vào hộp một tỷ lệ phần tram.</ahelp>"
-#: 05070600.xhp
+#: 03010000.xhp
msgctxt ""
-"05070600.xhp\n"
-"tit\n"
+"03010000.xhp\n"
+"hd_id7319864\n"
"help.text"
-msgid "Align Bottom"
-msgstr "Canh lề dưới"
+msgid "View layout"
+msgstr "Xem bố trí"
-#: 05070600.xhp
+#: 03010000.xhp
msgctxt ""
-"05070600.xhp\n"
-"hd_id3153383\n"
-"1\n"
+"03010000.xhp\n"
+"par_id3423871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070600.xhp\" name=\"Align Bottom\">Align Bottom</link>"
-msgstr "<link href=\"text/shared/01/05070600.xhp\" name=\"Canh lề dưới\">Canh lề dưới</link>"
+msgid "For text documents, you can set the view layout. Reduce the zoom factor to see the effects of different view layout settings."
+msgstr "Đối với tập tin văn bản, bạn có thể đặt bố trí xem. Hãy giảm hệ số thu/phóng để thấy hiệu ứng của các thiết lập bố trí xem khác nhau."
-#: 05070600.xhp
+#: 03010000.xhp
msgctxt ""
-"05070600.xhp\n"
-"par_id3154613\n"
-"2\n"
+"03010000.xhp\n"
+"hd_id3818475\n"
"help.text"
-msgid "<ahelp hid=\".\">Vertically aligns the bottom edges of the selected objects. If only one object is selected in Draw or Impress, the bottom edge of the object is aligned to the lower page margin.</ahelp>"
-msgstr "<ahelp hid=\".\">Chỉnh canh theo chiều dọc các cạnh bên dưới của các đối tượng đã chọn. Nếu chỉ chọn một đối tượng trong Draw hay Impress thì cạnh bên dưới của được được chỉnh canh theo lề bên dưới của trang.</ahelp>"
+msgid "Automatic"
+msgstr "Tự động"
-#: 05070600.xhp
+#: 03010000.xhp
msgctxt ""
-"05070600.xhp\n"
-"par_id3151330\n"
-"4\n"
+"03010000.xhp\n"
+"par_id3187353\n"
"help.text"
-msgid "Objects are aligned to the bottom edge of the bottom most object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
-msgstr "Các đối tượng được chỉnh canh theo cạnh bên dưới của đối tượng dưới cùng trong vùng chọn. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "<ahelp hid=\".\">The automatic view layout displays pages side by side, as many as the zoom factor allows.</ahelp>"
+msgstr "<ahelp hid=\".\">Bố trí tự động xem thì hiển thị các trang nằm cạnh nhau, càng nhiều trang càng có thể theo hệ số thu/phóng đó.</ahelp>"
-#: 06140200.xhp
+#: 03010000.xhp
msgctxt ""
-"06140200.xhp\n"
-"tit\n"
+"03010000.xhp\n"
+"hd_id8455153\n"
"help.text"
-msgid "Keyboard"
-msgstr "Bàn phím"
+msgid "Single page"
+msgstr "Trang đơn"
-#: 06140200.xhp
+#: 03010000.xhp
msgctxt ""
-"06140200.xhp\n"
-"bm_id2322763\n"
+"03010000.xhp\n"
+"par_id9912411\n"
"help.text"
-msgid "<bookmark_value>keyboard;assigning/editing shortcut keys</bookmark_value><bookmark_value>customizing;keyboard</bookmark_value><bookmark_value>editing;shortcut keys</bookmark_value><bookmark_value>styles;keyboard shortcuts</bookmark_value>"
-msgstr "<bookmark_value>bàn phím;gán/chỉnh sửa phím tắt</bookmark_value><bookmark_value>tùy chỉnh;bàn phím</bookmark_value><bookmark_value>chỉnh sửa;phím tắt</bookmark_value><bookmark_value>kiểu dáng;lối tắt bàn phím</bookmark_value>"
+msgid "<ahelp hid=\".\">The single page view layout displays pages beneath each other, but never side by side.</ahelp>"
+msgstr "<ahelp hid=\".\">Bố trí xem trang đơn thì hiển thị các trang nằm dưới nhau, không bao giờ cạnh nhau.</ahelp>"
-#: 06140200.xhp
+#: 03010000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3148882\n"
-"1\n"
+"03010000.xhp\n"
+"hd_id9204992\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"Keyboard\">Keyboard</link>"
-msgstr "<link href=\"text/shared/01/06140200.xhp\" name=\"Bàn phím\">Bàn phím</link>"
+msgid "Columns"
+msgstr "Cột"
-#: 06140200.xhp
+#: 03010000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3159411\n"
-"2\n"
+"03010000.xhp\n"
+"par_id1993774\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIG_ACCEL\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
-msgstr "<ahelp hid=\"HID_CONFIG_ACCEL\">Gán hay chỉnh sửa phím tắt cho các lệnh $[officename], hay vĩ lệnh Basic $[officename].</ahelp>"
+msgid "<ahelp hid=\".\">In columns view layout you see pages in a given number of columns side by side. Enter the number of columns.</ahelp>"
+msgstr "<ahelp hid=\".\">Trong bố trí xem theo cột, bạn có thể thấy các trang theo một số cột đã ghi rõ, cả nằm cạnh nhau. Hãy nhập số cột thích hợp.</ahelp>"
-#: 06140200.xhp
+#: 03010000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3154682\n"
-"21\n"
+"03010000.xhp\n"
+"hd_id2949919\n"
"help.text"
-msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
-msgstr "Bạn có khả năng gán hay chỉnh sửa phím tắt cho ứng dụng hiện thời (v.d. Writer), hoặc cho tất cả các ứng dụng $[officename] (Writer, Calc, Impress v.v.)."
+msgid "Book mode"
+msgstr "Chế độ sách"
-#: 06140200.xhp
+#: 03010000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3150144\n"
-"29\n"
+"03010000.xhp\n"
+"par_id2355113\n"
"help.text"
-msgid "Avoid assigning shortcut keys that are currently used by your operating system."
-msgstr "Tuy nhiên, tránh gán phím tắt cũng được hệ điều hành dùng."
+msgid "<ahelp hid=\".\">In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number.</ahelp>"
+msgstr "<ahelp hid=\".\">Trong bố trí chế độ sách, bạn thấy hai trang nằm cạnh nhau, giống như một cuốn sách mở. Trang thứ nhất là một trang bên phải có số thứ tự lẻ.</ahelp>"
-#: 06140200.xhp
+#: 03020000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3147250\n"
-"27\n"
+"03020000.xhp\n"
+"tit\n"
"help.text"
-msgid "$[officename]"
-msgstr "$[officename]"
+msgid "Standard Bar"
+msgstr "Thanh Chuẩn"
-#: 06140200.xhp
+#: 03020000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3152425\n"
-"26\n"
+"03020000.xhp\n"
+"bm_id3150467\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_OFFICE\">Displays shortcut keys that are common to all $[officename] applications.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_OFFICE\">Hiển thị các phím tắt dùng chung bởi tất cả các ứng dụng $[officename].</ahelp>"
+msgid "<bookmark_value>standard bar on/off</bookmark_value>"
+msgstr "<bookmark_value>hiện/ẩn thanh chuẩn</bookmark_value>"
-#: 06140200.xhp
+#: 03020000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3149095\n"
-"25\n"
+"03020000.xhp\n"
+"hd_id3150467\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Writer</caseinline><caseinline select=\"CALC\">Calc</caseinline><caseinline select=\"IMPRESS\">Impress</caseinline><caseinline select=\"DRAW\">Draw</caseinline><caseinline select=\"MATH\">Math</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Writer </caseinline><caseinline select=\"CALC\">Calc </caseinline><caseinline select=\"IMPRESS\">Impress </caseinline><caseinline select=\"DRAW\">Draw </caseinline><caseinline select=\"MATH\">Math </caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/03020000.xhp\" name=\"Standard Bar\">Standard Bar</link>"
+msgstr "<link href=\"text/shared/01/03020000.xhp\" name=\"Thanh Chuẩn\">Thanh Chuẩn</link>"
-#: 06140200.xhp
+#: 03020000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3155892\n"
-"24\n"
+"03020000.xhp\n"
+"par_id3149495\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_MODULE\">Displays shortcut keys for the current $[officename] application.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_MODULE\">Hiển thị các phím tắt cho ứng dụng $[officename] hiện tại.</ahelp>"
+msgid "<ahelp hid=\".uno:FunctionBarVisible\">Shows or hides the <emph>Standard Bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:FunctionBarVisible\">Hiển thị hay ẩn <emph>Thanh Chuẩn</emph>.</ahelp>"
-#: 06140200.xhp
+#: 03040000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3149398\n"
-"3\n"
+"03040000.xhp\n"
+"tit\n"
"help.text"
-msgid "Shortcut keys"
-msgstr "Phím tắt"
+msgid "Input Method Status"
+msgstr "Trạng thái cách nhập"
-#: 06140200.xhp
+#: 03040000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3149811\n"
-"4\n"
+"03040000.xhp\n"
+"bm_id3159079\n"
"help.text"
-msgid "<ahelp hid=\"HID_ACCELCONFIG_LISTBOX\">Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the <emph>Function</emph> list, click a shortcut in this list, and then click <emph>Modify</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_ACCELCONFIG_LISTBOX\">Liệt kê các phím tắt và các lệnh liên quan. Để gán hay chỉnh sửa phím tắt cho lệnh được chọn trong danh sách <emph>Chức năng</emph>, nhấn vào phím tắt trong danh sách, sau đó nhấn vào nút <emph>Sửa</emph>.</ahelp>"
+msgid "<bookmark_value>IME;showing/hiding</bookmark_value><bookmark_value>input method window</bookmark_value>"
+msgstr "<bookmark_value>IME;hiện/ẩn</bookmark_value><bookmark_value>cửa sổ cách nhập</bookmark_value>"
-#: 06140200.xhp
+#: 03040000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3157909\n"
-"5\n"
+"03040000.xhp\n"
+"hd_id3159079\n"
+"1\n"
"help.text"
-msgid "Functions"
-msgstr "Chức năng"
+msgid "<link href=\"text/shared/01/03040000.xhp\" name=\"Input Method Status\">Input Method Status</link>"
+msgstr "<link href=\"text/shared/01/03040000.xhp\" name=\"Trạng thái cách nhập\">Trạng thái cách nhập</link>"
-#: 06140200.xhp
+#: 03040000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3155388\n"
-"6\n"
+"03040000.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "Lists the function categories and the $[officename] functions that you can assign shortcut keys to."
-msgstr "Liệt kê các phân loại chức năng và các chức năng $[officename] cho đó bạn có thể gán phím tắt."
+msgid "<ahelp hid=\".uno:ShowImeStatusWindow\">Shows or hides the Input Method Engine (IME) status window.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowImeStatusWindow\">Hiển thị hay ẩn cửa sổ trạng thái của Cơ chế Phương pháp Nhập (IME).</ahelp>"
-#: 06140200.xhp
+#: 03040000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3155321\n"
-"7\n"
+"03040000.xhp\n"
+"par_id3157898\n"
+"3\n"
"help.text"
-msgid "Category"
-msgstr "Loại"
+msgid "Currently only the Internet/Intranet Input Method Protocol (IIIMP) under Unix is supported."
+msgstr "Dưới UNIX, hiện thời chỉ hỗ trợ Giao thức Phương pháp Cách Internet/Intranet (IIMP)."
-#: 06140200.xhp
+#: 03050000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3149166\n"
-"8\n"
+"03050000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIGGROUP_ACC_LISTBOX\">Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category.</ahelp>"
-msgstr "<ahelp hid=\"HID_CONFIGGROUP_ACC_LISTBOX\">Liệt kê các phân loại chức năng sẵn sàng. Để gán phím tắt cho Kiểu dáng, mở phân loại « Kiểu dáng ».</ahelp>"
+msgid "Tools Bar"
+msgstr "Thanh Công cụ"
-#: 06140200.xhp
+#: 03050000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3154380\n"
-"9\n"
+"03050000.xhp\n"
+"bm_id3145356\n"
"help.text"
-msgid "Function"
-msgstr "Chức năng"
+msgid "<bookmark_value>tools bar</bookmark_value>"
+msgstr "<bookmark_value>thanh công cụ</bookmark_value>"
-#: 06140200.xhp
+#: 03050000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3159148\n"
-"10\n"
+"03050000.xhp\n"
+"hd_id3145356\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIGFUNCTION_ACC_LISTBOX\">Select a function that you want to assign a shortcut key to, click a key combination in the <emph>Shortcut keys</emph> list, and then click <emph>Modify</emph>. If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"HID_CONFIGFUNCTION_ACC_LISTBOX\">Chọn chức năng cho đó bạn muốn gán phím tắt, nhấn vào tổ hợp phím trong danh sách <emph>Phím tắt</emph>, rồi nhấn vào nút <emph>Sửa</emph>. Chức năng đó đã có phím tắt thì nó được hiển thị trong danh sách các <emph>Phím</emph>.</ahelp>"
+msgid "<link href=\"text/shared/01/03050000.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr "<link href=\"text/shared/01/03050000.xhp\" name=\"Thanh Công cụ\">Thanh Công cụ</link>"
-#: 06140200.xhp
+#: 03050000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3153332\n"
-"11\n"
+"03050000.xhp\n"
+"par_id3150603\n"
+"2\n"
"help.text"
-msgid "Keys"
-msgstr "Phím"
+msgid "<ahelp hid=\".uno:ToolBarVisible\">Shows or hides the <emph>Tools bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ToolBarVisible\">Hiển thị hay ẩn <emph>Thanh Công cụ</emph>.</ahelp>"
-#: 06140200.xhp
+#: 03060000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3150084\n"
-"12\n"
+"03060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_CONFIG_ACCEL:BOX_ACC_KEY\">Displays the shortcut keys that are assigned to the selected function.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:LISTBOX:TP_CONFIG_ACCEL:BOX_ACC_KEY\">Hiển thị phím tắt được gán cho chức năng đã chọn.</ahelp>"
+msgid "Status Bar"
+msgstr "Thanh Trạng thái"
-#: 06140200.xhp
+#: 03060000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3150772\n"
-"15\n"
+"03060000.xhp\n"
+"bm_id3152823\n"
"help.text"
-msgid "Modify"
-msgstr "Sửa"
+msgid "<bookmark_value>status bar on/off</bookmark_value>"
+msgstr "<bookmark_value>hiện/ẩn thanh trạng thái</bookmark_value>"
-#: 06140200.xhp
+#: 03060000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3152909\n"
-"16\n"
+"03060000.xhp\n"
+"hd_id3152823\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_ACC_CHANGE\">Assigns the key combination selected in the <emph>Shortcut keys</emph> list to the command selected in the <emph>Function </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_ACC_CHANGE\">Gán tổ hợp phím được chọn trong danh sách <emph>Phím tắt</emph> cho lệnh được chọn trong danh sách <emph>Chức năng</emph>.</ahelp>"
+msgid "<link href=\"text/shared/01/03060000.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr "<link href=\"text/shared/01/03060000.xhp\" name=\"Thanh Trạng thái\">Thanh Trạng thái</link>"
-#: 06140200.xhp
+#: 03060000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id7730033\n"
+"03060000.xhp\n"
+"par_id3147000\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá (các) phần từ đã chọn, không cần xác nhận.</ahelp>"
+msgid "<ahelp hid=\".uno:StatusBarVisible\">Shows or hides the <emph>Status Bar</emph> at the bottom edge of the window.</ahelp>"
+msgstr "<ahelp hid=\".uno:StatusBarVisible\">Hiển thị <emph>Thanh Trạng thái</emph> ở cạnh bên dưới cửa sổ.</ahelp>"
-#: 06140200.xhp
+#: 03110000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3154307\n"
-"17\n"
+"03110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Load"
-msgstr "Nạp"
+msgid "Full Screen"
+msgstr "Toàn màn hình"
-#: 06140200.xhp
+#: 03110000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3145609\n"
-"18\n"
+"03110000.xhp\n"
+"bm_id3160463\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_LOAD\">Replaces the shortcut key configuration with one that was previously saved.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_LOAD\">Thay thế cấu hình phím tắt bằng cấu hình đã lưu trước.</ahelp>"
+msgid "<bookmark_value>full screen view</bookmark_value><bookmark_value>screen; full screen views</bookmark_value><bookmark_value>complete screen view</bookmark_value><bookmark_value>views;full screen</bookmark_value>"
+msgstr "<bookmark_value>xem toàn màn hình</bookmark_value><bookmark_value>màn hình; ô xem toàn màn hình</bookmark_value><bookmark_value>ô xem màn hình hoàn toàn</bookmark_value><bookmark_value>ô xem;toàn màn hình</bookmark_value>"
-#: 06140200.xhp
+#: 03110000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3150823\n"
-"19\n"
+"03110000.xhp\n"
+"hd_id3160463\n"
+"1\n"
"help.text"
-msgid "Save"
-msgstr "Lưu"
+msgid "<link href=\"text/shared/01/03110000.xhp\" name=\"Full Screen\">Full Screen</link>"
+msgstr "<link href=\"text/shared/01/03110000.xhp\" name=\"Toàn màn hình\">Toàn màn hình</link>"
-#: 06140200.xhp
+#: 03110000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3149655\n"
-"20\n"
+"03110000.xhp\n"
+"par_id3148983\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_SAVE\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_SAVE\">Lưu cấu hình phím tắt hiện thời, để bạn nạp lại sau.</ahelp>"
+msgid "<ahelp hid=\".uno:FullScreen\">Shows or hides the menus and toolbars in Writer or Calc. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".uno:FullScreen\">Hiển thị hay ẩn các trình đơn và thanh công cụ trong mô-đun Writer hay Calc. Để ra khỏi chế độ toàn màn hình, nhấn vào nút <emph>Bật/tắt toàn màn hình</emph>.</ahelp>"
-#: 06140200.xhp
+#: 03110000.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3150824\n"
-"19\n"
+"03110000.xhp\n"
+"par_id3152594\n"
+"29\n"
"help.text"
-msgid "Reset"
-msgstr "Đặt lại"
+msgid "<ahelp hid=\"HID_FULLSCREENTOOLBOX\">In Writer and Calc, you can also use the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+J to switch between the normal and full screen mode.</ahelp>"
+msgstr "<ahelp hid=\"HID_FULLSCREENTOOLBOX\">Trong Writer và Calc, bạn cũng có thể sử dụng phím tắt <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+J để chuyển đổi giữa chế độ màn hình bình thường và chế độ toàn màn hình.</ahelp>"
-#: 06140200.xhp
+#: 03110000.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id756248\n"
+"03110000.xhp\n"
+"par_id3154318\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt lại mỗi giá trị bị sửa đổi về giá trị mặc định.</ahelp>"
+msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
+msgstr "Bạn vẫn còn có thể sử dụng phím tắt ở chế độ <emph>Toàn màn hình</emph>, mặc dù sẽ không thể sử dụng các trình đơn. <switchinline select=\"sys\"><caseinline select=\"WIN\">Để mở trình đơn <emph>Xem</emph>, bấm tổ hợp phím <item type=\"keycode\">Alt+V</item>. </caseinline></switchinline>"
-#: 05110600m.xhp
+#: 03150100.xhp
msgctxt ""
-"05110600m.xhp\n"
+"03150100.xhp\n"
"tit\n"
"help.text"
-msgid "Space Rows Equally"
-msgstr "Cách đều các hàng"
+msgid "Confirm Delete"
+msgstr "Xác nhận xoá"
-#: 05110600m.xhp
+#: 03150100.xhp
msgctxt ""
-"05110600m.xhp\n"
-"hd_id3149871\n"
+"03150100.xhp\n"
+"hd_id3150278\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
-msgstr "<link href=\"text/shared/01/05110600m.xhp\" name=\"Cách đều các hàng\">Cách đều các hàng</link>"
+msgid "Confirm Delete"
+msgstr "Xác nhận xoá"
-#: 05110600m.xhp
+#: 03150100.xhp
msgctxt ""
-"05110600m.xhp\n"
-"par_id3154766\n"
+"03150100.xhp\n"
+"par_id3148668\n"
"2\n"
"help.text"
-msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeRows\">Adjusts the height of the selected rows to match the height of the tallest row in the selection.</ahelp></variable>"
-msgstr "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeRows\">Điều chỉnh chiều cao của hàng được chọn theo chiều cao lớn nhất trong số các hàng đó.</ahelp></variable>"
-
-#: 05110600m.xhp
-msgctxt ""
-"05110600m.xhp\n"
-"par_id3153569\n"
-"92\n"
-"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
-msgstr "Chọn <emph>Bảng - Tự động chỉnh cỡ - Chia đều các hàng</emph>"
-
-#: 05110600m.xhp
-msgctxt ""
-"05110600m.xhp\n"
-"par_id3153755\n"
-"93\n"
-"help.text"
-msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
-msgstr "Mở thanh công cụ <emph>Tối ưu</emph> từ thanh <emph>Bảng</emph>, nhấn"
-
-#: 05110600m.xhp
-#, fuzzy
-msgctxt ""
-"05110600m.xhp\n"
-"par_id3145297\n"
-"help.text"
-msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3155994\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Xác nhận hay thôi hành động xoá.</ahelp>"
-#: 05110600m.xhp
+#: 03150100.xhp
msgctxt ""
-"05110600m.xhp\n"
-"par_id3153206\n"
-"94\n"
+"03150100.xhp\n"
+"hd_id3152821\n"
+"3\n"
"help.text"
-msgid "Distribute Rows Equally"
-msgstr "Phân phối đều các hàng"
+msgid "Delete"
+msgstr "Xoá"
-#: 05340100.xhp
+#: 03150100.xhp
msgctxt ""
-"05340100.xhp\n"
-"tit\n"
+"03150100.xhp\n"
+"par_id3150040\n"
+"4\n"
"help.text"
-msgid "Row Height"
-msgstr "Bề cao hàng"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Thực hiện hành động xoá trong tập tin hiện tại.</ahelp>"
-#: 05340100.xhp
+#: 03150100.xhp
msgctxt ""
-"05340100.xhp\n"
-"hd_id3154400\n"
-"1\n"
+"03150100.xhp\n"
+"hd_id3149999\n"
+"5\n"
"help.text"
-msgid "Row Height"
-msgstr "Bề cao hàng"
+msgid "Delete All"
+msgstr "Xoá tất cả"
-#: 05340100.xhp
+#: 03150100.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3154044\n"
-"2\n"
+"03150100.xhp\n"
+"par_id3155616\n"
+"6\n"
"help.text"
-msgid "<variable id=\"zeilenhoehetext\"><ahelp hid=\"HID_BROWSER_ROWHEIGHT\">Changes the height of the current row, or the selected rows.</ahelp></variable>"
-msgstr "<variable id=\"zeilenhoehetext\"><ahelp hid=\"HID_BROWSER_ROWHEIGHT\">Sửa đổi chiều cao của hàng hiện tại, hay của những hàng đã chọn.</ahelp></variable>"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Thực hiện hành động xoá trong tất cả các tập tin đã chọn.</ahelp>"
-#: 05340100.xhp
+#: 03150100.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3150756\n"
+"03150100.xhp\n"
+"hd_id3157991\n"
"7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also change the height of a row by dragging the divider below the row header. To fit the row height to the cell contents, double-click the divider. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bạn cũng có khả năng sửa đổi chiều cao của hàng bằng cách kéo đường chia nằm bên dưới đầu hàng. Để vừa chiều cao hàng khít nội dung của ô, nhấn-đôi vào đường chia.</caseinline></switchinline>"
-
-#: 05340100.xhp
-msgctxt ""
-"05340100.xhp\n"
-"hd_id3149962\n"
-"3\n"
-"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "Do Not Delete"
+msgstr "Không xoá"
-#: 05340100.xhp
+#: 03150100.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3144750\n"
-"4\n"
+"03150100.xhp\n"
+"par_id3147043\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_ROWHEIGHT_MF_VALUE\">Enter the row height that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_ROWHEIGHT_MF_VALUE\">Nhập chiều cao bạn muốn dùng.</ahelp>"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Từ chối hành động xoá cho tập tin hiện tại.</ahelp>"
-#: 05340100.xhp
+#: 03150100.xhp
msgctxt ""
-"05340100.xhp\n"
-"hd_id3154926\n"
-"5\n"
+"03150100.xhp\n"
+"hd_id3149346\n"
+"9\n"
"help.text"
-msgid "Default value"
-msgstr "Giá trị mặc định"
+msgid "Cancel"
+msgstr "Thôi"
-#: 05340100.xhp
+#: 03150100.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3154894\n"
-"6\n"
+"03150100.xhp\n"
+"par_id3148620\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_ROWHEIGHT_CB_STANDARD\">Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents.</ahelp>"
-msgstr ""
+msgid "Cancels the deletion in the current file and any other selected files."
+msgstr "Thôi hành động xoá trong tập tin hiện tại và bất cứ tập tin khác nào cũng được chọn."
#: 03170000.xhp
msgctxt ""
@@ -16894,5561 +13353,4799 @@ msgctxt ""
msgid "To detach the <emph>Color Bar</emph>, click on a gray area of the toolbar and then drag. To reattach the <emph>Color Bar</emph>, drag the title bar of the toolbar to the edge of the window."
msgstr "Để gỡ ra <emph>Thanh Màu</emph>, nhấn vào một vùng màu xám của thanh công cụ, sau đó kéo. Để gắn lại <emph>Thanh Màu</emph>, kéo thanh tựa đề của thanh công cụ sang cạnh của cửa sổ."
-#: 01010303.xhp
+#: 03990000.xhp
msgctxt ""
-"01010303.xhp\n"
+"03990000.xhp\n"
"tit\n"
"help.text"
-msgid "Private"
-msgstr "Cá nhân"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
-#: 01010303.xhp
+#: 03990000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3149031\n"
+"03990000.xhp\n"
+"hd_id3160463\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">Private</link>"
-msgstr "<link href=\"text/shared/01/01010303.xhp\" name=\"Cá nhân\">Cá nhân</link>"
+msgid "<link href=\"text/shared/01/03990000.xhp\" name=\"Toolbars\">Toolbars</link>"
+msgstr "<link href=\"text/shared/01/03990000.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link>"
-#: 01010303.xhp
+#: 03990000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3148731\n"
+"03990000.xhp\n"
+"par_id3149748\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
-msgstr "<ahelp hid=\".\">Chứa các thông tin cá nhân dành cho danh thiếp. Các bố trí danh thiếp được chọn trên thẻ <emph>Danh thiếp</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a submenu to show and hide toolbars.</ahelp> A toolbar contains icons and options that let you quickly access $[officename] commands."
+msgstr "<ahelp hid=\".\">Mở một trình đơn phụ để hiển thị và ẩn các thanh công cụ khác nhau.</ahelp> Thanh công cụ chứa các biểu tượng và tùy chọn để giúp bạn truy cập nhanh đến các chức năng $[officename]."
-#: 01010303.xhp
+#: 03990000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3159201\n"
+"03990000.xhp\n"
+"hd_id3153683\n"
"3\n"
"help.text"
-msgid "Private data"
-msgstr "Dữ liệu cá nhân"
+msgid "<link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Tùy chỉnh\">Tùy chỉnh</link>"
-#: 01010303.xhp
+#: 03990000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3147399\n"
-"4\n"
+"03990000.xhp\n"
+"par_id2789086\n"
"help.text"
-msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>."
-msgstr ""
+msgid "Opens a dialog where you can add, edit, and remove icons."
+msgstr "Mở một hộp thoại trong đó bạn có thể thêm, sửa đổi và gỡ biểu tượng."
-#: 01010303.xhp
+#: 03990000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3156427\n"
-"15\n"
+"03990000.xhp\n"
+"hd_id371715\n"
"help.text"
-msgid "First name 2"
-msgstr "Tên 2"
+msgid "Reset"
+msgstr "Đặt lại"
-#: 01010303.xhp
+#: 03990000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3149750\n"
-"16\n"
+"03990000.xhp\n"
+"par_id1886654\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2\">Enter the first name of the person, whom you want to use as a second contact.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2\">Hãy nhập tên (v.d. « Mình ») của người bạn muốn đặt là liên lạc thứ hai.</ahelp>"
+msgid "<ahelp hid=\".\">Choose <emph>View - Toolbars - Reset</emph> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn lệnh <emph>Xem > Thanh công cụ > Đặt lại</emph> để đặt lại các thanh công cụ về ứng xử tùy thuộc ngữ cảnh mặc định. Một số thanh công cụ nào đó vẫn còn sẽ hiển thị tự động, phụ thuộc vào ngữ cảnh.</ahelp>"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3145345\n"
-"17\n"
+"04050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Last name 2"
-msgstr "Họ 2"
+msgid "Comment"
+msgstr "Ghi chú"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3154288\n"
-"18\n"
+"04050000.xhp\n"
+"bm_id3154100\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2\">Enter the last name of the person, whom you want to use as a second contact.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2\">Hãy nhập họ (v.d. « Nguyễn ») của người bạn muốn đặt là liên lạc thứ hai.</ahelp>"
+msgid "<bookmark_value>comments;inserting/editing/deleting/printing</bookmark_value> <bookmark_value>inserting; comments</bookmark_value> <bookmark_value>editing; comments</bookmark_value> <bookmark_value>deleting;comments</bookmark_value> <bookmark_value>Navigator;comments</bookmark_value> <bookmark_value>printing;comments</bookmark_value> <bookmark_value>records; inserting comments </bookmark_value> <bookmark_value>remarks, see also comments</bookmark_value>"
+msgstr "<bookmark_value>ghi chú;chèn/chỉnh sửa/xoá/in</bookmark_value><bookmark_value>chèn;ghi chú</bookmark_value><bookmark_value>chỉnh sửa; ghi chú</bookmark_value><bookmark_value>xoá;ghi chú</bookmark_value><bookmark_value>Bộ điều hướng;ghi chú</bookmark_value><bookmark_value>in ấn;ghi chú</bookmark_value><bookmark_value>bản ghi; chèn ghi chú </bookmark_value><bookmark_value>bình luận, xem thêm ghi chú</bookmark_value>"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3150774\n"
-"19\n"
+"04050000.xhp\n"
+"hd_id3154100\n"
+"1\n"
"help.text"
-msgid "Initials 2"
-msgstr "VT 2"
+msgid "Comment"
+msgstr "Ghi chú"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3151110\n"
-"20\n"
+"04050000.xhp\n"
+"par_id3151100\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2\">Enter the initials of the person, whom you want to use as a second contact.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2\">Hãy nhập tên viết tắt (v.d. « V. » cho Văn) của người bạn muốn đặt là liên lạc thứ hai.</ahelp>"
+msgid "<variable id=\"notizbearbeitentext\"><ahelp hid=\".uno:InsertAnnotation\">Inserts a comment.</ahelp></variable>"
+msgstr "<variable id=\"notizbearbeitentext\"><ahelp hid=\".uno:InsertAnnotation\">Chèn một ghi chú.</ahelp></variable>"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3153543\n"
-"5\n"
+"04050000.xhp\n"
+"hd_id9851680\n"
"help.text"
-msgid "Country"
-msgstr "Quốc gia"
+msgid "Inserting comments"
+msgstr "Chèn ghi chú"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3150085\n"
-"6\n"
+"04050000.xhp\n"
+"par_id1830500\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_STATE\">Enter the name of the country in which you live.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_STATE\">Nhập tên của nước bạn ở (v.d. « Việt Nam ».</ahelp>"
+msgid "In Writer, the command <item type=\"menuitem\">Insert - Comment</item> or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+C key combination inserts a comment anchor at the current cursor position. A comment box is shown at the page margin, where you can enter the text of your comment. A line connects anchor and comment box. If a text range is selected, the comment is attached to the text range."
+msgstr "Trong Writer,lệnh<item type=\"menuitem\">Chèn - chú thích</item> hoặc tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+N sẽ chèn vào một đánh dấu ghi chú tại vị trí dấu nhắc văn bản hiện tại. Một hộp ghi chú sẽ được hiển thị bên lề của trang, bạn có thể điền vào những gì cần ghi chú trong hộp này, sẽ có một đường thẳng nối giữa dấu neo và hộp ghi chú."
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3155449\n"
-"7\n"
+"04050000.xhp\n"
+"par_id0915200910571516\n"
"help.text"
-msgid "Profession"
-msgstr "Nghề nghiệp"
+msgid "In Calc, Draw, and Impress, the command <item type=\"menuitem\">Insert - Comment</item> inserts a comment."
+msgstr "Trong Bảng vẽ, Bảng tính, Trình diễn, lệnh<item type=\"menuitem\">Chèn-Ghi chú</item> chèn một ghi chú."
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3156192\n"
-"8\n"
+"04050000.xhp\n"
+"par_id1831\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION\">Enter the title of your profession.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION\">Nhập tên của nghề nghiệp của bạn (v.d. « Lập trình viên »).</ahelp>"
+msgid "The author name and the date and time of creating this comment is shown at the bottom of the comment box."
+msgstr "Tên của tác giả và ngày giờ tạo ghi chú này được hiển thị ở dưới của hộp ghi chú."
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3147336\n"
-"9\n"
+"04050000.xhp\n"
+"par_id6718649\n"
"help.text"
-msgid "Phone"
-msgstr "Điện thoại"
+msgid "The comments by different authors get different colors. Choose <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - User Data</item> to enter your name so that it can show up as the comment author."
+msgstr ""
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3145315\n"
-"10\n"
+"04050000.xhp\n"
+"hd_id2929166\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PHONE\">Enter your home telephone number.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PHONE\">Nhập số điện thoại ở nhà của bạn.</ahelp>"
+msgid "Editing comments"
+msgstr "Sửa chú thích"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3149763\n"
-"11\n"
+"04050000.xhp\n"
+"par_id5201879\n"
"help.text"
-msgid "Mobile"
-msgstr "Di động"
+msgid "Every user with write permission to the document can edit and delete comments of all authors."
+msgstr "Mọi người dùng có quyền ghi vào tài liệu văn bản thì có khả năng chỉnh sửa và xoá ghi chú của bất cứ tác giả nào."
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3156155\n"
-"12\n"
+"04050000.xhp\n"
+"par_id2571794\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE\">Nhập số điện thoại di động của bạn.</ahelp>"
+msgid "The comment box contains an icon with a down arrow. Click the icon to open a menu with some commands to delete comments."
+msgstr "Hộp ghi chú chứa một biểu tượng có mũi tên chỉ xuống. Nhấn vào biểu tượng này để mở trình đơn chứa một số lệnh để xoá ghi chú."
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3154306\n"
-"13\n"
+"04050000.xhp\n"
+"par_id0522200809383431\n"
"help.text"
-msgid "Homepage"
-msgstr "Trang chủ"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete the current comment.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá ghi chú hiện tại.</ahelp>"
-#: 01010303.xhp
+#: 04050000.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3153666\n"
-"14\n"
+"04050000.xhp\n"
+"par_id0522200809383485\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_WWW\">Enter the address of your internet homepage.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_WWW\">Nhập địa chỉ của trang chủ Internet của bạn.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments by this author in the current document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá mọi ghi chú của tác giả này khỏi tài liệu hiện tại.</ahelp>"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"tit\n"
+"04050000.xhp\n"
+"par_id0522200809383428\n"
"help.text"
-msgid "Filter"
-msgstr "Lọc"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments in the current document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Xoá mọi ghi chú khỏi tài liệu hiện tại.</ahelp>"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3153323\n"
-"1\n"
+"04050000.xhp\n"
+"par_id1857051\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230402.xhp\" name=\"Filter\">Filter</link>"
-msgstr "<link href=\"text/shared/01/02230402.xhp\" name=\"Lọc\">Lọc</link>"
+msgid "<ahelp hid=\".\">Choose a command to delete the current comment, or all comments from the same author as the current comment, or all comments in the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn một lệnh để xoá ghi chú hiện tại, hay tất cả các ghi chú của cùng một tác giả với ghi chú hiện tại, hay tất cả các ghi chú trong tài liệu đó.</ahelp>"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3147088\n"
-"2\n"
+"04050000.xhp\n"
+"par_id0305200911090684\n"
"help.text"
-msgid "Set the criteria for filtering the list of changes on the <link href=\"text/shared/01/02230401.xhp\" name=\"List\"><emph>List</emph></link> tab."
-msgstr "Đặt các tiêu chuẩn lọc danh sách thay đổi trên thẻ <link href=\"text/shared/01/02230401.xhp\" name=\"Danh sách\"><emph>Danh sách</emph></link> tab."
+msgid "If the comment in a text document was written by another author, there is a Reply command in the context menu. <ahelp hid=\".\">This command inserts a new comment adjacent to the comment to which you want to reply.</ahelp> The comment anchor is the same for both comments. Type your reply text in the new comment. Save and send your document to other authors, then those authors can add replies, too."
+msgstr "Nếu ghi chú trong một tài liệu văn bản là của một tác giả khác, sử dụng lệnh Hồi âm trong trình đơn ngữ cảnh. <ahelp hid=\".\">Lệnh này chèn một ghi chú mới, kề ghi chú bạn muốn hồi âm.</ahelp> Neo ghi chú là giống nhau cho cả hai ghi chú. Gõ văn bản hồi âm của bạn trong ghi chú mới. Lưu và gửi tài liệu của bạn cho những tác giả khác, những tác giả đó cũng có thể thêm hồi âm."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3150355\n"
-"3\n"
+"04050000.xhp\n"
+"par_id0804200803435883\n"
"help.text"
-msgid "Date"
-msgstr "Ngày"
+msgid "<ahelp hid=\".\">Use <item type=\"menuitem\">View - Comments</item> to show or hide all comments (not available in Calc).</ahelp>"
+msgstr "<ahelp hid=\".\">Use <item type=\"menuitem\">Xem-Ghi chú</item> để hiện thị hoặc ẩn tất cả ghi chú (không có trong bảng tính).</ahelp>"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3147573\n"
-"4\n"
+"04050000.xhp\n"
+"par_id0302200901430918\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_TF_DATE2\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_FILTER_TF_DATE2\">Lọc danh sách thay đổi theo ngày/giờ bạn ghi rõ.</ahelp>"
+msgid "In the Find & Replace dialog of text documents, you can select to include the comments texts in your searches."
+msgstr "Trong hộp thoại Tìm kiếm và Thay thế của tài liệu văn bản, bạn có thể chọn để bao gồm những văn bản ghi chú trong những tìm kiếm của bạn"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3154811\n"
-"17\n"
+"04050000.xhp\n"
+"hd_id3445539\n"
"help.text"
-msgid "Set Date/Time"
-msgstr "Đặt Ngày/Giờ"
+msgid "Navigating from comment to comment in text documents"
+msgstr "Di chuyển từ ghi chú này sang ghi chú khác trong những tài liệu văn bản"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3159147\n"
+"04050000.xhp\n"
+"par_id4271370\n"
"help.text"
-msgid "<image id=\"img_id3150771\" src=\"cmd/sc_timefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150771\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150771\" src=\"cmd/sc_timefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150771\">Biểu tượng</alt></image>"
+msgid "When the cursor is inside a comment, you can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Down to jump to the next comment, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Up to jump to the previous comment."
+msgstr "Khi con trỏ chuột ở trong một ghi chú, bạn có thể nhấn tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Down để chuyển tới ghi chú tiếp theo, hoặc nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Up để chuyển về ghi chú trước đó."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3143270\n"
-"18\n"
+"04050000.xhp\n"
+"par_id2116153\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_IB_CLOCK2\">Enters the current date and time into the corresponding boxes.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_FILTER_IB_CLOCK2\">Nhập vào hộp tương ứng ngày tháng và thời gian hiện thời.</ahelp>"
+msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor. You can also use the small Navigation window below the vertical scrollbar to jump from one comment anchor to the next comment anchor."
+msgstr "Khi con trỏ nằm bên trong đoạn văn thông thường, hãy bấm phím nói trên để nhảy tới neo ghi chú kế tiếp hay về neo ghi chú trước. Bạn cũng có thể sử dụng cửa sổ <emph>điều hướng</emph> nhỏ bên dưới thanh cuộn nằm dọc, để nhảy từ neo ghi chú này sang neo ghi chú khác."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3155261\n"
-"5\n"
+"04050000.xhp\n"
+"par_id5381328\n"
"help.text"
-msgid "Author"
-msgstr "Tác giả"
+msgid "You can also open the Navigator to see a list of all comments. Right-click a comment name in the Navigator to edit or delete the comment."
+msgstr "Bạn cũng có thể mở Bộ điều hướng để xem danh sách tất cả các ghi chú. Nhấn-phải vào một tên ghi chú trong Bộ điều hướng để chỉnh sửa hay xoá ghi chú đó."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3150084\n"
-"6\n"
+"04050000.xhp\n"
+"hd_id5664235\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_LB_AUTOR\">Filters the list of changes according to the name of the author that you select from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_FILTER_LB_AUTOR\">Lọc danh sách thay đổi theo tên của tác giả bạn chọn trong danh sách.</ahelp>"
+msgid "Printing comments"
+msgstr "In ghi chú"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3147531\n"
-"13\n"
+"04050000.xhp\n"
+"par_id2254402\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Range </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Phạm vi</caseinline></switchinline>"
+msgid "To change the printing option for comments for all your text documents, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME Writer - Print</item>."
+msgstr ""
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3156344\n"
-"14\n"
+"04050000.xhp\n"
+"hd_id0915200910571612\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"HID_REDLINING_FILTER_ED_RANGE\">Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the <emph>Set Reference </emph>button (<emph>...</emph>).</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"HID_REDLINING_FILTER_ED_RANGE\">Lọc danh sách thay đổi theo phạm vi ô bạn ghi rõ. Để chọn phạm vi ô trên bảng, nhấn vào cái nút <emph>Đặt tham chiếu</emph> (<emph>...</emph>).</ahelp></caseinline></switchinline>"
+msgid "Comments in spreadsheets"
+msgstr "Những ghi chú trong bảng tính"
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id4441663\n"
+"04050000.xhp\n"
+"par_id3166460\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the range of cells that you want to use as a filter.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc.</ahelp>"
+msgid "When you attach a comment to a cell, a callout appears where you can enter your text. A small square in the upper right corner of a cell marks the position of a comment. To display the comment permanently, right-click the cell, and choose <emph>Show Comment</emph>."
+msgstr "Khi bạn đính một ghi chú kèm theo một ô, chương trình hiển thị một khung thoại để bạn có thể gõ đoạn văn vào. Một hình vuông nhỏ ở góc trên bên phải của ô thì ngụ ý vị trí của ghi chú. Để luôn hiển thị ghi chú, nhấn-phải vào ô đó, sau đó chọn lệnh <emph>Hiện ghi chú</emph>."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3147304\n"
-"15\n"
+"04050000.xhp\n"
+"par_id8336741\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set Reference </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đặt tham chiếu</caseinline></switchinline>"
+msgid "To change the object properties of a comment, for example the background color, choose <emph>Show Comment</emph> as above, then right-click the comment (do not double-click the text)."
+msgstr "Để thay đổi các thuộc tính đối tượng của một ghi chú nào đó, ví dụ màu nền, hãy chọn lệnh <emph>Hiện ghi chú</emph> như nói trên, sau đó nhấn-phải vào ghi chú (không nhấn đôi vào đoạn văn của ghi chú)."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3151210\n"
+"04050000.xhp\n"
+"par_id3155390\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Biểu tượng</alt></image>"
+msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, right-click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
+msgstr ""
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3156215\n"
-"16\n"
+"04050000.xhp\n"
+"par_idN107A1\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_BTN_REF\">Select the range of cells that you want to use as a filter.</ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_FILTER_BTN_REF\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc.</ahelp>"
+msgid "To change the position or size of a comment, drag a border or corner of the comment."
+msgstr "Để thay đổi vị trí hay kích cỡ của một ghi chú nào đó, kéo một viền hay góc của nó."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3159149\n"
-"20\n"
+"04050000.xhp\n"
+"par_id9499496\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shrink/Max </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Thu/Phóng </caseinline></switchinline>"
+msgid "To delete a comment, right-click the cell, then choose <emph>Delete Comment</emph>."
+msgstr "Để xoá một ghi chú nào đó, nhấn-phải vào ô đó, sau đó chọn lệnh <emph>Xoá ghi chú</emph>."
-#: 02230402.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3149809\n"
+"04050000.xhp\n"
+"par_id2036805\n"
"help.text"
-msgid "<image id=\"img_id3154153\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3154153\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Biểu tượng</alt></image>"
+msgid "You can also right-click a comment name in the Navigator window to choose some editing commands."
+msgstr "Bạn cũng có thể nhấn-phải vào một tên ghi chú trong cửa sổ Bộ điều hướng, để chọn một số lệnh chỉnh sửa."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3147287\n"
-"21\n"
+"04050000.xhp\n"
+"par_id3153716\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:IMAGEBUTTON:RID_SCDLG_SIMPLEREF:RB_ASSIGN\">Select the range of cells that you want to use as a filter, and then click this button to return to the filter list.</ahelp>"
-msgstr "<ahelp hid=\"SC:IMAGEBUTTON:RID_SCDLG_SIMPLEREF:RB_ASSIGN\">Chọn phạm vi ô bạn muốn dùng làm bộ lọc, sau đó nhấn vào nút này để trở về danh sách bộ lọc.</ahelp>"
+msgid "To set the printing options for comments in your spreadsheet, choose <emph>Format - Page</emph>, and then click the <emph>Sheet</emph> tab."
+msgstr "Để đặt các tùy chọn in ấn cho các ghi chú trong bảng tính, chọn lệnh trình đơn <emph>Định dạng > Trang</emph>, sau đó nhấn vào thẻ<emph>Bảng</emph>."
-#: 02230402.xhp
+#: 04050000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3156543\n"
-"9\n"
+"04050000.xhp\n"
+"par_id2419507\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Action </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hành động</caseinline></switchinline>"
+msgid "In Impress, you can choose to use the Notes view to write a page of notes for every slide. Additionally, you can insert comments to your slides."
+msgstr "Trong trình diễn, bạn có thể chọn để sử dụng xem Lưu ý để viết một trang lưu ý cho mỗi tờ chiếu. Thêm vào đó, bạn có thể chèn ghi chú cho những tờ chiếu của bạn."
-#: 02230402.xhp
+#: 04060000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3155413\n"
-"12\n"
+"04060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_REDLINING_FILTER_LB_ACTION\">Filters the list of changes according to the type of change that you select in the <emph>Action</emph> box.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_REDLINING_FILTER_LB_ACTION\">Lọc danh sách thay đổi theo kiểu thay đổi bạn chọn trong hộp <emph>Hành động</emph>.</ahelp></caseinline></switchinline>"
+msgid "Scan"
+msgstr "Quét"
-#: 02230402.xhp
+#: 04060000.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3155855\n"
-"22\n"
+"04060000.xhp\n"
+"hd_id3146902\n"
+"1\n"
"help.text"
-msgid "Comment"
-msgstr "Chú thích"
+msgid "<link href=\"text/shared/01/04060000.xhp\" name=\"Scan\">Scan</link>"
+msgstr "<link href=\"text/shared/01/04060000.xhp\" name=\"Quét\">Quét</link>"
-#: 02230402.xhp
+#: 04060000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3151114\n"
-"23\n"
+"04060000.xhp\n"
+"par_id3154926\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_ED_COMMENT\">Filters the comments of the changes according to the keyword(s) that you enter. </ahelp>"
-msgstr "<ahelp hid=\"HID_REDLINING_FILTER_ED_COMMENT\">Lọc các chú thích về thay đổi theo những từ khoá bạn nhập vào. </ahelp>"
+msgid "<variable id=\"scan\"><ahelp hid=\".uno:Scan\">Inserts a scanned image into your document.</ahelp></variable>"
+msgstr "<variable id=\"scan\"><ahelp hid=\".uno:Scan\">Chèn vào tài liệu một ảnh đã quét.</ahelp></variable>"
-#: 02230402.xhp
+#: 04060000.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3163820\n"
-"24\n"
+"04060000.xhp\n"
+"par_id3153124\n"
+"5\n"
"help.text"
-msgid "You can also use <link href=\"text/shared/01/02100000.xhp\" name=\"regular expressions\">regular expressions</link> (wildcards) when you filter the comments."
-msgstr "Bạn cũng có thể sử dụng <link href=\"text/shared/01/02100000.xhp\" name=\"biểu thức chính quy\">biểu thức chính quy</link> (ký tự đại diện) để lọc chú thích."
+msgid "To insert a scanned image, the driver for your scanner must be installed. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at http://www.mostang.com/sane/. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
+msgstr "Để chèn ảnh đã quét, trước tiên phải cài đặt trình điều khiển máy quét.<switchinline select=\"sys\"><caseinline select=\"UNIX\">Dưới hệ thống UNIX, hãy cài đặt gói SANE có thể tìm ở địa chỉ « http://www.mostang.com/sane/ ». Gói SANE phải dùng cùng một thư viện libc với $[officename].</caseinline></switchinline>"
-#: 01050000.xhp
+#: 04060000.xhp
msgctxt ""
-"01050000.xhp\n"
-"tit\n"
+"04060000.xhp\n"
+"hd_id3154673\n"
+"3\n"
"help.text"
-msgid "Close"
-msgstr "Đóng"
+msgid "<link href=\"text/shared/01/04060100.xhp\" name=\"Select Source\">Select Source</link>"
+msgstr "<link href=\"text/shared/01/04060100.xhp\" name=\"Chọn nguồn\">Chọn nguồn</link>"
-#: 01050000.xhp
+#: 04060000.xhp
msgctxt ""
-"01050000.xhp\n"
-"bm_id3154545\n"
+"04060000.xhp\n"
+"hd_id3152801\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>documents; closing</bookmark_value><bookmark_value>closing;documents</bookmark_value>"
-msgstr "<bookmark_value>đối tượng; chỉnh sửa</bookmark_value><bookmark_value>đóng;tài liệu</bookmark_value>"
+msgid "<link href=\"text/shared/01/04060200.xhp\" name=\"Request\">Request</link>"
+msgstr "<link href=\"text/shared/01/04060200.xhp\" name=\"Yêu cầu\">Yêu cầu</link>"
-#: 01050000.xhp
+#: 04060100.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"04060100.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close\">Close</link>"
-msgstr "<link href=\"text/shared/01/01050000.xhp\" name=\"Đóng\">Đóng</link>"
+msgid "Select Source"
+msgstr "Chọn nguồn"
-#: 01050000.xhp
+#: 04060100.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3148731\n"
-"2\n"
+"04060100.xhp\n"
+"hd_id3150758\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".uno:CloseDoc\">Closes the current document without exiting the program.</ahelp>"
-msgstr "<ahelp hid=\".uno:CloseDoc\">Đóng tài liệu hiện tại mà không thoát khỏi chương trình.</ahelp>"
+msgid "Select Source"
+msgstr "Chọn nguồn"
-#: 01050000.xhp
+#: 04060100.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3149095\n"
-"7\n"
+"04060100.xhp\n"
+"par_id3152823\n"
+"2\n"
"help.text"
-msgid "The <emph>Close </emph>command closes all of the open windows for the current document."
-msgstr "Lệnh <emph>Đóng</emph> thì đóng tất cả các cửa sổ còn mở đối với tài liệu hiện tại."
+msgid "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Selects the scanner that you want to use.</ahelp></variable>"
+msgstr "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Chọn máy quét cần dùng.</ahelp></variable>"
-#: 01050000.xhp
+#: 04060200.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3148620\n"
-"4\n"
+"04060200.xhp\n"
+"tit\n"
"help.text"
-msgid "If you have made changes to the current document, you are prompted if you want to <link href=\"text/shared/01/01060000.xhp\" name=\"save\">save</link> your changes."
-msgstr "Nếu bạn đã thay đổi tài liệu hiện tại, chương trình sẽ nhắc bạn <link href=\"text/shared/01/01060000.xhp\" name=\"lưu\">lưu</link> lại các thay đổi."
+msgid "Request"
+msgstr "Yêu cầu"
-#: 01050000.xhp
+#: 04060200.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3159201\n"
-"8\n"
+"04060200.xhp\n"
+"hd_id3153514\n"
+"1\n"
"help.text"
-msgid "When you close the last open document window, you see the <link href=\"text/shared/guide/startcenter.xhp\">Start Center</link>."
-msgstr "Nếu như bạn đóng cửa sổ tài liệu còn mở duy nhất còn lại, <link href=\"text/shared/guide/startcenter.xhp\">Trang bắt đầu</link> sẽ được hiển thị."
+msgid "Request"
+msgstr "Yêu cầu"
-#: 01050000.xhp
+#: 04060200.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153821\n"
-"9\n"
+"04060200.xhp\n"
+"par_id3150278\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/02/10100000.xhp\" name=\"Close the current window\">Close the current window</link>"
-msgstr "<link href=\"text/shared/02/10100000.xhp\" name=\"Đóng cửa sổ hiện tại\">Đóng cửa sổ hiện tại</link>"
+msgid "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Scans an image, and then inserts the result into the document. The scanning dialog is provided by the manufacturer of the scanner.</ahelp></variable> For an explanation of the dialog please refer to the documentation on your scanner."
+msgstr "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Quét ảnh, sau đó chèn vào tài liệu kết quả của thao tác quét. Hộp thoại quét được cung cấp bởi nhà sản xuất máy quét.</ahelp></variable> Để tìm thêm thông tin về hộp thoại này, xem tài liệu hướng dẫn về máy quét đó."
-#: 01050000.xhp
+#: 04100000.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154750\n"
-"10\n"
+"04100000.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit $[officename]\">Exit $[officename]</link>"
-msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Thoát khỏi $[officename]\">Thoát khỏi $[officename]</link>"
+msgid "Special Character"
+msgstr "Ký tự Đặc biệt"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"tit\n"
+"04100000.xhp\n"
+"hd_id3152937\n"
+"1\n"
"help.text"
-msgid "Hangul/Hanja Options"
-msgstr "Tùy chọn Hangul/Hanja"
+msgid "Special Character"
+msgstr "Ký tự Đặc biệt"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10542\n"
+"04100000.xhp\n"
+"par_id3150838\n"
+"2\n"
"help.text"
-msgid "Hangul/Hanja Options"
-msgstr "Tùy chọn Hangul/Hanja"
+msgid "<variable id=\"sonder\"><ahelp hid=\".uno:Bullet\">Inserts special characters from the installed fonts.</ahelp></variable>"
+msgstr "<variable id=\"sonder\"><ahelp hid=\".uno:Bullet\">Chèn ký tự đặc biệt từ những phông đã cài đặt.</ahelp></variable>"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10546\n"
+"04100000.xhp\n"
+"par_id3152372\n"
+"11\n"
"help.text"
-msgid "Define options for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja conversion</link>."
-msgstr "Xác định các tùy chọn về chức năng <link href=\"text/shared/01/06200000.xhp\">Chuyển đổi Hangul/Hanja</link>."
+msgid "When you click a character in the <emph>Special Characters </emph>dialog, a preview and the corresponding numerical code for the character is displayed."
+msgstr "Khi bạn nhấn vào một ký tự nào đó trên bảng chọn <emph>Ký tự Đặc biệt</emph> cũng hiển thị ô xem thử và mã thuộc số tương ứng với ký tự."
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1055F\n"
+"04100000.xhp\n"
+"hd_id3151315\n"
+"3\n"
"help.text"
-msgid "User-defined dictionaries"
-msgstr "Từ điển tự xác định"
+msgid "Font"
+msgstr "Phông"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10563\n"
+"04100000.xhp\n"
+"par_id3152924\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_HANGULHANJA_NEWDICT_DLG\">Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use.</ahelp>"
-msgstr "<ahelp hid=\"HID_HANGULHANJA_NEWDICT_DLG\">Liệt kê các từ điển được người dùng xác định. Đánh dấu trong hộp chọn bên cạnh từ điển bạn muốn dùng. Bỏ chọn hộp bên cạnh từ điển không muốn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/specialcharacters/fontlb\">Select a font to display the special characters that are associated with it.</ahelp>"
+msgstr ""
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1057A\n"
+"04100000.xhp\n"
+"hd_id3155555\n"
+"19\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "Subset"
+msgstr "Tập con"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1057E\n"
+"04100000.xhp\n"
+"par_id3145090\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW\">Opens the New dictionary dialog box, where you can create a new dictionary.</ahelp>"
-msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW\">Mở hộp thoại <emph>Từ điển mới</emph>, trong đó bạn có thể tạo một từ điển mới.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/specialcharacters/subsetlb\">Select a Unicode category for the current font.</ahelp> The special characters for the selected Unicode category are displayed in the character table."
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_CHARMAP_LB_SUBSET\">Chọn một phân loại Unicode cho phông hiện thời.</ahelp> Các ký tự đặc biệt cho phân loại Unicode đã chọn thì được hiển thị trên bảng ký tự."
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10595\n"
+"04100000.xhp\n"
+"hd_id3145071\n"
+"5\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "Character Table"
+msgstr "Bảng ký tự"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10599\n"
+"04100000.xhp\n"
+"par_id3154288\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME\">Enter a name for the dictionary.</ahelp> To display the new dictionary in the <emph>User-defined dictionaries</emph> list box, click <emph>OK</emph>."
-msgstr "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME\">Nhập tên cho từ điển.</ahelp> Để hiển thị từ điển mới trong hộp liệt kê <emph>Từ điển tự xác định</emph>, nhấn vào nút <emph>OK</emph>."
+msgid "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Click the special character(s) that you want to insert, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Nhấn vào (những) ký tự đặc biệt bạn muốn chèn, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105B5\n"
+"04100000.xhp\n"
+"hd_id3154317\n"
+"7\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "Characters"
+msgstr "Ký tự"
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105B9\n"
+"04100000.xhp\n"
+"par_id3152551\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT\">Opens the <link href=\"text/shared/01/06202000.xhp\">Edit Custom Dictionary</link> dialog where you can edit any user-defined dictionary.</ahelp>"
-msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT\">Mở hộp thoại <link href=\"text/shared/01/06202000.xhp\">Sửa từ điển riêng</link> trong đó bạn có thể chỉnh sửa bất cứ tự điển tự xác định nào.</ahelp>"
+msgid "Displays the special characters that you have selected."
+msgstr "Hiển thị những ký tự đặc biệt bạn đã chọn."
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105DE\n"
+"04100000.xhp\n"
+"hd_id3155535\n"
+"12\n"
"help.text"
msgid "Delete"
msgstr "Xoá"
-#: 06201000.xhp
-msgctxt ""
-"06201000.xhp\n"
-"par_idN105E2\n"
-"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE\">Deletes the selected user-defined dictionary.</ahelp>"
-msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE\">Xoá từ điển tự xác định.</ahelp>"
-
-#: 06201000.xhp
+#: 04100000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105F1\n"
+"04100000.xhp\n"
+"par_id3147653\n"
+"13\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "<ahelp hid=\"cui/ui/specialcharacters/delete\">Clears the current selection of special characters that you want to insert.</ahelp>"
+msgstr ""
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105F5\n"
+"04140000.xhp\n"
+"tit\n"
"help.text"
-msgid "Specifies additional options for all dictionaries."
-msgstr "Ghi rõ các tùy chọn thêm về mọi từ điển."
+msgid "Inserting Pictures"
+msgstr "Chèn ảnh"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10600\n"
+"04140000.xhp\n"
+"hd_id3154350\n"
+"1\n"
"help.text"
-msgid "Ignore post-positional word"
-msgstr "Bỏ qua từ nằm sau kiểu vị trí"
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Inserting Pictures\">Inserting Pictures</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Chèn ảnh\">Chèn ảnh</link>"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10604\n"
+"04140000.xhp\n"
+"par_id3159411\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST\">Ignores positional characters at the end of Korean words when you search a dictionary.</ahelp>"
-msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST\">Bỏ qua các ký tự đặt vị trí ở kết thúc từ tiếng Hàn khi bạn tìm kiếm qua từ điển.</ahelp>"
+msgid "<variable id=\"grafiktext\"><ahelp hid=\".uno:InsertGraphic\">Inserts a picture into the current document.</ahelp></variable>"
+msgstr "<variable id=\"grafiktext\"><ahelp hid=\".uno:InsertGraphic\">Chèn vào tài liệu hiện tại một hình ảnh.</ahelp></variable>"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1061B\n"
+"04140000.xhp\n"
+"hd_id3149760\n"
+"17\n"
"help.text"
-msgid "Close Conversion dialog automatically after replacement"
-msgstr "Tự động đóng hộp thoại Chuyển đổi sau khi thay thế"
+msgid "Style"
+msgstr "Kiểu dáng"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1061F\n"
+"04140000.xhp\n"
+"par_id3154398\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOCLOSE\">Closes the Hangul/Hanja Conversion dialog box after you click <emph>Ignore</emph>, <emph>Always Ignore</emph>, <emph>Replace</emph>, or <emph>Always Replace</emph>.</ahelp>"
-msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOCLOSE\">Đóng hộp thoại <emph>Chuyển đổi Hangul/Hanja</emph> một khi bạn nhấn vào nút <emph>Bỏ qua</emph>, <emph>Bỏ qua suốt</emph>, <emph>Thay thế</emph> hay <emph>Thay thế suốt</emph>.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEOPEN_IMAGE_TEMPLATE\">Select the frame style for the graphic.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEOPEN_IMAGE_TEMPLATE\">Chọn kiểu đáng khung cho đồ họa.</ahelp>"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10636\n"
+"04140000.xhp\n"
+"hd_id3150789\n"
+"6\n"
"help.text"
-msgid "Show entries recently used first"
-msgstr "Hiện trước các mục vừa dùng"
+msgid "Link"
+msgstr "Liên kết"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1063A\n"
+"04140000.xhp\n"
+"par_id3153750\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST\">Shows the replacement suggestion that you selected the last time as the first entry on the list.</ahelp>"
-msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST\">Hiển thị ở đầu danh sách lời góp ý thay thế bạn đã chọn lần cuối cùng.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_LINK_CB\">Inserts the selected graphic file as a link.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEDLG_LINK_CB\">Chèn dạng liên kết tập tin đồ họa đã chọn.</ahelp>"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10651\n"
+"04140000.xhp\n"
+"hd_id3155805\n"
+"8\n"
"help.text"
-msgid "Replace all unique entries automatically"
-msgstr "Tự thay thế các mục duy nhất"
+msgid "Preview"
+msgstr "Xem thử"
-#: 06201000.xhp
+#: 04140000.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10655\n"
+"04140000.xhp\n"
+"par_id3153311\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE\">Automatically replaces words that only have one suggested word replacement.</ahelp>"
-msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE\">Tự động thay thế mỗi từ chỉ có một từ thay thế đã góp ý.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_PREVIEW_CB\">Displays a preview of the selected graphic file.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEDLG_PREVIEW_CB\">Hiển thị ô xem thử của tập tin đồ họa đã chọn.</ahelp>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
+"04150000.xhp\n"
"tit\n"
"help.text"
-msgid "Paste Special"
-msgstr "Dán đặc biệt"
+msgid "Drawing Object"
+msgstr "Vẽ đối tượng"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147477\n"
+"04150000.xhp\n"
+"hd_id3146873\n"
"1\n"
"help.text"
-msgid "Paste Special"
-msgstr "Dán đặc biệt"
+msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Drawing Object\">Drawing Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"Đối tượng OLE\">Đối tượng OLE</link>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3147143\n"
+"04150000.xhp\n"
+"par_id3159079\n"
"2\n"
"help.text"
-msgid "<variable id=\"inhalteeinfuegentext\"><ahelp hid=\".uno:PasteSpecial\">Inserts the contents of the clipboard into the current file in a format that you can specify.</ahelp></variable>"
-msgstr "<variable id=\"inhalteeinfuegentext\"><ahelp hid=\".uno:PasteSpecial\">Chèn vào tập tin hiện tại nội dung của bảng nháp, theo định dạng bạn có thể xác định.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Inserts an object into your document. For movies and sounds, use <emph>Insert - Movie and Sound</emph> instead.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn vào tài liệu một đối tượng. Đối với phim và âm thanh, dùng lệnh <emph>Chèn > Phim và Âm thanh</emph> thay vào đó.</ahelp>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147576\n"
-"5\n"
+"04150000.xhp\n"
+"hd_id3154894\n"
+"8\n"
"help.text"
-msgid "Source"
-msgstr "Nguồn"
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"Đối tượng OLE\">Đối tượng OLE</link>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3149388\n"
+"04150000.xhp\n"
+"hd_id3159201\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_PASTE_DLG\">Displays the source of the clipboard contents.</ahelp>"
-msgstr "<ahelp hid=\"HID_PASTE_DLG\">Hiển thị nguồn của nội dung bảng nháp.</ahelp>"
+msgid "<link href=\"text/shared/01/04150400.xhp\" name=\"Sound\">Sound</link>"
+msgstr "<link href=\"text/shared/01/04150400.xhp\" name=\"Âm thanh\">Âm thanh</link>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3153684\n"
+"04150000.xhp\n"
+"hd_id3157896\n"
"7\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
-
-#: 02070000.xhp
-msgctxt ""
-"02070000.xhp\n"
-"par_id3149812\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SO3:LISTBOX:MD_PASTE_OBJECT:LB_INSERT_LIST\">Select a format for the clipboard contents that you want to paste.</ahelp>"
-msgstr "<ahelp hid=\"SO3:LISTBOX:MD_PASTE_OBJECT:LB_INSERT_LIST\">Chọn định dạng cho nội dung bảng nháp bạn muốn dán.</ahelp>"
-
-#: 02070000.xhp
-msgctxt ""
-"02070000.xhp\n"
-"par_id3147653\n"
-"68\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Khi bạn dán vào tài liệu văn bản một số dữ liệu HTML, bạn có thể chọn hoặc « Định dạng HTML » hoặc « Định dạng HTML không có ghi chú ». Sự chọn thứ hai là giá trị mặc định: nó dán toàn dữ liệu HTML, mà không phải dán ghi chú. (Ghi chú trong mã nguồn HTML nên là « vô hình », không hiển thị cho người đọc trang.)</caseinline></switchinline>"
-
-#: 02070000.xhp
-msgctxt ""
-"02070000.xhp\n"
-"hd_id3155420\n"
-"15\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste Special </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dán đặc biệt</caseinline></switchinline>"
-
-#: 02070000.xhp
-msgctxt ""
-"02070000.xhp\n"
-"par_id3150976\n"
-"16\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">This dialog appears in Calc if the clipboard contains spreadsheet cells. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trong Calc, hộp thoại này tự mở nếu bảng nháp chứa các ô bảng tính.</caseinline></switchinline>"
-
-#: 02070000.xhp
-msgctxt ""
-"02070000.xhp\n"
-"hd_id3155341\n"
-"17\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selection </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lựa chọn </caseinline></switchinline>"
-
-#: 02070000.xhp
-msgctxt ""
-"02070000.xhp\n"
-"par_id3152909\n"
-"40\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select a format for the clipboard contents that you want to paste. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn định dạng cho nội dung bảng nháp bạn muốn dán.</caseinline></switchinline>"
-
-#: 02070000.xhp
-msgctxt ""
-"02070000.xhp\n"
-"hd_id3145120\n"
-"41\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste all </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dán tất cả</caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Video</link>"
+msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Ảnh động\">Ảnh động</link>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3146848\n"
-"42\n"
+"04150000.xhp\n"
+"hd_id3153577\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSALL\">Pastes all cell contents, comments, formats, and objects into the current document.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSALL\">Dán vào tài liệu hiện tại tất cả các nội dung ô, ghi chú, định dạng và đối tượng.</ahelp></caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Công thức\">Công thức</link>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155449\n"
-"43\n"
+"04150000.xhp\n"
+"hd_id3152552\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Text </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Văn bản</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Đồ thị\">Đồ thị</link></caseinline></switchinline>"
-#: 02070000.xhp
+#: 04150000.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3149244\n"
-"44\n"
+"04150000.xhp\n"
+"par_id0302200903593543\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSSTRINGS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing text. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSSTRINGS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các ô chứa văn bản. </caseinline></switchinline></ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Inserts a chart.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chèn một kí tự</caseinline></switchinline>"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3148947\n"
-"45\n"
+"04150100.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numbers </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Số</caseinline></switchinline>"
+msgid "Insert OLE Object"
+msgstr "Chèn đối tượng OLE"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3152360\n"
-"46\n"
+"04150100.xhp\n"
+"bm_id3153116\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNUMBERS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing numbers. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNUMBERS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các ô chứa con số.</caseinline></switchinline></ahelp>"
+msgid "<bookmark_value>OLE objects; inserting</bookmark_value><bookmark_value>inserting; OLE objects</bookmark_value><bookmark_value>objects; inserting OLE objects</bookmark_value>"
+msgstr "<bookmark_value>OLE đối tượng; chèn</bookmark_value><bookmark_value>chèn; OLE đối tượng</bookmark_value><bookmark_value>đối tượng; chèn OLE đối tượng</bookmark_value>"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3151054\n"
-"47\n"
+"04150100.xhp\n"
+"hd_id3153116\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Date & Time </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ngày/Giờ</caseinline></switchinline>"
+msgid "Insert OLE Object"
+msgstr "Chèn đối tượng OLE"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3154226\n"
-"48\n"
+"04150100.xhp\n"
+"par_id3149748\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSDATETIME\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing date and time values. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSDATETIME\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các ô chứa giá trị ngày tháng và/hay thời gian.</caseinline></switchinline></ahelp>"
+msgid "<variable id=\"ole\"><ahelp hid=\".uno:InsertObject\">Inserts an <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> object into the current document. The OLE object is inserted as a link or an embedded object.</ahelp></variable>"
+msgstr "<variable id=\"ole\"><ahelp hid=\".uno:InsertObject\">Chèn vào tài liệu một đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>. Đối tượng OLE này được chèn dạng liên kết hay đối tượng nhúng.</ahelp></variable>"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3150791\n"
-"49\n"
+"04150100.xhp\n"
+"par_id3149205\n"
+"19\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Công thức</caseinline></switchinline>"
+msgid "To speed up the display of the document, OLE objects are kept in the program cache. If you want to change the cache settings, choose <link href=\"text/shared/optionen/01011000.xhp\" name=\"Tools - Options - $[officename] - Memory\"><emph>Tools - Options - $[officename] - Memory</emph></link>."
+msgstr "Để tăng tốc hiển thị tài liệu, các đối tượng OLE được giữ trong bộ nhớ tạm của chương trình. Nếu bạn muốn thay đổi thiết lập về bộ nhớ tạm, hiển thị mục trình đơn <link href=\"text/shared/optionen/01011000.xhp\" name=\"Công cụ > Tùy chọn > $[officename] > Bộ nhớ\"><emph>Công cụ > Tùy chọn > $[officename] > Bộ nhớ</emph></link>."
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3145744\n"
-"50\n"
+"04150100.xhp\n"
+"par_id3145314\n"
+"18\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSFORMULAS\">Inserts cells containing formulae.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSFORMULAS\">Chèn các ô chứa công thức.</ahelp></caseinline></switchinline>"
+msgid "You cannot use the clipboard or drag and drop to move OLE objects to other files."
+msgstr "Không thể sử dụng bảng nháp để kéo và thả đối tượng OLE vào tập tin khác."
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3153968\n"
-"51\n"
+"04150100.xhp\n"
+"par_id3150693\n"
+"17\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chú thích</caseinline></switchinline>"
+msgid "Empty and inactive OLE objects are transparent."
+msgstr "Đối tượng OLE kiểu rỗng và không hoạt động thì cũng trong suốt."
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3156422\n"
-"52\n"
+"04150100.xhp\n"
+"hd_id3149178\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNOTES\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNOTES\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn ghi chú đính kèm ô. Muốn thêm ghi chú vào nội dung ô đã tồn tại thì chọn chức năng <emph>Thêm</emph>.</caseinline></switchinline></ahelp>"
+msgid "Create new"
+msgstr "Tạo đồ mới"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3152935\n"
-"53\n"
+"04150100.xhp\n"
+"par_id3145345\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formats </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Định dạng</caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/createnew\">Creates a new OLE object based on the object type that you select.</ahelp>"
+msgstr ""
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3125863\n"
-"54\n"
+"04150100.xhp\n"
+"hd_id3155535\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSATTRS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cell format attributes. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSATTRS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các thuộc tính về định dạng ô. </caseinline></switchinline></ahelp>"
+msgid "Object type"
+msgstr "Kiểu đối tượng"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3156282\n"
-"65\n"
+"04150100.xhp\n"
+"par_id3109847\n"
+"6\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objects </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đối tượng</caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/types\">Select the type of document that you want to create.</ahelp>"
+msgstr ""
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3149810\n"
-"66\n"
+"04150100.xhp\n"
+"hd_id3163803\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSCONT_BTN_INSOBJECTS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSCONT_BTN_INSOBJECTS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chèn các đối tượng nằm bên trong phạm vi ô bảng. Đối tượng này có thể là đối tượng OLE, đối tượng đồ thị hay đối tượng vẽ.</caseinline></switchinline></ahelp>"
+msgid "Create from file"
+msgstr "Tạo từ tập tin"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3150440\n"
-"19\n"
+"04150100.xhp\n"
+"par_id3149191\n"
+"8\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operations </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Thao tác</caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/createfromfile\">Creates an OLE object from an existing file.</ahelp>"
+msgstr ""
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3151351\n"
-"38\n"
+"04150100.xhp\n"
+"hd_id3150084\n"
+"15\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select the operation to apply when you paste cells into your sheet. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chọn thao tác cần áp dụng khi bạn dán vào bảng tính các ô.</caseinline></switchinline>"
+msgid "File"
+msgstr "Tập tin"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3153952\n"
-"20\n"
+"04150100.xhp\n"
+"par_id3146773\n"
+"16\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">None </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Không có</caseinline></switchinline>"
+msgid "Choose the file that you want to insert as an OLE object."
+msgstr "Chọn tập tin bạn muốn chèn dạng đối tượng OLE."
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3147348\n"
-"21\n"
+"04150100.xhp\n"
+"hd_id3144438\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_NOOP\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_NOOP\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Không áp dụng thao tác khi bạn chèn từ bảng nhạp phạm vi ô. Nội dung của bảng nháp sẽ thay thế nội dung ô đã có</caseinline></switchinline></ahelp>"
+msgid "File"
+msgstr "Tập tin"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3154988\n"
-"22\n"
+"04150100.xhp\n"
+"par_id3155434\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Add </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cộng </caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/urled\">Enter the name of the file that you want to link or embed, or click <emph>Search</emph>, to locate the file.</ahelp>"
+msgstr "<ahelp hid=\"SO3:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH\">Nhập tên của tập tin bạn muốn liên kết hay nhúng, hoặc nhấn vào nút <emph>Tìm kiếm</emph>, để tìm tập tin.</ahelp>"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3159196\n"
-"23\n"
+"04150100.xhp\n"
+"hd_id3153127\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_ADD\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_ADD\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Cộng giá trị trong mỗi ô bảng nháp với giá trị trong mỗi ô đích. Còn nếu bảng nháp chỉ chứa ghi chú, tùy chọn này thêm ghi chú vào các ô đích.</caseinline></switchinline></ahelp>"
+msgid "Search..."
+msgstr "Tìm kiếm..."
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3145263\n"
-"24\n"
+"04150100.xhp\n"
+"par_id3156326\n"
+"12\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtract </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trừ </caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Locate the file that you want to insert, and then click <emph>Open</emph>.</ahelp>"
+msgstr ""
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3154149\n"
-"25\n"
+"04150100.xhp\n"
+"hd_id4174321\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_SUB\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Subtracts the values in the clipboard cells from the values in the target cells. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_SUB\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Trừ mỗi giá trị trong ô bảng nháp khỏi mỗi giá trị trong ô đích.</caseinline></switchinline></ahelp>"
+msgid "Link to file"
+msgstr "Liên kết đến tập tin"
-#: 02070000.xhp
+#: 04150100.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155312\n"
-"26\n"
+"04150100.xhp\n"
+"par_id6636555\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiply </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nhân </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để chèn đối tượng OLE dạng liên kết tới tập tin gốc. Không bật thì đối tượng OLE sẽ được nhúng trong tài liệu.</ahelp>"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3155307\n"
-"27\n"
+"04150200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_MUL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplies the values in the clipboard cells with the values in the target cells. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_MUL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Nhân giá trị trong mỗi ô bảng nháp với giá trị trong mỗi ô đích.. </caseinline></switchinline></ahelp>"
+msgid "Insert Plug-In"
+msgstr "Chèn phần bổ sung"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3154320\n"
-"28\n"
+"04150200.xhp\n"
+"bm_id3149962\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Divide </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chia </caseinline></switchinline>"
+msgid "<bookmark_value>plug-ins; inserting</bookmark_value><bookmark_value>inserting; plug-ins</bookmark_value>"
+msgstr "<bookmark_value>phần bổ sung; chèn</bookmark_value><bookmark_value>chèn; phần bổ sung</bookmark_value>"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3155417\n"
-"29\n"
+"04150200.xhp\n"
+"hd_id3149962\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_DIV\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divides the values in the target cells by the values in the clipboard cells. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_DIV\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Chia giá trị trong mỗi ô bảng nháp cho giá trị trong mỗi ô đích.</caseinline></switchinline></ahelp>"
+msgid "Insert Plug-In"
+msgstr "Chèn phần bổ sung"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147048\n"
-"55\n"
+"04150200.xhp\n"
+"par_id3155599\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Options </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tùy chọn </caseinline></switchinline>"
+msgid "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Inserts a plug-in into the current document.</ahelp> </variable> A <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plug-in</link> is a software component that extends the capabilities of a web browser."
+msgstr "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Chèn vào tài liệu một phần bổ sung.</ahelp></variable><link href=\"text/shared/00/00000002.xhp#plugin\" name=\"Phần bổ sung\">Phần bổ sung</link> là một thành phần phần mềm mà mở rộng khả năng của chương trình."
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3156283\n"
-"56\n"
+"04150200.xhp\n"
+"hd_id3148585\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sets the paste options for the clipboard contents. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đặt các tùy chọn về chức năng dán cho nội dung của bảng nháp.</caseinline></switchinline>"
+msgid "File/URL"
+msgstr "Tập tin/URL"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3151052\n"
-"30\n"
+"04150200.xhp\n"
+"par_id3147399\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skip empty cells </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bỏ qua các ô rỗng </caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urled\">Enter the URL for the plug-in or click <emph>Browse</emph>, and then locate the plug-in that you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"SO3:EDIT:MD_INSERT_OBJECT_PLUGIN:ED_FILEURL\">Nhập địa chỉ URL của phần bổ sung, hoặc nhấn vào nút <emph>Duyệt</emph>, sau đó tìm phần bổ sung cần chèn.</ahelp>"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3148775\n"
-"31\n"
+"04150200.xhp\n"
+"hd_id3155552\n"
+"5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY\">Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the <emph>Multiply</emph> or the <emph>Divide</emph> operation, the operation is not applied to the target cell of an empty cell in the clipboard.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY\">Ô rỗng từ bảng nháp không thay thế ô đích. Nếu bạn bật tùy chọn này khi dùng thao tác <emph>Nhân</emph> hay <emph>Chia</emph> thì thao tác không có tác động ô đích của ô rỗng trên bảng nháp.</ahelp></caseinline></switchinline>"
+msgid "Browse"
+msgstr "Duyệt"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3155084\n"
-"32\n"
+"04150200.xhp\n"
+"par_id3143267\n"
+"6\n"
"help.text"
-msgid "If you select a mathematical operation and clear the<emph> Skip empty cells </emph>box, empty cells in the clipboard are treated as zeroes. For example, if you apply the <emph>Multiply</emph> operation, the target cells are filled with zeroes."
-msgstr "Nếu bạn chọn một thao tác toán học, và tắt tùy chọn <emph>Bỏ qua các ô rỗng</emph> thì các ô rỗng trên bảng nháp được tính như số không. Chẳng hạn, nếu bạn áp dụng thao tác <emph>Nhân</emph> thì các ô đích được điền vào bằng số không. (Ghi chú : thao tác chia với ô rỗng trên bảng nháp sẽ có kết quả là chia cho số không: không thể làm được nên chương trình thông báo lỗi.)"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Locate the plug-in that you want to insert, and then click <emph>Open</emph>.</ahelp>"
+msgstr ""
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147173\n"
-"33\n"
+"04150200.xhp\n"
+"hd_id3149750\n"
+"7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Transpose </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chuyển vị </caseinline></switchinline>"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 02070000.xhp
+#: 04150200.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3147223\n"
-"34\n"
+"04150200.xhp\n"
+"par_id3150774\n"
+"8\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_TRANSPOSE\">The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_TRANSPOSE\">Các hàng của phạm vi trên bảng nháp thì được dán để trở thành cột của phạm vi kết xuất. Cột của phạm vi trên bảng nháp sẽ trở thành hàng của phạm vi kết quả.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/insertplugin/pluginoptions\">Enter the parameters for the plug-in using the format <emph>parameter1=\"some text\"</emph>.</ahelp>"
+msgstr ""
-#: 02070000.xhp
+#: 04150400.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3152971\n"
-"35\n"
+"04150400.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Liên kết </caseinline></switchinline>"
+msgid "Insert sound"
+msgstr "Chèn âm thanh"
-#: 02070000.xhp
+#: 04150400.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3146969\n"
-"36\n"
+"04150400.xhp\n"
+"hd_id3152414\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_LINK\">Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the <emph>Insert All</emph> option is also selected. </ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_LINK\">Chèn phạm vi ô như một liên kết, để thiết lập quan hệ giữa hai tập tin. Các thay đổi được làm trong tập tin nguồn cũng được cập nhật trong tập tin đích. Để đảm bảo các thay đổi được làm trong ô rỗng của tập tin nguồn cũng được cập nhật trong tập tin đích, bật tùy chọn <emph>Chèn tất cả</emph>.</ahelp></caseinline></switchinline>"
+msgid "Insert sound"
+msgstr "Chèn âm thanh"
-#: 02070000.xhp
+#: 04150400.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3145667\n"
-"37\n"
+"04150400.xhp\n"
+"par_id3154840\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bạn cũng có khả năng liên kết với nhau các bảng bên trong cùng một tài liệu bảng tính. Khi bạn liên kết tới tập tin khác, một <link href=\"text/shared/00/00000005.xhp#dde\" name=\"liên kết DDE\">liên kết DDE</link> được tạo tự động. Một liên kết DDE được chèn dạng công thức ma trận thì chỉ có thể được sửa đổi hoàn toàn.</caseinline></switchinline>"
+msgid "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Inserts a sound file into the current document.</ahelp></variable>"
+msgstr "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Chèn vào tài liệu hiện tại một tập tin âm thanh.</ahelp></variable>"
-#: 02070000.xhp
+#: 04150500.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3146914\n"
-"57\n"
+"04150500.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shift Cells </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dời ô </caseinline></switchinline>"
+msgid "Insert video"
+msgstr "Chèn ảnh động"
-#: 02070000.xhp
+#: 04150500.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3145169\n"
-"58\n"
+"04150500.xhp\n"
+"hd_id3150999\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set the shift options for the target cells when the clipboard content is inserted. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Đặt các tùy chọn về chức năng dời cho những ô đích khi chèn nội dung của bảng nháp. </caseinline></switchinline>"
+msgid "Insert video"
+msgstr "Chèn ảnh động"
-#: 02070000.xhp
+#: 04150500.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155518\n"
-"59\n"
+"04150500.xhp\n"
+"par_id3152895\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Don't shift </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Không dời</caseinline></switchinline>"
+msgid "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Inserts a video file into the current document.</ahelp></variable>"
+msgstr "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Chèn vào tài liệu hiện tại một tập tin ảnh động.</ahelp></variable>"
-#: 02070000.xhp
+#: 04160300.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3154158\n"
-"60\n"
+"04160300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserted cells replace the target cells. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Các ô đã chèn thì thay thế các ô đích. </caseinline></switchinline></ahelp>"
+msgid "Formula"
+msgstr "Công thức"
-#: 02070000.xhp
+#: 04160300.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3148483\n"
-"61\n"
+"04160300.xhp\n"
+"bm_id3152937\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Down </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Xuống</caseinline></switchinline>"
+msgid "<bookmark_value>formulas; starting formula editor</bookmark_value><bookmark_value>$[officename] Math start</bookmark_value><bookmark_value>Math formula editor</bookmark_value><bookmark_value>equations in formula editor</bookmark_value><bookmark_value>editors;formula editor</bookmark_value>"
+msgstr "<bookmark_value>công thức; khởi chạy bộ sửa công thức</bookmark_value><bookmark_value>khởi chạy $[officename] Math</bookmark_value><bookmark_value>bộ sửa công thức Math</bookmark_value><bookmark_value>phương trình trong bộ sửa công thức</bookmark_value><bookmark_value>trình hiệu chỉnh;bộ sửa công thức</bookmark_value>"
-#: 02070000.xhp
+#: 04160300.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3152962\n"
-"62\n"
+"04160300.xhp\n"
+"hd_id3152937\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted downward when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Các ô đích bị dời xuống khi bạn chèn các ô từ bảng nháp. </caseinline></switchinline></ahelp>"
+msgid "Formula"
+msgstr "Công thức"
-#: 02070000.xhp
+#: 04160300.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3145621\n"
-"63\n"
+"04160300.xhp\n"
+"par_id3149495\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Right </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">qua Phải </caseinline></switchinline>"
+msgid "<variable id=\"starmath\"><ahelp hid=\".uno:InsertObjectStarMath\">Inserts a formula into the current document.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> For more information open the $[officename] Math Help.</defaultinline></switchinline></variable>"
+msgstr "<variable id=\"starmath\"><ahelp hid=\".uno:InsertObjectStarMath\">Chèn vào tài liệu hiện tại một công thức.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> Để tìm thêm thông tin, mở Trợ giúp về $[officename] Math.</defaultinline></switchinline></variable>"
-#: 02070000.xhp
+#: 04160300.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3159264\n"
-"64\n"
+"04160300.xhp\n"
+"par_id3154317\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted to the right when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Các ô đích bị dời qua phải khi bạn chèn các ô từ bảng nháp.</caseinline></switchinline></ahelp>"
+msgid "<link href=\"text/smath/main0000.xhp\" name=\"Formulas\">Formulas</link>"
+msgstr "<link href=\"text/smath/main0000.xhp\" name=\"Công thức\">Công thức</link>"
-#: 01100500.xhp
+#: 04160500.xhp
msgctxt ""
-"01100500.xhp\n"
+"04160500.xhp\n"
"tit\n"
"help.text"
-msgid "Internet"
-msgstr "Internet"
+msgid "Insert Floating Frame"
+msgstr "Chèn khung nổi"
-#: 01100500.xhp
+#: 04160500.xhp
msgctxt ""
-"01100500.xhp\n"
-"bm_id3145669\n"
+"04160500.xhp\n"
+"bm_id3149783\n"
"help.text"
-msgid "<bookmark_value>auto reloading HTML documents</bookmark_value><bookmark_value>reloading; HTML documents, automatically</bookmark_value><bookmark_value>loading; HTML documents, automatically</bookmark_value><bookmark_value>HTML documents; auto reloading</bookmark_value>"
-msgstr "<bookmark_value>tự động nạp lại tài liệu HTML</bookmark_value><bookmark_value>nạp lại; tài liệu HTML, tự động</bookmark_value><bookmark_value>nạp; tài liệu HTML, tự động</bookmark_value><bookmark_value>tài liệu HTML; tự động nạp lại</bookmark_value>"
+msgid "<bookmark_value>floating frames in HTML documents</bookmark_value><bookmark_value>inserting; floating frames</bookmark_value>"
+msgstr "<bookmark_value>khung nổi trong tài liệu HTML</bookmark_value><bookmark_value>chèn; khung nổi</bookmark_value>"
-#: 01100500.xhp
+#: 04160500.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3147588\n"
+"04160500.xhp\n"
+"hd_id3149783\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Internet\">Internet</link>"
+msgid "Insert Floating Frame"
+msgstr "Chèn khung nổi"
-#: 01100500.xhp
+#: 04160500.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3148731\n"
+"04160500.xhp\n"
+"par_id3148410\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_DOCINFORELOAD\">Sets the refresh and redirect options for an HTML page.</ahelp>"
-msgstr "<ahelp hid=\"HID_DOCINFORELOAD\">Đặt các tùy chọn về chức năng cập nhật và chuyển tiếp cho trang HTML.</ahelp>"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"hd_id3156027\n"
-"26\n"
-"help.text"
-msgid "Do not refresh automatically"
-msgstr "Không cập nhật tự động"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3152924\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_NOAUTOUPDATE\">User must refresh the page manually.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_NOAUTOUPDATE\">Người dùng cần phải tự cập nhật trang.</ahelp>"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"hd_id3145669\n"
-"5\n"
-"help.text"
-msgid "Refresh this document"
-msgstr "Cập nhật tài liệu này"
+msgid "<variable id=\"frameeinfuegentext\"><ahelp hid=\".\">Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file.</ahelp></variable>"
+msgstr "<variable id=\"frameeinfuegentext\"><ahelp hid=\".uno:InsertObjectFloatingFra\">Chèn vào tài liệu hiện tại một khung nổi. Trong tài liệu HTML, khung nổi được dùng để hiển thị nội dung của tập tin khác. Khung nổi không được hỗ trợ bởi trình duyệt cũ Netscape Navigator 4.x.</ahelp></variable>"
-#: 01100500.xhp
+#: 04160500.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3153528\n"
+"04160500.xhp\n"
+"par_id3151100\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_RELOADUPDATE\">Reloads the HTML page after the number of seconds that you enter in the <emph>seconds</emph> box. To observe the result, open the page in a browser.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_RELOADUPDATE\">Nạp lại trang HTML sau khi số giấy bạn nhập vào hộp <emph>giây</emph>. Để xem kết quả, mở trang bằng trình duyệt Web.</ahelp>"
+msgid "If you want to create HTML pages that use floating frames, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML compatibility</emph>, and then select the \"MS Internet Explorer\" option. The floating frame is bounded by <IFRAME> and </IFRAME> tags."
+msgstr ""
-#: 01100500.xhp
+#: 04160500.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3155535\n"
-"7\n"
+"04160500.xhp\n"
+"par_id3151330\n"
"help.text"
-msgid "Seconds"
-msgstr "Giây"
+msgid "<link href=\"text/shared/01/02210101.xhp\" name=\"Floating frame properties\">Floating frame properties</link>"
+msgstr "<link href=\"text/shared/01/02210101.xhp\" name=\"Thuộc tính khung nổi\">Thuộc tính khung nổi</link>"
-#: 01100500.xhp
+#: 04180100.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3157958\n"
-"8\n"
+"04180100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:NUMERICFIELD:TP_DOCINFORELOAD:ED_SECONDS\">Enter the number of seconds to wait before the page is reloaded.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:NUMERICFIELD:TP_DOCINFORELOAD:ED_SECONDS\">Nhập số giây cần đợi trước khi nạp lại trang.</ahelp>"
+msgid "Data Sources"
+msgstr "Nguồn dữ liệu"
-#: 01100500.xhp
+#: 04180100.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3148538\n"
-"28\n"
+"04180100.xhp\n"
+"hd_id3156053\n"
+"1\n"
"help.text"
-msgid "Redirect from this document"
-msgstr "Chuyển hướng từ tài liệu này"
+msgid "<link href=\"text/shared/01/04180100.xhp\" name=\"Data Sources\">Data Sources</link>"
+msgstr "<link href=\"text/shared/01/04180100.xhp\" name=\"Nguồn dữ liệu\">Nguồn dữ liệu</link>"
-#: 01100500.xhp
+#: 04180100.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3153662\n"
-"29\n"
+"04180100.xhp\n"
+"par_id3149495\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_FORWARDUPDATE\">Loads a page that you specify after the number of seconds that you enter in the <emph>seconds </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_FORWARDUPDATE\">Nạp trang bạn ghi rõ sau khi số giây bạn nhập vào hộp <emph>giây</emph>.</ahelp>"
+msgid "<ahelp hid=\".uno:ViewDataSourceBrowser\">Lists the databases that are registered in <item type=\"productname\">%PRODUCTNAME</item> and lets you manage the contents of the databases.</ahelp>"
+msgstr "<ahelp hid=\".uno:ViewDataSourceBrowser\">Liệt kê các cơ sở dữ liệu được đăng ký với <item type=\"productname\">%PRODUCTNAME</item>, và cho phép bạn quản lý nội dung của các cơ sở dữ liệu đó.</ahelp>"
-#: 01100500.xhp
+#: 04180100.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3147335\n"
+"04180100.xhp\n"
+"par_id3156136\n"
"30\n"
"help.text"
-msgid "after ... seconds"
-msgstr "sau ... giây"
+msgid "The <emph>Data sources</emph> command is only available when a text document or a spreadsheet is open."
+msgstr "Câu lệnh <emph>Nguồn dữ liệu</emph> chỉ sẵn sàng khi có một tài liệu văn bản hay bảng tính còn mở."
-#: 01100500.xhp
+#: 04180100.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3145315\n"
+"04180100.xhp\n"
+"par_id3154823\n"
"31\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_FORWARDUPDATE\">Enter the number of seconds to wait before redirecting the browser to a different file.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_FORWARDUPDATE\">Nhập số giây cần đợi trước khi chuyển tiếp trình duyệt tới tập tin khác.</ahelp>"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"hd_id3153127\n"
-"9\n"
-"help.text"
-msgid "to URL"
-msgstr "tới URL"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3153349\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFORELOAD:ED_URL\">Enter the URL address of the file that you want to open.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_DOCINFORELOAD:ED_URL\">Nhập địa chỉ URL của tập tin bạn muốn mở.</ahelp>"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"hd_id3154306\n"
-"32\n"
-"help.text"
-msgid "..."
-msgstr "..."
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3150976\n"
-"33\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFORELOAD:ED_URL\">Locate the file that you want to open, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:TP_DOCINFORELOAD:ED_URL\">Tìm tập tin bạn muốn mở, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"hd_id3150771\n"
-"11\n"
-"help.text"
-msgid "to frame"
-msgstr "tới khung"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3149514\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:COMBOBOX:TP_DOCINFORELOAD:LB_DEFAULT\">If the current HTML page uses frames, select the name of the <link href=\"text/shared/00/00000002.xhp#frame\" name=\"target frame\">target frame</link> where you want the file to be loaded.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:COMBOBOX:TP_DOCINFORELOAD:LB_DEFAULT\">Nếu trang HTML hiện tại cũng sử dụng các khung riêng, chọn tên của <link href=\"text/shared/00/00000002.xhp#frame\" name=\"khung đích\">khung đích</link> vào đó bạn muốn nạp tập tin.</ahelp>"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3155922\n"
-"24\n"
-"help.text"
-msgid "Name of Frame"
-msgstr "Tên khung"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3154924\n"
-"25\n"
-"help.text"
-msgid "Definition"
-msgstr "Định nghĩa"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3159413\n"
-"14\n"
-"help.text"
-msgid "Named entries"
-msgstr "Mục có tên"
+msgid "You can insert fields from a database into your file or you can create forms to access the database."
+msgstr "Bạn có khả năng chèn vào tài liệu các trường từ cơ sở dữ liệu, hoặc bạn có thể tạo biểu mẫu để truy cập đến cơ sở dữ liệu."
-#: 01100500.xhp
+#: 04180100.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3154935\n"
-"15\n"
+"04180100.xhp\n"
+"par_id3156427\n"
"help.text"
-msgid "File opens in a named frame in the current HTML document."
-msgstr "Tập tin sẽ mở trong khung đã ghi rõ trong tài liệu HTML hiện tại."
+msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data bar\">Table Data bar</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Thanh Dữ Liệu Bảng\">Thanh Dữ Liệu Bảng</link>"
-#: 01100500.xhp
+#: 04180100.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3148739\n"
-"16\n"
+"04180100.xhp\n"
+"par_id3153311\n"
"help.text"
-msgid "_self"
-msgstr "_self"
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Forms\">Forms</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Biểu mẫu\">Biểu mẫu</link>"
-#: 01100500.xhp
+#: 04990000.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3150358\n"
-"17\n"
+"04990000.xhp\n"
+"tit\n"
"help.text"
-msgid "File opens in the current frame."
-msgstr "Tập tin sẽ mở trong khung hiện tại."
+msgid "Picture"
+msgstr "Ảnh"
-#: 01100500.xhp
+#: 04990000.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3151210\n"
-"18\n"
+"04990000.xhp\n"
+"hd_id3156045\n"
+"1\n"
"help.text"
-msgid "_blank"
-msgstr "_blank"
+msgid "<link href=\"text/shared/01/04990000.xhp\" name=\"Picture\">Picture</link>"
+msgstr "<link href=\"text/shared/01/04990000.xhp\" name=\"Ảnh\">Ảnh</link>"
-#: 01100500.xhp
+#: 04990000.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3152920\n"
-"19\n"
+"04990000.xhp\n"
+"par_id3154613\n"
+"2\n"
"help.text"
-msgid "File opens in a new page."
-msgstr "Tập tin sẽ mở trong một trang mới."
+msgid "<ahelp hid=\".\">Select the source for a picture that you want to insert.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn nguồn cho ảnh bạn muốn chèn.</ahelp>"
-#: 01100500.xhp
+#: 04990000.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3148451\n"
-"20\n"
+"04990000.xhp\n"
+"hd_id3158442\n"
+"3\n"
"help.text"
-msgid "_parent"
-msgstr "_parent"
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Từ tập tin\">Từ tập tin</link>"
-#: 01100500.xhp
+#: 05010000.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3154216\n"
-"21\n"
+"05010000.xhp\n"
+"tit\n"
"help.text"
-msgid "File opens in the parent frame of the current frame. If there is no parent frame, the current frame is used."
-msgstr "Tập tin sẽ mở trong khung chứa khung hiện tại. Không có khung chứa thì dùng khung hiện tại."
+msgid "Clear Direct Formatting"
+msgstr "Định dạng trang"
-#: 01100500.xhp
+#: 05010000.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3154153\n"
-"22\n"
+"05010000.xhp\n"
+"bm_id3157959\n"
"help.text"
-msgid "_top"
-msgstr "_top"
+msgid "<bookmark_value>formatting; undoing when writing</bookmark_value><bookmark_value>hyperlinks; deleting</bookmark_value><bookmark_value>deleting; hyperlinks</bookmark_value><bookmark_value>cells;resetting formats</bookmark_value>"
+msgstr "<bookmark_value>định dạng; hủy bước khi ghi</bookmark_value><bookmark_value>siêu liên kết; xoá</bookmark_value><bookmark_value>xoá; siêu liên kết</bookmark_value><bookmark_value>ô bảng;đặt lại định dạng</bookmark_value>"
-#: 01100500.xhp
+#: 05010000.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3150288\n"
-"23\n"
+"05010000.xhp\n"
+"hd_id3153391\n"
+"1\n"
"help.text"
-msgid "File opens in the topmost frame in the hierarchy."
-msgstr "Tập tin sẽ mở trong khung trên cùng của hệ thống cấp bậc."
+msgid "<link href=\"text/shared/01/05010000.xhp\" name=\"Clear Direct Formatting\">Clear Direct Formatting</link>"
+msgstr "<link href=\"text/shared/01/05010000.xhp\" name=\"Định dạng Mặc định\">Định dạng Mặc định</link>"
-#: 05240200.xhp
+#: 05010000.xhp
msgctxt ""
-"05240200.xhp\n"
-"tit\n"
+"05010000.xhp\n"
+"par_id3145829\n"
+"2\n"
"help.text"
-msgid "Horizontally"
-msgstr "Theo chiều ngang"
+msgid "<ahelp hid=\".uno:StandardTextAttributes\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
+msgstr "<ahelp hid=\".uno:StandardTextAttributes\">Gỡ bỏ khỏi vùng chọn định dạng trực tiếp và định dạng theo kiểu dáng ký tự.</ahelp>"
-#: 05240200.xhp
+#: 05010000.xhp
msgctxt ""
-"05240200.xhp\n"
-"hd_id3147543\n"
-"1\n"
+"05010000.xhp\n"
+"par_id3147261\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240200.xhp\" name=\"Horizontally\">Horizontally</link>"
-msgstr "<link href=\"text/shared/01/05240200.xhp\" name=\"Ngang\">Theo chiều ngang</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Định dạng trực tiếp là định dạng bạn áp dụng mà không dùng kiểu dáng, chẳng hạn đặt mặt chữ in đậm bằng cách nhấn vào biểu tượng <emph>Đậm</emph>.</defaultinline></switchinline>"
-#: 05240200.xhp
+#: 05010000.xhp
msgctxt ""
-"05240200.xhp\n"
-"par_id3146936\n"
-"2\n"
+"05010000.xhp\n"
+"par_id3157959\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectMirrorHorizontal\">Flips the selected object(s) horizontally from left to right.</ahelp>"
-msgstr "<ahelp hid=\".uno:ObjectMirrorHorizontal\">Lật những đối tượng đã chọn từ trái sang phải.</ahelp>"
+msgid "To stop applying a direct format, such as underlining, while you type new text at the end of a line, press Shift+Ctrl+X."
+msgstr "Để thôi áp dụng định dạng trực tiếp (v.d. gạch dưới), ấn giữ phím mũi tên bên phải trong khi gõ thêm."
-#: 06130100.xhp
+#: 05020000.xhp
msgctxt ""
-"06130100.xhp\n"
+"05020000.xhp\n"
"tit\n"
"help.text"
-msgid "Change Password"
-msgstr "Đổi mật khẩu"
+msgid "Character"
+msgstr "Ký tự"
-#: 06130100.xhp
+#: 05020000.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3153514\n"
+"05020000.xhp\n"
+"hd_id3150347\n"
"1\n"
"help.text"
-msgid "Change Password"
-msgstr "Đổi mật khẩu"
+msgid "Character"
+msgstr "Ký tự"
-#: 06130100.xhp
+#: 05020000.xhp
msgctxt ""
-"06130100.xhp\n"
-"par_id3154545\n"
+"05020000.xhp\n"
+"par_id3153272\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
-msgstr "<ahelp hid=\"HID_PASSWORD\">Bảo vệ thư viện đã chọn bằng mật khẩu.</ahelp> Bạn có thể gõ mật khẩu mới, hoặc thay đổi mật khẩu hiện thời."
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3145759\n"
-"3\n"
-"help.text"
-msgid "Old password"
-msgstr "Mật khẩu cũ"
+msgid "<variable id=\"zeichentext\"><ahelp hid=\".uno:FontDialog\">Changes the font and the font formatting for the selected characters.</ahelp></variable>"
+msgstr "<variable id=\"zeichentext\"><ahelp hid=\".uno:FontDialog\">Thay đổi phông và định dạng phông cho các ký tự đã chọn.</ahelp></variable>"
-#: 06130100.xhp
+#: 05020000.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3150603\n"
+"05020000.xhp\n"
+"hd_id3149988\n"
"4\n"
"help.text"
-msgid "Password"
-msgstr "Mật khẩu"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3144415\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Gõ mật khẩu hiện thời cho thư viện đã chọn.</ahelp>"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link>"
-#: 06130100.xhp
+#: 05020000.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3145160\n"
-"6\n"
+"05020000.xhp\n"
+"hd_id3147588\n"
+"3\n"
"help.text"
-msgid "New password"
-msgstr "Mật khẩu mới"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Siêu liên kết\">Siêu liên kết</link></caseinline></switchinline>"
-#: 06130100.xhp
+#: 05020100.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3149525\n"
-"7\n"
+"05020100.xhp\n"
+"tit\n"
"help.text"
-msgid "Password"
-msgstr "Mật khẩu"
+msgid "Font"
+msgstr "Phông"
-#: 06130100.xhp
+#: 05020100.xhp
msgctxt ""
-"06130100.xhp\n"
-"par_id3159194\n"
-"8\n"
+"05020100.xhp\n"
+"bm_id3154812\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Gõ một mật khẩu mới cho thư viện đã chọn.</ahelp>"
+msgid "<bookmark_value>formats; fonts</bookmark_value><bookmark_value>characters;fonts and formats</bookmark_value><bookmark_value>fonts; formats</bookmark_value><bookmark_value>text; fonts and formats</bookmark_value><bookmark_value>typefaces; formats</bookmark_value><bookmark_value>font sizes; relative changes</bookmark_value><bookmark_value>languages; spellchecking and formatting</bookmark_value><bookmark_value>characters; enabling CTL and Asian characters</bookmark_value>"
+msgstr "<bookmark_value>định dạng; phông</bookmark_value><bookmark_value>ký tự;phông và định dạng</bookmark_value><bookmark_value>phông; định dạng</bookmark_value><bookmark_value>văn bản; phông và định dạng</bookmark_value><bookmark_value>mặt chữ; định dạng</bookmark_value><bookmark_value>kích cỡ phông; thay đổi tương đối</bookmark_value><bookmark_value>ngôn ngữ; kiểm tra chính tả và định dạng</bookmark_value><bookmark_value>ký tự; hiệu lực CTL và ký tự Châu Á</bookmark_value>"
-#: 06130100.xhp
+#: 05020100.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3166445\n"
-"9\n"
+"05020100.xhp\n"
+"hd_id3154812\n"
+"1\n"
"help.text"
-msgid "Confirm"
-msgstr "Xác nhận"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Characters\">Characters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link></defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Ký tự\">Ký tự</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link></defaultinline></switchinline>"
-#: 06130100.xhp
+#: 05020100.xhp
msgctxt ""
-"06130100.xhp\n"
-"par_id3153114\n"
-"10\n"
+"05020100.xhp\n"
+"par_id3158405\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Reenter the new password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Nhập lại mật khẩu mới cho thư viện đã chọn.</ahelp>"
+msgid "<variable id=\"zn\"><ahelp hid=\"cui/ui/charnamepage/CharNamePage\">Specify the formatting and the font that you want to apply.</ahelp></variable>"
+msgstr "<variable id=\"zn\"><ahelp hid=\"HID_SVXPAGE_CHAR_NAME\">Ghi rõ định dạng và phông bạ muốn áp dụng.</ahelp></variable>"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"tit\n"
+"05020100.xhp\n"
+"par_id3155616\n"
+"3\n"
"help.text"
-msgid "Movie and Sound"
-msgstr "Phim và Âm thanh"
+msgid "The changes are applied to the current selection, to the entire word that contains the cursor, or to the new text that you type."
+msgstr "Các thay đổi được áp dụng cho vùng chọn hiện tại, cho nguyên từ chứa con trỏ, hay cho chuỗi mới bạn gõ vào."
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"bm_id1907712\n"
+"05020100.xhp\n"
+"par_id3155552\n"
+"52\n"
"help.text"
-msgid "<bookmark_value>inserting;movies/sounds</bookmark_value> <bookmark_value>sound files</bookmark_value> <bookmark_value>playing movies and sound files</bookmark_value> <bookmark_value>videos</bookmark_value> <bookmark_value>movies</bookmark_value> <bookmark_value>audio</bookmark_value> <bookmark_value>music</bookmark_value>"
-msgstr "<bookmark_value>chèn;phim/sounds</bookmark_value> <bookmark_value>tập tin âm thanh</bookmark_value> <bookmark_value>phát những tập tin phim và âm thanh</bookmark_value> <bookmark_value>videos</bookmark_value> <bookmark_value>movies</bookmark_value> <bookmark_value>audio</bookmark_value> <bookmark_value>music</bookmark_value>"
+msgid "Depending on your language settings, you can change the formatting for the following font types:"
+msgstr "Phụ thuộc vào thiết lập ngôn ngữ, bạn có thể thay đổi định dạng cho những kiểu phông này:"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1065C\n"
+"05020100.xhp\n"
+"par_id3147291\n"
+"53\n"
"help.text"
-msgid "<variable id=\"moviesoundtitle\"><link href=\"text/shared/01/moviesound.xhp\">Movie and Sound</link></variable>"
-msgstr "<variable id=\"moviesoundtitle\"><link href=\"text/shared/01/moviesound.xhp\">Phim và Âm thanh</link></variable>"
+msgid "Western text font - Latin character sets."
+msgstr "Phông văn bản Phương Tây — bộ ký tự La-tinh"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1066C\n"
+"05020100.xhp\n"
+"par_id3155391\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a video or sound file into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn vào tài liệu của bạn một tập tin kiểu ảnh động hay âm thanh.</ahelp>"
+msgid "Asian text font - Chinese, Japanese, or Korean character sets"
+msgstr "Phông văn bản Châu Á — bộ ký tự tiếng Trung/Nhật/Hàn"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10683\n"
+"05020100.xhp\n"
+"par_id3147576\n"
+"57\n"
"help.text"
-msgid "To insert a movie or sound file into your document"
-msgstr "Chèn vào tài liệu của bạn một tập tin kiểu ảnh động hay âm thanh"
+msgid "Complex text layout font - right-to-left text direction"
+msgstr "Phông bố trí văn bản phức tạp — hướng văn bản từ bên trái qua bên phải"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1068A\n"
+"05020100.xhp\n"
+"par_id3153663\n"
+"58\n"
"help.text"
-msgid "Click where you want to insert the file."
-msgstr "Nhấn vào vị trí ở đó bạn muốn chèn tập tin."
+msgid "To enable support for complex text layout and Asian character sets, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>, and then select the <emph>Enabled </emph>box in the corresponding area."
+msgstr ""
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1068E\n"
+"05020100.xhp\n"
+"hd_id3148686\n"
+"4\n"
"help.text"
-msgid "Choose <emph>Insert - Movie and Sound</emph>."
-msgstr "Chọn lệnh <emph>Chèn > Phim và Âm thanh</emph>."
+msgid "Font"
+msgstr "Phông"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10696\n"
+"05020100.xhp\n"
+"par_id3148491\n"
+"7\n"
"help.text"
-msgid "In the File Open dialog, select the file that you want to insert."
-msgstr "Trong hộp thoại <emph>Mở tập tin</emph>, chọn tập tin bạn muốn chèn."
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlfontnamelb\">Enter the name of an installed font that you want to use, or select a font from the list.</ahelp>"
+msgstr ""
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10699\n"
+"05020100.xhp\n"
+"hd_id3143271\n"
+"10\n"
"help.text"
-msgid "The file types that are listed in this dialog are not supported by all operating systems."
-msgstr "Không phải tất cả các hệ điều hành hỗ trợ mọi kiểu tập tin được liệt kê trong hộp thoại này."
+msgid "Typeface"
+msgstr "Mặt chữ"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10700\n"
+"05020100.xhp\n"
+"par_id3155922\n"
+"11\n"
"help.text"
-msgid "Click the <emph>Link</emph> box if you want a link to the original file. If it is not checked, the media file will be embedded (not supported with all file formats)."
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlstylelb\">Select the formatting that you want to apply.</ahelp>"
msgstr ""
-#: moviesound.xhp
-msgctxt ""
-"moviesound.xhp\n"
-"par_idN106D7\n"
-"help.text"
-msgid "Click <emph>Open</emph>."
-msgstr "Nhấn vào nút <emph>Mở</emph>."
-
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912190948\n"
+"05020100.xhp\n"
+"hd_id3151054\n"
+"16\n"
"help.text"
-msgid "Alternatively, you can choose <item type=\"menuitem\">Tools - Media Player</item> to open the Media Player. Use the Media Player to preview all supported media files. Click the Apply button in the Media Player window to insert the current media file into your document."
-msgstr "Hoặc bạn có thể chọn<item type=\"menuitem\">Công cụ - Bộ phát phương tiện</item>để mở Bộ phát phương tiện. Sử dụng Bộ phát phương tiện để xem trước tất cả những tập tin ảnh/phim được hỗ trợ. Nhắp vào phím Áp dụng ở cửa sổ Bộ phát phương tiện để chèn tập tin ảnh/phim hiện thời vào tài liệu của bạn."
+msgid "Size"
+msgstr "Kích cỡ"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1069C\n"
+"05020100.xhp\n"
+"par_id3150359\n"
+"19\n"
"help.text"
-msgid "To play a movie or sound file"
-msgstr "Để phát một tập tin phim hoặc âm thanh"
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values.</ahelp>"
+msgstr ""
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN106A7\n"
+"05020100.xhp\n"
+"par_id3148797\n"
+"45\n"
"help.text"
-msgid "Click the object icon for the movie or sound file in your document."
-msgstr "Nhắp vào biểu tượng đối tượng cho tập tin phim hay âm thanh trong tài liệu của bạn."
+msgid "If you are creating a Style that is based on another Style, you can enter a percentage value or a point value (for example, -2pt or +5pt)."
+msgstr "Nếu bạn đang tạo một Kiểu dáng dựa vào Kiểu dáng khác, bạn cũng có thể nhập giá trị phần trăm hay giá trị điểm (v.d. -2pt hay +5pt)."
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912190940\n"
+"05020100.xhp\n"
+"hd_id3151176\n"
+"38\n"
"help.text"
-msgid "If the icon is arranged on the background, hold down Ctrl while you click."
-msgstr "Nếu biểu tượng được đặt trên nền, giữ phím Ctrl khi bạn nhắp chuột."
+msgid "Language"
+msgstr "Ngôn ngữ"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912062096\n"
+"05020100.xhp\n"
+"par_id3157961\n"
+"39\n"
"help.text"
-msgid "The Media Playback toolbar is shown."
-msgstr "Hiện thanh công cụ phát lại phương tiện."
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_NAME_LB_CTL_LANG\">Đặt ngôn ngữ mà hàm kiểm tra chính tả dùng cho đoạn đã chọn của văn bản bạn gõ vào. Những mô-đun ngôn ngữ sẵn sàng thì có dấu kiểm phía trước.</ahelp>"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10788\n"
+"05020100.xhp\n"
+"par_id3153770\n"
+"59\n"
"help.text"
-msgid "Click <emph>Play</emph> on the <emph>Media Playback</emph> toolbar."
-msgstr "Nhấn vào nút <emph>Phát</emph> trên thanh công cụ <emph>Phát lại phim/nhạc</emph>."
+msgid "You can only change the language setting for cells (choose <emph>Format - Cells – Numbers</emph>)."
+msgstr "Bạn chỉ có khả năng thay đổi thiết lập ngôn ngữ cho ô bảng (chọn lệnh <emph>Định dạng > Ô > Số</emph>)."
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912062064\n"
+"05020100.xhp\n"
+"par_id3145364\n"
+"60\n"
"help.text"
-msgid "When you show an Impress presentation, the embedded sound or video on the current slide plays automatically until it's over or until you leave the slide."
-msgstr "Khi bạn chiếu một trình diễn Impress, Những âm thanh hay phim nhúng trong tờ chiếu hiện hành sẽ được phát tự động cho đến khi tờ chiếu trình diễn hết hoặc khi bạn ra khỏi tờ chiếu"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Asian languages support\">Asian languages support</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Hỗ trợ ngôn ngữ Châu Á\">Hỗ trợ ngôn ngữ Châu Á</link>"
-#: moviesound.xhp
+#: 05020100.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN106D0\n"
+"05020100.xhp\n"
+"par_id3147213\n"
+"61\n"
"help.text"
-msgid "You can also use the Media Playback Bar to pause, to stop, to loop, as well as to adjust the volume or to mute the playback of the file. The current playback position in the file is indicated on the left slider. Use the right slider to adjust the playback volume. For movie files, the bar also contains a list box where you can select the zoom factor for the playback."
-msgstr "Bạn cũng có thể sử dụng thanh <emph>Phát lại phim/nhạc</emph> để tạm dừng, dừng hay lặp lặp tiến trình phát, cũng như để điều chỉnh mức âm lượng hay câm âm thanh khi phát lại. Vị trí phát lại hiện thời trong tập tin được ngụ ý bởi con trượt bên trái. Hãy dùng con trượt bên phải để điều chỉnh mức âm lượng phát lại. Đối với tập tin phim, thanh cũng chứa một hộp liệt kê trong đó bạn có thể chọn hệ số thu/phóng cho hình phát lại."
+msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Complex text layout support\">Complex text layout support</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Hỗ trợ bố trí văn bản phức tạp\">Hỗ trợ bố trí văn bản phức tạp</link>"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
+"05020200.xhp\n"
"tit\n"
"help.text"
-msgid "HTML import and export"
-msgstr "Nhập/Xuất HTML"
-
-#: about_meta_tags.xhp
-msgctxt ""
-"about_meta_tags.xhp\n"
-"bm_id3154380\n"
-"help.text"
-msgid "<bookmark_value>importing; HTML with META tags</bookmark_value><bookmark_value>exporting; to HTML</bookmark_value><bookmark_value>HTML; importing META tags</bookmark_value><bookmark_value>HTML documents; META tags in</bookmark_value><bookmark_value>META tags</bookmark_value><bookmark_value>tags; META tags</bookmark_value>"
-msgstr "<bookmark_value>nhập khẩu; HTML có thẻ META</bookmark_value><bookmark_value>xuất khẩu; theo HTML</bookmark_value><bookmark_value>HTML; nhập khẩu thẻ META</bookmark_value><bookmark_value>tài liệu HTML; chứa thẻ META</bookmark_value><bookmark_value>thẻ META</bookmark_value><bookmark_value>the; thẻ META</bookmark_value><bookmark_value>thẻ; siêu thông tin</bookmark_value>"
+msgid "Font Effects"
+msgstr "Hiệu ứng phông"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"hd_id3154380\n"
-"20\n"
+"05020200.xhp\n"
+"bm_id3153514\n"
"help.text"
-msgid "HTML import and export"
-msgstr "Nhập/Xuất HTML"
+msgid "<bookmark_value>fonts;effects</bookmark_value> <bookmark_value>formatting; font effects</bookmark_value> <bookmark_value>characters; font effects</bookmark_value> <bookmark_value>text; font effects</bookmark_value> <bookmark_value>effects; fonts</bookmark_value> <bookmark_value>underlining; text</bookmark_value> <bookmark_value>capital letters; font effects</bookmark_value> <bookmark_value>lowercase letters; font effects</bookmark_value> <bookmark_value>titles; font effects</bookmark_value> <bookmark_value>small capitals</bookmark_value> <bookmark_value>strikethrough; font effects</bookmark_value> <bookmark_value>fonts; strikethrough</bookmark_value> <bookmark_value>outlines; font effects</bookmark_value> <bookmark_value>fonts; outlines</bookmark_value> <bookmark_value>shadows; characters</bookmark_value> <bookmark_value>fonts; shadows</bookmark_value> <bookmark_value>fonts;color ignored</bookmark_value> <bookmark_value>ignored font colors</bookmark_value> <bookmark_value>colors;ignored text color</bookmark_value>"
+msgstr "<bookmark_value>phông;hiệu ứng</bookmark_value><bookmark_value>định dạng;hiệu ứng phông</bookmark_value><bookmark_value>ký tự; hiệu ứng phông</bookmark_value><bookmark_value>văn bản; hiệu ứng phông</bookmark_value><bookmark_value>hiệu ứng; phông</bookmark_value><bookmark_value>gạch dưới; văn bản</bookmark_value><bookmark_value>chữ hoa; hiệu ứng phông</bookmark_value><bookmark_value>chữ thường; hiệu ứng phông</bookmark_value><bookmark_value>tiêu đề; hiệu ứng phông</bookmark_value><bookmark_value>chữ hoa nhỏ</bookmark_value><bookmark_value>gạch đè; hiệu ứng phông</bookmark_value><bookmark_value>phông; gạch đè</bookmark_value><bookmark_value>nét ngoài; hiệu ứng phông</bookmark_value><bookmark_value>phông; nét ngoài</bookmark_value><bookmark_value>bóng; ký tự</bookmark_value><bookmark_value>phông; bóng</bookmark_value><bookmark_value>màu sắc; phông</bookmark_value><bookmark_value>phông;màu sắc</bookmark_value>"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3145119\n"
+"05020200.xhp\n"
+"hd_id3153514\n"
"1\n"
"help.text"
-msgid "When you export a file to an HTML document, the description and the user-defined file properties are included as META <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> between the HEAD tags of the exported document. META tags are not displayed in a Web browser, and are used to include information, such as keywords for search engines on your Web page. To set the properties of the current document, choose <emph>File - Properties</emph>, click the <emph>Description</emph> or <emph>User Defined</emph> tabs, and then type the information you want."
-msgstr "Khi bạn xuất khẩu tập tin dạng tài liệu HTML, mô tả và các thuộc tính tập tin tự xác định được bao gồm dạng <link href=\"text/shared/00/00000002.xhp#tags\" name=\"thẻ\">thẻ</link> META (siêu thẻ) giữa các thẻ HEAD (đầu) của tài liệu đã xuất khẩu. Siêu thẻ META không phải được hiển thị trong trình duyệt Web: chúng được dùng để bao gồm siêu thông tin, v.d. các từ khoá để giúp người dùng tìm trang Web của bạn dùng cơ chế tìm kiếm như Google. Để đặt các thuộc tính về tài liệu hiện tại, chọn lệnh <emph>Tập tin > Thuộc tính</emph>, nhấn vào thẻ <emph>Mô tả</emph> hay <emph>Tự xác định</emph>, sau đó nhập thông tin thích hợp."
-
-#: about_meta_tags.xhp
-msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3148552\n"
-"21\n"
-"help.text"
-msgid "The following file properties are converted to META tags when you export a file as an HTML document:"
-msgstr "Theo đây có những thuộc tính tập tin được chuyển đổi sang siêu thẻ META khi bạn xuất khẩu tập tin dạng tài liệu HTML:"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Hiệu ứng Phông\">Hiệu ứng Phông</link>"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3154935\n"
+"05020200.xhp\n"
+"par_id3149205\n"
"2\n"
"help.text"
-msgid "File Property"
-msgstr "Thuộc tính Tập tin"
+msgid "<ahelp hid=\"cui/ui/effectspage/EffectsPage\">Specify the font effects that you want to use.</ahelp>"
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3151056\n"
-"3\n"
+"05020200.xhp\n"
+"hd_id3149482\n"
+"81\n"
"help.text"
-msgid "<TITLE>"
-msgstr "<TITLE> (Tựa đề)"
+msgid "Font Color"
+msgstr "Màu phông"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3153778\n"
-"4\n"
+"05020200.xhp\n"
+"par_id3146924\n"
+"82\n"
"help.text"
-msgid "Subject"
-msgstr "Chủ đề"
+msgid "<ahelp hid=\"cui/ui/effectspage/fontcolorlb\">Sets the color for the selected text. If you select<emph> Automatic</emph>, the text color is set to black for light backgrounds and to white for dark backgrounds.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_EFFECTS_LB_FONTCOLOR\">Đặt màu cho đoạn văn đã chọn. Bật tùy chọn <emph>Tự động</emph> thì màu văn bản được đặt thành màu đen cho nền nhạt, và thành màu trắng cho nền tối.</ahelp>"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3147228\n"
-"5\n"
+"05020200.xhp\n"
+"par_idN10CC2\n"
"help.text"
-msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
-msgstr "<META NAME=\"CLASSIFICATION\" CONTENT=\"Nội dung của trường\"> (Phân loại trang)"
+msgid "To change the color of a text selection, select the text that you want to change, and click the <emph>Font Color</emph> icon. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
+msgstr "Để thay đổi màu của đoạn văn đã chọn, lựa chọn đoạn văn cần thay đổi, sau đó nhấn vào biểu tượng <emph>Màu phông</emph>. Để áp dụng màu khác, nhấn vào mũi tên bên cạnh biểu tượng <emph>Màu phông</emph>, sau đó chọn màu thích hợp."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3154908\n"
-"6\n"
+"05020200.xhp\n"
+"par_idN10CC9\n"
"help.text"
-msgid "Keywords"
-msgstr "Từ khoá"
+msgid "If you click the <emph>Font Color</emph> icon before you select text, the paint can cursor appears. To change the color of text, select the text with the paint can cursor. To change the color of a single word, double-click in a word. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
+msgstr "Nếu bạn nhấn vào biểu tượng <emph>Màu phông</emph> trước khi lựa chọn đoạn văn, con trỏ trở thành xô sơn. Để thay đổi màu của văn bản, lựa chọn văn bản bằng con trỏ xô sơn. Để thay đổi màu của một từ riêng lẻ, nhấn-đôi vào từ đó. Để áp dụng màu khác, nhấn vào mũi tên bên cạnh biểu tượng <emph>Màu phông</emph>, sau đó chọn màu thích hợp."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3156422\n"
-"7\n"
+"05020200.xhp\n"
+"par_idN10CD6\n"
"help.text"
-msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
-msgstr "<META NAME=\"KEYWORDS\" CONTENT=\"Nội dung của trường\"> (Các từ khoá giúp tìm trang)"
+msgid "To undo the last change, right-click."
+msgstr "Để hủy bước mới làm, nhắp-phải."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3151041\n"
-"8\n"
+"05020200.xhp\n"
+"par_idN10CDA\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "To exit the paint can mode, click once, or press the Escape key."
+msgstr "Để ra khỏi chế độ xô sơn, nhấn chuột một lần, hoặc bấm phím <item type=\"keycode\">Esc</item>."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3125863\n"
-"9\n"
+"05020200.xhp\n"
+"par_id3150037\n"
+"85\n"
"help.text"
-msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
-msgstr "<META NAME=\"DESCRIPTION\" CONTENT=\"Nội dung của trường\"> (Mô tả của trang)"
+msgid "The text color is ignored when printing, if the <emph>Print black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the Options dialog box."
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3159149\n"
-"10\n"
+"05020200.xhp\n"
+"par_id7613757\n"
"help.text"
-msgid "Info fields 1...4"
-msgstr "Trường Thông tin 1 .. 4"
+msgid "The text color is ignored on screen, if the <emph>Use automatic font color for screen display</emph> check box is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01013000.xhp\"><emph>%PRODUCTNAME - Accessibility</emph></link>."
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3157892\n"
-"11\n"
+"05020200.xhp\n"
+"par_id3144766\n"
+"84\n"
"help.text"
-msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
-msgstr "<META NAME=\"Info field name\" CONTENT=\"Nội dung của trường\"> (Tên trường thông tin)"
+msgid "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Click to apply the current font color to the selected characters. You can also click here, and then drag a selection to change the text color. Click the arrow next to the icon to open the Font color toolbar.</variable></ahelp>"
+msgstr "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Nhấn vào để áp dụng cho các ký tự đã chọn màu phông hiện thời. Bạn cũng có thể nhấn vào đây, sau đó kéo vùng chọn để thay đổi màu văn bản. Nhấn vào mũi tên bên cạnh biểu tượng để mở thanh công cụ <emph>Màu phông</emph>.</variable></ahelp>"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3155855\n"
-"22\n"
+"05020200.xhp\n"
+"hd_id3146137\n"
+"3\n"
"help.text"
-msgid "When you import an HTML containing these META tags, the contents of the tags are added to the corresponding $[officename] file property box."
-msgstr "Khi bạn nhập khẩu một tập tin HTML chứa các siêu thẻ META này, nội dung của mỗi thẻ được thêm vào hộp thuộc tính tập tin tương ứng trong $[officename]."
+msgid "Effects"
+msgstr "Hiệu ứng"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id0926200812164481\n"
+"05020200.xhp\n"
+"par_id3150084\n"
+"64\n"
"help.text"
-msgid "Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
-msgstr "Những từ khóa phải được phân cách bằng dấu phẩy. Một từ khóa có thể chứa khoảng trắng hay dấu chấm phẩy."
+msgid "<ahelp hid=\"cui/ui/effectspage/effectslb\">Select the font effects that you want to apply.</ahelp>"
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"hd_id3163822\n"
-"12\n"
+"05020200.xhp\n"
+"hd_id3149575\n"
+"65\n"
"help.text"
-msgid "Import Tips"
-msgstr "Gợi ý Nhập khẩu"
+msgid "Effects"
+msgstr "Hiệu ứng"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3155307\n"
-"13\n"
+"05020200.xhp\n"
+"par_id3148944\n"
+"66\n"
"help.text"
-msgid "When you import an HTML document, following META tags are automatically converted to $[officename] fields: <META HTTP-EQUIV=\"REFRESH\"...> and <META NAME=\"...\" ...> , where NAME equals to AUTHOR, CREATED, CHANGED, CHANGEDBY, DESCRIPTION, KEYWORDS or CLASSIFICATION."
-msgstr "Khi bạn nhập khẩu một tập tin HTML, những siêu thẻ META này được tự động chuyển đổi sang trường $[officename]: <META HTTP-EQUIV=\"REFRESH\"...> (làm tươi trang) và <META NAME=\"...\" ...> , mà NAME (tên) tương ứng với AUTHOR (tác giả), CREATED (đã tạo), CHANGED (đã thay đổi), CHANGEDBY (thay đổi bởi), DESCRIPTION (mô tả), KEYWORDS (các từ khoá) hay CLASSIFICATION (phân loại)."
+msgid "The following capitalization effects are available:"
+msgstr "Có sẵn những hiệu ứng viết chữ đầu hoa này:"
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3146146\n"
-"15\n"
+"05020200.xhp\n"
+"par_id3155922\n"
+"67\n"
"help.text"
-msgid "Scripts, comments, and META tags that are positioned directly before a TABLE tag are inserted in the first cell of the table."
-msgstr "Các văn lệnh, chú thích và siêu thẻ META mà nằm đúng phía trước một thẻ bảng TABLE thì được chèn vào ô đầu của bảng."
+msgid "Without - no effect is applied"
+msgstr "Không có — không áp dụng hiệu ứng."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3155366\n"
-"16\n"
+"05020200.xhp\n"
+"par_id3154280\n"
+"68\n"
"help.text"
-msgid "Scripts and META tags in the header of an HTML document are imported and anchored to the first paragraph in the document."
-msgstr "Các văn lệnh và siêu thẻ META trong phần đầu của tài liệu HTML thì được nhập khẩu và thả neo vào đoạn văn đầu của tài liệu."
+msgid "Capitals - changes the selected lowercase characters to uppercase characters"
+msgstr "Chữ hoa — chuyển đổi sang chữ hoa các ký tự chữ thường đã chọn."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3152885\n"
-"14\n"
+"05020200.xhp\n"
+"par_id3148947\n"
+"69\n"
"help.text"
-msgid "To set the options for importing HTML tags, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. A known META tag contains either \"HTTP-EQUIV\" or \"NAME\", and are imported as $[officename] comments. The only exception is <META NAME=\"GENERATOR\"...>, which is ignored."
-msgstr ""
+msgid "Lowercase - changes the selected uppercase characters to lower characters"
+msgstr "Chữ thường — chuyển đổi sang chữ thường các ký tự chữ hoa đã chọn."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"hd_id3163717\n"
-"17\n"
+"05020200.xhp\n"
+"par_id3149456\n"
+"71\n"
"help.text"
-msgid "Export Tips"
-msgstr "Gợi ý Xuất khẩu"
+msgid "Title font - changes the first character of each selected word to an uppercase character"
+msgstr "Phông tựa đề — chuyển đổi sang chữ hoa ký tự đầu của mỗi từ đã chọn."
-#: about_meta_tags.xhp
+#: 05020200.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3159180\n"
-"19\n"
+"05020200.xhp\n"
+"par_id3154937\n"
+"70\n"
"help.text"
-msgid "Comments and script fields at the beginning of the first paragraph in a document are exported to the header of an HTML document. If the document begins with a table, the first paragraph in the first cell of the table is exported to the header of the HTML document."
-msgstr "Các ghi chú và trường văn lệnh ở đầu của đoạn văn thứ nhất trong tài liệu được xuất khẩu ra tiêu đề của tài liệu HTML. Nếu tài liệu bắt đầu với bảng, đoạn văn thứ nhất của ô thứ nhất của bảng được xuất khẩu ra tiêu đề của tài liệu HTML."
+msgid "Small capitals - changes the selected lowercase characters to uppercase characters, and then reduces their size"
+msgstr "Chữ hoa nhỏ — chuyển đổi sang chữ hoa các ký tự chữ thường đã chọn, sau đó giảm kích cỡ."
-#: 04150400.xhp
+#: 05020200.xhp
msgctxt ""
-"04150400.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"hd_id3154129\n"
+"76\n"
"help.text"
-msgid "Insert sound"
-msgstr "Chèn âm thanh"
+msgid "Relief"
+msgstr "Khắc nổi"
-#: 04150400.xhp
+#: 05020200.xhp
msgctxt ""
-"04150400.xhp\n"
-"hd_id3152414\n"
-"1\n"
+"05020200.xhp\n"
+"par_id3146974\n"
+"77\n"
"help.text"
-msgid "Insert sound"
-msgstr "Chèn âm thanh"
+msgid "<ahelp hid=\"cui/ui/effectspage/relieflb\">Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_EFFECTS_LB_RELIEF\">Chọn một hiệu ứng khắc nổi cần áp dụng cho đoạn văn đã chọn. Hiệu ứng đắp nổi làm cho các ký tự hình như chúng đã được nâng lên phía trước trang. Hiệu ứng khắc làm cho các ký tự hình như chúng đã được ấn vào trang.</ahelp>"
-#: 04150400.xhp
+#: 05020200.xhp
msgctxt ""
-"04150400.xhp\n"
-"par_id3154840\n"
-"2\n"
+"05020200.xhp\n"
+"hd_id3147287\n"
+"72\n"
"help.text"
-msgid "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Inserts a sound file into the current document.</ahelp></variable>"
-msgstr "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Chèn vào tài liệu hiện tại một tập tin âm thanh.</ahelp></variable>"
+msgid "Outline"
+msgstr "Nét ngoài"
-#: 05070200.xhp
+#: 05020200.xhp
msgctxt ""
-"05070200.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"par_id3159126\n"
+"73\n"
"help.text"
-msgid "Center Horizontal"
-msgstr "Giữa nằm ngang"
+msgid "<ahelp hid=\"cui/ui/effectspage/outlinecb\">Displays the outline of the selected characters. This effect does not work with every font.</ahelp>"
+msgstr ""
-#: 05070200.xhp
+#: 05020200.xhp
msgctxt ""
-"05070200.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"05020200.xhp\n"
+"hd_id3163714\n"
+"74\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070200.xhp\" name=\"Center Horizontal\">Center Horizontal</link>"
-msgstr "<link href=\"text/shared/01/05070200.xhp\" name=\"Giữa nằm ngang\">Giữa nằm ngang</link>"
+msgid "Shadow"
+msgstr "Bóng"
-#: 05070200.xhp
+#: 05020200.xhp
msgctxt ""
-"05070200.xhp\n"
-"par_id3145138\n"
-"2\n"
+"05020200.xhp\n"
+"par_id3150962\n"
+"75\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignHorizontalCenter\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
-msgstr "<ahelp hid=\".uno:AlignHorizontalCenter\">Đặt vào giữa các đối tượng đã chọn theo chiều ngang. Chỉ chọn một đối tượng trong Draw hay Impress thì điểm giữa của đối tượng được chỉnh canh theo đường giữa theo chiều ngang của trang.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/shadowcb\">Adds a shadow that casts below and to the right of the selected characters.</ahelp>"
+msgstr ""
-#: 05070200.xhp
+#: 05020200.xhp
msgctxt ""
-"05070200.xhp\n"
-"par_id3144336\n"
-"3\n"
+"05020200.xhp\n"
+"bm_id410168\n"
"help.text"
-msgid "The vertical position of the selected objects is not affected by this command.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
-msgstr "Lệnh này không có tác động vị trí theo chiều dọc của các đối tượng đã chọn.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
+msgstr "<bookmark_value>phông nhấp nháy</bookmark_value><bookmark_value>phông chớp nháy</bookmark_value>"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"hd_id3152941\n"
+"15\n"
"help.text"
-msgid "XML Filter Settings"
-msgstr "Thiết lập bộ lọc XML"
+msgid "Blinking"
+msgstr "Nhấp nháy"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"bm_id3153272\n"
+"05020200.xhp\n"
+"par_id3145662\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>filters; XML filter settings</bookmark_value><bookmark_value>XML filters; settings</bookmark_value>"
-msgstr "<bookmark_value>bộ lọc; thiết lập lọc XML</bookmark_value><bookmark_value>bộ lọc XML; thiết lập</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3153272\n"
-"2\n"
+"05020200.xhp\n"
+"par_idN10B81\n"
"help.text"
-msgid "<link href=\"text/shared/01/06150000.xhp\" name=\"XML Filter Settings\">XML Filter Settings</link>"
-msgstr "<link href=\"text/shared/01/06150000.xhp\" name=\"Thiết lập bộ lọc XML\">Thiết lập bộ lọc XML</link>"
+msgid "Hidden"
+msgstr "Ẩn"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3152937\n"
-"1\n"
+"05020200.xhp\n"
+"par_idN10B85\n"
"help.text"
-msgid "<ahelp hid=\".uno:OpenXMLFilterSettings\">Opens the <emph>XML Filter Settings </emph>dialog, where you can create, edit, delete, and test filters to import and to export XML files.</ahelp>"
-msgstr "<ahelp hid=\".uno:OpenXMLFilterSettings\">Mở hộp thoại <emph>Thiết lập bộ lọc XML</emph>, trong đó bạn có thể tạo, chỉnh sửa, xoá và thử các bộ lọc để nhập/xuất khẩu tập tin XML.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/hiddencb\">Hides the selected characters.</ahelp> To display the hidden text, ensure that <emph>Non-printing Characters</emph> is selected in the <emph>View</emph> menu. You can also choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and select <emph>Hidden text</emph>."
+msgstr ""
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_idN10646\n"
+"05020200.xhp\n"
+"par_id0123200902291084\n"
"help.text"
-msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
-msgstr "Một số bộ lọc nào đó chỉ sẵn sàng dưới dạng thành phần tùy chọn trong khi tiến trình cài đặt %PRODUCTNAME. Để cài đặt một bộ lọc tùy chọn, chạy ứng dụng Thiết lập %PRODUCTNAME (Setup), bật tùy chọn « Sửa », sau đó chọn bộ lọc thích hợp trong danh sách các mô-đun."
+msgid "<ahelp hid=\".\" visibility=\"hidden\"><emph>Overlines or removes overlining from the selected text. If the cursor is not in a word, the new text that you enter is overlined.</emph></ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"><emph>Gạch trên hoặc bỏ gạch trên cho những văn bản được chọn. Nếu con chạy không nằm ở một từ, đoạn văn bản mới bạn nhập vào sẽ tự động được gạch trên.</emph></ahelp>"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3154794\n"
-"3\n"
+"05020200.xhp\n"
+"hd_id0123200902243376\n"
"help.text"
-msgid "The term <emph>XML filter</emph> is used in the following as a shortcut for the more exact description as an <emph>XSLT based filter</emph>."
-msgstr "Thuật ngữ <emph>Bộ lọc XML</emph> được dùng trong văn bản theo đây làm lối tắt đại diện mô tả chính xác hơn: <emph>bộ lọc dựa vào XSLT</emph>."
+msgid "Overlining"
+msgstr "Gạch trên"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149495\n"
-"4\n"
+"05020200.xhp\n"
+"par_id0123200902243343\n"
"help.text"
-msgid "Term"
-msgstr "Thuật ngữ"
+msgid "<ahelp hid=\"cui/ui/effectspage/overlinelb\">Select the overlining style that you want to apply. To apply the overlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kiểu gạch trên bạn muốn áp dụng. Để áp dụng gạch trên cho riêng từ, chọn <emph>mỗi từ riêng </emph>box.</ahelp>"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149549\n"
-"5\n"
+"05020200.xhp\n"
+"hd_id0123200902243470\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "Overline color"
+msgstr "Màu gạch trên"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3144758\n"
-"6\n"
+"05020200.xhp\n"
+"par_id0123200902243466\n"
"help.text"
-msgid "XML"
-msgstr "XML"
+msgid "<ahelp hid=\"cui/ui/effectspage/overlinecolorlb\">Select the color for the overlining.</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3152425\n"
-"7\n"
+"05020200.xhp\n"
+"hd_id3150400\n"
+"43\n"
"help.text"
-msgid "Extensible Markup Language"
-msgstr "Ngôn ngữ Định dạng có Khả năng Mở rộng"
+msgid "Strikethrough"
+msgstr "Gạch đè"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3155355\n"
-"8\n"
+"05020200.xhp\n"
+"par_id3145203\n"
+"44\n"
"help.text"
-msgid "XSL"
-msgstr "XSL"
+msgid "<ahelp hid=\"cui/ui/effectspage/strikeoutlb\">Select a strikethrough style for the selected text.</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3145071\n"
-"9\n"
+"05020200.xhp\n"
+"par_id3150496\n"
+"48\n"
"help.text"
-msgid "Extensible Stylesheet Language"
-msgstr "Ngôn ngữ Bảng Kiểu dáng có Khả năng Mở rộng"
+msgid "If you save your document in MS Word format, all of the strikethrough styles are converted to the single line style."
+msgstr "Tuy nhiên, nếu bạn lưu tài liệu theo định dạng MS™ Word, tất cả các kiểu dáng gạch đè bị chuyển đổi sang kiểu dáng đường đơn."
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3156426\n"
-"10\n"
+"05020200.xhp\n"
+"hd_id3151226\n"
+"41\n"
"help.text"
-msgid "XSLT"
-msgstr "XSLT"
+msgid "Underlining"
+msgstr "Gạch chân"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3154983\n"
-"11\n"
+"05020200.xhp\n"
+"par_id3147576\n"
+"42\n"
"help.text"
-msgid "Extensible Stylesheet Language Transformation. XSLT files are also called XSLT stylesheets."
-msgstr "Chuyển dạng Ngôn ngữ Bảng Kiểu dáng có Khả năng Mở rộng. Tập tin XSLT cũng được gọi như là « Bảng Kiểu dáng XSLT » (XSLT Stylesheets)."
+msgid "<ahelp hid=\"cui/ui/effectspage/underlinelb\">Select the underlining style that you want to apply. To apply the underlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kiểu gạch trên bạn muốn áp dụng. Để áp dụng gạch trên cho riêng từ, chọn <emph>mỗi từ riêng </emph>box.</ahelp>"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_idN106E7\n"
+"05020200.xhp\n"
+"par_id3153147\n"
+"58\n"
"help.text"
-msgid "The XHTML export filter produces valid \"XHTML 1.0 Strict\" output for Writer, Calc, Draw, and Impress documents."
-msgstr "Bộ lọc xuất khẩu XHTML xuất mã nguồn « XHTML 1.0 Chặt chẽ » hợp lệ cho các tài liệu kiểu Writer, Calc, Draw, và Impress."
+msgid "If you apply underlining to a superscript text, the underlining is raised to the level of the superscript. If the superscript is contained in a word with normal text, the underlining is not raised."
+msgstr "Nếu bạn áp dụng gạch dưới chỉ cho chỉ số trên, gạch dưới được nâng lên cấp của chỉ số. Nếu chỉ số trên nằm trong từ có chữ bình thường thì gạch dưới sẽ được giữ nguyên."
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3145382\n"
-"12\n"
+"05020200.xhp\n"
+"hd_id3148642\n"
+"78\n"
"help.text"
-msgid "Filter list"
-msgstr "Danh sách bộ lọc"
+msgid "Underline color"
+msgstr "Màu gạch chân"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3147209\n"
-"13\n"
+"05020200.xhp\n"
+"par_id3150254\n"
+"79\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/filterlist\">Select one or more filters, then click one of the buttons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/underlinecolorlb\">Select the color for the underlining.</ahelp>"
msgstr ""
-#: 06150000.xhp
-msgctxt ""
-"06150000.xhp\n"
-"par_idN10711\n"
-"help.text"
-msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
-msgstr "Một số bộ lọc nào đó chỉ sẵn sàng dưới dạng thành phần tùy chọn trong khi tiến trình cài đặt %PRODUCTNAME. Để cài đặt một bộ lọc tùy chọn, chạy ứng dụng Thiết lập %PRODUCTNAME (Setup), bật tùy chọn « Sửa », sau đó chọn bộ lọc thích hợp trong danh sách các mô-đun."
-
-#: 06150000.xhp
-msgctxt ""
-"06150000.xhp\n"
-"par_id3153032\n"
-"33\n"
-"help.text"
-msgid "The lists shows the name and the type of the installed filters."
-msgstr "Danh sách hiển thị tên và kiểu của mỗi bộ lọc đã cài đặt."
-
-#: 06150000.xhp
-msgctxt ""
-"06150000.xhp\n"
-"par_id3154577\n"
-"14\n"
-"help.text"
-msgid "Click a filter to select it."
-msgstr "Nhấn vào bộ lọc để lựa chọn nó."
-
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149885\n"
-"15\n"
+"05020200.xhp\n"
+"hd_id3153104\n"
+"45\n"
"help.text"
-msgid "Shift-click or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click to select several filters."
-msgstr "Giữ Shift rồi nhấn chuột hoặc giữ <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> và nhấn để chọn nhiều bộ lọc một lúc."
+msgid "Individual words"
+msgstr "Mỗi từ riêng"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149784\n"
-"16\n"
+"05020200.xhp\n"
+"par_id3152935\n"
+"46\n"
"help.text"
-msgid "Double-click a name to edit the filter."
-msgstr "Nhấn-đôi vào tên để chỉnh sửa bộ lọc đó."
+msgid "<ahelp hid=\"cui/ui/effectspage/individualwordscb\">Applies the selected effect only to words and ignores spaces.</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3159400\n"
-"17\n"
+"05020200.xhp\n"
+"hd_id3150332\n"
+"60\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "Emphasis mark"
+msgstr "Dấu nhấn mạnh"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149516\n"
-"18\n"
+"05020200.xhp\n"
+"par_id3152576\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/new\">Opens a dialog with the name of a new filter.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/emphasislb\">Select a character to display over or below the entire length of the selected text.</ahelp>"
msgstr ""
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3143270\n"
-"19\n"
+"05020200.xhp\n"
+"hd_id3152460\n"
+"62\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "Position"
+msgstr "Vị trí"
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3156192\n"
-"20\n"
+"05020200.xhp\n"
+"par_id3147436\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/edit\">Opens a dialog with the name of the selected file.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/positionlb\">Specify where to display the emphasis marks.</ahelp>"
msgstr ""
-#: 06150000.xhp
+#: 05020200.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3154380\n"
-"21\n"
+"05020200.xhp\n"
+"par_id3151053\n"
"help.text"
-msgid "Test XSLTs"
-msgstr "Thử XSLT"
+msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] color tables\">$[officename] color tables</link>"
+msgstr "<link href=\"text/shared/optionen/01010500.xhp\" name=\"bảng màu $[officename]\">bảng màu $[officename]</link>"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3148491\n"
-"22\n"
+"05020300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/test\">Opens a dialog with the name of the selected file.</ahelp>"
-msgstr ""
+msgid "Numbers / Format"
+msgstr "Số / Định dạng"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3157909\n"
-"23\n"
+"05020300.xhp\n"
+"bm_id3152942\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<bookmark_value>formats; number and currency formats</bookmark_value><bookmark_value>number formats; formats</bookmark_value><bookmark_value>currencies;format codes</bookmark_value><bookmark_value>defaults; number formats</bookmark_value>"
+msgstr "<bookmark_value>định dạng; định dạng kiểu số và tiền tộ</bookmark_value><bookmark_value>định dạng số; định dạng</bookmark_value><bookmark_value>tiền tệ;mã định dạng</bookmark_value><bookmark_value>gía tri mặc định; định dạng số</bookmark_value>"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3153564\n"
-"24\n"
+"05020300.xhp\n"
+"hd_id3152942\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/delete\">Deletes the selected file after you confirm the dialog that follows.</ahelp>"
-msgstr ""
+msgid "Numbers / Format"
+msgstr "Số / Định dạng"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3151384\n"
-"25\n"
+"05020300.xhp\n"
+"par_id3145071\n"
+"2\n"
"help.text"
-msgid "Save as Package"
-msgstr "Lưu dạng gói"
+msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp> </variable>"
+msgstr "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Ghi rõ các tùy chọn định dạng về những ô bảng đã chọn.</ahelp></variable>"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149575\n"
-"26\n"
+"05020300.xhp\n"
+"hd_id3155392\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/save\">Displays a <emph>Save as </emph>dialog to save the selected file as an XSLT filter package (*.jar).</ahelp>"
-msgstr ""
+msgid "Category"
+msgstr "Loại"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3154758\n"
-"27\n"
+"05020300.xhp\n"
+"par_id3150774\n"
+"4\n"
"help.text"
-msgid "Open Package"
-msgstr "Mở gói"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/categorylb\">Select a category from the list, and then select a formatting style in the <emph>Format </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/categorylb\">Chọn một phân loại trong danh sách, sau đó chọn một kiểu dáng định dạng trong hộp <emph>Định dạng</emph>.</ahelp>"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3147559\n"
-"28\n"
+"05020300.xhp\n"
+"par_id3145416\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/open\">Displays an <emph>Open </emph>dialog to open a filter from an XSLT filter package (*.jar).</ahelp>"
-msgstr ""
+msgid "The default currency format for a cell is determined by the regional settings of your operating system."
+msgstr "Định dạng tiền tệ mặc định cho ô bảng được xác định bởi thiết lập miền địa phương (locale) của hệ điều hành."
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3153960\n"
-"29\n"
+"05020300.xhp\n"
+"hd_id3155342\n"
+"5\n"
"help.text"
-msgid "Help"
-msgstr "Trợ giúp"
+msgid "Format"
+msgstr "Định dạng"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3150865\n"
-"30\n"
+"05020300.xhp\n"
+"par_id3148491\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/help\">Displays the help page for this dialog.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"cui/ui/numberformatpage/formatlb\">Select how you want the contents of the selected cell(s) to be displayed.</ahelp> The code for the selected option is displayed in the <emph>Format Code</emph> box."
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/formatlb\">Ghi rõ có nên hiển thị nội dung của những ô đã chọn như thế nào.</ahelp> Mã cho tùy chọn đã chọn thì hiển thị trong hộp <emph>Mã định dạng</emph>."
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3152772\n"
-"31\n"
+"05020300.xhp\n"
+"hd_id3154811\n"
+"97\n"
"help.text"
-msgid "Close"
-msgstr "Đóng"
+msgid "Currency category list boxes"
+msgstr "Hộp liệt kê phân loại tiền tệ"
-#: 06150000.xhp
+#: 05020300.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3159086\n"
-"32\n"
+"05020300.xhp\n"
+"par_id3148563\n"
+"98\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/close\">Closes the dialog.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"cui/ui/numberformatpage/currencylb\">Select a currency, and then scroll to the top of the <emph>Format</emph> list to view the formatting options for the currency.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/currencylb\">Chọn một tiền tệ, sau đó cuộn lên đầu của danh sách <emph>Định dạng</emph> để xem các tùy chọn định dạng cho tiền tệ đó.</ahelp>"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"tit\n"
+"05020300.xhp\n"
+"par_id3150866\n"
+"99\n"
"help.text"
-msgid "Edit Links"
-msgstr "Sửa liên kết"
+msgid "The format code for currencies uses the form [$xxx-nnn], where xxx is the currency symbol, and nnn the country code. Special banking symbols, such as EUR (for Euro), do not require the country code. The currency format is not dependent on the language that you select in the<emph> Language</emph> box."
+msgstr "Mã định dạng cho tiền tề theo dạng « [$xxx-nnn] », mà « xxx » là ký hiệu tiền tệ, và « nnn » là mã quốc gia. Một số ký hiệu ngân hàng đặc biệt (v.d. EUR cho đồng Âu Euro €) không cần thiết mã quốc gia riêng. Định dạng tiền tệ không phụ thuộc vào ngôn ngữ bạn chọn trong hộp <emph>Ngôn ngữ</emph>."
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"bm_id3156156\n"
+"05020300.xhp\n"
+"hd_id3154071\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>opening;documents with links</bookmark_value> <bookmark_value>links; updating specific links</bookmark_value> <bookmark_value>updating; links, on opening</bookmark_value> <bookmark_value>links; opening files with</bookmark_value>"
-msgstr "<bookmark_value>mở;tập tin có liên kết</bookmark_value><bookmark_value>liên kết; cập nhật liên kết riêng</bookmark_value><bookmark_value>cập nhật; liên kết, khi mở</bookmark_value><bookmark_value>liên kết; mở tập tin có liên kết</bookmark_value>"
+msgid "Language"
+msgstr "Ngôn ngữ"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3150279\n"
-"1\n"
+"05020300.xhp\n"
+"par_id3154138\n"
+"24\n"
"help.text"
-msgid "Edit Links"
-msgstr "Sửa liên kết"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/languagelb\">Specifies the language setting for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>. With the language set to <emph>Automatic</emph>, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/languagelb\">Ghi rõ thiết lập ngôn ngữ cho các <switchinline select=\"appl\"><caseinline select=\"CALC\">ô bảng </caseinline><defaultinline>trường</defaultinline></switchinline> đã chọn. Khi ngôn ngữ được đặt thành mục <emph>Tự động</emph>, $[officename] tự động áp dụng những định dạng con số liên quan đến ngôn ngữ mặc định của hệ thống. Hãy chọn bất cứ ngôn ngữ nào để đặt thiết lập cho các <switchinline select=\"appl\"><caseinline select=\"CALC\">ô bảng </caseinline><defaultinline>trường </defaultinline></switchinline> đã chọn.</ahelp>"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3150774\n"
-"2\n"
+"05020300.xhp\n"
+"par_id3157320\n"
+"102\n"
"help.text"
-msgid "<variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files.</ahelp></variable>"
-msgstr "<variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Cho phép bạn chỉnh sửa các thuộc tính về mỗi liên kết trong tài liệu hiện tại, bao gồm đường dẫn đến tập tin nguồn. Lệnh này không sẵn sàng nếu tài liệu hiện tại không chứa liên kết tới tập tin khác.</ahelp></variable>"
+msgid "The language setting ensures that date and currency formats are preserved even when the document is opened in an operating system that uses a different default language setting."
+msgstr "Thiết lập ngôn ngữ này đảm bảo rằng các định dạng ngày tháng và tiền tệ vẫn còn được bảo tồn, ngay cả khi tài liệu được mở dưới một hệ điều hành dùng thiết lập ngôn ngữ mặc định khác."
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3156156\n"
-"27\n"
+"05020300.xhp\n"
+"hd_id3155995\n"
+"104\n"
"help.text"
-msgid "When you open a file that contains links, you are prompted to update the links. Depending on where the linked files are stored, the update process can take several minutes to complete."
-msgstr "Khi bạn mở tập tin chứa liên kết, chương trình nhắc bạn cập nhật các liên kết. Phụ thuộc vào địa điểm của các tập tin đã liên kết, tiến trình cập nhật có thể chạy trong vòng vài phút."
+msgid "Source format"
+msgstr "Định dạng nguồn"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3143270\n"
-"28\n"
+"05020300.xhp\n"
+"par_id3144432\n"
+"105\n"
"help.text"
-msgid "If you are loading a file that contains DDE links, you are prompted to update the links. Decline the update if you do not want to establish a connection to the DDE server."
-msgstr "Nếu bạn tải một tập tin chứa các liên kết DDE, chương trình nhắc bạn cập nhật các liên kết. Hãy từ chối yêu cầu cập nhật nếu bạn không muốn kết nối tới máy chủ DDE."
+msgid "<ahelp hid=\"cui/ui/numberformatpage/sourceformat\">Uses the same number format as the cells containing the data for the chart.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/sourceformat\">Dùng cùng một định dạng con số với những ô bảng chứa dữ liệu cho đồ thị.</ahelp>"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_idN10646\n"
+"05020300.xhp\n"
+"hd_id3148451\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"34869\">Double-click a link in the list to open a file dialog where you can select another object for this link.</ahelp>"
-msgstr "<ahelp hid=\"34869\">Nhấn-đôi vào một liên kết nào đó trong danh sách để mở hộp thoại tập tin trong đó bạn có thể chọn đối tượng khác cho liên kết này.</ahelp>"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_idN1099856\n"
+"05020300.xhp\n"
+"par_id3148922\n"
+"8\n"
"help.text"
-msgid "When you open a file by an URL from the Windows file dialog, Windows will open a local copy of the file, located in the Internet Explorer cache. The %PRODUCTNAME file dialog opens the remote file."
-msgstr "Khi bạn mở tập tin theo một địa chỉ URL từ hộp thoại tập tin của Windows, hệ điều hành Windows sẽ mở một bản sao cục bộ của tập tin đó, nằm trong bộ nhớ tạm của trình duyệt Web Internet Explorer. Còn %PRODUCTNAME mở tập tin từ xa."
+msgid "Specify the options for the selected format."
+msgstr "Ghi rõ các tùy chọn về định dạng đã chọn."
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3155503\n"
-"3\n"
+"05020300.xhp\n"
+"hd_id3153970\n"
+"9\n"
"help.text"
-msgid "Source file"
-msgstr "Tập tin nguồn"
+msgid "Decimal places"
+msgstr "Lần số"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3156152\n"
-"4\n"
+"05020300.xhp\n"
+"par_id3154684\n"
+"10\n"
"help.text"
-msgid "Lists the path to the source file."
-msgstr "Liệt kê đường dẫn tới tập tin nguồn."
+msgid "<ahelp hid=\"cui/ui/numberformatpage/decimalsed\">Enter the number of decimal places that you want to display.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/decimalsed\">Gõ số vị trí thập phân bạn muốn hiển thị.</ahelp>"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3155449\n"
+"05020300.xhp\n"
+"hd_id3154819\n"
"11\n"
"help.text"
-msgid "Element"
-msgstr "Phần tử"
+msgid "Leading zeroes"
+msgstr "Số không đi trước"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3153348\n"
+"05020300.xhp\n"
+"par_id3147352\n"
"12\n"
"help.text"
-msgid "Lists the application (if known) that last saved the source file."
-msgstr "Biết thì hiển thị ứng dụng mới lưu tập tin nguồn."
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3153061\n"
-"7\n"
-"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/leadzerosed\">Enter the maximum number of zeroes to display in front of the decimal point.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/leadzerosed\">Gõ số tối đa các số không đi trước cần hiển thị phía trước dấu thập phân.</ahelp>"
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3151384\n"
-"8\n"
-"help.text"
-msgid "Lists the file type, such as graphic, of the source file."
-msgstr "Hiển thị kiểu tập tin (v.d. đồ họa) của tập tin nguồn."
-
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3156343\n"
-"9\n"
+"05020300.xhp\n"
+"hd_id3155131\n"
+"13\n"
"help.text"
-msgid "Status"
-msgstr "Trạng thái"
+msgid "Negative numbers in red"
+msgstr "Số âm màu đỏ"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3149046\n"
-"10\n"
+"05020300.xhp\n"
+"par_id3159252\n"
+"14\n"
"help.text"
-msgid "Lists additional information about the source file."
-msgstr "Hiển thị thêm thông tin về tập tin nguồn."
+msgid "<ahelp hid=\"cui/ui/numberformatpage/negnumred\">Changes the font color of negative numbers to red.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/negnumred\">Thay đổi sang màu đỏ màu phông của con số âm.</ahelp>"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3147264\n"
+"05020300.xhp\n"
+"hd_id3147434\n"
"15\n"
"help.text"
-msgid "Automatic"
-msgstr "Tự động"
+msgid "Use thousands separator"
+msgstr "Dung dấu tách phần nghìn"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3147304\n"
+"05020300.xhp\n"
+"par_id3146148\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_AUTOMATIC\">Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually.</ahelp> This option is not available for a linked graphic file."
-msgstr "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_AUTOMATIC\">Tự động cập nhật nội dung của liên kết khi bạn mở tập tin. Bất cứ thay đổi nào được làm trong tập tin nguồn thì được hiển thị trong tập tin chứa liên kết.</ahelp> Tuy nhiên, tùy chọn này không sẵn sàng cho tập tin đồ họa đã liên kết."
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3149456\n"
-"30\n"
-"help.text"
-msgid "The <emph>Automatic</emph> option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing <emph>Edit - Paste Special</emph>, and then selecting the <emph>Link</emph> box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet."
-msgstr "Tùy chọn <emph>Tự động</emph> chỉ sẵn sàng cho liên kết kiểu DDE. Bạn có thể chèn một liên kết DDE bằng cách sao chép nội dung từ tập tin này, và dán vào tập tin đó bằng cách chọn lệnh <emph>Sửa > Dán đặc biệt</emph>, sau đó bật tùy chọn <emph>được</emph>. Vì DDE là một hệ thống liên kết dựa vào văn bản, chỉ những số thập phân đã hiển thị sẽ được sao chép vào bảng đích."
+msgid "<ahelp hid=\"cui/ui/numberformatpage/thousands\">Inserts a separator between thousands. The type of separator that is used depends on your language settings.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/thousands\">Chèn vào giữa phần nghìn và phần còn lại một dấu tách. Dấu tách được dùng thì phụ thuộc vào thiết lập ngôn ngữ của bạn.</ahelp>"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3154938\n"
+"05020300.xhp\n"
+"hd_id3150103\n"
"17\n"
"help.text"
-msgid "Manual"
-msgstr "Tự làm"
+msgid "Format code"
+msgstr "Mã định dạng"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3151210\n"
+"05020300.xhp\n"
+"par_id3159156\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_MANUAL\">Only updates the link when you click the <emph>Update </emph>button.</ahelp>"
-msgstr "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_MANUAL\">Chỉ cập nhật liên kết khi bạn nhấn vào cái nút <emph>Cập nhật</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/formated\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/formated\">Hiển thị mã định dạng con số cho định dạng đã chọn. Bạn cũng có thể nhập một định dạng tự chọn.</ahelp> Các tùy chọn theo đây chỉ sẵn sàng cho định dạng con số tự xác định."
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3156280\n"
+"05020300.xhp\n"
+"hd_id3155311\n"
"19\n"
"help.text"
-msgid "Update"
-msgstr "Cập nhật"
+msgid "Add"
+msgstr "Thêm"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3157320\n"
+"05020300.xhp\n"
+"par_id3147219\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_UPDATE_NOW\">Updates the selected link so that the most recently saved version of the linked file is displayed in the current document.</ahelp>"
-msgstr "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_UPDATE_NOW\">Cập nhật liên kết đã chọn để hiển thị trong tài liệu hiện tại phiên bản mới lưu của tập tin đã liên kết.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/add\">Adds the number format code that you entered to the user-defined category.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/add\">Thêm vào phân loại tự xác định mã định dạng con số bạn đã nhập vào.</ahelp>"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3151381\n"
+"05020300.xhp\n"
+"hd_id3149263\n"
"21\n"
"help.text"
-msgid "Modify"
-msgstr "Sửa"
+msgid "Delete"
+msgstr "Xoá"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3154125\n"
+"05020300.xhp\n"
+"par_id3154150\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE\">Change the source file for the selected link.</ahelp>"
-msgstr "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE\">Sửa đổi tập tin nguồn cho liên kết đã chọn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/delete\">Deletes the selected number format.</ahelp> The changes are effective after you restart $[officename]."
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/delete\">Xoá định dạng con số đã chọn.</ahelp> Các thay đổi có tác động một khi bạn khởi chạy lại $[officename]."
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3147084\n"
-"23\n"
+"05020300.xhp\n"
+"hd_id3153573\n"
+"26\n"
"help.text"
-msgid "Break Link"
-msgstr "Ngắt liên kết"
+msgid "Edit Comment"
+msgstr "Sửa chú thích"
-#: 02180000.xhp
+#: 05020300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3147230\n"
-"24\n"
+"05020300.xhp\n"
+"par_id3083444\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_BREAK_LINK\">Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document.</ahelp>"
-msgstr "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_BREAK_LINK\">Ngắt liên kết giữa tập tin nguồn và tài liệu hiện tại. Nội dung mới cập nhật của tập tin nguồn vẫn được giữ trong tài liệu hiện tại.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/edit\">Adds a comment to the selected number format.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/edit\">Thêm vào định dạng con số đã chọn một chú thích.</ahelp>"
-#: 05110400.xhp
+#: 05020300.xhp
msgctxt ""
-"05110400.xhp\n"
-"tit\n"
+"05020300.xhp\n"
+"hd_id3150332\n"
+"95\n"
"help.text"
-msgid "Strikethrough"
-msgstr "Gạch đè"
+msgid "Name line"
+msgstr "Đường tên"
-#: 05110400.xhp
+#: 05020300.xhp
msgctxt ""
-"05110400.xhp\n"
-"bm_id3152942\n"
+"05020300.xhp\n"
+"par_id3156060\n"
+"96\n"
"help.text"
-msgid "<bookmark_value>strikethrough;characters</bookmark_value>"
-msgstr "<bookmark_value>gạch đè;ký tự</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/commented\">Enter a comment for the selected number format, and then click outside this box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberformatpage/commented\">Nhập chú thích cho định dạng con số đã chọn, sau đó nhấn vào bên ngoài hộp này.</ahelp>"
-#: 05110400.xhp
+#: 05020300.xhp
msgctxt ""
-"05110400.xhp\n"
-"hd_id3152942\n"
-"1\n"
+"05020300.xhp\n"
+"par_id3145364\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110400.xhp\" name=\"Strikethrough\">Strikethrough</link>"
-msgstr "<link href=\"text/shared/01/05110400.xhp\" name=\"Gạch đè\">Gạch đè</link>"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Mã định dạng con số</link>"
-#: 05110400.xhp
+#: 05020300.xhp
msgctxt ""
-"05110400.xhp\n"
-"par_id3153391\n"
-"2\n"
+"05020300.xhp\n"
+"par_id3153095\n"
"help.text"
-msgid "<ahelp hid=\".uno:Strikeout\" visibility=\"visible\">Draws a line through the selected text, or if the cursor is in a word, the entire word.</ahelp>"
-msgstr "<ahelp hid=\".uno:Strikeout\" visibility=\"visible\">Vẽ đường qua chuỗi đã chọn, hoặc nếu con trỏ bên trong từ, qua toàn từ.</ahelp>"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Custom format codes</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Mã định dạng tự chọn</link>"
-#: 05230300.xhp
+#: 05020301.xhp
msgctxt ""
-"05230300.xhp\n"
+"05020301.xhp\n"
"tit\n"
"help.text"
-msgid "Rotation"
-msgstr "Xoay"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"hd_id3149741\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
-msgstr "<link href=\"text/shared/01/05230300.xhp\" name=\"Xoay\">Xoay</link>"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"par_id3146873\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TRANS_ANGLE\">Rotates the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TRANS_ANGLE\">Xoay đối tượng đã chọn.</ahelp>"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"hd_id3148983\n"
-"3\n"
-"help.text"
-msgid "Pivot point"
-msgstr "Điểm quay"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"par_id3150902\n"
-"4\n"
-"help.text"
-msgid "The selected object is rotated around a pivot point that you specify. The default pivot point is at the center of the object."
-msgstr "Đối tượng đã chọn thì được xoay vòng quanh một điểm quay bạn ghi rõ. ĐIểm quay mặc định là trung tâm của đối tượng."
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"par_id3153528\n"
-"17\n"
-"help.text"
-msgid "If you set a pivot point too far outside of the object boundaries, the object could be rotated off of the page."
-msgstr "Đặt điểm quay ở vị trí quá ngoài các viền của đối tượng thì có thể xoay đối tượng ra ngoài trang."
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"hd_id3145382\n"
-"5\n"
-"help.text"
-msgid "X Position"
-msgstr "Vị trí X"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"par_id3166410\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X\">Enter the horizontal distance from the left edge of the page to the pivot point.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X\">Nhập khoảng cách theo chiều ngang từ cạnh bên trái của trang đến điểm quay..</ahelp>"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"hd_id3155323\n"
-"7\n"
-"help.text"
-msgid "Y Position"
-msgstr "Vị trí Y"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"par_id3150669\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y\">Enter the vertical distance from the top edge of the page to the pivot point.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y\">Nhập khoảng cách theo chiều dọc từ cạnh bên trên của trang đến điểm quay..</ahelp>"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"hd_id3153332\n"
-"9\n"
-"help.text"
-msgid "Defaults"
-msgstr "Mặc định"
-
-#: 05230300.xhp
-msgctxt ""
-"05230300.xhp\n"
-"par_id3143270\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TPROTATION_CTRL1\">Click where you want to place the pivot point.</ahelp>"
-msgstr "<ahelp hid=\"HID_TPROTATION_CTRL1\">Nhấn vào vị trí ở đó bạn muốn đặt điểm quay.</ahelp>"
+msgid "Number Format Codes"
+msgstr "Mã định dạng con số"
-#: 05230300.xhp
+#: 05020301.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3146847\n"
-"11\n"
+"05020301.xhp\n"
+"bm_id3153514\n"
"help.text"
-msgid "Rotation angle"
-msgstr "Góc xoay"
+msgid "<bookmark_value>format codes; numbers</bookmark_value><bookmark_value>conditions; in number formats</bookmark_value><bookmark_value>number formats; codes</bookmark_value><bookmark_value>currency formats</bookmark_value><bookmark_value>formats;of currencies/date/time</bookmark_value><bookmark_value>numbers; date, time and currency formats</bookmark_value><bookmark_value>Euro; currency formats</bookmark_value><bookmark_value>date formats</bookmark_value><bookmark_value>times, formats</bookmark_value>"
+msgstr "<bookmark_value>mã định dạng; con số</bookmark_value><bookmark_value>điều kiện; trong định dạng con số</bookmark_value><bookmark_value>định dạng con số; mã</bookmark_value><bookmark_value>định dạng tiền tệ</bookmark_value><bookmark_value>định dạng;của tiền tệ/ngày/giờ</bookmark_value><bookmark_value>con số; định dạng ngày tháng, thời gian và tiền tệ</bookmark_value><bookmark_value>đồng Euro; định dạng tiền tệ</bookmark_value><bookmark_value>định dạng ngày tháng</bookmark_value><bookmark_value>thời gian, định dạng</bookmark_value><bookmark_value>đồng Âu; định dạng tiền tệ</bookmark_value>"
-#: 05230300.xhp
+#: 05020301.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3156155\n"
-"12\n"
+"05020301.xhp\n"
+"hd_id3153514\n"
+"1\n"
"help.text"
-msgid "Specify the number of degrees that you want to rotate the selected object, or click in the rotation grid."
-msgstr "Ghi rõ số độ theo đó cần xoay đối tượng đã chọn, hoặc nhấn vào lưới xoay."
+msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link></variable>"
+msgstr "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Mã định dạng con số\">Mã định dạng con số</link></variable>"
-#: 05230300.xhp
+#: 05020301.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3154173\n"
-"13\n"
+"05020301.xhp\n"
+"par_id3150467\n"
+"88\n"
"help.text"
-msgid "Angle"
-msgstr "Góc"
+msgid "Number format codes can consist of up to three sections separated by a semicolon (;)."
+msgstr "Mã định dạng con số có thể chứa đến ba phần định giới bằng dấu chấm phẩy « ; »."
-#: 05230300.xhp
+#: 05020301.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3147573\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3150146\n"
+"108\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE\">Enter the number of degrees that you want to rotate the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE\">Nhập số độ theo đó cần xoay đối tượng đã chọn.</ahelp>"
+msgid "In a number format code with two sections, the first section applies to positive values and zero, and the second section applies to negative values."
+msgstr "Trong mã định dạng con số có hai phần, phần đầu áp dụng cho các giá trị dương và số không, còn phần cuối áp dụng cho các giá trị âm."
-#: 05230300.xhp
+#: 05020301.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3148474\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3158442\n"
+"109\n"
"help.text"
-msgid "Defaults"
-msgstr "Mặc định"
+msgid "In a number format code with three sections, the first section applies to positive values, the second section to negative values, and the third section to the value zero."
+msgstr "Trong mã định dạng con số có ba phần, phần thứ nhất áp dụng cho các giá trị dương, phần thứ hai áp dụng cho các giá trị âm, và phần thứ ba áp dụng cho số không."
-#: 05230300.xhp
+#: 05020301.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3154811\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3155069\n"
+"110\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPROTATION_CTRL2\">Click to specify the rotation angle in multiples of 45 degrees.</ahelp>"
-msgstr "<ahelp hid=\"HID_TPROTATION_CTRL2\">Nhấn vào để ghi rõ góc xoay theo bội số cho 45 độ.</ahelp>"
+msgid "You can also assign conditions to the three sections, so that the format is only applied if a condition is met."
+msgstr "Bạn cũng có thể gán điều kiện cho ba phần này, để mà định dạng chỉ được áp dụng nếu thỏa điều kiện."
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"hd_id3151262\n"
+"229\n"
"help.text"
-msgid "Hatching"
-msgstr "Lưới đan"
+msgid "Decimal Places and Significant Digits"
+msgstr "Lần số và Số lẻ"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"bm_id3149962\n"
+"05020301.xhp\n"
+"par_id3153624\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>hatching</bookmark_value><bookmark_value>areas; hatched/dotted</bookmark_value><bookmark_value>dotted areas</bookmark_value>"
-msgstr "<bookmark_value>lưới đan</bookmark_value><bookmark_value>vùng; lưới đan/chấm chấm</bookmark_value><bookmark_value>vùng chấm chấm</bookmark_value>"
+msgid "Use zero (0) or the number sign (#) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format."
+msgstr "Hãy dùng số không (0) hay ký hiệu con số (#) làm bộ giữ chỗ trong mã định dạng con số để đại diện con số. Dấu thăng (#) chỉ hiển thị số lẻ, còn số không (0) hiển thị số không nếu con số có ít chữ số hơn định dạng con số."
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3149962\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3153323\n"
+"107\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatching\">Hatching</link>"
-msgstr "<link href=\"text/shared/01/05210400.xhp\" name=\"Lưới đan\">Lưới đan</link>"
+msgid "Use question marks (?) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
+msgstr "Dùng dấu hỏi (?) để đại diện số chữ số phù hợp với tử số và mẫu số của phân số. Phân số không thỏa điều kiện này thì được hiển thị dạng con số với chấm động."
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3144436\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3148440\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_HATCH\">Set the properties of a hatching pattern, or save and load hatching lists.</ahelp>"
-msgstr "<ahelp hid=\"HID_AREA_HATCH\">Đặt các thuộc tính về một mẫu lưới đan, hoặc lưu và nạp danh sách lưới đan.</ahelp>"
+msgid "If a number contains more digits to the right of the decimal delimiter than there are placeholders in the format, the number is rounded accordingly. If a number contains more digits to the left of the decimal delimiter than there are placeholders in the format, the entire number is displayed. Use the following list as a guide for using placeholders when you create a number format code:"
+msgstr "Nếu con số chứa số chữ số bên phải dấu tách thập phân hơn số dấu giữ chỗ trong định dạng, con số này bị làm tròn một cách tương ứng. Nếu con số chứa số chữ số bên trái dấu tách thập phân hơn số dấu giữ chỗ trong định dạng, toàn con số được hiển thị. Danh sách theo đây giúp bạn dùng bộ giữ chỗ khi tao mã định dạng con số."
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3156042\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3150902\n"
+"86\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "Placeholders"
+msgstr "Bộ giữ chỗ"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3147291\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3157896\n"
+"87\n"
"help.text"
-msgid "Define or modify a hatching pattern."
-msgstr "Xác định hay sửa đổi một mẫu lưới đan."
+msgid "Explanation"
+msgstr "Giải thích"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3147834\n"
+"05020301.xhp\n"
+"par_id3152801\n"
"5\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "#"
+msgstr ""
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3147010\n"
+"05020301.xhp\n"
+"par_id3145090\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE\">Enter the amount of space that you want to have between the hatch lines.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE\">Nhập khoảng cách bạn muốn thấy giữa hai đường trong lưới đan.</ahelp>"
+msgid "Does not display extra zeros."
+msgstr "Không hiển thị thêm số không."
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3155355\n"
+"05020301.xhp\n"
+"par_id3147088\n"
"7\n"
"help.text"
-msgid "Angle"
-msgstr "Góc"
+msgid "0 (Zero)"
+msgstr "0 (Số không)"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3156410\n"
+"05020301.xhp\n"
+"par_id3150774\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE\">Enter the rotation angle for the hatch lines, or click a position in the angle grid.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE\">Nhập góc xoay cho các đường lưới đan, hoặc nhấn vào một vị trí trên lưới góc.</ahelp>"
-
-#: 05210400.xhp
-msgctxt ""
-"05210400.xhp\n"
-"hd_id3156113\n"
-"9\n"
-"help.text"
-msgid "Angle grid"
-msgstr "Lưới góc"
-
-#: 05210400.xhp
-msgctxt ""
-"05210400.xhp\n"
-"par_id3147242\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TPHATCH_CTRL\">Click a position in the grid to define the rotation angle for the hatch lines.</ahelp>"
-msgstr "<ahelp hid=\"HID_TPHATCH_CTRL\">Nhấn vào một vị trí trên lưới để xác định góc xoay cho các đường lưới đan.</ahelp>"
-
-#: 05210400.xhp
-msgctxt ""
-"05210400.xhp\n"
-"hd_id3155449\n"
-"21\n"
-"help.text"
-msgid "Line type"
-msgstr "Kiểu đường"
+msgid "Displays extra zeros if the number has less places than zeros in the format."
+msgstr "Hiển thị thêm số không nếu con số có ít lần số hơn các số không trong định dạng."
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3152909\n"
-"22\n"
+"05020301.xhp\n"
+"par_idN1087E\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE\">Select the type of hatch lines that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE\">Chọn kiểu đường lưới đan bạn muốn dùng.</ahelp>"
+msgid "Examples"
+msgstr "Thí dụ"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3150503\n"
-"23\n"
+"05020301.xhp\n"
+"par_id3149182\n"
+"9\n"
"help.text"
-msgid "Line color"
-msgstr "Màu đường"
+msgid "Number Format"
+msgstr "Định dạng số"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3149578\n"
-"24\n"
+"05020301.xhp\n"
+"par_id3154749\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR\">Select the color of the hatch lines.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR\">Chọn màu của đường lưới đan.</ahelp>"
+msgid "Format Code"
+msgstr "Mã định dạng"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3159147\n"
+"05020301.xhp\n"
+"par_id3148538\n"
"11\n"
"help.text"
-msgid "Hatches List"
-msgstr "Danh sách lưới đan"
+msgid "3456.78 as 3456.8"
+msgstr "3456,78 như 3456,8"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3149955\n"
+"05020301.xhp\n"
+"par_id3150355\n"
"12\n"
"help.text"
-msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern. To save the list, click the <emph>Save Hatches List</emph> button. To display a different list, click the <emph>Load Hatches List</emph> button."
-msgstr "Liệt kê các mẫu lưới đan sẵn sàng. Bạn cũng có thể sửa đổi hay tạo mẫu lưới đan riêng. Để lưu danh sách, nhấn vào nút <emph>Lưu danh sách lưới đan</emph>. Để hiển thị một danh sách khác, nhấn vào nút <emph>Nạp danh sách lưới đan</emph>."
+msgid "####.#"
+msgstr "####.#"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3150670\n"
+"05020301.xhp\n"
+"par_id3154142\n"
"13\n"
"help.text"
-msgid "Hatches list"
-msgstr "Danh sách lưới đan"
+msgid "9.9 as 9.900"
+msgstr "9,9 như 9,900"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3144438\n"
+"05020301.xhp\n"
+"par_id3159256\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS\">Lists the available hatching patterns. Click the hatching pattern that you want to apply, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS\">Liệt kê các mẫu lưới đan sẵn sàng. Nhấn vào mẫu lưới đan bạn muốn áp dụng, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
+msgid "#.000"
+msgstr "#.000"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3153823\n"
+"05020301.xhp\n"
+"par_id3147077\n"
"15\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "13 as 13.0 and 1234.567 as 1234.57"
+msgstr "13 như 13,0 và 1234,567 như 1234,57"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3148924\n"
+"05020301.xhp\n"
+"par_id3155388\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD\">Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD\">Thêm vào danh sách hiện thời một mẫu lưới đan riêng. Xác định các thuộc tính về mẫu lưới đan, rồi nhấn vào nút này.</ahelp>"
+msgid "#.0#"
+msgstr "#.0#"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3147620\n"
+"05020301.xhp\n"
+"par_id3149578\n"
"17\n"
"help.text"
-msgid "Modify"
-msgstr "Sửa"
+msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
+msgstr "5,75 như 5 3/4 và 6,3 như 6 3/10"
-#: 05210400.xhp
+#: 05020301.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3156023\n"
+"05020301.xhp\n"
+"par_id3145315\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY\">Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY\">Áp dụng cho mẫu lưới đan đã chọn các thuộc tính lưới đan hiện thời. Bạn cũng có thể lưu mẫu dưới tên khác.</ahelp>"
-
-#: 05210400.xhp
-msgctxt ""
-"05210400.xhp\n"
-"hd_id3147304\n"
-"25\n"
-"help.text"
-msgid "Load Hatches List"
-msgstr "Nạp danh sách lưới đan"
-
-#: 05210400.xhp
-msgctxt ""
-"05210400.xhp\n"
-"par_id3156343\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD\">Loads a different list of hatching patterns.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD\">Nạp một danh sách mẫu lưới đan khác.</ahelp>"
-
-#: 05210400.xhp
-msgctxt ""
-"05210400.xhp\n"
-"hd_id3154347\n"
-"27\n"
-"help.text"
-msgid "Save Hatches List"
-msgstr "Lưu dang sách lưới đan"
-
-#: 05210400.xhp
-msgctxt ""
-"05210400.xhp\n"
-"par_id3152811\n"
-"28\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE\">Saves the current list of hatching patterns, so that you can load it later.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE\">Lưu danh sách mẫu lưới đan, để nạp lại sau.</ahelp>"
-
-#: 04060200.xhp
-msgctxt ""
-"04060200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Request"
-msgstr "Yêu cầu"
-
-#: 04060200.xhp
-msgctxt ""
-"04060200.xhp\n"
-"hd_id3153514\n"
-"1\n"
-"help.text"
-msgid "Request"
-msgstr "Yêu cầu"
+msgid "# ???/???"
+msgstr "# ???/???"
-#: 04060200.xhp
+#: 05020301.xhp
msgctxt ""
-"04060200.xhp\n"
-"par_id3150278\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3156152\n"
+"19\n"
"help.text"
-msgid "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Scans an image, and then inserts the result into the document. The scanning dialog is provided by the manufacturer of the scanner.</ahelp></variable> For an explanation of the dialog please refer to the documentation on your scanner."
-msgstr "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Quét ảnh, sau đó chèn vào tài liệu kết quả của thao tác quét. Hộp thoại quét được cung cấp bởi nhà sản xuất máy quét.</ahelp></variable> Để tìm thêm thông tin về hộp thoại này, xem tài liệu hướng dẫn về máy quét đó."
+msgid ".5 as 0.5"
+msgstr ",5 như 0,5"
-#: 05210000.xhp
+#: 05020301.xhp
msgctxt ""
-"05210000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3149762\n"
+"20\n"
"help.text"
-msgid "Area"
-msgstr "Vùng"
+msgid "0.##"
+msgstr "0.##"
-#: 05210000.xhp
+#: 05020301.xhp
msgctxt ""
-"05210000.xhp\n"
-"hd_id3085157\n"
-"1\n"
+"05020301.xhp\n"
+"hd_id3149276\n"
+"230\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Vùng\">Vùng</link>"
+msgid "Thousands Separator"
+msgstr "Dấu tách phần nghìn"
-#: 05210000.xhp
+#: 05020301.xhp
msgctxt ""
-"05210000.xhp\n"
-"par_id3144436\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3154380\n"
+"21\n"
"help.text"
-msgid "<variable id=\"flaechetext\"><ahelp hid=\".uno:FormatArea\">Sets the fill properties of the selected drawing object.</ahelp></variable>"
-msgstr "<variable id=\"flaechetext\"><ahelp hid=\".uno:FormatArea\">Đặt các thuộc tính tô đầy của đối tượng vẽ đã chọn.</ahelp></variable>"
+msgid "Depending on your language setting, you can use a comma or a period as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000."
+msgstr "Phụ thuộc vào thiết lập ngôn ngữ, bạn có thể dùng dấu phẩy (v.d. tiếng Anh) hay dấu chấm (v.d. tiếng Việt) làm dấu tách phần nghìn. Cũng có thể dùng dấu tách để giảm kích cỡ con số được hiển thị theo bội số cho 1000."
-#: 01100600.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3154905\n"
+"22\n"
"help.text"
-msgid "Security"
-msgstr "Bảo mật"
+msgid "Number Format"
+msgstr "Định dạng số"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"bm_id1472519\n"
+"05020301.xhp\n"
+"par_id3150822\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>password as document property</bookmark_value><bookmark_value>file sharing options for current document</bookmark_value><bookmark_value>read-only documents;opening documents as</bookmark_value><bookmark_value>saving;with password by default</bookmark_value><bookmark_value>user data;removing when saving</bookmark_value>"
-msgstr ""
+msgid "Format Code"
+msgstr "Mã định dạng"
-#: 01100600.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id3149969\n"
+"05020301.xhp\n"
+"par_id3147264\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100600.xhp\" name=\"Security\">Security</link>"
-msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"Chung\">Chung</link>"
+msgid "15000 as 15,000"
+msgstr "15000 như 15.000"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3156049\n"
+"05020301.xhp\n"
+"par_id3151223\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets password options for the current document.</ahelp>"
-msgstr ""
+msgid "#,###"
+msgstr "#,###"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id31499\n"
+"05020301.xhp\n"
+"par_id3154935\n"
+"26\n"
"help.text"
-msgid "File encryption"
-msgstr ""
+msgid "16000 as 16"
+msgstr "16000 như 16"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id31499A\n"
+"05020301.xhp\n"
+"par_id3153961\n"
+"27\n"
"help.text"
-msgid "The password to open the current document can be set in the Properties dialog on the Security tab page. You can also set a password to open the document when you save the document. Check the Save with password option on the Save As dialog, and enter the password."
-msgstr ""
+msgid "#,"
+msgstr "#,"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA1\n"
+"05020301.xhp\n"
+"hd_id3154836\n"
+"79\n"
"help.text"
-msgid "Enter password to open"
-msgstr ""
+msgid "Including Text in Number Format Codes"
+msgstr "Gộp văn bản trong mã định dạng con số"
-#: 01100600.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3150502B\n"
+"05020301.xhp\n"
+"hd_id3150398\n"
+"231\n"
"help.text"
-msgid "<ahelp hid=\".\">Type a password. A password is case sensitive.</ahelp>"
-msgstr "<ahelp hid=\"HID_PASSWD_TABLE\">Nhập một mật khẩu.Mật khẩu phân biệt chữ hoa/thường.</ahelp>"
+msgid "Text and Numbers"
+msgstr "Văn bản và Con số"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA2\n"
+"05020301.xhp\n"
+"par_id3154224\n"
+"80\n"
"help.text"
-msgid "Confirm password"
-msgstr ""
+msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\"."
+msgstr "Để gộp chữ cái trong một định dạng con số được áp dụng cho một ô bảng chứa con số, để một dấu nháy kép (\") vào phía trước và phía sau chuỗi văn bản, hoặc để một dấu xuyệc ngược (\\) vào phía trước một ký tự riêng lẻ. Chẳng hạn, gõ chuỗi <emph>#,# \"mét\"</emph> để hiển thị « 3,5 mét » hay <emph>#,# \\m</emph> để hiển thị « 3,5 m »."
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3151100E\n"
+"05020301.xhp\n"
+"hd_id3148979\n"
+"232\n"
"help.text"
-msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
-msgstr ""
+msgid "Text and Text"
+msgstr "Văn bản và Văn bản"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106A3\n"
+"05020301.xhp\n"
+"par_id3153338\n"
+"82\n"
"help.text"
-msgid "File sharing options"
-msgstr ""
+msgid "To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (\" \"), and then add an at sign (@). For example, enter <emph>\"Total for \"@</emph> to display \"Total for December\"."
+msgstr "Để gộp chữ cái trong một định dạng con số được áp dụng cho một ô bảng có thể chứa chữ cái, bao gồm chuỗi bằng dấu nháy kép « \" », sau đó thêm một dấu a-còng « @ ». Chẳng hạn, gõ « \"Tổng số trong \"@ » để hiển thị « Tổng số trong Tháng Mười Hai »."
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id31499F\n"
+"05020301.xhp\n"
+"hd_id3154330\n"
+"233\n"
"help.text"
-msgid "The password to edit the current document can be set in the Properties dialog on the Security tab page. Currently this option is evaluated for documents in some Microsoft file formats."
-msgstr ""
+msgid "Spaces"
+msgstr "Dấu cách"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA3\n"
+"05020301.xhp\n"
+"par_id3156294\n"
+"81\n"
"help.text"
-msgid "Enter password to allow editing"
-msgstr ""
+msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
+msgstr "Để dùng một ký tự để xác định bề rộng của một dấu cách trong định dạng con số, gõ một gạch dưới « _ » có ký tự đó theo sau. Bề rộng của dấu cách biến đổi tùy theo bề rộng của ký tự bạn chọn. Chẳng hạn, <emph>_M</emph> sẽ tạo một dấu cách rộng hơn <emph>_i</emph>."
-#: 01100600.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3150502H\n"
+"05020301.xhp\n"
+"hd_id3155994\n"
+"234\n"
"help.text"
-msgid "<ahelp hid=\".\">Type a password. A password is case sensitive.</ahelp>"
-msgstr "<ahelp hid=\"HID_PASSWD_TABLE\">Nhập một mật khẩu.Mật khẩu phân biệt chữ hoa/thường.</ahelp>"
+msgid "Color"
+msgstr "Màu"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA4\n"
+"05020301.xhp\n"
+"par_id3156423\n"
+"28\n"
"help.text"
-msgid "Confirm password"
-msgstr ""
+msgid "To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:"
+msgstr "Để đặt màu của một phần của mã định dạng con số, chèn vào một của những tên màu này [giữa hai dấu ngoặc vuông]:"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3151100J\n"
+"05020301.xhp\n"
+"par_id3154630\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
-msgstr ""
+msgid "CYAN"
+msgstr "CYAN (màu xanh lá mạ)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA\n"
+"05020301.xhp\n"
+"par_id3148676\n"
+"30\n"
"help.text"
-msgid "Open file read-only"
-msgstr ""
+msgid "GREEN"
+msgstr "GREEN (màu lục)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AE\n"
+"05020301.xhp\n"
+"par_id3154123\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to allow this document to be opened in read-only mode only.</ahelp>"
-msgstr ""
+msgid "BLACK"
+msgstr "BLACK (màu đen)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106B1\n"
+"05020301.xhp\n"
+"par_id3149167\n"
+"32\n"
"help.text"
-msgid "This file sharing option protects the document against accidental changes. It is still possible to edit a copy of the document and save that copy with the same name as the original."
-msgstr ""
+msgid "BLUE"
+msgstr "BLUE (màu xanh)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106B4\n"
+"05020301.xhp\n"
+"par_id3158407\n"
+"33\n"
"help.text"
-msgid "Record changes"
-msgstr ""
+msgid "MAGENTA"
+msgstr "MAGENTA (màu đỏ tươi)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106B8\n"
+"05020301.xhp\n"
+"par_id3149560\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Changes - Record</emph>.</ahelp>"
-msgstr ""
+msgid "RED"
+msgstr "RED (màu đỏ)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106C9\n"
+"05020301.xhp\n"
+"par_id3147502\n"
+"35\n"
"help.text"
-msgid "To protect the recording state with a password, click <emph>Protect</emph> and enter a password. Other users of this document can apply their changes, but they cannot disable change recording without knowing the password."
-msgstr ""
+msgid "WHITE"
+msgstr "WHITE (màu trắng)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106D0\n"
+"05020301.xhp\n"
+"par_id3153368\n"
+"36\n"
"help.text"
-msgid "Protect / Unprotect"
-msgstr ""
+msgid "YELLOW"
+msgstr "YELLOW (màu vàng)"
-#: 01100600.xhp
+#: 05020301.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106D4\n"
+"05020301.xhp\n"
+"hd_id3147435\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"703992336\">Protects the change recording state with a password. If change recording is protected for the current document, the button is named <emph>Unprotect</emph>. Click <emph>Unprotect</emph> and type the correct password to disable the protection.</ahelp>"
-msgstr ""
+msgid "Conditions"
+msgstr "Điều kiện"
-#: 05260300.xhp
+#: 05020301.xhp
msgctxt ""
-"05260300.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"hd_id3148575\n"
+"235\n"
"help.text"
-msgid "To Character"
-msgstr "Vào ký tự"
+msgid "Conditional Brackets"
+msgstr "Dấu ngoặc vu điều kiện"
-#: 05260300.xhp
+#: 05020301.xhp
msgctxt ""
-"05260300.xhp\n"
-"hd_id3154044\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3155312\n"
+"112\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260300.xhp\" name=\"To Character\">To Character</link>"
-msgstr "<link href=\"text/shared/01/05260300.xhp\" name=\"Vào ký tự\">Vào ký tự</link>"
+msgid "You can define a number format so that it only applies when the condition that you specify is met. Conditions are enclosed by square brackets [ ]."
+msgstr "Bạn có thể xác định một định dạng con số để cho nó áp dụng chỉ khi thỏa điều kiện bạn ghi rõ. Điều kiện nằm [giữa dấu ngoặc vuông]."
-#: 05260300.xhp
+#: 05020301.xhp
msgctxt ""
-"05260300.xhp\n"
-"par_id3147069\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3159179\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\".\">Anchors the selected item to a character.</ahelp> This command is only available for graphic objects."
-msgstr "<ahelp hid=\".\">Thả neo mục đã chọn vào một ký tự nào đó.</ahelp> Câu lệnh này chỉ sẵn sàng cho đối tượng kiểu đồ họa."
+msgid "You can use any combination of numbers and the <, <=, >, >=, = and <> operators."
+msgstr "Bạn có thể sử dụng bất cứ tổ hợp nào các con số và toán tử <, <=, >, >=, =, <> ."
-#: 05260300.xhp
+#: 05020301.xhp
msgctxt ""
-"05260300.xhp\n"
-"par_id3146067\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3159196\n"
+"236\n"
"help.text"
-msgid "The anchor is displayed in front of the character."
-msgstr "Neo được hiển thị phía trước ký tự."
+msgid "For example, if you want to apply different colors to different temperature data, enter:"
+msgstr "Chẳng hạn, nếu bạn muốn áp dụng các màu khác nhau cho dữ liệu nhiệt độ khác nhau, nhập:"
-#: 05260300.xhp
+#: 05020301.xhp
msgctxt ""
-"05260300.xhp\n"
-"par_id3152924\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3150872\n"
+"113\n"
"help.text"
-msgid "To align a graphic relative to the character that it is anchored to, right-click the graphic, and then choose <emph>Graphics</emph>. Click the <emph>Type </emph>tab, and in the <emph>Position </emph>area, select <emph>Character</emph> in the <emph>to</emph> boxes."
-msgstr "Để chỉnh canh một đồ họa tương ứng so với ký tự vào đó nó đã thả neo, nhấn-phải vào đồ họa, sau đó chọn mục <emph>Đồ họa</emph>. Nhấn vào thẻ <emph>Kiểu</emph>, và trong vùng <emph>Vị trí </emph> chọn mục <emph>Ký tự</emph> trong hộp <emph>vào</emph>."
+msgid "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
+msgstr "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3157870\n"
+"114\n"
"help.text"
-msgid "Test XML Filter"
-msgstr "Thử bộ lọc XML"
+msgid "All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red."
+msgstr "Nhiệt độ dưới số không thì màu xanh, nhiệt độ giữa 0 và 30ºC thì màu đen, và nhiệt độ trên 30ºC thì màu đỏ."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3150379\n"
-"22\n"
+"05020301.xhp\n"
+"hd_id3154833\n"
+"90\n"
"help.text"
-msgid "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\" name=\"Test XML Filter\">Test XML Filter</link></variable>"
-msgstr "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\" name=\"Thử bộ lọc XML\">Thử bộ lọc XML</link></variable>"
+msgid "Positive and Negative Numbers"
+msgstr "Con số Dương và Âm"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3146857\n"
-"23\n"
+"05020301.xhp\n"
+"par_id3147295\n"
+"91\n"
"help.text"
-msgid "<ahelp hid=\".\">Tests the XSLT stylesheets used by the selected <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">Thử các bảng kiểu dáng XSLT dùng bởi <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link> đã chọn.</ahelp>"
+msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
+msgstr "Để xác định định dạng con số mà thêm chuỗi khác vào con số phụ thuộc vào nó là số dương (+ plus), số âm (- minus) hay số bằng số không (vô giá trị: null), dùng định dạng này:"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3146765\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3153727\n"
+"92\n"
"help.text"
-msgid "Export"
-msgstr "Xuất"
+msgid "\"plus\" 0;\"minus\" 0;\"null\" 0"
+msgstr "\"plus\" 0;\"minus\" 0;\"null\" 0"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3153070\n"
-"2\n"
+"05020301.xhp\n"
+"hd_id3149260\n"
+"83\n"
"help.text"
-msgid "XSLT for export"
-msgstr "XSLT cần xuất"
+msgid "Percentages and Scientific Notation"
+msgstr "Phần trăm và Kiểu ghi Khoa học"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3147617\n"
-"3\n"
+"05020301.xhp\n"
+"hd_id3147218\n"
+"237\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị tên tập tin của bộ lọc XSLT mà bạn đã nhập vào trên trang thẻ <emph>Chuyển dạng</emph>.</ahelp>"
+msgid "Percentages"
+msgstr "Phần trăm"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3147090\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3151168\n"
+"84\n"
"help.text"
-msgid "Transform document"
-msgstr "Chuyển dạng tài liệu"
+msgid "To display numbers as percentages, add the percent sign (%) to the number format."
+msgstr "Để hiển thị số theo phần trăm, thêm ký hiệu phần trăm (%) cho định dạng số."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3153029\n"
-"5\n"
+"05020301.xhp\n"
+"hd_id3156005\n"
+"89\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the file name of the document that you want to use to test the XSLT filter.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị tên tập tin của tài liệu bạn ma dùng để thử bộ lọc XML.</ahelp>"
+msgid "Scientific Notation"
+msgstr "Kiểu ghi Khoa học"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3145160\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3146923\n"
+"85\n"
"help.text"
-msgid "Browse"
-msgstr "Duyệt"
+msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+."
+msgstr "Kiểu ghi khoa học thì cho pháp bạn viết con số rất lớn hay phân số rất nhỏ theo dạng tóm gọn. Chẳng hạn, 650000 kiểu ghi khoa học là « 6.5 × 10⁵ », và 0.000065 là « 6.5 × 10⁻⁵ ». Trong <item type=\"productname\">%PRODUCTNAME</item>, hai con số này được ghi dạng « 6.5E+5 » và « 6.5E-5 » riêng từng cái. Để tạo một định dạng con số mà hiển thị con số kiểu ghi khoa học, nhập một dấu thăng (#) hay số không (0), sau đó một của những mã này: E-, E+, e- hay e+."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3144436\n"
+"05020301.xhp\n"
+"hd_id3159080\n"
+"98\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_BROWSE\">Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation.</ahelp>"
-msgstr ""
+msgid "Number Format Codes of Currency Formats"
+msgstr "Mã định dạng con số của định dạng tiền tệ"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3159194\n"
-"8\n"
+"05020301.xhp\n"
+"par_id3147318\n"
+"99\n"
"help.text"
-msgid "Current Document"
-msgstr "Tài liệu hiện tại"
+msgid "The default currency format for the cells in your spreadsheet is determined by the regional setting of your operating system. If you want, you can apply a custom currency symbol to a cell. For example, enter #,##0.00 € to display 4.50 € (Euros)."
+msgstr "Định dạng tiền tệ mặc định cho các ô trên bảng tính của bạn được xác định tùy theo thiết lập miền địa phương (locale) của hệ điều hành. Bạn cũng có thể áp dụng cho mỗi ô bảng một ký hiệu tiền tệ tự chọn. Chẳng hạn, nhập « #.##0,00 € » để hiển thị « 4.50 € » (đồng Âu, Euro)."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3147250\n"
-"9\n"
+"05020301.xhp\n"
+"par_id3150032\n"
+"167\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href=\"text/shared/01/06150210.xhp\">XML Filter output</link> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Tập tin còn mở trên cùng mà tương ứng với các tiêu chuẩn của bộ lọc XML sẽ được dùng để thử bộ lọc đó. Bộ lọc xuất khẩu XML hiện thời thì chuyển dạng tập tin, và mã nguồn XML kết quả được hiển thị trong cửa sổ <link href=\"text/shared/01/06150210.xhp\">Kết xuất lọc XML</link>.</ahelp>"
+msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
+msgstr "Bạn cũng có thể ghi rõ riêng thiết lập miền địa phương cho tiền tệ, bằng cách nhập vào phía sau ký hiệu mã miền địa phương của quốc gia. Chẳng hạn, « [$€-407] » đại diện đồng Âu tại Đức. Để xem mã miền địa phương của quốc gia, chọn quốc gia đó trong danh sách các <emph>Ngôn ngữ</emph> trên thẻ <emph>Số</emph> của hộp thoại <emph>Định dạng ô</emph>."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3154823\n"
-"10\n"
+"05020301.xhp\n"
+"hd_id3157309\n"
+"238\n"
"help.text"
-msgid "Import"
-msgstr "Nhập"
+msgid "Date and Time Formats"
+msgstr "Định dạng Ngày/Giờ"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3159233\n"
-"11\n"
+"05020301.xhp\n"
+"hd_id3153740\n"
+"37\n"
"help.text"
-msgid "XSLT for import"
-msgstr "XSLT cần nhập"
+msgid "Date Formats"
+msgstr "Định dạng ngày tháng"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3153681\n"
-"12\n"
+"05020301.xhp\n"
+"par_id3152791\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Hiển thị tên tập tin của bộ lọc XSLT bạn đã nhập vào trên trang thẻ <emph>Chuyển dạng</emph>.</ahelp>"
+msgid "To display days, months and years, use the following number format codes."
+msgstr "Để hiển thị ngày, tháng và năm, dùng những mã định dạng theo đây."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3149177\n"
-"13\n"
+"05020301.xhp\n"
+"par_id610980\n"
"help.text"
-msgid "Template for import"
-msgstr "Mẫu cần nhập"
+msgid "Not all format codes give meaningful results for all languages."
+msgstr "Không phải tất cả các mã định dạng trả về kết quả có ích cho mọi ngôn ngữ."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3156410\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3152376\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Hiển thị tên tập tin của mẫu bạn đã nhập vào trên trang thẻ <emph>Chuyển dạng</emph>.</ahelp>"
+msgid "Format"
+msgstr "Định dạng"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3163802\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3159130\n"
+"40\n"
"help.text"
-msgid "Transform file"
-msgstr "Chuyển dạng tập tin"
+msgid "Format Code"
+msgstr "Mã định dạng"
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3147242\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3147380\n"
+"41\n"
"help.text"
-msgid "Display source"
-msgstr "Hiển thị mã nguồn"
+msgid "Month as 3."
+msgstr "Tháng có một chữ số : Tháng Ba là « 3 »."
-#: 06150200.xhp
+#: 05020301.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3150444\n"
-"17\n"
+"05020301.xhp\n"
+"par_id3146928\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE\">Opens the XML source of the selected document in your default XML editor after importing.</ahelp>"
+msgid "M"
msgstr ""
-#: 06150200.xhp
-msgctxt ""
-"06150200.xhp\n"
-"hd_id3147078\n"
-"18\n"
-"help.text"
-msgid "Browse"
-msgstr "Duyệt"
-
-#: 06150200.xhp
-msgctxt ""
-"06150200.xhp\n"
-"par_id3149885\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_BROWSE\">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_BROWSE\">Mở hộp thoại lựa tập tin chọn. Tập tin đã chọn thì được mở dùng bộ lọc nhập khẩu XML hiện thời.</ahelp>"
-
-#: 06150200.xhp
-msgctxt ""
-"06150200.xhp\n"
-"hd_id3153666\n"
-"20\n"
-"help.text"
-msgid "Recent File"
-msgstr "Tập tin vừa mở"
-
-#: 06150200.xhp
-msgctxt ""
-"06150200.xhp\n"
-"par_id3146137\n"
-"21\n"
-"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_RECENT\">Re-opens the document that was last opened with this dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_RECENT\">Mở lại tài liệu được mở cuối cùng dùng hộp thoại này.</ahelp>"
-
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Center"
-msgstr "Giữa"
-
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"hd_id3153514\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05080300.xhp\" name=\"Center\">Center</link>"
-msgstr "<link href=\"text/shared/01/05080300.xhp\" name=\"Giữa\">Giữa</link>"
-
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"par_id3152876\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Centers the selected paragraph(s) on the page.</ahelp></variable>"
-msgstr "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Đặt các đoạn văn đã chọn vào giữa trên trang.</ahelp></variable>"
-
-#: 04150100.xhp
-msgctxt ""
-"04150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert OLE Object"
-msgstr "Chèn đối tượng OLE"
-
-#: 04150100.xhp
-msgctxt ""
-"04150100.xhp\n"
-"bm_id3153116\n"
-"help.text"
-msgid "<bookmark_value>OLE objects; inserting</bookmark_value><bookmark_value>inserting; OLE objects</bookmark_value><bookmark_value>objects; inserting OLE objects</bookmark_value>"
-msgstr "<bookmark_value>OLE đối tượng; chèn</bookmark_value><bookmark_value>chèn; OLE đối tượng</bookmark_value><bookmark_value>đối tượng; chèn OLE đối tượng</bookmark_value>"
-
-#: 04150100.xhp
-msgctxt ""
-"04150100.xhp\n"
-"hd_id3153116\n"
-"1\n"
-"help.text"
-msgid "Insert OLE Object"
-msgstr "Chèn đối tượng OLE"
-
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3149748\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3145594\n"
+"43\n"
"help.text"
-msgid "<variable id=\"ole\"><ahelp hid=\".uno:InsertObject\">Inserts an <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> object into the current document. The OLE object is inserted as a link or an embedded object.</ahelp></variable>"
-msgstr "<variable id=\"ole\"><ahelp hid=\".uno:InsertObject\">Chèn vào tài liệu một đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>. Đối tượng OLE này được chèn dạng liên kết hay đối tượng nhúng.</ahelp></variable>"
+msgid "Month as 03."
+msgstr "Tháng có hai chữ số : Tháng Ba là « 03 »."
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3149205\n"
-"19\n"
+"05020301.xhp\n"
+"par_id3153052\n"
+"44\n"
"help.text"
-msgid "To speed up the display of the document, OLE objects are kept in the program cache. If you want to change the cache settings, choose <link href=\"text/shared/optionen/01011000.xhp\" name=\"Tools - Options - $[officename] - Memory\"><emph>Tools - Options - $[officename] - Memory</emph></link>."
-msgstr "Để tăng tốc hiển thị tài liệu, các đối tượng OLE được giữ trong bộ nhớ tạm của chương trình. Nếu bạn muốn thay đổi thiết lập về bộ nhớ tạm, hiển thị mục trình đơn <link href=\"text/shared/optionen/01011000.xhp\" name=\"Công cụ > Tùy chọn > $[officename] > Bộ nhớ\"><emph>Công cụ > Tùy chọn > $[officename] > Bộ nhớ</emph></link>."
+msgid "MM"
+msgstr "MM"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3145314\n"
-"18\n"
+"05020301.xhp\n"
+"par_id3145728\n"
+"45\n"
"help.text"
-msgid "You cannot use the clipboard or drag and drop to move OLE objects to other files."
-msgstr "Không thể sử dụng bảng nháp để kéo và thả đối tượng OLE vào tập tin khác."
+msgid "Month as Jan-Dec"
+msgstr "Tháng là viết tắt : Tháng Ba là « Th3 »."
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3150693\n"
-"17\n"
+"05020301.xhp\n"
+"par_id3151073\n"
+"46\n"
"help.text"
-msgid "Empty and inactive OLE objects are transparent."
-msgstr "Đối tượng OLE kiểu rỗng và không hoạt động thì cũng trong suốt."
+msgid "MMM"
+msgstr "MMM"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3149178\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3149909\n"
+"47\n"
"help.text"
-msgid "Create new"
-msgstr "Tạo đồ mới"
+msgid "Month as January-December"
+msgstr "Tháng hoàn toàn : Tháng Ba là « Tháng Ba »."
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3145345\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3155318\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/createnew\">Creates a new OLE object based on the object type that you select.</ahelp>"
-msgstr ""
+msgid "MMMM"
+msgstr "MMMM"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3155535\n"
-"5\n"
+"05020301.xhp\n"
+"par_id3151218\n"
+"116\n"
"help.text"
-msgid "Object type"
-msgstr "Kiểu đối tượng"
+msgid "First letter of Name of Month"
+msgstr "Chữ đầu của tên tháng"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3109847\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3150420\n"
+"117\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/types\">Select the type of document that you want to create.</ahelp>"
-msgstr ""
+msgid "MMMMM"
+msgstr "MMMMM"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3163803\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3154501\n"
+"49\n"
"help.text"
-msgid "Create from file"
-msgstr "Tạo từ tập tin"
+msgid "Day as 2"
+msgstr "Ngày có một chữ số : ngày hai là « 2 »."
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3149191\n"
-"8\n"
+"05020301.xhp\n"
+"par_id3156181\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/createfromfile\">Creates an OLE object from an existing file.</ahelp>"
+msgid "D"
msgstr ""
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3150084\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3146969\n"
+"51\n"
"help.text"
-msgid "File"
-msgstr "Tập tin"
+msgid "Day as 02"
+msgstr "Ngày có hai chữ số : ngày hai là « 02 »."
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3146773\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3156358\n"
+"52\n"
"help.text"
-msgid "Choose the file that you want to insert as an OLE object."
-msgstr "Chọn tập tin bạn muốn chèn dạng đối tượng OLE."
+msgid "DD"
+msgstr "DD"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3144438\n"
-"9\n"
+"05020301.xhp\n"
+"par_id3148495\n"
+"53\n"
"help.text"
-msgid "File"
-msgstr "Tập tin"
+msgid "Day as Sun-Sat"
+msgstr "Hôm viết tắt : hôm Thứ Hai là « T2 », hôm Chủ Nhật là « CN »."
-#: 04150100.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3155434\n"
-"10\n"
+"05020301.xhp\n"
+"par_id3161665\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/urled\">Enter the name of the file that you want to link or embed, or click <emph>Search</emph>, to locate the file.</ahelp>"
-msgstr "<ahelp hid=\"SO3:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH\">Nhập tên của tập tin bạn muốn liên kết hay nhúng, hoặc nhấn vào nút <emph>Tìm kiếm</emph>, để tìm tập tin.</ahelp>"
+msgid "NN or DDD"
+msgstr "NN hay DDD"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3153127\n"
-"11\n"
+"05020301.xhp\n"
+"par_id3154272\n"
+"118\n"
"help.text"
-msgid "Search..."
-msgstr "Tìm kiếm..."
+msgid "Day as Sunday to Saturday"
+msgstr "Hôm hoàn toàn: hôm Thứ Hai là « Thứ Hai », hôm Chủ Nhật là « Chủ Nhật »."
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3156326\n"
-"12\n"
+"05020301.xhp\n"
+"par_id3145164\n"
+"119\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Locate the file that you want to insert, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgid "NNN or DDDD"
+msgstr "NNN hay DDDD"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id4174321\n"
+"05020301.xhp\n"
+"par_id3146791\n"
+"55\n"
"help.text"
-msgid "Link to file"
-msgstr "Liên kết đến tập tin"
+msgid "Day followed by comma, as in \"Sunday,\""
+msgstr "Hôm có dấu phẩy theo sau, v.d. « Chủ Nhật, »"
-#: 04150100.xhp
+#: 05020301.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id6636555\n"
+"05020301.xhp\n"
+"par_id3146081\n"
+"56\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để chèn đối tượng OLE dạng liên kết tới tập tin gốc. Không bật thì đối tượng OLE sẽ được nhúng trong tài liệu.</ahelp>"
+msgid "NNNN"
+msgstr "NNNN"
-#: 06050300.xhp
+#: 05020301.xhp
msgctxt ""
-"06050300.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3156275\n"
+"57\n"
"help.text"
-msgid "Outline"
-msgstr "Nét ngoài"
+msgid "Year as 00-99"
+msgstr "Năm có hai chữ số : « 00-99 »."
-#: 06050300.xhp
+#: 05020301.xhp
msgctxt ""
-"06050300.xhp\n"
-"hd_id3147543\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3143236\n"
+"58\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
-msgstr "<link href=\"text/shared/01/06050300.xhp\" name=\"Phác thảo\">Phác thảo</link>"
+msgid "YY"
+msgstr "YY"
-#: 06050300.xhp
+#: 05020301.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3146936\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3148408\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị các kiểu dáng khác nhau mà bạn có thể áp dụng cho danh sách phân cấp. $[officename] hỗ trợ đến chín cấp phác thảo trong phân cấp danh sách.</ahelp>"
+msgid "Year as 1900-2078"
+msgstr "Năm có bốn chữ số : « 1900-2078 »"
-#: 06050300.xhp
+#: 05020301.xhp
msgctxt ""
-"06050300.xhp\n"
-"hd_id3147000\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3151358\n"
+"60\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "YYYY"
+msgstr "YYYY"
-#: 06050300.xhp
+#: 05020301.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3155934\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3153355\n"
+"96\n"
"help.text"
-msgid "<ahelp hid=\"HID_VALUESET_NUM\">Click the outline style that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"HID_VALUESET_NUM\">Nhấn vào kiểu dáng phác thảo bạn muốn dùng.</ahelp>"
+msgid "Calendar week"
+msgstr "Tuần của lịch"
-#: 06050300.xhp
+#: 05020301.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3144436\n"
+"05020301.xhp\n"
+"par_id3150744\n"
+"97\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "WW"
+msgstr "WW"
-#: 06050300.xhp
+#: 05020301.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3153935\n"
+"05020301.xhp\n"
+"par_id3154302\n"
+"103\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "Quarterly as Q1 to Q4"
+msgstr "Hàng quý: « Q1 » đến « Q4 »"
-#: 05140100.xhp
+#: 05020301.xhp
msgctxt ""
-"05140100.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3159266\n"
+"104\n"
"help.text"
-msgid "Create Style"
-msgstr "Tạo kiểu dáng"
+msgid "Q"
+msgstr ""
-#: 05140100.xhp
+#: 05020301.xhp
msgctxt ""
-"05140100.xhp\n"
-"hd_id3152823\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3147583\n"
+"105\n"
"help.text"
-msgid "Create Style"
-msgstr "Tạo kiểu dáng"
+msgid "Quarterly as 1st quarter to 4th quarter"
+msgstr "Hàng quý: « 1st quarter » đến « 4th quarter »"
-#: 05140100.xhp
+#: 05020301.xhp
msgctxt ""
-"05140100.xhp\n"
-"hd_id3152790\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3146918\n"
+"106\n"
"help.text"
-msgid "Style name"
-msgstr "Tên kiểu dáng"
+msgid "QQ"
+msgstr "QQ"
-#: 05140100.xhp
+#: 05020301.xhp
msgctxt ""
-"05140100.xhp\n"
-"par_id3155599\n"
-"5\n"
+"05020301.xhp\n"
+"par_id3147534\n"
+"120\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:COMBOBOX:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL\" visibility=\"visible\">Enter a name for the new Style.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:COMBOBOX:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL\" visibility=\"visible\">Nhập tên cho kiểu dáng mới.</ahelp>"
+msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
+msgstr "Đại tùy theo lịch Gengou Nhật (ký tự đơn, giá trị có thể là: M, T, S, H)"
-#: 05140100.xhp
+#: 05020301.xhp
msgctxt ""
-"05140100.xhp\n"
-"hd_id3154682\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3151249\n"
+"121\n"
"help.text"
-msgid "List of Custom Styles"
-msgstr "Danh sách Kiểu dáng riêng"
+msgid "G"
+msgstr ""
-#: 05140100.xhp
+#: 05020301.xhp
msgctxt ""
-"05140100.xhp\n"
-"par_id3154894\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3163806\n"
+"122\n"
"help.text"
-msgid "Lists the user-defined styles that are attached to the current document."
-msgstr "Liệt kê các kiểu dáng đã xác định sẵn thuộc về tài liệu hiện tại."
+msgid "Era, abbreviation"
+msgstr "Đại viết tắt"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3155962\n"
+"123\n"
"help.text"
-msgid "Asian Phonetic Guide"
-msgstr "Chỉ dẫn Ngữ âm Châu Á"
+msgid "GG"
+msgstr "GG"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"bm_id9598376\n"
+"05020301.xhp\n"
+"par_id3151187\n"
+"124\n"
"help.text"
-msgid "<bookmark_value>Asian Phonetic Guide</bookmark_value><bookmark_value>phonetic guide</bookmark_value>"
-msgstr "<bookmark_value>Chỉ dẫn Ngữ âm Châu Á</bookmark_value><bookmark_value>chỉ dẫn ngữ âm</bookmark_value>"
+msgid "Era, full name"
+msgstr "Đại, tên đầy đủ"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3147527\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3149568\n"
+"125\n"
"help.text"
-msgid "<link href=\"text/shared/01/05060000.xhp\" name=\"Ruby\">Asian Phonetic Guide</link>"
-msgstr "<link href=\"text/shared/01/05060000.xhp\" name=\"Ruby\">Chỉ dẫn Ngữ âm Châu Á</link>"
+msgid "GGG"
+msgstr "GGG"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3083278\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3147344\n"
+"126\n"
"help.text"
-msgid "<ahelp hid=\".uno:RubyDialog\">Allows you to add comments above Asian characters to serve as a pronunciation guide.</ahelp>"
-msgstr "<ahelp hid=\".uno:RubyDialog\">Cho bạn có khả năng ghi chú vào bên trên ký tự chữ viết ghi ý, để giúp phát âm.</ahelp>"
+msgid "Number of the year within an era, without a leading zero for single-digit years"
+msgstr "Số của năm bên trong đại, không có số không đi trước cho năm chữ số đơn"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154044\n"
-"13\n"
+"05020301.xhp\n"
+"par_id3147255\n"
+"127\n"
"help.text"
-msgid "Select one or more words in the document."
-msgstr "Chọn một hay nhiều từ trong tài liệu."
+msgid "E"
+msgstr ""
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3149987\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3148487\n"
+"128\n"
"help.text"
-msgid "Choose <emph>Format - Asian Phonetic Guide</emph>."
-msgstr "Chọn lệnh <emph>Định dạng > Chỉ dẫn Ngữ âm Châu Á</emph>."
+msgid "Number of the year within an era, with a leading zero for single-digit years"
+msgstr "Số của năm bên trong đại, có số không đi trước cho năm chữ số đơn"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154838\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3150298\n"
+"129\n"
"help.text"
-msgid "Enter the text that you want to use as a pronunciation guide in the <emph>Ruby text</emph> box."
-msgstr "Nhập vào hộp <emph>Văn bản Ruby</emph> thông tin giúp phát âm."
+msgid "EE or R"
+msgstr "EE hay R"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3150793\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3152861\n"
+"138\n"
"help.text"
-msgid "Base text"
-msgstr "Chuỗi cơ sở"
+msgid "Era, full name and year"
+msgstr "Đại, tên đầy đủ và năm"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154155\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3149926\n"
+"139\n"
"help.text"
-msgid "<ahelp hid=\"SVX_EDIT_RID_SVXDLG_RUBY_ED_LEFT_4\">Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here.</ahelp>"
-msgstr "<ahelp hid=\"SVX_EDIT_RID_SVXDLG_RUBY_ED_LEFT_4\">Hiển thị chuỗi cơ bản bạn đã chọn trong tập tin hiện tại. Bạn cũng có thể sửa đổi chuỗi cơ bản, bằng cách nhập vào đây một chuỗi mới.</ahelp>"
+msgid "RR or GGGEE"
+msgstr "RR hay GGGEE"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3145154\n"
-"5\n"
+"05020301.xhp\n"
+"par_id1002200811423518\n"
"help.text"
-msgid "Ruby text"
-msgstr "Chuỗi Ruby"
+msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you will need to know the formatting codes used in that other locale."
+msgstr "Những mã định dạng được lập danh sách ở trên sẽ có tác dụng với phiên bản của %PRODUCTNAME trong ngôn ngữ của bạn. Có điều nếu bạn cần chuyển dạng ngôn ngữ của %PRODUCTNAME sang một ngôn ngữ khác, bạn sẽ cần biết các mã định dạng sử dụng trong ngôn ngữ đó."
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3145420\n"
-"6\n"
+"05020301.xhp\n"
+"par_id1002200811423556\n"
"help.text"
-msgid "<ahelp hid=\"SVX_EDIT_RID_SVXDLG_RUBY_ED_RIGHT_4\">Enter the text that you want to use as a pronunciation guide for the base text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_EDIT_RID_SVXDLG_RUBY_ED_RIGHT_4\">Nhập vào đây chuỗi bạn muốn dùng để chỉ dẫn cách phát âm chuỗi cơ bản.</ahelp>"
+msgid "For example, if your software is set to an English locale, and you want to format a year with four digits, you enter YYYY as a formatting code. When you switch to a German locale, you must use JJJJ instead. The following table lists only the localized differences."
+msgstr "Ví dụ, nếu bạn đang chọn ngôn ngữ tiếng Anh, và bạn muốn định dạng năm theo 4 chữ số, bạn sẽ điền YYYY như là mã định dạng. Khi bạn chuyển sang tiếng Đức bạn sẽ phải sử dụng JJJJ làm mã định dạng. Bảng sau đây lập danh sách những khác biệt giữa các phiên bản bản địa."
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3148920\n"
-"7\n"
+"05020301.xhp\n"
+"par_id1002200811563044\n"
"help.text"
-msgid "Alignment"
-msgstr "Canh lề"
+msgid "Locale"
+msgstr "Ngôn ngữ"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3156280\n"
-"8\n"
+"05020301.xhp\n"
+"par_id1002200811563137\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_ADJUST\">Select the horizontal alignment for the Ruby text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_ADJUST\">Chọn cách canh lề đoạn văn Ruby theo chiều ngang.</ahelp>"
+msgid "Year"
+msgstr "Năm"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3148451\n"
-"16\n"
+"05020301.xhp\n"
+"par_id1002200811563164\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "Month"
+msgstr "Tháng"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3153104\n"
-"17\n"
+"05020301.xhp\n"
+"par_id1002200811563128\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_POSITION\">Select where you want to place the ruby text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_POSITION\">Chọn vị trí cho chuỗi Ruby.</ahelp>"
+msgid "Day"
+msgstr "Ngày"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3148672\n"
-"9\n"
+"05020301.xhp\n"
+"par_id1002200811563135\n"
"help.text"
-msgid "Character Style for ruby text"
-msgstr "Kiểu dáng ký tự cho chuỗi Ruby"
+msgid "Hour"
+msgstr "Giờ"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3148676\n"
-"10\n"
+"05020301.xhp\n"
+"par_id1002200811563289\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_CHAR_STYLE\">Select a character style for the ruby text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_CHAR_STYLE\">Chọn một kiểu dáng ký tự cho chuỗi Ruby.</ahelp>"
+msgid "Day Of Week"
+msgstr "Ngày trong tuần"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3150449\n"
-"11\n"
+"05020301.xhp\n"
+"par_id100220081156322\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Kiểu dáng và Định dạng"
+msgid "Era"
+msgstr "Kỉ nguyên"
-#: 05060000.xhp
+#: 05020301.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3149202\n"
-"12\n"
+"05020301.xhp\n"
+"par_id1002200811563233\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_RUBY_PB_STYLIST\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link></caseinline><defaultinline>Styles and Formatting window</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_RUBY_PB_STYLIST\">Mở cửa sổ <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Kiểu dáng\">Kiểu dáng và Định dạng</link></caseinline><defaultinline>Kiểu dáng và Định dạng</defaultinline></switchinline>, trong đó bạn có thể chọn kiểu dáng ký tự cho chuỗi Ruby.</ahelp>"
+msgid "English - en"
+msgstr "Tiếng Anh - en"
-#: selectcertificate.xhp
+#: 05020301.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id1002200811563243\n"
"help.text"
-msgid "Select Certificate"
-msgstr "Chọn chứng nhận"
+msgid "and all not listed locales"
+msgstr "và tất cả những ngôn ngữ không được hiển thị"
-#: selectcertificate.xhp
+#: 05020301.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10541\n"
+"05020301.xhp\n"
+"par_id1002200811563352\n"
"help.text"
-msgid "Select Certificate"
-msgstr "Chọn chứng nhận"
+msgid "Y"
+msgstr ""
-#: selectcertificate.xhp
+#: 05020301.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10545\n"
+"05020301.xhp\n"
+"par_id1002200811563396\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the certificate that you want to <link href=\"text/shared/01/digitalsignatures.xhp\">digitally sign</link> the current document with.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn chứng nhận bạn muốn dùng để <link href=\"text/shared/01/digitalsignatures.xhp\">ký thuật số</link> tài liệu hiện tại.</ahelp>"
+msgid "M"
+msgstr ""
-#: selectcertificate.xhp
+#: 05020301.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN1056A\n"
+"05020301.xhp\n"
+"par_id1002200811563385\n"
"help.text"
-msgid "List"
-msgstr "Danh sách"
+msgid "D"
+msgstr ""
-#: selectcertificate.xhp
+#: 05020301.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN1056E\n"
+"05020301.xhp\n"
+"par_id1002200811563472\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the certificate that you want to digitally sign the current document with.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn chứng nhận bạn muốn dùng để ký thuật số tài liệu hiện tại..</ahelp>"
+msgid "H"
+msgstr ""
-#: selectcertificate.xhp
+#: 05020301.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10571\n"
+"05020301.xhp\n"
+"par_id1002200811563430\n"
"help.text"
-msgid "View Certificate"
-msgstr "Xem chứng nhận"
+msgid "A"
+msgstr ""
-#: selectcertificate.xhp
+#: 05020301.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10575\n"
+"05020301.xhp\n"
+"par_id1002200811563488\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog where you can examine the selected certificate.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/optionen/viewcertificate.xhp\">Xem chứng nhận</link> trong đó bạn có thể xem xét chứng nhận đã chọn.</ahelp>"
+msgid "G"
+msgstr ""
-#: 05340405.xhp
+#: 05020301.xhp
msgctxt ""
-"05340405.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id1002200811563484\n"
"help.text"
-msgid "Column format"
-msgstr "Định dạng cột"
+msgid "German - de"
+msgstr "Tiếng Đức - de"
-#: 05340405.xhp
+#: 05020301.xhp
msgctxt ""
-"05340405.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"05020301.xhp\n"
+"par_id1002200811563518\n"
"help.text"
-msgid "Column format"
-msgstr "Định dạng cột"
+msgid "J"
+msgstr ""
-#: 05340405.xhp
+#: 05020301.xhp
msgctxt ""
-"05340405.xhp\n"
-"par_id3147543\n"
-"2\n"
+"05020301.xhp\n"
+"par_id1002200811563735\n"
"help.text"
-msgid "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Formats the selected column(s).</ahelp></variable>"
-msgstr "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Định dạng những cột đã chọn.</ahelp></variable>"
+msgid "T"
+msgstr ""
-#: 05340405.xhp
+#: 05020301.xhp
msgctxt ""
-"05340405.xhp\n"
-"hd_id3150620\n"
-"3\n"
+"05020301.xhp\n"
+"par_id1002200811563823\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng\">Định dạng</link>"
+msgid "Netherlands - nl"
+msgstr "Hà Lan - nl"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id1002200811563852\n"
"help.text"
-msgid "Find & Replace"
-msgstr "Tìm và thay thế"
+msgid "J"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154044\n"
-"1\n"
+"05020301.xhp\n"
+"par_id1002200811563827\n"
"help.text"
-msgid "<variable id=\"02100000\"><link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link></variable>"
-msgstr "<variable id=\"02100000\"><link href=\"text/shared/01/02100000.xhp\" name=\"Tìm và thay thế\">Tìm và thay thế</link></variable>"
+msgid "U"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3149893\n"
-"2\n"
+"05020301.xhp\n"
+"par_id1002200811563916\n"
"help.text"
-msgid "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Searches for or replaces text or formats in the current document.</ahelp></variable>"
-msgstr "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Tìm kiếm và/hay thay thế văn bản hay định dạng trong tài liệu hiện tại.</ahelp></variable>"
+msgid "French - fr"
+msgstr "Tiếng Pháp - fr"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id00001\n"
+"05020301.xhp\n"
+"par_id1002200811563970\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the text to search in the current document. Press Enter to search the text.</ahelp>"
+msgid "A"
msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id00002\n"
+"05020301.xhp\n"
+"par_id1002200811563980\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in downward direction.</ahelp>"
+msgid "J"
msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id00003\n"
+"05020301.xhp\n"
+"par_id1002200811564065\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in upward direction.</ahelp>"
+msgid "O"
msgstr ""
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"hd_id3152425\n"
-"3\n"
-"help.text"
-msgid "Search For"
-msgstr "Tìm kiếm"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id3155805\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_SEARCH:LB_SEARCH\">Enter the text that you want to search for, or select a previous search from the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_SEARCH:LB_SEARCH\">Nhập chuỗi cần tìm, hoặc chọn một chuỗi tìm kiếm vừa dùng trong danh sách.</ahelp>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id3153683\n"
-"189\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:MULTILINEEDIT:RID_SVXDLG_SEARCH:ED_SEARCH_FORMATS\">Search options are listed in the <emph>Options </emph>area of the dialog</ahelp>"
-msgstr "<ahelp hid=\"SVX:MULTILINEEDIT:RID_SVXDLG_SEARCH:ED_SEARCH_FORMATS\">Các tùy chọn về chức năng tìm kiếm được hiển thị trong vùng <emph>Tùy chọn </emph> của hộp thoại.</ahelp>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"hd_id3152551\n"
-"5\n"
-"help.text"
-msgid "Replace With"
-msgstr "Thay thế bằng"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id3156426\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_SEARCH:LB_REPLACE\">Enter the replacement text, or select a recent replacement text or style from the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_SEARCH:LB_REPLACE\">Nhập chuỗi thay thế, hoặc chọn một chuỗi thay thế vừa dùng trong danh sách.</ahelp>"
-
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150506\n"
-"190\n"
+"05020301.xhp\n"
+"par_id100220081156407\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MULTILINEEDIT:RID_SVXDLG_SEARCH:ED_REPLACE_FORMATS\">Replacement options are listed in the <emph>Options </emph>area of the dialog.</ahelp>"
-msgstr "<ahelp hid=\"SVX:MULTILINEEDIT:RID_SVXDLG_SEARCH:ED_REPLACE_FORMATS\">Các tùy chọn về chức năng thay thế được hiển thị trong vùng <emph>Tùy chọn </emph> của hộp thoại.</ahelp>"
+msgid "Italian - it"
+msgstr "Tiếng Y - it"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3166410\n"
-"8\n"
+"05020301.xhp\n"
+"par_id100220081156403\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "A"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3148538\n"
-"10\n"
+"05020301.xhp\n"
+"par_id1002200811564042\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Toàn ô</caseinline><defaultinline>Chỉ nguyên từ</defaultinline></switchinline>"
+msgid "G"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3149579\n"
-"11\n"
+"05020301.xhp\n"
+"par_id100220081156412\n"
"help.text"
-msgid "<variable id=\"ganze\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_CELLS\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
-msgstr "<variable id=\"ganze\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_CELLS\">Tìm kiếm nguyên từ hay ô hoàn toàn mà trùng với chuỗi tìm kiếm.</ahelp></variable>"
+msgid "O"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3156192\n"
-"14\n"
+"05020301.xhp\n"
+"par_id1002200811564119\n"
"help.text"
-msgid "Backwards"
-msgstr "Ngược"
+msgid "X"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150771\n"
-"15\n"
+"05020301.xhp\n"
+"par_id1002200811564197\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_BACKWARDS\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_BACKWARDS\">Tiến trình tìm kiếm bắt đầu ở vị trí con trỏ hiện tại, sau đó đi ngược, về đầu của tập tin.</ahelp>"
+msgid "Portuguese - pt"
+msgstr "Tiếng Bồ Đào Nha - pt"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3144439\n"
-"16\n"
+"05020301.xhp\n"
+"par_id1002200811564272\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Regular expressions</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Biểu thức chính quy</defaultinline></switchinline>"
+msgid "A"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3155342\n"
-"156\n"
+"05020301.xhp\n"
+"par_id100220081156423\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Allows you to use wildcards in your search.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Cho phép bạn dùng ký tự đại diện (v.d. *, ?) trong chuỗi tìm kiếm.</defaultinline></switchinline>"
+msgid "O"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3727225\n"
+"05020301.xhp\n"
+"par_id1002200811564218\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Allows you to use wildcards in your search.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cho phép bạn dùng ký tự đại diện (v.d. *, ?) trong chuỗi tìm kiếm.</ahelp>"
+msgid "Spanish - es"
+msgstr "Tiếng Tây Ba Nha - es"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154924\n"
-"45\n"
+"05020301.xhp\n"
+"par_id1002200811564390\n"
"help.text"
-msgid "Match case"
-msgstr "So sánh chữ hoa/thường"
+msgid "A"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"bm_id3154760\n"
+"05020301.xhp\n"
+"par_id1002200811564319\n"
"help.text"
-msgid "<bookmark_value>case sensitivity;searching</bookmark_value>"
-msgstr "<bookmark_value>phân biệt chữ hoa/thường;tìm kiếm</bookmark_value>"
+msgid "O"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3154760\n"
-"46\n"
+"05020301.xhp\n"
+"par_id100220081156433\n"
"help.text"
-msgid "<variable id=\"exakt\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_MATCH_CASE\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
-msgstr "<variable id=\"exakt\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_MATCH_CASE\">Phân biệt các chữ hoa và chữ thường.</ahelp></variable>"
+msgid "Danish - da"
+msgstr "Tiếng Đan Mạch - da"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"bm_id3147264\n"
+"05020301.xhp\n"
+"par_id100220081156444\n"
"help.text"
-msgid "<bookmark_value>finding; selections</bookmark_value>"
-msgstr "<bookmark_value>tìm; vùng chọn</bookmark_value>"
+msgid "T"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3147264\n"
-"47\n"
+"05020301.xhp\n"
+"par_id1002200811564448\n"
"help.text"
-msgid "Current selection only"
-msgstr "Chỉ vùng chọn hiện thời"
+msgid "Norwegian - no, nb, nn"
+msgstr "Tiếng Nauy - no, nb, nn"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150866\n"
-"48\n"
+"05020301.xhp\n"
+"par_id1002200811564549\n"
"help.text"
-msgid "<ahelp hid=\".\">Searches only the selected text or cells.</ahelp>"
-msgstr "<ahelp hid=\".\">Tìm kiếm chỉ trong đoạn văn hoặc các ô đã chọn.</ahelp>"
+msgid "T"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id8876918\n"
+"05020301.xhp\n"
+"par_id1002200811564565\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Search for list. To specify a replacement style, select a style from the Replace with list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm đoạn văn được định dạng bằng kiểu dáng bạn ghi rõ. Đánh dấu trong hộp chọn này, sau đó chọn một kiểu dáng trong danh sách <emph>Tìm kiếm</emph>. Để ghi rõ một kiểu dáng thay thế, chọn một kiểu dáng trong danh sách <emph>Thay thế bằng</emph>.</ahelp>"
+msgid "Swedish - sv"
+msgstr "Tiếng Thụy Điển - sv"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153524\n"
-"49\n"
+"05020301.xhp\n"
+"par_id1002200811564556\n"
"help.text"
-msgid "Search for Styles / Including Styles"
-msgstr "Tìm kiểu dáng / Kèm thêm kiểu dáng"
+msgid "T"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3155103\n"
-"50\n"
+"05020301.xhp\n"
+"par_id1002200811564637\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_LAYOUTS\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Search for </emph>list. To specify a replacement style, select a style from the <emph>Replace with</emph> list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_LAYOUTS\">Tìm kiếm văn bản theo định dạng bạn ghi rõ. Bật tùy chọn này, sau đó chọn một kiểu dáng trong danh sách <emph>Tìm kiếm</emph>. Để ghi rõ kiểu dáng thay thế, chọn một kiểu dáng trong danh sách <emph>Thay thế bằng</emph> list.</ahelp>"
+msgid "Finnish - fi"
+msgstr "Tiếng Phần Lan - fi"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_idN109CC\n"
+"05020301.xhp\n"
+"par_id1002200811564627\n"
"help.text"
-msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
-msgstr "Một khi bạn chọn các thuộc tính thích hợp với tiến trình tìm kiếm, hộp <emph>Tìm kiếm Kiểu dáng</emph> trong vùng <emph>Tùy chọn</emph> của hộp thoại <emph>Tìm và Thay thế</emph> của %PRODUCTNAME Writer trở thành <emph>Kèm thêm kiểu dáng</emph>."
+msgid "V"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_idN109DF\n"
+"05020301.xhp\n"
+"par_id1002200811564643\n"
"help.text"
-msgid "If you want to search for text in which attributes were set by using direct formatting and styles, select the <emph>Including Styles</emph> box."
-msgstr "Muốn tìm kiếm văn bản có các thuộc tính được đặt bằng định dạng trực tiếp và kiểu dáng thì bật tùy chọn <emph>Kèm thêm kiểu dáng</emph>."
+msgid "K"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id0302200901464169\n"
+"05020301.xhp\n"
+"par_id1002200811564763\n"
"help.text"
-msgid "Comments"
-msgstr "Chi chú"
+msgid "P"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id0302200901464150\n"
+"05020301.xhp\n"
+"par_id1002200811564715\n"
"help.text"
-msgid "<ahelp hid=\".\">In Writer, you can select to include the comment texts in your searches.</ahelp>"
-msgstr "<ahelp hid=\".\">Trong Writer, bạn có thể lựa chọn để bao gồm ghi chú trong những tìm kiếm của bạn.</ahelp>"
+msgid "T"
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3149167\n"
-"204\n"
+"05020301.xhp\n"
+"hd_id3149929\n"
+"227\n"
"help.text"
-msgid "<variable id=\"halbnormaltitel\">Match character width (only if Asian languages are enabled)</variable>"
-msgstr "<variable id=\"halbnormaltitel\">Khớp bề rộng ký tự (chỉ nếu cũng hiệu lực các ngôn ngữ Châu Á).</variable>"
+msgid "Entering Dates"
+msgstr "Nhập ngày tháng"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145744\n"
-"208\n"
+"05020301.xhp\n"
+"par_id3148397\n"
+"228\n"
"help.text"
-msgid "<variable id=\"halbnormaltext\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_JAP_MATCH_FULL_HALF_WIDTH\">Distinguishes between half-width and full-width character forms.</ahelp></variable>"
-msgstr "<variable id=\"halbnormaltext\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_JAP_MATCH_FULL_HALF_WIDTH\">Phân biệt dạng ký tự kiểu nửa rộng và rộng đầy.</ahelp></variable>"
+msgid "To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002."
+msgstr "Để nhập vào ô bảng một ngày tháng, dùng định dạng hệ thống lịch do Giáo hoàng Gregory XIII (1502 - 1585). Chẳng hạn, dùng miền địa phương tiếng Anh, nhập « 1/2/2002 » để ghi rõ ngày 2, Tháng Một, năm 2002."
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153178\n"
-"205\n"
+"05020301.xhp\n"
+"par_id3153274\n"
+"137\n"
"help.text"
-msgid "<variable id=\"aehnlichtitel\">Sounds like (Japanese) (only if Asian languages are enabled)</variable>"
-msgstr "<variable id=\"aehnlichtitel\">Nghe như (tiếng Nhật) (chỉ nếu cũng hiệu lực các ngôn ngữ Châu Á).</variable>"
+msgid "All date formats are dependent on the locale that is set in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type=\"productname\">%PRODUCTNAME</item> uses the Gregorian Calendar."
+msgstr ""
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145421\n"
-"206\n"
+"05020301.xhp\n"
+"par_id3153795\n"
+"216\n"
"help.text"
-msgid "<variable id=\"aehnlichtext\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_JAP_SOUNDS_LIKE\">Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the <emph>...</emph> button to specify the search options. </ahelp></variable>"
-msgstr "<variable id=\"aehnlichtext\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_JAP_SOUNDS_LIKE\">Cho phép bạn ghi rõ các tùy chọn tìm kiếm về kiểu ghi tương tự được dùng trong văn bản tiếng Nhật. Bật tùy chọn này, sau đó nhấn vào nút <emph>...</emph> để ghi rõ các tùy chọn tìm kiếm.</ahelp></variable>"
+msgid "To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY."
+msgstr "Để ghi rõ một định dạng lịch không phụ thuộc vào miền địa phương, thêm một cờ bổ trợ vào phía trước định dạng ngày tháng. Chẳng hạn, để hiển thị ngày tháng tùy theo hệ thống lịch Do Thái khi đặt miền địa phương không phải Do Thái, nhập « [~jewish]DD/MM/YYYY »."
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3149765\n"
-"209\n"
+"05020301.xhp\n"
+"par_id3145764\n"
+"217\n"
"help.text"
-msgid "<variable id=\"aehnlichbutton\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_JAP_OPTIONS\" visibility=\"hidden\">Sets the search options for similar notation used in Japanese text.</ahelp></variable>"
-msgstr "<variable id=\"aehnlichbutton\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_JAP_OPTIONS\" visibility=\"hidden\">Đặt các tùy chọn tìm kiếm về kiểu ghi tương tự được dùng trong văn bản tiếng Nhật.</ahelp></variable>"
+msgid "Modifier"
+msgstr "Cờ bổ trợ"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3148672\n"
-"212\n"
+"05020301.xhp\n"
+"par_id3152967\n"
+"218\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01150200.xhp\" name=\"Searching in Japanese\">Searching in Japanese</link>"
-msgstr "<link href=\"text/shared/optionen/01150200.xhp\" name=\"Tìm bằng tiếng Nhật\">Tìm bằng tiếng Nhật</link>"
+msgid "Calendar"
+msgstr "Lịch"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154299\n"
-"66\n"
+"05020301.xhp\n"
+"par_id3148390\n"
+"219\n"
"help.text"
-msgid "Find All"
-msgstr "Tìm tất cả"
+msgid "[~buddhist]"
+msgstr "[~buddhist]"
-#: 02100000.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145785\n"
-"67\n"
+"05020301.xhp\n"
+"par_id3153781\n"
+"220\n"
"help.text"
-msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)."
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL\">Tìm và lựa chọn mọi lần gặp đoạn văn hay định dạng bạn tìm kiếm trong tài liệu (chỉ trong tài liệu kiểu Writer và Calc).</ahelp>"
+msgid "Thai Buddhist Calendar"
+msgstr "Lịch đạo Phật Thái"
-#: 02100000.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id31454242785\n"
+"05020301.xhp\n"
+"par_id3157969\n"
+"133\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents).</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL\">Tìm và lựa chọn mọi lần gặp đoạn văn hay định dạng bạn tìm kiếm trong tài liệu (chỉ trong tài liệu kiểu Writer và Calc).</ahelp>"
+msgid "[~gengou]"
+msgstr "[~gengou]"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3163821\n"
-"68\n"
+"05020301.xhp\n"
+"par_id3154656\n"
+"134\n"
"help.text"
-msgid "Find"
-msgstr "Tìm"
+msgid "Japanese Gengou Calendar"
+msgstr "Lịch Gengou Nhật"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3147436\n"
-"69\n"
+"05020301.xhp\n"
+"par_id3150086\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH\">Finds and selects the next occurrence of the text or format that you searching for in the document.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH\">Tìm và lựa chọn lần kế tiếp gặp đoạn văn hay định dạng bạn tìm kiếm trong tài liệu.</ahelp>"
+msgid "[~gregorian]"
+msgstr "[~gregorian]"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153742\n"
-"70\n"
+"05020301.xhp\n"
+"par_id3146070\n"
+"132\n"
"help.text"
-msgid "Replace All"
-msgstr "Thay thế tất cả"
+msgid "Gregorian Calendar"
+msgstr "Lịch Gregory"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145660\n"
-"71\n"
+"05020301.xhp\n"
+"par_id3146808\n"
+"221\n"
"help.text"
-msgid "<ahelp hid=\".\">Replaces all of the occurrences of the text or format that you want to replace.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Repeat this command until all replacements on your slide have been made.</caseinline></switchinline>"
-msgstr "<ahelp hid=\".\">Thay thế mọi lần gặp đoạn văn hay định dạng bạn muốn thay thế.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Lặp lại lệnh này đến khi thay thế tất cả các đoạn/đồ trên ảnh chiếu của bạn. </caseinline></switchinline>"
+msgid "[~hanja] or [~hanja_yoil]"
+msgstr "[~hanja] hay [~hanja_yoil]"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3149065\n"
-"72\n"
+"05020301.xhp\n"
+"par_id3149207\n"
+"136\n"
"help.text"
-msgid "Replace"
-msgstr "Thay thế"
+msgid "Korean Calendar"
+msgstr "Lịch Hàn"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3151170\n"
-"73\n"
+"05020301.xhp\n"
+"par_id3150304\n"
+"222\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_REPLACE\">Replaces the selected text or format that you searched for, and then searches for the next occurrence.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_REPLACE\">Thay thế đoạn hay định dạng bạn đã tìm kiếm, sau đó tìm kiếm lần gặp kế tiếp.</ahelp>"
+msgid "[~hijri]"
+msgstr "[~hijri]"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3147348\n"
-"192\n"
+"05020301.xhp\n"
+"par_id3149238\n"
+"223\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attribute</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Thuộc tính\">Thuộc tính</link></caseinline></switchinline>"
+msgid "Arabic Islamic Calendar, currently supported for the following locales: ar_EG, ar_LB, ar_SA, and ar_TN"
+msgstr "Lịch đạo Hồi A Rập, hiện thời hỗ trợ cho những miền địa phương này: ar_EG, ar_LB, ar_SA, ar_TN"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3155854\n"
-"193\n"
+"05020301.xhp\n"
+"par_id3154903\n"
+"224\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Định dạng\">Định dạng</link></caseinline></switchinline>"
+msgid "[~jewish]"
+msgstr "[~jewish]"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id8641315\n"
+"05020301.xhp\n"
+"par_id3151288\n"
+"225\n"
"help.text"
-msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics."
-msgstr "Tìm các tính năng định dạng văn bản dứt khoát, v.d. kiểu phông, hiệu ứng phông và đặc tính luồng văn bản."
+msgid "Jewish Calendar"
+msgstr "Lịch Do Thái"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154188\n"
+"05020301.xhp\n"
+"par_id3166442\n"
"135\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Không định dạng</caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id3159155\n"
-"136\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click in the <emph>Search for </emph>or the <emph>Replace with </emph>box, and then click this button to remove the search criteria based on formats.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nhấn vào hộp <emph>Tìm kiếm</emph> hay <emph>Thay thế bằng</emph>, sau đó nhấn vào cái nút này để gỡ bỏ các tiêu chuẩn tìm kiếm phụ thuộc vào định dạng.</caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id1334269\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click in the Search for or the Replace with box, and then click this button to remove the search criteria based on formats.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhấn vào hộp « Tìm kiếm » hay « Thay thế bằng », sau đó nhấn vào cái nút này để gỡ bỏ các tiêu chuẩn tìm kiếm dựa vào định dạng.</ahelp>"
+msgid "[~ROC]"
+msgstr "[~ROC]"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150337\n"
-"137\n"
+"05020301.xhp\n"
+"par_id3145587\n"
+"226\n"
"help.text"
-msgid "The search criteria for formatting attributes are displayed under the <emph>Search for </emph>or the <emph>Replace with </emph>box."
-msgstr "Tiêu chuẩn tìm kiếm để định dạng thuộc tính được hiển thị bên dưới hộp <emph>Tìm kiếm</emph> hay <emph>Thay thế bằng</emph>."
+msgid "Republic Of China Calendar"
+msgstr "Lịch Trung Quốc"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150113\n"
-"139\n"
+"05020301.xhp\n"
+"par_id3152419\n"
+"140\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows more or fewer search options. Click this button again to hide the extended search options.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm hoặc bớt việc hiển thị các tùy chọn tìm kiếm. Nhấn nút này một lần nữa để giấu đi những tùy chọn tìm kiếm mở rộng.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nếu bạn tính toán với một hay nhiều ô bảng có định dạng ngày tháng, kết quả được định dạng tùy theo những sự ánh xạ này: </caseinline></switchinline>"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154944\n"
-"140\n"
+"05020301.xhp\n"
+"par_id3154194\n"
+"141\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm trong</caseinline></switchinline>"
+msgid "Initial Format"
+msgstr "Định dạng đầu tiên"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3146925\n"
+"05020301.xhp\n"
+"par_id3149787\n"
"142\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Công thức</caseinline></switchinline>"
+msgid "Result Format"
+msgstr "Định dạng kết quả"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id6719870\n"
+"05020301.xhp\n"
+"par_id3152993\n"
+"143\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in formulas and in fixed (not calculated) values. For example, you could look for formulas that contain 'SUM'.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm các ký tự bạn ghi rõ, tìm kiếm qua các giá trị và kết quả của công thức. Ví dụ, bạn có thể tìm công thức chứa toán tử « SUM » (tổng).</ahelp>"
+msgid "Date + Date"
+msgstr "Ngày + Ngày"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3149400\n"
+"05020301.xhp\n"
+"par_id3150292\n"
"144\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Values</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Giá trị</caseinline></switchinline>"
+msgid "Number (Days)"
+msgstr "Số (ngày)"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3146969\n"
+"05020301.xhp\n"
+"par_id3150460\n"
"145\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in values and in the results of formulas.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm các ký tự bạn ghi rõ trong các giá trị trong kết quả của công thức. </caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id6064943\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in values and in the results of formulas.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm các ký tự bạn ghi rõ, tìm kiếm qua các giá trị và kết quả của công thức.</ahelp>"
+msgid "Date + Number"
+msgstr "Ngày + Số"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3145650\n"
+"05020301.xhp\n"
+"par_id3154371\n"
"146\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chú thích</caseinline></switchinline>"
+msgid "Date"
+msgstr "Ngày"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3153947\n"
+"05020301.xhp\n"
+"par_id3145082\n"
"147\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in the comments that are attached to the cells.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm các ký tự bạn chỉ định trong các ghi chú đính kèm các ô. </caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id9799798\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in the comments that are attached to the cells.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm các ký tự bạn chỉ định trong các ghi chú đính kèm các ô.</ahelp>"
+msgid "Date + Time"
+msgstr "Ngày + Giờ"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153004\n"
+"05020301.xhp\n"
+"par_id3156290\n"
"148\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search direction</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hướng tìm</caseinline></switchinline>"
+msgid "Date&Time"
+msgstr "Ngày và Giờ"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3156332\n"
-"207\n"
+"05020301.xhp\n"
+"par_id3152456\n"
+"149\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Determines the order for searching the cells.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Xác định thứ tự cần theo khi tìm kiếm qua các ô bảng. </caseinline></switchinline>"
+msgid "Date + Date&Time"
+msgstr "Ngày + Ngày và Giờ"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3155064\n"
+"05020301.xhp\n"
+"par_id3156169\n"
"150\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Rows</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Theo hàng</caseinline></switchinline>"
+msgid "Number"
+msgstr "Số"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id743430\n"
+"05020301.xhp\n"
+"par_id3154527\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from left to right across the rows.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm từ trái sang phải, qua các hàng.</ahelp>"
+msgid "Time + Time"
+msgstr "Giờ + Giờ"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3156277\n"
+"05020301.xhp\n"
+"par_id3159625\n"
"152\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Columns</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Theo cột</caseinline></switchinline>"
+msgid "Time"
+msgstr "Giờ"
-#: 02100000.xhp
+#: 05020301.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145207\n"
+"05020301.xhp\n"
+"par_id3146802\n"
"153\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm từ trên xuống dưới qua các cột.</caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id3470564\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from top to bottom through the columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm từ trên xuống dưới qua các cột.</ahelp>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"hd_id3153764\n"
-"194\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Extras</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bổ sung</caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"bm_id3152960\n"
-"help.text"
-msgid "<bookmark_value>searching; all sheets</bookmark_value> <bookmark_value>finding; in all sheets</bookmark_value> <bookmark_value>sheets; searching all</bookmark_value>"
-msgstr "<bookmark_value>tìm kiếm;qua mọi bảng</bookmark_value><bookmark_value>tìm; trong mọi bảng</bookmark_value><bookmark_value>bảng;tìm kiếm tất cả</bookmark_value>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"hd_id3152960\n"
-"196\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in all sheets</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm trong mọi bảng</caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id3145619\n"
-"197\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tìm kiếm qua tất cả các trang tính của tập tin bảng tính hiện tại. </caseinline></switchinline>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id4089175\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches through all of the sheets in the current spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tìm kiếm qua tất cả các trang tính trong tập tin bảng tính hiện tại.</ahelp>"
-
-#: 02100000.xhp
-msgctxt ""
-"02100000.xhp\n"
-"par_id3151101\n"
-"188\n"
-"help.text"
-msgid "After you close the <emph>Find & Replace</emph> dialog, you can still search using the last search criteria that you entered, by pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
-msgstr "Một khi đóng hộp thoại <emph>Tìm và Thay thế</emph>, bạn vẫn còn có thể tìm kiếm dựa vào tiêu chuẩn tìm kiếm cuối cùng bạn đã đặt, bằng cách bấm tổ hợp phím Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Textures"
-msgstr "Mẫu dát"
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"hd_id3150014\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05350500.xhp\" name=\"Textures\">Textures</link>"
-msgstr "<link href=\"text/shared/01/05350500.xhp\" name=\"Mẫu dát\">Mẫu dát</link>"
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"par_id3147000\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE\">Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface textures to the selected object. To quickly apply a surface texture, open the <emph>Gallery</emph>, hold down Shift+Ctrl (Mac: Shift+Command), and then drag an image onto the selected 3D object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE\">Đặt các thuộc tính về mẫu dát bề mặt cho đối tượng 3D đã chọn. Chỉ dùng được tính năng này khi sử dụng mẫu dát cho đối tượng đã chọn. Để sử dụng nhanh một mẫu dát, mở <emph>Bộ sưu tập</emph>, ấn giữ tổ hợp phím Shift+Ctrl (Mac: Shift+Command), sau đó kéo một hình ảnh vào đối tượng 3D đã chọn.</ahelp>"
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"hd_id3145212\n"
-"4\n"
-"help.text"
-msgid "Textures"
-msgstr "Mẫu dát"
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"par_id3159233\n"
-"5\n"
-"help.text"
-msgid "Sets the texture properties."
-msgstr "Đặt các thuộc tính về mẫu dát."
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"hd_id3156410\n"
-"6\n"
-"help.text"
-msgid "Type"
-msgstr "Kiểu"
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"par_id3145345\n"
-"7\n"
-"help.text"
-msgid "Set the color properties of the texture."
-msgstr "Đặt các thuộc tính về màu của mẫu dát."
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"hd_id3150775\n"
-"8\n"
-"help.text"
-msgid "Black & White"
-msgstr "Đen Trắng"
-
-#: 05350500.xhp
-msgctxt ""
-"05350500.xhp\n"
-"par_id3147242\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE\">Converts the texture to black and white.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE\">Chuyển đổi hoạ tiết sang màu đen trắng.</ahelp>"
+msgid "Time + Number"
+msgstr "Giờ + Số"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3146773\n"
+"05020301.xhp\n"
+"par_id3146770\n"
+"154\n"
"help.text"
-msgid "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150084\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150084\">Biểu tượng</alt></image>"
+msgid "Time"
+msgstr "Giờ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156156\n"
-"10\n"
+"05020301.xhp\n"
+"par_id3155500\n"
+"155\n"
"help.text"
-msgid "Black & White"
-msgstr "Đen Trắng"
+msgid "Time + Date&Time"
+msgstr "Giờ + Ngày và Giờ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3150670\n"
-"11\n"
+"05020301.xhp\n"
+"par_id3155128\n"
+"156\n"
"help.text"
-msgid "Color"
-msgstr "Màu"
+msgid "Date&Time"
+msgstr "Ngày và Giờ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145119\n"
-"12\n"
+"05020301.xhp\n"
+"par_id3152904\n"
+"157\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_COLOR\">Converts the texture to color.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_COLOR\">Chuyển đổi hoạ tiết sang màu sắc (như trái ngược với màu đen trắng).</ahelp>"
+msgid "Date&Time + Date&Time"
+msgstr "Ngày và Giờ + Ngày và Giờ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153126\n"
+"05020301.xhp\n"
+"par_id3159143\n"
+"158\n"
"help.text"
-msgid "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155388\">Biểu tượng</alt></image>"
+msgid "Time"
+msgstr "Giờ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145316\n"
-"13\n"
+"05020301.xhp\n"
+"par_id3148909\n"
+"159\n"
"help.text"
-msgid "Color"
-msgstr "Màu"
+msgid "Date&Time + Number"
+msgstr "Ngày và Giờ + Số"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3155342\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3154806\n"
+"160\n"
"help.text"
-msgid "Mode"
-msgstr "Chế độ"
+msgid "Date&Time"
+msgstr "Ngày và Giờ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153827\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3151269\n"
+"161\n"
"help.text"
-msgid "Show or hide shading."
-msgstr "Hiển thị hay ẩn bóng đổ."
+msgid "Number + Number"
+msgstr "Số + Số"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3149191\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3154951\n"
+"162\n"
"help.text"
-msgid "Only Texture"
-msgstr "Chỉ có hoà tiết"
+msgid "Number"
+msgstr "Số"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148564\n"
-"17\n"
+"05020301.xhp\n"
+"par_id3149174\n"
+"163\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_REPLACE\">Applies the texture without shading.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_REPLACE\">Áp dụng hoạ tiết không đổ bóng.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">The Date&Time format displays the date and time that an entry was made to a cell with this format. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Định dạng « Ngày và Giờ » hiển thị ngày tháng và thời gian nhập gì vào ô bảng theo định dạng này. </caseinline></switchinline>"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3154280\n"
+"05020301.xhp\n"
+"par_id3143225\n"
+"164\n"
"help.text"
-msgid "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149045\">Biểu tượng</alt></image>"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item>, a date with the value \"0\" corresponds to Dec 30, 1899."
+msgstr "Trong <item type=\"productname\">%PRODUCTNAME</item>, ngày tháng có giá trị « 0 » tương ứng với ngày 30, Tháng Mười Hai, năm 1899."
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156435\n"
-"18\n"
+"05020301.xhp\n"
+"hd_id3155870\n"
+"61\n"
"help.text"
-msgid "Only Texture"
-msgstr "Chỉ có hoà tiết"
+msgid "Time Formats"
+msgstr "Định dạng Thời gian"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3150541\n"
-"19\n"
+"05020301.xhp\n"
+"par_id3150108\n"
+"62\n"
"help.text"
-msgid "Texture and Shading"
-msgstr "Hoà tiết và Đổ bóng"
+msgid "To display hours, minutes and seconds use the following number format codes."
+msgstr "Để hiển thị giờ, phút và giây, dùng những mã định dạng số này:"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3154938\n"
-"20\n"
+"05020301.xhp\n"
+"par_id3149158\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE\">Applies the texture with shading. To define the shading options for the texture, click the <emph>Shading</emph> button in this dialog.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE\">Áp dụng hoạ tiết đổ bóng. Để xác định các tùy chọn về đổ bóng cho hoạ tiết, nhấn vào nút <emph>Đổ bóng</emph> trong hộp thoại này.</ahelp>"
+msgid "Format"
+msgstr "Định dạng"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3150742\n"
+"05020301.xhp\n"
+"par_id3154341\n"
+"64\n"
"help.text"
-msgid "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152803\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152803\">Biểu tượng</alt></image>"
+msgid "Format Code"
+msgstr "Mã định dạng"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145419\n"
-"21\n"
+"05020301.xhp\n"
+"par_id3154557\n"
+"65\n"
"help.text"
-msgid "Texture and Shading"
-msgstr "Hoà tiết và Đổ bóng"
+msgid "Hours as 0-23"
+msgstr "Giờ không có số không đi trước (0-23)"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148672\n"
-"22\n"
+"05020301.xhp\n"
+"par_id3156348\n"
+"66\n"
"help.text"
-msgid "Projection X"
-msgstr "Hình chiếu X"
+msgid "h"
+msgstr ""
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148677\n"
-"23\n"
+"05020301.xhp\n"
+"par_id3143218\n"
+"67\n"
"help.text"
-msgid "Set the options for displaying the texture."
-msgstr "Đặt các tùy chọn về chức năng hiển thị hoạ tiết."
+msgid "Hours as 00-23"
+msgstr "Giờ có số không đi trước (00-23)"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148453\n"
-"24\n"
+"05020301.xhp\n"
+"par_id3155266\n"
+"68\n"
"help.text"
-msgid "Object-specific"
-msgstr "Đặc trưng cho đối tượng"
+msgid "hh"
+msgstr "hh"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3144432\n"
-"25\n"
+"05020301.xhp\n"
+"par_id3150139\n"
+"69\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X\">Tự động điều chỉnh hoạ tiết dựa vào hình và kích cỡ của đối tượng.</ahelp>"
+msgid "Minutes as 0-59"
+msgstr "Phút không có số không đi trước (0-59)"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3155103\n"
+"05020301.xhp\n"
+"par_id3149588\n"
+"70\n"
"help.text"
-msgid "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3148920\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3148920\">Biểu tượng</alt></image>"
+msgid "m"
+msgstr ""
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3155133\n"
-"26\n"
+"05020301.xhp\n"
+"par_id3150531\n"
+"71\n"
"help.text"
-msgid "Object-specific"
-msgstr "Đặc trưng cho đối tượng"
+msgid "Minutes as 00-59"
+msgstr "Phút có số không đi trước (00-59)"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3147300\n"
-"27\n"
+"05020301.xhp\n"
+"par_id3147409\n"
+"72\n"
"help.text"
-msgid "Parallel"
-msgstr "Song song"
+msgid "mm"
+msgstr "mm"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153768\n"
-"28\n"
+"05020301.xhp\n"
+"par_id3154854\n"
+"73\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X\">Applies the texture parallel to the horizontal axis.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X\">Áp dụng hoạ tiết song song với trục nằm ngang.</ahelp>"
+msgid "Seconds as 0-59"
+msgstr "Giây không có số không đi trước (0-59)"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148977\n"
+"05020301.xhp\n"
+"par_id3156173\n"
+"74\n"
"help.text"
-msgid "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147478\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147478\">Biểu tượng</alt></image>"
+msgid "s"
+msgstr ""
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147579\n"
-"29\n"
+"05020301.xhp\n"
+"par_id3149506\n"
+"75\n"
"help.text"
-msgid "Parallel"
-msgstr "Song song"
+msgid "Seconds as 00-59"
+msgstr "Giây có số không đi trước (00-59)"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148577\n"
-"30\n"
+"05020301.xhp\n"
+"par_id3157981\n"
+"76\n"
"help.text"
-msgid "Circular"
-msgstr "Hình tròn"
+msgid "ss"
+msgstr "ss"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3152418\n"
-"31\n"
+"05020301.xhp\n"
+"par_id3156039\n"
+"77\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X\">Wraps the horizontal axis of the texture pattern around a sphere.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X\">Cuộn trục nằm ngang của mẫu hoạ tiết vòng quanh hình cầu.</ahelp>"
+msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>hh:mm:ss.00</emph> to display the time as \"01:02:03.45\"."
+msgstr "Để hiển thị số giây dạng phân số, thêm vào mã định dạng số dấu tách thập phân. Chẳng hạn, nhập <emph>hh:mm:ss.00</emph> để hiển thị giờ dạng « 01:02:03.45 »."
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3154013\n"
+"05020301.xhp\n"
+"par_id3148649\n"
+"102\n"
"help.text"
-msgid "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153943\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153943\">Biểu tượng</alt></image>"
+msgid "If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS"
+msgstr "Nhập giờ dạng « 02:03.45 » hay « 01:02:03.45 » hay « 25:01:02 » thì gán những định dạng theo đây (nếu chưa xác định định dạng giờ khác): MM:SS.00 hay [HH]:MM:SS.00 hay [HH]:MM:SS"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156006\n"
-"32\n"
+"05020301.xhp\n"
+"hd_id3158404\n"
+"169\n"
"help.text"
-msgid "Circular"
-msgstr "Hình tròn"
+msgid "Displaying Numbers Using Native Characters"
+msgstr "Hiển thị con số dùng ký tự sở hữu"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3154129\n"
-"33\n"
+"05020301.xhp\n"
+"par_id3149998\n"
+"170\n"
"help.text"
-msgid "Projection Y"
-msgstr "Hình chiếu Y"
+msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
+msgstr "Để hiển thị con số dùng các ký tự của ngôn ngữ mẹ đẻ, thêm vào phía trước mã định dạng con số một cờ bổ trợ [NatNum1], [NatNum2], ... [NatNum11] ."
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3152878\n"
-"34\n"
+"05020301.xhp\n"
+"par_id3154600\n"
+"171\n"
"help.text"
-msgid "Click the respective buttons to define the texture for the object Y axis."
-msgstr "Bật các tùy chọn thích hợp để xác định hoạ tiết cho trục Y của đối tượng."
+msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
+msgstr "Cờ bổ trợ [NatNum1] lúc nào cũng dùng phép ánh xạ một đối một để chuyển đổi con số sang một chuỗi tương ứng với mã định dạng con số của miền địa phương tương ứng. Các cờ bổ trợ khác làm kết quả khác nhau đối với miền địa phương khác nhau. Miền địa phương (locale) có thể là ngôn ngữ hay miền riêng cho đó xác định mã định dạng, hoặc một cờ bổ trợ như « [$-yyy] » mà đi theo cờ bổ trợ con số sở hữu. Trong trường hợp này, « yyy » là MS-LCID thập lục cũng được dùng trong mã định dạng tiền tệ. Chẳng hạn, để hiển thị con số dùng ký tự Kanji ngắn tiếng Nhật dưới miền địa phương tiếng Anh, dùng mã định dạng con số này:"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3154693\n"
-"35\n"
+"05020301.xhp\n"
+"par_id3152546\n"
+"172\n"
"help.text"
-msgid "Object-specific"
-msgstr "Đặc trưng cho đối tượng"
+msgid "[NatNum1][$-411]0"
+msgstr "[NatNum1][$-411]0"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153095\n"
-"36\n"
+"05020301.xhp\n"
+"par_id3147269\n"
+"173\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y\">Tự động điều chỉnh hoạ tiết dựa vào hình và kích cỡ của đối tượng.</ahelp>"
+msgid "In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type=\"productname\">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type=\"productname\">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers."
+msgstr "Trong danh sách theo đây, hiển thị cờ bổ trợ [DBNumX] của MS™ Excel mà tương ứng với cờ bổ trợ [NatNum] của <item type=\"productname\">%PRODUCTNAME</item>. Bạn cũng có thể dùng cờ bổ trợ kiểu [DBNumX] thay cho kiểu [NatNum] cho miền địa phương của mình. Khi nào có thể, <item type=\"productname\">%PRODUCTNAME</item> ánh xạ nội bộ cờ bổ trợ [DBNumX] tới cờ bổ trợ [NatNumN]."
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153210\n"
+"05020301.xhp\n"
+"par_idN11234\n"
"help.text"
-msgid "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3153188\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3153188\">Biểu tượng</alt></image>"
+msgid "Displaying dates using [NatNum] modifiers can have a different effect than displaying other types of numbers. Such effects are indicated by 'CAL: '. For example, 'CAL: 1/4/4' indicates that the year is displayed using the [NatNum1] modifier, while the day and month are displayed using the [NatNum4] modifier. If 'CAL' is not specified, the date formats for that particular modifier are not supported."
+msgstr "Hiển thị ngày tháng dùng cờ bổ trợ [NatNum] có thể làm kết quả khác với hiển thị kiểu con số khác. Kết quả như vậy được « CAL » ngụ ý. Chẳng hạn « CAL: 1/4/4 » ngụ ý rằng năm được hiển thị dùng cờ bổ trợ [NatNum1], còn ngày và tháng được hiển thị dùng cờ bổ trợ [NatNum4]. Chưa ghi rõ « CAL » thì không hỗ trợ định dạng ngày tháng cho cờ bổ trợ đó."
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147435\n"
-"37\n"
+"05020301.xhp\n"
+"par_id3153111\n"
+"174\n"
"help.text"
-msgid "Object-specific"
-msgstr "Đặc trưng cho đối tượng"
+msgid "[NatNum1] Transliterations"
+msgstr "Chuyển chữ [NatNum1]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148775\n"
-"38\n"
+"05020301.xhp\n"
+"par_id3146895\n"
+"175\n"
"help.text"
-msgid "Parallel"
-msgstr "Song song"
+msgid "Chinese: Chinese lower case characters; CAL: 1/7/7 [DBNum1]"
+msgstr "Tiếng Trung: ký tự chữ thường tiếng Trung; CAL: 1/7/7 [DBNum1]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145730\n"
-"39\n"
+"05020301.xhp\n"
+"par_id3152536\n"
+"176\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_Y\">Applies the texture parallel to the vertical axis.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_Y\">Áp dụng hoạ tiết song song với trục thẳng đứng.</ahelp>"
+msgid "Japanese: short Kanji characters [DBNum1]; CAL: 1/4/4 [DBNum1]"
+msgstr "Tiếng Nhật: ký tự Kanji ngắn [DBNum1]; CAL: 1/4/4 [DBNum1]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147485\n"
+"05020301.xhp\n"
+"par_id3146125\n"
+"177\n"
"help.text"
-msgid "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151280\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151280\">Biểu tượng</alt></image>"
+msgid "Korean: Korean lower case characters [DBNum1]; CAL: 1/7/7 [DBNum1]"
+msgstr "Tiếng Hàn: ký tự chữ thường tiếng Hàn [DBNum1]; CAL: 1/7/7 [DBNum1]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156737\n"
-"40\n"
+"05020301.xhp\n"
+"par_id3149945\n"
+"178\n"
"help.text"
-msgid "Parallel"
-msgstr "Song song"
+msgid "Thai: Thai characters"
+msgstr "Tiếng Thái: ký tự tiếng Thái"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3149377\n"
-"41\n"
+"05020301.xhp\n"
+"par_id3153264\n"
+"179\n"
"help.text"
-msgid "Circular"
-msgstr "Hình tròn"
+msgid "Arabic: Indic characters"
+msgstr "TIếng A Rập: ký tự ngôn ngữ Ấn Độ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3159348\n"
-"42\n"
+"05020301.xhp\n"
+"par_id3148973\n"
+"180\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y\">Wraps the vertical axis of the texture pattern around a sphere.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y\">Cuộn trục thẳng đứng của mẫu hoạ tiết vòng quanh hình cầu.</ahelp>"
+msgid "Indic: Indic characters"
+msgstr "Ngôn ngữ Ấn Độ : ký tự ngôn ngữ Ấn Độ"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3157876\n"
+"05020301.xhp\n"
+"par_idN112A3\n"
"help.text"
-msgid "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Biểu tượng</alt></image>"
+msgid "Hebrew: Hebrew letters"
+msgstr "Tiếng Do Thái: chữ tiếng Do Thái"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3151173\n"
-"43\n"
+"05020301.xhp\n"
+"par_id3147520\n"
+"181\n"
"help.text"
-msgid "Circular"
-msgstr "Hình tròn"
+msgid "[NatNum2] Transliteration in"
+msgstr "Chuyển chữ [NatNum2] bằng"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3149581\n"
-"44\n"
+"05020301.xhp\n"
+"par_id3155383\n"
+"182\n"
"help.text"
-msgid "Filter"
-msgstr "Lọc"
+msgid "Chinese: Chinese upper case characters; CAL: 2/8/8 [DBNum2]"
+msgstr "Tiếng Trung: ký tự chữ hoa tiếng Trung; CAL: 2/8/8 [DBNum2]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148456\n"
-"45\n"
+"05020301.xhp\n"
+"par_id3153931\n"
+"183\n"
"help.text"
-msgid "Filters out some of the 'noise' that can occur when you apply a texture to a 3D object."
-msgstr "Lọc ra một phần « nhiễu » có thê xảy ra khi bạn áp dụng hoạ tiết cho đối tượng 3D."
+msgid "Japanese: traditional Kanji characters; CAL: 2/5/5 [DBNum2]"
+msgstr "Tiếng Nhật: ký tự Kanji truyền thống; CAL: 2/5/5 [DBNum2]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3151319\n"
-"46\n"
+"05020301.xhp\n"
+"par_id3155097\n"
+"184\n"
"help.text"
-msgid "Filtering On/Off"
-msgstr "Bật/tắt lọc"
+msgid "Korean: Korean upper case characters [DBNum2]; CAL: 2/8/8 [DBNum2]"
+msgstr "Tiếng Hàn: ký tự chữ hoa tiếng Hàn [DBNum2]; CAL: 2/8/8 [DBNum2]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3151038\n"
-"47\n"
+"05020301.xhp\n"
+"par_id3152976\n"
+"185\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_FILTER\">Blurs the texture slightly to remove unwanted speckles.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_FILTER\">Che mờ hoạ tiết một ít để gỡ bỏ lốm đốm không đẹp.</ahelp>"
+msgid "[NatNum3] Transliteration in"
+msgstr "Chuyển chữ [NatNum3] bằng"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145651\n"
+"05020301.xhp\n"
+"par_id3154353\n"
+"186\n"
"help.text"
-msgid "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Biểu tượng</alt></image>"
+msgid "Chinese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr "Tiếng Trung: chữ số A Rập rộng đầy đủ ; CAL: 3/3/3 [DBNum3]"
-#: 05350500.xhp
+#: 05020301.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3146900\n"
-"48\n"
+"05020301.xhp\n"
+"par_id3154669\n"
+"187\n"
"help.text"
-msgid "Filtering On/Off"
-msgstr "Bật/tắt lọc"
+msgid "Japanese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr "Tiếng Nhật: chữ số A Rập rộng đầy đủ ; CAL: 3/3/3 [DBNum3]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3150472\n"
+"188\n"
"help.text"
-msgid "Statistics"
-msgstr "Thống kê"
+msgid "Korean: fullwidth Arabic digits [DBNum3]; CAL: 3/3/3 [DBNum3]"
+msgstr "Tiếng Hàn: chữ số A Rập rộng đầy đủ [DBNum3]; CAL: 3/3/3 [DBNum3]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"bm_id1472518\n"
+"05020301.xhp\n"
+"par_id3157811\n"
+"189\n"
"help.text"
-msgid "<bookmark_value>number of pages</bookmark_value><bookmark_value>documents;number of pages/tables/sheets</bookmark_value><bookmark_value>number of tables</bookmark_value><bookmark_value>number of sheets</bookmark_value><bookmark_value>cells;number of</bookmark_value><bookmark_value>pictures;number of</bookmark_value><bookmark_value>OLE objects;number of</bookmark_value>"
-msgstr "<bookmark_value>số các trang</bookmark_value><bookmark_value>tài liệu;số các trang/bảng/bảng tính</bookmark_value><bookmark_value>số các bảng</bookmark_value><bookmark_value>số các bảng tính</bookmark_value><bookmark_value>ô bảng;số</bookmark_value><bookmark_value>ảnh;số</bookmark_value><bookmark_value>đối tượng OLE;số</bookmark_value>"
+msgid "[NatNum4] Transliteration in"
+msgstr "Chuyển chữ [NatNum4] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3149962\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3154592\n"
+"190\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"Statistics\">Statistics</link>"
-msgstr "<link href=\"text/shared/01/01100400.xhp\" name=\"Thống kê\">Thống kê</link>"
+msgid "Chinese: lower case text [DBNum1]"
+msgstr "Tiếng Trung: văn bản chữ thường [DBNum1]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156045\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3150350\n"
+"191\n"
"help.text"
-msgid "<ahelp hid=\"SC_TABPAGE_RID_SCPAGE_STAT\">Displays statistics for the current file.</ahelp>"
-msgstr "<ahelp hid=\"SC_TABPAGE_RID_SCPAGE_STAT\">Hiển thị thống kê về tập tin hiện tại.</ahelp>"
+msgid "Japanese: modern long Kanji text [DBNum2]"
+msgstr "Tiếng Nhật: văn bản chữ Kanji dài hiện đại [DBNum2]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156324\n"
-"36\n"
+"05020301.xhp\n"
+"par_id3150930\n"
+"192\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Một số giá trị thống kê cũng có thể được dùng làm <link href=\"text/swriter/02/14020000.xhp\" name=\"biến trong công thức\">biến trong công thức</link>. </caseinline></switchinline>"
+msgid "Korean: formal lower case text"
+msgstr "Tiếng Hàn: văn bản chữ thường hình thức"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153255\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3153546\n"
+"193\n"
"help.text"
-msgid "Number of Pages:"
-msgstr "Tổng trang:"
+msgid "[NatNum5] Transliteration in"
+msgstr "Chuyển chữ [NatNum5] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3154230\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3155612\n"
+"194\n"
"help.text"
-msgid "Number of pages in the file."
-msgstr "Tổng số trang trong tập tin."
+msgid "Chinese: Chinese upper case text [DBNum2]"
+msgstr "Tiếng Trung: văn bản chữ hoa [DBNum2]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3156027\n"
-"5\n"
+"05020301.xhp\n"
+"par_id3155909\n"
+"195\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng bảng: </caseinline><caseinline select=\"CALC\">Tổng bảng tính: </caseinline></switchinline>"
+msgid "Japanese: traditional long Kanji text [DBNum3]"
+msgstr "Tiếng Nhật: văn bản chữ Kanji dài truyền thống [DBNum3]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3153527\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3151304\n"
+"196\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file. </caseinline><caseinline select=\"CALC\">Number of sheets in the file. </caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các bảng trong tập tin. </caseinline><caseinline select=\"CALC\">Số các bảng tính trong tập tin. </caseinline></switchinline> Thống kê này không bao gồm bảng được chèn như đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>."
+msgid "Korean: formal upper case text"
+msgstr "Tiếng Hàn: văn bản chữ hoa hình thức"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153311\n"
-"30\n"
+"05020301.xhp\n"
+"par_id3155075\n"
+"197\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of Cells: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tổng ô : </caseinline></switchinline>"
+msgid "[NatNum6] Transliteration in"
+msgstr "Chuyển chữ [NatNum6] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156114\n"
-"31\n"
+"05020301.xhp\n"
+"par_id3150214\n"
+"198\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Số các ô bảng có nội dung trong tập tin. </caseinline></switchinline>"
+msgid "Chinese: fullwidth text [DBNum3]"
+msgstr "Tiếng Trung: văn bản chữ rộng đầy đủ [DBNum3]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3147210\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3154114\n"
+"199\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Graphics: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng đồ họa: </caseinline></switchinline>"
+msgid "Japanese: fullwidth text"
+msgstr "Tiếng Nhật: văn bản chữ rộng đầy đủ"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3166411\n"
-"8\n"
+"05020301.xhp\n"
+"par_id3155344\n"
+"200\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of graphics in the file. This statistic does not include graphics that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các ảnh trong tập tin. Thống kê này không bao gồm bảng được chèn như đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>. </caseinline></switchinline>"
+msgid "Korean: fullwidth text"
+msgstr "Tiếng Hàn: văn bản chữ rộng đầy đủ"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3147618\n"
-"9\n"
+"05020301.xhp\n"
+"par_id3155538\n"
+"201\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of OLE Objects: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng đối tượng OLE: </caseinline></switchinline>"
+msgid "[NatNum7] Transliteration in"
+msgstr "Chuyển chữ [NatNum7] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3149820\n"
-"10\n"
+"05020301.xhp\n"
+"par_id3145123\n"
+"202\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các đối tượng <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> trong tập tin, cũng tính các bảng và đồ họa được chèn dạng đối tượng OLE. </caseinline></switchinline>"
+msgid "Japanese: modern short Kanji text"
+msgstr "Tiếng Nhật: văn bản chữ Kanji ngắn hiện đại"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153665\n"
-"11\n"
+"05020301.xhp\n"
+"par_id3149424\n"
+"203\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Paragraphs: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng đoạn văn: </caseinline></switchinline>"
+msgid "Korean: informal lower case text"
+msgstr "Tiếng Hàn: văn bản chữ thường không hình thức"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156156\n"
-"12\n"
+"05020301.xhp\n"
+"par_id3153688\n"
+"204\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các đoạn văn (cũng tính các đoạn văn trắng) trong tập tin. </caseinline></switchinline>"
+msgid "[NatNum8] Transliteration in"
+msgstr "Chuyển chữ [NatNum8] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3155261\n"
-"13\n"
+"05020301.xhp\n"
+"par_id3156122\n"
+"205\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Words: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng từ : </caseinline></switchinline>"
+msgid "Japanese: traditional short Kanji text [DBNum4]"
+msgstr "Tiếng Nhật: văn bản chữ Kanji ngắn truyền thống [DBNum4]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3147402\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3145602\n"
+"206\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các từ (cũng tính các từ chỉ là một ký tự riêng lẻ) trong tập tin. </caseinline></switchinline>"
+msgid "Korean: informal upper case text"
+msgstr "Tiếng Hàn: văn bản chữ hoa không hình thức"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3150466\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3159228\n"
+"207\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Characters: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng ký tự : </caseinline></switchinline>"
+msgid "[NatNum9] Transliteration in"
+msgstr "Chuyển chữ [NatNum9] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3149294\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3154644\n"
+"208\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các ký tự (cũng tính các dấu cách) trong tập tin. Không tính ký tự không thể in.</caseinline></switchinline>"
+msgid "Korean: Hangul characters"
+msgstr "Tiếng Hàn: ký tự Hangul"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3148947\n"
-"32\n"
+"05020301.xhp\n"
+"par_id3155396\n"
+"209\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Lines: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tổng dòng: </caseinline></switchinline>"
+msgid "[NatNum10] Transliteration in"
+msgstr "Chuyển chữ [NatNum10] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3149650\n"
-"33\n"
+"05020301.xhp\n"
+"par_id3150878\n"
+"210\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Số các dòng trong tập tin. </caseinline></switchinline>"
+msgid "Korean: formal Hangul text [DBNum4]; CAL: 9/11/11 [DBNum4]"
+msgstr "Tiếng Hàn: văn bản chữ Hangul hình thức [DBNum4]; CAL: 9/11/11 [DBNum4]"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153525\n"
-"34\n"
+"05020301.xhp\n"
+"par_id3149384\n"
+"211\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cập nhật </caseinline></switchinline>"
+msgid "[NatNum11] Transliteration in"
+msgstr "Chuyển chữ [NatNum11] bằng"
-#: 01100400.xhp
+#: 05020301.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3148981\n"
-"35\n"
+"05020301.xhp\n"
+"par_id3154213\n"
+"212\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SW_PUSHBUTTON_TP_DOC_STAT_PB_PDATE\">Updates the statistics.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SW_PUSHBUTTON_TP_DOC_STAT_PB_PDATE\">Cập nhật các thống kê.</ahelp></caseinline></switchinline>"
+msgid "Korean: informal Hangul text"
+msgstr "Tiếng Hàn: văn bản chữ Hangul không hình thức"
#: 05020400.xhp
msgctxt ""
@@ -22521,7 +18218,6 @@ msgid "URL"
msgstr "URL"
#: 05020400.xhp
-#, fuzzy
msgctxt ""
"05020400.xhp\n"
"par_id3153332\n"
@@ -22621,7 +18317,6 @@ msgid "Frame"
msgstr "Khung"
#: 05020400.xhp
-#, fuzzy
msgctxt ""
"05020400.xhp\n"
"par_id3147559\n"
@@ -22633,6 +18328,114 @@ msgstr "<variable id=\"textframe\"><ahelp hid=\"SW:COMBOBOX:TP_CHAR_URL:LB_TARGE
#: 05020400.xhp
msgctxt ""
"05020400.xhp\n"
+"par_id3155922\n"
+"24\n"
+"help.text"
+msgid "Name of Frame"
+msgstr "Tên khung"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3154924\n"
+"25\n"
+"help.text"
+msgid "Definition"
+msgstr "Định nghĩa"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3159413\n"
+"14\n"
+"help.text"
+msgid "Named entries"
+msgstr "Mục có tên"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3154935\n"
+"15\n"
+"help.text"
+msgid "File opens in a named frame in the current HTML document."
+msgstr "Tập tin sẽ mở trong khung đã ghi rõ trong tài liệu HTML hiện tại."
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3148739\n"
+"16\n"
+"help.text"
+msgid "_self"
+msgstr "_self"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3150358\n"
+"17\n"
+"help.text"
+msgid "File opens in the current frame."
+msgstr "Tập tin sẽ mở trong khung hiện tại."
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3151210\n"
+"18\n"
+"help.text"
+msgid "_blank"
+msgstr "_blank"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3152920\n"
+"19\n"
+"help.text"
+msgid "File opens in a new page."
+msgstr "Tập tin sẽ mở trong một trang mới."
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3148451\n"
+"20\n"
+"help.text"
+msgid "_parent"
+msgstr "_parent"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3154217\n"
+"21\n"
+"help.text"
+msgid "File opens in the parent frame of the current frame. If there is no parent frame, the current frame is used."
+msgstr "Tập tin sẽ mở trong khung chứa khung hiện tại. Không có khung chứa thì dùng khung hiện tại."
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3154153\n"
+"22\n"
+"help.text"
+msgid "_top"
+msgstr "_top"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3150288\n"
+"23\n"
+"help.text"
+msgid "File opens in the topmost frame in the hierarchy."
+msgstr "Tập tin sẽ mở trong khung trên cùng của hệ thống cấp bậc."
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
"hd_id3149656\n"
"22\n"
"help.text"
@@ -22658,7 +18461,6 @@ msgid "Visited links"
msgstr "Liên kết đã thăm"
#: 05020400.xhp
-#, fuzzy
msgctxt ""
"05020400.xhp\n"
"par_id3150359\n"
@@ -22677,7 +18479,6 @@ msgid "Unvisited links"
msgstr "Liên kết chưa thăm"
#: 05020400.xhp
-#, fuzzy
msgctxt ""
"05020400.xhp\n"
"par_id3154216\n"
@@ -22702,4669 +18503,5171 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assign macro\">Assign macro</link>"
msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Gán vĩ lệnh\">Gán vĩ lệnh</link>"
-#: 05020400.xhp
+#: 05020500.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3154630\n"
+"05020500.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"Target frame\">Target frame</link>"
-msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Khung đích\">Khung đích</link>"
+msgid "Font Position"
+msgstr "Vị trí phông"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"tit\n"
+"05020500.xhp\n"
+"bm_id3154841\n"
"help.text"
-msgid "Localized Options"
-msgstr ""
+msgid "<bookmark_value>positioning; fonts</bookmark_value><bookmark_value>formats; positions</bookmark_value><bookmark_value>effects;font positions</bookmark_value><bookmark_value>fonts; positions in text</bookmark_value><bookmark_value>spacing; font effects</bookmark_value><bookmark_value>characters; spacing</bookmark_value><bookmark_value>pair kerning</bookmark_value><bookmark_value>kerning; in characters</bookmark_value><bookmark_value>text; kerning</bookmark_value>"
+msgstr "<bookmark_value>định vị; phông</bookmark_value><bookmark_value>định dạng; vị trí</bookmark_value><bookmark_value>hiệu ứng;vị trí phông</bookmark_value><bookmark_value>phông; vị trí trong văn bản</bookmark_value><bookmark_value>giãn cách;hiệu ứng phông</bookmark_value><bookmark_value>ký tự; giãn cách</bookmark_value><bookmark_value>định chỗ cặp</bookmark_value><bookmark_value>định chỗ; trong các ký tự</bookmark_value><bookmark_value>văn bản; định chỗ</bookmark_value>"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"bm_id3153899\n"
+"05020500.xhp\n"
+"hd_id3154841\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>quotes; custom</bookmark_value><bookmark_value>custom quotes</bookmark_value><bookmark_value>AutoCorrect function; quotes</bookmark_value><bookmark_value>replacing;ordinal numbers</bookmark_value><bookmark_value>ordinal numbers;replacing</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\" name=\"Position\">Position</link></defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\" name=\"Vị trí Phông\">Vị trí Phông</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\" name=\"Vị trí\">Vị trí</link></defaultinline></switchinline>"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3148585\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/PositionPage\">Specify the position, scaling, rotation, and spacing for characters.</ahelp>"
msgstr ""
-#: 06040400.xhp
-#, fuzzy
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3153899\n"
-"15\n"
+"05020500.xhp\n"
+"hd_id3147089\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Localized Options</link>"
-msgstr "<link href=\"text/shared/01/06040300.xhp\" name=\"Ngoại lệ\">Ngoại lệ</link>"
+msgid "Position"
+msgstr "Vị trí"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3149748\n"
-"16\n"
+"05020500.xhp\n"
+"par_id3153748\n"
+"4\n"
"help.text"
-msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text."
-msgstr ""
+msgid "Set the subscript or superscript options for a character."
+msgstr "Đặt các tùy chọn chỉ số trên hay chỉ số dưới cho ký tự."
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id31537173\n"
+"05020500.xhp\n"
+"hd_id3153311\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to apply the replacements while you type [T], or when you modify existing text [M].</ahelp>"
-msgstr ""
+msgid "Superscript"
+msgstr "Chỉ số Trên"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3159300\n"
-"25\n"
+"05020500.xhp\n"
+"par_id3154750\n"
+"6\n"
"help.text"
-msgid "Add non breaking space before specific punctuation marks in French text"
+msgid "<variable id=\"hochtext\"><ahelp hid=\"cui/ui/positionpage/superscript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp></variable>"
msgstr ""
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3153173\n"
-"27\n"
+"05020500.xhp\n"
+"hd_id3147275\n"
+"7\n"
"help.text"
-msgid "Inserts a non breaking space before \";\", \"!\", \"?\" and \":\" when the character language is set to French (France, Belgium, Luxembourg, Monaco, or Switzerland) and before \":\" only when the character language is set to French (Canada)."
-msgstr ""
+msgid "Normal"
+msgstr "Chuẩn"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3159400\n"
-"25\n"
+"05020500.xhp\n"
+"par_id3155503\n"
+"8\n"
"help.text"
-msgid "Format ordinal number suffixes (1st ... 1<sup>st</sup>)"
+msgid "<ahelp hid=\"cui/ui/positionpage/normal\">Removes superscript or subscript formatting.</ahelp>"
msgstr ""
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3154173\n"
-"27\n"
+"05020500.xhp\n"
+"hd_id3150465\n"
+"9\n"
"help.text"
-msgid "Formats the text characters of ordinals, such as 1st, 2nd, or 3rd, as superscripts. For example, in English text, 1st will be converted to 1<sup>st</sup>."
+msgid "Subscript"
+msgstr "Chỉ số Dưới"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3155420\n"
+"10\n"
+"help.text"
+msgid "<variable id=\"tieftext\"><ahelp hid=\"cui/ui/positionpage/subscript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp></variable>"
msgstr ""
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3154682\n"
-"17\n"
+"05020500.xhp\n"
+"hd_id3148992\n"
+"11\n"
"help.text"
-msgid "Single quotes / Double quotes"
-msgstr "Nháy đơn/Nháy đôi"
+msgid "Raise/lower by"
+msgstr "Nâng lên/Hạ thấp theo"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3152363\n"
-"18\n"
+"05020500.xhp\n"
+"par_id3150275\n"
+"12\n"
"help.text"
-msgid "Specify the replacement characters to use for single or double quotation marks."
-msgstr "Ghi rõ (các) ký tự nên thay thế dấu nháy đơn hay dấu nháy đôi."
+msgid "<ahelp hid=\"cui/ui/positionpage/raiselowersb\">Enter the amount by which you want to raise or to lower the selected text in relation to the baseline. One hundred percent is equal to the height of the font.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_CHAR_POSITION_ED_HIGHLOW\">Nhập hệ số theo đó bạn muốn nâng lên hoặc hạ thấp chuỗi đã chọn tương đối so với đường cơ bản. Hệ số một trăm phần trăm bằng với chiều cao của phông.</ahelp>"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3156553\n"
-"22\n"
+"05020500.xhp\n"
+"hd_id3150670\n"
+"13\n"
"help.text"
-msgid "Replace"
-msgstr "Thay thế"
+msgid "Relative font size"
+msgstr "Kích cỡ phông tương đối"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3155616\n"
-"23\n"
+"05020500.xhp\n"
+"par_id3153126\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO\">Automatically replaces the default system symbol for single quotation marks with the special character that you specify.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO\">Tự động thay thế ký hiệu hệ thống mặc định cho dấu nháy đơn bằng ký tự đặc biệt bạn ghi rõ.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/positionpage/fontsizesb\">Enter the amount by which you want to reduce the font size of the selected text.</ahelp>"
+msgstr ""
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3153750\n"
-"11\n"
+"05020500.xhp\n"
+"hd_id3153349\n"
+"15\n"
"help.text"
-msgid "Start quote"
-msgstr "Bắt đầu trích dẫn"
+msgid "Automatic"
+msgstr "Tự động"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3152425\n"
-"12\n"
+"05020500.xhp\n"
+"par_id3153061\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE\">Chọn <link href=\"text/shared/01/04100000.xhp\" name=\"ký tự đặc biệt\">ký tự đặc biệt</link> mà sẽ tự động thay thế dấu mở ngoặc kép hiện thời trong tài liệu, khi bạn chọn lệnh <emph>Định dạng > Tự động sửa lỗi > Áp dụng</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/positionpage/automatic\">Automatically sets the amount by which the selected text is raised or lowered in relation to the baseline.</ahelp>"
+msgstr ""
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3159233\n"
-"13\n"
+"05020500.xhp\n"
+"hd_id3154905\n"
+"30\n"
"help.text"
-msgid "End quote"
-msgstr "Đóng ngoặc kép"
+msgid "Rotation / scaling"
+msgstr "Xoay / Co giãn"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3147008\n"
-"14\n"
+"05020500.xhp\n"
+"par_id3154923\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE\">Chọn <link href=\"text/shared/01/04100000.xhp\" name=\"ký tự đặc biệt\">ký tự đặc biệt</link> mà sẽ tự động thay thế đóng ngoặc kép hiện thời trong tài liệu, khi bạn chọn lệnh <emph>Định dạng >Tự động sửa lỗi > Áp dụng</emph>.</ahelp>"
+msgid "Set the rotation and the scaling options for the selected text."
+msgstr "Đặt các tùy chọn xoay và co giãn về chuỗi đã chọn."
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3147089\n"
-"19\n"
+"05020500.xhp\n"
+"hd_id3154280\n"
+"31\n"
"help.text"
-msgid "Default"
-msgstr "Mặc định"
+msgid "0 degrees"
+msgstr "0 độ"
-#: 06040400.xhp
+#: 05020500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3166460\n"
-"20\n"
+"05020500.xhp\n"
+"par_id3149045\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD\">Resets the quotation marks to the default symbols.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD\">Đặt lại các dấu ngoặc kép về dấu mặc định.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/positionpage/0deg\">Does not rotate the selected text.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"tit\n"
+"05020500.xhp\n"
+"hd_id3156434\n"
+"32\n"
"help.text"
-msgid "Media Player"
-msgstr "Bộ phát phim/nhạc"
+msgid "90 degrees"
+msgstr "90 độ"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"bm_id8659321\n"
+"05020500.xhp\n"
+"par_id3148739\n"
+"38\n"
"help.text"
-msgid "<bookmark_value>Media Player window</bookmark_value>"
-msgstr "<bookmark_value>Cửa sổ bộ phát phim/nhạc</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/positionpage/90deg\">Rotates the selected text to the left by 90 degrees.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10550\n"
+"05020500.xhp\n"
+"hd_id3150398\n"
+"33\n"
"help.text"
-msgid "<variable id=\"mediaplayertitle\"><link href=\"text/shared/01/mediaplayer.xhp\">Media Player</link></variable>"
-msgstr "<variable id=\"mediaplayertitle\"><link href=\"text/shared/01/mediaplayer.xhp\">Bộ phát phim/nhạc</link></variable>"
+msgid "270 degrees"
+msgstr "270 độ"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10560\n"
+"05020500.xhp\n"
+"par_id3153778\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Media Player window where you can preview movie and sound files as well as insert these files into the current document.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/positionpage/270deg\">Rotates the selected text to the right by 90 degrees.</ahelp>"
msgstr ""
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10577\n"
+"05020500.xhp\n"
+"hd_id3147228\n"
+"34\n"
"help.text"
-msgid "The Media Player supports many different media formats. You can also insert media files from the Media Player into your document."
-msgstr "<emph>Bộ phát phim/nhạc</emph> hỗ trợ rất nhiều định dạng ảnh/nhạc khác nhau. Bạn cũng có thể chèn các tập tin phim/nhạc vào tài liệu từ <emph>Bộ phát phim/nhạc</emph>."
+msgid "Fit to line"
+msgstr "Vừa dòng"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105EF\n"
+"05020500.xhp\n"
+"par_id3150288\n"
+"40\n"
"help.text"
-msgid "On Linux or Solaris systems, the Media Player requires the Java Media Framework API (JMF). Download and install the JMF files from http://java.sun.com/javase/technologies/desktop/media/jmf/index.jsp and add the path to the installed jmf.jar to the class path in the Options dialog box in %PRODUCTNAME - Java."
-msgstr "Trong hệ thống Linux hoặc Solaris, bộ phát phương tiện cần đến Java Media Framework API (JMF). Tải và cài đặt những tập tin JMF từ trang web http://java.sun.com/javase/technologies/desktop/media/jmf/index.jsp và thêm đường dẫn đến tập tin đã được cài đặt jmf.jar vào đường dẫn hạng trong Công cụ - Tùy chọn - %PRODUCTNAME - Java."
+msgid "<ahelp hid=\"cui/ui/positionpage/fittoline\">Stretches or compresses the selected text so that it fits between the line that is above the text and the line that is below the text.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1064F\n"
+"05020500.xhp\n"
+"hd_id3155994\n"
+"35\n"
"help.text"
-msgid "On Windows systems, the Media Player uses DirectShow, which should be installed on your system by default."
-msgstr "Trên hệ thống Windows, <emph>Bộ phát phim/nhạc</emph> dùng DirectShow (được cài đặt vào hệ thống theo mặc định)."
+msgid "Scale width"
+msgstr "Co giãn bề rộng"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1057A\n"
+"05020500.xhp\n"
+"par_id3145171\n"
+"41\n"
"help.text"
-msgid "Open"
-msgstr "Mở"
+msgid "<ahelp hid=\"cui/ui/positionpage/scalewidthsb\">Enter the percentage of the font width by which to horizontally stretch or compress the selected text.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1057E\n"
+"05020500.xhp\n"
+"hd_id3149807\n"
+"17\n"
"help.text"
-msgid "Opens a movie file or a sound file that you want to preview."
-msgstr "Mở một tập tin phim hay âm thanh mà bạn muốn xem thử."
+msgid "Spacing"
+msgstr "Giãn cách"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10581\n"
+"05020500.xhp\n"
+"par_id3156212\n"
+"18\n"
"help.text"
-msgid "Apply"
-msgstr "Áp dụng"
+msgid "Specify the spacing between individual characters."
+msgstr "Ghi rõ khoảng cách giữa hai ký tự."
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10585\n"
+"05020500.xhp\n"
+"hd_id3125865\n"
+"19\n"
"help.text"
-msgid "Inserts the current movie file or sound file as a media object into the current document."
-msgstr "Chèn vào tài liệu hiện tại tập tin phim hay âm thanh hiện thời dưới dạng đối tượng phương tiện."
+msgid "Spacing"
+msgstr "Giãn cách"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10588\n"
+"05020500.xhp\n"
+"par_id3153178\n"
+"20\n"
"help.text"
-msgid "Play"
-msgstr "Phát"
+msgid "<ahelp hid=\"cui/ui/positionpage/kerninglb\">Specifies the spacing between the characters of the selected text. For expanded or condensed spacing, enter the amount that you want to expand or condense the text in the <emph>by </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_POSITION_LB_KERNING2\">Xác định khoảng cách giữa các ký tự riêng của chuỗi đã chọn. Để co giãn hay co lại khoảng cách, nhập vào hộp <emph>theo </emph> hệ số cần điều chỉnh.</ahelp>"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1058C\n"
+"05020500.xhp\n"
+"par_id3154908\n"
+"21\n"
"help.text"
-msgid "Plays the current file."
-msgstr "Phát tập tin hiện tại."
+msgid "<emph>Default</emph> - uses the character spacing specified in the font type"
+msgstr "<emph>Mặc định</emph> — dùng khoảng cách ký tự được ghi rõ trong kiểu phông"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1058F\n"
+"05020500.xhp\n"
+"par_id3156543\n"
+"22\n"
"help.text"
-msgid "Pause"
-msgstr "Tạm dừng"
+msgid "<emph>Expanded</emph> - increases the character spacing"
+msgstr "<emph>Mở rộng</emph> — tăng khoảng cách giữa các ký tự."
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10593\n"
+"05020500.xhp\n"
+"par_id3154297\n"
+"23\n"
"help.text"
-msgid "Pauses or resumes the playback of the current file."
-msgstr "Tạm dừng hay tiếp tục lại tiến trình phát lại tập tin hiện tại."
+msgid "<emph>Condensed</emph> - decreases the character spacing"
+msgstr "<emph>Hẹp</emph> — giảm khoảng cách giữa các ký tự."
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10596\n"
+"05020500.xhp\n"
+"hd_id3157870\n"
+"25\n"
"help.text"
-msgid "Stop"
-msgstr "Dừng"
+msgid "by"
+msgstr "theo"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1059A\n"
+"05020500.xhp\n"
+"par_id3146974\n"
+"26\n"
"help.text"
-msgid "Stops the playback of the current file."
-msgstr "Dừng tiến trình phát lại tập tin hiện tại."
+msgid "<ahelp hid=\"cui/ui/positionpage/kerninged\">Enter the amount by which you want to expand or condense the character spacing for the selected text.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1059D\n"
+"05020500.xhp\n"
+"hd_id3154127\n"
+"27\n"
"help.text"
-msgid "Repeat"
-msgstr "Lặp lại"
+msgid "<link href=\"text/shared/00/00000005.xhp#kerning\" name=\"Pair kerning\">Pair kerning</link>"
+msgstr "<link href=\"text/shared/00/00000005.xhp#kerning\" name=\"Định chỗ cặp\">Định chỗ cặp</link>"
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105A1\n"
+"05020500.xhp\n"
+"par_id3148616\n"
+"28\n"
"help.text"
-msgid "Plays the file repeatedly."
-msgstr "Phát tập tin lặp đi lặp lại."
+msgid "<ahelp hid=\"cui/ui/positionpage/pairkerning\">Automatically adjust the character spacing for specific letter combinations.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05020500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105A4\n"
+"05020500.xhp\n"
+"par_id3150010\n"
+"29\n"
"help.text"
-msgid "Mute"
-msgstr "Câm"
+msgid "Kerning is only available for certain font types and requires that your printer support this option."
+msgstr "Chức năng định chỗ chỉ sẵn sàng cho một số kiểu phông nào đó, cũng cần thiết máy in hỗ trợ."
-#: mediaplayer.xhp
+#: 05020600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105A8\n"
+"05020600.xhp\n"
+"tit\n"
"help.text"
-msgid "Turns sound off and on."
-msgstr "Bật/tắt âm thanh."
+msgid "Asian Layout"
+msgstr "Bố trí Châu Á"
-#: mediaplayer.xhp
+#: 05020600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105AB\n"
+"05020600.xhp\n"
+"bm_id3156053\n"
"help.text"
-msgid "Volume slider"
-msgstr "Con trượt âm lượng"
+msgid "<bookmark_value>double-line writing in Asian layout</bookmark_value><bookmark_value>formats; Asian layout</bookmark_value><bookmark_value>characters; Asian layout</bookmark_value><bookmark_value>text; Asian layout</bookmark_value>"
+msgstr "<bookmark_value>viết dòng đôi trên bố trí Châu Á</bookmark_value><bookmark_value>định dạng; bố trí Châu Á</bookmark_value><bookmark_value>ký tự; bố trí Châu Á</bookmark_value><bookmark_value>văn bản; bố trí Châu Á</bookmark_value>"
-#: mediaplayer.xhp
+#: 05020600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105AF\n"
+"05020600.xhp\n"
+"hd_id3156053\n"
+"1\n"
"help.text"
-msgid "Adjusts the volume."
-msgstr "Điều chỉnh âm lượng."
+msgid "<link href=\"text/shared/01/05020600.xhp\" name=\"Asian Layout\">Asian Layout</link>"
+msgstr "<link href=\"text/shared/01/05020600.xhp\" name=\"Bố trí Châu Á\">Bố trí Châu Á</link>"
-#: mediaplayer.xhp
+#: 05020600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105B2\n"
+"05020600.xhp\n"
+"par_id3155351\n"
+"2\n"
"help.text"
-msgid "View"
-msgstr "Xem"
+msgid "<ahelp hid=\"\">Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command.</ahelp>"
+msgstr "<ahelp hid=\"\">Đặt các tùy chọn về chức năng viết dòng đôi bằng ngôn ngữ Châu Á. Hãy chọn các ký tự trong văn bản, sau đó chọn lệnh này.</ahelp>"
-#: mediaplayer.xhp
+#: 05020600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105B6\n"
+"05020600.xhp\n"
+"hd_id3152552\n"
+"3\n"
"help.text"
-msgid "Adjusts the size of the movie playback."
-msgstr "Điều chỉnh kích cỡ của sự phát lại phim."
+msgid "Double-lined"
+msgstr "Dòng đôi"
-#: mediaplayer.xhp
+#: 05020600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105B9\n"
+"05020600.xhp\n"
+"par_id3155338\n"
+"4\n"
"help.text"
-msgid "Position slider"
-msgstr "Con trượt vị trí"
+msgid "Set the double-line options for the selected text."
+msgstr "Đặt các tùy chọn dòng đôi về chuỗi đã chọn."
-#: mediaplayer.xhp
+#: 05020600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105BD\n"
+"05020600.xhp\n"
+"hd_id3147089\n"
+"5\n"
"help.text"
-msgid "Moves to a different position in the file."
-msgstr "Nhảy tới vị trí khác trong cùng tập tin."
+msgid "Write in double lines"
+msgstr "Viết qua dòng đôi"
-#: 05190100.xhp
+#: 05020600.xhp
msgctxt ""
-"05190100.xhp\n"
-"tit\n"
+"05020600.xhp\n"
+"par_id3150693\n"
+"6\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "<ahelp hid=\"cui/ui/twolinespage/twolines\">Allows you to write in double lines in the area that you selected in the current document.</ahelp>"
+msgstr ""
-#: 05190100.xhp
+#: 05020600.xhp
msgctxt ""
-"05190100.xhp\n"
-"bm_id3147366\n"
+"05020600.xhp\n"
+"hd_id3157959\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>objects;titles and descriptions</bookmark_value> <bookmark_value>descriptions for objects</bookmark_value> <bookmark_value>titles;objects</bookmark_value>"
-msgstr "<bookmark_value>đối tượng;tựa đề và mô tả</bookmark_value><bookmark_value>mô tả cho đối tượng</bookmark_value><bookmark_value>tựa đề;đối tượng</bookmark_value>"
+msgid "Enclosing characters"
+msgstr "Ký tự bao bọc"
-#: 05190100.xhp
+#: 05020600.xhp
msgctxt ""
-"05190100.xhp\n"
-"hd_id1115756\n"
+"05020600.xhp\n"
+"par_id3154749\n"
+"8\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "Specify the characters to enclose the double-lined area."
+msgstr "Ghi rõ các ký tự sẽ bao bọc vùng dòng đôi."
-#: 05190100.xhp
+#: 05020600.xhp
msgctxt ""
-"05190100.xhp\n"
-"par_id3140354\n"
+"05020600.xhp\n"
+"hd_id3148539\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Gán cho đối tượng đã chọn một tựa đề và một mô tả. Hai đồ thông tin này được cung cấp cho công cụ khả năng truy cập, và được hiển thị dạng thẻ xen kẽ khi bạn xuất khẩu tài liệu.</ahelp>"
+msgid "Initial character"
+msgstr "Ký tự đầu"
-#: 05190100.xhp
+#: 05020600.xhp
msgctxt ""
-"05190100.xhp\n"
-"hd_id2576982\n"
+"05020600.xhp\n"
+"par_id3150504\n"
+"10\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "<ahelp hid=\"cui/ui/twolinespage/startbracket\">Select the character to define the start of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_TWOLINES_ED_STARTBRACKET\">Chọn ký tự nên xác định vị trí bắt đầu vùng dòng đôi. Muốn chọn một ký tự riêng thì bật tùy chọn <emph>Ký tự khác</emph>.</ahelp>"
-#: 05190100.xhp
+#: 05020600.xhp
msgctxt ""
-"05190100.xhp\n"
-"par_id1283608\n"
+"05020600.xhp\n"
+"hd_id3159115\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập chuỗi là tựa đề. Tên ngắn này hiển thị dạng thẻ xen kẽ theo định dạng HTML. Công cụ khả năng truy cập cũng có thể đọc thông tin này.</ahelp>"
+msgid "Final character"
+msgstr "Ký tự cuối"
-#: 05190100.xhp
+#: 05020600.xhp
msgctxt ""
-"05190100.xhp\n"
-"hd_id8173467\n"
+"05020600.xhp\n"
+"par_id3149191\n"
+"12\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "<ahelp hid=\"cui/ui/twolinespage/endbracket\">Select the character to define the end of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_TWOLINES_ED_ENDBRACKET\">Chọn ký tự nên xác định vị trí kết thúc vùng dòng đôi. Muốn chọn một ký tự riêng thì bật tùy chọn <emph>Ký tự khác</emph>.</ahelp>"
-#: 05190100.xhp
+#: 05020700.xhp
msgctxt ""
-"05190100.xhp\n"
-"par_id693685\n"
+"05020700.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập chuỗi diễn tả. Chuỗi diễn tả chi tiết có thể được nhập vào để diễn tả đối tượng phức tạp hay nhóm đối tượng cho người dùng phần mềm đọc màn hình. Mô tả này cũng được hiển thị dạng thẻ xen kẽ cho công cụ khả năng truy cập.</ahelp>"
+msgid "Asian Typography"
+msgstr "Kiểu in Châu Á"
-#: 05260200.xhp
+#: 05020700.xhp
msgctxt ""
-"05260200.xhp\n"
-"tit\n"
+"05020700.xhp\n"
+"bm_id3155620\n"
"help.text"
-msgid "To Paragraph"
-msgstr "Vào đoạn văn"
+msgid "<bookmark_value>Asian typography</bookmark_value><bookmark_value>formatting; Asian typography</bookmark_value><bookmark_value>paragraphs; Asian typography</bookmark_value><bookmark_value>typography; Asian</bookmark_value>"
+msgstr "<bookmark_value>kiểu in Châu Á</bookmark_value><bookmark_value>định dạng; kiểu in Châu Á</bookmark_value><bookmark_value>đoạn văn; kiểu in Châu Á</bookmark_value><bookmark_value>kiểu in; ngôn ngữ Châu Á</bookmark_value>"
-#: 05260200.xhp
+#: 05020700.xhp
msgctxt ""
-"05260200.xhp\n"
-"hd_id3151260\n"
+"05020700.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260200.xhp\" name=\"To Paragraph\">To Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05260200.xhp\" name=\"Vào đoạn văn\">Vào đoạn văn</link>"
+msgid "<link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\">Asian Typography</link>"
+msgstr "<link href=\"text/shared/01/05020700.xhp\" name=\"Kiểu in Châu Á\">Kiểu in Châu Á</link>"
-#: 05260200.xhp
+#: 05020700.xhp
msgctxt ""
-"05260200.xhp\n"
-"par_id3155271\n"
+"05020700.xhp\n"
+"par_id3153124\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToPara\" visibility=\"visible\">Anchors the selected item to the current paragraph.</ahelp>"
-msgstr "<ahelp hid=\".uno:SetAnchorToPara\" visibility=\"visible\">Thả neo mục đã chọn vào đoạn văn.</ahelp>"
+msgid "<ahelp hid=\".\">Set the typographic options for cells or paragraphs in Asian language files. To enable Asian language support, choose <emph>Language Settings - Languages</emph> in the Options dialog box, and then select the <emph>Enabled</emph> box in the <emph>Asian language support</emph> area.</ahelp> The Asian typography options are ignored in HTML documents."
+msgstr "<ahelp hid=\".\">Đặt các tùy chọn kiểu in về những ô bảng hay đoạn văn trong tài liệu bằng ngôn ngữ Châu Á. Để hiệu lực hỗ trợ ngôn ngữ Châu Á, chọn mục trình đơn <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>, rồi đánh dấu trong hộp <emph>Bật</emph> trong vùng <emph>Hỗ trợ ngôn ngữ Châu Á</emph>.</ahelp> Tuy nhiên, các tùy chọn kiểu in Châu Á bị bỏ qua trong tài liệu HTML."
-#: 05260200.xhp
+#: 05020700.xhp
msgctxt ""
-"05260200.xhp\n"
-"par_id3154926\n"
+"05020700.xhp\n"
+"hd_id3147571\n"
"3\n"
"help.text"
-msgid "The anchor icon is displayed at the left page margin at the beginning of the paragraph."
-msgstr "Biểu tượng neo được hiển thị trong lề bên trái trang, ở đầu đoạn văn."
+msgid "Line change"
+msgstr "Ngắt dòng"
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"tit\n"
+"05020700.xhp\n"
+"par_id3147834\n"
+"4\n"
"help.text"
-msgid "Export"
-msgstr "Xuất"
+msgid "Set the options for line breaks in Asian language documents."
+msgstr "Đặt các tùy chọn về chỗ ngắt dòng trong tài liệu bằng ngôn ngữ Châu Á."
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"bm_id3153383\n"
+"05020700.xhp\n"
+"hd_id3145072\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>documents; exporting</bookmark_value><bookmark_value>converting; $[officename] documents</bookmark_value><bookmark_value>exporting;to foreign formats</bookmark_value>"
-msgstr "<bookmark_value>tài liệu; xuất khẩu</bookmark_value><bookmark_value>chuyển đổi; tài liệu $[officename]</bookmark_value><bookmark_value>xuất khẩu;theo định dạng bên ngoài</bookmark_value>"
+msgid "Apply list of forbidden characters to the beginning and end of line"
+msgstr "Áp dụng danh sách ký tự cấm cho đầu và cuối dòng"
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3153383\n"
-"13\n"
+"05020700.xhp\n"
+"par_id3153683\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Xuất\">Xuất</link>"
+msgid "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line.</ahelp> To edit the list of restricted characters, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - <link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\">Asian Layout</link></emph>."
+msgstr ""
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"par_id3149355\n"
-"1\n"
+"05020700.xhp\n"
+"hd_id3149751\n"
+"5\n"
"help.text"
-msgid "<variable id=\"exportieren\"><ahelp hid=\".uno:ExportTo\">Saves the current document with a different name and format to a location that you specify.</ahelp></variable>"
-msgstr "<variable id=\"exportieren\"><ahelp hid=\".uno:ExportTo\">Lưu tài liệu hiện tại với tên khác, định dạng khác và/hay vào vị trí bạn ghi rõ.</ahelp></variable>"
+msgid "Allow hanging punctuation"
+msgstr "Cho phép chấm câu treo"
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"par_id3150710\n"
-"2\n"
+"05020700.xhp\n"
+"par_id3149096\n"
+"6\n"
"help.text"
-msgid "The following sections describe the <emph>$[officename] Export</emph> dialog box. To activate the <emph>$[officename] Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"$[officename] - General\">$[officename] - General</link></emph>, and then select the <emph>Use $[officename] dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgid "<ahelp hid=\"cui/ui/asiantypography/checkHangPunct\">Prevents commas and periods from breaking the line. Instead, these characters are added to the end of the line, even in the page margin.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/asiantypography/checkHangPunct\">Ngăn cản dấu phẩy hay dấu chấm ngắt dòng (bắt đầu dòng kế tiếp). Thay vào đó, ký tự như vậy được thêm vào dòng, ngay cả vào lề trang.</ahelp>"
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3150693\n"
-"4\n"
+"05020700.xhp\n"
+"par_id3147275\n"
+"7\n"
"help.text"
-msgid "Up One Level"
-msgstr "Lên một bậc"
+msgid "<emph>Apply spacing between Asian, Latin and Complex text</emph>"
+msgstr "<emph>Áp dụng khoảng cách giữa văn bản ngôn ngữ Châu Á, La-tinh và văn bản phức</emph>"
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3153312\n"
-"5\n"
+"05020700.xhp\n"
+"par_id3148539\n"
+"8\n"
"help.text"
-msgid "Create New Directory"
-msgstr "Tạo thư mục mới"
+msgid "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Inserts a space between Asian, Latin and complex characters.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Chèn một dấu cách vào giữa các ký tự ngôn ngữ Châu Á, ký tự La-tinh và ký tự phức tạp.</ahelp>"
-#: 01070001.xhp
+#: 05020700.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3155535\n"
-"6\n"
+"05020700.xhp\n"
+"par_id3153665\n"
"help.text"
-msgid "Default Directory"
-msgstr "Thư mục mặc định"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Enabling Asian language support\">Enabling Asian language support</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Hỗ trợ ngôn ngữ Châu Á\">Hỗ trợ ngôn ngữ Châu Á</link>"
-#: 01070001.xhp
+#: 05030000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3154317\n"
-"7\n"
+"05030000.xhp\n"
+"tit\n"
"help.text"
-msgid "Display area"
-msgstr "Vùng hiển thị"
+msgid "Paragraph"
+msgstr "Đoạn văn"
-#: 01070001.xhp
+#: 05030000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3147209\n"
-"8\n"
+"05030000.xhp\n"
+"hd_id3150467\n"
+"1\n"
"help.text"
-msgid "File Name"
-msgstr "Tên tập tin"
+msgid "Paragraph"
+msgstr "Đoạn văn"
-#: 01070001.xhp
+#: 05030000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3152996\n"
-"9\n"
+"05030000.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "File Type"
-msgstr "Kiểu tập tin"
+msgid "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
+msgstr "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Sửa đổi định dạng của đoạn văn hiện tại, v.d. khoảng thụt lề và hướng chỉnh canh.</ahelp></variable> Để sửa đổi phông của đoạn văn hiện tại, lựa chọn toàn đoạn văn, chọn lệnh <emph>Định dạng > Ký tự</emph>, sau đó nhấn vào thẻ <emph>Phông</emph>."
-#: 01070001.xhp
+#: 05030000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3148539\n"
-"10\n"
+"05030000.xhp\n"
+"par_id3156042\n"
+"3\n"
"help.text"
-msgid "Export"
-msgstr "Xuất"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link>. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kiểu dáng Đoạn văn cho đoạn văn hiện tại được hiển thị trên thanh công cụ <emph>Định dạng</emph>, cũng được tô sáng trong cửa sổ <link href=\"text/swriter/01/05140000.xhp\" name=\"Kiểu dáng\">Kiểu dáng và Định dạng</link>. </caseinline></switchinline>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
+"05030100.xhp\n"
"tit\n"
"help.text"
-msgid "Word Completion"
-msgstr "Điền nốt từ"
+msgid "Indents and Spacing"
+msgstr "Thụt lề và Giãn cách"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3148882\n"
-"92\n"
+"05030100.xhp\n"
+"bm_id3154689\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040600.xhp\" name=\"Word Completion\">Word Completion</link>"
-msgstr "<link href=\"text/shared/01/06040600.xhp\" name=\"Điền nốt từ\">Điền nốt từ</link>"
+msgid "<bookmark_value>spacing; between paragraphs in footnotes</bookmark_value> <bookmark_value>line spacing; paragraph</bookmark_value> <bookmark_value>spacing; lines and paragraphs</bookmark_value> <bookmark_value>single-line spacing in text</bookmark_value> <bookmark_value>one and a half line spacing in text</bookmark_value> <bookmark_value>double-line spacing in paragraphs</bookmark_value> <bookmark_value>leading between paragraphs</bookmark_value> <bookmark_value>paragraphs;spacing</bookmark_value>"
+msgstr "<bookmark_value>khoảng cách;giữa các đoạn văn trong cước chú</bookmark_value><bookmark_value>khoảng cách dòng;đoạn văn</bookmark_value><bookmark_value>khoảng cách; dòng và đoạn văn</bookmark_value><bookmark_value>khoảng cách dòng đơn trong văn bản</bookmark_value><bookmark_value>khoảng cách dòng 1.5 trong văn bản</bookmark_value><bookmark_value>khoảng cách dòng đôi in đoạn văn</bookmark_value><bookmark_value>khoảng cách dẫn tới giữa các đoạn văn</bookmark_value><bookmark_value>đoạn văn;giãn cách</bookmark_value>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153624\n"
-"93\n"
+"05030100.xhp\n"
+"hd_id3154689\n"
+"1\n"
"help.text"
-msgid "Set the options for completing frequently occurring words while you type."
-msgstr "Đặt các tùy chọn về chức năng điền nốt từ hay gặp trong khi bạn gõ."
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Thụt lề và Giãn cách\">Thụt lề và Giãn cách</link>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3154514\n"
-"94\n"
+"05030100.xhp\n"
+"par_id3155069\n"
+"2\n"
"help.text"
-msgid "Enable word completion"
-msgstr "Bật điền nốt từ"
+msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_STD\">Sets the indenting and the spacing options for the paragraph.</ahelp>"
+msgstr "<ahelp hid=\"HID_FORMAT_PARAGRAPH_STD\">Đặt các tùy chọn thụt lề và khoảng cách cho đoạn văn.</ahelp>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3156153\n"
-"95\n"
+"05030100.xhp\n"
+"par_id3153910\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV\">Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV\">Cất giữ các từ hay dùng, và tự động điền nốt từ sau khi bạn gõ ba chữ tương ứng với ba chữ thứ nhất của từ đã cất giữ.</ahelp>"
+msgid "To change the measurement units used in this dialog, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area."
+msgstr ""
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3150978\n"
-"100\n"
+"05030100.xhp\n"
+"par_id3154823\n"
+"11\n"
"help.text"
-msgid "Append space"
-msgstr "Phụ thêm dấu cách"
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <emph>View - Ruler</emph>."
+msgstr "Bạn cũng có thể <link href=\"text/swriter/guide/ruler.xhp\" name=\"thước đo\">đặt khoảng cách thụt lề dùng thước đo</link>. Để hiển thị thước đo, chọn lệnh <emph>Xem > Thước</emph>."
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153700\n"
-"101\n"
+"05030100.xhp\n"
+"hd_id3158430\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_APPEND_SPACE\">If you do not add punctuation after the word, $[officename] adds a space.</ahelp> The space is added as soon as you begin typing the next word."
-msgstr "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_APPEND_SPACE\">Nếu bạn không thêm dấu chấm câu vào từ, $[officename] sẽ thêm một dấu cách.</ahelp> Dấu cách này được thêm một khi bạn bắt đầu gõ từ kế tiếp."
+msgid "Indent"
+msgstr "Thụt lề"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3150771\n"
-"102\n"
+"05030100.xhp\n"
+"par_id3155419\n"
+"4\n"
"help.text"
-msgid "Show as tip"
-msgstr "Hiển thị dạng lời gợi ý"
+msgid "Specify the amount of space to leave between the left and the right page margins and the paragraph."
+msgstr "Ghi rõ khoảng cách cần để lại giữa lề bên trái/phải và đoạn văn."
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3149819\n"
-"103\n"
+"05030100.xhp\n"
+"hd_id3153698\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP\">Displays the completed word as a Help Tip.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP\">Hiển thị từ đã điền nốt dưới dạng lời Gợi ý Trợ giúp.</ahelp>"
+msgid "Before text"
+msgstr "Đằng trước văn bản"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3154046\n"
-"96\n"
+"05030100.xhp\n"
+"par_id3148990\n"
+"6\n"
"help.text"
-msgid "Collect words"
-msgstr "Thu thập từ"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the left edge of the paragraph is indented with respect to the left page margin. In Right-to-Left languages, the right edge of the paragraph is indented with respect to the right page margin.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT\">Nhập khoảng cách cần hiển thị giữa lề trang và đoạn văn. Muốn thấy đoạn văn kéo dài qua lề trang thì nhập con số âm. Bằng ngôn ngữ viết từ bên trái qua bên phải (LTR), cạnh bên trái của đoạn văn được thụt vào tương ứng so với lề bên trái trang. Bằng ngôn ngữ viết từ bên phải qua bên trái (RTL), cạnh bên phải của đoạn văn được thụt vào tương ứng so với lề bên phải trang.</ahelp>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3155449\n"
-"97\n"
+"05030100.xhp\n"
+"hd_id3152361\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT\">Adds the frequently used words to a list. To remove a word from the Word Completion list, select the word, and then click<emph> Delete Entry</emph>.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT\">Thêm các từ hay dùng vào danh sách. Để gỡ bỏ từ khỏi danh sách Điền Nốt Từ, lựa chọn từ đó, sau đó nhấn vào nút <emph>Xoá mục</emph>.</ahelp>"
+msgid "After text"
+msgstr "Đằng sau văn bản"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3156193\n"
-"98\n"
+"05030100.xhp\n"
+"par_id3154390\n"
+"10\n"
"help.text"
-msgid "When closing a document, remove the words collected from it from the list"
-msgstr "Khi đóng một tài liệu, gỡ bỏ những từ lấy từ tài liệu ra khỏi danh sách"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the right edge of the paragraph is indented with respect to the right page margin. In Right-to-Left languages, the left edge of the paragraph is indented with respect to the left page margin.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT\">Nhập khoảng cách cần hiển thị giữa lề trang và đoạn văn. Muốn thấy đoạn văn kéo dài qua lề trang thì nhập con số âm. Bằng ngôn ngữ viết từ bên trái qua bên phải (LTR), cạnh bên phải của đoạn văn được thụt vào tương ứng so với lề bên phải trang. Bằng ngôn ngữ viết từ bên phải qua bên trái (RTL), cạnh bên trái của đoạn văn được thụt vào tương ứng so với lề bên trái trang.</ahelp>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3158430\n"
-"99\n"
+"05030100.xhp\n"
+"hd_id3149169\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_KEEP_LIST\">When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_KEEP_LIST\">Khi bật, danh sách sẽ bị xóa khi bạn đóng tài liệu hiện hành. Khi tắt, danh sách hoàn thành từ vẫn sẵn dùng cho những tài liệu khác sau khi bạn đã đóng tài liệu hiện hành. Danh sách tồn tại cho đến khi bạn thoát khỏi %PRODUCTNAME.</ahelp>"
+msgid "First line"
+msgstr "Dòng đầu"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3149580\n"
-"104\n"
+"05030100.xhp\n"
+"par_id3150651\n"
+"8\n"
"help.text"
-msgid "Accept with"
-msgstr "Chấp nhận bằng"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_FLINEINDENT\">Indents the first line of a paragraph by the amount that you enter. To create a hanging indent enter a positive value for \"Before text\" and a negative value for \"First line\". To indent the first line of a paragraph that uses numbering or bullets, choose \"<link href=\"text/shared/01/06050600.xhp\">Format - Bullets and Numbering - Position</link>\".</ahelp>"
+msgstr ""
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153061\n"
-"105\n"
+"05030100.xhp\n"
+"hd_id3150288\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY\">Select the key that you want to use to accept the automatic word completion.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY\">Chọn khoá bạn muốn dùng để chấp nhận chức năng tự động điền nốt từ.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatic </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động</caseinline></switchinline>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_idN106F8\n"
+"05030100.xhp\n"
+"par_id3151041\n"
+"53\n"
"help.text"
-msgid "Press Esc to decline the word completion."
-msgstr "Bấm phím <item type=\"keycode\">Esc</item> để từ chối điền nốt từ."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO\">Automatically indents a paragraph according to the font size and the line spacing. The setting in the <emph>First Line </emph>box is ignored.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO\">Tự động thụt vào đoạn văn tùy theo kích cỡ phông và khoảng cách dòng. Thiết lập trong hộp <emph>Dòng đầu</emph> bị bỏ qua.</ahelp></caseinline></switchinline>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3151245\n"
-"84\n"
+"05030100.xhp\n"
+"hd_id3157894\n"
+"22\n"
"help.text"
-msgid "Min. word length"
-msgstr "Bề dài từ tiểu"
+msgid "Spacing"
+msgstr "Giãn cách"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3145609\n"
-"85\n"
+"05030100.xhp\n"
+"par_id3152462\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN\">Enter the minimum word length for a word to become eligible for the word completion feature.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN\">Nhập chiều dài từ tối thiểu cần thiết để dùng tính năng điền nốt từ.</ahelp>"
+msgid "Specify the amount of space to leave between selected paragraphs."
+msgstr "Ghi rõ khoảng cách cần để lại giữa các đoạn văn đã chọn."
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3154758\n"
-"86\n"
+"05030100.xhp\n"
+"hd_id3147216\n"
+"24\n"
"help.text"
-msgid "Max. entries"
-msgstr "Số mục đại"
+msgid "Above paragraph"
+msgstr "Bên trên đoạn văn"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3159414\n"
-"87\n"
+"05030100.xhp\n"
+"par_id3146148\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES\">Enter the maximum number of words that you want to store in the Word Completion list.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES\">Nhập số từ tối đa bạn muốn cất giữ trong danh sách Điền Nốt Từ.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST\">Enter the amount of space that you want to leave above the selected paragraph(s).</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST\">Nhập khoảng cách bạn muốn để lạ bên trên mỗi đoạn văn đã chọn</ahelp>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3147265\n"
-"106\n"
+"05030100.xhp\n"
+"hd_id3145590\n"
+"26\n"
"help.text"
-msgid "Word Completion list"
-msgstr "Danh sách Điền Nốt Từ"
+msgid "Below paragraph"
+msgstr "Bên dưới đoạn văn"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3152773\n"
-"107\n"
+"05030100.xhp\n"
+"par_id3163822\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:MULTILISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES\">Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\".</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:MULTILISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES\">Liệt kê các từ đã thu thập. Danh sách có tác động đến khi bạn đóng tài liệu hiện tại. Để làm cho danh sách sẵn sàng cho các tài liệu khác trong phiên đang chạy, bật tùy chọn <emph>Khi đóng một tài liệu, lưu danh sách để dùng trong các tài liệu khác.</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST\">Enter the amount of space that you want to leave below the selected paragraph(s).</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST\">Nhập khoảng cách bạn muốn để lạ bên dưới mỗi đoạn văn đã chọn.</ahelp>"
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3156423\n"
-"112\n"
+"05030100.xhp\n"
+"hd_id3145591\n"
+"26\n"
"help.text"
-msgid "If the automatic spellcheck option is enabled, only the words that are recognized by the spellcheck are collected."
-msgstr "Hiệu lực chức năng tự động kiểm tra chính tả thì chỉ thu thập những từ nhận ra bởi tiến trình kiểm tra chính tả."
+msgid "Don't add space between paragraphs of the same style"
+msgstr ""
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3144434\n"
-"110\n"
+"05030100.xhp\n"
+"par_id3163823\n"
+"27\n"
"help.text"
-msgid "Delete Entry"
-msgstr "Xoá mục"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_CONTEXTUALSPACING\">Makes any space specified before or after this paragraph not be applied when the preceding and following paragraphs are of the same paragraph style.</ahelp>"
+msgstr ""
-#: 06040600.xhp
+#: 05030100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153351\n"
-"111\n"
+"05030100.xhp\n"
+"hd_id3156441\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES\">Removes the selected word or words from the Word Completion list.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES\">Gỡ bỏ (các) từ đã chọn khỏi danh sách Điền Nốt Từ.</ahelp>"
+msgid "Line spacing"
+msgstr "Giãn cách dòng"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"tit\n"
+"05030100.xhp\n"
+"par_id3146985\n"
+"29\n"
"help.text"
-msgid "Save As"
-msgstr "Lưu dạng"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST\">Specify the amount of space to leave between lines of text in a paragraph.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST\">Nhập khoảng cách bạn muốn để lạ giữa hai dòng văn bản trong đoạn văn.</ahelp>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"bm_id3151260\n"
+"05030100.xhp\n"
+"hd_id3146923\n"
+"30\n"
"help.text"
-msgid "<bookmark_value>saving as command; precautions</bookmark_value>"
-msgstr "<bookmark_value>câu lệnh Lưu dạng; sự phòng ngừa</bookmark_value>"
+msgid "Single"
+msgstr "Đơn"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3151260\n"
-"1\n"
+"05030100.xhp\n"
+"par_id3150011\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Lưu dạng\">Lưu dạng</link>"
+msgid "<variable id=\"einzeiligtext\">Applies single line spacing to the current paragraph. This is the default setting. </variable>"
+msgstr "<variable id=\"einzeiligtext\">Áp dụng khoảng cách dòng đơn cho đoạn văn hiện tại. </variable>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3146856\n"
-"2\n"
+"05030100.xhp\n"
+"hd_id3148500\n"
+"33\n"
"help.text"
-msgid "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Saves the current document in a different location, or with a different file name or file type.</ahelp></variable>"
-msgstr "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Lưu tài liệu hiện tại vào vị trí khác, với tên tập tin khác, và/hay với kiểu tập tin khác.</ahelp></variable>"
+msgid "1.5 lines"
+msgstr "1,5 dòng"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3155934\n"
-"64\n"
+"05030100.xhp\n"
+"par_id3150094\n"
+"34\n"
"help.text"
-msgid "The following sections describe the <emph><item type=\"productname\">%PRODUCTNAME</item>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item>Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgid "<variable id=\"eineinhalbzeiligtext\">Sets the line spacing to 1.5 lines. </variable>"
+msgstr "<variable id=\"eineinhalbzeiligtext\">Đặt khoảng cách giữa hai dòng thành 1.5 dòng. </variable>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3147654\n"
-"59\n"
+"05030100.xhp\n"
+"hd_id3149378\n"
+"36\n"
"help.text"
-msgid "To save a document as a template, use the command <emph>File - Templates - Save</emph>."
-msgstr "Để lưu một tài liệu dạng mẫu, dùng câu lệnh <emph>Tập tin > Mẫu > Lưu</emph>."
+msgid "Double"
+msgstr "Đôi"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3146775\n"
-"19\n"
+"05030100.xhp\n"
+"par_id3154512\n"
+"37\n"
"help.text"
-msgid "Up One Level"
-msgstr "Lên một bậc"
+msgid "<variable id=\"zweizeiligtext\">Sets the line spacing to two lines. </variable>"
+msgstr "<variable id=\"zweizeiligtext\">Đặt khoảng cách giữa hai dòng thành 2 dòng. </variable>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3153821\n"
-"20\n"
+"05030100.xhp\n"
+"hd_id3151206\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_LEVELUP\">Move up one directory in the directory hierarchy. Long-click to see the higher level directories.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_LEVELUP\">Đi lên một bậc trong hệ thống cấp bậc thư mục. Ấn giữ nút chuột để xem các thư mục bậc trên.</ahelp>"
+msgid "Proportional"
+msgstr "Tỷ lệ"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3159157\n"
-"21\n"
+"05030100.xhp\n"
+"par_id3147494\n"
+"40\n"
"help.text"
-msgid "Create New Directory"
-msgstr "Tạo thư mục mới"
+msgid "Select this option and then enter a percentage value in the box, where 100% corresponds to single line spacing."
+msgstr "Bật tùy chọn này, sau đó nhập vào hộp này một giá trị phân trăm (100% tương ứng với khoảng cách dòng đơn)."
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3155583\n"
-"22\n"
+"05030100.xhp\n"
+"hd_id3156332\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_CREATEDIRECTORY\">Creates a new directory.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_CREATEDIRECTORY\">Tạo một thư mục mới.</ahelp>"
+msgid "At Least"
+msgstr "Ít nhất"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3149578\n"
-"52\n"
+"05030100.xhp\n"
+"par_id3157965\n"
+"42\n"
"help.text"
-msgid "Default Directory"
-msgstr "Thư mục mặc định"
+msgid "Sets the minimum line spacing to the value that you enter in the box."
+msgstr "Đặt khoảng cách dòng tối thiểu thành giá trị bạn nhập vào hộp."
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3149275\n"
-"53\n"
+"05030100.xhp\n"
+"par_id3150744\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_DEFAULTDIRECTORY\">Displays the files in the default user directory.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_DEFAULTDIRECTORY\">Hiển thị các tập tin trong thư mục người dùng mặc định.</ahelp>"
+msgid "If you use different font sizes within a paragraph, the line spacing is automatically adjusted to the largest font size. If you prefer to have identical spacing for all lines, specify a value in <emph>At least</emph> that corresponds to the largest font size."
+msgstr "Nếu bạn dùng các kích cỡ phông khác nhau trong cùng đoạn văn, khoảng cách dòng được điều chỉnh tự động thành kích cỡ phông lớn nhất được dùng. Nếu bạn thích dùng khoảng cách dòng trùng qua văn bản, ghi rõ trong hộp <emph>Ít nhất</emph> một giá trị tương ứng với kích cỡ phông lớn nhất."
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3155628\n"
-"29\n"
+"05030100.xhp\n"
+"hd_id3153927\n"
+"43\n"
"help.text"
-msgid "Display area"
-msgstr "Vùng hiển thị"
+msgid "Leading"
+msgstr "Dẫn tới"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3149902\n"
-"30\n"
+"05030100.xhp\n"
+"par_id3153354\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_FILEVIEW\">Displays the files and directories in the directory that you are in.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_FILEVIEW\">Hiển thị các tập tin và thư mục đều nằm trong thư mục bạn ở.</ahelp>"
+msgid "Sets the height of the vertical space that is inserted between two lines."
+msgstr "Đặt chiều cao của khoảng cách thẳng đứng được chèn vào giữa hai dòng."
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3154810\n"
-"37\n"
+"05030100.xhp\n"
+"hd_id3155443\n"
+"54\n"
"help.text"
-msgid "File name"
-msgstr "Tên tập tin"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fixed </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cố định </caseinline></switchinline>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3153626\n"
-"38\n"
+"05030100.xhp\n"
+"par_id3153711\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_FILEURL\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_FILEURL\">Nhập một tên tập tin, hoặc đường dẫn đến tập tin. Cũng có thể nhập một địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> chỉ tới tập tin (địa chỉ này phải bao gồm phần giao thức, v.d. http://).</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Sets the line spacing to exactly match the value that you enter in the box. This can result in cropped characters. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đặt khoảng cách dòng để khớp chính xác với giá trị bạn nhập vào hộp. Ghi chú : có thể gây ra ký tự bị xén. </caseinline></switchinline>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3149669\n"
-"39\n"
+"05030100.xhp\n"
+"hd_id3156383\n"
+"45\n"
"help.text"
-msgid "File type"
-msgstr "Kiểu tập tin"
+msgid "of"
+msgstr "theo"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3156343\n"
-"40\n"
+"05030100.xhp\n"
+"par_id3154304\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_FILETYPE\">Select the file format for the document that you are saving.</ahelp> In the display area, only the documents with this file type are displayed. File types are described in <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>."
-msgstr "<ahelp hid=\"HID_FILESAVE_FILETYPE\">Chọn định dạng tập tin cho tài liệu bạn đang lưu.</ahelp> Trong vùng trình bày thì chỉ hiển thị những tài liệu có kiểu tập tin này. Các kiểu tập tin được diễn tả trong phần <link href=\"text/shared/00/00000020.xhp\" name=\"Thông tin về bộ lọc Nhập/Xuất khẩu\">Thông tin về bộ lọc Nhập/Xuất khẩu</link>."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC\">Enter the value to use for the line spacing.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC\">Nhập giá trị cần dùng cho khoảng cách dòng.</ahelp>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3145116\n"
-"41\n"
+"05030100.xhp\n"
+"hd_id3154965\n"
+"48\n"
"help.text"
-msgid "Always save your document in a <item type=\"productname\">%PRODUCTNAME</item> file type before saving it to an external file type. When you export to an external file type, some formatting features may be lost."
-msgstr "Lúc nào cũng nên lưu tài liệu theo một kiểu tập tin <item type=\"productname\">%PRODUCTNAME</item> trước khi xuất khẩu theo kiểu tập tin bên ngoài. Khi bạn xuất theo một kiểu tập tin bên ngoài, một số tính năng định dạng có thể bị mất."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đăng ký đúng </caseinline></switchinline>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3147228\n"
-"42\n"
+"05030100.xhp\n"
+"hd_id3146316\n"
+"50\n"
"help.text"
-msgid "Save"
-msgstr "Lưu"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Activate </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kích hoạt</caseinline></switchinline>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3154068\n"
-"43\n"
+"05030100.xhp\n"
+"par_id3156315\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_DOSAVE\">Saves the file.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_DOSAVE\">Lưu lại tập tin.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER\">Aligns the baseline of each line of text to a vertical document grid, so that each line is the same height. To use this feature, you must first activate the <emph>Register-true </emph>option for the current page style. To do this, choose <emph>Format - Page</emph>, click on the <emph>Page </emph>tab, and then select the<emph> Register-true</emph> box in the<emph> Layout settings</emph> area.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER\">Chỉnh canh đường cơ bản của mỗi dòng văn bản theo một lưới tài liệu thẳng đứng, để mỗi dòng có cùng một chiều cao. Để sử dụng tính năng này, trước tiên bạn cần phải kích hoạt tùy chọn <emph>Đăng ký đúng</emph> cho kiểu dáng trang hiện thời. Để làm như thế, chọn lệnh <emph>Định dạng > Trang</emph>, nhấn vào thẻ <emph>Trang</emph>, sau đó bật tùy chọn <emph>Đăng ký đúng</emph> trong vùng <emph>Thiết lập Bố trí</emph>.</ahelp></caseinline></switchinline>"
-#: 01070000.xhp
+#: 05030100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3145744\n"
-"44\n"
+"05030100.xhp\n"
+"par_id9267250\n"
"help.text"
-msgid "Save with password"
-msgstr "Lưu bằng mật khẩu"
+msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
+msgstr "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Ghi Đăng ký đúng\">Ghi Đăng ký đúng</link>"
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3145152\n"
-"45\n"
+"05030300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Protects the file with a <link href=\"text/shared/01/password_dlg.xhp\" name=\"password\">password</link> that must be entered before a user can open the file.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Bảo vệ tập tin bằng một <link href=\"text/shared/01/password_dlg.xhp\" name=\"mật khẩu\">mật khẩu</link> mà phải được nhập vào để mở tập tin.</ahelp>"
+msgid "Tabs"
+msgstr "Tab"
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3152920\n"
-"65\n"
+"05030300.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "Only documents using the <item type=\"productname\">%PRODUCTNAME</item> XML-based format can be saved with a password."
-msgstr "Chỉ tài liệu theo định dạng dựa vào XML của <item type=\"productname\">%PRODUCTNAME</item> có thể được lưu bằng mật khẩu."
+msgid "<bookmark_value>formats; tabulators</bookmark_value><bookmark_value>fill characters with tabulators</bookmark_value><bookmark_value>tab stops;settings</bookmark_value>"
+msgstr "<bookmark_value>định dạng; cột tab</bookmark_value><bookmark_value>ký tự điền vào có khoảng tab</bookmark_value><bookmark_value>vị trí tab;thiết lập</bookmark_value>"
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3147502\n"
-"66\n"
+"05030300.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "Edit filter settings"
-msgstr "Sửa thiết lập lọc"
+msgid "<link href=\"text/shared/01/05030300.xhp\" name=\"Tabs\">Tabs</link>"
+msgstr "<link href=\"text/shared/01/05030300.xhp\" name=\"Tab\">Tab</link>"
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3152883\n"
-"67\n"
+"05030300.xhp\n"
+"par_id3153577\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_CUSTOMIZEFILTER\">Allows you to set the spreadsheet saving options for some types of data files.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_CUSTOMIZEFILTER\">Cho phép bạn đặt các tùy chọn về chức năng lưu bảng tính cho một số kiểu tập tin dữ liệu nào đó.</ahelp>"
+msgid "<ahelp hid=\"HID_TABULATOR\">Set the position of a tab stop in a paragraph.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABULATOR\">Đặt vị trí của cột tab trong đoạn văn.</ahelp>"
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3154988\n"
-"47\n"
+"05030300.xhp\n"
+"par_id3147653\n"
+"40\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "If you want, you can also use the ruler to set the tab positions."
+msgstr "Bạn cũng có thể đặt vị trí tab trên thước đo."
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3159125\n"
-"48\n"
+"05030300.xhp\n"
+"hd_id3154897\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_SELECTION\">Exports only the selected graphic objects in <item type=\"productname\">%PRODUCTNAME</item> Draw and Impress to another format. If this box is not checked, the entire document is exported.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_SELECTION\">Xuất khẩu theo định dạng khác chỉ những đối tượng đồ họa đã chọn trong chương trình <item type=\"productname\">%PRODUCTNAME</item> Draw hay Impress. Không bật tùy chọn này thì xuất khẩu toàn tài liệu.</ahelp>"
+msgid "Position"
+msgstr "Vị trí"
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3148577\n"
-"70\n"
+"05030300.xhp\n"
+"par_id3153331\n"
+"4\n"
"help.text"
-msgid "If you are exporting to any document file type, the entire document is exported."
-msgstr "Nếu bạn xuất khẩu theo bất cứ kiểu tập tin tài liệu nào thì xuất khẩu toàn tài liệu."
+msgid "<ahelp hid=\"SVX:METRICBOX:RID_SVXPAGE_TABULATOR:ED_TABPOS\">Select a tab stop type, enter a new measurement, and then click <emph>New</emph>. If you want, you can also specify the measurement units to use for the tab (cm for centimeter, or \" for inches). Existing tabs to the left of the first tab that you set are removed.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICBOX:RID_SVXPAGE_TABULATOR:ED_TABPOS\">Chọn một vị trí tab, nhập số lượng mới, sau đó nhấn vào nút <emph>Mới</emph>. Bạn cũng có thể ghi rõ đơn vị đo cần dùng cho khoảng tab (cm là xenti-mét, \" là insơ). Vị trí tab nào đã tồn tại bên trái vị trí tab bạn tạo thì bị gỡ bỏ.</ahelp>"
-#: 01070000.xhp
+#: 05030300.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3146986\n"
+"05030300.xhp\n"
+"hd_id3155180\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export of Text Files\">Export of Text Files</link>"
-msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Xuất khẩu Tập tin Văn bản\">Xuất khẩu Tập tin Văn bản</link>"
+msgid "Type"
+msgstr "Kiểu"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"tit\n"
+"05030300.xhp\n"
+"par_id3149514\n"
+"10\n"
"help.text"
-msgid "Material"
-msgstr "Nguyên liệu"
+msgid "Select the type of tab stop that you want to modify."
+msgstr "Chọn kiểu vị trí tab bạn muốn sửa đổi."
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154349\n"
-"1\n"
+"05030300.xhp\n"
+"hd_id3157910\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350600.xhp\" name=\"Material\">Material</link>"
-msgstr "<link href=\"text/shared/01/05350600.xhp\" name=\"Nguyên liệu\">Nguyên liệu</link>"
+msgid "Left"
+msgstr "Trái"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3160463\n"
-"2\n"
+"05030300.xhp\n"
+"par_id3146847\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXFLOAT_3D_BTN_MATERIAL\">Changes the coloring of the selected 3D object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXFLOAT_3D_BTN_MATERIAL\">Thay đổi màu sắc của đối tượng 3D đã chọn.</ahelp>"
+msgid "The name of this tab stop is <emph>Left/Top</emph> if Asian language support is enabled."
+msgstr "Tên của vị trí tab này là <emph>Trái/Trên</emph> nếu hỗ trợ ngôn ngữ Châu Á đã được hiệu lực."
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154682\n"
-"4\n"
+"05030300.xhp\n"
+"par_id3153698\n"
+"12\n"
"help.text"
-msgid "Material"
-msgstr "Nguyên liệu"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT\">Aligns the left edge of the text to the tab stop and extends the text to the right.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT\">Chỉnh canh cạnh bên trái của văn bản theo cột tab, sau đó mở rộng văn bản qua bên phải.</ahelp>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3152363\n"
-"29\n"
+"05030300.xhp\n"
+"hd_id3149763\n"
+"13\n"
"help.text"
-msgid "Assigns a predefined color scheme or lets you create your own color scheme."
-msgstr "Gán một lược đồ màu đã xác định sẵn, hoặc cho phép bạn tạo một lược đồ màu riêng."
+msgid "Right"
+msgstr "Phải"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154497\n"
-"9\n"
+"05030300.xhp\n"
+"par_id3148491\n"
+"42\n"
"help.text"
-msgid "Favorites"
-msgstr "Ưa thích"
+msgid "This name of this tab stop is <emph>Right/Bottom</emph> if Asian language support is enabled."
+msgstr "Tên của vị trí tab này là <emph>Bên phải/dưới</emph> nếu hỗ trợ ngôn ngữ Châu Á đã được hiệu lực."
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3153303\n"
-"10\n"
+"05030300.xhp\n"
+"par_id3151384\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_FAVORITES\">Select a predefined color scheme, or select <emph>User-defined</emph> to define a custom color scheme.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_FAVORITES\">Chọn một lược đồ màu đã xác định sẵn, hoặc chọn mục <emph>Tự xác định</emph> để thiết kế một lược đồ màu riêng.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT\">Aligns the right edge of the text to the tab stop and extends the text to the left of the tab stop.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT\">Chỉnh canh cạnh bên phải của văn bản theo cột tab, sau đó mở rộng văn bản qua bên trái.</ahelp>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3093440\n"
+"05030300.xhp\n"
+"hd_id3153628\n"
+"15\n"
+"help.text"
+msgid "Center"
+msgstr "Giữa"
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3154347\n"
"16\n"
"help.text"
-msgid "Object color"
-msgstr "Màu đối tượng"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER\">Aligns the center of the text to the tab stop.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER\">Chỉnh canh điểm giữa của văn bản theo cột tab.</ahelp>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3157896\n"
+"05030300.xhp\n"
+"hd_id3148552\n"
"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_COLOR\">Select the color that you want to apply to the object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_COLOR\">Chọn màu bạn muốn áp dụng cho đối tượng.</ahelp>"
+msgid "Decimal"
+msgstr "Thập phân"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3147373\n"
+"05030300.xhp\n"
+"par_id3144422\n"
"18\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL\">Aligns the decimal point of a number to the center of the tab stop and text to the left of the tab.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL\">Chỉnh canh dấu thập phân của con số theo điểm giữa của khoảng tab và văn bản bên trái.</ahelp>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3147571\n"
+"05030300.xhp\n"
+"par_id3154388\n"
"19\n"
"help.text"
-msgid "Illumination color"
-msgstr "Màu chiếu sáng"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The character that is used as a decimal separator depends on the regional setting of your operating system. </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Ký tự dùng làm dấu tách thập phân thì phụ thuộc vào miền địa phương của hệ điều hành. </caseinline></switchinline>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3159234\n"
+"05030300.xhp\n"
+"hd_id3153380\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_EMISSION\">Select the color to illuminate the object.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_EMISSION\">Chọn màu để chiếu sáng đối tượng.</ahelp>"
+msgid "Character"
+msgstr "Ký tự"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3153748\n"
+"05030300.xhp\n"
+"par_id3153778\n"
"21\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR\">Enter a character that you want the decimal tab to use as a decimal separator.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR\">Nhập ký tự bạn muốn dùng làm dấu tách thập phân.</ahelp>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154983\n"
+"05030300.xhp\n"
+"hd_id3159151\n"
"22\n"
"help.text"
-msgid "Specular"
-msgstr "Long lanh"
+msgid "Fill Character"
+msgstr "Ký tự tô đầy"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3147008\n"
+"05030300.xhp\n"
+"par_id3154153\n"
"23\n"
"help.text"
-msgid "Sets the light reflection properties for the selected object."
-msgstr "Đặt các thuộc tính về chức năng phản chiếu ánh sáng cho đối tượng đã chọn."
+msgid "Specify the characters to use as leader to the left of the tab stop."
+msgstr "Ghi rõ các ký tự cần dùng để dẫn tới bên trái vị trí tab."
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3150355\n"
+"05030300.xhp\n"
+"hd_id3144760\n"
"24\n"
"help.text"
-msgid "Color"
-msgstr "Màu"
+msgid "None"
+msgstr "Không có"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3151111\n"
+"05030300.xhp\n"
+"par_id3143231\n"
"25\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_SPECULAR\">Select the color that you want the object to reflect.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_SPECULAR\">Chọn màu bạn muốn đối tượng phản chiếu.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO\">Inserts no fill characters, or removes existing fill characters to the left of the tab stop.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO\">Không chèn ký tự tô đầy.</ahelp>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3152996\n"
+"05030300.xhp\n"
+"hd_id3152933\n"
"26\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
+msgid "......."
+msgstr "......."
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3152909\n"
+"05030300.xhp\n"
+"par_id3153192\n"
"27\n"
"help.text"
-msgid "Intensity"
-msgstr "Cường độ"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS\">Fills the empty space to the left of the tab stop with dots.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS\">Tô đầy bằng dấu chấm vùng rỗng bên trái vị trí tab.</ahelp>"
-#: 05350600.xhp
+#: 05030300.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3159256\n"
+"05030300.xhp\n"
+"hd_id3156280\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXFLOAT_3D_MTR_MAT_SPECULAR_INTENSITY\">Enter the intensity of the specular effect.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXFLOAT_3D_MTR_MAT_SPECULAR_INTENSITY\">Nhập cường độ của hiệu ứng long lanh.</ahelp>"
+msgid "------"
+msgstr "------"
-#: 05120100.xhp
+#: 05030300.xhp
msgctxt ""
-"05120100.xhp\n"
-"tit\n"
+"05030300.xhp\n"
+"par_id3156212\n"
+"29\n"
"help.text"
-msgid "Single Line"
-msgstr "Dòng đơn"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE\">Fills the empty space to the left of the tab stop with dashes.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE\">Tô đầy bằng dấu gạch vùng rỗng bên trái vị trí tab.</ahelp>"
-#: 05120100.xhp
+#: 05030300.xhp
msgctxt ""
-"05120100.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"05030300.xhp\n"
+"hd_id3157960\n"
+"30\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120100.xhp\" name=\"Single Line\">Single Line</link>"
-msgstr "<link href=\"text/shared/01/05120100.xhp\" name=\"Dòng đơn\">Dòng đơn</link>"
+msgid "______"
+msgstr "______"
-#: 05120100.xhp
+#: 05030300.xhp
msgctxt ""
-"05120100.xhp\n"
-"par_id3154794\n"
-"2\n"
+"05030300.xhp\n"
+"par_id3151043\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpacePara1\" visibility=\"visible\">Applies single line spacing to the current paragraph. This is the default setting.</ahelp>"
-msgstr "<ahelp hid=\".uno:SpacePara1\" visibility=\"visible\">Áp dụng khoảng cách dòng đơn cho đoạn văn hiện tại. Đây là thiết lập mặc định.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE\">Draws a line to fill the empty space to the left of the tab stop.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE\">Vẽ một đường thẳng để tô đầy vùng rỗng bên tái vị trí tab.</ahelp>"
-#: gallery_files.xhp
+#: 05030300.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"tit\n"
+"05030300.xhp\n"
+"hd_id3153770\n"
+"32\n"
"help.text"
-msgid "Files"
-msgstr "Tập tin"
+msgid "Character"
+msgstr "Ký tự"
-#: gallery_files.xhp
+#: 05030300.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3150756\n"
-"1\n"
+"05030300.xhp\n"
+"par_id3150441\n"
+"33\n"
"help.text"
-msgid "Files"
-msgstr "Tập tin"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER\">Allows you to specify a character to fill the empty space to the left of the tab stop.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER\">Cho phép bạn ghi rõ một ký tự cần dùng để tô đầy vùng rỗng bên trái vị trí tab.</ahelp>"
-#: gallery_files.xhp
+#: 05030300.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3153882\n"
-"2\n"
+"05030300.xhp\n"
+"hd_id3152596\n"
+"36\n"
"help.text"
-msgid "<variable id=\"stargallerymanager\">Adds new files to the selected theme. </variable>"
-msgstr "<variable id=\"stargallerymanager\">Thêm tập tin mới vào sắc thái đã chọn. </variable>"
+msgid "New"
+msgstr "Mới"
-#: gallery_files.xhp
+#: 05030300.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3153089\n"
-"5\n"
+"05030300.xhp\n"
+"par_id3163717\n"
+"37\n"
"help.text"
-msgid "File Type"
-msgstr "Kiểu tập tin"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_NEW\">Adds the tab stop that you defined to the current paragraph.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_NEW\">Thêm vào đoạn văn hiện tại vị trí tab bạn ghi rõ.</ahelp>"
-#: gallery_files.xhp
+#: 05030300.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3154497\n"
-"6\n"
+"05030300.xhp\n"
+"hd_id3153945\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE\">Select the type of file that you want to add.</ahelp>"
-msgstr "<ahelp hid=\"SVX:COMBOBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE\">Chọn kiểu tập tin bạn muốn thêm.</ahelp>"
+msgid "Clear All"
+msgstr "Gột tất cả"
-#: gallery_files.xhp
+#: 05030300.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3153935\n"
-"7\n"
+"05030300.xhp\n"
+"par_id3145660\n"
+"39\n"
"help.text"
-msgid "Files found"
-msgstr "Tập tin đã tìm"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_DELALL\">Removes all of the tab stops that you defined under <emph>Position</emph>. Sets <emph>Left</emph> tab stops at regular intervals as the default tab stops.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_DELALL\">Gỡ bỏ mọi vị trí tab bạn đã xác định dưới mục <emph>Vị trí</emph>. Đặt thành cột tab mặc định vị trí tab bên <emph>Trái</emph> sau mỗi khoảng.</ahelp>"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3145829\n"
-"8\n"
+"05030500.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND\">Lists the available files. Select the file(s) that you want to add, and then click <emph>Add</emph>. To add all of the files in the list, click <emph>Add All</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND\">Liệt kê các tập tin sẵn sàng. Lựa chọn những tập tin bạn muốn thêm, sau đó nhấn vào nút <emph>Thêm</emph>. Để thêm tất cả các tập tin trong danh sách, nhấn vào nút<emph>Thêm tất cả</emph>.</ahelp>"
+msgid "Borders"
+msgstr "Viền"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3154751\n"
-"9\n"
+"05030500.xhp\n"
+"hd_id3154812\n"
+"1\n"
"help.text"
-msgid "Find files"
-msgstr "Tìm tập tin"
+msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Viền\">Viền</link>"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3147557\n"
-"10\n"
+"05030500.xhp\n"
+"par_id3151097\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH\">Locate the directory containing the files that you want to add, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH\">Tìm thư mục chứa những tập tin bạn muốn thêm, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/BorderPage\">Sets the border options for the selected objects in Writer or Calc.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/BorderPage\">Đặt các tùy chọn viền về những đối tượng đã chọn trong mô-đun Writer hay Calc.</ahelp>"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3154317\n"
-"13\n"
+"05030500.xhp\n"
+"par_id3155351\n"
+"44\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "You can specify the border position, size, and style in Writer or Calc. <switchinline select=\"appl\"><caseinline select=\"WRITER\">In $[officename] Writer, you can add borders to pages, frames, graphics, tables, paragraphs, and to embedded objects. </caseinline></switchinline>"
+msgstr "Trong Writer hay Calc, bạn có thể ghi rõ vị trí, kích cỡ và kích cỡ của viền.<switchinline select=\"appl\"><caseinline select=\"WRITER\">Trong $[officename] Writer, bạn có thể thêm viền vào trang, khung, đồ họa, bảng, đoạn văn và đối tượng nhúng. </caseinline></switchinline>"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3150774\n"
-"14\n"
+"05030500.xhp\n"
+"par_id3152997\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE\">Adds the selected file(s) to the current theme.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE\">Thêm vào sắc thái hiện tại những tập tin đã chọn.</ahelp>"
+msgid "To modify the border of an entire table, place the cursor in a table cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab. To modify the border of a table cell, select the cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab."
+msgstr "Để sửa đổi viền của toàn bảng, để con trỏ vào ô bảng, nhấn-phải, chọn mục <emph>Bảng</emph>, sau đó nhấn vào thẻ <emph>Viền</emph>. Để sửa đổi viền của một ô bảng, lựa chọn ô đó, chọn mục <emph>Bảng</emph>, sau đó nhấn vào thẻ <emph>Viền</emph>."
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3149751\n"
-"15\n"
+"05030500.xhp\n"
+"hd_id3145417\n"
+"3\n"
"help.text"
-msgid "Add all"
-msgstr "Thêm tất cả"
+msgid "Line arrangement"
+msgstr "Bố trí đường"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3156426\n"
-"16\n"
+"05030500.xhp\n"
+"par_id3153332\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL\">Adds all of the files in the list to the current theme.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL\">Thêm vào sắc thái hiện tại tất cả các tập tin trong danh sách.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/presets\">Select a predefined border style to apply.</ahelp>"
+msgstr ""
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3147088\n"
-"17\n"
+"05030500.xhp\n"
+"par_id3148643\n"
+"5\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "If you are in a table or spreadsheet, you can also add or remove predefined borders. Use the <emph>Borders</emph> icon on the <emph>Table Bar</emph>."
+msgstr "Trong bảng hay bảng tính, bạn cũng có thể thêm hay gỡ bỏ viền đã xác định sẵn. Hãy dùng biểu tượng <emph>Viền</emph> trên thanh <emph>Bảng</emph>."
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3151111\n"
-"18\n"
+"05030500.xhp\n"
+"hd_id3149575\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW\">Displays or hides a preview of the selected file.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW\">Hiển thị hay ẩn ô xem thử của tập tin đã chọn.</ahelp>"
+msgid "Line"
+msgstr "Đường"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3147275\n"
-"19\n"
+"05030500.xhp\n"
+"par_id3152360\n"
+"24\n"
"help.text"
-msgid "Preview box"
-msgstr "Ô xem thử"
+msgid "<ahelp hid=\"cui/ui/borderpage/linestylelb\">Click the border style that you want to apply. The style is applied to the borders selected in the preview.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/linestylelb\">Nhấn vào kiểu dáng viền bạn muốn áp dụng. Kiểu dáng này được áp dụng cho những viền được chọn trong ô xem thử.</ahelp>"
-#: gallery_files.xhp
+#: 05030500.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3153662\n"
-"20\n"
+"05030500.xhp\n"
+"par_id3154938\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_PREVIEW\">Displays a preview of the selected file.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_PREVIEW\">Hiển thị ô xem thử của tập tin đã chọn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/linecolorlb\">Select the line color that you want to use for the selected border(s).</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/linecolorlb\">Chọn màu đường bạn muốn dùng cho các viền đã chọn.</ahelp>"
-#: 06030000.xhp
-#, fuzzy
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"tit\n"
+"05030500.xhp\n"
+"hd_id3150359\n"
+"21\n"
"help.text"
-msgid "Color Replacer"
-msgstr "Thanh Màu"
+msgid "Spacing to contents"
+msgstr "Giãn cách tới nội dung"
-#: 06030000.xhp
-#, fuzzy
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3156324\n"
-"1\n"
+"05030500.xhp\n"
+"par_id3154365\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
-msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Thanh Màu\">Thanh Màu</link>"
+msgid "Specify the amount of space that you want to leave between the border and the contents of the selection."
+msgstr "Ghi rõ khoảng cách bạn muốn để lại giữa viền và nội dung của vùng chọn."
-#: 06030000.xhp
-#, fuzzy
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3145138\n"
-"2\n"
+"05030500.xhp\n"
+"hd_id3147084\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\".uno:BmpMask\">Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics.</ahelp>"
-msgstr "<ahelp hid=\".uno:BmpMask\">Mở hộp thoại bút chọn màu, trong đó bạn có thể thay thế màu sắc trong đồ họa kiểu bitmap và siêu tập tin.</ahelp>"
+msgid "Left"
+msgstr "Trái"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3151262\n"
-"24\n"
+"05030500.xhp\n"
+"par_id3151176\n"
+"46\n"
"help.text"
-msgid "You can replace up to four different colors at one time."
-msgstr "Bạn có khả năng thay thế đến bốn màu cùng lúc."
+msgid "<ahelp hid=\"cui/ui/borderpage/leftmf\">Enter the distance that you want to have between the left border and the contents of the selection.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/leftmf\">Nhập khoảng cách bạn muốn để lại giữa viền bên trái và nội dung của vùng chọn.</ahelp>"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3153894\n"
+"05030500.xhp\n"
+"hd_id3150650\n"
+"47\n"
"help.text"
-msgid "<image id=\"img_id3155616\" src=\"sd/res/pipette.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155616\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155616\" src=\"sd/res/pipette.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155616\">Biểu tượng</alt></image>"
+msgid "Right"
+msgstr "Phải"
-#: 06030000.xhp
-#, fuzzy
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3145669\n"
-"3\n"
+"05030500.xhp\n"
+"par_id3153104\n"
+"48\n"
"help.text"
-msgid "Color Replacer"
-msgstr "Thanh Màu"
+msgid "<ahelp hid=\"cui/ui/borderpage/rightmf\">Enter the distance that you want to have between the right border and the contents of the selection.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/rightmf\">Nhập khoảng cách bạn muốn để lại giữa viền bên phải và nội dung của vùng chọn.</ahelp>"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3153683\n"
-"4\n"
+"05030500.xhp\n"
+"hd_id3150495\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select one of the four source color boxes. Move the mouse pointer over the selected image, and then click the color that you want to replace.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một của bốn hộp màu nguồn. Di chuyển con trỏ chuột ở trên ảnh đã chọn, sau đó nhấn vào màu cần thay thế.</ahelp>"
+msgid "Top"
+msgstr "Trên"
-#: 06030000.xhp
-#, fuzzy
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3149827\n"
-"5\n"
+"05030500.xhp\n"
+"par_id3156212\n"
+"50\n"
"help.text"
-msgid "Color Replacer color"
-msgstr "Chọn màu"
+msgid "<ahelp hid=\"cui/ui/borderpage/topmf\">Enter the distance that you want to have between the top border and the contents of the selection.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/topmf\">Nhập khoảng cách bạn muốn thấy giữa viền bên trên và nội dung của vùng chọn.</ahelp>"
-#: 06030000.xhp
-#, fuzzy
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3146957\n"
-"6\n"
+"05030500.xhp\n"
+"hd_id3150767\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected.</ahelp>"
-msgstr "<ahelp hid=\"HID_BMPMASK_CTL_PIPETTE\">Hiển thị màu trong ảnh đã chọn mà nằm chính xác dưới con trỏ chuột. Tính năng này chỉ sẵn sàng một khi chọn công cụ nút chọn màu.</ahelp>"
+msgid "Bottom"
+msgstr "Dưới"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3154823\n"
-"7\n"
+"05030500.xhp\n"
+"par_id3158410\n"
+"52\n"
"help.text"
-msgid "Replace"
-msgstr "Thay thế"
+msgid "<ahelp hid=\"cui/ui/borderpage/bottommf\">Enter the distance that you want to have between the bottom border and the contents of the selection.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/bottommf\">Nhập khoảng cách bạn muốn thấy giữa viền bên dưới và nội dung của vùng chọn.</ahelp>"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3154983\n"
-"8\n"
+"05030500.xhp\n"
+"hd_id3155429\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC\">Replaces the selected source colors in the current image with the colors that you specify in the <emph>Replace with </emph>boxes.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC\">Thay thế những màu nguồn đã chọn trong ảnh hiện thời bằng những màu bạn ghi rõ trong các hộp <emph>Thay thế bằng</emph>.</ahelp>"
+msgid "Synchronize"
+msgstr "Đồng bộ hoá"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3147275\n"
-"9\n"
+"05030500.xhp\n"
+"par_id3154299\n"
+"54\n"
"help.text"
-msgid "Colors"
-msgstr "Màu sắc"
+msgid "<ahelp hid=\"cui/ui/borderpage/sync\">Applies the same <emph>spacing to contents</emph> setting to all four borders when you enter a new distance.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/sync\">Áp dụng cùng một thiết lập <emph>Giãn cách tới nội dung</emph> cho cả bốn viền khi bạn nhập khoảng cách mới.</ahelp>"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3153031\n"
-"10\n"
+"05030500.xhp\n"
+"bm_id3155855\n"
"help.text"
-msgid "Lists the source colors and the replacement colors."
-msgstr "Liệt kê các màu nguồn và các màu thay thế."
+msgid "<bookmark_value>shadows; borders</bookmark_value><bookmark_value>borders; shadows</bookmark_value><bookmark_value>margins; shadows</bookmark_value>"
+msgstr "<bookmark_value>bóng; viền</bookmark_value><bookmark_value>viền; bóng</bookmark_value><bookmark_value>lề; bóng</bookmark_value>"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3149416\n"
-"11\n"
+"05030500.xhp\n"
+"hd_id3155855\n"
+"31\n"
"help.text"
-msgid "Source color checkbox"
-msgstr "Hộp chọn màu nguồn"
+msgid "Shadow style"
+msgstr "Kiểu bóng"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3149819\n"
-"12\n"
+"05030500.xhp\n"
+"par_id3146975\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4\">Select this checkbox to replace the current <emph>Source color</emph> with the color that you specify in the <emph>Replace with </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4\">Bật tùy chọn này để thay thế <emph>Màu nguồn</emph> hiện thời bằng màu bạn ghi rõ trong hộp <emph>Thay thế</emph>.</ahelp>"
+msgid "You can also apply a shadow effect to borders. For the best results, only apply this effect when all four borders are visible."
+msgstr "Bạn cũng có thể áp dụng cho viền hiệu ứng đổ bóng. Để thu được kết quả đẹp nhất, chỉ áp dụng hiệu ứng này khi cả bốn viền hiện rõ."
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3159116\n"
-"13\n"
+"05030500.xhp\n"
+"par_id3157309\n"
+"43\n"
"help.text"
-msgid "Source color"
-msgstr "Màu nguồn"
+msgid "Graphics or objects that are anchored to a frame in the document cannot exceed the size of the frame. If you apply a shadow to the borders of an object that fills an entire frame, the size of the object is reduced to display the shadows."
+msgstr "Đồ họa hay đối tượng đã thả neo vào khung trong tài liệu thì không thể vượt quá kích cỡ của khung. Nếu bạn đổ bóng từ các viền của một đối tượng chiếm toàn khung, kích cỡ của đối tượng bị giảm để hiển thị bóng đổ."
-#: 06030000.xhp
-#, fuzzy
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3149903\n"
-"14\n"
+"05030500.xhp\n"
+"hd_id3153728\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the color in the selected image that you want to replace. To set the source color, click here, click the Color Replacer, and then click a color in the selected image.</ahelp>"
-msgstr "<ahelp hid=\"HID_BMPMASK_CTL_QCOL_1\">Hiển thị màu trong ảnh đã chọn mà bạn muốn thay thế. Để đặt màu nguồn, nhấn vào đây, nhấn vào công cụ bút chọn màu, sau đó nhấn vào một màu trong ảnh đã chọn.</ahelp>"
+msgid "Position"
+msgstr "Vị trí"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3150085\n"
-"15\n"
+"05030500.xhp\n"
+"par_id3153364\n"
+"34\n"
"help.text"
-msgid "Tolerance"
-msgstr "Dung sai"
+msgid "<ahelp hid=\"cui/ui/borderpage/shadows\">Click a shadow style for the selected borders.</ahelp>"
+msgstr ""
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3144438\n"
-"16\n"
+"05030500.xhp\n"
+"hd_id3156444\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4\">Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4\">Đặt dung sai để thay thế màu nguồn trong ảnh nguồn. Để thay thế các màu tương tự với màu bạn đã chọn, nhập giá trị nhỏ hơn. Để thay thế phạm vi màu rộng hơn, nhập giá trị lớn hơn.</ahelp>"
+msgid "Distance"
+msgstr "Khoảng cách"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3156156\n"
-"17\n"
+"05030500.xhp\n"
+"par_id3156060\n"
+"36\n"
"help.text"
-msgid "Replace with"
-msgstr "Thay thế bằng"
+msgid "<ahelp hid=\"cui/ui/borderpage/distancemf\">Enter the width of the shadow.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/distancemf\">Nhập bề rộng của bóng.</ahelp>"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3154173\n"
-"18\n"
+"05030500.xhp\n"
+"hd_id3155307\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4\">Lists the available replacement colors. To modify the current list of colors, deselect the image, choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4\">Liệt kê các màu thay thế sẵn sàng. Để sửa đổi danh sách màu sắc hiện thời, bỏ chọn ảnh, chọn lệnh <emph>Định dạng > Ảnh</emph>, sau đó nhấn vào thẻ <emph>Màu sắc</emph>.</ahelp>"
+msgid "Color"
+msgstr "Màu"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3156152\n"
-"19\n"
+"05030500.xhp\n"
+"par_id3146147\n"
+"38\n"
"help.text"
-msgid "Transparency"
-msgstr "Trong suốt"
+msgid "<ahelp hid=\"cui/ui/borderpage/shadowcolorlb\">Select a color for the shadow.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/borderpage/shadowcolorlb\">Chọn một màu cho bóng.</ahelp>"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3154905\n"
-"20\n"
+"05030500.xhp\n"
+"par_idN10A2B\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS\">Replaces transparent areas in the current image with the color that you select.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS\">Thay thế các vùng trong suốt trong ảnh hiện thời bằng màu bạn chọn.</ahelp>"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3145087\n"
-"21\n"
+"05030500.xhp\n"
+"par_idN10A2F\n"
"help.text"
-msgid "Transparency"
-msgstr "Trong suốt"
+msgid "Specifies the properties for the current paragraph or the selected paragraphs."
+msgstr "Ghi rõ các thuộc tính về đoạn văn hiện tại, hay các đoạn văn đã chọn."
-#: 06030000.xhp
+#: 05030500.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3148946\n"
-"22\n"
+"05030500.xhp\n"
+"par_idN10A3A\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS\">Select the color to replace the transparent areas in the current image.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS\">Chọn màu để thay thế các vùng trong suốt trong ảnh hiện thời.</ahelp>"
+msgid "Merge with next paragraph"
+msgstr "Trộn với đoạn văn sau"
-#: 05240000.xhp
+#: 05030500.xhp
msgctxt ""
-"05240000.xhp\n"
-"tit\n"
+"05030500.xhp\n"
+"par_idN10A3E\n"
"help.text"
-msgid "Flip"
-msgstr "Lật"
+msgid "<ahelp hid=\"cui/ui/borderpage/mergewithnext\">Merges the border style and the shadow style of the current paragraph with the next paragraph.</ahelp> These styles are only merged if the indent, border, and shadow styles of the next paragraph are the same as the current paragraph. This option is also available for Paragraph Styles."
+msgstr "<ahelp hid=\"cui/ui/borderpage/mergewithnext\">Trộn kiểu dáng viền và kiểu dáng bóng của đoạn văn hiện tại với đoạn văn kế tiếp.</ahelp> Chỉ có thể trộn với nhau các kiểu dáng này nếu đoạn văn kế tiếp có cùng một kiểu dáng thụt lề, viền và bóng với đoạn văn hiện tại. Tùy chọn này cũng sẵn sàng cho Kiểu dáng Đoạn văn."
-#: 05240000.xhp
+#: 05030500.xhp
msgctxt ""
-"05240000.xhp\n"
-"bm_id3151264\n"
+"05030500.xhp\n"
+"par_idN109BA\n"
"help.text"
-msgid "<bookmark_value>draw objects; flipping</bookmark_value><bookmark_value>flipping draw objects</bookmark_value>"
-msgstr "<bookmark_value>đối tượng vẽ; lật</bookmark_value><bookmark_value>lật đối tượng vẽ</bookmark_value>"
+msgid "Merge adjacent line styles"
+msgstr "Trộn các kiểu đường kề nhau"
-#: 05240000.xhp
+#: 05030500.xhp
msgctxt ""
-"05240000.xhp\n"
-"hd_id3151264\n"
-"1\n"
+"05030500.xhp\n"
+"par_idN109BE\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240000.xhp\" name=\"Flip\">Flip</link>"
-msgstr "<link href=\"text/shared/01/05240000.xhp\" name=\"Lật\">Lật</link>"
+msgid "<ahelp hid=\"cui/ui/borderpage/mergeadjacent\">Merges two different border styles of adjacent cells in a Writer table into one border style. This property is valid for a whole table in a Writer document.</ahelp>"
+msgstr ""
-#: 05240000.xhp
+#: 05030500.xhp
msgctxt ""
-"05240000.xhp\n"
-"par_id3145759\n"
-"2\n"
+"05030500.xhp\n"
+"par_idN109C1\n"
"help.text"
-msgid "<ahelp hid=\".\">Flips the selected object horizontally, or vertically.</ahelp>"
-msgstr "<ahelp hid=\".\">Lật đối tượng đã chọn theo chiều ngang hay dọc.</ahelp>"
+msgid "The rules can be condensed to the statement that the stronger attribute wins. If, for example, one cell has a red border of 2 point width, and the adjacent cell has a blue border of 3 point width, then the common border between these two cells will be blue with 3 point width."
+msgstr "Quy tắc là thuộc tính mạnh hơn có quyền cao hơn. Chẳng hạ, nếu ô bảng này có viền màu đỏ có bề rộng 2 điểm, và ô kề nhau có viền màu xanh có bề rộng 3 điểm thì viền chung giữa hai ô này là màu viên và có bề rộng 3 điểm."
-#: 02060000.xhp
+#: 05030600.xhp
msgctxt ""
-"02060000.xhp\n"
+"05030600.xhp\n"
"tit\n"
"help.text"
-msgid "Paste"
-msgstr "Dán"
+msgid "Background"
+msgstr "Nền"
-#: 02060000.xhp
+#: 05030600.xhp
msgctxt ""
-"02060000.xhp\n"
-"bm_id3149031\n"
+"05030600.xhp\n"
+"bm_id3151097\n"
"help.text"
-msgid "<bookmark_value>pasting;cell ranges</bookmark_value><bookmark_value>clipboard; pasting</bookmark_value><bookmark_value>cells;pasting</bookmark_value>"
-msgstr "<bookmark_value>dán;phạm vi ô bảng</bookmark_value><bookmark_value>bảng nháp; dán</bookmark_value><bookmark_value>ô bảng;dán</bookmark_value>"
+msgid "<bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
+msgstr "<bookmark_value>khung;nền</bookmark_value><bookmark_value>nền;khung/phần/chỉ mục</bookmark_value><bookmark_value>phần; nền</bookmark_value><bookmark_value>chỉ mục;nền</bookmark_value><bookmark_value>chân trang;nền</bookmark_value><bookmark_value>đầu trang;nền</bookmark_value>"
-#: 02060000.xhp
+#: 05030600.xhp
msgctxt ""
-"02060000.xhp\n"
-"hd_id3149031\n"
+"05030600.xhp\n"
+"hd_id3151097\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02060000.xhp\" name=\"Paste\">Paste</link>"
-msgstr "<link href=\"text/shared/01/02060000.xhp\" name=\"Dán\">Dán</link>"
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background\">Background</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Nền\">Nền</link>"
-#: 02060000.xhp
+#: 05030600.xhp
msgctxt ""
-"02060000.xhp\n"
-"par_id3149511\n"
+"05030600.xhp\n"
+"par_id3153748\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:Paste\">Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"cui/ui/backgroundpage/BackgroundPage\">Set the background color or graphic.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/BackgroundPage\">Đặt màu hay ảnh làm nền.</ahelp>"
-#: 02060000.xhp
+#: 05030600.xhp
msgctxt ""
-"02060000.xhp\n"
-"par_id3147834\n"
+"05030600.xhp\n"
+"par_id3147653\n"
+"34\n"
+"help.text"
+msgid "You can specify the background for <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraphs, pages, headers, footers, text frames, tables, table cells, sections, and indexes.</caseinline><caseinline select=\"CALC\">cells and pages.</caseinline></switchinline>"
+msgstr "Bạn có khả năng ghi rõ nền cho các <switchinline select=\"appl\"><caseinline select=\"WRITER\">đoạn văn, trang, phần đầu/chân trang, khung văn bản, bảng, ô bảng, phần và chỉ mục. </caseinline><caseinline select=\"CALC\">ô bảng và trang. </caseinline></switchinline>"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3154514\n"
+"4\n"
+"help.text"
+msgid "As"
+msgstr "Dạng"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3154380\n"
"5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trên bảng tính, khi bạn dán một phạm vi ô từ bảng nháp, kết quả phụ thuộc vào vùng chọn hiện thời. Chỉ chọn một ô thì phạm vi ô được dán từ ô đó. Nếu bạn ngụ ý một phạm vi ô rộng hơn phạm vi ô trên bảng nháp, phạm vi ô từ bảng nháp sẽ được dán lặp lại để điền vào phạm vi ô đã ngụ ý (tương tự với lát đều ảnh ở nền). </caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/selectlb\">Select the type of background that you want to apply.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/selectlb\">Chọn kiểu nền cần áp dụng.</ahelp>"
-#: 02230300.xhp
+#: 05030600.xhp
msgctxt ""
-"02230300.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"hd_id3151245\n"
+"7\n"
"help.text"
-msgid "Comment"
-msgstr "Chú thích"
+msgid "Using a Color as a Background"
+msgstr "Dùng Màu Làm Nền"
-#: 02230300.xhp
+#: 05030600.xhp
msgctxt ""
-"02230300.xhp\n"
-"hd_id3083278\n"
-"1\n"
+"05030600.xhp\n"
+"hd_id3148946\n"
+"8\n"
"help.text"
-msgid "Comment"
-msgstr "Chú thích"
+msgid "Color Background"
+msgstr "Nền màu"
-#: 02230300.xhp
+#: 05030600.xhp
msgctxt ""
-"02230300.xhp\n"
-"par_id3148983\n"
-"2\n"
+"05030600.xhp\n"
+"par_id3152361\n"
+"9\n"
"help.text"
-msgid "<variable id=\"kommentartext\"><ahelp hid=\"HID_REDLINING_EDIT\">Enter a comment for the recorded change.</ahelp></variable>"
-msgstr "<variable id=\"kommentartext\"><ahelp hid=\"HID_REDLINING_EDIT\">Nhập chú thích về thay đổi đã thu.</ahelp></variable>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">Click the color that you want to use as a background. To remove a background color, click <emph>No Fill</emph>.</ahelp>"
+msgstr ""
-#: 02230300.xhp
+#: 05030600.xhp
msgctxt ""
-"02230300.xhp\n"
-"par_id3155391\n"
-"3\n"
+"05030600.xhp\n"
+"hd_id3153524\n"
+"37\n"
"help.text"
-msgid "You can attach a comment when <switchinline select=\"appl\"><caseinline select=\"WRITER\">the cursor is in a changed text passage </caseinline><caseinline select=\"CALC\">the changed cell is selected</caseinline></switchinline>, or in the <emph>Accept or Reject Changes</emph> dialog."
-msgstr "Bạn có thể đính chú thích kèm khi <switchinline select=\"appl\"><caseinline select=\"WRITER\">con trỏ nằm trong đoạn bị thay đổi</caseinline><caseinline select=\"CALC\">ô bị thay đổi được chọn</caseinline></switchinline>, hay trong hộp thoại <emph>Chấp nhận hay Từ chối Thay đổi</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Transparency</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Trong suốt </caseinline></switchinline>"
-#: 02230300.xhp
+#: 05030600.xhp
msgctxt ""
-"02230300.xhp\n"
-"par_id3156426\n"
-"5\n"
+"05030600.xhp\n"
+"par_idN107A4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments are displayed as callouts in the sheet when you rest your mouse pointer over a cell with a recorded change. You can also view comments that are attached to a changed cell in the changes list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link> dialog. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chú thích được hiển thị dạng khung thoại trên bảng khi bạn để lại con trỏ chuột trên ô chứa thay đổi đã thu. bạn cũng có thể xem chú thích đính kèm ô bị thay đổi trong danh sách thay đổi của hộp thoại <link href=\"text/shared/01/02230400.xhp\" name=\"Chấp nhận hay Từ chối Thay đổi\"><emph>Chấp nhận hay Từ chối Thay đổi</emph></link>. </caseinline></switchinline>"
+msgid "Background transparency can be set only for frames."
+msgstr "Tính trong suốt của nền chỉ có thể được đặt cho khung."
-#: 03060000.xhp
+#: 05030600.xhp
msgctxt ""
-"03060000.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"par_id3150358\n"
+"38\n"
"help.text"
-msgid "Status Bar"
-msgstr "Thanh Trạng thái"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/transparencymf\">Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/transparencymf\">Đặt tính trong suốt cho màu nền hay ảnh nền của khung, mà 100% là trong suốt hoàn toàn và 0% là đục hoàn toàn. Tăng tính trong suốt của nền thì văn bản hay đối tượng nằm dưới bắt đầu hiển thị qua nền khung.</ahelp></caseinline></switchinline>"
-#: 03060000.xhp
+#: 05030600.xhp
msgctxt ""
-"03060000.xhp\n"
-"bm_id3152823\n"
+"05030600.xhp\n"
+"hd_id3154216\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>status bar on/off</bookmark_value>"
-msgstr "<bookmark_value>hiện/ẩn thanh trạng thái</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">For</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cho </caseinline></switchinline>"
-#: 03060000.xhp
+#: 05030600.xhp
msgctxt ""
-"03060000.xhp\n"
-"hd_id3152823\n"
-"1\n"
+"05030600.xhp\n"
+"par_id3145419\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/03060000.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr "<link href=\"text/shared/01/03060000.xhp\" name=\"Thanh Trạng thái\">Thanh Trạng thái</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/tablelb\">Select the area that you want to apply the background color to.</ahelp> For example, when you define the background color for a table, you can choose to apply it to the table, the active cell, the row, or the column.</caseinline></switchinline>"
+msgstr ""
-#: 03060000.xhp
+#: 05030600.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3147000\n"
-"2\n"
+"05030600.xhp\n"
+"par_id3150497\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".uno:StatusBarVisible\">Shows or hides the <emph>Status Bar</emph> at the bottom edge of the window.</ahelp>"
-msgstr "<ahelp hid=\".uno:StatusBarVisible\">Hiển thị <emph>Thanh Trạng thái</emph> ở cạnh bên dưới cửa sổ.</ahelp>"
+msgid "This option is only available when you edit the background of a table or a paragraph style."
+msgstr "Tùy chọn này chỉ sẵn sàng khi bạn chỉnh sửa nền của bảng hay kiểu dáng đoạn văn."
-#: 05230000.xhp
+#: 05030600.xhp
msgctxt ""
-"05230000.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"hd_id3151246\n"
"help.text"
-msgid "Position and Size"
-msgstr "Vị trí và Kích cỡ"
+msgid "Using a Gradient as a Background"
+msgstr ""
-#: 05230000.xhp
+#: 05030600.xhp
msgctxt ""
-"05230000.xhp\n"
-"hd_id3152790\n"
-"1\n"
+"05030600.xhp\n"
+"hd_id3153525\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Vị trí và Kích cỡ\">Vị trí và Kích cỡ</link>"
+msgid "Background gradient"
+msgstr ""
-#: 05230000.xhp
+#: 05030600.xhp
msgctxt ""
-"05230000.xhp\n"
-"par_id3157552\n"
-"2\n"
+"05030600.xhp\n"
+"par_id3152364\n"
"help.text"
-msgid "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Resizes, moves, rotates, or slants the selected object.</ahelp></variable>"
-msgstr "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Thay đổi kích cỡ về, di chuyển, xoay hay làm xiên đối tượng đã chọn.</ahelp></variable>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/gradientslb\">Click the gradient that you want to use as a background. To remove a background gradient, set <emph>As</emph> to <emph>Color</emph>, then click <emph>No Fill</emph>.</ahelp>"
+msgstr ""
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"hd_id3153526\n"
"help.text"
-msgid "Templates: Address Book Assignment"
-msgstr "Mẫu > Gán Sổ Địa Chỉ"
+msgid "Preview field"
+msgstr "Trường xem thử"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3156411\n"
-"1\n"
+"05030600.xhp\n"
+"par_id3152362\n"
"help.text"
-msgid "Templates: Address Book Assignment"
-msgstr "Mẫu > Gán Sổ Địa Chỉ"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/previewctl\">Displays a preview of the currently selected gradient.</ahelp>"
+msgstr ""
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3147576\n"
-"2\n"
+"05030600.xhp\n"
+"hd_id3153056\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".uno:AddressBookSource\">Edit the field assignments and the data source for your address book.</ahelp>"
-msgstr "<ahelp hid=\".uno:AddressBookSource\">Chỉnh sửa các sự gán trường và nguồn dữ liệu cho Sổ địa chỉ của bạn.</ahelp>"
+msgid "Using a Graphic as a Background"
+msgstr "Dùng Ảnh Làm Nền"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3149399\n"
-"3\n"
+"05030600.xhp\n"
+"hd_id3149983\n"
+"15\n"
"help.text"
-msgid "Address Book Source"
-msgstr "Nguồn sổ địa chỉ"
+msgid "File"
+msgstr "Tập tin"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3152996\n"
-"4\n"
+"05030600.xhp\n"
+"par_id3152462\n"
+"16\n"
"help.text"
-msgid "Set the data source and data table for your address book."
-msgstr "Đặt nguồn dữ liệu và bảng dữ liệu cho Sổ địa chỉ của bạn."
+msgid "Contains information about the graphic file."
+msgstr "Chức thông tin về tập tin đồ họa."
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3147654\n"
-"5\n"
+"05030600.xhp\n"
+"hd_id3145592\n"
+"17\n"
"help.text"
-msgid "Data Source"
-msgstr "Nguồn dữ liệu"
+msgid "Display field"
+msgstr "Hiển thị trường"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3154306\n"
-"6\n"
+"05030600.xhp\n"
+"par_id3154920\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_COMBOBOX_DLG_ADDRESSBOOKSOURCE_CB_DATASOURCE\">Select the data source for your address book.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_COMBOBOX_DLG_ADDRESSBOOKSOURCE_CB_DATASOURCE\">Chọn nguồn dữ liệu cho Sổ địa chỉ của bạn.</ahelp>"
+msgid "Shows the path for the graphic file."
+msgstr "Hiển thị đường dẫn đến tập tin đồ họa."
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3145315\n"
-"7\n"
+"05030600.xhp\n"
+"hd_id3145272\n"
+"19\n"
"help.text"
-msgid "Table"
-msgstr "Bảng"
+msgid "Link"
+msgstr "Liên kết"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3149164\n"
-"8\n"
+"05030600.xhp\n"
+"par_id3154150\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_COMBOBOX_DLG_ADDRESSBOOKSOURCE_CB_TABLE\">Select the data table for your address book.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_COMBOBOX_DLG_ADDRESSBOOKSOURCE_CB_TABLE\">Chọn bảng dữ liệu cho Sổ địa chỉ của bạn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/link\">Links to or embeds the graphic file in the current file.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/link\">Liên kết đến hay nhúng tập tin đồ họa trong tập tin hiện tại.</ahelp>"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3145119\n"
-"9\n"
+"05030600.xhp\n"
+"hd_id3155366\n"
+"21\n"
"help.text"
-msgid "Configure"
-msgstr "Tùy chỉnh"
+msgid "Preview"
+msgstr "Xem thử"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3150771\n"
-"10\n"
+"05030600.xhp\n"
+"par_id3147426\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_ADDRESSBOOKSOURCE_PB_ADMINISTATE_DATASOURCES\">Add a new data source to the <emph>Address Book Source </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_ADDRESSBOOKSOURCE_PB_ADMINISTATE_DATASOURCES\">Thêm vào danh sách <emph>Nguồn Sổ địa chỉ</emph> một nguồn dữ liệu mới.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/showpreview\">Displays or hides a preview of the selected graphic.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/showpreview\">Hiển thị hay ẩn ô xem thử đồ họa đã chọn.</ahelp>"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3155629\n"
-"11\n"
+"05030600.xhp\n"
+"hd_id3154472\n"
+"23\n"
"help.text"
-msgid "Field assignment"
-msgstr "Gán trường"
+msgid "Browse"
+msgstr "Duyệt"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3153320\n"
-"12\n"
+"05030600.xhp\n"
+"par_id3153951\n"
+"24\n"
"help.text"
-msgid "Define the field assignments for your address book."
-msgstr "Xác định các sự gán trường cho Sổ địa chỉ của bạn."
+msgid "<ahelp hid=\"cui/ui/backgroundpage/browse\">Locate the graphic file that you want to use as a background, and then click <emph>Open</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/browse\">Tìm tập tin đồ họa bạn muốn dùng làm nền, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3155830\n"
-"13\n"
+"05030600.xhp\n"
+"hd_id3153726\n"
+"25\n"
"help.text"
-msgid "(Field name)"
-msgstr "(Tên trường)"
+msgid "Type"
+msgstr "Kiểu"
-#: 01110101.xhp
+#: 05030600.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3154143\n"
-"14\n"
+"05030600.xhp\n"
+"par_id3147442\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_ADDRTEMPL_FIELD_ASSIGNMENT\">Select the field in the data table that corresponds to the address book entry.</ahelp>"
-msgstr "<ahelp hid=\"HID_ADDRTEMPL_FIELD_ASSIGNMENT\">Chọn trường trong bảng dữ liệu tương ứng với mục nhập Sổ địa chỉ.</ahelp>"
+msgid "Specify the way that you want to display the background graphic."
+msgstr "Ghi rõ bạn muốn hiển thị ảnh nền như thế nào."
-#: 06150110.xhp
+#: 05030600.xhp
msgctxt ""
-"06150110.xhp\n"
+"05030600.xhp\n"
+"hd_id3153366\n"
+"27\n"
+"help.text"
+msgid "Position"
+msgstr "Vị trí"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3153741\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/positionrb\">Select this option, and then click a location in the position grid.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/positionrb\">Bật tùy chọn này, sau đó nhấn vào một nơi nào đó trong lưới vị trí.</ahelp>"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3156005\n"
+"29\n"
+"help.text"
+msgid "Area"
+msgstr "Vùng"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152596\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/arearb\">Stretches the graphic to fill the entire background of the selected object.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/arearb\">Kéo giãn đồ họa để chiếm toàn nền của đối tượng đã chọn.</ahelp>"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3145663\n"
+"32\n"
+"help.text"
+msgid "Tile"
+msgstr "Xếp lát"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3149481\n"
+"33\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/tilerb\">Repeats the graphic so that it covers the entire background of the selected object.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/tilerb\">Lặp lại hiển thị ảnh đến khi nó trải ra toàn nền của đối tượng đã chọn.</ahelp>"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3151114\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a color. Click No Fill to remove a background or highlighting color. Click Automatic to reset a font color.</ahelp>"
+msgstr ""
+
+#: 05030700.xhp
+msgctxt ""
+"05030700.xhp\n"
"tit\n"
"help.text"
-msgid "General"
-msgstr "Chung"
+msgid "Alignment"
+msgstr "Canh lề"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3158442\n"
-"1\n"
+"05030700.xhp\n"
+"bm_id3150008\n"
"help.text"
-msgid "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=\"General\">General</link></variable>"
-msgstr "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=\"Chung\">Chung</link></variable>"
+msgid "<bookmark_value>aligning; paragraphs</bookmark_value><bookmark_value>paragraphs; alignment</bookmark_value><bookmark_value>lines of text; alignment</bookmark_value><bookmark_value>left alignment of paragraphs</bookmark_value><bookmark_value>right alignment of paragraphs</bookmark_value><bookmark_value>centered text</bookmark_value><bookmark_value>justifying text</bookmark_value>"
+msgstr "<bookmark_value>canh lề; đoạn văn</bookmark_value><bookmark_value>đoạn văn; chỉnh canh</bookmark_value><bookmark_value>các dòng văn bản; canh lề</bookmark_value><bookmark_value>canh lề trái đoạn văn</bookmark_value><bookmark_value>canh lề phải đoạn văn</bookmark_value><bookmark_value>đặt văn bản vào giữa</bookmark_value><bookmark_value>canh đều văn bản hai bên</bookmark_value>"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3149038\n"
-"12\n"
+"05030700.xhp\n"
+"hd_id3150008\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"\">Enter or edit general information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp hid=\"\">Nhập hay chỉnh sửa thông tin chung về một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Alignment\">Alignment</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề\">Canh lề</link>"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3151097\n"
+"05030700.xhp\n"
+"par_id3147399\n"
"2\n"
"help.text"
-msgid "Filter name"
-msgstr "Tên bộ lọc"
+msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_ALIGN\">Sets the alignment of the paragraph relative to the margins of page.</ahelp>"
+msgstr "<ahelp hid=\"HID_FORMAT_PARAGRAPH_ALIGN\">Đặt cách chỉnh canh đoạn văn tương đối so với các lề của trang.</ahelp>"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3150838\n"
+"05030700.xhp\n"
+"hd_id3143268\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_NAME\">Enter the name that you want to display in the list box of the <emph>XML Filter Settings</emph> dialog.</ahelp> You must enter a unique name."
-msgstr "<ahelp hid=\"HID_XML_FILTER_NAME\">Nhập tên bạn muốn hiển thị trong hộp liệt kê của hộp thoại <emph>Thiết lập bộ lọc XML</emph>.</ahelp> Phải nhập một tên duy nhất."
+msgid "Alignment"
+msgstr "Canh lề"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3149119\n"
+"05030700.xhp\n"
+"par_id3147008\n"
"4\n"
"help.text"
-msgid "Application"
-msgstr "Ứng dụng"
+msgid "Set the alignment options for the current paragraph."
+msgstr "Đặt các tùy chọn canh lề cho đoạn văn hiện tại."
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3149793\n"
+"05030700.xhp\n"
+"hd_id3153681\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_APPLICATION\">Select the application that you want to use with the filter.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_APPLICATION\">Chọn ứng dụng bạn muốn dùng cùng với bộ lọc này.</ahelp>"
+msgid "Left"
+msgstr "Trái"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3149999\n"
+"05030700.xhp\n"
+"par_id3153031\n"
"6\n"
"help.text"
-msgid "Name of file type"
-msgstr "Tên của kiểu tập tin"
+msgid "<variable id=\"linkstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN\">Aligns the paragraph to the left page margin.</ahelp></variable> If Asian language support is enabled, this option is named Left/Top."
+msgstr "<variable id=\"linkstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN\">Chỉnh canhđoạn văn theo lề bên trái.</ahelp></variable> Cũng hiệu lực hỗ trợ ngôn ngữ Châu Á thì tùy chọn này có tên « Trái/Trên »."
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3149549\n"
+"05030700.xhp\n"
+"hd_id3154142\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_INTERFACE_NAME\">Enter the name that you want to display in the <emph>File type</emph> box in file dialogs.</ahelp> You must enter a unique name. For import filters, the name appears in the <emph>File type</emph> box of <emph>Open</emph> dialogs. For export filters, the name appears in the <emph>File format</emph> box of <emph>Export</emph> dialogs."
-msgstr "<ahelp hid=\"HID_XML_FILTER_INTERFACE_NAME\">Nhập tên bạn muốn hiển thị trong hộp <emph>Kiểu tập tin</emph> trong các hộp thoại tập tin.</ahelp> Bạn phải nhập tên duy nhất. Đối với bộ lọc nhập khẩu, tên này xuất hiện trong hộp <emph>Kiểu tập tin</emph> của các hộp thoại <emph>Mở</emph>. Đối với bộ lọc xuất khẩu, tên này xuất hiện trong hộp <emph>Định dạng tập tin</emph> của các hộp thoại <emph>Xuất</emph>."
+msgid "Right"
+msgstr "Phải"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3147834\n"
+"05030700.xhp\n"
+"par_id3156326\n"
"8\n"
"help.text"
-msgid "File extension"
-msgstr "Phần mở rộng tập tin"
+msgid "<variable id=\"rechtstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN\">Aligns the paragraph to the right page margin.</ahelp></variable> If Asian language support is enabled, this option is named Right/Bottom."
+msgstr "<variable id=\"rechtstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN\">Chỉnh canh đoạn văn theo lề bên phải.</ahelp></variable> Cũng hiệu lực hỗ trợ ngôn ngữ Châu Á thì tùy chọn này có tên « Phải/Trên »."
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3147291\n"
+"05030700.xhp\n"
+"hd_id3148642\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_EXTENSION\">Enter the file extension to use when you open a file without specifying a filter. $[officename] uses the file extension to determine which filter to use.</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_EXTENSION\">Nhập phần mở rộng tập tin cần dùng khi bạn mở tập tin mà không ghi rõ bộ lọc riêng. $[officename] dùng phần mở rộng tập tin để xác định có nên dùng bộ lọc nào.</ahelp>"
+msgid "Centered"
+msgstr "Giữa"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3157863\n"
+"05030700.xhp\n"
+"par_id3153257\n"
"10\n"
"help.text"
-msgid "Comments"
-msgstr "Chú thích"
+msgid "<variable id=\"zentrierttext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN\">Centers the contents of the paragraph on the page.</ahelp></variable>"
+msgstr "<variable id=\"zentrierttext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN\">Đặt nội dung của đoạn văn vào giữa trang.</ahelp></variable>"
-#: 06150110.xhp
+#: 05030700.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3146957\n"
+"05030700.xhp\n"
+"hd_id3149415\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_DESCRIPTION\">Enter a comment (optional).</ahelp>"
-msgstr "<ahelp hid=\"HID_XML_FILTER_DESCRIPTION\">(Tùy chọn) Nhập chú thích.</ahelp>"
+msgid "Justify"
+msgstr "Canh đều"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"tit\n"
+"05030700.xhp\n"
+"par_id3152474\n"
+"12\n"
"help.text"
-msgid "Add / Edit"
-msgstr "Thêm/Sửa"
+msgid "<variable id=\"blocksatztext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN\">Aligns the paragraph to the left and to the right page margins.</ahelp></variable>"
+msgstr "<variable id=\"blocksatztext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN\">Chỉnh canh đoạn văn theo lề bên trái và bên phải trang.</ahelp></variable>"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"bm_id7194738\n"
+"05030700.xhp\n"
+"hd_id3145068\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>read-only items in Data Navigator</bookmark_value><bookmark_value>Data Navigator;adding/editing items</bookmark_value>"
-msgstr "<bookmark_value>mục chỉ-đọc trong Bộ Duyệt Dữ Liệu</bookmark_value><bookmark_value>Bộ Duyệt Dữ Liệu;thêm/sửa mục</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Last Line </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Dòng cuối</caseinline></switchinline>"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10547\n"
+"05030700.xhp\n"
+"par_id3154280\n"
+"14\n"
"help.text"
-msgid "Add / Edit"
-msgstr "Thêm/Sửa"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE\">Specify the alignment for the last line in the paragraph.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE\">Ghi rõ cách chỉnh canh dòng cuối cùng trong đoạn văn.</ahelp></caseinline></switchinline>"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1054B\n"
+"05030700.xhp\n"
+"hd_id3154936\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds a new item or edits the selected item in the XForms Data Navigator.</ahelp> Items can be elements, attributes, submissions, or bindings."
-msgstr "<ahelp hid=\".\">Thêm một mục mới, hoặc chỉnh sửa mục đã chọn trong Bộ Duyệt Dữ Liệu XForm.</ahelp> Mục có thể là phần tử, thuộc tính, sự đệ trình hay tổ hợp."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Expand single word </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Mở rộng từ đơn</caseinline></switchinline>"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10560\n"
+"05030700.xhp\n"
+"par_id3154224\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">%PRODUCTNAME inserts a new item directly after the currently selected item in the Data Navigator. A new attribute is added to the currently selected element.</ahelp>"
-msgstr "<ahelp hid=\".\">%PRODUCTNAME chèn một mục mới vào đúng sau mục được chọn hiện thời trong Bộ Duyệt Dữ Liệu.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND\">If the last line of a justified paragraph consists of one word, the word is stretched to the width of the paragraph.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND\">Dòng cuối cùng của đoạn văn chỉ chứa một từ thì mở rộng từ qua toàn chiều rộng của đoạn văn.</ahelp></caseinline></switchinline>"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10563\n"
+"05030700.xhp\n"
+"hd_id3150495\n"
+"22\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "Snap to text grid (if active)"
+msgstr "Đính lưới văn bản (nếu bật)"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10567\n"
+"05030700.xhp\n"
+"par_id3154331\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the item.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập tên của mục.</ahelp>"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_CB_SNAP\">Aligns the paragraph to a text grid. To activate the text grid, choose <link href=\"text/swriter/01/05040800.xhp\" name=\"Format - Page - Text Grid\"><emph>Format - Page - Text Grid</emph></link>.</ahelp>"
+msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_CB_SNAP\">Chỉnh canh đoạn văn theo một lưới văn bản. Để kích hoạt lưới văn bản, chọn lệnh <link href=\"text/swriter/01/05040800.xhp\" name=\"Định dạng > Trang > Lưới văn bản\"><emph>Định dạng > Trang > Lưới văn bản</emph></link>.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1056A\n"
+"05030700.xhp\n"
+"hd_id3148672\n"
+"18\n"
"help.text"
-msgid "The attribute names must be unique within the same group."
-msgstr "Tên thuộc tính phải là duy nhất bên trong nhóm đó."
+msgid "Text-to-text - Alignment"
+msgstr "Văn bản đến văn bản — Canh lề"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1056D\n"
+"05030700.xhp\n"
+"par_id3149807\n"
+"19\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_VERTALIGN\">Select an alignment option for oversized or undersized characters in the paragraph relative to the rest of the text in the paragraph.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_VERTALIGN\">Đặt một tùy chọn chỉnh canh cho ký tự quá nhỏ hay quá lớn trong đoạn văn, tương đối so với các ký tự khác của đoạn văn.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10571\n"
+"05030700.xhp\n"
+"hd_id3144434\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the type of a new item. You cannot change the type of an edited item.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kiểu của mục mới. Không thể thay đổi kiểu của một mục đã chỉnh sửa.</ahelp>"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10574\n"
+"05030700.xhp\n"
+"hd_id3154631\n"
+"25\n"
"help.text"
-msgid "Default value"
-msgstr "Giá trị mặc định"
+msgid "Text direction"
+msgstr "Hướng văn bản"
-#: xformsdataadd.xhp
+#: 05030700.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10578\n"
+"05030700.xhp\n"
+"par_id3157960\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a default value for the selected item.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập giá trị mặc định cho mục đã chọn.</ahelp>"
+msgid "<ahelp hid=\"hid/modules/swriter/ui/columnpage/textdirectionlb\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\"hid/modules/swriter/ui/columnpage/textdirectionlb\">Ghi rõ hướng văn bản cho đoạn văn cũng dùng bố trí văn bản phức tạp (CTL).</ahelp> Để sử dụng tính năng này, trước tiên bạn cần phải hiệu lực hỗ trợ bố trí văn bản phức tạp."
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1057B\n"
+"05030800.xhp\n"
+"tit\n"
"help.text"
-msgid "Settings"
-msgstr "Thiết lập"
+msgid "Crop"
+msgstr "Xén"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1057F\n"
+"05030800.xhp\n"
+"bm_id3148585\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the properties of the selected item.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ các thuộc tính về mục đã chọn.</ahelp>"
+msgid "<bookmark_value>cropping pictures</bookmark_value><bookmark_value>pictures; cropping and zooming</bookmark_value><bookmark_value>zooming; pictures</bookmark_value><bookmark_value>scaling;pictures</bookmark_value><bookmark_value>sizes; pictures</bookmark_value><bookmark_value>original size;restoring after cropping</bookmark_value>"
+msgstr "<bookmark_value>xén ảnh</bookmark_value><bookmark_value>ảnh; xén và thu/phóng</bookmark_value><bookmark_value>thu/phóng; ảnh</bookmark_value><bookmark_value>co giãn;ảnh</bookmark_value><bookmark_value>kích cỡ; ảnh</bookmark_value><bookmark_value>kích cỡ gốc;phục hồi sau khi xén</bookmark_value>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10582\n"
+"05030800.xhp\n"
+"hd_id3154044\n"
+"1\n"
"help.text"
-msgid "Data type"
-msgstr "Kiểu dữ liệu"
+msgid "<link href=\"text/shared/01/05030800.xhp\" name=\"Crop\">Crop</link>"
+msgstr "<link href=\"text/shared/01/05030800.xhp\" name=\"Xén\">Xén</link>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10586\n"
+"05030800.xhp\n"
+"par_id3150603\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the data type for the selected item.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kiểu dữ liệu cho mục đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\">Trims or scales the selected graphic. You can also restore the graphic to its original size.</ahelp>"
+msgstr "<ahelp hid=\".\">Tỉa hay co giãn ảnh đã chọn. Bạn cũng có thể phục hồi ảnh về kích cỡ gốc.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10589\n"
+"05030800.xhp\n"
+"hd_id3148585\n"
+"3\n"
"help.text"
-msgid "Required"
-msgstr "Cần thiết"
+msgid "Crop"
+msgstr "Xén"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1058D\n"
+"05030800.xhp\n"
+"par_id3152372\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ có nên bao gồm mục này trong biểu mẫu XForm hay không.</ahelp>"
+msgid "Use this area to trim or scale the selected graphic, or to add white space around the graphic."
+msgstr "Dùng vùng này để tỉa hay co giãn ảnh đã chọn, hoặc để thêm khoảng trắng chung quanh ảnh."
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10590\n"
+"05030800.xhp\n"
+"hd_id3145669\n"
+"15\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
-msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập các miền tên đã dùng và biểu thức đường dẫn XPath đầy đủ."
+msgid "Keep scale"
+msgstr "Giữ tỷ lệ"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105AA\n"
+"05030800.xhp\n"
+"par_id3149346\n"
+"16\n"
"help.text"
-msgid "Relevant"
-msgstr "Liên quan"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_ZOOMCONST\">Maintains the original scale of the graphic when you crop, so that only the size of the graphic changes.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_ZOOMCONST\">Bảo tồn tỷ lệ gốc của ảnh trong khi xén, để thay đổi chỉ kích cỡ của ảnh, không phải hình.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105AE\n"
+"05030800.xhp\n"
+"hd_id3156426\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là liên quan.</ahelp>"
+msgid "Keep image size"
+msgstr "Giữ kích cỡ ảnh"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105B1\n"
+"05030800.xhp\n"
+"par_id3155892\n"
+"14\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
-msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập các miền tên đã dùng và biểu thức đường dẫn XPath đầy đủ."
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_SIZECONST\">Maintains the original size of the graphic when you crop, so that only the scale of the graphic changes. To reduce the scale of the graphic, select this option and enter negative values in the cropping boxes. To increase the scale of the graphic, enter positive values in the cropping boxes.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_SIZECONST\">Bảo tồn kích cỡ gốc của ảnh trong khi xén, để thay đổi chỉ tỷ lệ của ảnh. Để giảm tỷ lệ của ảnh, bật tùy chọn này và nhập vào hộp xéc giá trị âm. Để tăng tỷ lệ, nhập giá trị dương.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105CB\n"
+"05030800.xhp\n"
+"hd_id3153683\n"
+"5\n"
"help.text"
-msgid "Constraint"
-msgstr "Ràng buộc"
+msgid "Left"
+msgstr "Trái"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105CF\n"
+"05030800.xhp\n"
+"par_id3145313\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là một ràng buộc.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_LEFT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the left edge of the graphic, or a negative amount to add white space to the left of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_LEFT\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên trái ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên trái ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều ngang, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều ngang.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN106C7\n"
+"05030800.xhp\n"
+"hd_id3163803\n"
+"7\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can specify the constraint condition."
-msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể ghi rõ điều kiện ràng buộc."
+msgid "Right"
+msgstr "Phải"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105E4\n"
+"05030800.xhp\n"
+"par_id3145382\n"
+"8\n"
"help.text"
-msgid "Read-only"
-msgstr "Chỉ đọc"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_RIGHT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the right edge of the graphic, or a negative amount to add white space to the right of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_RIGHT\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên phải ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên phải ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều ngang, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều ngang.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105E8\n"
+"05030800.xhp\n"
+"hd_id3156153\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là chỉ-đọc (không thể thay đổi được).</ahelp>"
+msgid "Top"
+msgstr "Trên"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105EB\n"
+"05030800.xhp\n"
+"par_id3154514\n"
+"10\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
-msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập các miền tên đã dùng và biểu thức đường dẫn XPath đầy đủ."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_TOP\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the top of the graphic, or a negative amount to add white space above the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_TOP\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên trên ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên trên ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều dọc, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều dọc.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10605\n"
+"05030800.xhp\n"
+"hd_id3149956\n"
+"11\n"
"help.text"
-msgid "Calculate / Calculation"
-msgstr "Tính / Tính toán"
+msgid "Bottom"
+msgstr "Dưới"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10609\n"
+"05030800.xhp\n"
+"par_id3150084\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục đã được tính.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_BOTTOM\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the bottom of the graphic, or a negative amount to add white space below the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_BOTTOM\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên dưới ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên dưới ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều dọc, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều dọc.</ahelp>"
-#: xformsdataadd.xhp
+#: 05030800.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1076B\n"
+"05030800.xhp\n"
+"hd_id3158432\n"
+"23\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter the calculation."
-msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập phép tính."
+msgid "Scale"
+msgstr "Co giãn"
-#: 05290300.xhp
+#: 05030800.xhp
msgctxt ""
-"05290300.xhp\n"
-"tit\n"
+"05030800.xhp\n"
+"par_id3153257\n"
+"24\n"
"help.text"
-msgid "Enter Group"
-msgstr "Vào nhóm"
+msgid "Changes the scale of the selected graphic."
+msgstr "Thay đổi tỷ lệ của ảnh đã chọn."
-#: 05290300.xhp
+#: 05030800.xhp
msgctxt ""
-"05290300.xhp\n"
-"hd_id3083278\n"
-"1\n"
+"05030800.xhp\n"
+"hd_id3155504\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Vào nhóm\">Vào nhóm</link>"
+msgid "Width"
+msgstr "Bề rộng"
-#: 05290300.xhp
+#: 05030800.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3146856\n"
-"2\n"
+"05030800.xhp\n"
+"par_id3148943\n"
+"26\n"
"help.text"
-msgid "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">Opens the selected group, so that you can edit the individual objects. If the selected group contains nested group, you can repeat this command on the subgroups.</ahelp></variable> This command does not permanently ungroup the objects."
-msgstr "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">Mở nhóm đã chọn, để cho bạn chỉnh sửa mỗi đối tượng riêng. Nếu nhóm đã chọn chứa nhóm khác (nhóm lồng nhau), bạn có thể lặp lại lệnh này với mỗi nhóm phụ.</ahelp></variable> Câu lệnh này không rã nhóm bền bỉ các đối tượng."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTHZOOM\">Enter the width for the selected graphic as a percentage.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTHZOOM\">Nhập chiều rộng của ảnh đã chọn, theo phần trăm.</ahelp>"
-#: 05290300.xhp
+#: 05030800.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3157991\n"
-"3\n"
+"05030800.xhp\n"
+"hd_id3145609\n"
+"27\n"
"help.text"
-msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, and then click the object."
-msgstr "Để lựa chọn một đối tượng riêng trong nhóm, ấn giữ phím <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, sau đó nhấn vào đối tượng đó."
+msgid "Height"
+msgstr "Bề cao"
-#: 05290300.xhp
+#: 05030800.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3153049\n"
+"05030800.xhp\n"
+"par_id3154348\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Nhóm\">Nhóm</link>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHTZOOM\">Enter the height of the selected graphic as a percentage.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHTZOOM\">Nhập chiều cao của ảnh đã chọn, theo phần trăm.</ahelp>"
-#: 05290300.xhp
+#: 05030800.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3148548\n"
+"05030800.xhp\n"
+"hd_id3154924\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Ra nhóm\">Ra nhóm</link>"
+msgid "Image size"
+msgstr "Kích cỡ ảnh"
-#: 03050000.xhp
+#: 05030800.xhp
msgctxt ""
-"03050000.xhp\n"
-"tit\n"
+"05030800.xhp\n"
+"par_id3148755\n"
+"18\n"
"help.text"
-msgid "Tools Bar"
-msgstr "Thanh Công cụ"
+msgid "Changes the size of the selected graphic."
+msgstr "Thay đổi kích cỡ của ảnh đã chọn."
-#: 03050000.xhp
+#: 05030800.xhp
msgctxt ""
-"03050000.xhp\n"
-"bm_id3145356\n"
+"05030800.xhp\n"
+"hd_id3161656\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>tools bar</bookmark_value>"
-msgstr "<bookmark_value>thanh công cụ</bookmark_value>"
+msgid "Width"
+msgstr "Bề rộng"
-#: 03050000.xhp
+#: 05030800.xhp
msgctxt ""
-"03050000.xhp\n"
-"hd_id3145356\n"
-"1\n"
+"05030800.xhp\n"
+"par_id3150543\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/shared/01/03050000.xhp\" name=\"Tools Bar\">Tools Bar</link>"
-msgstr "<link href=\"text/shared/01/03050000.xhp\" name=\"Thanh Công cụ\">Thanh Công cụ</link>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTH\">Enter a width for the selected graphic.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTH\">Nhập chiều rộng của ảnh đã chọn.</ahelp>"
-#: 03050000.xhp
+#: 05030800.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3150603\n"
-"2\n"
+"05030800.xhp\n"
+"hd_id3150398\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToolBarVisible\">Shows or hides the <emph>Tools bar</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:ToolBarVisible\">Hiển thị hay ẩn <emph>Thanh Công cụ</emph>.</ahelp>"
+msgid "Height"
+msgstr "Bề cao"
-#: 05080200.xhp
+#: 05030800.xhp
msgctxt ""
-"05080200.xhp\n"
-"tit\n"
+"05030800.xhp\n"
+"par_id3154686\n"
+"22\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHT\">Enter a height for the selected graphic.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHT\">Nhập chiều cao của ảnh đã chọn.</ahelp>"
-#: 05080200.xhp
+#: 05030800.xhp
msgctxt ""
-"05080200.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"05030800.xhp\n"
+"hd_id3148676\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080200.xhp\" name=\"Right\">Right</link>"
-msgstr "<link href=\"text/shared/01/05080200.xhp\" name=\"Phải\">Phải</link>"
+msgid "Original Size"
+msgstr "Kích cỡ gốc"
-#: 05080200.xhp
+#: 05030800.xhp
msgctxt ""
-"05080200.xhp\n"
-"par_id3144750\n"
-"2\n"
+"05030800.xhp\n"
+"par_id3154068\n"
+"32\n"
"help.text"
-msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:RightPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the right page margin.</ahelp></variable>"
-msgstr "<variable id=\"rechtstext\"><ahelp hid=\".uno:RightPara\" visibility=\"visible\">Chỉnh canh các đoạn văn đã chọn theo lề bên phải của trang.</ahelp></variable>"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_GRFCROP_PB_ORGSIZE\">Returns the selected graphic to its original size.</ahelp>"
+msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_GRFCROP_PB_ORGSIZE\">Phục hồi ảnh đã chọn về kích cỡ gốc.</ahelp>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
+"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Asian Typography"
-msgstr "Kiểu in Châu Á"
+msgid "Organizer"
+msgstr "Tổ chức"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"bm_id3155620\n"
+"05040100.xhp\n"
+"bm_id3153383\n"
"help.text"
-msgid "<bookmark_value>Asian typography</bookmark_value><bookmark_value>formatting; Asian typography</bookmark_value><bookmark_value>paragraphs; Asian typography</bookmark_value><bookmark_value>typography; Asian</bookmark_value>"
-msgstr "<bookmark_value>kiểu in Châu Á</bookmark_value><bookmark_value>định dạng; kiểu in Châu Á</bookmark_value><bookmark_value>đoạn văn; kiểu in Châu Á</bookmark_value><bookmark_value>kiểu in; ngôn ngữ Châu Á</bookmark_value>"
+msgid "<bookmark_value>organizing; styles</bookmark_value> <bookmark_value>styles; organizing</bookmark_value>"
+msgstr "<bookmark_value>tổ chức; kiểu dáng</bookmark_value><bookmark_value>kiểu dáng; tổ chức</bookmark_value>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"hd_id3155620\n"
+"05040100.xhp\n"
+"hd_id3153383\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\">Asian Typography</link>"
-msgstr "<link href=\"text/shared/01/05020700.xhp\" name=\"Kiểu in Châu Á\">Kiểu in Châu Á</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\" name=\"Organizer\">Organizer</link>"
+msgstr "<link href=\"text/shared/01/05040100.xhp\" name=\"Tổ chức\">Tổ chức</link>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3153124\n"
+"05040100.xhp\n"
+"par_id3147588\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Set the typographic options for cells or paragraphs in Asian language files. To enable Asian language support, choose <emph>Language Settings - Languages</emph> in the Options dialog box, and then select the <emph>Enabled</emph> box in the <emph>Asian language support</emph> area.</ahelp> The Asian typography options are ignored in HTML documents."
-msgstr "<ahelp hid=\".\">Đặt các tùy chọn kiểu in về những ô bảng hay đoạn văn trong tài liệu bằng ngôn ngữ Châu Á. Để hiệu lực hỗ trợ ngôn ngữ Châu Á, chọn mục trình đơn <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>, rồi đánh dấu trong hộp <emph>Bật</emph> trong vùng <emph>Hỗ trợ ngôn ngữ Châu Á</emph>.</ahelp> Tuy nhiên, các tùy chọn kiểu in Châu Á bị bỏ qua trong tài liệu HTML."
+msgid "<ahelp hid=\"sfx/ui/managestylepage/ManageStylePage\">Set the options for the selected style.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/managestylepage/ManageStylePage\">Đặt các tùy chọn về kiểu dáng đã chọn.</ahelp>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"hd_id3147571\n"
+"05040100.xhp\n"
+"hd_id3149525\n"
"3\n"
"help.text"
-msgid "Line change"
-msgstr "Ngắt dòng"
+msgid "Name"
+msgstr "Tên"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3147834\n"
+"05040100.xhp\n"
+"par_id3160481\n"
"4\n"
"help.text"
-msgid "Set the options for line breaks in Asian language documents."
-msgstr "Đặt các tùy chọn về chỗ ngắt dòng trong tài liệu bằng ngôn ngữ Châu Á."
+msgid "<ahelp hid=\"sfx/ui/managestylepage/namerw\">Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/managestylepage/namerw\">Hiển thị tên của kiểu dáng đã chọn. Nếu bạn đang tạo hay sửa đổi một kiểu dáng riêng, nhập tên cho nó. Tuy nhiên, không thể thay đổi tên của kiểu dáng đã xác định sẵn.</ahelp>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"hd_id3145072\n"
-"9\n"
+"05040100.xhp\n"
+"hd_id3153750\n"
+"13\n"
"help.text"
-msgid "Apply list of forbidden characters to the beginning and end of line"
-msgstr "Áp dụng danh sách ký tự cấm cho đầu và cuối dòng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoUpdate </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động Cập nhật </caseinline></switchinline>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3153683\n"
-"10\n"
+"05040100.xhp\n"
+"par_id3153749\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_FORBIDDEN\">Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line.</ahelp> To edit the list of restricted characters, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - <link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\">Asian Layout</link></emph>."
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Cập nhật kiểu dáng khi bạn áp dụng định dạng trực tiếp cho một đoạn văn dùng kiểu dáng này. Định dạng của tất cả các đoạn văn dùng kiểu dáng này thì được cập nhật tự động.</ahelp></caseinline></switchinline>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"hd_id3149751\n"
+"05040100.xhp\n"
+"par_id0107200910584081\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cập nhật kiểu dáng khi bạn áp dụng định dạng trực tiếp cho một đoạn văn dùng kiểu dáng này. Định dạng của tất cả đoạn văn dùng kiểu dáng này được cập nhật tự động.</ahelp>"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3155392\n"
"5\n"
"help.text"
-msgid "Allow hanging punctuation"
-msgstr "Cho phép chấm câu treo"
+msgid "Next Style"
+msgstr "Kiểu dáng sau"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3149096\n"
+"05040100.xhp\n"
+"par_id3155941\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_HANG_PUNC\">Prevents commas and periods from breaking the line. Instead, these characters are added to the end of the line, even in the page margin.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_HANG_PUNC\">Ngăn cản dấu phẩy hay dấu chấm ngắt dòng (bắt đầu dòng kế tiếp). Thay vào đó, ký tự như vậy được thêm vào dòng, ngay cả vào lề trang.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/nextstyle\">Select an existing style that you want to follow the current style in your document. For paragraph styles, the next style is applied to the paragraph that is created when you press Enter. For page styles, the next style is applied when a new page is created.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/managestylepage/nextstyle\">Chọn một kiểu dáng đã tồn tại mà nên theo kiểu dáng hiện thời trong tài liệu. Đối với kiểu dáng đoạn văn, kiểu dáng kế tiếp được áp dụng cho đoạn văn được tạo khi bạn bấm phím <item type=\"keycode\">Enter</item>. Đối với đoạn văn trang, kiểu dáng kế tiếp được áp dụng khi một trang mới được tạo.</ahelp>"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3147275\n"
+"05040100.xhp\n"
+"hd_id3163802\n"
"7\n"
"help.text"
-msgid "<emph>Apply spacing between Asian, Latin and Complex text</emph>"
-msgstr "<emph>Áp dụng khoảng cách giữa văn bản ngôn ngữ Châu Á, La-tinh và văn bản phức</emph>"
+msgid "Linked with"
+msgstr "Liên kết với"
-#: 05020700.xhp
+#: 05040100.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3148539\n"
+"05040100.xhp\n"
+"par_id3166461\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_SCRIPT_SPACE\">Inserts a space between Asian, Latin and complex characters.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_SCRIPT_SPACE\">Chèn một dấu cách vào giữa các ký tự ngôn ngữ Châu Á, ký tự La-tinh và ký tự phức tạp.</ahelp>"
-
-#: 05020700.xhp
-#, fuzzy
-msgctxt ""
-"05020700.xhp\n"
-"par_id3153665\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Enabling Asian language support\">Enabling Asian language support</link>"
-msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Hỗ trợ ngôn ngữ Châu Á\">Hỗ trợ ngôn ngữ Châu Á</link>"
-
-#: securitywarning.xhp
-msgctxt ""
-"securitywarning.xhp\n"
-"tit\n"
-"help.text"
-msgid "Security Warning"
-msgstr "Cảnh báo Bảo mật"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/linkedwith\">Select an existing style that you want to base the new style on, or select none to define your own style.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/managestylepage/linkedwith\">Chọn một kiểu dáng đã tồn tại vào đó bạn muốn dựa kiểu dáng mới, hoặc không chọn gì để xác định kiểu dáng riêng.</ahelp>"
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"bm_id6499832\n"
+"05040100.xhp\n"
+"hd_id3148474\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>security;warning dialogs with macros</bookmark_value><bookmark_value>macros;security warning dialog</bookmark_value>"
-msgstr "<bookmark_value>bảo mật;hộp thoại cảnh báo có vĩ lệnh</bookmark_value><bookmark_value>vĩ lệnh;hộp thoại cảnh báo bảo mật</bookmark_value>"
+msgid "Category"
+msgstr "Loại"
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1054D\n"
+"05040100.xhp\n"
+"par_id3159269\n"
+"10\n"
"help.text"
-msgid "<variable id=\"securitywarning\"><link href=\"text/shared/01/securitywarning.xhp\">Security Warning</link></variable>"
-msgstr "<variable id=\"securitywarning\"><link href=\"text/shared/01/securitywarning.xhp\">Cảnh báo Bảo mật</link></variable>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/category\">Displays the category for the current style. If you are creating or modifying a new style, select 'Custom Style' from the list.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/managestylepage/category\">Hiển thị phân loại cho kiểu dáng hiện thời. Nếu bạn đang tạo hay sửa đổi một kiểu dáng mới, chọn mục « Kiểu dáng riêng » trong danh sách.</ahelp>"
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1056B\n"
+"05040100.xhp\n"
+"par_id3150771\n"
+"17\n"
"help.text"
-msgid "When you open a document that contains an unsigned macro, or a signed macro from an unknown source, the <emph>Security Warning</emph> dialog opens."
-msgstr "Khi bạn mở một tài liệu chứa vĩ lệnh không có chữ ký, hoặc vĩ lệnh đã ký từ nguồn lạ, hộp thoại <emph>Cảnh báo Bảo mật</emph> sẽ mở."
+msgid "You cannot change the category for a predefined style."
+msgstr "Không thể thay đổi phân loại cho kiểu dáng đã xác định sẵn."
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105FC\n"
+"05040100.xhp\n"
+"hd_id3153717\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable or disable the macros. Choose <emph>%PRODUCTNAME - Security</emph> in the Options dialog box to set the options.</ahelp>"
-msgstr ""
+msgid "Contains"
+msgstr "Chứa"
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1056E\n"
+"05040100.xhp\n"
+"par_id3154306\n"
+"12\n"
"help.text"
-msgid "View Signature"
-msgstr "Xem chữ ký"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/desc\">Describes the relevant formatting used in the current style.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/managestylepage/desc\">Diễn tả các định dạng thích hợp dùng trong kiểu dáng hiện thời.</ahelp>"
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN10572\n"
+"05040100.xhp\n"
+"par_idN1072D\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can view the signature.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể xem chữ ký.</ahelp>"
+msgid "Assign Shortcut Key"
+msgstr "Gán phím tắt"
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN10587\n"
+"05040100.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "Always trust macros from this source"
-msgstr "Lúc nào cũng tin cậy vĩ lệnh từ nguồn này"
+msgid "Opens the <emph>Tools - Customize - Keyboard</emph> tab page where you can assign a shortcut key to the current Style."
+msgstr "Mở trang thẻ <emph>Công cụ > Đặc chế > Bàn phím</emph> trên đó bạn có thể gán một phím tắt cho kiểu dáng hiện thời."
-#: securitywarning.xhp
+#: 05040100.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1058B\n"
+"05040100.xhp\n"
+"par_id3145085\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds the current macro source to the list of <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">trusted sources</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm vĩ lệnh hiện thời vào danh sách các <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">nguồn tin cậy</link>.</ahelp>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Update Style\">Update Style</link>"
+msgstr "<link href=\"text/swriter/01/05140000.xhp\" name=\"Cập nhật Kiểu dáng\">Cập nhật Kiểu dáng</link>"
-#: securitywarning.xhp
+#: 05040200.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1059C\n"
+"05040200.xhp\n"
+"tit\n"
"help.text"
-msgid "Enable Macros"
-msgstr "Bật vĩ lệnh"
+msgid "Page"
+msgstr "Trang"
-#: securitywarning.xhp
+#: 05040200.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105A0\n"
+"05040200.xhp\n"
+"bm_id3150620\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows macros in the document to run.</ahelp>"
-msgstr "<ahelp hid=\".\">Cho phép chạy vĩ lệnh trong tài liệu.</ahelp>"
+msgid "<bookmark_value>pages;formatting and numbering</bookmark_value><bookmark_value>formatting;pages</bookmark_value><bookmark_value>paper formats</bookmark_value><bookmark_value>paper trays</bookmark_value><bookmark_value>printers;paper trays</bookmark_value><bookmark_value>layout;pages</bookmark_value><bookmark_value>binding space</bookmark_value><bookmark_value>margins;pages</bookmark_value><bookmark_value>gutter</bookmark_value>"
+msgstr "<bookmark_value>trang;định dạng và đánh số</bookmark_value><bookmark_value>định dạng;trang</bookmark_value><bookmark_value>định dạng tờ giấy</bookmark_value><bookmark_value>khay đựng giấy</bookmark_value><bookmark_value>máy in;khay đựng giấy</bookmark_value><bookmark_value>bố trí;trang</bookmark_value><bookmark_value>khoảng cách đóng gáy</bookmark_value><bookmark_value>lề;trang</bookmark_value><bookmark_value>lề đóng gáy</bookmark_value>"
-#: securitywarning.xhp
+#: 05040200.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105A3\n"
+"05040200.xhp\n"
+"hd_id3150620\n"
+"1\n"
"help.text"
-msgid "Disable Macros"
-msgstr "Tắt vĩ lệnh"
+msgid "<link href=\"text/shared/01/05040200.xhp\" name=\"Page\">Page</link>"
+msgstr "<link href=\"text/shared/01/05040200.xhp\" name=\"Trang\">Trang</link>"
-#: securitywarning.xhp
+#: 05040200.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105A7\n"
+"05040200.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Does not allow macros in the document to run.</ahelp>"
-msgstr "<ahelp hid=\".\">Không cho phép chạy vĩ lệnh trong tài liệu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/PageFormatPage\">Allows you to define page layouts for single and multiple-page documents, as well as a numbering and paper formats.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/PageFormatPage\">Cho phép bạn xác định các bố trí trang cho tài liệu kiểu trang đơn và đa trang, cũng như định dạng đánh số và tờ giấy.</ahelp>"
-#: 05100700.xhp
+#: 05040200.xhp
msgctxt ""
-"05100700.xhp\n"
-"tit\n"
+"05040200.xhp\n"
+"hd_id3149549\n"
+"31\n"
"help.text"
-msgid "Bottom"
-msgstr "Dưới"
+msgid "Paper format"
+msgstr "Định dạng giấy"
-#: 05100700.xhp
+#: 05040200.xhp
msgctxt ""
-"05100700.xhp\n"
-"hd_id3150249\n"
-"1\n"
+"05040200.xhp\n"
+"par_id3150710\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100700.xhp\" name=\"Bottom\">Bottom</link>"
-msgstr "<link href=\"text/shared/01/05100700.xhp\" name=\"Dưới\">Dưới</link>"
+msgid "Select from a list of predefined paper sizes, or define a custom paper format."
+msgstr "Chọn trong danh sách các kích cỡ tờ giấy đã xác định sẵn, hoặc xác định một định dạng tờ giấy riêng."
-#: 05100700.xhp
+#: 05040200.xhp
msgctxt ""
-"05100700.xhp\n"
-"par_id3154764\n"
-"2\n"
+"05040200.xhp\n"
+"hd_id3153394\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\".uno:CellVertBottom\">Aligns the contents of the cell to the bottom edge of the cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:CellVertBottom\">Căn chỉnh nội dung một ô theo cạnh dưới của ô.</ahelp>"
+msgid "Format"
+msgstr "Định dạng"
-#: 05100700.xhp
-#, fuzzy
+#: 05040200.xhp
msgctxt ""
-"05100700.xhp\n"
-"par_id3149201\n"
-"122\n"
+"05040200.xhp\n"
+"par_id3149827\n"
+"34\n"
"help.text"
-msgid "<variable id=\"zelleunten\">In the context menu of a cell, choose <emph>Cell - Bottom</emph></variable>"
-msgstr "<variable id=\"zelleoben\">Trong trình đơn ngữ cảnh của một ô, chọn<emph>Ô - Trên</emph></variable>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboPageFormat\">Select a predefined paper size, or create a custom format by entering the dimensions for the paper in the <emph>Height </emph>and <emph>Width </emph>boxes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboPageFormat\">Chọn một kích cỡ tờ giấy đã xác định sẵn, hoặc tạo một định dạng riêng bằng cách nhập các chiều của tờ giấy vào hộp <emph>Bề cao</emph> và <emph>Bề rộng</emph>.</ahelp>"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"tit\n"
+"05040200.xhp\n"
+"hd_id3154823\n"
+"35\n"
"help.text"
-msgid "Organize Macros"
-msgstr "Tổ chức Vĩ lệnh"
+msgid "Width"
+msgstr "Bề rộng"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"bm_id3237403\n"
+"05040200.xhp\n"
+"par_id3145313\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>macros;organizing</bookmark_value><bookmark_value>organizing;macros and scripts</bookmark_value><bookmark_value>script organization</bookmark_value>"
-msgstr "<bookmark_value>vĩ lệnh;tổ chức</bookmark_value><bookmark_value>tổ chức;vĩ lệnh và văn lệnh</bookmark_value><bookmark_value>tổ chức văn lệnh</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinWidth\">Displays the width of the selected paper format. To define a custom format, enter a width here.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinWidth\">Hiển thị chiều rộng của định dạng tờ giấy đã chọn. Để xác định một định dạng tờ giấy riêng, nhập vào đây một chiều rộng.</ahelp>"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN1054B\n"
+"05040200.xhp\n"
+"hd_id3147008\n"
+"37\n"
"help.text"
-msgid "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Organize Macros</link></variable>"
-msgstr "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Tổ chức Vĩ lệnh</link></variable>"
+msgid "Height"
+msgstr "Bề cao"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105B7\n"
+"05040200.xhp\n"
+"par_id3156113\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu with links to dialogs where you can organize macros and scripts.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở trình đơn phụ chứa liên kết đến hộp thoại trong đó bạn có thể tổ chức các vĩ lệnh và văn lệnh.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinHeight\">Displays the height of the selected paper format. To define a custom format, enter a height here.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinHeight\">Hiển thị chiều cao của định dạng tờ giấy đã chọn. Để xác định một định dạng tờ giấy riêng, nhập vào đây một chiều cao.</ahelp>"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN1057F\n"
+"05040200.xhp\n"
+"hd_id3146798\n"
+"39\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp\">%PRODUCTNAME Basic</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp\">%PRODUCTNAME Basic</link>"
+msgid "Portrait"
+msgstr "Thẳng đứng"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105C3\n"
+"05040200.xhp\n"
+"par_id3149811\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can organize %PRODUCTNAME Basic macros.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể tổ chức các vĩ lệnh Basic %PRODUCTNAME.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/radiobuttonPortrait\">Displays and prints the current document with the paper oriented vertically.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/radiobuttonPortrait\">Hiển thị và in ra tài liệu hiện tại trên tờ giấy theo chiều dọc.</ahelp>"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105AA\n"
+"05040200.xhp\n"
+"hd_id3150976\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp#script\">JavaScript</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp#script\">JavaScript</link>"
+msgid "Landscape"
+msgstr "Nằm ngang"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105BA\n"
+"05040200.xhp\n"
+"par_id3153827\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể tổ chức các văn lệnh.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/radiobuttonLandscape\">Displays and prints the current document with the paper oriented horizontally.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/radiobuttonLandscape\">Hiển thị và in ra tài liệu hiện tại trên tờ giấy theo chiều ngang.</ahelp>"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN10622\n"
+"05040200.xhp\n"
+"hd_id3156153\n"
+"74\n"
"help.text"
-msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
-msgstr "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+msgid "Text direction"
+msgstr "Hướng văn bản"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN10597\n"
+"05040200.xhp\n"
+"par_id3154380\n"
+"73\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp#script\">BeanShell</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp#script\">BeanShell</link>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">Select the text direction that you want to use in your document.</ahelp> The \"right-to-left (vertical)\" text flow direction rotates all layout settings to the right by 90 degrees, except for the header and footer."
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">Chọn hướng văn bản bạn muốn dùng trong tài liệu.</ahelp> Hướng văn bản « bên phải qua bên trái » (RTL) thì xoay theo xuôi chiều 90 độ tất cả các thiết lập bố trí, trừ phần đầu/chân trang."
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105A7\n"
+"05040200.xhp\n"
+"hd_id3156327\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể tổ chức các văn lệnh.</ahelp>"
+msgid "Paper tray"
+msgstr "Khay giấy"
-#: 06130200.xhp
+#: 05040200.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105FB\n"
+"05040200.xhp\n"
+"par_id3150771\n"
+"44\n"
"help.text"
-msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
-msgstr "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboPaperTray\">Select the paper source for your printer. If you want, you can assign different paper trays to different page styles. For example, assign a different tray to the First Page style and load the tray with your company's letterhead paper.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboPaperTray\">Chọn nguồn giấy cho máy in. Bạn cũng có thể gán các khay đựng giấy khác nhau cho kiểu dáng trang khác nhau. Chẳng hạn, gán cho Kiểu dáng Trang đầu một khay khác, và nạp giấy có phần in đầu thư của công ty.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"tit\n"
+"05040200.xhp\n"
+"hd_id3150275\n"
+"3\n"
"help.text"
-msgid "Numbers / Format"
-msgstr "Số / Định dạng"
+msgid "Margins"
+msgstr "Lề"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"bm_id3152942\n"
+"05040200.xhp\n"
+"par_id3153348\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>formats; number and currency formats</bookmark_value><bookmark_value>number formats; formats</bookmark_value><bookmark_value>currencies;format codes</bookmark_value><bookmark_value>defaults; number formats</bookmark_value>"
-msgstr "<bookmark_value>định dạng; định dạng kiểu số và tiền tộ</bookmark_value><bookmark_value>định dạng số; định dạng</bookmark_value><bookmark_value>tiền tệ;mã định dạng</bookmark_value><bookmark_value>gía tri mặc định; định dạng số</bookmark_value>"
+msgid "Specify the amount of space to leave between the edges of the page and the document text."
+msgstr "Ghi rõ khoảng cách cần để lại giữa cạnh giấy và văn bản tài liệu."
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3152942\n"
-"1\n"
+"05040200.xhp\n"
+"hd_id3153061\n"
+"5\n"
"help.text"
-msgid "Numbers / Format"
-msgstr "Số / Định dạng"
+msgid "Left / Inner"
+msgstr "Trái/Trong"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3145071\n"
-"2\n"
+"05040200.xhp\n"
+"par_id3151384\n"
+"6\n"
"help.text"
-msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp> </variable>"
-msgstr "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Ghi rõ các tùy chọn định dạng về những ô bảng đã chọn.</ahelp></variable>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargLeft\">Enter the amount of space to leave between the left edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the inner text margin and the inner edge of the page.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinMargLeft\">Nhập khoảng cách cần để lại giữa cạnh bên trái của trang và văn bản tài liệu. Nếu bạn đang dùng bố trí trang <emph>Đối xứng</emph>, hãy nhập khoảng cách cần để lại giữa lề văn bản bên trong và cạnh bên trong của trang.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155392\n"
-"3\n"
+"05040200.xhp\n"
+"hd_id3154923\n"
+"8\n"
"help.text"
-msgid "Category"
-msgstr "Loại"
+msgid "Right / Outer"
+msgstr "Phải/Ngoài"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3150774\n"
-"4\n"
+"05040200.xhp\n"
+"par_id3147304\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY\">Select a category from the list, and then select a formatting style in the <emph>Format </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY\">Chọn một phân loại trong danh sách, sau đó chọn một kiểu dáng định dạng trong hộp <emph>Định dạng</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargRight\">Enter the amount of space to leave between the right edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the outer text margin and the outer edge of the page.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinMargRight\">Nhập khoảng cách cần để lại giữa cạnh bên phải của trang và văn bản tài liệu. Nếu bạn đang dùng bố trí trang <emph>Đối xứng</emph>, hãy nhập khoảng cách cần để lại giữa lề văn bản bên ngoài và cạnh bên ngoài của trang.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3145416\n"
-"101\n"
+"05040200.xhp\n"
+"hd_id3161657\n"
+"11\n"
"help.text"
-msgid "The default currency format for a cell is determined by the regional settings of your operating system."
-msgstr "Định dạng tiền tệ mặc định cho ô bảng được xác định bởi thiết lập miền địa phương (locale) của hệ điều hành."
+msgid "Top"
+msgstr "Trên"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155342\n"
-"5\n"
+"05040200.xhp\n"
+"par_id3154226\n"
+"12\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargTop\">Enter the amount of space to leave between the upper edge of the page and the document text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinMargTop\">Nhập khoảng cách cần để lại giữa cạnh bên trên của trang và văn bản tài liệu.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3148491\n"
-"6\n"
+"05040200.xhp\n"
+"hd_id3153381\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_LB_FORMAT\">Select how you want the contents of the selected cell(s) to be displayed.</ahelp> The code for the selected option is displayed in the <emph>Format Code</emph> box."
-msgstr "<ahelp hid=\"HID_NUMBERFORMAT_LB_FORMAT\">Ghi rõ có nên hiển thị nội dung của những ô đã chọn như thế nào.</ahelp> Mã cho tùy chọn đã chọn thì hiển thị trong hộp <emph>Mã định dạng</emph>."
+msgid "Bottom"
+msgstr "Dưới"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3154811\n"
-"97\n"
+"05040200.xhp\n"
+"par_id3154138\n"
+"14\n"
"help.text"
-msgid "Currency category list boxes"
-msgstr "Hộp liệt kê phân loại tiền tệ"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargBot\">Enter the amount of space to leave between the lower edge of the page and the document text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinMargBot\">Nhập khoảng cách cần để lại giữa cạnh bên dưới của trang và văn bản tài liệu.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3148563\n"
-"98\n"
+"05040200.xhp\n"
+"par_id0522200809473735\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_CURRENCY\">Select a currency, and then scroll to the top of the <emph>Format</emph> list to view the formatting options for the currency.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_CURRENCY\">Chọn một tiền tệ, sau đó cuộn lên đầu của danh sách <emph>Định dạng</emph> để xem các tùy chọn định dạng cho tiền tệ đó.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chỉnh canh văn bản trên Kiểu dáng Trang được chọn theo lưới nằm dọc trên trang.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3150866\n"
-"99\n"
+"05040200.xhp\n"
+"hd_id3150488\n"
+"55\n"
"help.text"
-msgid "The format code for currencies uses the form [$xxx-nnn], where xxx is the currency symbol, and nnn the country code. Special banking symbols, such as EUR (for Euro), do not require the country code. The currency format is not dependent on the language that you select in the<emph> Language</emph> box."
-msgstr "Mã định dạng cho tiền tề theo dạng « [$xxx-nnn] », mà « xxx » là ký hiệu tiền tệ, và « nnn » là mã quốc gia. Một số ký hiệu ngân hàng đặc biệt (v.d. EUR cho đồng Âu Euro €) không cần thiết mã quốc gia riêng. Định dạng tiền tệ không phụ thuộc vào ngôn ngữ bạn chọn trong hộp <emph>Ngôn ngữ</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đăng ký đúng </caseinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3154071\n"
-"23\n"
+"05040200.xhp\n"
+"par_id3151112\n"
+"56\n"
"help.text"
-msgid "Language"
-msgstr "Ngôn ngữ"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/pageformatpage/checkRegisterTrue\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp> The spacing of the grid is defined by the <emph>Reference Style</emph>.</caseinline></switchinline>"
+msgstr ""
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3154138\n"
-"24\n"
+"05040200.xhp\n"
+"par_id0522200809473732\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE\">Specifies the language setting for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>. With the language set to <emph>Automatic</emph>, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE\">Ghi rõ thiết lập ngôn ngữ cho các <switchinline select=\"appl\"><caseinline select=\"CALC\">ô bảng </caseinline><defaultinline>trường</defaultinline></switchinline> đã chọn. Khi ngôn ngữ được đặt thành mục <emph>Tự động</emph>, $[officename] tự động áp dụng những định dạng con số liên quan đến ngôn ngữ mặc định của hệ thống. Hãy chọn bất cứ ngôn ngữ nào để đặt thiết lập cho các <switchinline select=\"appl\"><caseinline select=\"CALC\">ô bảng </caseinline><defaultinline>trường </defaultinline></switchinline> đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid. </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hãy lựa chọn Kiểu dáng Đoạn văn mà bạn muốn sử dụng làm tham chiếu để sắp hàng văn bản theo Kiểu dáng Trang được chọn. Chiều cao của phông chữ được ghi rõ trong Kiểu dáng Tham chiếu thì đặt cách giãn cách lưới nằm dọc trên trang.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3157320\n"
-"102\n"
+"05040200.xhp\n"
+"hd_id3150686\n"
+"57\n"
"help.text"
-msgid "The language setting ensures that date and currency formats are preserved even when the document is opened in an operating system that uses a different default language setting."
-msgstr "Thiết lập ngôn ngữ này đảm bảo rằng các định dạng ngày tháng và tiền tệ vẫn còn được bảo tồn, ngay cả khi tài liệu được mở dưới một hệ điều hành dùng thiết lập ngôn ngữ mặc định khác."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Reference Style</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kiểu dáng Tham chiếu </caseinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155995\n"
-"104\n"
+"05040200.xhp\n"
+"par_id3146146\n"
+"58\n"
"help.text"
-msgid "Source format"
-msgstr "Định dạng nguồn"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboRegisterStyle\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid.</caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboRegisterStyle\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn Kiểu dáng Đoạn văn bạn muốn dùng làm tham chiếu để canh lề văn bản theo Kiểu dáng Trang đã chọn. Chiều cao của phông được ghi rõ trong kiểu dáng tham chiếu thì đặt khoảng cách của lưới thẳng đứng trên trang.</caseinline></switchinline></ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3144432\n"
-"105\n"
+"05040200.xhp\n"
+"hd_id3147480\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_NUMBERFORMAT_CB_SOURCEFORMAT\">Uses the same number format as the cells containing the data for the chart.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_NUMBERFORMAT_CB_SOURCEFORMAT\">Dùng cùng một định dạng con số với những ô bảng chứa dữ liệu cho đồ thị.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Table alignment</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chỉnh canh bảng</caseinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3148451\n"
-"7\n"
+"05040200.xhp\n"
+"par_id3150417\n"
+"48\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Specify the alignment options for the cells on a printed page.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ghi rõ các tùy chọn chỉnh canh cho các ô bảng trên trang đã in. </caseinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3148922\n"
-"8\n"
+"05040200.xhp\n"
+"par_id0522200809473845\n"
"help.text"
-msgid "Specify the options for the selected format."
-msgstr "Ghi rõ các tùy chọn về định dạng đã chọn."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells horizontally on the printed page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều ngang trên tờ giấy được in ấn.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3153970\n"
-"9\n"
+"05040200.xhp\n"
+"hd_id3147047\n"
+"49\n"
"help.text"
-msgid "Decimal places"
-msgstr "Lần số"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Horizontal</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nằm ngang </caseinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3154684\n"
-"10\n"
+"05040200.xhp\n"
+"par_id3153878\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS\">Enter the number of decimal places that you want to display.</ahelp>"
-msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS\">Gõ số vị trí thập phân bạn muốn hiển thị.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/checkbuttonHorz\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells horizontally on the printed page.</caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/checkbuttonHorz\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Giữa lại các ô bảng theo chiều ngang trên trang đã in. </caseinline></switchinline></ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3154819\n"
-"11\n"
+"05040200.xhp\n"
+"par_id0522200809473811\n"
"help.text"
-msgid "Leading zeroes"
-msgstr "Số không đi trước"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells vertically on the printed page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều dọc trên tờ giấy được in ấn.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3147352\n"
-"12\n"
+"05040200.xhp\n"
+"hd_id3153522\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES\">Enter the maximum number of zeroes to display in front of the decimal point.</ahelp>"
-msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES\">Gõ số tối đa các số không đi trước cần hiển thị phía trước dấu thập phân.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vertical</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Thẳng đứng</caseinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155131\n"
-"13\n"
+"05040200.xhp\n"
+"par_id3149413\n"
+"52\n"
"help.text"
-msgid "Negative numbers in red"
-msgstr "Số âm màu đỏ"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/checkbuttonVert\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells vertically on the printed page.</caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/checkbuttonVert\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Giữa lại các ô bảng theo chiều dọc trên trang đã in. </caseinline></switchinline></ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3159252\n"
-"14\n"
+"05040200.xhp\n"
+"hd_id3147381\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED\">Changes the font color of negative numbers to red.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED\">Thay đổi sang màu đỏ màu phông của con số âm.</ahelp>"
+msgid "Layout settings"
+msgstr "Thiết lập bố trí"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3147434\n"
+"05040200.xhp\n"
+"hd_id3151041\n"
"15\n"
"help.text"
-msgid "Use thousands separator"
-msgstr "Dung dấu tách phần nghìn"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page Layout</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Bố trí trang</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3146148\n"
+"05040200.xhp\n"
+"par_id3157962\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND\">Inserts a separator between thousands. The type of separator that is used depends on your language settings.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND\">Chèn vào giữa phần nghìn và phần còn lại một dấu tách. Dấu tách được dùng thì phụ thuộc vào thiết lập ngôn ngữ của bạn.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Select the page layout style to use in the current document.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chọn kiểu dáng bố trí trang cần dùng trong tài liệu hiện tại.</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3150103\n"
+"05040200.xhp\n"
+"hd_id3145744\n"
"17\n"
"help.text"
-msgid "Format code"
-msgstr "Mã định dạng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page layout</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Bố trí trang</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3159156\n"
+"05040200.xhp\n"
+"par_id3154218\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT\">Hiển thị mã định dạng con số cho định dạng đã chọn. Bạn cũng có thể nhập một định dạng tự chọn.</ahelp> Các tùy chọn theo đây chỉ sẵn sàng cho định dạng con số tự xác định."
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboPageLayout\"><switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Specify whether the current style should show odd pages, even pages, or both odd and even pages.</defaultinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboPageLayout\"><switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Ghi rõ nếu kiểu dáng hiện thời nên hiển thị các trang lẻ, các trang chẫn, hoặc cả hai.</defaultinline></switchinline></ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155311\n"
+"05040200.xhp\n"
+"hd_id3154946\n"
"19\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Right and left</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Bên phải và bên trái</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3147219\n"
+"05040200.xhp\n"
+"par_id3153058\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_TBI_ADD\">Adds the number format code that you entered to the user-defined category.</ahelp>"
-msgstr "<ahelp hid=\"HID_NUMBERFORMAT_TBI_ADD\">Thêm vào phân loại tự xác định mã định dạng con số bạn đã nhập vào.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with left and right margins as specified.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời hiển thị cả hai trang lẻ và trang chẵn với lề bên trái và lề bên phải, như được ghi rõ.</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3149263\n"
+"05040200.xhp\n"
+"hd_id3147287\n"
"21\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Mirrored</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Đối xứng</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3154150\n"
+"05040200.xhp\n"
+"par_id3147317\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_TBI_REMOVE\">Deletes the selected number format.</ahelp> The changes are effective after you restart $[officename]."
-msgstr "<ahelp hid=\"HID_NUMBERFORMAT_TBI_REMOVE\">Xoá định dạng con số đã chọn.</ahelp> Các thay đổi có tác động một khi bạn khởi chạy lại $[officename]."
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with inner and outer margins as specified. Use this layout if you want to bind the printed pages like a book. Enter the binding space as the \"Inner\" margin.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời hiển thị cả hai trang lẻ và trang chẵn với lề bên trong và bên ngoài như được ghi rõ. Hãy sử dụng bố trí này nếu bạn muốn đóng các trang được in như đóng sách. Nhập khoảng đóng sách như là lề « Trong ».</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3153573\n"
+"05040200.xhp\n"
+"hd_id3155308\n"
+"23\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only right</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chỉ bên phải</defaultinline></switchinline>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3152885\n"
+"24\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only odd (right) pages. Even pages are shown as blank pages.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời chỉ hiển thị các trang lẻ (bên phải). Các trang chẫn được hiển thị dưới dạng trang còn trắng.</defaultinline></switchinline>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3157309\n"
+"25\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only left</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chỉ bên trái</defaultinline></switchinline>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3147326\n"
"26\n"
"help.text"
-msgid "Edit Comment"
-msgstr "Sửa chú thích"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only even (left) pages. Odd pages are shown as blank pages.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời chỉ hiển thị các trang chẵn (bên trái). Các trang lẻ được hiển thị dưới dạng trang còn trắng.</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3083444\n"
+"05040200.xhp\n"
+"hd_id3155366\n"
+"53\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đăng ký đúng </caseinline></switchinline>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3083281\n"
"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_TBI_INFO\">Adds a comment to the selected number format.</ahelp>"
-msgstr "<ahelp hid=\"HID_NUMBERFORMAT_TBI_INFO\">Thêm vào định dạng con số đã chọn một chú thích.</ahelp>"
+msgid "Format"
+msgstr "Định dạng"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3150332\n"
-"95\n"
+"05040200.xhp\n"
+"par_id3153745\n"
+"28\n"
"help.text"
-msgid "Name line"
-msgstr "Đường tên"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboLayoutFormat\">Select the page numbering format that you want to use for the current page style.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboLayoutFormat\">Chọn định dạng đánh số trang bạn muốn dùng cho kiểu dáng trang hiện thời.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3156060\n"
-"96\n"
+"05040200.xhp\n"
+"par_id0522200809473965\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUMBERFORMAT:ED_COMMENT\">Enter a comment for the selected number format, and then click outside this box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUMBERFORMAT:ED_COMMENT\">Nhập chú thích cho định dạng con số đã chọn, sau đó nhấn vào bên ngoài hộp này.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thay đổi kích cỡ của đối tượng vẽ để vừa trên định dạng tờ giấy bạn chọn. Vẫn bảo tồn bố trí các đối tượng vẽ.</ahelp>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3145364\n"
+"05040200.xhp\n"
+"hd_id3151318\n"
+"67\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>"
-msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Mã định dạng con số</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>AutoFit object to page format</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>Tự động vừa đối tượng khít định dạng trang</defaultinline></switchinline>"
-#: 05020300.xhp
+#: 05040200.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3153095\n"
+"05040200.xhp\n"
+"par_id3144746\n"
+"68\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Custom format codes</link>"
-msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Mã định dạng tự chọn</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"cui/ui/pageformatpage/checkAdaptBox\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp></defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"cui/ui/pageformatpage/checkAdaptBox\">Thay đổi kích cỡ của các đối tượng vẽ để vừa định dạng tờ giấy bạn chọn. Vẫn còn bảo tồn sự sắp đặt các đối tượng vẽ.</ahelp></defaultinline></switchinline>"
-#: 05260000.xhp
+#: 05040200.xhp
msgctxt ""
-"05260000.xhp\n"
+"05040200.xhp\n"
+"par_id3149123\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000001.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgstr "<link href=\"text/shared/00/00000001.xhp#metrik\" name=\"Thay đổi đơn vị đo\">Thay đổi đơn vị đo</link>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3153730\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
+msgstr "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Ghi Đăng ký đúng\">Ghi Đăng ký đúng</link>"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
"tit\n"
"help.text"
-msgid "Anchor"
-msgstr "Neo"
+msgid "Header"
+msgstr "Đầu trang"
-#: 05260000.xhp
+#: 05040300.xhp
msgctxt ""
-"05260000.xhp\n"
-"hd_id3155913\n"
+"05040300.xhp\n"
+"hd_id3155599\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\">Anchor</link>"
-msgstr "<link href=\"text/shared/01/05260000.xhp\" name=\"Thả neo\">Thả neo</link>"
+msgid "<link href=\"text/shared/01/05040300.xhp\" name=\"Header\">Header</link>"
+msgstr "<link href=\"text/shared/01/05040300.xhp\" name=\"Đầu trang\">Đầu trang</link>"
-#: 05260000.xhp
+#: 05040300.xhp
msgctxt ""
-"05260000.xhp\n"
-"par_id3145356\n"
+"05040300.xhp\n"
+"par_id3156027\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the anchoring options for the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt các tùy chọn về chức năng thả neo cho đối tượng đã chọn.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/HFFormatPage\">Adds a header to the current page style. A header is an area in the top page margin, where you can add text or graphics.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/HFFormatPage\">Thêm vào kiểu dáng trang hiện thời một phần đầu trang. Đầu trang là một vùng trong lề bên trên trang, vào đó bạn có thể thêm văn bản hay ảnh.</ahelp>"
-#: 05260000.xhp
+#: 05040300.xhp
msgctxt ""
-"05260000.xhp\n"
-"par_id3150789\n"
-"3\n"
+"05040300.xhp\n"
+"par_id3150693\n"
+"33\n"
"help.text"
-msgid "If the selected object is in a frame, you can also anchor the object to the frame."
-msgstr "Đối tượng đã chọn cũng nằm trong khung thì bạn cũng có thể thả neo đối tượng vào khung đó."
+msgid "If you want, you can also add borders or a background fill to a header."
+msgstr "Bạn cũng có thể thêm vào đầu trang viền hay nền đã tô đầy."
-#: 02230150.xhp
+#: 05040300.xhp
msgctxt ""
-"02230150.xhp\n"
-"tit\n"
+"05040300.xhp\n"
+"par_id3153821\n"
+"32\n"
"help.text"
-msgid "Protect Records"
-msgstr "Bảo vệ bản ghi"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To add a header to the current page style, select <emph>Header on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để thêm vào kiểu dáng trang hiện thời một phần đầu trang, bật tùy chọn <emph>Hiện đầu trang</emph>, sau đó nhấn vào nút <emph>OK</emph>. </caseinline></switchinline>"
-#: 02230150.xhp
+#: 05040300.xhp
msgctxt ""
-"02230150.xhp\n"
-"hd_id3154349\n"
-"1\n"
+"05040300.xhp\n"
+"par_id3153827\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230150.xhp\" name=\"Protect Records\">Protect Records</link>"
-msgstr "<link href=\"text/shared/01/02230150.xhp\" name=\"Bảo vệ bản ghi\">Bảo vệ bản ghi</link>"
+msgid "If you want to extend a header into the page margins, insert a frame into the header."
+msgstr "Muốn kéo dài phần đầu trang qua lề trang thì chèn một khung vào đầu trang."
-#: 02230150.xhp
+#: 05040300.xhp
msgctxt ""
-"02230150.xhp\n"
-"par_id3150794\n"
-"2\n"
+"05040300.xhp\n"
+"par_id3154046\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".uno:ProtectTraceChangeMode\">Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password.</ahelp>"
-msgstr "<ahelp hid=\".uno:ProtectTraceChangeMode\">Ngăn cản người dùng tắt chức năng thu thay đổi, hay chấp nhận/từ chối thay đổi, nếu người dùng không nhập mật khẩu đúng.</ahelp>"
+msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
+msgstr "Để di chuyển nhanh dấu nhắc từ trong văn bản sang \"Đầu trang\" hay \"Cuối trang\", nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down. Nhấn nút đó một lần nữa để chuyển dấu nhắc về lại văn bản chính."
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"tit\n"
+"05040300.xhp\n"
+"hd_id3152360\n"
+"4\n"
"help.text"
-msgid "Font Effects"
-msgstr "Hiệu ứng phông"
+msgid "Header"
+msgstr "Đầu trang"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"bm_id3153514\n"
+"05040300.xhp\n"
+"par_id3154924\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>fonts;effects</bookmark_value> <bookmark_value>formatting; font effects</bookmark_value> <bookmark_value>characters; font effects</bookmark_value> <bookmark_value>text; font effects</bookmark_value> <bookmark_value>effects; fonts</bookmark_value> <bookmark_value>underlining; text</bookmark_value> <bookmark_value>capital letters; font effects</bookmark_value> <bookmark_value>lowercase letters; font effects</bookmark_value> <bookmark_value>titles; font effects</bookmark_value> <bookmark_value>small capitals</bookmark_value> <bookmark_value>strikethrough; font effects</bookmark_value> <bookmark_value>fonts; strikethrough</bookmark_value> <bookmark_value>outlines; font effects</bookmark_value> <bookmark_value>fonts; outlines</bookmark_value> <bookmark_value>shadows; characters</bookmark_value> <bookmark_value>fonts; shadows</bookmark_value> <bookmark_value>fonts;color ignored</bookmark_value> <bookmark_value>ignored font colors</bookmark_value> <bookmark_value>colors;ignored text color</bookmark_value>"
-msgstr "<bookmark_value>phông;hiệu ứng</bookmark_value><bookmark_value>định dạng;hiệu ứng phông</bookmark_value><bookmark_value>ký tự; hiệu ứng phông</bookmark_value><bookmark_value>văn bản; hiệu ứng phông</bookmark_value><bookmark_value>hiệu ứng; phông</bookmark_value><bookmark_value>gạch dưới; văn bản</bookmark_value><bookmark_value>chữ hoa; hiệu ứng phông</bookmark_value><bookmark_value>chữ thường; hiệu ứng phông</bookmark_value><bookmark_value>tiêu đề; hiệu ứng phông</bookmark_value><bookmark_value>chữ hoa nhỏ</bookmark_value><bookmark_value>gạch đè; hiệu ứng phông</bookmark_value><bookmark_value>phông; gạch đè</bookmark_value><bookmark_value>nét ngoài; hiệu ứng phông</bookmark_value><bookmark_value>phông; nét ngoài</bookmark_value><bookmark_value>bóng; ký tự</bookmark_value><bookmark_value>phông; bóng</bookmark_value><bookmark_value>màu sắc; phông</bookmark_value><bookmark_value>phông;màu sắc</bookmark_value>"
+msgid "Set the properties of the header."
+msgstr "Đặt các thuộc tính về đầu trang."
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3153514\n"
-"1\n"
+"05040300.xhp\n"
+"hd_id3147304\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Hiệu ứng Phông\">Hiệu ứng Phông</link>"
+msgid "Header on"
+msgstr "Hiện đầu trang"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3149205\n"
-"2\n"
+"05040300.xhp\n"
+"par_id3154388\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/EffectsPage\">Specify the font effects that you want to use.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkFooterOn\">Adds a header to the current page style.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkFooterOn\">Thêm vào kiểu dáng trang hiện thời một phần đầu trang.</ahelp>"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"hd_id3154936\n"
+"21\n"
+"help.text"
+msgid "Same content left/right"
+msgstr "Cùng nội dung bên trái/phải"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3154938\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkSameLR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different header to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkSameLR\">Các trang lẻ và trang chẵn đều có cùng nội dung.<switchinline select=\"appl\"><caseinline select=\"CALC\"> Để gán phần đầu trang khác nhau cho các trang lẻ và các trang chẵn, tắt tùy chọn này, sau đó nhấn vào nút <emph>Sửa</emph>. </caseinline></switchinline></ahelp>"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"hd_id3154937\n"
+"21\n"
+"help.text"
+msgid "Same content on first page"
msgstr ""
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3149482\n"
-"81\n"
+"05040300.xhp\n"
+"par_id3154939\n"
+"22\n"
"help.text"
-msgid "Font Color"
-msgstr "Màu phông"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkSameFP\">First and even/odd pages share the same content.</ahelp>"
+msgstr ""
-#: 05020200.xhp
-#, fuzzy
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3146924\n"
-"82\n"
+"05040300.xhp\n"
+"hd_id3145202\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/fontcolorlb\">Sets the color for the selected text. If you select<emph> Automatic</emph>, the text color is set to black for light backgrounds and to white for dark backgrounds.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_EFFECTS_LB_FONTCOLOR\">Đặt màu cho đoạn văn đã chọn. Bật tùy chọn <emph>Tự động</emph> thì màu văn bản được đặt thành màu đen cho nền nhạt, và thành màu trắng cho nền tối.</ahelp>"
+msgid "Left margin"
+msgstr "Lề trái"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CC2\n"
+"05040300.xhp\n"
+"par_id3150449\n"
+"18\n"
"help.text"
-msgid "To change the color of a text selection, select the text that you want to change, and click the <emph>Font Color</emph> icon. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
-msgstr "Để thay đổi màu của đoạn văn đã chọn, lựa chọn đoạn văn cần thay đổi, sau đó nhấn vào biểu tượng <emph>Màu phông</emph>. Để áp dụng màu khác, nhấn vào mũi tên bên cạnh biểu tượng <emph>Màu phông</emph>, sau đó chọn màu thích hợp."
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargLeft\">Enter the amount of space to leave between the left edge of the page and the left edge of the header.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/spinMargLeft\">Nhập khoảng cách cần để lại giữa cạnh bên trái của trang và cạnh bên trái của phần đầu trang.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CC9\n"
+"05040300.xhp\n"
+"hd_id3153351\n"
+"19\n"
"help.text"
-msgid "If you click the <emph>Font Color</emph> icon before you select text, the paint can cursor appears. To change the color of text, select the text with the paint can cursor. To change the color of a single word, double-click in a word. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
-msgstr "Nếu bạn nhấn vào biểu tượng <emph>Màu phông</emph> trước khi lựa chọn đoạn văn, con trỏ trở thành xô sơn. Để thay đổi màu của văn bản, lựa chọn văn bản bằng con trỏ xô sơn. Để thay đổi màu của một từ riêng lẻ, nhấn-đôi vào từ đó. Để áp dụng màu khác, nhấn vào mũi tên bên cạnh biểu tượng <emph>Màu phông</emph>, sau đó chọn màu thích hợp."
+msgid "Right margin"
+msgstr "Lề phải"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CD6\n"
+"05040300.xhp\n"
+"par_id3157322\n"
+"20\n"
"help.text"
-msgid "To undo the last change, right-click."
-msgstr "Để hủy bước mới làm, nhắp-phải."
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargRight\">Enter the amount of space to leave between the right edge of the page and the right edge of the header.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/spinMargRight\">Nhập khoảng cách cần để lại giữa cạnh bên phải của trang và cạnh bên phải của phần đầu trang.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CDA\n"
+"05040300.xhp\n"
+"hd_id3148672\n"
+"9\n"
"help.text"
-msgid "To exit the paint can mode, click once, or press the Escape key."
-msgstr "Để ra khỏi chế độ xô sơn, nhấn chuột một lần, hoặc bấm phím <item type=\"keycode\">Esc</item>."
+msgid "Spacing"
+msgstr "Giãn cách"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150037\n"
-"85\n"
+"05040300.xhp\n"
+"par_id3153970\n"
+"10\n"
"help.text"
-msgid "The text color is ignored when printing, if the <emph>Print black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the Options dialog box."
-msgstr ""
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinSpacing\">Enter the amount of space that you want to maintain between the bottom edge of the header and the top edge of the document text.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/spinSpacing\">Nhập khoảng cách cần bảo tồn giữa cạnh bên dưới của phần đầu trang và cạnh bên trên của văn bản tài liệu.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id7613757\n"
+"05040300.xhp\n"
+"hd_id3154330\n"
+"35\n"
"help.text"
-msgid "The text color is ignored on screen, if the <emph>Use automatic font color for screen display</emph> check box is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01013000.xhp\"><emph>%PRODUCTNAME - Accessibility</emph></link>."
-msgstr ""
+msgid "Use dynamic spacing"
+msgstr "Giãn cách động"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3144766\n"
-"84\n"
+"05040300.xhp\n"
+"par_id3148453\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Click to apply the current font color to the selected characters. You can also click here, and then drag a selection to change the text color. Click the arrow next to the icon to open the Font color toolbar.</variable></ahelp>"
-msgstr "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Nhấn vào để áp dụng cho các ký tự đã chọn màu phông hiện thời. Bạn cũng có thể nhấn vào đây, sau đó kéo vùng chọn để thay đổi màu văn bản. Nhấn vào mũi tên bên cạnh biểu tượng để mở thanh công cụ <emph>Màu phông</emph>.</variable></ahelp>"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">Overrides the <emph>Spacing </emph>setting, and allows the header to expand into the area between the header and the document text.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">Có quyền cao hơn thiết lập <emph>Giãn cách</emph>, và cho phép bạn mở rộng vào vùng giữa phần đầu trang và văn bản tài liệu.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3146137\n"
-"3\n"
+"05040300.xhp\n"
+"hd_id3150290\n"
+"13\n"
"help.text"
-msgid "Effects"
-msgstr "Hiệu ứng"
+msgid "Height"
+msgstr "Bề cao"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150084\n"
-"64\n"
+"05040300.xhp\n"
+"par_id3155429\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/effectslb\">Select the font effects that you want to apply.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinHeight\">Enter the height that you want for the header.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/spinHeight\">Nhập chiều cao bạn muốn đặt cho phần đầu trang.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3149575\n"
-"65\n"
+"05040300.xhp\n"
+"hd_id3156543\n"
+"15\n"
"help.text"
-msgid "Effects"
-msgstr "Hiệu ứng"
+msgid "AutoFit height"
+msgstr "Bề cao tự động vừa"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3148944\n"
-"66\n"
+"05040300.xhp\n"
+"par_id3153095\n"
+"16\n"
"help.text"
-msgid "The following capitalization effects are available:"
-msgstr "Có sẵn những hiệu ứng viết chữ đầu hoa này:"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkAutofit\">Automatically adjusts the height of the header to fit the content that you enter.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkAutofit\">Tự động điều chỉnh chiều cao của phần đầu trang để vừa nội dung bạn nhập.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3155922\n"
-"67\n"
+"05040300.xhp\n"
+"hd_id3145271\n"
+"24\n"
"help.text"
-msgid "Without - no effect is applied"
-msgstr "Không có — không áp dụng hiệu ứng."
+msgid "More"
+msgstr "Nhiều"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3154280\n"
-"68\n"
+"05040300.xhp\n"
+"par_id3145367\n"
+"25\n"
"help.text"
-msgid "Capitals - changes the selected lowercase characters to uppercase characters"
-msgstr "Chữ hoa — chuyển đổi sang chữ hoa các ký tự chữ thường đã chọn."
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/buttonMore\">Defines a border, a background color, or a background pattern for the header.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/buttonMore\">Xác định cho phần đầu trang một viền, màu nền hay mẫu nền.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3148947\n"
-"69\n"
+"05040300.xhp\n"
+"hd_id3155306\n"
+"27\n"
"help.text"
-msgid "Lowercase - changes the selected uppercase characters to lower characters"
-msgstr "Chữ thường — chuyển đổi sang chữ thường các ký tự chữ hoa đã chọn."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sửa </caseinline></switchinline>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3149456\n"
-"71\n"
+"05040300.xhp\n"
+"par_id0609200910261473\n"
"help.text"
-msgid "Title font - changes the first character of each selected word to an uppercase character"
-msgstr "Phông tựa đề — chuyển đổi sang chữ hoa ký tự đầu của mỗi từ đã chọn."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit header text.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm hoặc chỉnh sửa văn bản đầu trang.</ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3154937\n"
-"70\n"
+"05040300.xhp\n"
+"par_id3145749\n"
+"28\n"
"help.text"
-msgid "Small capitals - changes the selected lowercase characters to uppercase characters, and then reduces their size"
-msgstr "Chữ hoa nhỏ — chuyển đổi sang chữ hoa các ký tự chữ thường đã chọn, sau đó giảm kích cỡ."
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/buttonEdit\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit\">Add or edit</link> header text. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/buttonEdit\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Thêm hay Sửa\">Thêm hay Sửa</link> văn bản phần đầu. </caseinline></switchinline></ahelp>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3154129\n"
-"76\n"
+"05040300.xhp\n"
+"par_id3163716\n"
"help.text"
-msgid "Relief"
-msgstr "Khắc nổi"
+msgid "<link href=\"text/swriter/01/04220000.xhp\" name=\"Headers\">Headers</link>"
+msgstr "<link href=\"text/swriter/01/04220000.xhp\" name=\"Đầu trang\">Đầu trang</link>"
-#: 05020200.xhp
-#, fuzzy
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3146974\n"
-"77\n"
+"05040300.xhp\n"
+"par_id3150032\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/relieflb\">Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_EFFECTS_LB_RELIEF\">Chọn một hiệu ứng khắc nổi cần áp dụng cho đoạn văn đã chọn. Hiệu ứng đắp nổi làm cho các ký tự hình như chúng đã được nâng lên phía trước trang. Hiệu ứng khắc làm cho các ký tự hình như chúng đã được ấn vào trang.</ahelp>"
+msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgstr "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Thay đổi đơn vị đo\">Thay đổi đơn vị đo</link>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3147287\n"
-"72\n"
+"05040300.xhp\n"
+"par_id3150873\n"
"help.text"
-msgid "Outline"
-msgstr "Nét ngoài"
+msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Viền\">Viền</link>"
-#: 05020200.xhp
+#: 05040300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3159126\n"
-"73\n"
+"05040300.xhp\n"
+"par_id3147326\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/outlinecb\">Displays the outline of the selected characters. This effect does not work with every font.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Nền\">Nền</link>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3163714\n"
-"74\n"
+"05040400.xhp\n"
+"tit\n"
"help.text"
-msgid "Shadow"
-msgstr "Bóng"
+msgid "Footer"
+msgstr "Chân trang"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150962\n"
-"75\n"
+"05040400.xhp\n"
+"hd_id3155620\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/shadowcb\">Adds a shadow that casts below and to the right of the selected characters.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05040400.xhp\" name=\"Footer\">Footer</link>"
+msgstr "<link href=\"text/shared/01/05040400.xhp\" name=\"Chân trang\">Chân trang</link>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"bm_id410168\n"
+"05040400.xhp\n"
+"par_id3156553\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
-msgstr "<bookmark_value>phông nhấp nháy</bookmark_value><bookmark_value>phông chớp nháy</bookmark_value>"
+msgid "<ahelp hid=\"HID_FORMAT_FOOTER\">Adds a footer to the current page style. A footer is an area in the bottom page margin, where you can add text or graphics.</ahelp>"
+msgstr "<ahelp hid=\"HID_FORMAT_FOOTER\">Thêm vào kiểu dáng trang hiện thời một phần chân trang. Chân trang là một vùng trong lề bên dưới của trang, vào đó bạn có thể thêm văn bản hay ảnh.</ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3152941\n"
-"15\n"
+"05040400.xhp\n"
+"par_id3145136\n"
+"32\n"
"help.text"
-msgid "Blinking"
-msgstr "Nhấp nháy"
+msgid "If you want, you can also add borders or a background fill to a footer."
+msgstr "Bạn cũng có thể thêm vào phần chân trang các viền hay nền tô đầy."
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3145662\n"
-"16\n"
+"05040400.xhp\n"
+"par_id3155339\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để chèn vào tài liệu hiện tại một phần chân trang, bật tùy chọn <emph>Hiện chân trang</emph>, rồi nhấn vào nút <emph>OK</emph>. </caseinline></switchinline>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10B81\n"
+"05040400.xhp\n"
+"par_id3147209\n"
+"30\n"
"help.text"
-msgid "Hidden"
-msgstr "Ẩn"
+msgid "If you want to extend a footer into the page margins, insert a frame into the footer."
+msgstr "Muốn kéo dài phần chân trang qua lề trang thì chèn khung vào chân trang."
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10B85\n"
+"05040400.xhp\n"
+"par_id3150976\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/hiddencb\">Hides the selected characters.</ahelp> To display the hidden text, ensure that <emph>Non-printing Characters</emph> is selected in the <emph>View</emph> menu. You can also choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and select <emph>Hidden text</emph>."
-msgstr ""
+msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
+msgstr "Để di chuyển nhanh dấu nhắc từ trong văn bản sang \"Đầu trang\" hay \"Cuối trang\", nhấn <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up hay Page Down. Nhấn nút đó một lần nữa để chuyển dấu nhắc về lại văn bản chính."
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id0123200902291084\n"
+"05040400.xhp\n"
+"hd_id3150504\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\"><emph>Overlines or removes overlining from the selected text. If the cursor is not in a word, the new text that you enter is overlined.</emph></ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\"><emph>Gạch trên hoặc bỏ gạch trên cho những văn bản được chọn. Nếu con chạy không nằm ở một từ, đoạn văn bản mới bạn nhập vào sẽ tự động được gạch trên.</emph></ahelp>"
+msgid "Footer"
+msgstr "Chân trang"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id0123200902243376\n"
+"05040400.xhp\n"
+"par_id3149235\n"
+"4\n"
"help.text"
-msgid "Overlining"
-msgstr "Gạch trên"
+msgid "Set the properties of the footer."
+msgstr "Đặt các thuộc tính về phần chân trang."
-#: 05020200.xhp
-#, fuzzy
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id0123200902243343\n"
+"05040400.xhp\n"
+"hd_id3154380\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/overlinelb\">Select the overlining style that you want to apply. To apply the overlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kiểu gạch trên bạn muốn áp dụng. Để áp dụng gạch trên cho riêng từ, chọn <emph>mỗi từ riêng </emph>box.</ahelp>"
+msgid "Footer on"
+msgstr "Hiện chân trang"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id0123200902243470\n"
+"05040400.xhp\n"
+"par_id3153348\n"
+"7\n"
"help.text"
-msgid "Overline color"
-msgstr "Màu gạch trên"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_TURNON\">Adds a footer to the current page style.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_TURNON\">Thêm vào kiểu dáng trang hiện thời một phần chân trang.</ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id0123200902243466\n"
+"05040400.xhp\n"
+"hd_id3145087\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/overlinecolorlb\">Select the color for the overlining.</ahelp>"
-msgstr ""
+msgid "Same content left/right"
+msgstr "Cùng nội dung bên trái/phải"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3150400\n"
-"43\n"
+"05040400.xhp\n"
+"par_id3149575\n"
+"21\n"
"help.text"
-msgid "Strikethrough"
-msgstr "Gạch đè"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED\">Các trang lẻ và trang chẵn đều có cùng nội dung.<switchinline select=\"appl\"><caseinline select=\"CALC\"> Để gán phần chân trang khác nhau cho các trang lẻ và các trang chẵn, tắt tùy chọn này, sau đó nhấn vào nút <emph>Sửa</emph>. </caseinline></switchinline></ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3145203\n"
-"44\n"
+"05040400.xhp\n"
+"hd_id3154937\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/strikeoutlb\">Select a strikethrough style for the selected text.</ahelp>"
+msgid "Same content on first page"
msgstr ""
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150496\n"
-"48\n"
+"05040400.xhp\n"
+"par_id3154939\n"
+"22\n"
"help.text"
-msgid "If you save your document in MS Word format, all of the strikethrough styles are converted to the single line style."
-msgstr "Tuy nhiên, nếu bạn lưu tài liệu theo định dạng MS™ Word, tất cả các kiểu dáng gạch đè bị chuyển đổi sang kiểu dáng đường đơn."
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED_FIRST\">First and even/odd pages share the same content.</ahelp>"
+msgstr ""
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3151226\n"
-"41\n"
+"05040400.xhp\n"
+"hd_id3147264\n"
+"16\n"
"help.text"
-msgid "Underlining"
-msgstr "Gạch chân"
+msgid "Left margin"
+msgstr "Lề trái"
-#: 05020200.xhp
-#, fuzzy
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3147576\n"
-"42\n"
+"05040400.xhp\n"
+"par_id3156434\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/underlinelb\">Select the underlining style that you want to apply. To apply the underlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kiểu gạch trên bạn muốn áp dụng. Để áp dụng gạch trên cho riêng từ, chọn <emph>mỗi từ riêng </emph>box.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_LMARGIN\">Enter the amount of space to leave between the left edge of the page and the left edge of the footer.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_LMARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên trái của trang và cạnh bên trái của phần chân trang.</ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3153147\n"
-"58\n"
+"05040400.xhp\n"
+"hd_id3154073\n"
+"18\n"
"help.text"
-msgid "If you apply underlining to a superscript text, the underlining is raised to the level of the superscript. If the superscript is contained in a word with normal text, the underlining is not raised."
-msgstr "Nếu bạn áp dụng gạch dưới chỉ cho chỉ số trên, gạch dưới được nâng lên cấp của chỉ số. Nếu chỉ số trên nằm trong từ có chữ bình thường thì gạch dưới sẽ được giữ nguyên."
+msgid "Right margin"
+msgstr "Lề phải"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3148642\n"
-"78\n"
+"05040400.xhp\n"
+"par_id3154224\n"
+"19\n"
"help.text"
-msgid "Underline color"
-msgstr "Màu gạch chân"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_RMARGIN\">Enter the amount of space to leave between the right edge of the page and the right edge of the footer.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_RMARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên phải của trang và cạnh bên phải của phần chân trang.</ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150254\n"
-"79\n"
+"05040400.xhp\n"
+"hd_id3154140\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/underlinecolorlb\">Select the color for the underlining.</ahelp>"
-msgstr ""
+msgid "Spacing"
+msgstr "Giãn cách"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3153104\n"
-"45\n"
+"05040400.xhp\n"
+"par_id3154908\n"
+"9\n"
"help.text"
-msgid "Individual words"
-msgstr "Mỗi từ riêng"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_DIST\">Enter the amount of space that you want to maintain between the bottom edge of the document text and the top edge of the footer.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_DIST\">Nhập khoảng cách cần để lại giữa cạnh bên dưới của văn bản tài liệu và cạnh bên trên của phần chân trang.</ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3152935\n"
-"46\n"
+"05040400.xhp\n"
+"hd_id3158409\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/individualwordscb\">Applies the selected effect only to words and ignores spaces.</ahelp>"
-msgstr ""
+msgid "Use dynamic spacing"
+msgstr "Giãn cách động"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3150332\n"
-"60\n"
+"05040400.xhp\n"
+"par_id3144760\n"
+"35\n"
"help.text"
-msgid "Emphasis mark"
-msgstr "Dấu nhấn mạnh"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_FOOTER_CB_DYNSPACING\">Overrides the <emph>Spacing </emph>setting and allows the footer to expand into the area between the footer and document text.</ahelp>"
+msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_FOOTER_CB_DYNSPACING\">Có quyền cao hơn thiết lập <emph>Giãn cách</emph>, và cho phép phần chân trang mở rộng vào vùng giữa phần chân trang và văn bản tài liệu.</ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3152576\n"
-"61\n"
+"05040400.xhp\n"
+"hd_id3154821\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/emphasislb\">Select a character to display over or below the entire length of the selected text.</ahelp>"
-msgstr ""
+msgid "Height"
+msgstr "Bề cao"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3152460\n"
-"62\n"
+"05040400.xhp\n"
+"par_id3125865\n"
+"13\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_HEIGHT\">Enter the height you want for the footer.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_HEIGHT\">Nhập chiều cao thích hợp với phần chân trang.</ahelp>"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3147436\n"
-"63\n"
+"05040400.xhp\n"
+"hd_id3150742\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/positionlb\">Specify where to display the emphasis marks.</ahelp>"
-msgstr ""
+msgid "AutoFit height"
+msgstr "Bề cao tự động vừa"
-#: 05020200.xhp
+#: 05040400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3151053\n"
+"05040400.xhp\n"
+"par_id3145744\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] color tables\">$[officename] color tables</link>"
-msgstr "<link href=\"text/shared/optionen/01010500.xhp\" name=\"bảng màu $[officename]\">bảng màu $[officename]</link>"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN\">Automatically adjusts the height of the footer to fit the content you enter.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN\">Tự động điều chỉnh chiều cao của phần chân trang để vừa nội dung bạn nhập.</ahelp>"
-#: 01140000.xhp
+#: 05040400.xhp
msgctxt ""
-"01140000.xhp\n"
-"tit\n"
+"05040400.xhp\n"
+"hd_id3149807\n"
+"23\n"
"help.text"
-msgid "Printer Setup"
-msgstr "Thiết lập Máy in"
+msgid "More"
+msgstr "Nhiều"
-#: 01140000.xhp
+#: 05040400.xhp
msgctxt ""
-"01140000.xhp\n"
-"bm_id3147294\n"
+"05040400.xhp\n"
+"par_id3145421\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>printers; properties</bookmark_value><bookmark_value>settings; printers</bookmark_value><bookmark_value>properties; printers</bookmark_value><bookmark_value>default printer; setting up</bookmark_value><bookmark_value>printers; default printer</bookmark_value><bookmark_value>page formats; restriction</bookmark_value>"
-msgstr "<bookmark_value>máy in; thuộc tính</bookmark_value><bookmark_value>thiết lập; máy in</bookmark_value><bookmark_value>thuộc tính; máy in</bookmark_value><bookmark_value>máy in mặc định; thiết lập</bookmark_value><bookmark_value>máy in; máy in mặc định</bookmark_value><bookmark_value>định dạng trang; hạn chế</bookmark_value>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_FOOTER:BTN_EXTRAS\">Defines a border, a background color, or a background pattern for the footer.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_FOOTER:BTN_EXTRAS\">Xác định cho phần chân trang một viền, màu nền hay mẫu nền.</ahelp>"
-#: 01140000.xhp
+#: 05040400.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3147294\n"
+"05040400.xhp\n"
+"hd_id3157892\n"
+"26\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sửa </caseinline></switchinline>"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id0609200910255518\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit footer text.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thêm hoặc chỉnh sửa văn bản chân trang.</ahelp>"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3150439\n"
+"27\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_FOOTER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit footer text.\">Add or edit footer text.</link></caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"HID_SC_FOOTER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit footer text.\">Thêm hay chỉnh sửa văn bản chân trang.</link></caseinline></switchinline></ahelp>"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/04230000.xhp\" name=\"Footers\">Footers</link>"
+msgstr "<link href=\"text/swriter/01/04230000.xhp\" name=\"Chân trang\">Chân trang</link>"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgstr "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Thay đổi đơn vị đo\">Thay đổi đơn vị đo</link>"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3154189\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Viền\">Viền</link>"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3152791\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Nền\">Nền</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Change Case"
+msgstr "Đổi chữ hoa/thường"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3152952\n"
"1\n"
"help.text"
-msgid "Printer Setup"
-msgstr "Thiết lập Máy in"
+msgid "<link href=\"text/shared/01/05050000.xhp\" name=\"Change Case\">Change Case</link>"
+msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Thay đổi\">Thay đổi</link>"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3154422\n"
+"05050000.xhp\n"
+"par_id3151299\n"
"2\n"
"help.text"
-msgid "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Select the default printer for the current document.</ahelp></variable>"
-msgstr "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Chọn máy in mặc định cho tài liệu hiện tại.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Changes the case of characters in the selection. If the cursor is within a word and no text is selected, then the word is the selection.</ahelp>"
+msgstr ""
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3148620\n"
-"20\n"
+"05050000.xhp\n"
+"hd_id3147572\n"
+"5\n"
"help.text"
-msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects."
-msgstr "Có lẽ bạn cần phải đợi một chút khi thay đổi máy in mặc định cho một tài liệu chứa các đối tượng OLE $[officename] nhúng."
+msgid "Sentence case"
+msgstr ""
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3145345\n"
+"05050000.xhp\n"
+"par_id3150694\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".\">Changes the first letter of the selected western characters to an uppercase character.</ahelp>"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3147571\n"
+"5\n"
+"help.text"
+msgid "lowercase"
+msgstr "Chữ thường"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3150693\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected western characters to lowercase characters.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToLower\">Chuyển đổi sang chữ thường các ký tự đã chọn (bảng chữ cái).</ahelp>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3147143\n"
+"3\n"
+"help.text"
+msgid "UPPERCASE"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3152372\n"
"4\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Printer </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Máy in </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected western characters to uppercase characters.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToLower\">Chuyển đổi sang chữ thường các ký tự đã chọn (bảng chữ cái).</ahelp>"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3145211\n"
+"05050000.xhp\n"
+"hd_id3147511\n"
"5\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Lists the information that applies to the selected printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Liệt kê thông tin thích hợp với máy in đã chọn. </caseinline></switchinline>"
+msgid "Capitalize Every Word"
+msgstr ""
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3148538\n"
-"19\n"
+"05050000.xhp\n"
+"par_id3150613\n"
+"6\n"
"help.text"
-msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer."
-msgstr "Danh sách rỗng thì bạn cần phải cài đặt một máy in mặc định cho hệ điều hành đó. Tham chiếu đến Trợ giúp trực tiếp cho hệ điều hành, để tìm hướng dẫn về cài đặt và thiết lập máy in mặc định như thế nào."
+msgid "<ahelp hid=\".\">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp>"
+msgstr ""
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3154381\n"
+"05050000.xhp\n"
+"hd_id3147521\n"
+"5\n"
+"help.text"
+msgid "tOGGLE cASE"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3150623\n"
"6\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "<ahelp hid=\".\">Toggles case of all selected western characters.</ahelp>"
+msgstr ""
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3156155\n"
+"05050000.xhp\n"
+"hd_id3155392\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Lists the installed printers on your operating system. To change the default printer, select a printer name from the list.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Liệt kê các máy in đã cài đặt vào hệ điều hành của bạn. Để thay đổi máy in mặc định, chọn tên của máy in khác trong danh sách.</ahelp>"
+msgid "Half-width"
+msgstr "Nửa rộng"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3156153\n"
+"05050000.xhp\n"
+"par_id3147088\n"
"8\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Status </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Trạng thái </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Chuyển đổi sang ký tự nửa rộng các ký tự đã chọn (chữ viết ghi ý).</ahelp>"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3150465\n"
+"05050000.xhp\n"
+"hd_id3156113\n"
"9\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Describes the current status of the selected printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Diễn tả trạng thái hiện thời về máy in đã chọn. </caseinline></switchinline>"
+msgid "Full Width"
+msgstr "Toàn rộng"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3154898\n"
+"05050000.xhp\n"
+"par_id3154749\n"
"10\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Type </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Kiểu</caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full width characters.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Chuyển đổi sang ký tự toàn rộng các ký tự đã chọn (chữ viết ghi ý).</ahelp>"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3156326\n"
+"05050000.xhp\n"
+"hd_id3152996\n"
"11\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the type of printer that you selected. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Hiển thị kiểu máy in bạn đã chọn. </caseinline></switchinline>"
+msgid "Hiragana"
+msgstr "Hiragana"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3149416\n"
+"05050000.xhp\n"
+"par_id3156156\n"
"12\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Location </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Vị trí </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToHiragana\">Chuyển đổi sang ký tự Hiragana các ký tự đã chọn (tiếng Nhật).</ahelp>"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3149955\n"
+"05050000.xhp\n"
+"hd_id3154173\n"
"13\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the port for the selected printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Hiển thị cổng cho máy in đã chọn. </caseinline></switchinline>"
+msgid "Katakana"
+msgstr "Katakana"
-#: 01140000.xhp
+#: 05050000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3145316\n"
+"05050000.xhp\n"
+"par_id3146137\n"
"14\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Comments </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Chú thích </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToKatakana\">Chuyển đổi sang ký tự Katakana các ký tự đã chọn (tiếng Nhật).</ahelp>"
-#: 01140000.xhp
+#: 05060000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3155923\n"
-"15\n"
+"05060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays additional information for the printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Hiển thị thêm thông tin về máy in. </caseinline></switchinline>"
+msgid "Asian Phonetic Guide"
+msgstr "Chỉ dẫn Ngữ âm Châu Á"
-#: 01140000.xhp
+#: 05060000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3149669\n"
-"16\n"
+"05060000.xhp\n"
+"bm_id9598376\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<bookmark_value>Asian Phonetic Guide</bookmark_value><bookmark_value>phonetic guide</bookmark_value>"
+msgstr "<bookmark_value>Chỉ dẫn Ngữ âm Châu Á</bookmark_value><bookmark_value>chỉ dẫn ngữ âm</bookmark_value>"
-#: 01140000.xhp
+#: 05060000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3149045\n"
-"17\n"
+"05060000.xhp\n"
+"hd_id3147527\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Changes the printer settings of your operating system for the current document.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Sửa đổi thiết lập máy in của hệ điều hành chỉ cho tài liệu hiện tại.</ahelp></caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/05060000.xhp\" name=\"Ruby\">Asian Phonetic Guide</link>"
+msgstr "<link href=\"text/shared/01/05060000.xhp\" name=\"Ruby\">Chỉ dẫn Ngữ âm Châu Á</link>"
-#: 01140000.xhp
+#: 05060000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3157322\n"
-"18\n"
+"05060000.xhp\n"
+"par_id3083278\n"
+"2\n"
"help.text"
-msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <emph>Format - Page</emph>."
-msgstr "Kiểm tra xem tùy chọn bố trí <emph>Nằm ngang</emph> hay <emph>Thẳng đứng</emph> tương ứng với định dạng trang bạn đã đặt, bằng cách chọn lệnh <emph>Định dạng > Trang</emph>."
+msgid "<ahelp hid=\".uno:RubyDialog\">Allows you to add comments above Asian characters to serve as a pronunciation guide.</ahelp>"
+msgstr "<ahelp hid=\".uno:RubyDialog\">Cho bạn có khả năng ghi chú vào bên trên ký tự chữ viết ghi ý, để giúp phát âm.</ahelp>"
-#: 05120600.xhp
+#: 05060000.xhp
msgctxt ""
-"05120600.xhp\n"
-"tit\n"
+"05060000.xhp\n"
+"par_id3154044\n"
+"13\n"
"help.text"
-msgid "Space Columns Equally"
-msgstr "Cách đều các cột"
+msgid "Select one or more words in the document."
+msgstr "Chọn một hay nhiều từ trong tài liệu."
-#: 05120600.xhp
+#: 05060000.xhp
msgctxt ""
-"05120600.xhp\n"
-"hd_id3153811\n"
-"1\n"
+"05060000.xhp\n"
+"par_id3149987\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
-msgstr "<link href=\"text/shared/01/05120600.xhp\" name=\"Cách đều\">Cách đều các cột</link>"
+msgid "Choose <emph>Format - Asian Phonetic Guide</emph>."
+msgstr "Chọn lệnh <emph>Định dạng > Chỉ dẫn Ngữ âm Châu Á</emph>."
-#: 05120600.xhp
+#: 05060000.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3151389\n"
-"2\n"
+"05060000.xhp\n"
+"par_id3154838\n"
+"15\n"
"help.text"
-msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeColumns\">Adjusts the width of the selected columns to match the width of the widest column in the selection.</ahelp> The total width of the table cannot exceed the width of the page.</variable>"
-msgstr "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeColumns\">Chỉnh chiều rộng của các cột được lựa chọn theo kích thước của cột lớn nhất trong số chúng.</ahelp> Bề rộng tổng cộng của bảng không thể lớn hơn bề rộng của trang.</variable>"
+msgid "Enter the text that you want to use as a pronunciation guide in the <emph>Ruby text</emph> box."
+msgstr "Nhập vào hộp <emph>Văn bản Ruby</emph> thông tin giúp phát âm."
-#: 05120600.xhp
+#: 05060000.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3159219\n"
-"107\n"
+"05060000.xhp\n"
+"hd_id3150793\n"
+"3\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
-msgstr "Chọn <emph>Bảng - Tự chỉnh cỡ - Phân phối đều các cột</emph>"
+msgid "Base text"
+msgstr "Chuỗi cơ sở"
-#: 05120600.xhp
+#: 05060000.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3156426\n"
-"108\n"
+"05060000.xhp\n"
+"par_id3154155\n"
+"4\n"
"help.text"
-msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
-msgstr "Mở thanh công cụ <emph>Tối ưu</emph> từ thanh <emph>Bảng</emph>, nhấn"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Left4ED\">Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Left4ED\">Hiển thị chuỗi cơ bản bạn đã chọn trong tập tin hiện tại. Bạn cũng có thể sửa đổi chuỗi cơ bản, bằng cách nhập vào đây một chuỗi mới.</ahelp>"
-#: 05120600.xhp
-#, fuzzy
+#: 05060000.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3145179\n"
+"05060000.xhp\n"
+"hd_id3145154\n"
+"5\n"
"help.text"
-msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3145186\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Biểu tượng</alt></image>"
+msgid "Ruby text"
+msgstr "Chuỗi Ruby"
-#: 05120600.xhp
+#: 05060000.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3151364\n"
-"109\n"
+"05060000.xhp\n"
+"par_id3145420\n"
+"6\n"
"help.text"
-msgid "Space Columns Equally"
-msgstr "Cách đều các cột"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Right4ED\">Enter the text that you want to use as a pronunciation guide for the base text.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Right4ED\">Nhập vào đây chuỗi bạn muốn dùng để chỉ dẫn cách phát âm chuỗi cơ bản.</ahelp>"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"tit\n"
+"05060000.xhp\n"
+"hd_id3148920\n"
+"7\n"
"help.text"
-msgid "Data Navigator"
-msgstr "Bộ duyệt Dữ liệu"
+msgid "Alignment"
+msgstr "Canh lề"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"bm_id6823023\n"
+"05060000.xhp\n"
+"par_id3156280\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>data structure of XForms</bookmark_value> <bookmark_value>deleting;models/instances</bookmark_value> <bookmark_value>models in XForms</bookmark_value> <bookmark_value>Data Navigator;display options</bookmark_value>"
-msgstr "<bookmark_value>cấu trúc dữ liệu của biểu mẫu XForms</bookmark_value><bookmark_value>xoá;mô hình/thể hiện</bookmark_value><bookmark_value>mô hình trong biểu mẫu XForms</bookmark_value><bookmark_value>Bộ điều hướng Dữ Liệu;tùy chọn hiển thị</bookmark_value>"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/adjustlb\">Select the horizontal alignment for the Ruby text.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/adjustlb\">Chọn cách canh lề đoạn văn Ruby theo chiều ngang.</ahelp>"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1054E\n"
+"05060000.xhp\n"
+"hd_id3148451\n"
+"16\n"
"help.text"
-msgid "<variable id=\"xformsdata\"><link href=\"text/shared/01/xformsdata.xhp\">Data Navigator</link></variable>"
-msgstr "<variable id=\"xformsdata\"><link href=\"text/shared/01/xformsdata.xhp\">Bộ duyệt Dữ liệu</link></variable>"
+msgid "Position"
+msgstr "Vị trí"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1056C\n"
+"05060000.xhp\n"
+"par_id3153104\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the data structure of the current XForms document.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ cấu trúc dữ liệu của tài liệu XForms hiện tại.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/positionlb\">Select where you want to place the ruby text.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/positionlb\">Chọn vị trí cho chuỗi Ruby.</ahelp>"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1056F\n"
+"05060000.xhp\n"
+"hd_id3148672\n"
+"9\n"
"help.text"
-msgid "Model name"
-msgstr "Tên mô hình"
+msgid "Character Style for ruby text"
+msgstr "Kiểu dáng ký tự cho chuỗi Ruby"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10573\n"
+"05060000.xhp\n"
+"par_id3148676\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects the XForms model that you want to use.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn mô hình XForms bạn muốn dùng.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/stylelb\">Select a character style for the ruby text.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/stylelb\">Chọn một kiểu dáng ký tự cho chuỗi Ruby.</ahelp>"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10576\n"
+"05060000.xhp\n"
+"hd_id3150449\n"
+"11\n"
"help.text"
-msgid "Models"
-msgstr "Mô hình"
+msgid "Styles and Formatting"
+msgstr "Kiểu dáng và Định dạng"
-#: xformsdata.xhp
+#: 05060000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1057A\n"
+"05060000.xhp\n"
+"par_id3149202\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds, renames, and removes XForms models.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm, gỡ bỏ và thay đổi tên của mô hình XForms.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link></caseinline><defaultinline>Styles and Formatting window</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05070000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10604\n"
+"05070000.xhp\n"
+"tit\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "Aligning (Objects)"
+msgstr "Chỉnh canh (Đối tượng)"
-#: xformsdata.xhp
+#: 05070000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10608\n"
+"05070000.xhp\n"
+"bm_id3149987\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Add Model dialog where you can add an XForm model.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Thêm mô hình</emph> trong đó bạn có thể thêm một mô hình XForm.</ahelp>"
+msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
+msgstr "<bookmark_value>chỉnh canh; đối tượng</bookmark_value><bookmark_value>định vị; đối tượng</bookmark_value><bookmark_value>sắp xếp; đối tượng</bookmark_value>"
-#: xformsdata.xhp
+#: 05070000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_id0130200901590878\n"
+"05070000.xhp\n"
+"hd_id3149987\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
+msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
+msgstr "<link href=\"text/shared/01/05070000.xhp\" name=\"Chỉnh canh (Đối tượng)\">Chỉnh canh (Đối tượng)</link>"
-#: xformsdata.xhp
+#: 05070000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"hd_id0910200811173295\n"
+"05070000.xhp\n"
+"par_id3150445\n"
+"2\n"
"help.text"
-msgid "Model data updates change document's modification status"
-msgstr "Những cập nhật trong mô hình dữ liệu sẽ khiến trạng thái sửa chữacủa tài liệu bị thay đổi"
+msgid "<ahelp hid=\".\">Aligns selected objects with respect to one another.</ahelp>"
+msgstr "<ahelp hid=\".\">Căn chỉnh những đối tượng sau sau cho phù hợp.</ahelp>"
-#: xformsdata.xhp
+#: 05070000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_id0910200811173255\n"
+"05070000.xhp\n"
+"par_id3150144\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">When enabled, the document status will be set to \"modified\" when you change any form control that is bound to any data in the model. When not enabled, such a change does not set the document status to \"modified\".</ahelp>"
-msgstr "<ahelp hid=\".\">Khi được kích họat, trạng thái của tài liệu sẽ được đặt là \"được chỉnh sửa\" khi bạn thay đổi các điều khiển biểu mẫu được gắn vào bất cứ dữ liệu nào trong mô hình. Khi không được kích hoạt thì trạng thái ngày sẽ không được kích họat.</ahelp>"
+msgid "If one of the selected objects is anchored as a character, some of the alignment options do not work."
+msgstr "Trong những đối tượng đã chọn, nếu có một đồ đã thả neo vào ký tự, một số tùy chọn chỉnh canh nào đó không hoạt động được."
-#: xformsdata.xhp
+#: 05070000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10612\n"
+"05070000.xhp\n"
+"par_id8872646\n"
"help.text"
-msgid "Remove"
-msgstr "Bỏ"
+msgid "Not all types of objects can be selected together. Not all modules (Writer, Calc, Impress, Draw) support all types of alignment."
+msgstr "Không phải tất cả các kiểu đối tượng có khả năng được chọn với nhau. Không phải tất cả các mô-đun (Writer, Calc, Impress, Draw) hỗ trợ mọi cách chỉnh canh."
-#: xformsdata.xhp
+#: 05070100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10616\n"
+"05070100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected XForm model. You cannot delete the last model.</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá mô hình XForm đã chọn. Không thể xoá mô hình cuối cùng.</ahelp>"
+msgid "Align Left"
+msgstr "Canh lề trái"
-#: xformsdata.xhp
+#: 05070100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10743\n"
+"05070100.xhp\n"
+"hd_id3147069\n"
+"1\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "<link href=\"text/shared/01/05070100.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05070100.xhp\" name=\"Canh lề trái\">Canh lề trái</link>"
-#: xformsdata.xhp
+#: 05070100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10749\n"
+"05070100.xhp\n"
+"par_id3160463\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected Xform model.</ahelp>"
-msgstr "<ahelp hid=\".\">Thay đổi tên của mô hình Xform đã chọn.</ahelp>"
+msgid "<ahelp hid=\".uno:AlignLeft\">Aligns the left edges of the selected objects. If only one object is selected in Draw or Impress, the left edge of the object is aligned to the left page margin.</ahelp>"
+msgstr "<ahelp hid=\".uno:AlignLeft\">Chỉnh canh các cạnh bên trái của những đối tượng đã chọn. Chỉ chọn một đối tượng Draw hay Impress thì cạnh bên trái của đối tượng được chỉnh canh theo lề bên trái của trang.</ahelp>"
-#: xformsdata.xhp
+#: 05070100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10619\n"
+"05070100.xhp\n"
+"par_id3150146\n"
+"4\n"
"help.text"
-msgid "Show Details"
-msgstr "Hiện chi tiết"
+msgid "Objects are aligned to the left edge of the leftmost object in the selection."
+msgstr "Các đối tượng được chỉnh canh theo cạnh bên trái của đối tượng tận bên trái trong vùng chọn."
-#: xformsdata.xhp
+#: 05070100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1061D\n"
+"05070100.xhp\n"
+"par_id3150445\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches the display to show or hide details.</ahelp>"
-msgstr "<ahelp hid=\".\">Chuyển đổi sự trình bày để hiển thị hay ẩn chi tiết.</ahelp>"
+msgid "<variable id=\"mehrfachselektion\">To align the individual objects in a group, <switchinline select=\"appl\"><caseinline select=\"CALC\">choose <emph>Format - Group - Edit Group</emph></caseinline><defaultinline>double-click</defaultinline></switchinline> to enter the group, select the objects, right-click, and then choose an alignment option. </variable>"
+msgstr "<variable id=\"mehrfachselektion\">Để chỉnh canh mỗi đối tượng riêng trong nhóm, <switchinline select=\"appl\"><caseinline select=\"CALC\">chọn lệnh <emph>Định dạng > Nhóm > Sửa nhóm</emph></caseinline><defaultinline>nhấn-đôi</defaultinline></switchinline> để vào nhóm, lựa chọn (các) đối tượng, nhấn-phải, sau đó chọn chỉnh canh. </variable>"
-#: xformsdata.xhp
+#: 05070200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1057D\n"
+"05070200.xhp\n"
+"tit\n"
"help.text"
-msgid "Instance"
-msgstr "Tức thời"
+msgid "Center Horizontal"
+msgstr "Giữa nằm ngang"
-#: xformsdata.xhp
+#: 05070200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10682\n"
+"05070200.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the items that belong to the current instance.</ahelp>"
-msgstr "<ahelp hid=\".\">Liệt kê các mục thuộc về tức thời hiện thời.</ahelp>"
+msgid "<link href=\"text/shared/01/05070200.xhp\" name=\"Center Horizontal\">Center Horizontal</link>"
+msgstr "<link href=\"text/shared/01/05070200.xhp\" name=\"Giữa nằm ngang\">Giữa nằm ngang</link>"
-#: xformsdata.xhp
+#: 05070200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1058B\n"
+"05070200.xhp\n"
+"par_id3145138\n"
+"2\n"
"help.text"
-msgid "Submissions"
-msgstr "Đệ trình"
+msgid "<ahelp hid=\".uno:AlignHorizontalCenter\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
+msgstr "<ahelp hid=\".uno:AlignHorizontalCenter\">Đặt vào giữa các đối tượng đã chọn theo chiều ngang. Chỉ chọn một đối tượng trong Draw hay Impress thì điểm giữa của đối tượng được chỉnh canh theo đường giữa theo chiều ngang của trang.</ahelp>"
-#: xformsdata.xhp
+#: 05070200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1058F\n"
+"05070200.xhp\n"
+"par_id3144336\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the submissions.</ahelp>"
-msgstr "<ahelp hid=\".\">Liệt kê các sự đệ trình.</ahelp>"
+msgid "The vertical position of the selected objects is not affected by this command.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgstr "Lệnh này không có tác động vị trí theo chiều dọc của các đối tượng đã chọn.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
-#: xformsdata.xhp
+#: 05070300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10592\n"
+"05070300.xhp\n"
+"tit\n"
"help.text"
-msgid "Bindings"
-msgstr "Tổ hợp"
+msgid "Align Right"
+msgstr "Canh lề phải"
-#: xformsdata.xhp
+#: 05070300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10596\n"
+"05070300.xhp\n"
+"hd_id3153383\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the bindings for the XForm.</ahelp>"
-msgstr "<ahelp hid=\".\">Liệt kê các tổ hợp đối với XForm.</ahelp>"
+msgid "<link href=\"text/shared/01/05070300.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05070300.xhp\" name=\"Canh lề phải\">Canh lề phải</link>"
-#: xformsdata.xhp
+#: 05070300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10599\n"
+"05070300.xhp\n"
+"par_id3151264\n"
+"2\n"
"help.text"
-msgid "Instances"
-msgstr "Tức thời"
+msgid "<ahelp hid=\".uno:AlignRight\">Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin.</ahelp>"
+msgstr "<ahelp hid=\".uno:AlignRight\">Chỉnh canh các cạnh bên phải của những đối tượng đã chọn. Nếu chỉ chọn một đối tượng Draw hay Impress thì cạnh bên phải của đối tượng được chỉnh canh theo lề bên phải của trang.</ahelp>"
-#: xformsdata.xhp
+#: 05070300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1059D\n"
+"05070300.xhp\n"
+"par_id3144336\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">This button has submenus to add, edit or remove instances.</ahelp>"
-msgstr "<ahelp hid=\".\">Cái nút này cũng có trình đơn phụ để thêm, chỉnh sửa hay gỡ bỏ tức thời.</ahelp>"
+msgid "Objects are aligned to the right edge of the rightmost object in the selection."
+msgstr "Các đối tượng được chỉnh canh theo cạnh bên phải của đối tượng tận bên phải trong văn bản."
-#: xformsdata.xhp
+#: 05070400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10649\n"
+"05070400.xhp\n"
+"tit\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "Align Top"
+msgstr "Canh lề trên"
-#: xformsdata.xhp
+#: 05070400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1064D\n"
+"05070400.xhp\n"
+"hd_id3160463\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can add a new instance.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể thêm một tức thời mới.</ahelp>"
+msgid "<link href=\"text/shared/01/05070400.xhp\" name=\"Align Top\">Align Top</link>"
+msgstr "<link href=\"text/shared/01/05070400.xhp\" name=\"Canh lề trên\">Canh lề trên</link>"
-#: xformsdata.xhp
+#: 05070400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10650\n"
+"05070400.xhp\n"
+"par_id3154613\n"
+"2\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<ahelp hid=\".uno:AlignTop\">Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin.</ahelp>"
+msgstr "<ahelp hid=\".uno:AlignTop\">Chỉnh canh theo chiều dọc các cạnh bên trên của các đối tượng đã chọn. Nếu chỉ chọn một đối tượng trong Draw hay Impress thì cạnh bên trên của đối tượng được chỉnh canh lề bên trên của trang.</ahelp>"
-#: xformsdata.xhp
+#: 05070400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10654\n"
+"05070400.xhp\n"
+"par_id3154230\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can modify the current instance.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể sửa đổi tức thời hiện tại.</ahelp>"
+msgid "Objects are aligned to the top edge of the topmost object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgstr "Các đối tượng được chỉnh canh theo cạnh bên trên của đối tượng trên cùng trong vùng chọn. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
-#: xformsdata.xhp
+#: 05070500.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10657\n"
+"05070500.xhp\n"
+"tit\n"
"help.text"
-msgid "Remove"
-msgstr "Bỏ"
+msgid "Align Vertical Center"
+msgstr "Canh lề giữa nằm dọc"
-#: xformsdata.xhp
+#: 05070500.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1065B\n"
+"05070500.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the current instance. You cannot delete the last instance.</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá tức thời hiện tại. Không thể xoá tức thời cuối cùng.</ahelp>"
+msgid "<link href=\"text/shared/01/05070500.xhp\" name=\"Align Vertical Center\">Align Vertical Center</link>"
+msgstr "<link href=\"text/shared/01/05070500.xhp\" name=\"Canh lề giữa nằm dọc\">Canh lề giữa nằm dọc</link>"
-#: xformsdata.xhp
+#: 05070500.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1065E\n"
+"05070500.xhp\n"
+"par_id3160463\n"
+"2\n"
"help.text"
-msgid "Show data types"
-msgstr "Hiện kiểu dữ liệu"
+msgid "<ahelp hid=\".uno:AlignVerticalCenter\">Vertically centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the vertical center of the page.</ahelp>"
+msgstr "<ahelp hid=\".uno:AlignVerticalCenter\">Đặt vào giữa theo chiều dọc các đối tượng đã chọn. Chỉ chọn một đối tượng trong Draw hay Impress thì điểm giữa của đối tượng được chỉnh canh theo đường giữa theo chiều dọc của trang.</ahelp>"
-#: xformsdata.xhp
+#: 05070600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10662\n"
+"05070600.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches the display to show more or less details.</ahelp>"
-msgstr "<ahelp hid=\".\">Chuyển đổi sự trình bày để hiển thị thêm hay kèm dữ liệu.</ahelp>"
+msgid "Align Bottom"
+msgstr "Canh lề dưới"
-#: xformsdata.xhp
+#: 05070600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10584\n"
+"05070600.xhp\n"
+"hd_id3153383\n"
+"1\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "<link href=\"text/shared/01/05070600.xhp\" name=\"Align Bottom\">Align Bottom</link>"
+msgstr "<link href=\"text/shared/01/05070600.xhp\" name=\"Canh lề dưới\">Canh lề dưới</link>"
-#: xformsdata.xhp
+#: 05070600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10588\n"
+"05070600.xhp\n"
+"par_id3154613\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to add a new item (element, attribute, submission, or binding) as a sub-item of the current item.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại để thêm một mục mới (phần tử, thuộc tính, sự đệ trình hay tổ hợp) dưới dạng mục phụ của mục hiện tại.</ahelp>"
+msgid "<ahelp hid=\".\">Vertically aligns the bottom edges of the selected objects. If only one object is selected in Draw or Impress, the bottom edge of the object is aligned to the lower page margin.</ahelp>"
+msgstr "<ahelp hid=\".\">Chỉnh canh theo chiều dọc các cạnh bên dưới của các đối tượng đã chọn. Nếu chỉ chọn một đối tượng trong Draw hay Impress thì cạnh bên dưới của được được chỉnh canh theo lề bên dưới của trang.</ahelp>"
-#: xformsdata.xhp
+#: 05070600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10624\n"
+"05070600.xhp\n"
+"par_id3151330\n"
+"4\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "Objects are aligned to the bottom edge of the bottom most object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgstr "Các đối tượng được chỉnh canh theo cạnh bên dưới của đối tượng dưới cùng trong vùng chọn. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
-#: xformsdata.xhp
+#: 05080000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10628\n"
+"05080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to edit the selected item (element, attribute, submission, or binding).</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại để chỉnh sửa mục đã chọn (phần tử, thuộc tính, sự đệ trình hay tổ hợp).</ahelp>"
+msgid "Alignment (Text Objects)"
+msgstr "Chỉnh canh (Đối tượng Văn bản)"
-#: xformsdata.xhp
+#: 05080000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1062B\n"
+"05080000.xhp\n"
+"bm_id3152942\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<bookmark_value>aligning; text objects</bookmark_value><bookmark_value>text objects; alignment</bookmark_value>"
+msgstr "<bookmark_value>canh lề; đối tượng văn bản</bookmark_value><bookmark_value>đối tượng văn bản; chỉnh canh</bookmark_value>"
-#: xformsdata.xhp
+#: 05080000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1062F\n"
+"05080000.xhp\n"
+"hd_id3152942\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected item (element, attribute, submission, or binding).</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá mục đã chọn (phần tử, thuộc tính, sự đệ trình hay tổ hợp).</ahelp>"
+msgid "<link href=\"text/shared/01/05080000.xhp\" name=\"Alignment (Text Objects)\">Alignment (Text Objects)</link>"
+msgstr "<link href=\"text/shared/01/05080000.xhp\" name=\"Chỉnh canh (Đối tượng Văn bản)\">Chỉnh canh (Đối tượng Văn bản)</link>"
-#: 06140500.xhp
+#: 05080000.xhp
msgctxt ""
-"06140500.xhp\n"
+"05080000.xhp\n"
+"par_id3150278\n"
+"2\n"
+"help.text"
+msgid "Set the alignment options for the current selection."
+msgstr "Đặt các tùy chọn chỉnh canh cho vùng chọn hiện thời."
+
+#: 05080100.xhp
+msgctxt ""
+"05080100.xhp\n"
"tit\n"
"help.text"
-msgid "Events"
-msgstr "Dữ kiện"
+msgid "Left"
+msgstr "Trái"
-#: 06140500.xhp
+#: 05080100.xhp
msgctxt ""
-"06140500.xhp\n"
-"bm_id3152427\n"
+"05080100.xhp\n"
+"hd_id3154349\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>customizing; events</bookmark_value><bookmark_value>events; customizing</bookmark_value>"
-msgstr "<bookmark_value>tùy chỉnh; dữ kiện</bookmark_value><bookmark_value>dữ kiện; tùy chỉnh</bookmark_value>"
+msgid "<link href=\"text/shared/01/05080100.xhp\" name=\"Left\">Left</link>"
+msgstr "<link href=\"text/shared/01/05080100.xhp\" name=\"Trái\">Trái</link>"
-#: 06140500.xhp
+#: 05080100.xhp
msgctxt ""
-"06140500.xhp\n"
-"hd_id3152427\n"
+"05080100.xhp\n"
+"par_id3150756\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the left page margin.</ahelp></variable>"
+msgstr "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Chỉnh canh các đoạn văn đã chọn theo lề bên trái của trang.</ahelp></variable>"
+
+#: 05080200.xhp
+msgctxt ""
+"05080200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Right"
+msgstr "Phải"
+
+#: 05080200.xhp
+msgctxt ""
+"05080200.xhp\n"
+"hd_id3160463\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Dữ kiện\">Dữ kiện</link>"
+msgid "<link href=\"text/shared/01/05080200.xhp\" name=\"Right\">Right</link>"
+msgstr "<link href=\"text/shared/01/05080200.xhp\" name=\"Phải\">Phải</link>"
-#: 06140500.xhp
-#, fuzzy
+#: 05080200.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3152937\n"
+"05080200.xhp\n"
+"par_id3144750\n"
"2\n"
"help.text"
-msgid "<variable id=\"assignaction\"><ahelp hid=\".\">Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs.</ahelp></variable>"
-msgstr "<ahelp hid=\"HID_CONFIG_EVENT\">Gán vĩ lệnh cho dữ kiện chương trình. Vĩ lệnh đã gán thì tự động chạy khi nào xảy ra dữ kiện đã chọn.</ahelp>"
+msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:RightPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the right page margin.</ahelp></variable>"
+msgstr "<variable id=\"rechtstext\"><ahelp hid=\".uno:RightPara\" visibility=\"visible\">Chỉnh canh các đoạn văn đã chọn theo lề bên phải của trang.</ahelp></variable>"
-#: 06140500.xhp
+#: 05080300.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id317748820\n"
+"05080300.xhp\n"
+"tit\n"
"help.text"
-msgid "The dialog box has reduced functionality when called from the Edit-Sheet menu of a spreadsheet."
-msgstr ""
+msgid "Center"
+msgstr "Giữa"
-#: 06140500.xhp
+#: 05080300.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_idN1060A\n"
+"05080300.xhp\n"
+"hd_id3153514\n"
+"1\n"
"help.text"
-msgid "Save In"
-msgstr "Lưu vào"
+msgid "<link href=\"text/shared/01/05080300.xhp\" name=\"Center\">Center</link>"
+msgstr "<link href=\"text/shared/01/05080300.xhp\" name=\"Giữa\">Giữa</link>"
-#: 06140500.xhp
+#: 05080300.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_idN1060E\n"
+"05080300.xhp\n"
+"par_id3152876\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"705547787\">Select first where to save the event binding, in the current document or in %PRODUCTNAME.</ahelp>"
-msgstr "<ahelp hid=\"705547787\">Trước tiên hãy chọn lưu tổ hợp dữ kiện vào đâu : vào tài liệu hiện tại, hoặc vào %PRODUCTNAME.</ahelp>"
+msgid "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Centers the selected paragraph(s) on the page.</ahelp></variable>"
+msgstr "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Đặt các đoạn văn đã chọn vào giữa trên trang.</ahelp></variable>"
-#: 06140500.xhp
+#: 05080400.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3153662\n"
-"36\n"
+"05080400.xhp\n"
+"tit\n"
"help.text"
-msgid "A macro that is saved with a document can only be run when that document is opened."
-msgstr "Vĩ lệnh được lưu cùng với tài liệu thì chỉ có thể chạy khi tài liệu đó đã mở."
+msgid "Justify"
+msgstr "Canh đều"
-#: 06140500.xhp
+#: 05080400.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_idN1061A\n"
+"05080400.xhp\n"
+"hd_id3152937\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"40000\">The big list box lists the events and the assigned macros. After you selected the location in the <emph>Save In</emph> list box, select an event in the big list box. Then click <emph>Assign Macro</emph>.</ahelp>"
-msgstr "<ahelp hid=\"40000\">Hộp liệt kê lớn có liệt kê các dữ kiện và các vĩ lệnh đã gán. Một khi bạ chọn vị trí trong hộp liệt kê <emph>Lưu vào</emph>, chọn một dữ kiện trong hộp liệt kê lớn. Sau đó thì nhấn vào nút <emph>Gán vĩ lệnh</emph>.</ahelp>"
+msgid "<link href=\"text/shared/01/05080400.xhp\" name=\"Justify\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05080400.xhp\" name=\"Canh đều\">Canh đều</link>"
-#: 06140500.xhp
+#: 05080400.xhp
msgctxt ""
-"06140500.xhp\n"
-"hd_id3159258\n"
-"22\n"
+"05080400.xhp\n"
+"par_id3146856\n"
+"2\n"
"help.text"
-msgid "Assign Macro"
-msgstr "Gán vĩ lệnh"
+msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Aligns the selected paragraph(s) to the left and the right page margins. If you want, you can also specify the alignment options for the last line of a paragraph by choosing <emph>Format - Paragraph - Alignment</emph>.</ahelp></variable>"
+msgstr "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Chỉnh canh các đoạn văn đã chọn theo lề bên trái và bên phải của trang. Bạn cũng có thể ghi rõ các tùy chọn chỉnh canh cho dòng cuối cùng của đoạn văn, bằng cách chọn lệnh <emph>Định dạng > Đoạn văn > Canh lề</emph>.</ahelp></variable>"
-#: 06140500.xhp
+#: 05090000.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3156152\n"
-"23\n"
+"05090000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_ASSIGN\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_ASSIGN\">Mở <link href=\"text/shared/01/06130000.xhp\">Bộ chọn Vĩ lệnh</link> để gán một vĩ lệnh cho dữ kiện đã chọn.</ahelp>"
+msgid "Font"
+msgstr "Phông"
-#: 06140500.xhp
+#: 05090000.xhp
msgctxt ""
-"06140500.xhp\n"
-"hd_id3154046\n"
-"24\n"
+"05090000.xhp\n"
+"bm_id3155271\n"
"help.text"
-msgid "Remove Macro"
-msgstr "Bỏ vĩ lệnh"
+msgid "<bookmark_value>fonts; text objects</bookmark_value><bookmark_value>text objects; fonts</bookmark_value>"
+msgstr "<bookmark_value>phông; đối tượng văn bản</bookmark_value><bookmark_value>đối tượng văn bản; phông</bookmark_value>"
-#: 06140500.xhp
+#: 05090000.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3152349\n"
-"35\n"
+"05090000.xhp\n"
+"hd_id3155271\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_DELETE\">Deletes the macro assignment for the selected event.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_DELETE\">Xoá sự gán vĩ lệnh cho dữ kiện đã chọn.</ahelp>"
+msgid "<link href=\"text/shared/01/05090000.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05090000.xhp\" name=\"Phông\">Phông</link>"
-#: 06140500.xhp
+#: 05090000.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3159147\n"
-"38\n"
+"05090000.xhp\n"
+"par_id3153383\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"List of events\">List of events</link>"
-msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Danh sách các dữ kiện\">Danh sách các dữ kiện</link>"
+msgid "Set the font options for the selected text."
+msgstr "Đặt các tùy chọn phông cho văn bản đã chọn."
-#: 05100500.xhp
+#: 05100000.xhp
msgctxt ""
-"05100500.xhp\n"
+"05100000.xhp\n"
"tit\n"
"help.text"
-msgid "Top"
-msgstr "Trên"
+msgid "Size"
+msgstr "Kích cỡ"
-#: 05100500.xhp
+#: 05100000.xhp
msgctxt ""
-"05100500.xhp\n"
+"05100000.xhp\n"
+"bm_id3153391\n"
+"help.text"
+msgid "<bookmark_value>text; font sizes</bookmark_value><bookmark_value>font sizes; text</bookmark_value>"
+msgstr "<bookmark_value>văn bản; các kích cỡ phông</bookmark_value><bookmark_value>các kích cỡ phông; văn bản</bookmark_value>"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3153391\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05100000.xhp\" name=\"Size\">Size</link>"
+msgstr "<link href=\"text/shared/01/05100000.xhp\" name=\"Kích cỡ\">Kích cỡ</link>"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3146856\n"
+"2\n"
+"help.text"
+msgid "Set the font size for the selected text."
+msgstr "Đặt kích cỡ phông cho văn bản đã chọn."
+
+#: 05100100.xhp
+msgctxt ""
+"05100100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Merge"
+msgstr "Trộn"
+
+#: 05100100.xhp
+msgctxt ""
+"05100100.xhp\n"
"hd_id3154765\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100500.xhp\" name=\"Top\">Top</link>"
-msgstr "<link href=\"text/shared/01/05100500.xhp\" name=\"Trên\">Tren</link>"
+msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge\">Merge</link>"
+msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge\">Trộn</link>"
-#: 05100500.xhp
+#: 05100100.xhp
msgctxt ""
-"05100500.xhp\n"
-"par_id3151390\n"
+"05100100.xhp\n"
+"par_id3147406\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:CellVertTop\">Aligns the contents of the cell to the top edge of the cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:CellVertTop\">Căn chỉnh nội dung một ô theo cạnh trên của ô.</ahelp>"
+msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected table cells into a single cell.</ahelp></variable>"
+msgstr "<variable id=\"verbindentext\"><ahelp hid=\".\">Kết hợp nội dung của những ô khác nhau thành một ô duy nhất.</ahelp></variable>"
-#: 05100500.xhp
+#: 05100100.xhp
msgctxt ""
-"05100500.xhp\n"
-"par_id3145671\n"
-"120\n"
+"05100100.xhp\n"
+"par_id3154351\n"
+"79\n"
"help.text"
-msgid "<variable id=\"zelleoben\">In the context menu of a cell, choose <emph>Cell - Top</emph></variable>"
-msgstr "<variable id=\"zelleoben\">Trong trình đơn ngữ cảnh của một ô, chọn<emph>Ô - Trên</emph></variable>"
+msgid "Choose <emph>Table - Merge Cells</emph>"
+msgstr "Chọn <emph>Bảnge - Nhập Ô</emph>"
-#: 05200300.xhp
+#: 05100100.xhp
msgctxt ""
-"05200300.xhp\n"
+"05100100.xhp\n"
+"par_id3154370\n"
+"80\n"
+"help.text"
+msgid "On the <emph>Table</emph> Bar, click"
+msgstr "Trong thanh công cụ <emph>bảng</emph>, nhấn"
+
+#: 05100100.xhp
+msgctxt ""
+"05100100.xhp\n"
+"par_id3153996\n"
+"help.text"
+msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">icon</alt></image>"
+msgstr "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">Biểu tượng</alt></image>"
+
+#: 05100100.xhp
+msgctxt ""
+"05100100.xhp\n"
+"par_id3150662\n"
+"81\n"
+"help.text"
+msgid "Merge Cells"
+msgstr "Nhập Ô"
+
+#: 05100100.xhp
+msgctxt ""
+"05100100.xhp\n"
+"par_id3153718\n"
+"3\n"
+"help.text"
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr "Nhập ô có thể dẫn tới lỗi trong tính toán các công thức của bảng."
+
+#: 05100200.xhp
+msgctxt ""
+"05100200.xhp\n"
"tit\n"
"help.text"
-msgid "Arrow Styles"
-msgstr "Kiểu dáng Mũi tên"
+msgid "Split Cells"
+msgstr "Chia Ô"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3156045\n"
+"05100200.xhp\n"
+"hd_id3154654\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\">Arrow Styles</link>"
-msgstr "<link href=\"text/shared/01/05200300.xhp\" name=\"Kiểu dáng Mũi tên\">Kiểu dáng Mũi tên</link>"
+msgid "<link href=\"text/shared/01/05100200.xhp\" name=\"Split Cells\">Split Cells</link>"
+msgstr "<link href=\"text/shared/01/05100200.xhp\" name=\"Chia các ô\">Chia các ô</link>"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3149031\n"
+"05100200.xhp\n"
+"par_id3083451\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINE_ENDDEF\">Edit or create arrow styles.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINE_ENDDEF\">Chỉnh sửa hay tạo các kiểu dáng mũi tên.</ahelp>"
+msgid "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">Splits the cell or group of cells horizontally or vertically into the number of cells that you enter.</ahelp></variable>"
+msgstr "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">Chia một ô hay một nhóm ô theo chiều dọc hay chiều ngang thành số các ô tùy chọn mà bạn nhập.</ahelp></variable>"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3153551\n"
-"5\n"
+"05100200.xhp\n"
+"par_id3154024\n"
+"82\n"
"help.text"
-msgid "Organize arrow styles"
-msgstr "Tổ chức kiểu dáng mũi tên"
+msgid "Choose <emph>Table - Split Cells</emph>"
+msgstr "Chọn <emph>Bảng - Chia Ô</emph>"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3154398\n"
-"6\n"
+"05100200.xhp\n"
+"par_id3154042\n"
+"83\n"
"help.text"
-msgid "Lets you organize the current list of arrow styles."
-msgstr "Cho phép bạn tổ chức danh sách các kiểu dáng mũi tên hiện thời."
+msgid "On the <emph>Table</emph> Bar, click"
+msgstr "Trong thanh công cụ <emph>bảng</emph>, nhấn"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3155552\n"
-"7\n"
+"05100200.xhp\n"
+"par_id3147270\n"
"help.text"
-msgid "Title"
-msgstr "Tựa đề"
+msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Biểu tượng</alt></image>"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3147399\n"
-"8\n"
+"05100200.xhp\n"
+"par_id3150616\n"
+"84\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_LINEEND_DEF:EDT_NAME\">Displays the name of the selected arrow style.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_LINEEND_DEF:EDT_NAME\">Hiển thị tên của kiểu dáng mũi tên đã chọn.</ahelp>"
+msgid "Split Cells"
+msgstr "Chia Ô"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3155892\n"
-"9\n"
+"05100200.xhp\n"
+"hd_id3154558\n"
+"3\n"
"help.text"
-msgid "Arrow style"
-msgstr "Kiểu dáng mũi tên"
+msgid "Split cell into"
+msgstr "Chia ô thành"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3149827\n"
-"10\n"
+"05100200.xhp\n"
+"par_id3150021\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS\">Choose a predefined arrow style symbol from the list box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS\">Trong hộp liệt kê, chọn một ký hiệu kiểu dáng mũi tên đã xác định sẵn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/countnf\">Enter the number of rows or columns that you want to split the selected cell(s) into.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/splitcellsdialog/countnf\">Điền số hàng và số cột mà bạn muốn chia (các)ô hiện tại thành</ahelp>"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3145313\n"
-"11\n"
+"05100200.xhp\n"
+"hd_id3145249\n"
+"5\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "Direction"
+msgstr "Hướng"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3154288\n"
-"12\n"
+"05100200.xhp\n"
+"hd_id3150568\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_ADD\">To define a custom arrow style, select a drawing object in the document, and then click here.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_ADD\">Để xác định một kiểu dáng mũi tên riêng, chọn một đối tượng vẽ trong tài liệu, sau đó nhấn vào đây.</ahelp>"
+msgid "Horizontally"
+msgstr "Theo chiều ngang"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3156346\n"
-"13\n"
+"05100200.xhp\n"
+"par_id3153927\n"
+"8\n"
"help.text"
-msgid "Modify"
-msgstr "Sửa"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/hori\">Splits the selected cell(s) into the number of rows that you specify in the <emph>Split cell into </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/splitcellsdialog/hori\">Chia (các) ô đựơc chọn thành số hàng mà bạn chọn trong hộp thoại <emph>Chia ô thành </emph>.</ahelp>"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3154897\n"
-"14\n"
+"05100200.xhp\n"
+"hd_id3147566\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY\">Changes the name of the selected arrow style.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY\">Thay đổi tên của kiểu dáng mũi tên đã chọn.</ahelp>"
+msgid "Into equal proportions"
+msgstr "Thành những phần bằng nhau"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3153332\n"
-"15\n"
+"05100200.xhp\n"
+"par_id3154638\n"
+"12\n"
"help.text"
-msgid "Load Arrow Styles"
-msgstr "Nạp Kiểu dáng Mũi tên"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/prop\">Splits cells into rows of equal height.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/splitcellsdialog/prop\">Chia các ô thành những hàng với chiều cao bằng nhau.</ahelp>"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3146137\n"
-"16\n"
+"05100200.xhp\n"
+"hd_id3150765\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD\">Imports a list of arrow styles.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD\">Nhập khẩu danh sách các kiểu dáng mũi tên.</ahelp>"
+msgid "Vertically"
+msgstr "Nằm dọc"
-#: 05200300.xhp
+#: 05100200.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3158432\n"
-"17\n"
+"05100200.xhp\n"
+"par_id3145410\n"
+"10\n"
"help.text"
-msgid "Save Arrow Styles"
-msgstr "Lưu Kiểu dáng Mũi tên"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/vert\">Splits the selected cell(s) into the number of columns that you specify in the <emph>Split cell into </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/splitcellsdialog/vert\">Chia (các) ô được chọn thành các cột mà bạn đã chỉ định trong hộp <emph>Chia ô thành </emph>.</ahelp>"
-#: 05200300.xhp
+#: 05100500.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3152944\n"
-"18\n"
+"05100500.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE\">Saves the current list of arrow styles, so that you can load it later.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE\">Lưu lại danh sách các kiểu dáng mũi tên hiện thời, để bạn có thể nạp lại sau.</ahelp>"
+msgid "Top"
+msgstr "Trên"
-#: grid.xhp
+#: 05100500.xhp
msgctxt ""
-"grid.xhp\n"
-"tit\n"
+"05100500.xhp\n"
+"hd_id3154765\n"
+"1\n"
"help.text"
-msgid "Grid"
-msgstr "Lưới"
+msgid "<link href=\"text/shared/01/05100500.xhp\" name=\"Top\">Top</link>"
+msgstr "<link href=\"text/shared/01/05100500.xhp\" name=\"Trên\">Tren</link>"
-#: grid.xhp
+#: 05100500.xhp
msgctxt ""
-"grid.xhp\n"
-"bm_id4263435\n"
+"05100500.xhp\n"
+"par_id3151390\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>grids;display options (Impress/Draw)</bookmark_value>"
-msgstr "<bookmark_value>lưới;tùy chọn hiển thị (Impress/Draw)</bookmark_value>"
+msgid "<ahelp hid=\".uno:CellVertTop\">Aligns the contents of the cell to the top edge of the cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:CellVertTop\">Căn chỉnh nội dung một ô theo cạnh trên của ô.</ahelp>"
-#: grid.xhp
+#: 05100500.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10565\n"
+"05100500.xhp\n"
+"par_id3145671\n"
+"120\n"
"help.text"
-msgid "<link href=\"text/shared/01/grid.xhp\">Grid</link>"
-msgstr "<link href=\"text/shared/01/grid.xhp\">Lưới</link>"
+msgid "<variable id=\"zelleoben\">In the context menu of a cell, choose <emph>Cell - Top</emph></variable>"
+msgstr "<variable id=\"zelleoben\">Trong trình đơn ngữ cảnh của một ô, chọn<emph>Ô - Trên</emph></variable>"
-#: grid.xhp
+#: 05100600.xhp
msgctxt ""
-"grid.xhp\n"
-"par_id3147340\n"
-"5\n"
+"05100600.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the display properties of a grid.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt các thuộc tính hiển thị về lưới.</ahelp>"
+msgid "Center (vertical)"
+msgstr "Đầu chiều dọc"
-#: grid.xhp
+#: 05100600.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN1057E\n"
+"05100600.xhp\n"
+"hd_id3149874\n"
+"1\n"
"help.text"
-msgid "Display Grid"
-msgstr "Hiện lưới"
+msgid "<link href=\"text/shared/01/05100600.xhp\" name=\"Center (vertical)\">Center (vertical)</link>"
+msgstr "<link href=\"text/shared/01/05070200.xhp\" name=\"Giữa nằm ngang\">Giữa nằm ngang</link>"
-#: grid.xhp
+#: 05100600.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10582\n"
+"05100600.xhp\n"
+"par_id3149048\n"
+"2\n"
"help.text"
-msgid "Displays or hides grid lines that you can use to align objects such as graphics on a page."
-msgstr "Hiển thị hay ẩn các đường lưới bạn có thể sử dụng để chỉnh canh các đối tượng (v.d. ảnh) trên trang."
+msgid "<ahelp hid=\".\">Centers the contents of the cell between top and bottom of the cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:CellVertTop\">Căn chỉnh nội dung một ô theo cạnh trên của ô.</ahelp>"
-#: grid.xhp
+#: 05100600.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10585\n"
+"05100600.xhp\n"
+"par_id3149525\n"
+"121\n"
"help.text"
-msgid "Snap to Grid"
-msgstr "Đính lưới"
+msgid "<variable id=\"zellemitte\">In the context menu of a cell, choose <emph>Cell - Center</emph></variable>"
+msgstr "<variable id=\"zellemitte\">Trong trình đơn ngữ cảnh của một ô, chọn<emph>Ô - Trung tâm</emph></variable>"
-#: grid.xhp
-#, fuzzy
+#: 05100700.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10589\n"
+"05100700.xhp\n"
+"tit\n"
"help.text"
-msgid "Automatically aligns objects to vertical and horizontal grid lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> when you drag an object."
-msgstr "Tự động chỉnh canh các đối tượng theo các đường lưới theo chiều ngang/dọc. Để bỏ qua tính năng này, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo đối tượng."
+msgid "Bottom"
+msgstr "Dưới"
-#: grid.xhp
+#: 05100700.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN105C9\n"
+"05100700.xhp\n"
+"hd_id3150249\n"
+"1\n"
"help.text"
-msgid "Grid to Front"
-msgstr "Lưới lên trên"
+msgid "<link href=\"text/shared/01/05100700.xhp\" name=\"Bottom\">Bottom</link>"
+msgstr "<link href=\"text/shared/01/05100700.xhp\" name=\"Dưới\">Dưới</link>"
-#: grid.xhp
+#: 05100700.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN105CD\n"
+"05100700.xhp\n"
+"par_id3154764\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the grid lines in front of the objects on the slide or page.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị các đường lưới ở trên những đối tượng trên ảnh chiếu hay trang.</ahelp>"
+msgid "<ahelp hid=\".uno:CellVertBottom\">Aligns the contents of the cell to the bottom edge of the cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:CellVertBottom\">Căn chỉnh nội dung một ô theo cạnh dưới của ô.</ahelp>"
-#: grid.xhp
+#: 05100700.xhp
msgctxt ""
-"grid.xhp\n"
-"par_id4372692\n"
+"05100700.xhp\n"
+"par_id3149201\n"
+"122\n"
"help.text"
-msgid "Set the grid color on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">Appearance</link>."
-msgstr ""
+msgid "<variable id=\"zelleunten\">In the context menu of a cell, choose <emph>Cell - Bottom</emph></variable>"
+msgstr "<variable id=\"zelleoben\">Trong trình đơn ngữ cảnh của một ô, chọn<emph>Ô - Trên</emph></variable>"
#: 05110000.xhp
msgctxt ""
@@ -27409,6704 +23712,6912 @@ msgctxt ""
msgid "If you place the cursor in a word and do not make a selection, the font style is applied to the entire word. If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
msgstr "Nếu bạn để con trỏ vào từ, còn không lựa chọn gì, kiểu dáng phông được áp dụng cho toàn từ. Nếu con trỏ chưa bên trong từ, và chưa lựa chọn văn bản, kiểu dáng phông được áp dụng cho chuỗi bạn gõ vào."
-#: 05260500.xhp
+#: 05110100.xhp
msgctxt ""
-"05260500.xhp\n"
+"05110100.xhp\n"
"tit\n"
"help.text"
-msgid "To Frame"
-msgstr "Vào khung"
+msgid "Bold"
+msgstr "Đậm"
-#: 05260500.xhp
+#: 05110100.xhp
msgctxt ""
-"05260500.xhp\n"
-"hd_id3149991\n"
+"05110100.xhp\n"
+"bm_id3150278\n"
+"help.text"
+msgid "<bookmark_value>text; bold</bookmark_value><bookmark_value>bold; text</bookmark_value><bookmark_value>characters; bold</bookmark_value>"
+msgstr "<bookmark_value>văn bản; in đậm</bookmark_value><bookmark_value>in đậm; văn bản</bookmark_value><bookmark_value>ký tự; in đậm</bookmark_value>"
+
+#: 05110100.xhp
+msgctxt ""
+"05110100.xhp\n"
+"hd_id3150278\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260500.xhp\" name=\"To Frame\">To Frame</link>"
-msgstr "<link href=\"text/shared/01/05260500.xhp\" name=\"Vào khung\">Vào khung</link>"
+msgid "<link href=\"text/shared/01/05110100.xhp\" name=\"Bold\">Bold</link>"
+msgstr "<link href=\"text/shared/01/05110100.xhp\" name=\"Đậm\">Đậm</link>"
-#: 05260500.xhp
+#: 05110100.xhp
msgctxt ""
-"05260500.xhp\n"
-"par_id3159242\n"
+"05110100.xhp\n"
+"par_id3153089\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToFrame\" visibility=\"visible\">Anchors the selected item to the surrounding frame.</ahelp>"
-msgstr "<ahelp hid=\".uno:SetAnchorToFrame\" visibility=\"visible\">Thả neo mục đã chọn vào khung giới hạn.</ahelp>"
+msgid "<ahelp hid=\".uno:Bold\">Makes the selected text bold. If the cursor is in a word, the entire word is made bold. If the selection or word is already bold, the formatting is removed.</ahelp>"
+msgstr "<ahelp hid=\".uno:Bold\">Chuyển đổi đoạn văn đã chọn sang chữ in đậm. Nếu con trỏ nằm bên trong từ, toàn từ trở thành đậm. Nếu vùng chọn hay từ đã chữ đậm, hành động đây gỡ bỏ định dạng in đậm.</ahelp>"
-#: 04160500.xhp
+#: 05110100.xhp
msgctxt ""
-"04160500.xhp\n"
-"tit\n"
+"05110100.xhp\n"
+"par_id3153255\n"
+"3\n"
"help.text"
-msgid "Insert Floating Frame"
-msgstr "Chèn khung nổi"
+msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
+msgstr "Nếu con trỏ không phải bên trong từ, và chưa chọn văn bản, kiểu dáng phông được áp dụng cho chuỗi bạn gõ vào."
-#: 04160500.xhp
+#: 05110200.xhp
msgctxt ""
-"04160500.xhp\n"
-"bm_id3149783\n"
+"05110200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>floating frames in HTML documents</bookmark_value><bookmark_value>inserting; floating frames</bookmark_value>"
-msgstr "<bookmark_value>khung nổi trong tài liệu HTML</bookmark_value><bookmark_value>chèn; khung nổi</bookmark_value>"
+msgid "Italic"
+msgstr "Nghiêng"
-#: 04160500.xhp
+#: 05110200.xhp
msgctxt ""
-"04160500.xhp\n"
-"hd_id3149783\n"
-"1\n"
+"05110200.xhp\n"
+"bm_id3155182\n"
"help.text"
-msgid "Insert Floating Frame"
-msgstr "Chèn khung trôi"
+msgid "<bookmark_value>text; italics</bookmark_value><bookmark_value>italic text</bookmark_value><bookmark_value>characters; italics</bookmark_value>"
+msgstr "<bookmark_value>văn bản; in nghiêng</bookmark_value><bookmark_value>văn bản in nghiêng</bookmark_value><bookmark_value>ký tự; in nghiêng</bookmark_value>"
-#: 04160500.xhp
-#, fuzzy
+#: 05110200.xhp
msgctxt ""
-"04160500.xhp\n"
-"par_id3148410\n"
-"2\n"
+"05110200.xhp\n"
+"hd_id3155182\n"
+"1\n"
"help.text"
-msgid "<variable id=\"frameeinfuegentext\"><ahelp hid=\".\">Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file.</ahelp></variable>"
-msgstr "<variable id=\"frameeinfuegentext\"><ahelp hid=\".uno:InsertObjectFloatingFra\">Chèn vào tài liệu hiện tại một khung nổi. Trong tài liệu HTML, khung nổi được dùng để hiển thị nội dung của tập tin khác. Khung nổi không được hỗ trợ bởi trình duyệt cũ Netscape Navigator 4.x.</ahelp></variable>"
+msgid "<link href=\"text/shared/01/05110200.xhp\" name=\"Italic\">Italic</link>"
+msgstr "<link href=\"text/shared/01/05110200.xhp\" name=\"Nghiêng\">Nghiêng</link>"
-#: 04160500.xhp
+#: 05110200.xhp
msgctxt ""
-"04160500.xhp\n"
-"par_id3151100\n"
-"6\n"
+"05110200.xhp\n"
+"par_id3148882\n"
+"2\n"
"help.text"
-msgid "If you want to create HTML pages that use floating frames, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML compatibility</emph>, and then select the \"MS Internet Explorer\" option. The floating frame is bounded by <IFRAME> and </IFRAME> tags."
-msgstr ""
+msgid "<ahelp hid=\".uno:Italic\">Makes the selected text italic. If the cursor is in a word, the entire word is made italic. If the selection or word is already italic, the formatting is removed.</ahelp>"
+msgstr "<ahelp hid=\".uno:Italic\">Chuyển đổi đoạn văn đã chọn sang chữ in nghiêng. Nếu con trỏ nằm bên trong từ, toàn từ trở thành nghiêng. Nếu vùng chọn hay từ đã chữ nghiêng, hành động đây gỡ bỏ định dạng in nghiêng.</ahelp>"
-#: 04160500.xhp
+#: 05110200.xhp
msgctxt ""
-"04160500.xhp\n"
-"par_id3151330\n"
+"05110200.xhp\n"
+"par_id3156069\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/02210101.xhp\" name=\"Floating frame properties\">Floating frame properties</link>"
-msgstr "<link href=\"text/shared/01/02210101.xhp\" name=\"Thuộc tính khung nổi\">Thuộc tính khung nổi</link>"
+msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
+msgstr "Nếu con trỏ không phải bên trong từ, và chưa chọn văn bản, kiểu dáng phông được áp dụng cho chuỗi bạn gõ vào."
-#: 02200100.xhp
+#: 05110300.xhp
msgctxt ""
-"02200100.xhp\n"
+"05110300.xhp\n"
"tit\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "Underline"
+msgstr "Gạch dưới"
-#: 02200100.xhp
+#: 05110300.xhp
msgctxt ""
-"02200100.xhp\n"
-"bm_id3145138\n"
+"05110300.xhp\n"
+"bm_id3150756\n"
"help.text"
-msgid "<bookmark_value>objects; editing</bookmark_value><bookmark_value>editing; objects</bookmark_value>"
-msgstr "<bookmark_value>đối tượng; chỉnh sửa</bookmark_value><bookmark_value>chỉnh sửa; đối tượng</bookmark_value>"
+msgid "<bookmark_value>characters;underlining</bookmark_value><bookmark_value>underlining;characters</bookmark_value>"
+msgstr "<bookmark_value>ký tự;gạch dưới</bookmark_value><bookmark_value>gạch dưới;ký tự</bookmark_value>"
-#: 02200100.xhp
+#: 05110300.xhp
msgctxt ""
-"02200100.xhp\n"
-"hd_id3145138\n"
+"05110300.xhp\n"
+"hd_id3150756\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/shared/01/02200100.xhp\" name=\"Sửa\">Sửa</link>"
+msgid "<link href=\"text/shared/01/05110300.xhp\" name=\"Underline\">Underline</link>"
+msgstr "<link href=\"text/shared/01/05110300.xhp\" name=\"Gạch dưới\">Gạch dưới</link>"
-#: 02200100.xhp
+#: 05110300.xhp
msgctxt ""
-"02200100.xhp\n"
-"par_id3150008\n"
+"05110300.xhp\n"
+"par_id3149031\n"
"2\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object </emph>command.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"\">Trong tập tin, cho phép bạn chỉnh sửa một đối tượng đã chọn mà bạn đã chèn bằng lệnh <emph>Chèn > Đối tượng</emph>.</ahelp>"
+msgid "<ahelp hid=\".uno:Underline\" visibility=\"visible\">Underlines or removes underlining from the selected text.</ahelp>"
+msgstr "<ahelp hid=\".uno:Underline\" visibility=\"visible\">Gạch dưới, hay gỡ bỏ gạch dưới chuỗi đã chọn.</ahelp>"
-#: 04180100.xhp
+#: 05110300.xhp
msgctxt ""
-"04180100.xhp\n"
+"05110300.xhp\n"
+"par_id3152821\n"
+"3\n"
+"help.text"
+msgid "If the cursor is not in a word, the new text that you enter is underlined."
+msgstr "Nếu con trỏ không phải bên trong từ, hành động này gạch dưới chuỗi bạn gõ vào."
+
+#: 05110300.xhp
+msgctxt ""
+"05110300.xhp\n"
+"par_id3154894\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\".uno:UnderlineDouble\" visibility=\"hidden\">Underlines the selected text with two lines.</ahelp>"
+msgstr "<ahelp hid=\".uno:UnderlineDouble\" visibility=\"hidden\">Gạch dưới chuỗi đã chọn, dùng gạch đôi.</ahelp>"
+
+#: 05110400.xhp
+msgctxt ""
+"05110400.xhp\n"
"tit\n"
"help.text"
-msgid "Data Sources"
-msgstr "Nguồn dữ liệu"
+msgid "Strikethrough"
+msgstr "Gạch đè"
-#: 04180100.xhp
+#: 05110400.xhp
msgctxt ""
-"04180100.xhp\n"
-"hd_id3156053\n"
+"05110400.xhp\n"
+"bm_id3152942\n"
+"help.text"
+msgid "<bookmark_value>strikethrough;characters</bookmark_value>"
+msgstr "<bookmark_value>gạch đè;ký tự</bookmark_value>"
+
+#: 05110400.xhp
+msgctxt ""
+"05110400.xhp\n"
+"hd_id3152942\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/04180100.xhp\" name=\"Data Sources\">Data Sources</link>"
-msgstr "<link href=\"text/shared/01/04180100.xhp\" name=\"Nguồn dữ liệu\">Nguồn dữ liệu</link>"
+msgid "<link href=\"text/shared/01/05110400.xhp\" name=\"Strikethrough\">Strikethrough</link>"
+msgstr "<link href=\"text/shared/01/05110400.xhp\" name=\"Gạch đè\">Gạch đè</link>"
-#: 04180100.xhp
+#: 05110400.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3149495\n"
+"05110400.xhp\n"
+"par_id3153391\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ViewDataSourceBrowser\">Lists the databases that are registered in <item type=\"productname\">%PRODUCTNAME</item> and lets you manage the contents of the databases.</ahelp>"
-msgstr "<ahelp hid=\".uno:ViewDataSourceBrowser\">Liệt kê các cơ sở dữ liệu được đăng ký với <item type=\"productname\">%PRODUCTNAME</item>, và cho phép bạn quản lý nội dung của các cơ sở dữ liệu đó.</ahelp>"
+msgid "<ahelp hid=\".uno:Strikeout\" visibility=\"visible\">Draws a line through the selected text, or if the cursor is in a word, the entire word.</ahelp>"
+msgstr "<ahelp hid=\".uno:Strikeout\" visibility=\"visible\">Vẽ đường qua chuỗi đã chọn, hoặc nếu con trỏ bên trong từ, qua toàn từ.</ahelp>"
-#: 04180100.xhp
+#: 05110500.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3156136\n"
-"30\n"
+"05110500.xhp\n"
+"tit\n"
"help.text"
-msgid "The <emph>Data sources</emph> command is only available when a text document or a spreadsheet is open."
-msgstr "Câu lệnh <emph>Nguồn dữ liệu</emph> chỉ sẵn sàng khi có một tài liệu văn bản hay bảng tính còn mở."
+msgid "Shadows"
+msgstr "Bóng"
-#: 04180100.xhp
+#: 05110500.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3154823\n"
-"31\n"
+"05110500.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "You can insert fields from a database into your file or you can create forms to access the database."
-msgstr "Bạn có khả năng chèn vào tài liệu các trường từ cơ sở dữ liệu, hoặc bạn có thể tạo biểu mẫu để truy cập đến cơ sở dữ liệu."
+msgid "<bookmark_value>text; shadowed</bookmark_value><bookmark_value>characters; shadowed</bookmark_value><bookmark_value>shadows;characters, using context menu</bookmark_value>"
+msgstr "<bookmark_value>văn bản; đổ bóng</bookmark_value><bookmark_value>ký tự; đổ bóng</bookmark_value><bookmark_value>bóng;ký tự, dùng trình đơn ngữ cảnh</bookmark_value>"
-#: 04180100.xhp
+#: 05110500.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3156427\n"
+"05110500.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data bar\">Table Data bar</link>"
-msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Thanh Dữ Liệu Bảng\">Thanh Dữ Liệu Bảng</link>"
+msgid "<link href=\"text/shared/01/05110500.xhp\" name=\"Shadows\">Shadows</link>"
+msgstr "<link href=\"text/shared/01/05110500.xhp\" name=\"Bóng\">Bóng</link>"
-#: 04180100.xhp
+#: 05110500.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3153311\n"
+"05110500.xhp\n"
+"par_id3151299\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Forms\">Forms</link>"
-msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Biểu mẫu\">Biểu mẫu</link>"
+msgid "<ahelp hid=\".uno:Shadowed\">Adds a shadow to the selected text, or if the cursor is in a word, to the entire word.</ahelp>"
+msgstr "<ahelp hid=\".uno:Shadowed\">Thêm bóng đổ vào chuỗi đã chọn, hoặc nếu con trỏ bên trong từ, vào toàn từ.</ahelp>"
-#: 05020500.xhp
+#: 05110600m.xhp
msgctxt ""
-"05020500.xhp\n"
+"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "Font Position"
-msgstr "Vị trí phông"
+msgid "Space Rows Equally"
+msgstr "Cách đều các hàng"
-#: 05020500.xhp
+#: 05110600m.xhp
msgctxt ""
-"05020500.xhp\n"
-"bm_id3154841\n"
+"05110600m.xhp\n"
+"hd_id3149871\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>positioning; fonts</bookmark_value><bookmark_value>formats; positions</bookmark_value><bookmark_value>effects;font positions</bookmark_value><bookmark_value>fonts; positions in text</bookmark_value><bookmark_value>spacing; font effects</bookmark_value><bookmark_value>characters; spacing</bookmark_value><bookmark_value>pair kerning</bookmark_value><bookmark_value>kerning; in characters</bookmark_value><bookmark_value>text; kerning</bookmark_value>"
-msgstr "<bookmark_value>định vị; phông</bookmark_value><bookmark_value>định dạng; vị trí</bookmark_value><bookmark_value>hiệu ứng;vị trí phông</bookmark_value><bookmark_value>phông; vị trí trong văn bản</bookmark_value><bookmark_value>giãn cách;hiệu ứng phông</bookmark_value><bookmark_value>ký tự; giãn cách</bookmark_value><bookmark_value>định chỗ cặp</bookmark_value><bookmark_value>định chỗ; trong các ký tự</bookmark_value><bookmark_value>văn bản; định chỗ</bookmark_value>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
+msgstr "<link href=\"text/shared/01/05110600m.xhp\" name=\"Cách đều các hàng\">Cách đều các hàng</link>"
-#: 05020500.xhp
+#: 05110600m.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154841\n"
-"1\n"
+"05110600m.xhp\n"
+"par_id3154766\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\" name=\"Position\">Position</link></defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\" name=\"Vị trí Phông\">Vị trí Phông</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\" name=\"Vị trí\">Vị trí</link></defaultinline></switchinline>"
+msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeRows\">Adjusts the height of the selected rows to match the height of the tallest row in the selection.</ahelp></variable>"
+msgstr "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeRows\">Điều chỉnh chiều cao của hàng được chọn theo chiều cao lớn nhất trong số các hàng đó.</ahelp></variable>"
-#: 05020500.xhp
+#: 05110600m.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3148585\n"
-"2\n"
+"05110600m.xhp\n"
+"par_id3153569\n"
+"92\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/PositionPage\">Specify the position, scaling, rotation, and spacing for characters.</ahelp>"
-msgstr ""
+msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
+msgstr "Chọn <emph>Bảng - Tự động chỉnh cỡ - Chia đều các hàng</emph>"
-#: 05020500.xhp
+#: 05110600m.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3147089\n"
-"3\n"
+"05110600m.xhp\n"
+"par_id3153755\n"
+"93\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
+msgstr "Mở thanh công cụ <emph>Tối ưu</emph> từ thanh <emph>Bảng</emph>, nhấn"
-#: 05020500.xhp
+#: 05110600m.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153748\n"
-"4\n"
+"05110600m.xhp\n"
+"par_id3145297\n"
"help.text"
-msgid "Set the subscript or superscript options for a character."
-msgstr "Đặt các tùy chọn chỉ số trên hay chỉ số dưới cho ký tự."
+msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3155994\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">Biểu tượng</alt></image>"
-#: 05020500.xhp
+#: 05110600m.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3153311\n"
-"5\n"
+"05110600m.xhp\n"
+"par_id3153206\n"
+"94\n"
"help.text"
-msgid "Superscript"
-msgstr "Chỉ số Trên"
+msgid "Distribute Rows Equally"
+msgstr "Phân phối đều các hàng"
-#: 05020500.xhp
+#: 05110700.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154750\n"
-"6\n"
+"05110700.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"hochtext\"><ahelp hid=\"cui/ui/positionpage/superscript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp></variable>"
-msgstr ""
+msgid "Superscript"
+msgstr "Chỉ số Trên"
-#: 05020500.xhp
+#: 05110700.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3147275\n"
-"7\n"
+"05110700.xhp\n"
+"hd_id3083278\n"
+"1\n"
"help.text"
-msgid "Normal"
-msgstr "Chuẩn"
+msgid "<link href=\"text/shared/01/05110700.xhp\" name=\"Superscript\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05110700.xhp\" name=\"Chỉ số Trên\">Chỉ số Trên</link>"
-#: 05020500.xhp
+#: 05110700.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3155503\n"
-"8\n"
+"05110700.xhp\n"
+"par_id3152937\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/normal\">Removes superscript or subscript formatting.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\".uno:SuperScript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp>"
+msgstr "<ahelp hid=\".uno:SuperScript\">Giảm kích cỡ phông của chuỗi đã chọn, và nâng chuỗi lên trên đường cơ bản.</ahelp>"
-#: 05020500.xhp
+#: 05110800.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3150465\n"
-"9\n"
+"05110800.xhp\n"
+"tit\n"
"help.text"
msgid "Subscript"
msgstr "Chỉ số Dưới"
-#: 05020500.xhp
+#: 05110800.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3155420\n"
-"10\n"
+"05110800.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "<variable id=\"tieftext\"><ahelp hid=\"cui/ui/positionpage/subscript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp></variable>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05110800.xhp\" name=\"Subscript\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05110800.xhp\" name=\"Chỉ số Dưới\">Chỉ số Dưới</link>"
-#: 05020500.xhp
+#: 05110800.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3148992\n"
-"11\n"
+"05110800.xhp\n"
+"par_id3152790\n"
+"2\n"
"help.text"
-msgid "Raise/lower by"
-msgstr "Nâng lên/Hạ thấp theo"
+msgid "<ahelp hid=\".uno:SubScript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp>"
+msgstr "<ahelp hid=\".uno:SubScript\">Giảm kích cỡ phông của chuỗi đã chọn, và hạ thấp chuỗi xuống dưới đường cơ bản.</ahelp>"
-#: 05020500.xhp
-#, fuzzy
+#: 05120000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3150275\n"
-"12\n"
+"05120000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/raiselowersb\">Enter the amount by which you want to raise or to lower the selected text in relation to the baseline. One hundred percent is equal to the height of the font.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_CHAR_POSITION_ED_HIGHLOW\">Nhập hệ số theo đó bạn muốn nâng lên hoặc hạ thấp chuỗi đã chọn tương đối so với đường cơ bản. Hệ số một trăm phần trăm bằng với chiều cao của phông.</ahelp>"
+msgid "Line Spacing"
+msgstr "Giãn cách dòng"
-#: 05020500.xhp
+#: 05120000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3150670\n"
-"13\n"
+"05120000.xhp\n"
+"bm_id3152876\n"
"help.text"
-msgid "Relative font size"
-msgstr "Kích cỡ phông tương đối"
+msgid "<bookmark_value>line spacing; context menu in paragraphs</bookmark_value><bookmark_value>text; line spacing</bookmark_value>"
+msgstr "<bookmark_value>giãn cách dòng; trình đơn ngữ cảnh trong đoạn văn</bookmark_value><bookmark_value>văn bản; giãn cách dòng</bookmark_value>"
-#: 05020500.xhp
+#: 05120000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153126\n"
-"14\n"
+"05120000.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/fontsizesb\">Enter the amount by which you want to reduce the font size of the selected text.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05120000.xhp\" name=\"Line Spacing\">Line Spacing</link>"
+msgstr "<link href=\"text/shared/01/05120000.xhp\" name=\"Giãn cách dòng\">Giãn cách dòng</link>"
-#: 05020500.xhp
+#: 05120000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3153349\n"
-"15\n"
+"05120000.xhp\n"
+"par_id3153514\n"
+"2\n"
"help.text"
-msgid "Automatic"
-msgstr "Tự động"
+msgid "Specify the amount of space to leave between lines of text in a paragraph."
+msgstr "Ghi rõ khoảng cách cần để lại giữa hai dòng văn bản trong đoạn văn."
-#: 05020500.xhp
+#: 05120000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153061\n"
-"16\n"
+"05120000.xhp\n"
+"par_id3155364\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/automatic\">Automatically sets the amount by which the selected text is raised or lowered in relation to the baseline.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Thụt lề và Giãn cách\">Thụt lề và Giãn cách</link>"
-#: 05020500.xhp
+#: 05120100.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154905\n"
-"30\n"
+"05120100.xhp\n"
+"tit\n"
"help.text"
-msgid "Rotation / scaling"
-msgstr "Xoay / Co giãn"
+msgid "Single Line"
+msgstr "Dòng đơn"
-#: 05020500.xhp
+#: 05120100.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154923\n"
-"36\n"
+"05120100.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "Set the rotation and the scaling options for the selected text."
-msgstr "Đặt các tùy chọn xoay và co giãn về chuỗi đã chọn."
+msgid "<link href=\"text/shared/01/05120100.xhp\" name=\"Single Line\">Single Line</link>"
+msgstr "<link href=\"text/shared/01/05120100.xhp\" name=\"Dòng đơn\">Dòng đơn</link>"
-#: 05020500.xhp
+#: 05120100.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154280\n"
-"31\n"
+"05120100.xhp\n"
+"par_id3154794\n"
+"2\n"
"help.text"
-msgid "0 degrees"
-msgstr "0 độ"
+msgid "<ahelp hid=\".uno:SpacePara1\" visibility=\"visible\">Applies single line spacing to the current paragraph. This is the default setting.</ahelp>"
+msgstr "<ahelp hid=\".uno:SpacePara1\" visibility=\"visible\">Áp dụng khoảng cách dòng đơn cho đoạn văn hiện tại. Đây là thiết lập mặc định.</ahelp>"
-#: 05020500.xhp
+#: 05120200.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3149045\n"
-"37\n"
+"05120200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/0deg\">Does not rotate the selected text.</ahelp>"
-msgstr ""
+msgid "1.5 Lines"
+msgstr "1,5 dòng"
-#: 05020500.xhp
+#: 05120200.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3156434\n"
-"32\n"
+"05120200.xhp\n"
+"hd_id3152459\n"
+"1\n"
"help.text"
-msgid "90 degrees"
-msgstr "90 độ"
+msgid "<link href=\"text/shared/01/05120200.xhp\" name=\"1.5 Lines\">1.5 Lines</link>"
+msgstr "<link href=\"text/shared/01/05120200.xhp\" name=\"1,5 dòng\">1,5 dòng</link>"
-#: 05020500.xhp
+#: 05120200.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3148739\n"
-"38\n"
+"05120200.xhp\n"
+"par_id3146807\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/90deg\">Rotates the selected text to the left by 90 degrees.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\".uno:SpacePara15\">Sets the line spacing of the current paragraph to one and half lines.</ahelp>"
+msgstr "<ahelp hid=\".uno:SpacePara15\">Đặt khoảng cách dòng của đoạn văn hiện tại thành 1,5 dòng.</ahelp>"
-#: 05020500.xhp
+#: 05120300.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3150398\n"
-"33\n"
+"05120300.xhp\n"
+"tit\n"
"help.text"
-msgid "270 degrees"
-msgstr "270 độ"
+msgid "Double (Line)"
+msgstr "Đôi (dòng)"
-#: 05020500.xhp
+#: 05120300.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153778\n"
-"39\n"
+"05120300.xhp\n"
+"hd_id3083278\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/270deg\">Rotates the selected text to the right by 90 degrees.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05120300.xhp\" name=\"Double (Line)\">Double (Line)</link>"
+msgstr "<link href=\"text/shared/01/05120300.xhp\" name=\"Đôi (dòng)\">Đôi (dòng)</link>"
-#: 05020500.xhp
+#: 05120300.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3147228\n"
-"34\n"
+"05120300.xhp\n"
+"par_id3149783\n"
+"2\n"
"help.text"
-msgid "Fit to line"
-msgstr "Vừa dòng"
+msgid "<ahelp hid=\".uno:SpacePara2\">Sets the line spacing of the current paragraph to two lines.</ahelp>"
+msgstr "<ahelp hid=\".uno:SpacePara2\">Đặt khoảng cách dòng của đoạn văn hiện tại thành 2 dòng.</ahelp>"
-#: 05020500.xhp
+#: 05120600.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3150288\n"
-"40\n"
+"05120600.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/fittoline\">Stretches or compresses the selected text so that it fits between the line that is above the text and the line that is below the text.</ahelp>"
-msgstr ""
+msgid "Space Columns Equally"
+msgstr "Cách đều các cột"
-#: 05020500.xhp
+#: 05120600.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3155994\n"
-"35\n"
+"05120600.xhp\n"
+"hd_id3153811\n"
+"1\n"
"help.text"
-msgid "Scale width"
-msgstr "Co giãn bề rộng"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
+msgstr "<link href=\"text/shared/01/05120600.xhp\" name=\"Cách đều\">Cách đều các cột</link>"
-#: 05020500.xhp
+#: 05120600.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3145171\n"
-"41\n"
+"05120600.xhp\n"
+"par_id3151389\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/scalewidthsb\">Enter the percentage of the font width by which to horizontally stretch or compress the selected text.</ahelp>"
-msgstr ""
+msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeColumns\">Adjusts the width of the selected columns to match the width of the widest column in the selection.</ahelp> The total width of the table cannot exceed the width of the page.</variable>"
+msgstr "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeColumns\">Chỉnh chiều rộng của các cột được lựa chọn theo kích thước của cột lớn nhất trong số chúng.</ahelp> Bề rộng tổng cộng của bảng không thể lớn hơn bề rộng của trang.</variable>"
-#: 05020500.xhp
+#: 05120600.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3149807\n"
-"17\n"
+"05120600.xhp\n"
+"par_id3159219\n"
+"107\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
+msgstr "Chọn <emph>Bảng - Tự chỉnh cỡ - Phân phối đều các cột</emph>"
-#: 05020500.xhp
+#: 05120600.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3156212\n"
-"18\n"
+"05120600.xhp\n"
+"par_id3156426\n"
+"108\n"
"help.text"
-msgid "Specify the spacing between individual characters."
-msgstr "Ghi rõ khoảng cách giữa hai ký tự."
+msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
+msgstr "Mở thanh công cụ <emph>Tối ưu</emph> từ thanh <emph>Bảng</emph>, nhấn"
-#: 05020500.xhp
+#: 05120600.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3125865\n"
-"19\n"
+"05120600.xhp\n"
+"par_id3145179\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3145186\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Biểu tượng</alt></image>"
-#: 05020500.xhp
-#, fuzzy
+#: 05120600.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153178\n"
-"20\n"
+"05120600.xhp\n"
+"par_id3151364\n"
+"109\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/kerninglb\">Specifies the spacing between the characters of the selected text. For expanded or condensed spacing, enter the amount that you want to expand or condense the text in the <emph>by </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_POSITION_LB_KERNING2\">Xác định khoảng cách giữa các ký tự riêng của chuỗi đã chọn. Để co giãn hay co lại khoảng cách, nhập vào hộp <emph>theo </emph> hệ số cần điều chỉnh.</ahelp>"
+msgid "Space Columns Equally"
+msgstr "Cách đều các cột"
-#: 05020500.xhp
+#: 05140100.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154908\n"
-"21\n"
+"05140100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Default</emph> - uses the character spacing specified in the font type"
-msgstr "<emph>Mặc định</emph> — dùng khoảng cách ký tự được ghi rõ trong kiểu phông"
+msgid "Create Style"
+msgstr "Tạo kiểu dáng"
-#: 05020500.xhp
+#: 05140100.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3156543\n"
-"22\n"
+"05140100.xhp\n"
+"hd_id3152823\n"
+"1\n"
"help.text"
-msgid "<emph>Expanded</emph> - increases the character spacing"
-msgstr "<emph>Mở rộng</emph> — tăng khoảng cách giữa các ký tự."
+msgid "Create Style"
+msgstr "Tạo kiểu dáng"
-#: 05020500.xhp
+#: 05140100.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154297\n"
-"23\n"
+"05140100.xhp\n"
+"hd_id3152790\n"
+"4\n"
"help.text"
-msgid "<emph>Condensed</emph> - decreases the character spacing"
-msgstr "<emph>Hẹp</emph> — giảm khoảng cách giữa các ký tự."
+msgid "Style name"
+msgstr "Tên kiểu dáng"
-#: 05020500.xhp
+#: 05140100.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3157870\n"
-"25\n"
+"05140100.xhp\n"
+"par_id3155599\n"
+"5\n"
"help.text"
-msgid "by"
-msgstr "theo"
+msgid "<ahelp hid=\"SFX2:COMBOBOX:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL\" visibility=\"visible\">Enter a name for the new Style.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:COMBOBOX:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL\" visibility=\"visible\">Nhập tên cho kiểu dáng mới.</ahelp>"
-#: 05020500.xhp
+#: 05140100.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3146974\n"
-"26\n"
+"05140100.xhp\n"
+"hd_id3154682\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/kerninged\">Enter the amount by which you want to expand or condense the character spacing for the selected text.</ahelp>"
-msgstr ""
+msgid "List of Custom Styles"
+msgstr "Danh sách Kiểu dáng riêng"
-#: 05020500.xhp
+#: 05140100.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154127\n"
-"27\n"
+"05140100.xhp\n"
+"par_id3154894\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000005.xhp#kerning\" name=\"Pair kerning\">Pair kerning</link>"
-msgstr "<link href=\"text/shared/00/00000005.xhp#kerning\" name=\"Định chỗ cặp\">Định chỗ cặp</link>"
+msgid "Lists the user-defined styles that are attached to the current document."
+msgstr "Liệt kê các kiểu dáng đã xác định sẵn thuộc về tài liệu hiện tại."
-#: 05020500.xhp
+#: 05150101.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3148616\n"
-"28\n"
+"05150101.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/pairkerning\">Automatically adjust the character spacing for specific letter combinations.</ahelp>"
-msgstr ""
+msgid "Add AutoFormat"
+msgstr "Thêm Tự động Định dạng"
-#: 05020500.xhp
+#: 05150101.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3150010\n"
-"29\n"
+"05150101.xhp\n"
+"hd_id3154841\n"
+"1\n"
"help.text"
-msgid "Kerning is only available for certain font types and requires that your printer support this option."
-msgstr "Chức năng định chỗ chỉ sẵn sàng cho một số kiểu phông nào đó, cũng cần thiết máy in hỗ trợ."
+msgid "Add AutoFormat"
+msgstr "Thêm Tự động Định dạng"
-#: 05320000.xhp
+#: 05150101.xhp
msgctxt ""
-"05320000.xhp\n"
-"tit\n"
+"05150101.xhp\n"
+"hd_id3154812\n"
+"2\n"
"help.text"
-msgid "Text Animation"
-msgstr "Hoạt họa Văn bản"
+msgid "Name"
+msgstr "Tên"
-#: 05320000.xhp
+#: 05150101.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3150014\n"
-"1\n"
+"05150101.xhp\n"
+"par_id3153391\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05320000.xhp\" name=\"Text Animation\">Text Animation</link>"
-msgstr "<link href=\"text/shared/01/05320000.xhp\" name=\"Hoạt họa Văn bản\">Hoạt họa Văn bản</link>"
+msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SW:EDIT:DLG_SWDLG_STRINPUT:ED_INPUT\">Nhập tên cho Tự động Định dạng mới, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
-#: 05320000.xhp
+#: 05190000.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3154788\n"
-"2\n"
+"05190000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TABPAGE:RID_SVXPAGE_TEXTANIMATION\">Adds an animation effect to the text in the selected drawing object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TABPAGE:RID_SVXPAGE_TEXTANIMATION\">Thêm một hiệu ứng hoạt họa vào văn bản trên đối tượng vẽ đã chọn.</ahelp>"
+msgid "Name"
+msgstr "Tên"
-#: 05320000.xhp
+#: 05190000.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3152821\n"
-"4\n"
+"05190000.xhp\n"
+"bm_id3147366\n"
"help.text"
-msgid "Text animation effects"
-msgstr "Hiệu ứng hoạt họa văn bản"
+msgid "<bookmark_value>objects; naming</bookmark_value><bookmark_value>groups;naming</bookmark_value><bookmark_value>names;objects</bookmark_value>"
+msgstr "<bookmark_value>đối tượng; đặt tên</bookmark_value><bookmark_value>nhóm;đặt tên</bookmark_value><bookmark_value>tên;đối tượng</bookmark_value>"
-#: 05320000.xhp
+#: 05190000.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3144436\n"
-"15\n"
+"05190000.xhp\n"
+"hd_id3147366\n"
+"1\n"
"help.text"
-msgid "Select the effect that you want to apply, and then set the properties of the effect."
-msgstr "Chọn hiệu ứng bạn muốn áp dụng, sau đó đặt các thuộc tính về hiệu ứng."
+msgid "Name"
+msgstr "Tên"
-#: 05320000.xhp
+#: 05190000.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3158405\n"
-"5\n"
+"05190000.xhp\n"
+"par_id3147588\n"
+"2\n"
"help.text"
-msgid "Effects"
-msgstr "Hiệu ứng"
+msgid "<variable id=\"name\"><ahelp hid=\".uno:RenameObject\">Assigns a name to the selected object, so that you can quickly find the object in the Navigator.</ahelp></variable>"
+msgstr "<variable id=\"name\"><ahelp hid=\".uno:RenameObject\">Gán tên cho đối tượng đã chọn, để bạn tìm nhanh đối tượng trong Bộ điều hướng.</ahelp></variable>"
-#: 05320000.xhp
+#: 05190000.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3149999\n"
-"16\n"
+"05190000.xhp\n"
+"par_id3155364\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TEXTANIMATION:LB_EFFECT\">Select the animation effect that you want to apply to the text in the selected drawing object. To remove an animation effect, select <emph>No Effect</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TEXTANIMATION:LB_EFFECT\">Chọn hiệu ứng hoạt họa bạn muốn áp dụng cho văn bản trên đối tượng vẽ đã chọn. Để gỡ bỏ một hiệu ứng hoạt họa, bật tùy chọn <emph>Không có hiệu ứng</emph>.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>The name is also displayed in the Status Bar when you select the object.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Tên cũng được hiển thị trên thanh <emph>Trạng thái</emph> khi bạn chọn đối tượng.</defaultinline></switchinline>"
-#: 05320000.xhp
+#: 05190000.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3153114\n"
-"6\n"
+"05190000.xhp\n"
+"hd_id3156027\n"
+"3\n"
"help.text"
-msgid "To the Left"
-msgstr "Sang trái"
+msgid "Name"
+msgstr "Tên"
-#: 05320000.xhp
+#: 05190000.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3152867\n"
-"18\n"
+"05190000.xhp\n"
+"par_id3152924\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_LEFT\">Scrolls text from right to left.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_LEFT\">Cuộn văn bản từ bên phải sang trái.</ahelp>"
+msgid "<ahelp hid=\"HID_SD_NAMEDIALOG_OBJECT\">Enter a name for the selected object. The name will be visible in the Navigator.</ahelp>"
+msgstr "<ahelp hid=\"HID_SD_NAMEDIALOG_OBJECT\">Nhập tên cho đối tượng đã chọn. Tên này cũng hiển thị trong Bộ điều hướng.</ahelp>"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3149750\n"
+"05190100.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3150774\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150774\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150774\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150774\">Biểu tượng</alt></image>"
+msgid "Description"
+msgstr "Mô tả"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3155941\n"
-"19\n"
+"05190100.xhp\n"
+"bm_id3147366\n"
"help.text"
-msgid "Left arrow"
-msgstr "Mũi tên trái"
+msgid "<bookmark_value>objects;titles and descriptions</bookmark_value> <bookmark_value>descriptions for objects</bookmark_value> <bookmark_value>titles;objects</bookmark_value>"
+msgstr "<bookmark_value>đối tượng;tựa đề và mô tả</bookmark_value><bookmark_value>mô tả cho đối tượng</bookmark_value><bookmark_value>tựa đề;đối tượng</bookmark_value>"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3147010\n"
-"20\n"
+"05190100.xhp\n"
+"hd_id1115756\n"
"help.text"
-msgid "To the Right"
-msgstr "Sang phải"
+msgid "Description"
+msgstr "Mô tả"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3143267\n"
-"21\n"
+"05190100.xhp\n"
+"par_id3140354\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_RIGHT\">Scrolls text from left to right.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_RIGHT\">Cuộn văn bản từ bên trái sang phải.</ahelp>"
+msgid "<ahelp hid=\".\">Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Gán cho đối tượng đã chọn một tựa đề và một mô tả. Hai đồ thông tin này được cung cấp cho công cụ khả năng truy cập, và được hiển thị dạng thẻ xen kẽ khi bạn xuất khẩu tài liệu.</ahelp>"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3109847\n"
+"05190100.xhp\n"
+"hd_id2576982\n"
"help.text"
-msgid "<image id=\"img_id3149235\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149235\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149235\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149235\">Biểu tượng</alt></image>"
+msgid "Title"
+msgstr "Tựa đề"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3149276\n"
-"22\n"
+"05190100.xhp\n"
+"par_id1283608\n"
"help.text"
-msgid "Right arrow"
-msgstr "Mũi tên phải"
+msgid "<ahelp hid=\".\">Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập chuỗi là tựa đề. Tên ngắn này hiển thị dạng thẻ xen kẽ theo định dạng HTML. Công cụ khả năng truy cập cũng có thể đọc thông tin này.</ahelp>"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3155323\n"
-"23\n"
+"05190100.xhp\n"
+"hd_id8173467\n"
"help.text"
-msgid "To the Top"
-msgstr "Lên trên"
+msgid "Description"
+msgstr "Mô tả"
-#: 05320000.xhp
+#: 05190100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3145416\n"
-"24\n"
+"05190100.xhp\n"
+"par_id693685\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_UP\">Scrolls text from bottom to top.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_UP\">Cuộn văn bản từ bên dưới lên trên.</ahelp>"
+msgid "<ahelp hid=\".\">Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập chuỗi diễn tả. Chuỗi diễn tả chi tiết có thể được nhập vào để diễn tả đối tượng phức tạp hay nhóm đối tượng cho người dùng phần mềm đọc màn hình. Mô tả này cũng được hiển thị dạng thẻ xen kẽ cho công cụ khả năng truy cập.</ahelp>"
-#: 05320000.xhp
+#: 05200000.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3146773\n"
+"05200000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3149795\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3149795\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149795\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3149795\">Biểu tượng</alt></image>"
+msgid "Line"
+msgstr "Đường"
-#: 05320000.xhp
+#: 05200000.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3155420\n"
-"25\n"
+"05200000.xhp\n"
+"hd_id3154350\n"
+"1\n"
"help.text"
-msgid "Up arrow"
-msgstr "Mũi tên lên"
+msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Đường\">Đường</link>"
-#: 05320000.xhp
+#: 05200000.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3153717\n"
-"26\n"
+"05200000.xhp\n"
+"par_id3147588\n"
+"2\n"
"help.text"
-msgid "To the Bottom"
-msgstr "Xuống dưới"
+msgid "<variable id=\"linietext\"><ahelp hid=\".uno:FormatLine\">Sets the formatting options for the selected line.</ahelp></variable>"
+msgstr "<variable id=\"linietext\"><ahelp hid=\".uno:FormatLine\">Đặt các tùy chọn định dạng cho đường đã chọn.</ahelp></variable>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3155388\n"
-"27\n"
+"05200100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_DOWN\">Scrolls text from top to bottom.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_DOWN\">Cuộn văn bản từ bên trên xuống dưới.</ahelp>"
+msgid "Line"
+msgstr "Đường"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3145085\n"
+"05200100.xhp\n"
+"hd_id3148882\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3152472\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3152472\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152472\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3152472\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line\">Line</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Đường\">Đường</link>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3148947\n"
-"28\n"
+"05200100.xhp\n"
+"par_id3153272\n"
+"2\n"
"help.text"
-msgid "Down arrow"
-msgstr "Mũi tên dưới"
+msgid "<ahelp hid=\"HID_LINE_LINE\">Set the formatting options for the selected line or the line that you want to draw. You can also add arrowheads to a line, or change chart symbols.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINE_LINE\">Đặt các tùy chọn định dạng cho đường đã chọn, hay đường bạn muốn vẽ. Bạn cũng có thể thêm vào đường một hai mũi tên đầu, hoặc thay đổi các ký hiệu đồ thị.</ahelp>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3152361\n"
-"45\n"
+"05200100.xhp\n"
+"hd_id3147000\n"
+"3\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "Line properties"
+msgstr "Thuộc tính Đường"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3156434\n"
-"7\n"
+"05200100.xhp\n"
+"hd_id3148983\n"
+"5\n"
"help.text"
-msgid "Start Inside"
-msgstr "Bắt đầu bên trong"
+msgid "Styles"
+msgstr "Kiểu dáng"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3150866\n"
-"29\n"
+"05200100.xhp\n"
+"par_id3147143\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_START_INSIDE\">Text is visible and inside the drawing object when the effect is applied.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_START_INSIDE\">Văn bản hiện rõ và nằm bên trong đối tượng vẽ khi hiệu ứng được áp dụng.</ahelp>"
+msgid "<variable id=\"stiltext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_LINE_STYLE\">Select the line style that you want to use.</ahelp></variable>"
+msgstr "<variable id=\"stiltext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_LINE_STYLE\">Chọn kiểu dáng đường cần dùng.</ahelp></variable>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3150359\n"
-"8\n"
+"05200100.xhp\n"
+"hd_id3150789\n"
+"7\n"
"help.text"
-msgid "Text visible when exiting"
-msgstr "Văn bản hiển thị khi thoát ra"
+msgid "Colors"
+msgstr "Màu sắc"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3154938\n"
-"31\n"
+"05200100.xhp\n"
+"par_id3147226\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_STOP_INSIDE\">Text remains visible after the effect is applied.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_STOP_INSIDE\">Văn bản còn lại hiện rõ sau khi áp dụng hiệu ứng.</ahelp>"
+msgid "<variable id=\"farbetext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_COLOR\">Select a color for the line.</ahelp></variable>"
+msgstr "<variable id=\"farbetext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_COLOR\">Chọn màu cho đường.</ahelp></variable>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3155738\n"
+"05200100.xhp\n"
+"hd_id3159234\n"
"9\n"
"help.text"
-msgid "Animation effects"
-msgstr "Hiệu ứng hoạt họa"
+msgid "Widths"
+msgstr "Rộng"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3149291\n"
-"33\n"
+"05200100.xhp\n"
+"par_id3150774\n"
+"10\n"
"help.text"
-msgid "Set the looping options for the animation effect."
-msgstr "Đặt các thuộc tính về chức năng vòng lặp cho hiệu ứng hoạt họa."
+msgid "<variable id=\"breitetext\"><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH\">Select the width for the line. You can append a measurement unit. A zero line width results in a hairline with a width of one pixel of the output medium.</ahelp></variable>"
+msgstr "<variable id=\"breitetext\"><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH\">Chọn bề rộng của đường. Bạn cũng có thể phụ thêm đơn vị đo. Bề rộng đường số không có kết quả là nét hất lên có bề rộng một điểm ảnh theo phương tiện xuất.</ahelp></variable>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3145744\n"
-"10\n"
+"05200100.xhp\n"
+"hd_id3153681\n"
+"11\n"
"help.text"
-msgid "Continuous"
-msgstr "Liên tục"
+msgid "Transparency"
+msgstr "Trong suốt"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3145318\n"
-"34\n"
+"05200100.xhp\n"
+"par_id3156346\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_ENDLESS\">Plays the animation effect continuously. To specify the number of times to play the effect, clear this checkbox, and enter a number in the <emph>Continuous</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_ENDLESS\">Chạy liên tục hiệu ứng hoạt động. Để ghi rõ số lần cần chạy hiệu ứng, tắt tùy chọn này, sau đó nhập vào hộp <emph>Liên tục</emph> một con số.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT\">Enter the transparency of the line, where 100% corresponds to completely transparent and 0% to completely opaque. </ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT\">Nhập tính trong suốt của đường, mà 100% tương ứng với trong suốt hoàn toàn, và 0% là đục hoàn toàn.</ahelp>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3153192\n"
-"39\n"
+"05200100.xhp\n"
+"par_id3152996\n"
+"33\n"
"help.text"
-msgid "Continuous box"
-msgstr "Hộp Liên tục"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The <emph>Line</emph> tab of the <emph>Data Series</emph> dialog is only available if you select an XY <emph>Chart type</emph>.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Thẻ <emph>Đường</emph> của hộp thoại <emph>Dãy dữ liệu</emph> chỉ sẵn sàng nếu bạn chọn <emph>Kiểu đồ thị</emph> « XY ».</defaultinline></switchinline>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3154068\n"
-"40\n"
+"05200100.xhp\n"
+"hd_id3153331\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_TEXTANIMATION:NUM_FLD_COUNT\">Enter the number of times that you want the animation effect to repeat.</ahelp>"
-msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_TEXTANIMATION:NUM_FLD_COUNT\">Nhập số lần bạn muốn lặp lại hiệu ứng hoạt họa.</ahelp>"
+msgid "Icon"
+msgstr "Biểu tượng"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3154908\n"
-"13\n"
+"05200100.xhp\n"
+"par_id3149955\n"
+"24\n"
"help.text"
-msgid "Increment"
-msgstr "Bước"
+msgid "Set the options for the data point symbols in your chart."
+msgstr "Đặt các tùy chọn về những ký hiệu điểm dữ liệu trên đồ thị."
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3151177\n"
-"37\n"
+"05200100.xhp\n"
+"hd_id3158430\n"
+"25\n"
"help.text"
-msgid "Specify the increment value for scrolling the text."
-msgstr "Ghi rõ giá trị tăng/giảm dần để cuộn văn bản."
+msgid "Select"
+msgstr "Chọn"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3150870\n"
-"14\n"
+"05200100.xhp\n"
+"par_id3152944\n"
+"26\n"
"help.text"
-msgid "Pixels"
-msgstr "Điểm ảnh"
+msgid "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP\">Select the symbol style that you want to use in your chart.</ahelp> If you select <emph>Automatic</emph>, $[officename] uses the default symbols for the selected chart type."
+msgstr "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP\">Chọn kiểu dáng ký hiệu bạn muốn dùng trên đồ thị.</ahelp> Chọn mục <emph>Tự động</emph>, thì $[officename] dùng các ký hiệu mặc định cho kiểu đồ thị đã chọn."
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3150447\n"
-"38\n"
+"05200100.xhp\n"
+"hd_id3154381\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_PIXEL\">Measures increment value in pixels.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_PIXEL\">Đo giá trị tăng/giảm dần theo điểm ảnh.</ahelp>"
+msgid "Width"
+msgstr "Bề rộng"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3149766\n"
-"43\n"
+"05200100.xhp\n"
+"par_id3150976\n"
+"28\n"
"help.text"
-msgid "Increment box"
-msgstr "Hộp Tăng/giảm dần"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH\">Enter a width for the symbol.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH\">Nhập chiều rộng cho ký hiệu.</ahelp>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3150495\n"
-"44\n"
+"05200100.xhp\n"
+"hd_id3149166\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_AMOUNT\">Enter the number of increments by which to scroll the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_AMOUNT\">Nhập hệ số tăng/giảm dần theo đó cần cuộn văn bản.</ahelp>"
+msgid "Height"
+msgstr "Bề cao"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3158409\n"
-"11\n"
+"05200100.xhp\n"
+"par_id3155179\n"
+"30\n"
"help.text"
-msgid "Delay"
-msgstr "Trễ"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT\">Enter a height for the symbol.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT\">Nhập chiều cao cho ký hiệu.</ahelp>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3148560\n"
-"35\n"
+"05200100.xhp\n"
+"hd_id3147620\n"
+"31\n"
"help.text"
-msgid "Specify the amount time to wait before repeating the effect."
-msgstr "Ghi rõ khoảng đợi giữa hai lần làm hiệu ứng."
+msgid "Keep ratio"
+msgstr "Giữ tỷ lệ"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3153370\n"
-"12\n"
+"05200100.xhp\n"
+"par_id3156326\n"
+"32\n"
"help.text"
-msgid "Automatic"
-msgstr "Tự động"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO\">Maintains the proportions of the symbol when you enter a new height or width value.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO\">Bảo tồn tỷ lệ của ký hiệu khi bạn sửa đổi chiều cao/rộng.</ahelp>"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3150439\n"
-"36\n"
+"05200100.xhp\n"
+"hd_id3154579\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_AUTO\">$[officename] automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the<emph> Automatic</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_AUTO\">$[officename] tự động quyết định khoảng thời gian cần đợi trước khi lặp lại hiệu ứng. Để tự gán khoảng đợi, tắt tùy chọn này, sau đó nhập vào hộp <emph>Tự động</emph> một giá trị.</ahelp>"
+msgid "Arrow styles"
+msgstr "Kiểu mũi tên"
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"hd_id3155131\n"
-"41\n"
+"05200100.xhp\n"
+"par_id3161459\n"
+"14\n"
"help.text"
-msgid "Automatic box"
-msgstr "Hộp Tự động"
+msgid "You can add arrowheads to one end, or both ends of the selected line. To add a custom arrow style to the list, select the arrow in your document, and then click on the <link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\"><emph>Arrow Styles</emph></link> tab of this dialog."
+msgstr "Bạn có thể thêm mũi tên đầu vào một cuối, hay vào cả hai cuối của đường đã chọn. Để thêm vào danh sách một kiểu dáng mũi tên riêng, chọn mũi tên trong tài liệu, sau đó nhấn vào thẻ <link href=\"text/shared/01/05200300.xhp\" name=\"Kiểu dáng Mũi tên\"><emph>Kiểu dáng Mũi tên</emph></link> của hộp thoại."
-#: 05320000.xhp
+#: 05200100.xhp
msgctxt ""
-"05320000.xhp\n"
-"par_id3152791\n"
-"42\n"
+"05200100.xhp\n"
+"hd_id3147530\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_DELAY\">Enter the amount of time to wait before repeating the effect.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_DELAY\">Nhập khoảng thời gian cần đợi trước khi lặp lại hiệu ứng.</ahelp>"
+msgid "Style"
+msgstr "Kiểu dáng"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"tit\n"
+"05200100.xhp\n"
+"par_id3146794\n"
+"16\n"
"help.text"
-msgid "Bullets"
-msgstr "Chấm điểm"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_END_STYLE\">Select the arrowhead that you want to apply to the selected line.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_END_STYLE\">Chọn mũi tên đầu bạn muốn áp dụng cho đường đã chọn.</ahelp>"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"bm_id3150502\n"
+"05200100.xhp\n"
+"hd_id3149656\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>bullets;paragraphs</bookmark_value> <bookmark_value>paragraphs; inserting bullets</bookmark_value> <bookmark_value>inserting; paragraph bullets</bookmark_value>"
-msgstr "<bookmark_value>chấm điểm;đoạn văn</bookmark_value><bookmark_value>đoạn văn; chèn chấm điểm</bookmark_value><bookmark_value>chèn; chấm điểm đoạn văn</bookmark_value>"
+msgid "Width"
+msgstr "Bề rộng"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"hd_id3150502\n"
-"1\n"
+"05200100.xhp\n"
+"par_id3148755\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050100.xhp\" name=\"Bullets\">Bullets</link>"
-msgstr "<link href=\"text/shared/01/06050100.xhp\" name=\"Chấm điểm\">Chấm điểm</link>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH\">Enter a width for the arrowhead.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH\">Nhập chiều rộng cho mũi tên đầu.</ahelp>"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3155069\n"
-"2\n"
+"05200100.xhp\n"
+"hd_id3154935\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different bullet styles that you can apply.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị các kiểu dáng chấm điểm khác nhau mà bạn có thể áp dụng.</ahelp>"
+msgid "Center"
+msgstr "Giữa"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id0202200910514673\n"
+"05200100.xhp\n"
+"par_id3153526\n"
+"20\n"
"help.text"
-msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
-msgstr "Chấm điểm và đánh số cho đoạn văn chỉ có trong Writer, Impress and Draw"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_LINE:TSB_CENTER_END\">Places the center of the arrowhead(s) on the endpoint(s) of the selected line.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_LINE:TSB_CENTER_END\">Đặt điểm giữa của các mũi tên đầu vào các điểm cuối của đường đã chọn.</ahelp>"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"hd_id3153255\n"
-"3\n"
+"05200100.xhp\n"
+"hd_id3154072\n"
+"21\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "Synchronize ends"
+msgstr "Đồng bộ hoá hai cuối"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3155364\n"
-"4\n"
+"05200100.xhp\n"
+"par_id3154365\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_VALUESET_BULLET\">Click the bullet style that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"HID_VALUESET_BULLET\">Nhấn vào kiểu dáng chấm điểm bạn muốn dùng.</ahelp>"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE\">Automatically updates both arrowhead settings when you enter a different width, select a different arrowhead style,or center an arrowhead.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE\">Tự động cập nhật cả hai thiết lập mũi tên đầu khi bạn sửa đổi chiều rộng, chọn kiểu dáng mũi tên đầu khác, hoặc giữa lại mũi tên đầu.</ahelp>"
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3149549\n"
+"05200100.xhp\n"
+"hd_id3154580\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "Corner and cap styles"
+msgstr ""
-#: 06050100.xhp
+#: 05200100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3154317\n"
+"05200100.xhp\n"
+"hd_id3154582\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
+msgid "Corner style"
+msgstr ""
-#: 06040100.xhp
+#: 05200100.xhp
msgctxt ""
-"06040100.xhp\n"
-"tit\n"
+"05200100.xhp\n"
+"par_id3154583\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_EDGE_STYLE\">Select the shape to be used at the corners of the line. In case of a small angle between lines, a mitered shape is replaced with a beveled shape.</ahelp>"
+msgstr ""
-#: 06040100.xhp
+#: 05200100.xhp
msgctxt ""
-"06040100.xhp\n"
-"bm_id3155620\n"
+"05200100.xhp\n"
+"hd_id3154585\n"
"help.text"
-msgid "<bookmark_value>AutoCorrect function; options</bookmark_value> <bookmark_value>replacement options</bookmark_value> <bookmark_value>words; automatically replacing</bookmark_value> <bookmark_value>abbreviation replacement</bookmark_value> <bookmark_value>capital letters; AutoCorrect function</bookmark_value> <bookmark_value>bold; AutoFormat function</bookmark_value> <bookmark_value>underlining; AutoFormat function</bookmark_value> <bookmark_value>spaces; ignoring double</bookmark_value> <bookmark_value>numbering; using automatically</bookmark_value> <bookmark_value>paragraphs; numbering automatically</bookmark_value> <bookmark_value>tables in text; creating automatically</bookmark_value> <bookmark_value>titles; formatting automatically</bookmark_value> <bookmark_value>empty paragraph removal</bookmark_value> <bookmark_value>paragraphs; removing blank ones</bookmark_value> <bookmark_value>styles; replacing automatically</bookmark_value> <bookmark_value>user-defined styles; automatically replacing</bookmark_value> <bookmark_value>bullets; replacing</bookmark_value> <bookmark_value>paragraphs; joining</bookmark_value> <bookmark_value>joining; paragraphs</bookmark_value>"
-msgstr "<bookmark_value>chức năng Tự động Sửa lỗi; tùy chọn</bookmark_value><bookmark_value>tùy chọn thay thế</bookmark_value><bookmark_value>từ; tự động thay thế</bookmark_value><bookmark_value>thay thế từ viết tắt</bookmark_value><bookmark_value>chữ hoa; chức năng Tự động Sửa lỗi</bookmark_value><bookmark_value>in đậm; chức năng Tự động Định dạng</bookmark_value><bookmark_value>gạch dưới; chức năng Tự động Định dạng</bookmark_value><bookmark_value>thay thế 1/2</bookmark_value><bookmark_value>dấu cách; bỏ qua dấu cách đôi</bookmark_value><bookmark_value>đánh số; tự động dùng</bookmark_value><bookmark_value>đoạn văn; tự động đánh số</bookmark_value><bookmark_value>đánh số;đoạn văn</bookmark_value><bookmark_value>bảng trong văn bản; tự động tạo</bookmark_value><bookmark_value>tựa đề; tự động định dạng</bookmark_value><bookmark_value>gỡ bỏ đoạn văn rỗng</bookmark_value><bookmark_value>đoạn văn; gỡ bỏ cái trắng</bookmark_value><bookmark_value>kiểu dáng; tự động thay thế</bookmark_value><bookmark_value>kiểu dáng tự xác định; tự động thay thế</bookmark_value><bookmark_value>chấm điểm; thay thế</bookmark_value><bookmark_value>dấu nháy kép; thay thế</bookmark_value><bookmark_value>dấu nháy kép cong trong $[officename] Writer</bookmark_value><bookmark_value>đoạn văn; nối lại</bookmark_value><bookmark_value>nối lại; đoạn văn</bookmark_value>"
+msgid "Cap style"
+msgstr ""
-#: 06040100.xhp
+#: 05200100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3155620\n"
-"1\n"
+"05200100.xhp\n"
+"par_id3154586\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040100.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/shared/01/06040100.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_CAP_STYLE\">Select the style of the line end caps. The caps are added to inner dashes as well.</ahelp>"
+msgstr ""
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146946\n"
-"2\n"
+"05200200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFAPAGE_AUTOFORMAT_CLB\">Select the options for automatically correcting errors as you type, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_OFAPAGE_AUTOFORMAT_CLB\">Đặt các tùy chọn về chức năng tự động sửa chữa lỗi trong khi gõ, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
+msgid "Line Styles"
+msgstr "Kiểu dáng Đường"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153124\n"
-"32\n"
+"05200200.xhp\n"
+"hd_id3148919\n"
+"1\n"
"help.text"
-msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "Trong tài liệu văn bản, bạn có thể tự động sửa lỗi trong khi gõ [T], hoặc chỉ khi bạn sửa đổi văn bản đã có [M], dùng lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng</emph>."
+msgid "<link href=\"text/shared/01/05200200.xhp\" name=\"Line Styles\">Line Styles</link>"
+msgstr "<link href=\"text/shared/01/05200200.xhp\" name=\"Kiểu dáng Đường\">Kiểu dáng Đường</link>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id7547227\n"
+"05200200.xhp\n"
+"par_id3150146\n"
+"2\n"
"help.text"
-msgid "When you choose to modify existing text with all options deselected, still all \"Default\" paragraph styles will be converted to \"Text body\" styles."
-msgstr "Khi bạn chọn sửa đổi văn bản đã tồn tại với tất cả các tùy chọn bị tắt, tất cả các kiểu dáng đoạn văn « Mặc định » sẽ vẫn còn được chuyển đổi sang kiểu dáng « Thân văn bản »."
+msgid "<ahelp hid=\"HID_LINE_DEF\">Edit or create dashed or dotted line styles.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINE_DEF\">Chỉnh sửa hay tạo các kiểu dáng đường chấm chấm hay gạch gạch.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3154398\n"
+"05200200.xhp\n"
+"hd_id3147617\n"
"3\n"
"help.text"
-msgid "Use replacement table"
-msgstr "Dùng bảng thay thế"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3151234\n"
-"4\n"
+"05200200.xhp\n"
+"hd_id3146873\n"
+"15\n"
"help.text"
-msgid "If you type a letter combination that matches a shortcut in the <link href=\"text/shared/01/06040200.xhp\" name=\"replacement table\">replacement table</link>, the letter combination is replaced with the replacement text."
-msgstr "Nếu bạn gõ một tổ hợp chữ mà tương ứng với một lối tắt trong <link href=\"text/shared/01/06040200.xhp\" name=\"bảng thay thế\">bảng thay thế</link>, tổ hợp chữ được thay thế bằng chuỗi định sẵn."
+msgid "Line style"
+msgstr "Kiểu dáng Đường"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3150144\n"
+"05200200.xhp\n"
+"par_id3146807\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES\">Select the style of line that you want to create.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES\">Chọn kiểu đường bạn muốn tạo.</ahelp>"
+
+#: 05200200.xhp
+msgctxt ""
+"05200200.xhp\n"
+"hd_id3149948\n"
"5\n"
"help.text"
-msgid "Correct TWo INitial CApitals"
-msgstr "Sửa HAi CHữ HOa ĐÂu TIên"
+msgid "Type"
+msgstr "Kiểu"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3149177\n"
+"05200200.xhp\n"
+"par_id3149031\n"
"6\n"
"help.text"
-msgid "If you type two uppercase letters at the beginning of a \"WOrd\", the second uppercase letter is automatically replaced with a lowercase letter."
-msgstr "Nếu bạn gõ hai chữ hoa ở đầu của từ, chữ hoa thứ hai được tự động thay thế bằng chữ thường. (Chương trình giả sử bạn đã gõ sai.)"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2\">Select the combination of dashes and dots that you want.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2\">Chọn tổ hợp các dấu chấm và dấu gạch thích hợp.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3156426\n"
+"05200200.xhp\n"
+"hd_id3148731\n"
"7\n"
"help.text"
-msgid "Capitalize first letter of every sentence."
-msgstr "Viết hoa chữ đầu của mỗi câu"
+msgid "Number"
+msgstr "Số"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3155339\n"
+"05200200.xhp\n"
+"par_id3155351\n"
"8\n"
"help.text"
-msgid "Capitalizes the first letter of every sentence."
-msgstr "Chức năng này thì viết hoa từ đầu của mỗi câu."
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id5240028\n"
-"help.text"
-msgid "The first letter in a Calc cell will never be capitalized automatically."
-msgstr "Tuy nhiên, chữ đầu trong ô bảng Calc sẽ không bao giờ được tự động viết hoa."
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"hd_id3145072\n"
-"24\n"
-"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Tự động in *đậm* và _gạch dưới_"
+msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2\">Enter the number of times that you want a dot or a dash to appear in a sequence.</ahelp>"
+msgstr "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2\">Nhập số lần bạn muốn thấy dấu chấm hay gạch trong mỗi dãy.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153577\n"
-"26\n"
+"05200200.xhp\n"
+"hd_id3154422\n"
+"9\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Tự động áp dụng định dạng in đậm cho văn bản nằm giữa hai dấu sao, và áp dụng định dạng gạch dưới cho văn bản nằm giữa hai dấu gạch dưới. (Các dấu sao và dấu gạch dưới này không được hiển thị sau khi định dạng như thế.)"
+msgid "Length"
+msgstr "Bề dài"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153127\n"
-"105\n"
+"05200200.xhp\n"
+"par_id3149640\n"
+"10\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Tuy nhiên, tính năng này không có tác động khi ký tự định dạng dấu sao hay dấu gạch dưới được nhập vào dùng <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Bộ Sửa Cách Nhập\">Bộ Sửa Cách Nhập</link> (v.d. VietIME \"http://vietime.sourceforge.net/usage.html\")."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2\">Enter the length of the dash.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2\">Nhập chiều dài của dấu gạch.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3150275\n"
-"17\n"
+"05200200.xhp\n"
+"hd_id3093440\n"
+"11\n"
"help.text"
-msgid "URL Recognition"
-msgstr "Nhận ra URL"
+msgid "Spacing"
+msgstr "Giãn cách"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3158430\n"
-"18\n"
+"05200200.xhp\n"
+"par_id3147834\n"
+"12\n"
"help.text"
-msgid "Automatically creates a hyperlink when you type a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>."
-msgstr "Tự động tạo siêu liên kết khi bạn gõ một địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between dots or dashes.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE\">Nhập khoảng cách bạn muốn để lại giữa hai dấu chấm hay hai dấu gạch.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3148473\n"
-"19\n"
+"05200200.xhp\n"
+"hd_id3155805\n"
+"13\n"
"help.text"
-msgid "Replace Dashes"
-msgstr "Thay các dấu gạch"
+msgid "Fit to line width"
+msgstr "Vừa bề rộng đường"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3144439\n"
-"20\n"
+"05200200.xhp\n"
+"par_id3147291\n"
+"14\n"
"help.text"
-msgid "Replaces one or two hyphens with a long dash (see the following table)."
-msgstr "Thay thế một hay hai dấu gạch nối bằng dấu gạch dài (xem bảng theo sau)."
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE\">Automatically adjusts the entries relative to the length of the line.</ahelp>"
+msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE\">Tự động điều chỉnh các mục nhập tương đối so với chiều dài của đường.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id87282\n"
+"05200200.xhp\n"
+"hd_id3155355\n"
+"17\n"
"help.text"
-msgid "Text will be replaced after you type a trailing white space (space, tab, or return). In the following table, the A and B represent text consisting of letters A to z or digits 0 to 9."
-msgstr "Văn bản sẽ được thay thế sau khi bạn gõ một ký tự khoảng trắng theo sau (bấm phím dài, Tab hay Return). Trên bảng theo đây, A và B đại diện văn bản chứa chữ cái từ A đến z hay chữ số từ 0 đến 9."
+msgid "Add"
+msgstr "Thêm"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3408612\n"
+"05200200.xhp\n"
+"par_id3149827\n"
+"18\n"
"help.text"
-msgid "Text that you type:"
-msgstr "Ký tự bạn gõ :"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD\">Creates a new line style using the current settings.</ahelp>"
+msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD\">Tạo một kiểu dáng đường mới dựa vào thiết lập hiện thời.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id4362010\n"
+"05200200.xhp\n"
+"hd_id3155338\n"
+"19\n"
"help.text"
-msgid "Result that you get:"
-msgstr "Kết quả:"
+msgid "Name"
+msgstr "Tên"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1432844\n"
+"05200200.xhp\n"
+"par_id3153681\n"
+"20\n"
"help.text"
-msgid "A - B (A, space, minus, space, B)"
-msgstr "A - B (A, dấu cách, dấu trừ, dấu cách, B)"
+msgid "<ahelp hid=\"\">Enter a name.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập điều kiện.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id7553941\n"
+"05200200.xhp\n"
+"hd_id3155893\n"
+"21\n"
"help.text"
-msgid "A – B (A, space, en-dash, space, B)"
-msgstr "A – B (A, dấu cách, dấu gạch ngắn, dấu cách, B)"
+msgid "Modify"
+msgstr "Sửa"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1421246\n"
+"05200200.xhp\n"
+"par_id3157863\n"
+"22\n"
"help.text"
-msgid "A -- B (A, space, minus, minus, space, B)"
-msgstr "A -- B (A, dấu cách, dấu trừ, dấu trừ, dấu cách, B)"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY\">Updates the selected line style using the current settings. To change the name of the selected line style, enter a new name when prompted.</ahelp>"
+msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY\">Cập nhật kiểu dáng đường đã chọn, dùng thiết lập hiện thời. Để thay đổi tên của kiểu dáng đường đã chọn, nhập tên mới khi chương trình nhắc.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id2305673\n"
+"05200200.xhp\n"
+"hd_id3147275\n"
+"23\n"
"help.text"
-msgid "A – B (A, space, en-dash, space, B)"
-msgstr "A – B (A, dấu cách, dấu gạch ngắn, dấu cách, B)"
+msgid "Load line style table"
+msgstr "Nạp bảng kiểu dáng đường"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id8703573\n"
+"05200200.xhp\n"
+"par_id3154749\n"
+"24\n"
"help.text"
-msgid "A--B (A, minus, minus, B)"
-msgstr "A--B (A, dấu trừ, dấu trừ, B)"
+msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD\">Imports a list of line styles.</ahelp>"
+msgstr "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD\">Nhập khẩu danh sách các kiểu dáng đường.</ahelp>"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id6049684\n"
+"05200200.xhp\n"
+"hd_id3148642\n"
+"25\n"
"help.text"
-msgid "A—B (A, em-dash, B)<br/>(see note below the table)"
-msgstr "A—B (A, dấu gạch ngắn, B)<br/>(xem ghi chú bên dưới bảng)"
+msgid "Save line style table"
+msgstr "Lưu bảng kiểu dáng đường"
-#: 06040100.xhp
+#: 05200200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id2219916\n"
+"05200200.xhp\n"
+"par_id3155449\n"
+"26\n"
"help.text"
-msgid "A-B (A, minus, B)"
-msgstr "A-B (A, dấu trừ, B)"
+msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE\">Saves the current list of line styles, so that you can load it again later.</ahelp>"
+msgstr "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE\">Lưu lại danh sách các kiểu dáng đường hiện thời, để bạn có thể nạp lại sau.</ahelp>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1868037\n"
+"05200300.xhp\n"
+"tit\n"
"help.text"
-msgid "A-B (unchanged)"
-msgstr "A-B (chưa thay đổi)"
+msgid "Arrow Styles"
+msgstr "Kiểu dáng Mũi tên"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id714438\n"
+"05200300.xhp\n"
+"hd_id3156045\n"
+"1\n"
"help.text"
-msgid "A -B (A, space, minus, B)"
-msgstr "A -B (A, dấu cách, dấu trừ, B)"
+msgid "<link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\">Arrow Styles</link>"
+msgstr "<link href=\"text/shared/01/05200300.xhp\" name=\"Kiểu dáng Mũi tên\">Kiểu dáng Mũi tên</link>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3924985\n"
+"05200300.xhp\n"
+"par_id3149031\n"
+"2\n"
"help.text"
-msgid "A -B (unchanged)"
-msgstr "A -B (chưa thay đổi)"
+msgid "<ahelp hid=\"HID_LINE_ENDDEF\">Edit or create arrow styles.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINE_ENDDEF\">Chỉnh sửa hay tạo các kiểu dáng mũi tên.</ahelp>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1486861\n"
+"05200300.xhp\n"
+"hd_id3153551\n"
+"5\n"
"help.text"
-msgid "A --B (A, space, minus, minus, B)"
-msgstr "A --B (A, dấu cách, dấu trừ, dấu trừ, B)"
+msgid "Organize arrow styles"
+msgstr "Tổ chức kiểu dáng mũi tên"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id844141\n"
+"05200300.xhp\n"
+"par_id3154398\n"
+"6\n"
"help.text"
-msgid "A –B (A, space, en-dash, B)"
-msgstr "A –B (A, dấu cách, dấu gạch ngắn, B)"
+msgid "Lets you organize the current list of arrow styles."
+msgstr "Cho phép bạn tổ chức danh sách các kiểu dáng mũi tên hiện thời."
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1416974\n"
+"05200300.xhp\n"
+"hd_id3155552\n"
+"7\n"
"help.text"
-msgid "If the text has the Hungarian or Finnish language attribute, then two hyphens in the sequence A--B are replaced by an en-dash instead of an em-dash."
-msgstr "Nếu văn bản có thuộc tính ngôn ngữ tiếng Hun-ga-ri hay Phần Lan thì hai dấu nối từ trong dãy « A--B » được thay thế bằng một dấu gạch ngắn, thay cho một dấu gạch dài."
+msgid "Title"
+msgstr "Tựa đề"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3152472\n"
-"99\n"
+"05200300.xhp\n"
+"par_id3147399\n"
+"8\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete spaces and tabs at beginning and end of paragraph</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Xoá các dấu cách và/hay khoảng cách Tab ở đầu hay cuối đoạn văn </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_LINEEND_DEF:EDT_NAME\">Displays the name of the selected arrow style.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_LINEEND_DEF:EDT_NAME\">Hiển thị tên của kiểu dáng mũi tên đã chọn.</ahelp>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3156024\n"
-"100\n"
+"05200300.xhp\n"
+"hd_id3155892\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of a paragraph. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gỡ bỏ khoảng trắng ở đầu hay cuối đoạn văn. Để sử dụng tùy chọn này, cũng cần bật tùy chọn <emph>Áp dụng kiểu dáng</emph>. </caseinline></switchinline>"
+msgid "Arrow style"
+msgstr "Kiểu dáng mũi tên"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3147303\n"
-"101\n"
+"05200300.xhp\n"
+"par_id3149827\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete blanks and tabs at end and start of lines</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Xoá dấu cách và/hay khoảng cách Tab ở đầu hay cuối dòng. </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS\">Choose a predefined arrow style symbol from the list box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS\">Trong hộp liệt kê, chọn một ký hiệu kiểu dáng mũi tên đã xác định sẵn.</ahelp>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3150866\n"
-"102\n"
+"05200300.xhp\n"
+"hd_id3145313\n"
+"11\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of each line. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gỡ bỏ khoảng trắng ở đầu hay cuối dòng. Để sử dụng tùy chọn này, cũng cần bật tùy chọn <emph>Áp dụng kiểu dáng</emph>. </caseinline></switchinline>"
+msgid "Add"
+msgstr "Thêm"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3150400\n"
-"28\n"
+"05200300.xhp\n"
+"par_id3154288\n"
+"12\n"
"help.text"
-msgid "Ignore double spaces"
-msgstr "Bỏ qua dấu cách đôi"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_ADD\">To define a custom arrow style, select a drawing object in the document, and then click here.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_ADD\">Để xác định một kiểu dáng mũi tên riêng, chọn một đối tượng vẽ trong tài liệu, sau đó nhấn vào đây.</ahelp>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154938\n"
-"29\n"
+"05200300.xhp\n"
+"hd_id3156346\n"
+"13\n"
"help.text"
-msgid "Replaces two or more consecutive spaces with a single space."
-msgstr "Thay thế hai hoặc hơn nữa dấu cách liên tiếp bằng một dấu cách riêng lẻ."
+msgid "Modify"
+msgstr "Sửa"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3145116\n"
-"33\n"
+"05200300.xhp\n"
+"par_id3154897\n"
+"14\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply numbering - symbol</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Áp dụng đánh số — ký hiệu </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY\">Changes the name of the selected arrow style.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY\">Thay đổi tên của kiểu dáng mũi tên đã chọn.</ahelp>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3150870\n"
-"34\n"
+"05200300.xhp\n"
+"hd_id3153332\n"
+"15\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically creates a numbered list when you press Enter at the end of a line that starts with a number followed by a period, a space, and text. If a line starts with a hyphen (-), a plus sign (+), or an asterisk (*), followed by a space, and text, a bulleted list is created when you press Enter.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động tạo một danh sách đánh số khi bạn bấm phím <item type=\"keycode\">Enter</item> ở kết thúc dòng mà bắt đầu với một con số, dấu chấm, dấu cách và văn bản theo thứ tự đó. Nếu dòng bắt đầu với dấu gạch nối từ (-), dấu cộng (+) hay dấu sao (*), rồi dấu chấm và văn bản, hành động bấm phím <item type=\"keycode\">Enter</item> sẽ tạo một danh sách chấm điểm thay vào đó.</caseinline></switchinline>"
+msgid "Load Arrow Styles"
+msgstr "Nạp Kiểu dáng Mũi tên"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146874\n"
-"92\n"
+"05200300.xhp\n"
+"par_id3146137\n"
+"16\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To cancel automatic numbering when you press Enter at the end of a line that starts with a numbering symbol, press Enter again.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để thôi chức năng tự động đánh số đáp ứng khi bạn bấm phím <item type=\"keycode\">Enter</item> ở kết thúc dòng bắt đầu với ký hiệu đánh số, bấm phím <item type=\"keycode\">Enter</item> lần nữa.</caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD\">Imports a list of arrow styles.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD\">Nhập khẩu danh sách các kiểu dáng mũi tên.</ahelp>"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3145606\n"
-"77\n"
+"05200300.xhp\n"
+"hd_id3158432\n"
+"17\n"
"help.text"
-msgid "The automatic numbering option is only applied to paragraphs that are formatted with the \"Default\", \"Text body\", or \"Text body indent\" paragraph style."
-msgstr "Tùy chọn tự động đánh số chỉ được áp dụng cho đoạn văn được định dạng theo kiểu dáng đoạn văn « Mặc định », « Thân văn bản » hay « Thụt lề thân văn bản »."
+msgid "Save Arrow Styles"
+msgstr "Lưu Kiểu dáng Mũi tên"
-#: 06040100.xhp
+#: 05200300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3157962\n"
-"35\n"
+"05200300.xhp\n"
+"par_id3152944\n"
+"18\n"
"help.text"
-msgid "Apply border"
-msgstr "Dùng viền"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE\">Saves the current list of arrow styles, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE\">Lưu lại danh sách các kiểu dáng mũi tên hiện thời, để bạn có thể nạp lại sau.</ahelp>"
-#: 06040100.xhp
+#: 05210000.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3144445\n"
-"36\n"
+"05210000.xhp\n"
+"tit\n"
"help.text"
-msgid "Automatically applies a border at the base of the preceding paragraph when you type three or more specific characters, and then press Enter. To create a single line, type three or more hyphens (-), or underscores ( _ ), and then press Enter. To create a double line, type three or more equal signs (=), asterisks (*), tildes (~), or hash marks (#), and then press Enter."
-msgstr "Tự động áp dụng một viền bên dưới đoạn văn trước khi bạn gõ ba hoặc hơn nữa ký tự riêng, sau đó bấm phím <item type=\"keycode\">Enter</item>. Để tạo một đường đơn, gõ ba hoặc hơn nữa dấu bằng (=), dấu ngã (~) hay dấu thăng (#), rồi bấm phím <item type=\"keycode\">Enter</item>."
+msgid "Area"
+msgstr "Vùng"
-#: 06040100.xhp
+#: 05210000.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_idN10C2E\n"
+"05210000.xhp\n"
+"hd_id3085157\n"
+"1\n"
"help.text"
-msgid "To delete the created line, click the paragraph above the line, choose <emph>Format - Paragraph - Borders</emph>, delete the bottom border."
-msgstr "Để xoá đường đã tạo, nhấn vào đoạn văn bên trên đường, chọn lệnh <emph>Định dạng > Đoạn văn > Viền</emph> và xoá viền bên dưới."
+msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Vùng\">Vùng</link>"
-#: 06040100.xhp
+#: 05210000.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_idN10C35\n"
+"05210000.xhp\n"
+"par_id3144436\n"
+"2\n"
"help.text"
-msgid "The following table summarizes the line thickness for the different characters:"
-msgstr "Theo đây có một bảng tóm tắt chiều rộng đường cho các ký tự khác nhau :"
+msgid "<variable id=\"flaechetext\"><ahelp hid=\".uno:FormatArea\">Sets the fill properties of the selected drawing object.</ahelp></variable>"
+msgstr "<variable id=\"flaechetext\"><ahelp hid=\".uno:FormatArea\">Đặt các thuộc tính tô đầy của đối tượng vẽ đã chọn.</ahelp></variable>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3148576\n"
-"37\n"
+"05210100.xhp\n"
+"tit\n"
"help.text"
-msgid "---"
-msgstr "---"
+msgid "Area"
+msgstr "Vùng"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154690\n"
-"38\n"
+"05210100.xhp\n"
+"bm_id3149999\n"
"help.text"
-msgid "0.5pt single underline"
-msgstr "0.5pt gạch dưới đơn"
+msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value>"
+msgstr "<bookmark_value>vùng; kiểu dáng</bookmark_value><bookmark_value>mẫu tô đầy cho vùng</bookmark_value><bookmark_value>màu tô đầy cho vùng</bookmark_value><bookmark_value>vùng vô hình</bookmark_value>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154472\n"
-"39\n"
+"05210100.xhp\n"
+"hd_id3145759\n"
+"1\n"
"help.text"
-msgid "___"
-msgstr "___"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\">Area</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Vùng\">Vùng</link>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3149266\n"
-"40\n"
+"05210100.xhp\n"
+"par_id3149748\n"
+"2\n"
"help.text"
-msgid "1.0pt single underline"
-msgstr "1.0pt gạch dưới đơn"
+msgid "<ahelp hid=\"HID_AREA_AREA\">Set the fill options for the selected drawing object.</ahelp>"
+msgstr "<ahelp hid=\"HID_AREA_AREA\">Đặt các tùy chọn tô đầy cho đối tượng vẽ đã chọn.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3147580\n"
-"41\n"
+"05210100.xhp\n"
+"par_id3154863\n"
+"65\n"
"help.text"
-msgid "==="
-msgstr "==="
+msgid "You can save collections of colors, gradients, hatchings, and bitmap patterns as lists that you can later load and use."
+msgstr "Bạn có khả năng lưu lại tập hợp các màu sắc, dải màu, lưới đan và mẫu mảnh ảnh dang danh sách bạn có thể nạp lại sau để sử dụng."
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3145364\n"
-"42\n"
+"05210100.xhp\n"
+"hd_id3149999\n"
+"3\n"
"help.text"
-msgid "1.1pt double underline"
-msgstr "1.1pt gạch dưới đôi"
+msgid "Fill"
+msgstr "Tô đầy"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3148647\n"
-"43\n"
+"05210100.xhp\n"
+"par_id3154673\n"
+"4\n"
"help.text"
-msgid "***"
-msgstr "***"
+msgid "<variable id=\"sytext\"><ahelp hid=\".uno:FillStyle\">Select the type of fill that you want to apply to the selected drawing object.</ahelp></variable>"
+msgstr "<variable id=\"sytext\"><ahelp hid=\".uno:FillStyle\">Chọn kiểu tô đầy bạn muốn áp dụng cho đối tượng vẽ đã chọn.</ahelp></variable>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3152791\n"
-"44\n"
+"05210100.xhp\n"
+"par_id3148548\n"
+"55\n"
"help.text"
-msgid "4.5pt double underline"
-msgstr "4.5pt gạch dưới đôi"
+msgid "List boxes on the <emph>Drawing Object Properties</emph> toolbar:"
+msgstr "Hộp liệt kê trên thanh công cụ <emph>Thuộc tính Đối tượng Vẽ</emph>:"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146975\n"
-"45\n"
+"05210100.xhp\n"
+"hd_id3147373\n"
+"5\n"
"help.text"
-msgid "~~~"
-msgstr "~~~"
+msgid "None"
+msgstr "Không có"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3152885\n"
-"46\n"
+"05210100.xhp\n"
+"par_id3147088\n"
+"6\n"
"help.text"
-msgid "6.0pt double underline"
-msgstr "6.0pt gạch dưới đôi"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_FILL_OFF\">Does not apply a fill to the selected object. If the object contains a fill, the fill is removed.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_FILL_OFF\">Không tô đầy đối tượng đã chọn. Nếu đối tượng đã tô đầy, mẫu tô đầy bị gỡ bỏ.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3145591\n"
-"47\n"
+"05210100.xhp\n"
+"hd_id3153345\n"
+"8\n"
"help.text"
-msgid "###"
-msgstr "###"
+msgid "Color"
+msgstr "Màu"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153188\n"
-"48\n"
+"05210100.xhp\n"
+"par_id3149750\n"
+"9\n"
"help.text"
-msgid "9.0pt double underline"
-msgstr "9.0pt gạch dưới đôi"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLOR\">Fills the selected object with the color that you click in the list.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLOR\">Tô đầy đối tượng đã chọn bằng màu vào đó bạn nhấn trong danh sách.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3149064\n"
-"49\n"
+"05210100.xhp\n"
+"par_id3153147\n"
+"57\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create table</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tạo bảng </caseinline></switchinline>"
+msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the<emph> Colors</emph> tab, and then click <emph>Edit</emph>."
+msgstr "Để thêm vào danh sách một màu khác, chọn lệnh <link href=\"text/shared/optionen/01010500.xhp\" name=\"Định dạng > Vùng\"><emph>Định dạng > Vùng</emph></link>, nhấn vào thẻ <emph>Màu sắc</emph>, sau đó nhấn vào nút <emph>Sửa</emph>."
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146119\n"
-"50\n"
+"05210100.xhp\n"
+"par_id9695730\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Creates a table when you press Enter after typing a series of hyphens (-) or tabs separated by plus signs, that is, +------+---+. Plus signs indicate column dividers, while hyphens and tabs indicate the width of a column.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tạo một bảng khi bạn bấm phím <item type=\"keycode\">Enter</item> sau khi gõ một chuỗi các dấu gạch nối từ (-) hay khoảng cách Tab định giới bằng dấu cộng (+------+---+). Dấu cộng ngụ ý đường chia hai cột, còn dấu gạch nối từ hay khoảng Tab ngụ ý chiều rộng của cột. </caseinline></switchinline>"
+msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the <emph>Colors</emph> tab, and then click <emph>Edit</emph>."
+msgstr "Để thêm vào danh sách một màu khác, chọn lệnh <link href=\"text/shared/optionen/01010500.xhp\" name=\"Định dạng > Vùng\"><emph>Định dạng > Vùng</emph></link>, nhấn vào thẻ <emph>Màu sắc</emph>, sau đó nhấn vào nút <emph>Sửa</emph>."
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3147219\n"
-"53\n"
+"05210100.xhp\n"
+"hd_id3144438\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">+-----------------+---------------+------+</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">+-----------------+---------------+------+ </caseinline></switchinline>"
+msgid "Gradient"
+msgstr "Dải màu"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3153334\n"
-"55\n"
+"05210100.xhp\n"
+"par_id3153716\n"
+"11\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply Styles</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Áp dụng kiểu dáng </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_GRADIENT\">Fills the selected object with the gradient that you click in the list.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_GRADIENT\">Tô đầy đối tượng đã chọn bằng dải màu vào đó bạn nhấn trong danh sách.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3147396\n"
-"56\n"
+"05210100.xhp\n"
+"hd_id3154047\n"
+"12\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically replaces the \"Default\" paragraph style with the Heading 1 to Heading 8 paragraph styles. To apply the Heading 1 paragraph style, type the text that you want to use as a heading (without a period), and then press Enter twice. To apply a sub-heading, press Tab one or more times, type the text (without a period), and then press Enter.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động thay thế kiểu dáng đoạn văn « Mặc định » bằng kiểu dáng đoạn văn « Tiêu đề 1 » đến « Tiêu đề 8 ». Để áp dụng kiểu dáng đoạn văn « Tiêu đề 1 », gõ chuỗi bạn muốn thấy là tiêu đề (không có dấu chấm), sau đó bấm phím <item type=\"keycode\">Enter</item> hai lần. Để áp dụng một tiêu đề phụ, bấm phím <item type=\"keycode\">Tab</item> một hay nhiều lần, gõ chuỗi (không có dấu chấm), sau đó bấm phím <item type=\"keycode\">Enter</item>.</caseinline></switchinline>"
+msgid "Hatching"
+msgstr "Lưới đan"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3151075\n"
-"58\n"
+"05210100.xhp\n"
+"par_id3153698\n"
+"13\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove blank paragraphs</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bỏ đoạn văn trống </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_HATCH\">Fills the selected object with the hatching pattern that you click in the list. To apply a background color to the hatching pattern, select the <emph>Background color</emph> box, and then click a color in the list.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_HATCH\">Tô đầy đối tượng đã chọn bằng mẫu lưới đan vào đó bạn nhấn trong danh sách. Để thêm vào mẫu lưới đan một màu nền, bật tùy chọn <emph>Màu nền</emph>, sau đó nhấn vào một màu nào đó trong danh sách.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3145728\n"
-"59\n"
+"05210100.xhp\n"
+"hd_id3150771\n"
+"14\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes empty paragraphs from the current document when you choose <emph>Format - AutoCorrect - Apply</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gỡ bỏ các đoạn văn rỗng (nếu có) khỏi tài liệu hiện tại khi bạn chọn lệnh <emph>Định dạng > Tự động sửa lỗi > Áp dụng</emph>. </caseinline></switchinline>"
+msgid "Bitmap"
+msgstr "Ảnh bitmap"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3152375\n"
-"60\n"
+"05210100.xhp\n"
+"par_id3149762\n"
+"15\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace Custom Styles</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay kiểu dáng riêng</caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_BITMAP\">Fills the selected object with the bitmap pattern that you click in the list. To add a bitmap to the list, open this dialog in %PRODUCTNAME Draw, click the <emph>Bitmaps </emph>tab, and then click <emph>Import</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_BITMAP\">Tô đầy đối tượng đã chọn bằng mẫu ảnh bitmap vào đó bạn nhấn trong danh sách. Để thêm vào danh sách một ảnh bitmap, mở hộp thoại này trong %PRODUCTNAME Draw, nhấn vào thẻ <emph>Ảnh mảng</emph>, sau đó nhấn vào nút <emph>Nhập</emph>.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3156299\n"
-"61\n"
+"05210100.xhp\n"
+"hd_id3150504\n"
+"16\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replaces the custom paragraph styles in the current document with the \"Default\", the \"Text Body\", or the \"Text Body Indent\" paragraph style.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay thế các kích cỡ đoạn văn riêng trong tài liệu hiện tại bằng kiểu dáng đoạn văn « Mặc định », « Thân văn bản » hay « Thụt lề thân văn bản ».</caseinline></switchinline>"
+msgid "Area Fill"
+msgstr "Tô đầy vùng"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3147045\n"
-"62\n"
+"05210100.xhp\n"
+"par_id3153626\n"
+"17\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace bullets with</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay chấm điểm bằng</caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_BITMAP\">Nhấn vào mẫu tô đầy bạn muốn áp dụng cho đối tượng đã chọn.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3150420\n"
-"63\n"
+"05210100.xhp\n"
+"hd_id3154346\n"
+"20\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Converts paragraphs that start with a hyphen (-), a plus sign (+), or an asterisk (*) directly followed by a space or a tab, to bulleted lists. This option only works on paragraphs that are formatted with the \"Default\", \"Text Body\", or \"Text Body Indent\" paragraph styles. To change the bullet style that is used, select this option, and then click <emph>Edit</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chuyển đổi các đoạn văn bắt đầu với dấu gạch nối từ (-), dấu cộng (+) hay dấu sao (*) có dấu cách hay khoảng cách Tab theo đúng sau, sang danh sách chấm điểm. Tùy chọn này chỉ có tác động với đoạn văn được định dạng bằng kiểu dáng đoạn văn « Mặc định », « Thân văn bản » hay « Thụt lề thân văn bản ». Để thay đổi kiểu dáng chấm điểm được dùng, bật tùy chọn này, sau đó bấm nút <emph>Sửa</emph>. </caseinline></switchinline>"
+msgid "Increments (Gradients)"
+msgstr "Bước (Dải màu)"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3151019\n"
-"66\n"
+"05210100.xhp\n"
+"par_id3144423\n"
+"21\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combine single line paragraphs if length greater than ...</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gộp các đoạn văn một dòng có chiều dài hơn ... </caseinline></switchinline>"
+msgid "Set the number of steps for blending the two end colors of a gradient."
+msgstr "Đặt số bước để pha hai màu cuối của dải màu."
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154162\n"
-"67\n"
+"05210100.xhp\n"
+"hd_id3147264\n"
+"22\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combines consecutive single-line paragraphs into a single paragraph. This option only works on paragraphs that use the \"Default\" paragraph style. If a paragraph is longer than the specified length value, the paragraph is combined with the next paragraph. To enter a different length value, select the option, and then click <link href=\"text/swriter/01/05150104.xhp\"><emph>Edit</emph></link>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kết hợp các đoạn văn dòng đơn liên tiếp để làm cùng một đoạn văn. Tùy chọn này chỉ có tác động với đoạn văn dùng kiểu dáng đoạn văn « Mặc định ». Có đoạn văn dài hơn giá trị chiều dài đã ghi rõ thì đoạn văn được kết hợp với đoạn văn kế tiếp. Để nhập giá trị chiều dài khác, bật tùy chọn, sau đó bấm nút <link href=\"text/swriter/01/05150104.xhp\"><emph>Sửa</emph></link>. </caseinline></switchinline>"
+msgid "Automatic"
+msgstr "Tự động"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1218200910244459\n"
+"05210100.xhp\n"
+"par_id3149457\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Modifies the selected AutoCorrect option.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STEPCOUNT\">Automatically determines the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STEPCOUNT\">Tự động xác định số bước để pha hai màu cuối của dải màu.</ahelp>"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3144749\n"
-"75\n"
+"05210100.xhp\n"
+"hd_id3154388\n"
+"24\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Edit</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Sửa </caseinline></switchinline>"
+msgid "Increment"
+msgstr "Bước"
-#: 06040100.xhp
+#: 05210100.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153841\n"
-"76\n"
+"05210100.xhp\n"
+"par_id3150360\n"
+"25\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT\">Modifies the selected AutoCorrect option.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT\">Sửa đổi tùy chọn Tự động Sửa lỗi đã chọn.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT\">Enter the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT\">Nhập số bước để pha hai màu cuối của dải màu..</ahelp>"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3153381\n"
+"31\n"
"help.text"
-msgid "Asian Layout"
-msgstr "Bố trí Châu Á"
+msgid "Size (Bitmaps)"
+msgstr "Kích cỡ (Ảnh bitmap)"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"bm_id3156053\n"
+"05210100.xhp\n"
+"par_id3148798\n"
+"32\n"
"help.text"
-msgid "<bookmark_value>double-line writing in Asian layout</bookmark_value><bookmark_value>formats; Asian layout</bookmark_value><bookmark_value>characters; Asian layout</bookmark_value><bookmark_value>text; Asian layout</bookmark_value>"
-msgstr "<bookmark_value>viết dòng đôi trên bố trí Châu Á</bookmark_value><bookmark_value>định dạng; bố trí Châu Á</bookmark_value><bookmark_value>ký tự; bố trí Châu Á</bookmark_value><bookmark_value>văn bản; bố trí Châu Á</bookmark_value>"
+msgid "Specify the dimensions of the bitmap."
+msgstr "Ghi rõ các chiều của ảnh bitmap."
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3156053\n"
-"1\n"
+"05210100.xhp\n"
+"hd_id3154068\n"
+"33\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020600.xhp\" name=\"Asian Layout\">Asian Layout</link>"
-msgstr "<link href=\"text/shared/01/05020600.xhp\" name=\"Bố trí Châu Á\">Bố trí Châu Á</link>"
+msgid "Relative"
+msgstr "Tương đối"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3155351\n"
-"2\n"
+"05210100.xhp\n"
+"par_id3125865\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"\">Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command.</ahelp>"
-msgstr "<ahelp hid=\"\">Đặt các tùy chọn về chức năng viết dòng đôi bằng ngôn ngữ Châu Á. Hãy chọn các ký tự trong văn bản, sau đó chọn lệnh này.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_SCALE\">Rescales the bitmap relative to the size of the selected object by the percentage values that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes . Clear this checkbox to resize the selected object with the measurements that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_SCALE\">Co giãn lại ảnh bitmap tương đối so với kích cỡ của đối tượng đã chọn theo giá trị phần trăm bạn nhập vào hộp <emph>Rộng</emph> và <emph>Cao</emph>. Tắt tùy chọn này để thay đổi kích cỡ của đối tượng đã chọn theo giá trị bạn nhập vào hộp <emph>Rộng</emph> và <emph>Cao</emph>.</ahelp>"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3152552\n"
-"3\n"
+"05210100.xhp\n"
+"hd_id3149202\n"
+"35\n"
"help.text"
-msgid "Double-lined"
-msgstr "Dòng đôi"
+msgid "Original"
+msgstr "Gốc"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3155338\n"
-"4\n"
+"05210100.xhp\n"
+"par_id3153970\n"
+"36\n"
"help.text"
-msgid "Set the double-line options for the selected text."
-msgstr "Đặt các tùy chọn dòng đôi về chuỗi đã chọn."
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_ORIGINAL\">Retains the original size of the bitmap when filling the selected object. To resize the bitmap, clear this checkbox, and then click <emph>Relative</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_ORIGINAL\">Giữ lại kích cỡ gốc của ảnh bitmap khi tô đầy đối tượng đã chọn. Để thay đổi kích cỡ của ảnh bitmap, tắt tùy chọn này, sau đó nhấn vào mục <emph>Tương đối</emph>.</ahelp>"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3147089\n"
-"5\n"
+"05210100.xhp\n"
+"hd_id3155994\n"
+"37\n"
"help.text"
-msgid "Write in double lines"
-msgstr "Viết qua dòng đôi"
+msgid "Width"
+msgstr "Bề rộng"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3150693\n"
-"6\n"
+"05210100.xhp\n"
+"par_id3149810\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/twolinespage/twolines\">Allows you to write in double lines in the area that you selected in the current document.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE\">Enter a width for the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE\">Nhập chiều rộng của ảnh bitmap.</ahelp>"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3157959\n"
-"7\n"
+"05210100.xhp\n"
+"hd_id3156281\n"
+"39\n"
"help.text"
-msgid "Enclosing characters"
-msgstr "Ký tự bao bọc"
+msgid "Height"
+msgstr "Bề cao"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3154749\n"
-"8\n"
+"05210100.xhp\n"
+"par_id3150868\n"
+"40\n"
"help.text"
-msgid "Specify the characters to enclose the double-lined area."
-msgstr "Ghi rõ các ký tự sẽ bao bọc vùng dòng đôi."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE\">Enter a height for the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE\">Nhập chiều cao của ảnh bitmap.</ahelp>"
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3148539\n"
-"9\n"
+"05210100.xhp\n"
+"hd_id3148673\n"
+"41\n"
"help.text"
-msgid "Initial character"
-msgstr "Ký tự đầu"
+msgid "Position (Bitmaps)"
+msgstr "Vị trí (Ảnh bitmap)"
-#: 05020600.xhp
-#, fuzzy
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3150504\n"
-"10\n"
+"05210100.xhp\n"
+"par_id3154821\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/twolinespage/startbracket\">Select the character to define the start of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_TWOLINES_ED_STARTBRACKET\">Chọn ký tự nên xác định vị trí bắt đầu vùng dòng đôi. Muốn chọn một ký tự riêng thì bật tùy chọn <emph>Ký tự khác</emph>.</ahelp>"
+msgid "Click in the position grid to specify the offset for tiling the bitmap."
+msgstr "Nhấn vào lưới vị trí để xác định khoảng dịch để xếp lát ảnh bitmap."
-#: 05020600.xhp
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3159115\n"
-"11\n"
+"05210100.xhp\n"
+"hd_id3153056\n"
+"43\n"
"help.text"
-msgid "Final character"
-msgstr "Ký tự cuối"
+msgid "X Offset"
+msgstr "Độ dịch X"
-#: 05020600.xhp
-#, fuzzy
+#: 05210100.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3149191\n"
-"12\n"
+"05210100.xhp\n"
+"par_id3147299\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/twolinespage/endbracket\">Select the character to define the end of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_TWOLINES_ED_ENDBRACKET\">Chọn ký tự nên xác định vị trí kết thúc vùng dòng đôi. Muốn chọn một ký tự riêng thì bật tùy chọn <emph>Ký tự khác</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET\">Enter the horizontal offset for tiling the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET\">Nhập khoảng dịch theo chiều ngang để xếp lát ảnh bitmap.</ahelp>"
-#: 05020000.xhp
+#: 05210100.xhp
msgctxt ""
-"05020000.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3149985\n"
+"45\n"
"help.text"
-msgid "Character"
-msgstr "Ký tự"
+msgid "Y Offset"
+msgstr "Độ dịch Y"
-#: 05020000.xhp
+#: 05210100.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3150347\n"
-"1\n"
+"05210100.xhp\n"
+"par_id3148559\n"
+"46\n"
"help.text"
-msgid "Character"
-msgstr "Ký tự"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET\">Enter the vertical offset for tiling the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET\">Nhập khoảng dịch theo chiều dọc để xếp lát ảnh bitmap.</ahelp>"
-#: 05020000.xhp
+#: 05210100.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3153272\n"
-"2\n"
+"05210100.xhp\n"
+"hd_id3156060\n"
+"27\n"
"help.text"
-msgid "<variable id=\"zeichentext\"><ahelp hid=\".uno:FontDialog\">Changes the font and the font formatting for the selected characters.</ahelp></variable>"
-msgstr "<variable id=\"zeichentext\"><ahelp hid=\".uno:FontDialog\">Thay đổi phông và định dạng phông cho các ký tự đã chọn.</ahelp></variable>"
+msgid "Tile"
+msgstr "Xếp lát"
-#: 05020000.xhp
+#: 05210100.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3149988\n"
-"4\n"
+"05210100.xhp\n"
+"par_id3152576\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Phông\">Phông</link>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_TILE\">Tiles the bitmap to fill the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_TILE\">Xếp lát ảnh bitmap để tô đầy đối tượng đã chọn.</ahelp>"
-#: 05020000.xhp
+#: 05210100.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3147588\n"
-"3\n"
+"05210100.xhp\n"
+"hd_id3150334\n"
+"29\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Siêu liên kết\">Siêu liên kết</link></caseinline></switchinline>"
+msgid "AutoFit"
+msgstr "Tự động vừa"
-#: online_update_dialog.xhp
-#, fuzzy
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"par_id3149481\n"
+"30\n"
"help.text"
-msgid "Check for Updates"
-msgstr "Kiểm tra có cập nhật"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STRETCH\">Stretches the bitmap to fill the selected object. To use this feature, clear the <emph>Tile </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STRETCH\">Kéo giãn ảnh bitmap để tô đầy đối tượng đã chọn. Để sử dụng tính năng này, tắt tùy chọn <emph>Xếp lát</emph>.</ahelp>"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"hd_id4959257\n"
+"05210100.xhp\n"
+"hd_id3148555\n"
+"47\n"
"help.text"
-msgid "<link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link>"
-msgstr "<link href=\"text/shared/01/online_update_dialog.xhp\">Kiểm tra có cập nhật</link>"
+msgid "Offset"
+msgstr "Độ dịch"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id1906491\n"
+"05210100.xhp\n"
+"par_id3155412\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\".\">Checks for available updates to your version of %PRODUCTNAME. If a newer version is available, you can choose to download the update. After downloading, if you have write permissions for the installation directory, you can install the update.</ahelp>"
-msgstr "<ahelp hid=\".\">Kiểm tra có bản cập nhật chưa cho phiên bản %PRODUCTNAME của bạn. Có thì bạn có thể tải về. Một khi tải về, nếu bạn có quyền ghi vào thư mục cài đặt, bạn có thể cài đặt bản cập nhật.</ahelp>"
+msgid "Specify the offset for tiling the bitmap in terms of rows and columns."
+msgstr "Xác định khoảng dịch để xếp lát ảnh bitmap, theo số hàng/cột."
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id4799340\n"
+"05210100.xhp\n"
+"hd_id3151115\n"
+"49\n"
"help.text"
-msgid "Once the download starts, you see a progress bar and three buttons on the dialog. You can pause and resume the download by clicking the Pause and Resume buttons. Click Cancel to abort the download and delete the partly downloaded file."
-msgstr "Một khi tiến trình tải về khởi chạy, bạn thấy một thanh tiến hành và ba cái nút trên hộp thoại. Bạn có thể tạm dừng và tiếp tục lại tiến trình tải về bằng cách nhấn vào nút <emph>Tạm dừng</emph> và <emph>Tiếp tục</emph>. Nhấn vào nút <emph>Thôi</emph> để hủy bỏ tiến trình tải về và xoá tập tin nửa tải về."
+msgid "Row"
+msgstr "Hàng"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id1502121\n"
+"05210100.xhp\n"
+"par_id3155369\n"
+"50\n"
"help.text"
-msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Online Update."
-msgstr ""
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_ROW\">Horizontally offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_ROW\">Dịch theo chiều ngang ảnh bitmap gốc tương đối so với các đá lát ảnh mảng, theo giá trị bạn nhập.</ahelp>"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id8266853\n"
+"05210100.xhp\n"
+"hd_id3144442\n"
+"51\n"
"help.text"
-msgid "After the download is complete, you can click Install to start the installation of the update. You see a confirmation dialog, where you can choose to close %PRODUCTNAME."
-msgstr "Sau khi tải về xong, bạn có thể nhấn vào nút <emph>Cài đặt</emph> để khởi chạy tiến trình cài đặt bản cập nhật. Bạn sẽ thấy hộp thoại xác nhận cho phép bạn cũng đóng %PRODUCTNAME."
+msgid "Column"
+msgstr "Cột"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id2871181\n"
+"05210100.xhp\n"
+"par_id3146974\n"
+"52\n"
"help.text"
-msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script."
-msgstr "Dưới một số hệ điều hành nào đó, có lẽ bạn cần phải tự đi tới thư mục tải về, giải nén tập tin đã tải về, và khởi chạy văn lệnh thiết lập."
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLUMN\">Vertically offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLUMN\">Dịch theo chiều dọc ảnh bitmap gốc tương đối so với các đá lát ảnh mảng, theo giá trị bạn nhập.</ahelp>"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id2733542\n"
+"05210100.xhp\n"
+"hd_id3150684\n"
+"53\n"
"help.text"
-msgid "After installation of the update you can delete the download file to save space."
-msgstr "Một khi cài đặt bản cập nhật, bạn cũng có thể xoá tập tin đã tải về để tiết kiệm sức chứa trên đĩa."
+msgid "Percent"
+msgstr "Phần trăm"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id4238715\n"
+"05210100.xhp\n"
+"par_id3155314\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Downloads and saves the update files to the desktop or a folder of your choice. Select the folder in %PRODUCTNAME - Online Update in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tải về và lưu các tập tin cập nhật vào màn hình nền hay vào thư mục bạn chọn. Chọn thư mục này dưới mục trình đơn <emph>Công cụ > Tùy chọn > %PRODUCTNAME > Cập nhật Trực tuyến</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_OFFSET\">Enter the percentage to offset the rows or columns.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_OFFSET\">Nhập phần trăm để dịch chuyển các hàng/cột.</ahelp>"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id8277230\n"
+"05210100.xhp\n"
+"hd_id3152887\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Installs the downloaded update.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cài đặt bản cập nhật đã tải về.</ahelp>"
+msgid "Background Color (Hatching)"
+msgstr "Màu nền (Lưới đan)"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id4086428\n"
+"05210100.xhp\n"
+"hd_id3153364\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Pauses the download. Later click Resume to continue downloading.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạm dừng tiến trình tải về. Lúc sau thì nhấn vào nút <emph>Tiếp tục</emph> để tiếp tục lại tiến trình tải về.</ahelp>"
+msgid "Background color"
+msgstr "Màu nền"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id9024628\n"
+"05210100.xhp\n"
+"par_id3152940\n"
+"62\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Continues a paused download.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tiếp tục lại tiến trình tải về bị tạm dừng.</ahelp>"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_AREA:CB_HATCHBCKGRD\">Applies a background color to the hatching pattern. Select this checkbox, and then click a color in the list.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_AREA:CB_HATCHBCKGRD\">Áp dụng màu nền cho mẫu lưới đan. Bật tùy chọn này, sau đó nhấn vào một màu nào đó trong danh sách.</ahelp>"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id3067110\n"
+"05210100.xhp\n"
+"hd_id3152460\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Aborts the download and deletes the partly downloaded file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hủy bỏ tiến trình tải về và xoá tập tin nửa tải về.</ahelp>"
+msgid "List of colors"
+msgstr "Danh sách màu sắc"
-#: online_update_dialog.xhp
+#: 05210100.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id8841822\n"
+"05210100.xhp\n"
+"par_id3157309\n"
+"64\n"
"help.text"
-msgid "<link href=\"text/shared/01/online_update.xhp\">Starting online updates</link>"
-msgstr "<link href=\"text/shared/01/online_update.xhp\">Khởi chạy tiến trình cập nhật trực tuyến</link>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR\">Click the color that you want to use as a background for the selected hatching pattern.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR\">Nhấn vào màu bạn muốn dùng làm nền cho mẫu lưới đan đã chọn.</ahelp>"
-#: 05030800.xhp
+#: 05210200.xhp
msgctxt ""
-"05030800.xhp\n"
+"05210200.xhp\n"
"tit\n"
"help.text"
-msgid "Crop"
-msgstr "Xén"
-
-#: 05030800.xhp
-msgctxt ""
-"05030800.xhp\n"
-"bm_id3148585\n"
-"help.text"
-msgid "<bookmark_value>cropping pictures</bookmark_value><bookmark_value>pictures; cropping and zooming</bookmark_value><bookmark_value>zooming; pictures</bookmark_value><bookmark_value>scaling;pictures</bookmark_value><bookmark_value>sizes; pictures</bookmark_value><bookmark_value>original size;restoring after cropping</bookmark_value>"
-msgstr "<bookmark_value>xén ảnh</bookmark_value><bookmark_value>ảnh; xén và thu/phóng</bookmark_value><bookmark_value>thu/phóng; ảnh</bookmark_value><bookmark_value>co giãn;ảnh</bookmark_value><bookmark_value>kích cỡ; ảnh</bookmark_value><bookmark_value>kích cỡ gốc;phục hồi sau khi xén</bookmark_value>"
+msgid "Colors"
+msgstr "Màu sắc"
-#: 05030800.xhp
+#: 05210200.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3154044\n"
+"05210200.xhp\n"
+"hd_id3152895\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030800.xhp\" name=\"Crop\">Crop</link>"
-msgstr "<link href=\"text/shared/01/05030800.xhp\" name=\"Xén\">Xén</link>"
+msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
+msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Màu sắc\">Màu sắc</link>"
-#: 05030800.xhp
+#: 05210200.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3150603\n"
+"05210200.xhp\n"
+"par_id3149119\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Trims or scales the selected graphic. You can also restore the graphic to its original size.</ahelp>"
-msgstr "<ahelp hid=\".\">Tỉa hay co giãn ảnh đã chọn. Bạn cũng có thể phục hồi ảnh về kích cỡ gốc.</ahelp>"
+msgid "Select a color to apply, save the current color list, or load a different color list."
+msgstr "Chọn màu cần áp dụng, lưu lại danh sách màu sắc hiện thời, hoặc nạp một danh sách màu sắc khác."
-#: 05030800.xhp
+#: 05210200.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3148585\n"
-"3\n"
+"05210200.xhp\n"
+"par_id3154288\n"
"help.text"
-msgid "Crop"
-msgstr "Xén"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Colors</link>"
+msgstr ""
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3152372\n"
-"4\n"
+"05210300.xhp\n"
+"tit\n"
"help.text"
-msgid "Use this area to trim or scale the selected graphic, or to add white space around the graphic."
-msgstr "Dùng vùng này để tỉa hay co giãn ảnh đã chọn, hoặc để thêm khoảng trắng chung quanh ảnh."
+msgid "Gradients"
+msgstr "Dải màu"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3145669\n"
-"15\n"
+"05210300.xhp\n"
+"hd_id3145356\n"
+"1\n"
"help.text"
-msgid "Keep scale"
-msgstr "Giữ tỷ lệ"
+msgid "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradients\">Gradients</link>"
+msgstr "<link href=\"text/shared/01/05210300.xhp\" name=\"Dải màu\">Dải màu</link>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3149346\n"
-"16\n"
+"05210300.xhp\n"
+"par_id3154812\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_ZOOMCONST\">Maintains the original scale of the graphic when you crop, so that only the size of the graphic changes.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_ZOOMCONST\">Bảo tồn tỷ lệ gốc của ảnh trong khi xén, để thay đổi chỉ kích cỡ của ảnh, không phải hình.</ahelp>"
+msgid "<ahelp hid=\"HID_AREA_GRADIENT\">Set the properties of a gradient, or save and load gradient lists.</ahelp>"
+msgstr "<ahelp hid=\"HID_AREA_GRADIENT\">Đặt các thuộc tính về dải màu, hoặc lưu và nạp danh sách các dải màu.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3156426\n"
-"13\n"
+"05210300.xhp\n"
+"hd_id3148983\n"
+"3\n"
"help.text"
-msgid "Keep image size"
-msgstr "Giữ kích cỡ ảnh"
+msgid "Type"
+msgstr "Kiểu"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3155892\n"
-"14\n"
+"05210300.xhp\n"
+"par_id3148440\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_SIZECONST\">Maintains the original size of the graphic when you crop, so that only the scale of the graphic changes. To reduce the scale of the graphic, select this option and enter negative values in the cropping boxes. To increase the scale of the graphic, enter positive values in the cropping boxes.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_SIZECONST\">Bảo tồn kích cỡ gốc của ảnh trong khi xén, để thay đổi chỉ tỷ lệ của ảnh. Để giảm tỷ lệ của ảnh, bật tùy chọn này và nhập vào hộp xéc giá trị âm. Để tăng tỷ lệ, nhập giá trị dương.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/gradienttypelb\">Select the gradient that you want to apply.</ahelp>"
+msgstr ""
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3153683\n"
+"05210300.xhp\n"
+"hd_id3149511\n"
"5\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "Center X"
+msgstr "Tâm X"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3145313\n"
+"05210300.xhp\n"
+"par_id3153114\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_LEFT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the left edge of the graphic, or a negative amount to add white space to the left of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_LEFT\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên trái ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên trái ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều ngang, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều ngang.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">Nhập khoảng dịch theo chiều ngang cho dải màu, mà 0% tương ứng với vị trí hiện thời theo chiều ngang của màu điểm cuối trong dải màu. Màu điểm cuối là màu được chọn trong hộp <emph>Đến</emph>.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3163803\n"
+"05210300.xhp\n"
+"hd_id3157896\n"
"7\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "Center Y"
+msgstr "Tâm Y"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3145382\n"
+"05210300.xhp\n"
+"par_id3154751\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_RIGHT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the right edge of the graphic, or a negative amount to add white space to the right of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_RIGHT\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên phải ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên phải ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều ngang, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều ngang.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">Nhập khoảng dịch theo chiều ngang cho dải màu, mà 0% tương ứng với vị trí hiện thời theo chiều dọc của màu điểm cuối trong dải màu. Màu điểm cuối là màu được chọn trong hộp <emph>Đến</emph>.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3156153\n"
+"05210300.xhp\n"
+"hd_id3151226\n"
"9\n"
"help.text"
-msgid "Top"
-msgstr "Trên"
+msgid "Angle"
+msgstr "Góc"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154514\n"
+"05210300.xhp\n"
+"par_id3149177\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_TOP\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the top of the graphic, or a negative amount to add white space above the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_TOP\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên trên ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên trên ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều dọc, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều dọc.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/anglemtr\">Enter a rotation angle for the selected gradient.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/anglemtr\">Nhập góc xoay cho dải màu đã chọn.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3149956\n"
+"05210300.xhp\n"
+"hd_id3149827\n"
"11\n"
"help.text"
-msgid "Bottom"
-msgstr "Dưới"
+msgid "Border"
+msgstr "Viền"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3150084\n"
+"05210300.xhp\n"
+"par_id3155941\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_BOTTOM\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the bottom of the graphic, or a negative amount to add white space below the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_BOTTOM\">Bật tùy chọn <emph>Giữ tỷ lệ</emph> thì nhập giá trị dương để tỉa cạnh bên dưới ảnh, hoặc nhập giá trị âm để thêm khoảng trắng vào bên dưới ảnh. Bật tùy chọn <emph>Giữ kích cỡ ảnh</emph> thì nhập giá trị dương để tăng tỷ lệ ảnh theo chiều dọc, hoặc nhập giá trị âm để giảm tỷ lệ kích cỡ theo chiều dọc.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/bordermtr\">Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/bordermtr\">Nhập giá trị theo đó bạn muốn điều chỉnh vùng của màu điểm cuối trong dải màu. Màu điểm cuối là màu được chọn trong hộp <emph>Đến</emph>.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3158432\n"
-"23\n"
+"05210300.xhp\n"
+"hd_id3152551\n"
+"35\n"
"help.text"
-msgid "Scale"
-msgstr "Co giãn"
+msgid "From"
+msgstr "Từ"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3153257\n"
-"24\n"
+"05210300.xhp\n"
+"par_id3153527\n"
+"23\n"
"help.text"
-msgid "Changes the scale of the selected graphic."
-msgstr "Thay đổi tỷ lệ của ảnh đã chọn."
+msgid "<ahelp hid=\"cui/ui/gradientpage/colorfromlb\">Select a color for the beginning point of the gradient.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/colorfromlb\">Chọn màu cho điểm bắt đầu dải màu.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3155504\n"
+"05210300.xhp\n"
+"par_id3149398\n"
"25\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "<ahelp hid=\"cui/ui/colorfrommtr\">Enter the intensity for the color in the <emph>From </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/colorfrommtr\">Nhập vào hộp <emph>Từ</emph> cường độ cho màu, mà 0% tương ứng với màu đen, và 100% tương ứng với màu đã chọn.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3148943\n"
-"26\n"
+"05210300.xhp\n"
+"hd_id3149903\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTHZOOM\">Enter the width for the selected graphic as a percentage.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTHZOOM\">Nhập chiều rộng của ảnh đã chọn, theo phần trăm.</ahelp>"
+msgid "To"
+msgstr "Đến"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3145609\n"
+"05210300.xhp\n"
+"par_id3159269\n"
"27\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "<ahelp hid=\"cui/ui/gradientpage/colortolb\">Select a color for the endpoint of the gradient.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/colortolb\">Chọn màu cho điểm kết thúc dải màu.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154348\n"
-"28\n"
+"05210300.xhp\n"
+"par_id3154142\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHTZOOM\">Enter the height of the selected graphic as a percentage.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHTZOOM\">Nhập chiều cao của ảnh đã chọn, theo phần trăm.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">Enter the intensity for the color in the <emph>To </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">Nhập vào hộp <emph>Đến</emph> cường độ cho màu, mà 0% tương ứng với màu đen, và 100% tương ứng với màu đã chọn.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3154924\n"
+"05210300.xhp\n"
+"hd_id3155830\n"
+"15\n"
+"help.text"
+msgid "Gradients"
+msgstr "Dải màu"
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3157909\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Select the type of gradient that you want to apply or create.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Chọn kiểu dải màu bạn muốn tạo hay áp dụng.</ahelp>"
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3150669\n"
"17\n"
"help.text"
-msgid "Image size"
-msgstr "Kích cỡ ảnh"
+msgid "Add"
+msgstr "Thêm"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3148755\n"
+"05210300.xhp\n"
+"par_id3145416\n"
"18\n"
"help.text"
-msgid "Changes the size of the selected graphic."
-msgstr "Thay đổi kích cỡ của ảnh đã chọn."
+msgid "<ahelp hid=\"cui/ui/gradientpage/add\">Adds a custom gradient to the current list. Specify the properties of your gradient, and then click this button</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/add\">Thêm vào danh sách hiện thời một dải màu riêng. Ghi rõ các thuộc tính về dải màu, sau đó nhấn vào nút này.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3161656\n"
+"05210300.xhp\n"
+"hd_id3150772\n"
"19\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "Modify"
+msgstr "Sửa"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3150543\n"
+"05210300.xhp\n"
+"par_id3147573\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTH\">Enter a width for the selected graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTH\">Nhập chiều rộng của ảnh đã chọn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/modify\">Applies the current gradient properties to the selected gradient. If you want, you can save the gradient under a different name.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/modify\">Áp dụng cho dải màu đã chọn các thuộc tính dải màu hiện thời. Bạn cũng có thể lưu lại dải màu dưới tên khác.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3150398\n"
-"21\n"
+"05210300.xhp\n"
+"hd_id3155341\n"
+"31\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "Load Gradients List"
+msgstr "Nạp danh sách dải màu"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154686\n"
-"22\n"
+"05210300.xhp\n"
+"par_id3145085\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHT\">Enter a height for the selected graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHT\">Nhập chiều cao của ảnh đã chọn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/load\">Load a different list of gradients.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/load\">Nạp một danh sách dải màu khác.</ahelp>"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3148676\n"
-"31\n"
+"05210300.xhp\n"
+"hd_id3148943\n"
+"33\n"
"help.text"
-msgid "Original Size"
-msgstr "Kích cỡ gốc"
+msgid "Save Gradients List"
+msgstr "Lưu danh sách dải màu"
-#: 05030800.xhp
+#: 05210300.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154068\n"
-"32\n"
+"05210300.xhp\n"
+"par_id3161459\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_GRFCROP_PB_ORGSIZE\">Returns the selected graphic to its original size.</ahelp>"
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_GRFCROP_PB_ORGSIZE\">Phục hồi ảnh đã chọn về kích cỡ gốc.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/save\">Saves the current list of gradients, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/save\">Lưu lại danh sách dải màu hiện thời, để nạp lại sau.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
+"05210400.xhp\n"
"tit\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "Hatching"
+msgstr "Lưới đan"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3150467\n"
+"05210400.xhp\n"
+"bm_id3149962\n"
+"help.text"
+msgid "<bookmark_value>hatching</bookmark_value><bookmark_value>areas; hatched/dotted</bookmark_value><bookmark_value>dotted areas</bookmark_value>"
+msgstr "<bookmark_value>lưới đan</bookmark_value><bookmark_value>vùng; lưới đan/chấm chấm</bookmark_value><bookmark_value>vùng chấm chấm</bookmark_value>"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3149962\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Vị trí\">Vị trí</link>"
+msgid "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatching\">Hatching</link>"
+msgstr "<link href=\"text/shared/01/05210400.xhp\" name=\"Lưới đan\">Lưới đan</link>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3158397\n"
+"05210400.xhp\n"
+"par_id3144436\n"
"2\n"
"help.text"
-msgid "Sets the indent, spacing, and alignment options for the numbered or bulleted list."
-msgstr "Đặt các tùy chọn về chức năng thụt vào, giãn cách và chỉnh canh cho danh sách kiểu đánh số hay chấm điểm."
+msgid "<ahelp hid=\"HID_AREA_HATCH\">Set the properties of a hatching pattern, or save and load hatching lists.</ahelp>"
+msgstr "<ahelp hid=\"HID_AREA_HATCH\">Đặt các thuộc tính về một mẫu lưới đan, hoặc lưu và nạp danh sách lưới đan.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id5004119\n"
+"05210400.xhp\n"
+"hd_id3156042\n"
+"3\n"
"help.text"
-msgid "The Position tab page looks different for documents using the new position and spacing attributes introduced with OpenOffice.org 3.0 (and used in all versions of LibreOffice), or documents using the old attributes from versions before 3.0. The new version of this tab page shows the controls \"Numbering followed by\", \"Numbering alignment\", \"Aligned at\", and \"Indent at\". The old version of this tab page that can be seen in an old numbered or bulleted list shows the controls \"Indent\", \"Width of numbering\", \"Minimum space numbering <-> text\", and \"Numbering alignment\"."
-msgstr ""
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3149031\n"
-"3\n"
+"05210400.xhp\n"
+"par_id3147291\n"
+"4\n"
"help.text"
-msgid "Level"
-msgstr "Cấp"
+msgid "Define or modify a hatching pattern."
+msgstr "Xác định hay sửa đổi một mẫu lưới đan."
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3155755\n"
-"13\n"
+"05210400.xhp\n"
+"hd_id3147834\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Chọn những cấp bạn muốn sửa đổi.</ahelp>"
+msgid "Spacing"
+msgstr "Giãn cách"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id6561784\n"
+"05210400.xhp\n"
+"par_id3147010\n"
+"6\n"
"help.text"
-msgid "Numbering followed by"
-msgstr "Đánh số phía trước"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE\">Enter the amount of space that you want to have between the hatch lines.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE\">Nhập khoảng cách bạn muốn thấy giữa hai đường trong lưới đan.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id423291\n"
+"05210400.xhp\n"
+"hd_id3155355\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the element that will follow the numbering: a tab stop, a space, or nothing.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn phần tử nên đi theo khi đánh số : cột tab, dấu cách, hay không gì.</ahelp>"
+msgid "Angle"
+msgstr "Góc"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id7809686\n"
+"05210400.xhp\n"
+"par_id3156410\n"
+"8\n"
"help.text"
-msgid "at"
-msgstr "ở"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE\">Enter the rotation angle for the hatch lines, or click a position in the angle grid.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE\">Nhập góc xoay cho các đường lưới đan, hoặc nhấn vào một vị trí trên lưới góc.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id8177434\n"
+"05210400.xhp\n"
+"hd_id3156113\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position.</ahelp>"
-msgstr "<ahelp hid=\".\">Nếu bạn lựa chọn một cột tab để nằm phía số đã đánh, bạn cũng có thể nhập giá trị khác âm làm vị trí cột tab.</ahelp>"
+msgid "Angle grid"
+msgstr "Lưới góc"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3155583\n"
-"5\n"
+"05210400.xhp\n"
+"par_id3147242\n"
+"10\n"
"help.text"
-msgid "Numbering alignment"
-msgstr "Chỉnh canh đánh số"
+msgid "<ahelp hid=\"HID_TPHATCH_CTRL\">Click a position in the grid to define the rotation angle for the hatch lines.</ahelp>"
+msgstr "<ahelp hid=\"HID_TPHATCH_CTRL\">Nhấn vào một vị trí trên lưới để xác định góc xoay cho các đường lưới đan.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3153063\n"
-"15\n"
+"05210400.xhp\n"
+"hd_id3155449\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numalignlb\">Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numalignlb\">Đặt phương pháp sắp hàng các ký hiệu đánh số. Hãy chọn mục « Trái » để chỉnh canh ký hiệu đánh số sẽ bắt đầu đúng ở vị trí « Canh lề ở ». Chọn mục « Phải » để chỉnh canh ký hiệu sẽ kết thúc đúng trước vị trí « Canh lề ở ». Chọn mục « Giữa » để đặt tâm trung của ký hiệu vào vị trí « Canh lề ở ».</ahelp>"
+msgid "Line type"
+msgstr "Kiểu đường"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3147422\n"
+"05210400.xhp\n"
+"par_id3152909\n"
"22\n"
"help.text"
-msgid "The <emph>Numbering alignment</emph> option does not set the alignment of the paragraph."
-msgstr "Tùy chọn <emph>Chỉnh canh đánh số</emph> không đặt tình trạng chỉnh canh của đoạn văn."
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE\">Select the type of hatch lines that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE\">Chọn kiểu đường lưới đan bạn muốn dùng.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id1619617\n"
+"05210400.xhp\n"
+"hd_id3150503\n"
+"23\n"
"help.text"
-msgid "Aligned at"
-msgstr "Canh lề ở"
+msgid "Line color"
+msgstr "Màu đường"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id1015655\n"
+"05210400.xhp\n"
+"par_id3149578\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the distance from the left page margin at which the numbering symbol will be aligned.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập khoảng cách giữa lề bên trái trang và vị trí ở đó cần sắp hàng các ký hiệu đánh số.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR\">Select the color of the hatch lines.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR\">Chọn màu của đường lưới đan.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id2336191\n"
+"05210400.xhp\n"
+"hd_id3159147\n"
+"11\n"
"help.text"
-msgid "Indent at"
-msgstr "Thụt vào ở"
+msgid "Hatches List"
+msgstr "Danh sách lưới đan"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id6081728\n"
+"05210400.xhp\n"
+"par_id3149955\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập khoảng cách giữa lề bên trái trang và vị trí bắt đầu các dòng trong đoạn văn đánh số mà theo sau dòng đầu tiên.</ahelp>"
+msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern. To save the list, click the <emph>Save Hatches List</emph> button. To display a different list, click the <emph>Load Hatches List</emph> button."
+msgstr "Liệt kê các mẫu lưới đan sẵn sàng. Bạn cũng có thể sửa đổi hay tạo mẫu lưới đan riêng. Để lưu danh sách, nhấn vào nút <emph>Lưu danh sách lưới đan</emph>. Để hiển thị một danh sách khác, nhấn vào nút <emph>Nạp danh sách lưới đan</emph>."
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3154422\n"
-"9\n"
+"05210400.xhp\n"
+"hd_id3150670\n"
+"13\n"
"help.text"
-msgid "Indent"
-msgstr "Thụt lề"
+msgid "Hatches list"
+msgstr "Danh sách lưới đan"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
+"05210400.xhp\n"
"par_id3144438\n"
-"19\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering symbol. If the current paragraph style uses an indent, the amount you enter here is added to the indent.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Nhập khoảng cách cần để lại giữa lề bên trái của trang (hay cạnh bên trái của đối tượng văn bản) và cạnh bên trái của ký hiệu đánh số. Nếu kiểu dáng đoạn văn hiện thời cũng thụt vào, khoảng cách bạn nhập sẽ được thêm vào khoảng thụt gốc.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS\">Lists the available hatching patterns. Click the hatching pattern that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS\">Liệt kê các mẫu lưới đan sẵn sàng. Nhấn vào mẫu lưới đan bạn muốn áp dụng, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3155179\n"
-"7\n"
+"05210400.xhp\n"
+"hd_id3153823\n"
+"15\n"
"help.text"
-msgid "Relative"
-msgstr "Tương đối"
+msgid "Add"
+msgstr "Thêm"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3146137\n"
-"17\n"
+"05210400.xhp\n"
+"par_id3148924\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/relative\">Indents the current level relative to the previous level in the list hierarchy.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/relative\">Thụt vào cấp hiện tại tương ứng so với cấp trước trong phân cấp danh sách.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD\">Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD\">Thêm vào danh sách hiện thời một mẫu lưới đan riêng. Xác định các thuộc tính về mẫu lưới đan, rồi nhấn vào nút này.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3150245\n"
-"28\n"
+"05210400.xhp\n"
+"hd_id3147620\n"
+"17\n"
"help.text"
-msgid "Width of numbering"
-msgstr "Bề rộng đánh số"
+msgid "Modify"
+msgstr "Sửa"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3150129\n"
-"29\n"
+"05210400.xhp\n"
+"par_id3156023\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/indentatmf\">Enter the amount of space to leave between the left edge of the numbering symbol and the left edge of the text.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/indentatmf\">Nhập khoảng cách cần để lại giữa lề bên trái của ký hiệu đánh số và cạnh bên trái của văn bản.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY\">Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY\">Áp dụng cho mẫu lưới đan đã chọn các thuộc tính lưới đan hiện thời. Bạn cũng có thể lưu mẫu dưới tên khác.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3156194\n"
-"8\n"
+"05210400.xhp\n"
+"hd_id3147304\n"
+"25\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Minimum space numbering <-> text</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Giãn cách ít nhất: đánh số và văn bản </caseinline></switchinline>"
+msgid "Load Hatches List"
+msgstr "Nạp danh sách lưới đan"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3147574\n"
-"18\n"
+"05210400.xhp\n"
+"par_id3156343\n"
+"26\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the minimum amount of space to leave between the right edge of the numbering symbol and the left edge of the text.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Nhập khoảng cách tối thiểu cần để lại giữa lề bên phải của ký hiệu đánh số và cạnh bên trái của văn bản.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD\">Loads a different list of hatching patterns.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD\">Nạp một danh sách mẫu lưới đan khác.</ahelp>"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3154367\n"
-"10\n"
+"05210400.xhp\n"
+"hd_id3154347\n"
+"27\n"
"help.text"
-msgid "Default"
-msgstr "Mặc định"
+msgid "Save Hatches List"
+msgstr "Lưu dang sách lưới đan"
-#: 06050600.xhp
+#: 05210400.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3156082\n"
-"20\n"
+"05210400.xhp\n"
+"par_id3152811\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">Resets the indent and the spacing values to the default values.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">Đặt lại giá trị thụt vào và giãn cách về giá trị mặc định.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE\">Saves the current list of hatching patterns, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE\">Lưu danh sách mẫu lưới đan, để nạp lại sau.</ahelp>"
-#: 06050600.xhp
+#: 05210500.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3147228\n"
+"05210500.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Paragraph alignment\">Paragraph alignment</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề đoạn văn\">Canh lề đoạn văn</link>"
+msgid "Bitmap"
+msgstr "Ảnh bitmap"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"tit\n"
+"05210500.xhp\n"
+"bm_id3155619\n"
"help.text"
-msgid "Business"
-msgstr "Kinh doanh"
+msgid "<bookmark_value>bitmaps; patterns</bookmark_value><bookmark_value>areas; bitmap patterns</bookmark_value><bookmark_value>pixel patterns</bookmark_value><bookmark_value>pixel editor</bookmark_value><bookmark_value>pattern editor</bookmark_value>"
+msgstr "<bookmark_value>ảnh bitmap; mẫu</bookmark_value><bookmark_value>vùng; mẫu bitmap </bookmark_value><bookmark_value>mẫu điểm ảnh</bookmark_value><bookmark_value>bộ chỉnh sửa điểm ảnh</bookmark_value><bookmark_value>bộ chỉnh sửa mẫu</bookmark_value>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3152942\n"
+"05210500.xhp\n"
+"hd_id3155619\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">Business</link>"
-msgstr "<link href=\"text/shared/01/01010304.xhp\" name=\"Kinh doanh\">Kinh doanh</link>"
+msgid "<link href=\"text/shared/01/05210500.xhp\" name=\"Bitmap\">Bitmap</link>"
+msgstr "<link href=\"text/shared/01/05210500.xhp\" name=\"Ảnh bitmap\">Ảnh bitmap</link>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3151097\n"
+"05210500.xhp\n"
+"par_id3149495\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"\">Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
-msgstr "<ahelp hid=\"\">Chứa các thông tin liên lạc cho danh thiếp dùng một bố tri từ phân loại « Business Card, Work » (danh thiếp, việc làm). Bố trí danh thiếp được chọn trên thẻ <emph>Danh thiếp</emph>.</ahelp>"
+msgid "<ahelp hid=\"HID_AREA_BITMAP\">Select a bitmap that you want to use as a fill pattern, or create your own pixel pattern. You can also import bitmaps, and save or load bitmap lists.</ahelp>"
+msgstr "<ahelp hid=\"HID_AREA_BITMAP\">Chọn một ảnh bitmap cần dùng làm mẫu tô đầy, hoặc tạo một mẫu điểm ảnh mới. Bạn cũng có thể nhập khẩu ảnh mảng, và lưu hay nạp danh sách các ảnh bitmap.</ahelp>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3149549\n"
+"05210500.xhp\n"
+"hd_id3148585\n"
"3\n"
"help.text"
-msgid "Business data"
-msgstr "Dữ liệu kinh doanh"
+msgid "Pattern Editor"
+msgstr "Sửa hình mẫu"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3156027\n"
+"05210500.xhp\n"
+"par_id3147226\n"
"4\n"
"help.text"
-msgid "Enter the contact information that you want to include on your business card."
-msgstr "Nhập thông tin liên lạc bạn muốn thấy trên danh thiếp của bạn."
+msgid "Use this editor to create a simple, two-color, 8x8 pixel bitmap pattern."
+msgstr "Dùng chức năng này để tạo một mẫu bitmap 8×8 màu đôi đơn giản."
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3155892\n"
+"05210500.xhp\n"
+"hd_id3145669\n"
+"5\n"
+"help.text"
+msgid "Grid"
+msgstr "Lưới"
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3150774\n"
+"6\n"
+"help.text"
+msgid "To enable this editor, select the <emph>Blank</emph> bitmap in the bitmap list."
+msgstr "Để hiệu lực chức năng này, chọn ảnh bitmap<emph>Trắng</emph> (Blank) trong danh sách ảnh bitmap."
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3145072\n"
"17\n"
"help.text"
-msgid "If you want to include your name on a business card, enter your name on the <emph>Private </emph>tab. Then choose a layout on the <emph>Business Cards </emph>tab that includes a name placeholder."
-msgstr "Muốn thấy tên của bạn trên một danh thiếp thì nhập tên vào thẻ <emph>Cá nhân</emph>. Sau đó, trên thẻ <emph>Danh thiếp </emph>, chọn một bố trí chứa một bộ giữ chỗ cho tên."
+msgid "Foreground color"
+msgstr "Màu cảnh gần"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3150355\n"
-"5\n"
+"05210500.xhp\n"
+"par_id3155535\n"
+"18\n"
"help.text"
-msgid "Company 2nd line"
-msgstr "Công ty (dòng 2)"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_COLOR\">Select a foreground color, and then click in the grid to add a pixel to the pattern.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_COLOR\">Chọn màu cảnh gần, sau đó nhấn vào lưới để thêm vào mẫu một điểm ảnh.</ahelp>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3153031\n"
-"6\n"
+"05210500.xhp\n"
+"hd_id3149398\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_COMP_EXT\">Enter additional company details.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_COMP_EXT\">Nhập thêm thông tin về công ty.</ahelp>"
+msgid "Background color"
+msgstr "Màu nền"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3150771\n"
+"05210500.xhp\n"
+"par_id3148538\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR\">Select a background color for your bitmap pattern.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR\">Chọn màu nền cho mẫu bitmap.</ahelp>"
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3147275\n"
"7\n"
"help.text"
-msgid "Slogan"
-msgstr "Khẩu hiệu"
+msgid "Bitmap Pattern"
+msgstr "Mẫu bitmap"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3156327\n"
+"05210500.xhp\n"
+"par_id3146847\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_SLOGAN\">Enter the slogan of your company.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_SLOGAN\">Nhập khẩu hiệu của công ty của bạn.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BITMAPS\">Select a bitmap in the list, and then click <emph>OK</emph> to apply the pattern to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BITMAPS\">Chọn một ảnh bitmap trong danh sách, sau đó nhấn vào nút <emph>OK</emph> để áp dụng mẫu cho đối tượng được chọn.</ahelp>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3153146\n"
+"05210500.xhp\n"
+"hd_id3150275\n"
"9\n"
"help.text"
-msgid "Country"
-msgstr "Quốc gia"
+msgid "Add"
+msgstr "Thêm"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3155449\n"
+"05210500.xhp\n"
+"par_id3154306\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_STATE\">Enter the name of the country where your business is located.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_STATE\">Nhập tên của nước công ty của bạn ở.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_ADD\">Adds a bitmap that you created in the <emph>Pattern Editor </emph>to the current list.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_ADD\">Thêm vào danh sách hiện thời ảnh bitmap bạn đã tạo dùng chức năng <emph>Sửa hình mẫu</emph>.</ahelp>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3154380\n"
+"05210500.xhp\n"
+"hd_id3158432\n"
"11\n"
"help.text"
-msgid "Phone"
-msgstr "Điện thoại"
+msgid "Modify"
+msgstr "Sửa"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3154046\n"
+"05210500.xhp\n"
+"par_id3153827\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_PHONE\">Enter your business telephone number.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_PHONE\">Nhập số điện thoại ở chỗ làm của bạn.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_MODIFY\">Replaces a bitmap that you created in the <emph>Pattern Editor</emph> with the current bitmap pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_MODIFY\">Thay thế ảnh mảng bạn đã tạo dùng chức năng <emph>Sửa hình mẫu</emph> bằng mẫu bitmap hiện thời. Bạn cũng có thể lưu mẫu này dưới tên khác.</ahelp>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3158430\n"
+"05210500.xhp\n"
+"hd_id3149516\n"
"13\n"
"help.text"
-msgid "Mobile"
-msgstr "Di động"
+msgid "Import"
+msgstr "Nhập"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3156329\n"
+"05210500.xhp\n"
+"par_id3148473\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_MOBILE\">Nhập số điện thoại di động việc làm của bạn.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_IMPORT\">Tìm ảnh bitmap cần nhập khẩu, sau đó nhấn vào nút <emph>Mở</emph>. Ảnh bitmap nhập vào được thêm vào danh sách các ảnh bitmap sẵn sàng.</ahelp>"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3154306\n"
-"15\n"
+"05210500.xhp\n"
+"hd_id3159166\n"
+"21\n"
"help.text"
-msgid "Homepage"
-msgstr "Trang chủ"
+msgid "Load Bitmap List"
+msgstr "Nạp danh sách ảnh bitmap"
-#: 01010304.xhp
+#: 05210500.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3148563\n"
-"16\n"
+"05210500.xhp\n"
+"par_id3155341\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_WWW\">Enter the address of your company's internet homepage.</ahelp>"
-msgstr "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_WWW\">Nhập địa chỉ của trang chủ Internet của công ty của bạn.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_LOAD\">Loads a different list of bitmaps.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_LOAD\">Nạp danh sách ảnh bitmap khác.</ahelp>"
-#: 01110100.xhp
+#: 05210500.xhp
msgctxt ""
-"01110100.xhp\n"
-"tit\n"
+"05210500.xhp\n"
+"hd_id3151246\n"
+"23\n"
"help.text"
-msgid "Template Management"
-msgstr "Quản lý mẫu"
+msgid "Save Bitmap List"
+msgstr "Lưu danh sách ảnh bitmap"
-#: 01110100.xhp
+#: 05210500.xhp
msgctxt ""
-"01110100.xhp\n"
-"bm_id3148668\n"
+"05210500.xhp\n"
+"par_id3151385\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>documents; organizing</bookmark_value><bookmark_value>organizing; templates</bookmark_value><bookmark_value>templates; organizing</bookmark_value><bookmark_value>styles;printing styles used in a document</bookmark_value><bookmark_value>styles; copying between documents</bookmark_value><bookmark_value>default templates; organizing</bookmark_value><bookmark_value>deleting; templates</bookmark_value><bookmark_value>templates; deleting</bookmark_value><bookmark_value>templates; importing and exporting</bookmark_value><bookmark_value>importing; templates</bookmark_value><bookmark_value>exporting; templates</bookmark_value>"
-msgstr "<bookmark_value>tài liệu; tổ chức</bookmark_value><bookmark_value>tổ chức; mẫu</bookmark_value><bookmark_value>mẫu; tổ chức</bookmark_value><bookmark_value>kiểu dáng;kiểu dáng in được dùng trong tài liệu</bookmark_value><bookmark_value>kiểu dáng; sao chép giữa tài liệu</bookmark_value><bookmark_value>mẫu mặc định; tổ chức</bookmark_value><bookmark_value>xoá; mẫu</bookmark_value><bookmark_value>mẫu; xoá</bookmark_value><bookmark_value>mẫu; nhập/xuất khẩu</bookmark_value><bookmark_value>nhập khẩu; mẫu</bookmark_value><bookmark_value>xuất khẩu; mẫu</bookmark_value>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_SAVE\">Saves the current list of bitmaps, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_SAVE\">Lưu danh sách ảnh bitmap hiện thời, để nạp lại sau.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3148585\n"
-"40\n"
+"05210600.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110100.xhp\" name=\"Template Management\">Template Management</link>"
-msgstr "<link href=\"text/shared/01/01110100.xhp\" name=\"Quản lý mẫu\">Quản lý mẫu</link>"
+msgid "Shadow"
+msgstr "Bóng"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3152924\n"
-"2\n"
+"05210600.xhp\n"
+"bm_id3150014\n"
"help.text"
-msgid "<ahelp hid=\".uno:Organizer\">Opens the <emph>Template Management</emph> dialog where you can organize templates and define default templates.</ahelp>"
-msgstr "<ahelp hid=\".uno:Organizer\">Mở hộp thoại <emph>Quản lý mẫu</emph> trong đó bạn có thể tổ chức các mẫu và xác định mẫu mặc định.</ahelp>"
+msgid "<bookmark_value>areas; shadows</bookmark_value><bookmark_value>shadows; areas</bookmark_value>"
+msgstr "<bookmark_value>vùng; bóng</bookmark_value><bookmark_value>bóng; vùng</bookmark_value>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3152801\n"
-"3\n"
+"05210600.xhp\n"
+"hd_id3150014\n"
+"1\n"
"help.text"
-msgid "Left and Right Selection List (Templates / Documents)"
-msgstr "Danh sách lựa chọn bên trái/phải (Tài liệu/Mẫu)"
+msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Bóng\">Bóng</link>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3149177\n"
+"05210600.xhp\n"
+"par_id3155069\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_CTL_ORGANIZER_RIGHT\">Displays the available template categories or opened $[officename] files. To change the contents of the list, select <emph>Templates</emph> or <emph>Documents</emph> in the box below.</ahelp>"
-msgstr "<ahelp hid=\"HID_CTL_ORGANIZER_RIGHT\">Hiển thị các phân loại mẫu sẵn sàng hay các tập tin $[officename] còn mở. Để thay đổi nội dung của danh sách, chọn mục <emph>Mẫu</emph> hay <emph>Tài liệu</emph> trong hộp bên dưới.</ahelp>"
+msgid "<ahelp hid=\"HID_AREA_SHADOW\">Add a shadow to the selected drawing object, and define the properties of the shadow.</ahelp>"
+msgstr "<ahelp hid=\"HID_AREA_SHADOW\">Thêm bóng đổ vào đối tượng vẽ đã chọn, và xác định các thuộc tính về bóng.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3166410\n"
-"34\n"
+"05210600.xhp\n"
+"hd_id3153748\n"
+"3\n"
"help.text"
-msgid "To change the default template path, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\">$[officename] - Paths</link></emph>."
-msgstr ""
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154810\n"
-"6\n"
+"05210600.xhp\n"
+"par_id3153345\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_ORGANIZE:LB_RIGHT_TYP\">Select <emph>Templates</emph> or <emph>Documents</emph> to change the contents that are displayed in the list above.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:LISTBOX:DLG_ORGANIZE:LB_RIGHT_TYP\">Hãy chọn mục <emph>Mẫu</emph> hay <emph>Tài liệu</emph> để thay đổi nội dung hiển thị trong danh sách bên trên.</ahelp>"
+msgid "Set the properties of the shadow that you want to apply."
+msgstr "Đặt các thuộc tính về bóng cần áp dụng."
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3149191\n"
-"36\n"
+"05210600.xhp\n"
+"hd_id3150774\n"
+"5\n"
"help.text"
-msgid "Template categories are represented by folder icons. To view the template files for a category, double-click a folder."
-msgstr "Phân loại mẫu được đại diện bởi biểu tượng thư mục. Để xem các tập tin mẫu của một phân loại nào đó, chỉ nhấn đôi vào thư mục đó."
+msgid "Use shadow"
+msgstr "Dùng bóng"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3159166\n"
+"05210600.xhp\n"
+"par_id3154749\n"
+"6\n"
"help.text"
-msgid "To view the styles that are used in a file, double-click the file name, and then double-click the <emph>Styles</emph> icon."
-msgstr "Để xem các kiểu dáng được dùng trong một tập tin nào đó, nhấn đôi vào tên tập tin, sau đó nhấn đôi vào biểu tượng <emph>Kiểu dáng</emph>."
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW\">Adds a shadow to the selected drawing object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW\">Thêm bóng đổ vào đối tượng vẽ đã chọn.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3155504\n"
-"35\n"
+"05210600.xhp\n"
+"hd_id3166460\n"
+"7\n"
"help.text"
-msgid "To copy a style, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and drag the style from one file to another file. To move a style, drag the style from one file to another file."
-msgstr ""
+msgid "Position"
+msgstr "Vị trí"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3149578\n"
+"05210600.xhp\n"
+"par_id3146138\n"
"8\n"
"help.text"
-msgid "Commands"
-msgstr "Lệnh"
+msgid "<ahelp hid=\"HID_TPSHADOW_CTRL\">Click where you want to cast the shadow.</ahelp>"
+msgstr "<ahelp hid=\"HID_TPSHADOW_CTRL\">Nhấn vào vị trí ở đó bạn muốn đổ bóng.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3149514\n"
+"05210600.xhp\n"
+"hd_id3154897\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MENUBUTTON:DLG_ORGANIZE:BTN_EDIT\">Contains commands for managing and editing your templates and documents.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MENUBUTTON:DLG_ORGANIZE:BTN_EDIT\">Chức những câu lệnh để quản lý và chỉnh sửa các mẫu và tài liệu của bạn.</ahelp>"
-
-#: 01110100.xhp
-msgctxt ""
-"01110100.xhp\n"
-"par_id3149575\n"
-"37\n"
-"help.text"
-msgid "Depending on the type of file you select in the list, the following commands are available:"
-msgstr "Phụ thuộc vào kiểu tập tin bạn chọn trong danh sách, có sẵn những lệnh này:"
+msgid "Distance"
+msgstr "Khoảng cách"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3153062\n"
+"05210600.xhp\n"
+"par_id3146847\n"
"10\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE\">Enter the distance that you want the shadow to be offset from the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE\">Nhập khoảng cách bóng nên đổ từ đối tượng đã chọn.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3151384\n"
+"05210600.xhp\n"
+"hd_id3150276\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_NEW\">Creates a new template category.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_NEW\">Tạo một phân loại mẫu mới.</ahelp>"
+msgid "Color"
+msgstr "Màu"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3146794\n"
+"05210600.xhp\n"
+"par_id3155829\n"
"12\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR\">Select a color for the shadow.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR\">Chọn màu cho bóng.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154758\n"
+"05210600.xhp\n"
+"hd_id3148992\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_DELETE\">Deletes the current selection.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_DELETE\">Xoá mục chọn hiện thời.</ahelp>"
+msgid "Transparency"
+msgstr "Trong suốt"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3154388\n"
+"05210600.xhp\n"
+"par_id3148642\n"
"14\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT\">Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT\">Nhập phần trăm, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn) để ghi rõ tính trong suốt của bóng.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3156435\n"
-"15\n"
+"05210600.xhp\n"
+"hd_id3154810\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_EDIT\">Opens the selected template for editing.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_EDIT\">Mở mẫu được chọn, để chỉnh sửa.</ahelp>"
+msgid "Shadow"
+msgstr "Bóng"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3151106\n"
-"16\n"
+"05210600.xhp\n"
+"par_id3148924\n"
+"15\n"
"help.text"
-msgid "Import Templates"
-msgstr "Nhập mẫu"
+msgid "<ahelp hid=\".uno:FillShadow\">Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillShadow\">Thêm bóng đổ vào đối tượng đã chọn. Đối tượng đã có bóng đổ thì gỡ bỏ bóng. Chưa chọn đối tượng khi nhấn vào biểu tượng này thì bóng được thêm vào đối tượng kế tiếp bạn vẽ.</ahelp>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3148798\n"
-"17\n"
+"05210600.xhp\n"
+"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_COPY_FROM\">Imports an additional template. To import a template, select a template folder in the list, click the <emph>Command</emph> button, and then select <emph>Import template</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_COPY_FROM\">Nhập khẩu một mẫu thêm. Để nhập khẩu mẫu, chọn một thư mục mẫu trong danh sách, được cái nút <emph>Lệnh</emph>, rồi chọn mục <emph>Nhập mẫu</emph>.</ahelp>"
+msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Biểu tượng</alt></image>"
-#: 01110100.xhp
+#: 05210600.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3154821\n"
-"19\n"
+"05210600.xhp\n"
+"par_id3154935\n"
+"16\n"
"help.text"
-msgid "Export Template"
-msgstr "Xuất mẫu"
+msgid "Shadow"
+msgstr "Bóng"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3153104\n"
-"20\n"
+"05210700.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_COPY_TO\">Exports the selected template.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_COPY_TO\">Xuất khẩu mẫu đã chọn.</ahelp>"
+msgid "Transparency"
+msgstr "Trong suốt"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3150651\n"
-"26\n"
+"05210700.xhp\n"
+"bm_id3146807\n"
"help.text"
-msgid "Print"
-msgstr "In"
+msgid "<bookmark_value>transparency;areas</bookmark_value><bookmark_value>areas; transparency</bookmark_value>"
+msgstr "<bookmark_value>tính trong suốt;vùng</bookmark_value><bookmark_value>vùng; tính trong suốt</bookmark_value>"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154946\n"
-"27\n"
+"05210700.xhp\n"
+"hd_id3146807\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_PRINT\">Prints the name and properties of the styles that are used in the file.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_PRINT\">In ra tên và các thuộc tính của những kiểu dáng được dùng trong tập tin.</ahelp>"
+msgid "<link href=\"text/shared/01/05210700.xhp\" name=\"Transparency\">Transparency</link>"
+msgstr "<link href=\"text/shared/01/05210700.xhp\" name=\"Tính trong suốt\">Tính trong suốt</link>"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3150767\n"
-"28\n"
+"05210700.xhp\n"
+"par_id3149748\n"
+"2\n"
"help.text"
-msgid "Printer Setup"
-msgstr "Thiết lập Máy in"
+msgid "<ahelp hid=\".\">Set the transparency options for the fill that you apply to the selected object.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt các tùy chọn tính trong suốt về mẫu tô đầy bạn áp dụng cho đối tượng đã chọn.</ahelp>"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3147086\n"
-"29\n"
+"05210700.xhp\n"
+"hd_id3152363\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_PRINTER_SETUP\">Changes the printer and its settings for the selected document.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_PRINTER_SETUP\">Thay đổi máy in và thiết lập của nó cho tài liệu đã chọn.</ahelp>"
+msgid "Transparency mode"
+msgstr "Chế độ trong suốt"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3143231\n"
-"30\n"
+"05210700.xhp\n"
+"par_id3149283\n"
+"3\n"
"help.text"
-msgid "Update"
-msgstr "Cập nhật"
+msgid "Specify the type of transparency that you want to apply."
+msgstr "Ghi rõ kiểu tính trong suốt bạn muốn áp dụng."
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3147228\n"
-"31\n"
+"05210700.xhp\n"
+"hd_id3148585\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_RESCAN\">Updates the contents of the lists.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_RESCAN\">Cập nhật nội dung của các kiểu dáng.</ahelp>"
+msgid "No transparency"
+msgstr "Không trong suốt"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3145607\n"
-"41\n"
+"05210700.xhp\n"
+"par_id3147226\n"
+"5\n"
"help.text"
-msgid "Set As Default Template"
-msgstr "Đặt làm mẫu mặc định"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF\">Turns off color transparency.</ahelp> This is the default setting."
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF\">Tắt tính trong suốt trong màu sắc.</ahelp> Đây là thiết lập mặc định."
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3147353\n"
-"42\n"
+"05210700.xhp\n"
+"hd_id3152425\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_STDTEMPLATE_ADD\">Uses the selected template as the default template when you create a new $[officename] document of the same type.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_STDTEMPLATE_ADD\">Dùng mẫu đã chọn như là mẫu mặc định khi bạn tạo một tài liệu $[officename] mới cùng kiểu.</ahelp>"
+msgid "Transparency"
+msgstr "Trong suốt"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3153768\n"
-"43\n"
+"05210700.xhp\n"
+"par_id3150693\n"
+"7\n"
"help.text"
-msgid "Reset Default Template"
-msgstr "Đặt lại mẫu mặc định"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR\">Turns on color transparency. Select this option, and then enter a number in the box, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR\">Bật tính trong suốt trong màu sắc. Bật tùy chọn này, sau đó nhập vào ô một con số, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn).</ahelp>"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3155432\n"
-"44\n"
+"05210700.xhp\n"
+"hd_id3155941\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_STDTEMPLATE_DEL\">Select a $[officename] document type to reset the default template to the original template.</ahelp>"
-msgstr "<ahelp hid=\"HID_ORGANIZE_STDTEMPLATE_DEL\">Trước tiên chọn một kiểu tài liệu $[officename], sau đó đặt lại mẫu mặc định về mẫu gốc.</ahelp>"
+msgid "Transparency spin button"
+msgstr "Nút xoay trong suốt"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3159196\n"
-"38\n"
+"05210700.xhp\n"
+"par_id3155892\n"
+"15\n"
"help.text"
-msgid "Address Book"
-msgstr "Sổ địa chỉ"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT\">Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent).</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT\">Điều chỉnh tính trong suốt của màu tô đầy hiện thời. Nhập vào ô một con số, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn).</ahelp>"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154472\n"
-"39\n"
+"05210700.xhp\n"
+"hd_id3149827\n"
+"11\n"
"help.text"
-msgid "Edit the field assignments and the data source for the address book."
-msgstr "Chỉnh sửa các sự gán trường và nguồn dữ liệu cho Sổ địa chỉ."
+msgid "Gradient"
+msgstr "Dải màu"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3154151\n"
-"32\n"
+"05210700.xhp\n"
+"par_id3155338\n"
+"12\n"
"help.text"
-msgid "File"
-msgstr "Tập tin"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT\">Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT\">Áp dụng cho màu tô đầy hiện thời một dải màu trong suốt. Bật tùy chọn này, sau đó đặt các thuộc tính về dải màu.</ahelp>"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3156005\n"
-"33\n"
+"05210700.xhp\n"
+"hd_id3150443\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_ORGANIZE:BTN_FILES\">Locate a file that you want to add to the document list, and then click<emph> Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_ORGANIZE:BTN_FILES\">Tìm tập tin bạn muốn thêm vào danh sách tài liệu, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
+msgid "Type"
+msgstr "Kiểu"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3153095\n"
+"05210700.xhp\n"
+"par_id3149398\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer setup\">Printer setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Thiết lập Máy in\">Thiết lập Máy in</link>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES\">Select the type of transparency gradient that you want to apply.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES\">Chọn kiểu dải màu trong suốt bạn muốn áp dụng.</ahelp>"
-#: 01110100.xhp
+#: 05210700.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3150012\n"
+"05210700.xhp\n"
+"hd_id3145317\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\">Templates: Address Book Assignment</link>"
-msgstr "<link href=\"text/shared/01/01110101.xhp\" name=\"Mẫu > Gán Sổ địa chỉ\">Mẫu > Gán Sổ địa chỉ</link>"
+msgid "Center X"
+msgstr "Tâm X"
-#: 05070500.xhp
+#: 05210700.xhp
msgctxt ""
-"05070500.xhp\n"
-"tit\n"
+"05210700.xhp\n"
+"par_id3155583\n"
+"20\n"
"help.text"
-msgid "Align Vertical Center"
-msgstr "Canh lề giữa nằm dọc"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X\">Enter the horizontal offset for the gradient.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X\">Nhập khoảng dịch theo chiều ngang đối với dải màu.</ahelp>"
-#: 05070500.xhp
+#: 05210700.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"05210700.xhp\n"
+"hd_id3154897\n"
+"21\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070500.xhp\" name=\"Align Vertical Center\">Align Vertical Center</link>"
-msgstr "<link href=\"text/shared/01/05070500.xhp\" name=\"Canh lề giữa nằm dọc\">Canh lề giữa nằm dọc</link>"
+msgid "Center Y"
+msgstr "Tâm Y"
-#: 05070500.xhp
+#: 05210700.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3160463\n"
-"2\n"
+"05210700.xhp\n"
+"par_id3159399\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignVerticalCenter\">Vertically centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the vertical center of the page.</ahelp>"
-msgstr "<ahelp hid=\".uno:AlignVerticalCenter\">Đặt vào giữa theo chiều dọc các đối tượng đã chọn. Chỉ chọn một đối tượng trong Draw hay Impress thì điểm giữa của đối tượng được chỉnh canh theo đường giữa theo chiều dọc của trang.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y\">Enter the vertical offset for the gradient.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y\">Nhập khoảng dịch theo chiều ngang đối với dải màu.</ahelp>"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"tit\n"
+"05210700.xhp\n"
+"hd_id3158430\n"
+"23\n"
"help.text"
-msgid "Exceptions"
-msgstr "Ngoại lệ"
+msgid "Angle"
+msgstr "Góc"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"05210700.xhp\n"
+"par_id3155829\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040300.xhp\" name=\"Exceptions\">Exceptions</link>"
-msgstr "<link href=\"text/shared/01/06040300.xhp\" name=\"Ngoại lệ\">Ngoại lệ</link>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE\">Enter a rotation angle for the gradient.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE\">Nhập góc xoay đối với dải màu.</ahelp>"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3152876\n"
-"2\n"
+"05210700.xhp\n"
+"hd_id3153320\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFAPAGE_AUTOCORR_EXCEPT\">Specify the abbreviations or letter combinations that you do not want $[officename] to correct automatically.</ahelp>"
-msgstr "<ahelp hid=\"HID_OFAPAGE_AUTOCORR_EXCEPT\">Ghi rõ các từ viết tắt và/hay tổ hợp chữ mà bạn không muốn $[officename] tự động sửa chữa.</ahelp>"
+msgid "Border"
+msgstr "Viền"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3154926\n"
-"17\n"
+"05210700.xhp\n"
+"par_id3149784\n"
+"32\n"
"help.text"
-msgid "The exceptions that you define depend on the current language setting. If you want, you can change the language setting by selecting a different language in the <emph>Replacements and exceptions for language</emph> box."
-msgstr "Những ngoại lệ bạn xác định thì phụ thuộc vào thiết lập ngôn ngữ hiện thời. Bạn cũng có thể thay đổi thiết lập ngôn ngữ, bằng cách chọn ngôn ngữ khác trong hộp <emph>Thay thế và ngoại lệ cho ngôn ngữ</emph>."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER\">Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER\">Nhập hệ số theo đó bạn muốn điều chỉnh vùng trong suốt của dải màu. Giá trị mặc định là 0%.</ahelp>"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3149205\n"
-"15\n"
+"05210700.xhp\n"
+"hd_id3144439\n"
+"26\n"
"help.text"
-msgid "Replacements and exceptions for language:"
-msgstr "Thay thế và ngoại lệ cho ngôn ngữ :"
+msgid "Start value"
+msgstr "Giá trị đầu"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3156027\n"
-"16\n"
+"05210700.xhp\n"
+"par_id3150117\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_AUTOCORR_LANGUAGE\">Select the language for which you want to create or edit the replacement rules.</ahelp> $[officename] first searches for exceptions that are defined for the language at the current cursor position in the document, and then searches the remaining languages."
-msgstr "<ahelp hid=\"HID_AUTOCORR_LANGUAGE\">Chọn ngôn ngữ cho đó bạn muốn tạo hay chỉnh sửa quy tắc thay thế.</ahelp> $[officename] tìm kiếm đầu tiên ngoại lệ được xác định cho ngôn ngữ ở vị trí con trỏ hiện tại trong tài liệu, sau đó tì kiếm cho các ngôn ngữ còn lại."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE\">Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE\">Nhập giá trị tính trong suốt cho điểm bắt đầu dải màu, mà 0% là đục hoàn toàn và 100% là trong suốt hoàn toàn.</ahelp>"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3153681\n"
-"3\n"
+"05210700.xhp\n"
+"hd_id3152350\n"
+"28\n"
"help.text"
-msgid "Abbreviations (no subsequent capital)"
-msgstr "Từ viết tắt (không có chữ hoa sau)"
+msgid "End value"
+msgstr "Giá trị cuối"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3156410\n"
-"4\n"
+"05210700.xhp\n"
+"par_id3148924\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV\">Type an abbreviation followed by a period, and then click <emph>New</emph>. This prevents $[officename] from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV\">Gõ từ viết tắt có dấu chấm theo sau, sau đó bấm nút <emph>Mới</emph>. Hành động này ngăn cản $[officename] tự động viết hoa chữ đầu của từ nằm sau dấu chấm ở kết thúc từ viết tắt.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE\">Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE\">Nhập cho điểm cuối của dải màu một giá trị tính trong suốt, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn).</ahelp>"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3149751\n"
-"13\n"
+"05210700.xhp\n"
+"hd_id3149575\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV\">Lists the abbreviations that are not automatically corrected.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
-msgstr "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV\">Liệt kê các từ viết tắt không được tự động sửa chữa.</ahelp> Để gỡ bỏ mục khỏi danh sách, lựa chọn mục, sau đó bấm nút <emph>Delete</emph>."
+msgid "Preview"
+msgstr "Xem thử"
-#: 06040300.xhp
+#: 05210700.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3151110\n"
-"6\n"
+"05210700.xhp\n"
+"par_id3149798\n"
+"10\n"
"help.text"
-msgid "Words with TWo INitial CApitals"
-msgstr "Từ có HAi CHữ CÁi HOa"
+msgid "Use the preview to view your changes before you apply the transparency effect to the color fill of the selected object."
+msgstr "Xem các thay đổi trong ô xem thử trước khi áp dụng hiệu ứng tính trong suốt cho mẫu tô đầy màu của đối tượng đã chọn."
-#: 06040300.xhp
+#: 05220000.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3154749\n"
-"7\n"
+"05220000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS\">Type the word or abbreviation that starts with two capital letters that you do not want $[officename] to change to one initial capital. For example, enter PC to prevent $[officename] from changing PC to Pc.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS\">Gõ từ hay từ viết tắt mà bắt đầu với hai chữ hoa mà bạn không muốn $[officename] chuyển đổi sang chỉ một chữ hoa đầu. Thí dụ, gõ « VN » để ngăn cản $[officename] chuyển đổi « VN » sang « Vn ».</ahelp>"
+msgid "Text"
+msgstr "Văn bản"
-#: 06040300.xhp
+#: 05220000.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3143271\n"
-"14\n"
+"05220000.xhp\n"
+"bm_id3146856\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS\">Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
-msgstr "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS\">Liệt kê các từ hay từ viết tắt mà bắt đầu với hai chữ hoa, và không được ta sửa chữa. Tất cả các từ bắt đầu với hai chữ hoa thì được liệt kê trong trường này.</ahelp> Để gỡ bỏ mục khỏi danh sách, lựa chọn mục, sau đó bấm nút <emph>Delete</emph>."
+msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
+msgstr "<bookmark_value>văn bản; đối tượng văn bản/vẽ</bookmark_value><bookmark_value>đối tượng vẽ; chứa văn bản</bookmark_value><bookmark_value>khung; văn bản khít vừa khung</bookmark_value>"
-#: 06040300.xhp
+#: 05220000.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3155503\n"
-"8\n"
+"05220000.xhp\n"
+"hd_id3146856\n"
+"1\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/shared/01/05220000.xhp\" name=\"Văn bản\">Văn bản</link>"
-#: 06040300.xhp
+#: 05220000.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3147573\n"
-"9\n"
+"05220000.xhp\n"
+"par_id3150279\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS\">Adds the current entry to the list of exceptions.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS\">Thêm mục nhập hiện thời vào danh sách ngoại lệ.</ahelp>"
+msgid "<ahelp hid=\"HID_PAGE_TEXTATTR\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp>"
+msgstr "<ahelp hid=\"HID_PAGE_TEXTATTR\">Đặt các thuộc tính kiểu bố trí và thả neo về văn bản trên đối tượng kiểu vẽ hay văn bản đã chọn.</ahelp>"
-#: 06040300.xhp
+#: 05220000.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3149762\n"
-"10\n"
+"05220000.xhp\n"
+"par_id3154794\n"
+"4\n"
"help.text"
-msgid "AutoInclude"
-msgstr "Tự động gồm"
+msgid "The text is positioned relative to the edges of the drawing or text object."
+msgstr "Văn bản được sắp đặt tương đối so với các cạnh của đối tượng."
-#: 06040300.xhp
+#: 05220000.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3155829\n"
-"11\n"
+"05220000.xhp\n"
+"hd_id3149031\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS\">Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the <emph>Correct TWo INitial CApitals</emph> option or the Capitalize<emph> first letter of every sentence</emph> option are selected in the <emph>[T]</emph> column on<link href=\"text/shared/01/06040100.xhp\" name=\"Options\"><emph>Options</emph></link> tab of this dialog. </ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS\">Tự động thêm các từ hay từ viết tắt mà bắt đầu với hai chữ hoa vào danh sách ngoại lệ tương ứng. Tính năng này chỉ có tác động nếu tùy chọn <emph>Sửa HAi CHữ HOa ĐÂu TIên</emph> hay <emph>Viết hoa chữ đầu của mỗi câu</emph> được hiệu lực trong cột <emph>[T]</emph> trên thẻ <link href=\"text/shared/01/06040100.xhp\" name=\"Tùy chọn\"><emph>Tùy chọn</emph></link> của hộp thoại này. </ahelp>"
+msgid "Text"
+msgstr "Văn bản"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"tit\n"
+"05220000.xhp\n"
+"hd_id3150445\n"
+"7\n"
"help.text"
-msgid "Export as PDF"
-msgstr "Xuất dạng PDF"
+msgid "Fit width to text"
+msgstr "Vừa bề rộng khít văn bản"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"bm_id3149532\n"
+"05220000.xhp\n"
+"par_id3145629\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>PDF;export</bookmark_value> <bookmark_value>portable document format</bookmark_value> <bookmark_value>exporting;to PDF</bookmark_value>"
-msgstr "<bookmark_value>PDF;xuất khẩu</bookmark_value><bookmark_value>định dạng tài liệu di động</bookmark_value><bookmark_value>xuất;dạng PDF</bookmark_value>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_WIDTH\">Tăng chiều rộng của đối tượng để chứa văn bản, nếu đối tượng nhỏ hơn văn bản.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3149532\n"
-"52\n"
+"05220000.xhp\n"
+"hd_id3149511\n"
+"9\n"
"help.text"
-msgid "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Export as PDF</link></variable></variable>"
-msgstr "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Xuất dạng PDF\">Xuất dạng PDF</link></variable></variable>"
+msgid "Fit height to text"
+msgstr "Vừa bề cao khít văn bản"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3154044\n"
-"1\n"
+"05220000.xhp\n"
+"par_id3149640\n"
+"10\n"
"help.text"
-msgid "<variable id=\"export\"><ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Saves the current file to Portable Document Format (PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform with the original formatting intact, provided that supporting software is installed.</variable>"
-msgstr "<variable id=\"export\"><ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Lưu tập tin hiện tại theo định dạng tài liệu di động (PDF) phiên bản 1.4.</ahelp> Tập tin PDF có thể được xem và in ra trên bất cứ nền tảng nào, bảo tồn toàn bộ định dạng gốc (gồm các ảnh), miễn là có phần mềm hỗ trợ (có nhiều chương trình đọc PDF miễn phí).</variable>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_HEIGHT\">Tăng chiều cao của đối tượng để chứa văn bản, nếu đối tượng nhỏ hơn văn bản.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id746482\n"
+"05220000.xhp\n"
+"hd_id3152867\n"
+"11\n"
"help.text"
-msgid "General tab"
-msgstr ""
+msgid "Fit to frame"
+msgstr "Vừa khung"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3148520\n"
-"2\n"
+"05220000.xhp\n"
+"par_id3147834\n"
+"12\n"
"help.text"
-msgid "Range"
-msgstr "Phạm vi"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FIT_TO_SIZE\">Resizes the text to fit the entire area of the drawing or text object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FIT_TO_SIZE\">Thay đổi kích cỡ của văn bản để chiếm toàn đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3154230\n"
-"3\n"
+"05220000.xhp\n"
+"hd_id3155892\n"
+"29\n"
"help.text"
-msgid "Sets the export options for the pages included in the PDF file."
-msgstr "Đặt các tùy chọn xuất cho các trang nằm trong tập tin PDF."
+msgid "Adjust to contour"
+msgstr "Chỉnh vào đường viền"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3166445\n"
-"4\n"
+"05220000.xhp\n"
+"par_id3153577\n"
+"30\n"
"help.text"
-msgid "All"
-msgstr "Tất cả"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_CONTOUR\">Adapts the text flow so that it matches the contours of the selected drawing object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_CONTOUR\">Điều chỉnh luồng văn bản để tương ứng với các đường viền của đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3149893\n"
-"5\n"
+"05220000.xhp\n"
+"par_idN10705\n"
"help.text"
-msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_ALL\">Exports all defined print ranges. If no print range is defined, exports the entire document.</ahelp>"
-msgstr "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_ALL\">Xuất tất cả các phạm vi in đã xác định. Chưa xác định thì xuất tài liệu hoàn toàn.</ahelp>"
+msgid "Word wrap text in shape"
+msgstr "Cuộn từ theo hình"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3154673\n"
-"6\n"
+"05220000.xhp\n"
+"par_idN10709\n"
"help.text"
-msgid "Pages"
-msgstr "Trang"
+msgid "<ahelp hid=\".\">Wraps the text that you add after double-clicking a custom shape to fit inside the shape.</ahelp>"
+msgstr "<ahelp hid=\".\">Cuộn văn bản bạn thêm sau khi nhấn-đôi vao hình riêng, để làm cho nó vừa bên trong hình đó.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3147571\n"
-"7\n"
+"05220000.xhp\n"
+"par_idN10720\n"
"help.text"
-msgid "<ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Exports the pages you type in the box.</ahelp>"
-msgstr "<ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Xuất chỉ những trang bạn ghi rõ trong hộp.</ahelp>"
+msgid "Resize shape to fit text"
+msgstr "Đổi kích cỡ hình vừa văn bản"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3145136\n"
-"53\n"
+"05220000.xhp\n"
+"par_idN10724\n"
"help.text"
-msgid "To export a range of pages, use the format 3-6. To export single pages, use the format 7;9;11. If you want, you can export a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
-msgstr "Để xuất một phạm vi trang, dùng định dạng « 3-6 ». Để xuất mỗi trang riêng, dùng định dạng « 7;9;11 ». Bạn cũng có thể xuất tổ hợp phạm vi trang và trang đơn, dùng định dạng như « 3-6;8;10;12 »."
+msgid "<ahelp hid=\".\">Resizes a custom shape to fit the text that you enter after double-clicking the shape.</ahelp>"
+msgstr "<ahelp hid=\".\">Thay đổi kích cỡ của một hình riêng để chiếm văn bản bạn thêm sau khi nhấn-đôi vào hình đó.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3147043\n"
-"8\n"
+"05220000.xhp\n"
+"hd_id3154288\n"
+"13\n"
"help.text"
-msgid "Selection"
-msgstr "Lựa chọn"
+msgid "Spacing to borders"
+msgstr "Giãn cách tới các viền"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3150774\n"
-"9\n"
+"05220000.xhp\n"
+"par_id3151265\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_SELECTION\">Exports the current selection.</ahelp>"
-msgstr "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_SELECTION\">Xuất vùng chọn hiện tại.</ahelp>"
+msgid "Specify the amount of space to leave between the edges of the drawing or text object and the borders of the text."
+msgstr "Ghi rõ khoảng cách cần để lại giữa các cạnh của bản vẽ hay đối tượng văn bản và các viền của văn bản."
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10706\n"
+"05220000.xhp\n"
+"hd_id3150443\n"
+"15\n"
"help.text"
-msgid "Images"
-msgstr "Ảnh"
+msgid "Left"
+msgstr "Trái"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1070A\n"
+"05220000.xhp\n"
+"par_id3156113\n"
+"16\n"
"help.text"
-msgid "Sets the PDF export options for images inside your document."
-msgstr "Đặt các tùy chọn xuất PDF cho những ảnh bên trong tài liệu."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_LEFT\">Enter the amount of space to leave between the left edge of the drawing or text object and the left border of the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_LEFT\">Nhập khoảng cách cần để lại giữa cạnh bên trái của đối tượng và viền bên trái của văn bản.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1071B\n"
+"05220000.xhp\n"
+"hd_id3155419\n"
+"17\n"
"help.text"
-msgid "EPS images with embedded previews are exported only as previews. EPS images without embedded previews are exported as empty placeholders."
-msgstr "Ảnh EPS có ô xem thử nhúng được xuất chỉ dưới dạng ô xem thử. Ảnh EPS không có ô xem thử nhúng được xuất dưới dạng bộ giữ chỗ rỗng."
+msgid "Right"
+msgstr "Phải"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10715\n"
+"05220000.xhp\n"
+"par_id3155388\n"
+"18\n"
"help.text"
-msgid "Lossless compression"
-msgstr "Nén không mất gì"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_RIGHT\">Enter the amount of space to leave between the right edge of the drawing or text object and the right border of the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_RIGHT\">Nhập khoảng cách cần để lại giữa cạnh bên phải của đối tượng và viền bên phải của văn bản.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10719\n"
+"05220000.xhp\n"
+"hd_id3148926\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects a lossless compression of images. All pixels are preserved.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn thuật toán nén ảnh mà không mất dữ liệu. Mọi điểm ảnh đều được bảo tồn.</ahelp>"
+msgid "Top"
+msgstr "Trên"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10730\n"
+"05220000.xhp\n"
+"par_id3157808\n"
+"20\n"
"help.text"
-msgid "JPEG compression"
-msgstr "Nén JPEG"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_TOP\">Enter the amount of space to leave between the top edge of the drawing or text object and the upper border of the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_TOP\">Nhập khoảng cách cần để lại giữa cạnh bên trên của đối tượng và viền bên trên của văn bản.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10734\n"
+"05220000.xhp\n"
+"hd_id3149237\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects a JPEG compression of images. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels get lost and artefacts are introduced, but file sizes are reduced.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn thuật toán nén JPEG. Ở mức chất lượng cao, gần mọi điểm ảnh được bảo tồn (kích cỡ tập tin lớn). Ở mức chất lượng thấp, một số điểm ảnh bị mất, và các đồ tạo tác được giới thiệu, nhưng kích cỡ tập tin cũng được giảm.</ahelp>"
+msgid "Bottom"
+msgstr "Dưới"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1074C\n"
+"05220000.xhp\n"
+"par_id3159342\n"
+"22\n"
"help.text"
-msgid "Quality"
-msgstr "Chất lượng"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_BOTTOM\">Enter the amount of space to leave between the bottom edge of the drawing or text object and the lower border of the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_BOTTOM\">Nhập khoảng cách cần để lại giữa cạnh bên dưới của đối tượng và viền bên dưới của văn bản.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10750\n"
+"05220000.xhp\n"
+"hd_id3149192\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the quality level for JPEG compression.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập mức chất lượng cho tiến trình nén JPEG.</ahelp>"
+msgid "Text anchor"
+msgstr "Neo văn bản"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10767\n"
+"05220000.xhp\n"
+"par_id3155179\n"
+"24\n"
"help.text"
-msgid "Reduce image resolution"
-msgstr "GIảm độ phân giải ảnh"
+msgid "Set the anchor type and the anchor position."
+msgstr "Đặt kiểu neo và vị trí thả neo."
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1076B\n"
+"05220000.xhp\n"
+"hd_id3154381\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to resample or down-size the images to a lower number of pixels per inch.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt có nên lấy mẫu lại hay giảm kiểu dáng của ảnh để giảm số điểm ảnh trên mỗi insơ.</ahelp>"
+msgid "Graphic field"
+msgstr "Trường đồ họa"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10782\n"
+"05220000.xhp\n"
+"par_id3155504\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the target resolution for the images.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn độ phân giải đích cho ảnh.</ahelp>"
+msgid "<ahelp hid=\"HID_TEXTATTR_CTL_POSITION\">Click where you want to place the anchor for the text.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEXTATTR_CTL_POSITION\">Nhấn vào vị trí ở đó bạn muốn thả neo cho văn bản.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10791\n"
+"05220000.xhp\n"
+"hd_id3155323\n"
+"27\n"
"help.text"
-msgid "General"
-msgstr "Chung"
+msgid "Full width"
+msgstr "Rộng đầy đủ"
-#: ref_pdf_export.xhp
+#: 05220000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10795\n"
+"05220000.xhp\n"
+"par_id3150244\n"
+"28\n"
"help.text"
-msgid "Sets general PDF export options."
-msgstr "Đặt các tùy chọn xuất PDF chung."
+msgid "<ahelp hid=\".\">Anchors the text to the full width of the drawing object or text object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FULL_WIDTH\">Thả neo văn bản vào chiều rộng đầy đủ của đối tượng.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id080420080355360\n"
+"05230000.xhp\n"
+"tit\n"
"help.text"
-msgid "Embed OpenDocument file"
-msgstr ""
+msgid "Position and Size"
+msgstr "Vị trí và Kích cỡ"
-#: ref_pdf_export.xhp
+#: 05230000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id0804200803553767\n"
+"05230000.xhp\n"
+"hd_id3152790\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers it behaves like a normal .pdf file and it remains fully editable in %PRODUCTNAME."
-msgstr ""
+msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Vị trí và Kích cỡ\">Vị trí và Kích cỡ</link>"
-#: ref_pdf_export.xhp
+#: 05230000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2796411\n"
+"05230000.xhp\n"
+"par_id3157552\n"
+"2\n"
"help.text"
-msgid "PDF/A-1a"
-msgstr "PDF/A-1a"
+msgid "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Resizes, moves, rotates, or slants the selected object.</ahelp></variable>"
+msgstr "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Thay đổi kích cỡ về, di chuyển, xoay hay làm xiên đối tượng đã chọn.</ahelp></variable>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5016327\n"
+"05230100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts to the PDF/A-1a format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written.</ahelp>"
-msgstr "<ahelp hid=\".\">Chuyển đổi sang định dạng PDF/A-1. Đây được xác định rằng một định dạng tập tin tài liệu điện tử để bải tồn lâu dài. Tất cả các phông chữ được dùng trong tài liệu nguồn sẽ nhúng trong tập tin PDF được tạo. Thẻ PDF sẽ không được ghi vào.</ahelp>"
+msgid "Position and Size"
+msgstr "Vị trí và Kích cỡ"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107A0\n"
+"05230100.xhp\n"
+"bm_id3154350\n"
"help.text"
-msgid "Tagged PDF"
-msgstr "PDF có thẻ"
+msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value><bookmark_value>draw objects;positioning and resizing</bookmark_value><bookmark_value>controls; positions and sizes</bookmark_value><bookmark_value>sizes;draw objects</bookmark_value><bookmark_value>anchors;types/positions for draw objects</bookmark_value><bookmark_value>draw objects; anchoring</bookmark_value>"
+msgstr "<bookmark_value>định vị;đối tượng vẽ và điều khiển</bookmark_value><bookmark_value>đối tượng vẽ;định vị và thay đổi kích cỡ</bookmark_value><bookmark_value>điều khiển; vị trí và kích cỡ</bookmark_value><bookmark_value>kích cỡ;đối tượng vẽ</bookmark_value><bookmark_value>neo;kiểu/vị trí cho đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; thả neo</bookmark_value>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107A4\n"
+"05230100.xhp\n"
+"hd_id3154350\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to write PDF tags. This can increase file size by huge amounts.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt có nên ghi các thẻ PDF. Cũng có thể rất tăng kích cỡ tập tin.</ahelp>"
+msgid "<link href=\"text/shared/01/05230100.xhp\" name=\"Position and Size\">Position and Size</link>"
+msgstr "<link href=\"text/shared/01/05230100.xhp\" name=\"Vị trí và Kích cỡ\">Vị trí và Kích cỡ</link>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107B3\n"
+"05230100.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "Tagged PDF contains information about the structure of the document contents. This can help to display the document on devices with different screens, and when using screen reader software."
-msgstr "Tập tin PDF có thẻ thì chứa thông tin về cấu trúc của nội dung tài liệu. Thông tin này có thể giúp hiển thị tài liệu trên thiết bị có màn hình khác nhau, và khi sử dụng phần mềm đọc màn hình."
+msgid "<ahelp hid=\".\">Resizes or moves the selected object.</ahelp>"
+msgstr "<ahelp hid=\".\">Thay đổi kích cỡ về hay di chuyển đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id8257087\n"
+"05230100.xhp\n"
+"hd_id3158405\n"
+"3\n"
"help.text"
-msgid "Export bookmarks"
-msgstr "Xuất liên kết lưu"
+msgid "Position"
+msgstr "Vị trí"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3479415\n"
+"05230100.xhp\n"
+"par_id3159201\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt có nên xuất liên kết lưu của tài liệu Writer dưới dạng liên kết lưu PDF. Liên kết lưu được tạo cho mọi đoạn văn phác thảo (<emph>Công cụ > Đánh số Phác thảo</emph>) và cho mọi mục nhập mục lục cho đó bạn đã gán siêu liên kết trong tài liệu nguồn.</ahelp>"
+msgid "Specify the location of the selected object on the page."
+msgstr "Ghi rõ vị trí trên trang của đối tượng đã chọn."
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107BE\n"
+"05230100.xhp\n"
+"hd_id3157896\n"
+"5\n"
"help.text"
-msgid "Export comments"
-msgstr ""
+msgid "Position X"
+msgstr "Vị trí X"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107C2\n"
+"05230100.xhp\n"
+"par_id3155616\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to export comments of Writer and Calc documents as PDF notes.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt có nên xuất các ghi chú của tài liệu Writer/Calc dưới dạng ghi chú PDF.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_X\">Enter the horizontal distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_X\">Nhập khoảng cách theo chiều ngang cần dời đối tượng tương đối so với điểm cơ bản đã chọn trên lưới.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107F4\n"
+"05230100.xhp\n"
+"hd_id3151226\n"
+"7\n"
"help.text"
-msgid "Create PDF form"
-msgstr "Tạo biểu mẫu PDF"
+msgid "Position Y"
+msgstr "Vị trí Y"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4909817\n"
+"05230100.xhp\n"
+"par_id3147373\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose to create a PDF form. This can be filled out and printed by the user of the PDF document.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt có nên tạo một biểu mẫu PDF. Biểu mẫu này có thể được điền vào và in ra bởi người dùng tài liệu PDF.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_Y\">Enter the vertical distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_Y\">Nhập khoảng cách theo chiều dọc cần dời đối tượng tương đối so với điểm cơ bản đã chọn trên lưới.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6585283\n"
+"05230100.xhp\n"
+"hd_id3147834\n"
+"9\n"
"help.text"
-msgid "Submit format"
-msgstr "Định dạng gửi đi"
+msgid "Base point"
+msgstr "Điểm cơ bản"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107F8\n"
+"05230100.xhp\n"
+"par_id3147008\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the format of submitting forms from within the PDF file.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn định dạng theo đó cần đệ trình biểu mẫu từ bên trong tập tin PDF.</ahelp>"
+msgid "<ahelp hid=\"HID_TPPOSITION_CTRL\">Click a base point in the grid, and then enter the amount that you want to shift the object relative to the base point that you selected in the <emph>Position Y</emph> and <emph>Position X</emph> boxes. The base points correspond to the selection handles on an object.</ahelp>"
+msgstr "<ahelp hid=\"HID_TPPOSITION_CTRL\">Nhấn vào một điểm cơ bản trên lưới, sau đó nhập giá trị theo đó bạn muốn dời đối tượng tương đối so với điểm cơ bản bạn đã chọn trong hai hộp <emph>Vị trí X</emph> và <emph>Vị trí Y</emph>. Các điểm cơ bản tương ứng với các móc lựa chọn trên đối tượng.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id0901200811454970\n"
+"05230100.xhp\n"
+"hd_id3155942\n"
+"19\n"
"help.text"
-msgid "Select the format of the data that you will receive from the submitter: FDF (Forms Data Format), PDF, HTML, or XML."
-msgstr "Chọn định dạng dữ liệu mà bạn sẽ nhận từ người gửi: FDF (định dạng biểu mẫu), PDF, HTML hay XML."
+msgid "Size"
+msgstr "Kích cỡ"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10807\n"
+"05230100.xhp\n"
+"par_id3150774\n"
+"20\n"
"help.text"
-msgid "This setting overrides the control's URL property that you set in the document."
-msgstr "Thiết lập này có quyền cao hơn thuộc tính URL của thuộc tính mà bạn đặt trong tài liệu."
+msgid "Specify the amount by which you want to resize the selected object with respect to the selected base point ."
+msgstr "Ghi rõ giá trị theo đó bạn muốn thay đổi kích cỡ của đối tượng đã chọn, tương ứng so với điểm cơ bản đã chọn."
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1026200909535841\n"
+"05230100.xhp\n"
+"hd_id3143267\n"
+"21\n"
"help.text"
-msgid "Allow duplicate field names"
-msgstr ""
+msgid "Width"
+msgstr "Bề rộng"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id102620090953596\n"
+"05230100.xhp\n"
+"par_id3149811\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_WIDTH\">Enter a width for the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_WIDTH\">Nhập chiều rộng cho đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3946958\n"
+"05230100.xhp\n"
+"hd_id3150443\n"
+"23\n"
"help.text"
-msgid "Export automatically inserted blank pages"
-msgstr "Xuất trang trắng được tự động chèn"
+msgid "Height"
+msgstr "Bề cao"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id8551896\n"
+"05230100.xhp\n"
+"par_id3147209\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\">If switched on, automatically inserted blank pages are being exported to pdf file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. The previous chapter ends on an odd page. %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này thì các trang trắng được tự động chèn cũng được xuất dạng tập tin PDF. Tốt nhất nếu bạn đang in tập tin PDF trên mặt đôi. Thí dụ, trong một cuốn sách nào đó, một kiểu dáng đoạn văn được đặt để lúc nào cũng bắt đầu với trang có số lẻ. Chương trước kết thúc trên trang lẻ. %PRODUCTNAME thì chèn một trang trắng có số chẵn. Tùy chọn điều khiển có nên xuất trang trắng có số chẵn, hay không.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_HEIGHT\">Enter a height for the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_HEIGHT\">Nhập chiều cao cho đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
-#, fuzzy
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3954548\n"
+"05230100.xhp\n"
+"hd_id3149796\n"
+"25\n"
"help.text"
-msgid "Embed standard fonts"
-msgstr "Định dạng chuẩn"
+msgid "Keep ratio"
+msgstr "Giữ tỷ lệ"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id853434896\n"
+"05230100.xhp\n"
+"par_id3155341\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\".\">Normally the 14 standard Postscript fonts are not embedded in a PDF file, because every PDF reader software already contains these fonts. Enable this option to embed the standard fonts that are installed on your system and that are used in the document.</ahelp> Use this option if you expect to have a better looking or more useful standard font than the font that is available in the recipients' PDF reader software."
-msgstr ""
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_POSITION_SIZE_CBX_SCALE\">Maintains proportions when you resize the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_POSITION_SIZE_CBX_SCALE\">Bảo tồn tỷ lệ khi bạn thay đổi kích cỡ của đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
-#, fuzzy
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9796441\n"
+"05230100.xhp\n"
+"hd_id3148686\n"
+"29\n"
"help.text"
-msgid "Initial View tab"
-msgstr "Xem đầu tiên"
+msgid "Base point"
+msgstr "Điểm cơ bản"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1218604\n"
+"05230100.xhp\n"
+"par_id3154897\n"
+"30\n"
"help.text"
-msgid "Panes"
-msgstr "Ô cửa sổ"
+msgid "<ahelp hid=\"HID_TPSIZE_CTRL\">Click a base point in the grid, and then enter the new size dimensions for the selected object in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
+msgstr "<ahelp hid=\"HID_TPSIZE_CTRL\">Nhấn vào một điểm cơ bản trên lưới, sau đó nhập vào hai hộp <emph>Bề rộng</emph> và <emph>Bề cao</emph> các chiều kích cỡ cho đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7071443\n"
+"05230100.xhp\n"
+"hd_id3148990\n"
+"17\n"
"help.text"
-msgid "Page only"
-msgstr "Chỉ trang"
+msgid "Protect"
+msgstr "Bảo vệ"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1851557\n"
+"05230100.xhp\n"
+"hd_id3153698\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows only the page contents.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF hiển thị chỉ nội dung của trang.</ahelp>"
+msgid "Position"
+msgstr "Vị trí"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7464217\n"
+"05230100.xhp\n"
+"par_id3149784\n"
+"18\n"
"help.text"
-msgid "Bookmarks and page"
-msgstr "Liên kết lưu và trang"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_POSPROTECT\">Prevents changes to the position or the size of the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_POSPROTECT\">Ngăn cản thay đổi vị trí hay kích cỡ của đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4490188\n"
+"05230100.xhp\n"
+"hd_id3153254\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a bookmarks palette and the page contents.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF hiển thị một bảng chọn liên kết lưu và nội dung của trang.</ahelp>"
+msgid "Size"
+msgstr "Kích cỡ"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3581041\n"
+"05230100.xhp\n"
+"par_id3152349\n"
+"28\n"
"help.text"
-msgid "Thumbnails and page"
-msgstr "Ảnh mẫu và trang"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_SIZEPROTECT\">Prevents you from resizing the object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_SIZEPROTECT\">Ngăn cản bạn thay đổi kích cỡ của đối tượng.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id956755\n"
+"05230100.xhp\n"
+"hd_id3149275\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a thumbnails palette and the page contents.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF hiển thị một bảng chọn ảnh mẫu và nội dung của trang.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchoring </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thả neo </caseinline></switchinline>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1905575\n"
+"05230100.xhp\n"
+"par_id3147531\n"
+"12\n"
"help.text"
-msgid "Open on page"
-msgstr "Mở ở trang"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Set the anchoring options for the selected object. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đặt các tùy chọn về chức năng thả neo cho đối tượng đã chọn. </caseinline></switchinline>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9776909\n"
+"05230100.xhp\n"
+"hd_id3151246\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show the given page when the reader opens the PDF file.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị trang đã chọn khi người đọc mở tập tin PDF.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchor </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Neo </caseinline></switchinline>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7509994\n"
+"05230100.xhp\n"
+"par_id3154758\n"
+"14\n"
"help.text"
-msgid "Magnification"
-msgstr "Phóng to"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ANCHOR\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the type of anchor for the selected object. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ANCHOR\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn kiểu neo cho đối tượng đã chọn. </caseinline></switchinline></ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id5900143\n"
+"05230100.xhp\n"
+"hd_id3149295\n"
+"15\n"
"help.text"
-msgid "Default"
-msgstr "Mặc định"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Position </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Vị trí </caseinline></switchinline>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id822168\n"
+"05230100.xhp\n"
+"par_id3154935\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page contents without zooming. If the reader software is configured to use a zoom factor by default, the page shows with that zoom factor.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị nội dung trang mà không phóng to. Nếu phần mềm đọc được cấu hình để dùng hệ số phóng to theo mặc định thì trang hiển thị tùy theo hệ số phóng to đó.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ORIENT\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Specifies the position of the anchor in relation to the character height. </caseinline></switchinline></ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ORIENT\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Ghi rõ vị trí của neo tương đối so với chiều cao của ký tự. </caseinline></switchinline></ahelp>"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1092257\n"
+"05230100.xhp\n"
+"hd_id3153525\n"
+"31\n"
"help.text"
-msgid "Fit in window"
-msgstr "Vừa cửa sổ"
+msgid "Adapt"
+msgstr "Chỉnh lại"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3092135\n"
+"05230100.xhp\n"
+"par_id31512110\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit entirely into the reader's window.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị trang được thu/phóng để vừa hoàn toàn trong cửa sổ của chương trình đọc.</ahelp>"
+msgid "Specifies, if the size of a drawing object should be adjusted to fit the size of entered text."
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id654622\n"
+"05230100.xhp\n"
+"hd_id3151042\n"
+"33\n"
"help.text"
-msgid "Fit width"
-msgstr "Vừa bề rộng"
+msgid "Fit width to text"
+msgstr "Vừa bề rộng khít văn bản"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id814539\n"
+"05230100.xhp\n"
+"par_id31591510\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit the width of the reader's window.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị trang được thu/phóng để vừa chiều rộng cửa sổ của chương trình đọc.</ahelp>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9883114\n"
+"05230100.xhp\n"
+"hd_id3145746\n"
+"35\n"
"help.text"
-msgid "Fit visible"
-msgstr "Vừa vùng hiện rõ"
+msgid "Fit height to text"
+msgstr "Vừa bề cao khít văn bản"
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id2362437\n"
+"05230100.xhp\n"
+"par_id31540680\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị văn bản và đồ họa trên trang được thu/phóng để vừa chiều rộng cửa sổ của chương trình đọc.</ahelp>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05230100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7296975\n"
+"05230100.xhp\n"
+"par_id3145606\n"
"help.text"
-msgid "Zoom factor"
-msgstr "Hệ số Thu Phóng"
+msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchor types\">Anchor types</link>"
+msgstr "<link href=\"text/shared/01/05260000.xhp\" name=\"Kiểu neo\">Kiểu neo</link>"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id371715\n"
+"05230300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a given zoom factor when the reader opens the PDF file.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn một hệ số thu phóng đã chọ khi chương trình đọc mở tập tin PDF.</ahelp>"
+msgid "Rotation"
+msgstr "Xoay"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id329905\n"
+"05230300.xhp\n"
+"hd_id3149741\n"
+"1\n"
"help.text"
-msgid "Page layout"
-msgstr "Bố trí trang"
+msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
+msgstr "<link href=\"text/shared/01/05230300.xhp\" name=\"Xoay\">Xoay</link>"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id5632496\n"
+"05230300.xhp\n"
+"par_id3146873\n"
+"2\n"
"help.text"
-msgid "Default"
-msgstr "Mặc định"
+msgid "<ahelp hid=\"HID_TRANS_ANGLE\">Rotates the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_TRANS_ANGLE\">Xoay đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1694082\n"
+"05230300.xhp\n"
+"hd_id3148983\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the pages according to the layout setting of the reader software.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang tùy theo thiết lập bố trí của chương trình đọc.</ahelp>"
+msgid "Pivot point"
+msgstr "Điểm quay"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id8454237\n"
+"05230300.xhp\n"
+"par_id3150902\n"
+"4\n"
"help.text"
-msgid "Single page"
-msgstr "Trang đơn"
+msgid "The selected object is rotated around a pivot point that you specify. The default pivot point is at the center of the object."
+msgstr "Đối tượng đã chọn thì được xoay vòng quanh một điểm quay bạn ghi rõ. ĐIểm quay mặc định là trung tâm của đối tượng."
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id672322\n"
+"05230300.xhp\n"
+"par_id3153528\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows one page at a time.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị một trang mỗi lúc.</ahelp>"
+msgid "If you set a pivot point too far outside of the object boundaries, the object could be rotated off of the page."
+msgstr "Đặt điểm quay ở vị trí quá ngoài các viền của đối tượng thì có thể xoay đối tượng ra ngoài trang."
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7387310\n"
+"05230300.xhp\n"
+"hd_id3145382\n"
+"5\n"
"help.text"
-msgid "Continuous"
-msgstr "Liên tục"
+msgid "X Position"
+msgstr "Vị trí X"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id8764305\n"
+"05230300.xhp\n"
+"par_id3166410\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages in a continuous vertical column.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang theo một cột nằm dọc liên tục.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X\">Enter the horizontal distance from the left edge of the page to the pivot point.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X\">Nhập khoảng cách theo chiều ngang từ cạnh bên trái của trang đến điểm quay..</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6223639\n"
+"05230300.xhp\n"
+"hd_id3155323\n"
+"7\n"
"help.text"
-msgid "Continuous facing"
-msgstr "Liên tục đối diện"
+msgid "Y Position"
+msgstr "Vị trí Y"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5318765\n"
+"05230300.xhp\n"
+"par_id3150669\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the right.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang đối diện theo một cột liên tục. Đối với nhiều hơn hai trang, trang đầu được hiển thị bên phải.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y\">Enter the vertical distance from the top edge of the page to the pivot point.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y\">Nhập khoảng cách theo chiều dọc từ cạnh bên trên của trang đến điểm quay..</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1416364\n"
+"05230300.xhp\n"
+"hd_id3153332\n"
+"9\n"
"help.text"
-msgid "First page is left"
-msgstr "Trang đầu bên trái"
+msgid "Defaults"
+msgstr "Mặc định"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9596850\n"
+"05230300.xhp\n"
+"par_id3143270\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the left. You must enable support for complex text layout on Language settings - Languages in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang cạnh nhau theo một cột liên tục. Đối với nhiều hơn hai trang, trang đầu được hiển thị bên trái. Bạn phải hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL) dưới mục trình đơn <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>.</ahelp>"
+msgid "<ahelp hid=\"HID_TPROTATION_CTRL1\">Click where you want to place the pivot point.</ahelp>"
+msgstr "<ahelp hid=\"HID_TPROTATION_CTRL1\">Nhấn vào vị trí ở đó bạn muốn đặt điểm quay.</ahelp>"
-#: ref_pdf_export.xhp
-#, fuzzy
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id18005\n"
+"05230300.xhp\n"
+"hd_id3146847\n"
+"11\n"
"help.text"
-msgid "User Interface tab"
-msgstr "Giao diện Người dùng"
+msgid "Rotation angle"
+msgstr "Góc xoay"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6676839\n"
+"05230300.xhp\n"
+"par_id3156155\n"
+"12\n"
"help.text"
-msgid "Window options"
-msgstr "Tùy chọn cửa sổ"
+msgid "Specify the number of degrees that you want to rotate the selected object, or click in the rotation grid."
+msgstr "Ghi rõ số độ theo đó cần xoay đối tượng đã chọn, hoặc nhấn vào lưới xoay."
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3809015\n"
+"05230300.xhp\n"
+"hd_id3154173\n"
+"13\n"
"help.text"
-msgid "Resize window to initial page"
-msgstr "Đổi kích cỡ cửa sổ thành trang đầu tiên"
+msgid "Angle"
+msgstr "Góc"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1321146\n"
+"05230300.xhp\n"
+"par_id3147573\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a window displaying the whole initial page.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn để tạo một tập tin PDF được hiện trong cửa sổ hiển thị toàn bộ trang.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE\">Enter the number of degrees that you want to rotate the selected object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE\">Nhập số độ theo đó cần xoay đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6994842\n"
+"05230300.xhp\n"
+"hd_id3148474\n"
+"15\n"
"help.text"
-msgid "Center window on screen"
-msgstr "Hiện cửa sổ ở giữa màn hình"
+msgid "Defaults"
+msgstr "Mặc định"
-#: ref_pdf_export.xhp
+#: 05230300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9601428\n"
+"05230300.xhp\n"
+"par_id3154811\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a reader window centered on screen.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà được hiển thị trong cửa sổ trình đọc nằm ở giữa màn hình.</ahelp>"
+msgid "<ahelp hid=\"HID_TPROTATION_CTRL2\">Click to specify the rotation angle in multiples of 45 degrees.</ahelp>"
+msgstr "<ahelp hid=\"HID_TPROTATION_CTRL2\">Nhấn vào để ghi rõ góc xoay theo bội số cho 45 độ.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6369212\n"
+"05230400.xhp\n"
+"tit\n"
"help.text"
-msgid "Open in full screen mode"
-msgstr "Mở ở chế độ toàn màn hình"
+msgid "Slant & Corner Radius"
+msgstr "Làm xiên và Bán kính góc"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1111789\n"
+"05230400.xhp\n"
+"bm_id3149988\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a full screen reader window in front of all other windows.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà được hiển thị trong cửa sổ trình đọc màn hình đầy đủ nằm ở trên các cửa sổ khác.</ahelp>"
+msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value>"
+msgstr "<bookmark_value>đối tượng vẽ xiên</bookmark_value><bookmark_value>đối tượng vẽ; xiên</bookmark_value><bookmark_value>vùng; xiên</bookmark_value>"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2041993\n"
+"05230400.xhp\n"
+"hd_id3149988\n"
+"1\n"
"help.text"
-msgid "Display document title"
-msgstr "Hiển thị tựa đề tài liệu"
+msgid "<link href=\"text/shared/01/05230400.xhp\" name=\"Slant & Corner Radius\">Slant & Corner Radius</link>"
+msgstr "<link href=\"text/shared/01/05230400.xhp\" name=\"Làm xiên và Bán kính góc\">Làm xiên và Bán kính góc</link>"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4576555\n"
+"05230400.xhp\n"
+"par_id3154788\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown with the document title in the reader's title bar.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà được hiển thị với tựa đề tài liệu trên thanh tựa đề của trình đọc.</ahelp>"
+msgid "<ahelp hid=\"HID_TRANS_SLANT\">Slants the selected object, or rounds the corners of a rectangular object.</ahelp>"
+msgstr "<ahelp hid=\"HID_TRANS_SLANT\">Làm xiên đối tượng đã chọn, hoặc làm tròn các góc của đối tượng hình chữ nhật.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id4632099\n"
+"05230400.xhp\n"
+"hd_id3154497\n"
+"3\n"
"help.text"
-msgid "User interface options"
-msgstr "Tùy chọn giao diện người dùng"
+msgid "Corner Radius"
+msgstr "Bán kính góc"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3154087\n"
+"05230400.xhp\n"
+"par_id3156027\n"
+"4\n"
"help.text"
-msgid "Hide menu bar"
-msgstr "Ẩn thanh trình đơn"
+msgid "You can only round the corners of a rectangular object."
+msgstr "Bạn chỉ có thể làm tròn các góc của đối tượng hình chữ nhật."
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id6582537\n"
+"05230400.xhp\n"
+"hd_id3153935\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to hide the reader's menu bar when the document is active.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để ẩn thanh trình đơn của trình đọc khi tài liệu hoạt động.</ahelp>"
+msgid "Radius"
+msgstr "Bán kính"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id729697\n"
+"05230400.xhp\n"
+"par_id3147373\n"
+"6\n"
"help.text"
-msgid "Hide toolbar"
-msgstr "Ẩn thanh công cụ"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS\">Enter the radius of the circle that you want to use to round the corners.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS\">Nhập bán kính của hình tròn bạn muốn dùng để làm tròn các góc.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id769066\n"
+"05230400.xhp\n"
+"hd_id3145090\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to hide the reader's toolbar when the document is active.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để ẩn thanh công cụ của trình đọc khi tài liệu hoạt động.</ahelp>"
+msgid "Slant"
+msgstr "Làm xiên"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id376293\n"
+"05230400.xhp\n"
+"par_id3153345\n"
+"8\n"
"help.text"
-msgid "Hide window controls"
-msgstr "Ẩn các điều khiển cửa sổ"
+msgid "Slants the selected object along an axis that you specify."
+msgstr "Làm xiên đối tượng đã chọn theo một trục bạn ghi rõ."
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id43641\n"
+"05230400.xhp\n"
+"hd_id3154983\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to hide the reader's controls when the document is active.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để ẩn các điều khiển của trình đọc khi tài liệu hoạt động.</ahelp>"
+msgid "Angle"
+msgstr "Góc"
-#: ref_pdf_export.xhp
+#: 05230400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1886654\n"
+"05230400.xhp\n"
+"par_id3153683\n"
+"10\n"
"help.text"
-msgid "Transitions"
-msgstr "Chuyển tiếp"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE\">Nhập độ của trục làm xiên.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107D9\n"
+"05230500.xhp\n"
+"tit\n"
"help.text"
-msgid "Use transition effects"
-msgstr "Dùng hiệu ứng chuyển tiếp"
+msgid "Callout"
+msgstr "Khung thoại"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107DD\n"
+"05230500.xhp\n"
+"bm_id3149038\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to export Impress slide transition effects to respective PDF effects.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt có nên xuất các hiệu ứng chuyển tiếp ảnh chiếu Impress dưới dạng các hiệu ứng PDF tương ứng.</ahelp>"
+msgid "<bookmark_value>legends; draw objects</bookmark_value><bookmark_value>draw objects; legends</bookmark_value><bookmark_value>labels;for draw objects</bookmark_value><bookmark_value>labels, see also names/callouts</bookmark_value><bookmark_value>captions, see also labels/callouts</bookmark_value><bookmark_value>names, see also labels/callouts</bookmark_value>"
+msgstr "<bookmark_value>câu chú giải; đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; câu chú giải</bookmark_value><bookmark_value>nhãn;cho đối tượng vẽ</bookmark_value><bookmark_value>nhãn, xem thêm tên/khung thoại</bookmark_value><bookmark_value>phụ đề, xem thêm nhãn/khung thoại</bookmark_value><bookmark_value>tên, xem thêm nhãn/khung thoại</bookmark_value>"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9053926\n"
+"05230500.xhp\n"
+"hd_id3149038\n"
+"1\n"
"help.text"
-msgid "Bookmarks"
-msgstr "Liên kết lưu"
+msgid "<link href=\"text/shared/01/05230500.xhp\" name=\"Callout\">Callout</link>"
+msgstr "<link href=\"text/shared/01/05230500.xhp\" name=\"Khung thoại\">Khung thoại</link>"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1941892\n"
+"05230500.xhp\n"
+"par_id3155069\n"
+"2\n"
"help.text"
-msgid "All bookmark levels"
-msgstr "Mọi cấp liên kết lưu"
+msgid "Specify the properties of the selected callout."
+msgstr "Ghi rõ các thuộc tính về khung thoại đã chọn."
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id341807\n"
+"05230500.xhp\n"
+"par_id368358\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show all bookmark levels when the reader opens the PDF file.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị mọi cấp liên kết lưu khi người đọc mở tập tin PDF.</ahelp>"
+msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image> where you can select the shape."
+msgstr "Khung thoại kiểu này bắt nguồn từ những phiên bản đầu tiên của %PRODUCTNAME. Bạn cần phải đặc chế một thanh công cụ hay trình đơn để chèn khung thoại kiểu này. Khung thoại hình riêng mới thì cung cấp nhiều tính năng hơn, gồm có thanh công cụ <emph>Khung thoại</emph> <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Biểu tượng</alt></image> trên đó bạn có thể chọn hình."
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id486770\n"
+"05230500.xhp\n"
+"hd_id3151330\n"
+"3\n"
"help.text"
-msgid "Visible bookmark levels"
-msgstr "Các cấp liên kết lưu hiện rõ"
+msgid "Callout Styles"
+msgstr "Kiểu dáng Khung thoại"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4850001\n"
+"05230500.xhp\n"
+"par_id3149760\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show bookmark levels down to the selected level when the reader opens the PDF file.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị các cấp liên kết lưu đến cấp đã chọn, khi người đọc mở tập tin PDF.</ahelp>"
+msgid "<ahelp hid=\"HID_CAPTION_CTL_TYPE\">Click the <emph>Callout</emph> style that you want to apply to the selected callout.</ahelp>"
+msgstr "<ahelp hid=\"HID_CAPTION_CTL_TYPE\">Nhấn vào kiểu dáng <emph>Khung thoại</emph> bạn muốn áp dụng cho khung thoại đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9464094\n"
+"05230500.xhp\n"
+"hd_id3149798\n"
+"5\n"
"help.text"
-msgid "Links tab"
-msgstr ""
+msgid "Spacing"
+msgstr "Giãn cách"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9302346\n"
+"05230500.xhp\n"
+"par_id3147399\n"
+"6\n"
"help.text"
-msgid "Specify how to export bookmarks and hyperlinks in your document."
-msgstr "Hãy ghi rõ nên xuất liên kết lưu và siêu liên kết trong tài liệu như thế nào."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND\">Enter the amount of space that you want to leave between the end of the callout line, and the callout box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND\">Nhập khoảng cách bạn muốn để lại giữa kết thúc của đường khung thoại và hộp giới hạn khung thoại.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id8296151\n"
+"05230500.xhp\n"
+"hd_id3151226\n"
+"7\n"
"help.text"
-msgid "Export bookmarks as named destinations"
-msgstr "Xuất liên kết lưu dạng đích đặt tên"
+msgid "Extension"
+msgstr "Mở rộng"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4809411\n"
+"05230500.xhp\n"
+"par_id3148620\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">The bookmarks (targets of references) in PDF files can be defined as rectangular areas. Additionally, bookmarks to named objects can be defined by their names. Enable the checkbox to export the names of objects in your document as valid bookmark targets. This allows to link to those objects by name from other documents.</ahelp>"
-msgstr "<ahelp hid=\".\">Liên kết lưu (đích tham chiếu) trong tập tin PDF có thể được xác định dạng vùng hình chữ nhật. Hơn nữa, liên kết lưu đến đích đặt tên có thể được xác định theo tên. Hãy đánh dấu trong hộp chọn để xuất các tên của đối tượng trong tài liệu dưới dạng đích liên kết lưu hợp lệ. Tùy chọn này cho phép liên kết đến đối tượng đó theo tên, từ tài liệu khác.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL\">Select where you want to extend the callout line from, in relation to the callout box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL\">Chọn vị trí từ đó bạn muốn mở rộng đường khung thoại, tương ứng so với hộp giới hạn khung thoại.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6454969\n"
+"05230500.xhp\n"
+"hd_id3153311\n"
+"9\n"
"help.text"
-msgid "Convert document references to PDF targets"
-msgstr "Chuyển đổi các tham chiếu tài liệu sang đích PDF"
+msgid "Length"
+msgstr "Bề dài"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id7928708\n"
+"05230500.xhp\n"
+"par_id3145313\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable this checkbox to convert the URLs referencing other ODF files to PDF files with the same name. In the referencing URLs the extensions .odt, .odp, .ods, .odg, and .odm are converted to the extension .pdf.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để chuyển đổi mỗi địa chỉ URL tham chiếu đến tập tin ODF khác sang tập tin PDF cùng tên. Trong địa chỉ URL tham chiếu, cả đuôi .odt, .odp, .ods, .odg, .odm được chuyển đổi sang .pdf.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE\">Enter the length of the callout line segment that extends from the callout box to the inflection point of the line.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE\">Nhập chiều dài của đoạn đường khung thoại mà kéo dài từ hộp giới hạn khung thoại đến điểm uốn của đường.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3864253\n"
+"05230500.xhp\n"
+"par_id3159269\n"
+"11\n"
"help.text"
-msgid "Export URLs relative to file system"
-msgstr "Xuất URL tương đối với hệ thống tập tin"
+msgid "The <emph>Length </emph>box is only available if you select the <emph>Angled connector line</emph> callout style, and leave the <emph>Optimal </emph>checkbox cleared."
+msgstr "Hộp <emph>Bề dài</emph> chỉ sẵn sàng nếu bạn chọn kiểu dáng khung thoại <emph>Đường nối góc</emph> và không bật tùy chọn <emph>Tối ưu</emph>."
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3144016\n"
+"05230500.xhp\n"
+"hd_id3149820\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable this checkbox to export URLs to other documents as relative URLs in the file system. See <link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">\"relative hyperlinks\"</link> in the Help.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để xuất các địa chỉ URL vào các tài liệu khác dưới dạng địa chỉ URL tương đối với hệ thống tập tin. Xem phần <link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">\"siêu liên kết tương đối\"</link> trong Trợ giúp.</ahelp>"
+msgid "Optimal"
+msgstr "Tối ưu"
-#: ref_pdf_export.xhp
+#: 05230500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9937131\n"
+"05230500.xhp\n"
+"par_id3147210\n"
+"13\n"
"help.text"
-msgid "Cross-document links"
-msgstr "Liên kết tài liệu chéo"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE\">Click here to display a single-angled line in an optimal way.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE\">Nhấn vào đây để hiển thị một đường góc đơn bằng cách tối ưu.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05240000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5616626\n"
+"05240000.xhp\n"
+"tit\n"
"help.text"
-msgid "Specify how to handle hyperlinks from your PDF file to other files."
-msgstr "Ghi rõ cách xử lý siêu liên kết từ tập tin PDF tới tập tin khác."
+msgid "Flip"
+msgstr "Lật"
-#: ref_pdf_export.xhp
+#: 05240000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1972106\n"
+"05240000.xhp\n"
+"bm_id3151264\n"
"help.text"
-msgid "Default mode"
-msgstr "Chế độ mặc định"
+msgid "<bookmark_value>draw objects; flipping</bookmark_value><bookmark_value>flipping draw objects</bookmark_value>"
+msgstr "<bookmark_value>đối tượng vẽ; lật</bookmark_value><bookmark_value>lật đối tượng vẽ</bookmark_value>"
-#: ref_pdf_export.xhp
+#: 05240000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id79042\n"
+"05240000.xhp\n"
+"hd_id3151264\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Links from your PDF document to other documents will be handled as it is specified in your operating system.</ahelp>"
-msgstr "<ahelp hid=\".\">Liên kết từ tài liệu PDF tới tài liệu khác sẽ được xử lý tùy theo thiết lập của hệ điều hành của bạn.</ahelp>"
+msgid "<link href=\"text/shared/01/05240000.xhp\" name=\"Flip\">Flip</link>"
+msgstr "<link href=\"text/shared/01/05240000.xhp\" name=\"Lật\">Lật</link>"
-#: ref_pdf_export.xhp
+#: 05240000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id4076357\n"
+"05240000.xhp\n"
+"par_id3145759\n"
+"2\n"
"help.text"
-msgid "Open with PDF reader application"
-msgstr "Mở bằng trình đọc PDF"
+msgid "<ahelp hid=\".\">Flips the selected object horizontally, or vertically.</ahelp>"
+msgstr "<ahelp hid=\".\">Lật đối tượng đã chọn theo chiều ngang hay dọc.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05240100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id8231757\n"
+"05240100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Cross-document links are opened with the PDF reader application that currently shows the document. The PDF reader application must be able to handle the specified file type inside the hyperlink.</ahelp>"
-msgstr "<ahelp hid=\".\">Liên kết tài liệu chéo được mở bằng ứng dụng đọc PDF đang hiển thị tài liệu. Trình đọc PDF phải có khả năng xử lý dạng tập tin được ghi rõ trong siêu liên kết.</ahelp>"
+msgid "Vertically"
+msgstr "Nằm dọc"
-#: ref_pdf_export.xhp
+#: 05240100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3168736\n"
+"05240100.xhp\n"
+"hd_id3146959\n"
+"1\n"
"help.text"
-msgid "Open with Internet browser"
-msgstr "Mở bằng trình duyệt Web"
+msgid "<link href=\"text/shared/01/05240100.xhp\" name=\"Vertically\">Vertically</link>"
+msgstr "<link href=\"text/shared/01/05240100.xhp\" name=\"Dọc\">Theo chiều dọc</link>"
-#: ref_pdf_export.xhp
+#: 05240100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1909848\n"
+"05240100.xhp\n"
+"par_id3149741\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Cross-document links are opened with the Internet browser. The Internet browser must be able to handle the specified file type inside the hyperlink.</ahelp>"
-msgstr "<ahelp hid=\".\">Liên kết tài liệu chéo được mở bằng trình duyệt Web. Chương trình này phải có khả năng quản lý dạng tập tin được ghi rõ bằng siêu liên kết.</ahelp>"
+msgid "<ahelp hid=\".uno:MirrorVert\">Flips the selected object(s) vertically from top to bottom.</ahelp>"
+msgstr "<ahelp hid=\".uno:MirrorVert\">Lật những đối tượng đã chọn theo chiều dọc, từ trên xuống dưới.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05240200.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3068636\n"
+"05240200.xhp\n"
+"tit\n"
"help.text"
-msgid "Security tab"
-msgstr ""
+msgid "Horizontally"
+msgstr "Theo chiều ngang"
-#: ref_pdf_export.xhp
-#, fuzzy
+#: 05240200.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2927335\n"
+"05240200.xhp\n"
+"hd_id3147543\n"
+"1\n"
"help.text"
-msgid "Set passwords"
-msgstr "Lưu mật khẩu"
+msgid "<link href=\"text/shared/01/05240200.xhp\" name=\"Horizontally\">Horizontally</link>"
+msgstr "<link href=\"text/shared/01/05240200.xhp\" name=\"Ngang\">Theo chiều ngang</link>"
-#: ref_pdf_export.xhp
-#, fuzzy
+#: 05240200.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id2107303\n"
+"05240200.xhp\n"
+"par_id3146936\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to open a dialog where you enter the passwords.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn vào để mở hộp thoại trong đó bạn nhập mật khẩu.</ahelp>"
+msgid "<ahelp hid=\".uno:ObjectMirrorHorizontal\">Flips the selected object(s) horizontally from left to right.</ahelp>"
+msgstr "<ahelp hid=\".uno:ObjectMirrorHorizontal\">Lật những đối tượng đã chọn từ trái sang phải.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05250000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id41123951\n"
+"05250000.xhp\n"
+"tit\n"
"help.text"
-msgid "You can enter a password to open the file. You can enter an optional password that allows to edit the document."
-msgstr ""
+msgid "Arrange"
+msgstr "Sắp đặt"
-#: ref_pdf_export.xhp
+#: 05250000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7985168\n"
+"05250000.xhp\n"
+"bm_id3152427\n"
"help.text"
-msgid "Printing"
-msgstr "In ấn"
+msgid "<bookmark_value>objects; arranging within stacks</bookmark_value><bookmark_value>arranging; objects</bookmark_value><bookmark_value>borders; arranging</bookmark_value><bookmark_value>pictures; arranging within stacks</bookmark_value><bookmark_value>draw objects; arranging within stacks</bookmark_value><bookmark_value>controls; arranging within stacks</bookmark_value><bookmark_value>OLE objects; arranging within stacks</bookmark_value><bookmark_value>charts; arranging within stacks</bookmark_value><bookmark_value>layer arrangement</bookmark_value><bookmark_value>levels; depth stagger</bookmark_value><bookmark_value>depth stagger</bookmark_value>"
+msgstr "<bookmark_value>đối tượng; sắp đặt bên trong đống</bookmark_value><bookmark_value>sắp đặt; đối tượng</bookmark_value><bookmark_value>viền; sắp đặt</bookmark_value><bookmark_value>ảnh; sắp đặt bên trong đống</bookmark_value><bookmark_value>đối tượng vẽ; sắp đặt bên trong đống</bookmark_value><bookmark_value>điều khiển; sắp đặt bên trong đống</bookmark_value><bookmark_value>đối tượng OLE; sắp đặt bên trong đống</bookmark_value><bookmark_value>đồ thị; sắp đặt bên trong đống</bookmark_value><bookmark_value>sắp đặt lớp</bookmark_value><bookmark_value>cấp; xếp chéo độ sâu</bookmark_value><bookmark_value>xếp chéo độ sâu</bookmark_value>"
-#: ref_pdf_export.xhp
+#: 05250000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id876186\n"
+"05250000.xhp\n"
+"hd_id3152427\n"
+"1\n"
"help.text"
-msgid "Not permitted"
-msgstr "Không được phép"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Arranging Objects\">Arrange</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Sắp đặt đối tượng\">Sắp đặt</link>"
-#: ref_pdf_export.xhp
+#: 05250000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3939634\n"
+"05250000.xhp\n"
+"par_id3154230\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Printing the document is not permitted.</ahelp>"
-msgstr "<ahelp hid=\".\">Không cho phép in ra tài liệu này.</ahelp>"
+msgid "<ahelp hid=\".uno:ObjectPosition\">Changes the stacking order of the selected object(s).</ahelp>"
+msgstr "<ahelp hid=\".uno:ObjectPosition\">Sửa đổi thứ tự xếp đống của các đối tượng đã chọn.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05250000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id599688\n"
+"05250000.xhp\n"
+"hd_id3153894\n"
+"9\n"
"help.text"
-msgid "Low resolution (150 dpi)"
-msgstr "Phân giải thấp (150 điểm/insơ)"
+msgid "Layer for text and graphics"
+msgstr "Lớp cho văn bản hay đồ họa"
-#: ref_pdf_export.xhp
+#: 05250000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1371501\n"
+"05250000.xhp\n"
+"par_id3154186\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">The document can only be printed in low resolution (150 dpi). Not all PDF readers honor this setting.</ahelp>"
-msgstr "<ahelp hid=\".\">Tài liệu này chỉ có thể được in ra ở độ phân giải thấp (150 dpi). Không phải tất cả các trình đọc PDF tùy theo thiết lập này.</ahelp>"
+msgid "Each object that you place in your document is successively stacked on the preceding object. Use the arrange commands to change the stacking order of objects in your document. You cannot change the stacking order of text."
+msgstr "Mỗi đối tượng bạn đặt vào tài liệu thì được xếp đống lần lượt trên đối tượng đặt trước. Hãy dùng các câu lệnh sắp đặt để sửa đổi thứ tự xếp đống của các đối tượng trong tài liệu. Tuy nhiên, không thể sửa đổi thứ tự xếp đống văn bản."
-#: ref_pdf_export.xhp
+#: 05250100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id4661702\n"
+"05250100.xhp\n"
+"tit\n"
"help.text"
-msgid "High resolution"
-msgstr "Phân giải cao"
+msgid "Bring to Front"
+msgstr "Nâng lên trên"
-#: ref_pdf_export.xhp
+#: 05250100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id7868892\n"
+"05250100.xhp\n"
+"hd_id3154044\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">The document can be printed in high resolution.</ahelp>"
-msgstr "<ahelp hid=\".\">Có thể in ra tài liệu ở độ phân giải cao.</ahelp>"
+msgid "<link href=\"text/shared/01/05250100.xhp\" name=\"Bring to Front\">Bring to Front</link>"
+msgstr "<link href=\"text/shared/01/05250100.xhp\" name=\"Nâng lên trên\">Nâng lên trên</link>"
-#: ref_pdf_export.xhp
+#: 05250100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2188787\n"
+"05250100.xhp\n"
+"par_id3149991\n"
+"2\n"
"help.text"
-msgid "Changes"
-msgstr "Thay đổi"
+msgid "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">Moves the selected object to the top of the stacking order, so that it is in front of other objects.</ahelp>"
+msgstr "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">Nâng đối tượng đã chọn lên trên đống, để hiện rõ « phía trước » các đối tượng khác.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05250100.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id5833307\n"
+"05250100.xhp\n"
+"par_id3147588\n"
+"3\n"
"help.text"
-msgid "Not permitted"
-msgstr "Không được phép"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-#: ref_pdf_export.xhp
+#: 05250200.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id7726676\n"
+"05250200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">No changes of the content are permitted.</ahelp>"
-msgstr "<ahelp hid=\".\">Không cho phép thay đổi nội dung.</ahelp>"
+msgid "Bring Forward"
+msgstr "Nâng lên"
-#: ref_pdf_export.xhp
+#: 05250200.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3729361\n"
+"05250200.xhp\n"
+"hd_id3152790\n"
+"1\n"
"help.text"
-msgid "Inserting, deleting, and rotating pages"
-msgstr "Chèn, xoá và xoay trang"
+msgid "<link href=\"text/shared/01/05250200.xhp\" name=\"Bring Forward \">Bring Forward </link>"
+msgstr "<link href=\"text/shared/01/05250200.xhp\" name=\"Nâng lên \">Nâng lên </link>"
-#: ref_pdf_export.xhp
+#: 05250200.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9573961\n"
+"05250200.xhp\n"
+"par_id3151264\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Only inserting, deleting, and rotating pages is permitted.</ahelp>"
-msgstr "<ahelp hid=\".\">Chỉ cho phép chèn, xoá và xoay trang.</ahelp>"
+msgid "<ahelp hid=\".\">Moves the selected object up one level, so that it is closer to top of the stacking order.</ahelp>"
+msgstr "<ahelp hid=\".\">Nâng đối tượng đã chọn lên một cấp, gần hơn đầu đống.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05250200.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7700430\n"
+"05250200.xhp\n"
+"par_id3149495\n"
+"3\n"
"help.text"
-msgid "Filling in form fields"
-msgstr "Điền vào trường biểu mẫu"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-#: ref_pdf_export.xhp
+#: 05250300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1180455\n"
+"05250300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Only filling in form fields is permitted.</ahelp>"
-msgstr "<ahelp hid=\".\">Chỉ cho phép điền vào trường biểu mẫu.</ahelp>"
+msgid "Send Backward"
+msgstr "Hạ thấp"
-#: ref_pdf_export.xhp
+#: 05250300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3405560\n"
+"05250300.xhp\n"
+"hd_id3150146\n"
+"1\n"
"help.text"
-msgid "Commenting, filling in form fields"
-msgstr "Ghi chú thích, điền vào trường biểu mẫu"
+msgid "<link href=\"text/shared/01/05250300.xhp\" name=\"Send Backward\">Send Backward</link>"
+msgstr "<link href=\"text/shared/01/05250300.xhp\" name=\"Hạ thấp\">Hạ thấp</link>"
-#: ref_pdf_export.xhp
+#: 05250300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3409527\n"
+"05250300.xhp\n"
+"par_id3150794\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Only commenting and filling in form fields is permitted.</ahelp>"
-msgstr "<ahelp hid=\".\">Chỉ cho phép ghi chú thích và điền vào trường biểu mẫu.</ahelp>"
+msgid "<ahelp hid=\".\">Moves the selected object down one level, so that it is closer to the bottom of the stacking order.</ahelp>"
+msgstr "<ahelp hid=\".\">Hạ thấp đối tượng đã chọn xuống một cấp, gần hơn cuối đống.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05250300.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7112338\n"
+"05250300.xhp\n"
+"par_id3150445\n"
+"3\n"
"help.text"
-msgid "Any except extracting pages"
-msgstr "Bất kỳ trừ rút trang"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-#: ref_pdf_export.xhp
+#: 05250400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id2855616\n"
+"05250400.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">All changes are permitted, except extracting pages.</ahelp>"
-msgstr "<ahelp hid=\".\">Cho phép mọi thay đổi, trừ rút trang.</ahelp>"
+msgid "Send to Back"
+msgstr "Hạ xuống dưới"
-#: ref_pdf_export.xhp
+#: 05250400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2091433\n"
+"05250400.xhp\n"
+"hd_id3155620\n"
+"1\n"
"help.text"
-msgid "Enable copying of content"
-msgstr "Bật sao chép nội dung"
+msgid "<link href=\"text/shared/01/05250400.xhp\" name=\"Send to Back\">Send to Back</link>"
+msgstr "<link href=\"text/shared/01/05250400.xhp\" name=\"Hạ xuống dưới\">Hạ xuống dưới</link>"
-#: ref_pdf_export.xhp
+#: 05250400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5092318\n"
+"05250400.xhp\n"
+"par_id3156116\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to enable copying of content to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiệu lực chức năng sao chép nội dung vào bảng nháp.</ahelp>"
+msgid "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">Moves the selected object to the bottom of the stacking order, so that it is behind the other objects.</ahelp>"
+msgstr "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">Hạ thấp đối tượng đã chọn xuống dưới đống, để ẩn « phía sau » các đối tượng khác.</ahelp>"
-#: ref_pdf_export.xhp
+#: 05250400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9312417\n"
+"05250400.xhp\n"
+"par_id3152895\n"
+"3\n"
"help.text"
-msgid "Enable text access for accessibility tools"
-msgstr "Bật truy cập văn bản cho công cụ khả năng truy cập"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-#: ref_pdf_export.xhp
+#: 05250500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9089022\n"
+"05250500.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to enable text access for accessibility tools.</ahelp>"
-msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiệu lực truy cập văn bản cho các công cụ khả năng truy cập.</ahelp>"
+msgid "To Foreground"
+msgstr "Tới cận cảnh"
-#: ref_pdf_export.xhp
+#: 05250500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3150507\n"
-"50\n"
+"05250500.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "Export button"
-msgstr ""
+msgid "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\" name=\"To Foreground\">To Foreground</link></variable>"
+msgstr "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\" name=\"Tới cận cảnh\">Tới cận cảnh</link></variable>"
-#: ref_pdf_export.xhp
+#: 05250500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3146975\n"
-"51\n"
+"05250500.xhp\n"
+"par_id3151387\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Exports the current file in PDF format.</ahelp>"
-msgstr "<ahelp hid=\".\">Xuất tập tin hiện tại theo định dạng PDF.</ahelp>"
+msgid "<ahelp hid=\".uno:SetObjectToForeground\">Moves the selected object in front of text.</ahelp>"
+msgstr "<ahelp hid=\".uno:SetObjectToForeground\">Nâng đối tượng đã chọn lên bên trên văn bản.</ahelp>"
-#: 07010000.xhp
+#: 05250500.xhp
msgctxt ""
-"07010000.xhp\n"
-"tit\n"
+"05250500.xhp\n"
+"par_id3147000\n"
+"6\n"
"help.text"
-msgid "New Window"
-msgstr "Cửa sổ mới"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-#: 07010000.xhp
+#: 05250600.xhp
msgctxt ""
-"07010000.xhp\n"
-"bm_id6323129\n"
+"05250600.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>new windows</bookmark_value><bookmark_value>windows;new</bookmark_value>"
-msgstr "<bookmark_value>cửa sổ mới</bookmark_value><bookmark_value>cửa sổ;mới</bookmark_value>"
+msgid "To Background"
+msgstr "Về nền"
-#: 07010000.xhp
+#: 05250600.xhp
msgctxt ""
-"07010000.xhp\n"
-"hd_id3148882\n"
+"05250600.xhp\n"
+"hd_id3146959\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/07010000.xhp\" name=\"New Window\">New Window</link>"
-msgstr "<link href=\"text/shared/01/07010000.xhp\" name=\"Cửa sổ mới\">Cửa sổ mới</link>"
+msgid "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\" name=\"To Background\">To Background</link></variable>"
+msgstr "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\" name=\"Về nền\">Về nền</link></variable>"
-#: 07010000.xhp
+#: 05250600.xhp
msgctxt ""
-"07010000.xhp\n"
-"par_id3158442\n"
+"05250600.xhp\n"
+"par_id3146902\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewWindow\">Opens a new window that displays the contents of the current window.</ahelp> You can now view different parts of the same document at the same time."
-msgstr "<ahelp hid=\".uno:NewWindow\">Mở cửa sổ mới mà cũng hiển thị nội dung của cửa sổ hiện thời.</ahelp> Vậy bạn có thể xem cùng lúc các phần tài liệu khác nhau."
+msgid "<ahelp hid=\".uno:SetObjectToBackground\">Moves the selected object behind text.</ahelp>"
+msgstr "<ahelp hid=\".uno:SetObjectToBackground\">Hạ thấp đối tượng đã chọn xuống bên dưới văn bản.</ahelp>"
-#: 07010000.xhp
+#: 05250600.xhp
msgctxt ""
-"07010000.xhp\n"
-"par_id3147588\n"
-"3\n"
+"05250600.xhp\n"
+"par_id3148731\n"
+"4\n"
"help.text"
-msgid "Changes made to a document in one window are automatically applied to all of the windows that are open for that document."
-msgstr "Thay đổi làm về tài liệu trong cửa sổ này cũng được tự động áp dụng cho tất cả các cửa sổ còn mở cho tài liệu đó."
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Lớp\">Lớp</link>"
-#: 06150100.xhp
+#: 05260000.xhp
msgctxt ""
-"06150100.xhp\n"
+"05260000.xhp\n"
"tit\n"
"help.text"
-msgid "XML Filter"
-msgstr "Bộ lọc XML"
+msgid "Anchor"
+msgstr "Neo"
-#: 06150100.xhp
+#: 05260000.xhp
msgctxt ""
-"06150100.xhp\n"
-"hd_id3153882\n"
+"05260000.xhp\n"
+"hd_id3155913\n"
"1\n"
"help.text"
-msgid "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\" name=\"XML Filter\">XML Filter</link></variable>"
-msgstr "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link></variable>"
+msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\">Anchor</link>"
+msgstr "<link href=\"text/shared/01/05260000.xhp\" name=\"Thả neo\">Thả neo</link>"
-#: 06150100.xhp
+#: 05260000.xhp
msgctxt ""
-"06150100.xhp\n"
-"par_id3153070\n"
+"05260000.xhp\n"
+"par_id3145356\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">View and edit the settings of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">Xem và chỉnh sửa thiết lập của một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
+msgid "<ahelp hid=\".\">Sets the anchoring options for the selected object.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt các tùy chọn về chức năng thả neo cho đối tượng đã chọn.</ahelp>"
-#: 05210500.xhp
+#: 05260000.xhp
msgctxt ""
-"05210500.xhp\n"
-"tit\n"
+"05260000.xhp\n"
+"par_id3150789\n"
+"3\n"
"help.text"
-msgid "Bitmap"
-msgstr "Ảnh bitmap"
+msgid "If the selected object is in a frame, you can also anchor the object to the frame."
+msgstr "Đối tượng đã chọn cũng nằm trong khung thì bạn cũng có thể thả neo đối tượng vào khung đó."
-#: 05210500.xhp
+#: 05260100.xhp
msgctxt ""
-"05210500.xhp\n"
-"bm_id3155619\n"
+"05260100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>bitmaps; patterns</bookmark_value><bookmark_value>areas; bitmap patterns</bookmark_value><bookmark_value>pixel patterns</bookmark_value><bookmark_value>pixel editor</bookmark_value><bookmark_value>pattern editor</bookmark_value>"
-msgstr "<bookmark_value>ảnh bitmap; mẫu</bookmark_value><bookmark_value>vùng; mẫu bitmap </bookmark_value><bookmark_value>mẫu điểm ảnh</bookmark_value><bookmark_value>bộ chỉnh sửa điểm ảnh</bookmark_value><bookmark_value>bộ chỉnh sửa mẫu</bookmark_value>"
+msgid "To Page"
+msgstr "Vào trang"
-#: 05210500.xhp
+#: 05260100.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3155619\n"
+"05260100.xhp\n"
+"hd_id3150278\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210500.xhp\" name=\"Bitmap\">Bitmap</link>"
-msgstr "<link href=\"text/shared/01/05210500.xhp\" name=\"Ảnh bitmap\">Ảnh bitmap</link>"
+msgid "<link href=\"text/shared/01/05260100.xhp\" name=\"To Page\">To Page</link>"
+msgstr "<link href=\"text/shared/01/05260100.xhp\" name=\"Vào trang\">Vào trang</link>"
-#: 05210500.xhp
+#: 05260100.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3149495\n"
+"05260100.xhp\n"
+"par_id3150756\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_BITMAP\">Select a bitmap that you want to use as a fill pattern, or create your own pixel pattern. You can also import bitmaps, and save or load bitmap lists.</ahelp>"
-msgstr "<ahelp hid=\"HID_AREA_BITMAP\">Chọn một ảnh bitmap cần dùng làm mẫu tô đầy, hoặc tạo một mẫu điểm ảnh mới. Bạn cũng có thể nhập khẩu ảnh mảng, và lưu hay nạp danh sách các ảnh bitmap.</ahelp>"
+msgid "<ahelp hid=\".uno:SetAnchorToPage\">Anchors the selected item to the current page.</ahelp>"
+msgstr "<ahelp hid=\".uno:SetAnchorToPage\">Thả neo mục đã chọn vào trang hiện tại.</ahelp>"
-#: 05210500.xhp
+#: 05260100.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3148585\n"
-"3\n"
+"05260100.xhp\n"
+"par_id3149987\n"
+"4\n"
"help.text"
-msgid "Pattern Editor"
-msgstr "Sửa hình mẫu"
+msgid "The anchored item remains on the current page even if you insert or delete text."
+msgstr "Mục đã thả neo sẽ còn lại trên trang hiện thời, thậm chí nếu bạn chèn hay xoá văn bản."
-#: 05210500.xhp
+#: 05260100.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3147226\n"
-"4\n"
+"05260100.xhp\n"
+"par_id3152821\n"
+"3\n"
"help.text"
-msgid "Use this editor to create a simple, two-color, 8x8 pixel bitmap pattern."
-msgstr "Dùng chức năng này để tạo một mẫu bitmap 8×8 màu đôi đơn giản."
+msgid "The anchor icon is displayed at the top left corner of the page."
+msgstr "Biểu tượng neo được hiển thị ở góc trên bên trái trang."
-#: 05210500.xhp
+#: 05260200.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3145669\n"
-"5\n"
+"05260200.xhp\n"
+"tit\n"
"help.text"
-msgid "Grid"
-msgstr "Lưới"
+msgid "To Paragraph"
+msgstr "Vào đoạn văn"
-#: 05210500.xhp
+#: 05260200.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3150774\n"
-"6\n"
+"05260200.xhp\n"
+"hd_id3151260\n"
+"1\n"
"help.text"
-msgid "To enable this editor, select the <emph>Blank</emph> bitmap in the bitmap list."
-msgstr "Để hiệu lực chức năng này, chọn ảnh bitmap<emph>Trắng</emph> (Blank) trong danh sách ảnh bitmap."
+msgid "<link href=\"text/shared/01/05260200.xhp\" name=\"To Paragraph\">To Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05260200.xhp\" name=\"Vào đoạn văn\">Vào đoạn văn</link>"
-#: 05210500.xhp
+#: 05260200.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3145072\n"
-"17\n"
+"05260200.xhp\n"
+"par_id3155271\n"
+"2\n"
"help.text"
-msgid "Foreground color"
-msgstr "Màu cảnh gần"
+msgid "<ahelp hid=\".uno:SetAnchorToPara\" visibility=\"visible\">Anchors the selected item to the current paragraph.</ahelp>"
+msgstr "<ahelp hid=\".uno:SetAnchorToPara\" visibility=\"visible\">Thả neo mục đã chọn vào đoạn văn.</ahelp>"
-#: 05210500.xhp
+#: 05260200.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3155535\n"
-"18\n"
+"05260200.xhp\n"
+"par_id3154926\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_COLOR\">Select a foreground color, and then click in the grid to add a pixel to the pattern.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_COLOR\">Chọn màu cảnh gần, sau đó nhấn vào lưới để thêm vào mẫu một điểm ảnh.</ahelp>"
+msgid "The anchor icon is displayed at the left page margin at the beginning of the paragraph."
+msgstr "Biểu tượng neo được hiển thị trong lề bên trái trang, ở đầu đoạn văn."
-#: 05210500.xhp
+#: 05260300.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3149398\n"
-"19\n"
+"05260300.xhp\n"
+"tit\n"
"help.text"
-msgid "Background color"
-msgstr "Màu nền"
+msgid "To Character"
+msgstr "Vào ký tự"
-#: 05210500.xhp
+#: 05260300.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3148538\n"
-"20\n"
+"05260300.xhp\n"
+"hd_id3154044\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR\">Select a background color for your bitmap pattern.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR\">Chọn màu nền cho mẫu bitmap.</ahelp>"
+msgid "<link href=\"text/shared/01/05260300.xhp\" name=\"To Character\">To Character</link>"
+msgstr "<link href=\"text/shared/01/05260300.xhp\" name=\"Vào ký tự\">Vào ký tự</link>"
-#: 05210500.xhp
+#: 05260300.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3147275\n"
-"7\n"
+"05260300.xhp\n"
+"par_id3147069\n"
+"2\n"
"help.text"
-msgid "Bitmap Pattern"
-msgstr "Mẫu bitmap"
+msgid "<ahelp hid=\".\">Anchors the selected item to a character.</ahelp> This command is only available for graphic objects."
+msgstr "<ahelp hid=\".\">Thả neo mục đã chọn vào một ký tự nào đó.</ahelp> Câu lệnh này chỉ sẵn sàng cho đối tượng kiểu đồ họa."
-#: 05210500.xhp
+#: 05260300.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3146847\n"
-"8\n"
+"05260300.xhp\n"
+"par_id3146067\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BITMAPS\">Select a bitmap in the list, and then click <emph>OK</emph> to apply the pattern to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BITMAPS\">Chọn một ảnh bitmap trong danh sách, sau đó nhấn vào nút <emph>OK</emph> để áp dụng mẫu cho đối tượng được chọn.</ahelp>"
+msgid "The anchor is displayed in front of the character."
+msgstr "Neo được hiển thị phía trước ký tự."
-#: 05210500.xhp
+#: 05260300.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3150275\n"
-"9\n"
+"05260300.xhp\n"
+"par_id3152924\n"
+"4\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "To align a graphic relative to the character that it is anchored to, right-click the graphic, and then choose <emph>Graphics</emph>. Click the <emph>Type </emph>tab, and in the <emph>Position </emph>area, select <emph>Character</emph> in the <emph>to</emph> boxes."
+msgstr "Để chỉnh canh một đồ họa tương ứng so với ký tự vào đó nó đã thả neo, nhấn-phải vào đồ họa, sau đó chọn mục <emph>Đồ họa</emph>. Nhấn vào thẻ <emph>Kiểu</emph>, và trong vùng <emph>Vị trí </emph> chọn mục <emph>Ký tự</emph> trong hộp <emph>vào</emph>."
-#: 05210500.xhp
+#: 05260400.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3154306\n"
-"10\n"
+"05260400.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_ADD\">Adds a bitmap that you created in the <emph>Pattern Editor </emph>to the current list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_ADD\">Thêm vào danh sách hiện thời ảnh bitmap bạn đã tạo dùng chức năng <emph>Sửa hình mẫu</emph>.</ahelp>"
+msgid "To Cell"
+msgstr "Vào ô"
-#: 05210500.xhp
+#: 05260400.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3158432\n"
-"11\n"
+"05260400.xhp\n"
+"hd_id3147212\n"
+"1\n"
"help.text"
-msgid "Modify"
-msgstr "Sửa"
+msgid "<link href=\"text/shared/01/05260400.xhp\" name=\"To Cell\">To Cell</link>"
+msgstr "<link href=\"text/shared/01/05260400.xhp\" name=\"Vào ô\">Vào ô</link>"
-#: 05210500.xhp
+#: 05260400.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3153827\n"
-"12\n"
+"05260400.xhp\n"
+"par_id3150794\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_MODIFY\">Replaces a bitmap that you created in the <emph>Pattern Editor</emph> with the current bitmap pattern. If you want, you can save the pattern under a different name.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_MODIFY\">Thay thế ảnh mảng bạn đã tạo dùng chức năng <emph>Sửa hình mẫu</emph> bằng mẫu bitmap hiện thời. Bạn cũng có thể lưu mẫu này dưới tên khác.</ahelp>"
+msgid "<ahelp hid=\".uno:SetAnchorToCell\" visibility=\"visible\">Anchors the selected item to a cell.</ahelp> The anchor icon is displayed in the upper left corner of the cell."
+msgstr "<ahelp hid=\".uno:SetAnchorToCell\" visibility=\"visible\">Thả mục đã chọn vào ô bảng.</ahelp> Biểu tượng neo được hiển thị ở góc trên bên trái ô."
-#: 05210500.xhp
+#: 05260500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3149516\n"
-"13\n"
+"05260500.xhp\n"
+"tit\n"
"help.text"
-msgid "Import"
-msgstr "Nhập"
+msgid "To Frame"
+msgstr "Vào khung"
-#: 05210500.xhp
+#: 05260500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3148473\n"
-"14\n"
+"05260500.xhp\n"
+"hd_id3149991\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_IMPORT\">Tìm ảnh bitmap cần nhập khẩu, sau đó nhấn vào nút <emph>Mở</emph>. Ảnh bitmap nhập vào được thêm vào danh sách các ảnh bitmap sẵn sàng.</ahelp>"
+msgid "<link href=\"text/shared/01/05260500.xhp\" name=\"To Frame\">To Frame</link>"
+msgstr "<link href=\"text/shared/01/05260500.xhp\" name=\"Vào khung\">Vào khung</link>"
-#: 05210500.xhp
+#: 05260500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3159166\n"
-"21\n"
+"05260500.xhp\n"
+"par_id3159242\n"
+"2\n"
"help.text"
-msgid "Load Bitmap List"
-msgstr "Nạp danh sách ảnh bitmap"
+msgid "<ahelp hid=\".uno:SetAnchorToFrame\" visibility=\"visible\">Anchors the selected item to the surrounding frame.</ahelp>"
+msgstr "<ahelp hid=\".uno:SetAnchorToFrame\" visibility=\"visible\">Thả neo mục đã chọn vào khung giới hạn.</ahelp>"
-#: 05210500.xhp
+#: 05260600.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3155341\n"
-"22\n"
+"05260600.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_LOAD\">Loads a different list of bitmaps.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_LOAD\">Nạp danh sách ảnh bitmap khác.</ahelp>"
+msgid "As Character"
+msgstr "Dạng ký tự"
-#: 05210500.xhp
+#: 05260600.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3151246\n"
-"23\n"
+"05260600.xhp\n"
+"hd_id3154621\n"
+"1\n"
"help.text"
-msgid "Save Bitmap List"
-msgstr "Lưu danh sách ảnh bitmap"
+msgid "<link href=\"text/shared/01/05260600.xhp\" name=\"As Character\">As Character</link>"
+msgstr "<link href=\"text/shared/01/05260600.xhp\" name=\"Dạng ký tự\">Dạng ký tự</link>"
-#: 05210500.xhp
+#: 05260600.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3151385\n"
-"24\n"
+"05260600.xhp\n"
+"par_id3146946\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_SAVE\">Saves the current list of bitmaps, so that you can load it later.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_SAVE\">Lưu danh sách ảnh bitmap hiện thời, để nạp lại sau.</ahelp>"
+msgid "<ahelp hid=\".\">Anchors the selected item as a character in the current text. If the height of the selected item is greater than the current font size, the height of the line containing the item is increased.</ahelp>"
+msgstr "<ahelp hid=\".\">Thả neo mục đã chọn dưới dạng ký tự trong văn bản hiện tại. Mục có chiều cao lớn hơn kích cỡ phông hiện thời thì tăng chiều cao của dòng chứa mục này.</ahelp>"
-#: guides.xhp
+#: 05270000.xhp
msgctxt ""
-"guides.xhp\n"
+"05270000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap Lines"
-msgstr ""
+msgid "Edit Points"
+msgstr "Sửa điểm"
-#: guides.xhp
+#: 05270000.xhp
msgctxt ""
-"guides.xhp\n"
-"bm_id1441999\n"
+"05270000.xhp\n"
+"hd_id3155271\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>guides;display options (Impress/Draw)</bookmark_value>"
-msgstr "<bookmark_value>nét dẫn;tùy chọn hiển thị (Impress/Draw)</bookmark_value>"
+msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\">Edit Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Sửa điểm\">Sửa điểm</link>"
-#: guides.xhp
-#, fuzzy
+#: 05270000.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN10562\n"
+"05270000.xhp\n"
+"par_id3153391\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/guides.xhp\">Snap Lines</link>"
-msgstr "<link href=\"text/shared/01/guides.xhp\">Nét dẫn</link>"
+msgid "<ahelp hid=\".uno:ToggleObjectBezierMode\">Lets you change the shape of the selected drawing object.</ahelp>"
+msgstr "<ahelp hid=\".uno:ToggleObjectBezierMode\">Cho phép bạn thay đổi hình của đối tượng vẽ đã chọn.</ahelp>"
-#: guides.xhp
-#, fuzzy
+#: 05270000.xhp
msgctxt ""
-"guides.xhp\n"
-"par_id3146313\n"
+"05270000.xhp\n"
+"par_id3148668\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the display options for snap lines.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ các tùy chọn hiển thị cho nét dẫn.</ahelp>"
+msgid "To edit the shape of a selected drawing object, click the <emph>Points</emph> icon on the <emph>Drawing</emph> Bar, and then drag one of the points on the object."
+msgstr "Để chỉnh sửa hình của đối tượng vẽ đã chọn, nhấn vào biểu tượng <emph>Điểm</emph> trên thanh <emph>Vẽ</emph>, sau đó kéo một của những điểm của đối tượng."
-#: guides.xhp
+#: 05270000.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN1057B\n"
+"05270000.xhp\n"
+"par_id3093440\n"
"help.text"
-msgid "Display Snap Lines"
-msgstr ""
+msgid "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">Edit Points Bar</link>"
+msgstr "<link href=\"text/shared/main0227.xhp\" name=\"Thanh Sửa điểm\">Thanh Sửa điểm</link>"
-#: guides.xhp
-#, fuzzy
+#: 05280000.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN1057F\n"
+"05280000.xhp\n"
+"tit\n"
"help.text"
-msgid "Displays or hides snap lines that you can use to align objects on a page."
-msgstr "Hiển thị hay ẩn các nét dẫn bạn có thể sử dụng để chỉnh canh các đối tượng trên trang."
+msgid "Fontwork"
+msgstr "Chữ nghệ thuật"
-#: guides.xhp
+#: 05280000.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN10582\n"
+"05280000.xhp\n"
+"hd_id3146959\n"
+"51\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "<variable id=\"fntwrk\"><link href=\"text/shared/01/05280000.xhp\" name=\"FontWork\">Fontwork Dialog (Previous Version)</link></variable>"
msgstr ""
-#: guides.xhp
-#, fuzzy
+#: 05280000.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN10586\n"
+"05280000.xhp\n"
+"par_id3151097\n"
+"52\n"
"help.text"
-msgid "Automatically aligns objects to vertical and horizontal snap lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key </defaultinline></switchinline>when you drag an object."
-msgstr "Tự động chỉnh canh các đối tượng theo các đường lưới theo chiều ngang/dọc. Để bỏ qua tính năng này, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo đối tượng."
+msgid "<ahelp hid=\".uno:FontWork\">Edits Fontwork effects of the selected object that has been created with the previous Fontwork dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:FontWork\">Chỉnh sửa các hiệu ứng chữ nghệ thuật của đối tượng đã được tạo nhờ hộp thoại <emph>Chữ nghệ thuật</emph> trước đó.</ahelp>"
-#: guides.xhp
+#: 05280000.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN105C6\n"
+"05280000.xhp\n"
+"par_id3155934\n"
+"53\n"
"help.text"
-msgid "Snap Lines to Front"
+msgid "This <emph>Fontwork</emph> dialog is only available for Fontwork in old Writer text documents that were created prior to OpenOffice.org 2.0. You must first call <emph>Tools - Customize</emph> to add a menu command or an icon to open this dialog."
msgstr ""
-#: guides.xhp
-#, fuzzy
-msgctxt ""
-"guides.xhp\n"
-"par_idN105CA\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays the snap lines in front of the objects on the slide or page.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị các đường lưới ở trên những đối tượng trên ảnh chiếu hay trang.</ahelp>"
-
-#: 05110700.xhp
-msgctxt ""
-"05110700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Superscript"
-msgstr "Chỉ số Trên"
-
-#: 05110700.xhp
-msgctxt ""
-"05110700.xhp\n"
-"hd_id3083278\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05110700.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05110700.xhp\" name=\"Chỉ số Trên\">Chỉ số Trên</link>"
-
-#: 05110700.xhp
+#: 05280000.xhp
msgctxt ""
-"05110700.xhp\n"
-"par_id3152937\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3154497\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\".uno:SuperScript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp>"
-msgstr "<ahelp hid=\".uno:SuperScript\">Giảm kích cỡ phông của chuỗi đã chọn, và nâng chuỗi lên trên đường cơ bản.</ahelp>"
+msgid "You can change the shape of the text baseline to match semicircles, arcs, circles, and freeform lines."
+msgstr "Bạn cũng có thể thay đổi hình của đường cơ bản của văn bản để tương ứng với hình nửa vòng tròn, hình cung, hình tròn và đường dạng tự do."
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"hd_id3152372\n"
+"54\n"
"help.text"
-msgid "Drawing Object"
-msgstr "Vẽ đối tượng"
+msgid "Alignment icons"
+msgstr "Biểu tượng Canh lề"
-#: 04150000.xhp
-#, fuzzy
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3146873\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3149760\n"
+"55\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Drawing Object\">Drawing Object</link>"
-msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"Đối tượng OLE\">Đối tượng OLE</link>"
+msgid "<ahelp hid=\"HID_FONTWORK_CTL_FORMS\" visibility=\"hidden\">Click the shape of the baseline that you want to use for the text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_CTL_FORMS\" visibility=\"hidden\">Nhấn vào hình của đường cơ bản mà bạn muốn dùng cho văn bản.</ahelp>"
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"par_id3159079\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3152542\n"
+"56\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an object into your document. For movies and sounds, use <emph>Insert - Movie and Sound</emph> instead.</ahelp>"
-msgstr "<ahelp hid=\".\">Chèn vào tài liệu một đối tượng. Đối với phim và âm thanh, dùng lệnh <emph>Chèn > Phim và Âm thanh</emph> thay vào đó.</ahelp>"
+msgid "The top row contains the following baseline shapes: <emph>Upper Semicircle</emph>, <emph>Lower Semicircle</emph>, <emph>Left Semicircle</emph> and <emph>Right Semicircle</emph>."
+msgstr "Hàng đầu chứa các hình đường cơ bản này: <emph>Nửa vòng tròn trên</emph>, <emph>Nửa vòng tròn dưới</emph>, <emph>Nửa vòng tròn trái</emph> và <emph>Nửa vòng tròn phải</emph>."
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3154894\n"
-"8\n"
+"05280000.xhp\n"
+"par_id3150774\n"
+"58\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
-msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"Đối tượng OLE\">Đối tượng OLE</link>"
+msgid "The middle row contains the following baseline shapes: <emph>Upper Arc</emph>, <emph>Lower Arc, Left Arc</emph> and <emph>Right Arc</emph>."
+msgstr "Hàng giữa chứa các hình đường cơ bản này: <emph>Cung trên</emph>, <emph>Cung dưới</emph>, <emph>Cung trái</emph> và <emph>Cung phải</emph>."
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3159201\n"
-"6\n"
+"05280000.xhp\n"
+"par_id3159158\n"
+"60\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150400.xhp\" name=\"Sound\">Sound</link>"
-msgstr "<link href=\"text/shared/01/04150400.xhp\" name=\"Âm thanh\">Âm thanh</link>"
+msgid "The bottom row contains the following baseline shapes: <emph>Open Circle, Closed Circle, Closed Circle II</emph>, and <emph>Open Circle Vertical</emph>. For the best results, the drawing object must contain more than two lines of text."
+msgstr "Hàng cuối chứa các hình đường cơ bản này: <emph>Tròn mở, Tròn đóng, Tròn đóng 2</emph> và <emph>Trờn mở thẳng đứng</emph>. Để làm kết quả đẹp nhất, đối tượng vẽ phải chứa ít nhất hai dòng văn bản."
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3157896\n"
-"7\n"
+"05280000.xhp\n"
+"par_id3149237\n"
+"62\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Video</link>"
-msgstr "<link href=\"text/shared/01/04150500.xhp\" name=\"Ảnh động\">Ảnh động</link>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_OFF\">Removes baseline formatting.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_OFF\">Gỡ bỏ định dạng của đường cơ bản.</ahelp>"
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3153577\n"
-"4\n"
+"05280000.xhp\n"
+"par_id3149244\n"
"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
-msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Công thức\">Công thức</link>"
+msgid "<image id=\"img_id3161458\" src=\"cmd/sc_fontwork.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3161458\">Icon</alt></image>"
+msgstr "<image id=\"img_id3161458\" src=\"cmd/sc_fontwork.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3161458\">Biểu tượng</alt></image>"
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3152552\n"
-"10\n"
+"05280000.xhp\n"
+"par_id3149046\n"
+"63\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Đồ thị\">Đồ thị</link></caseinline></switchinline>"
+msgid "Off"
+msgstr "Tắt"
-#: 04150000.xhp
+#: 05280000.xhp
msgctxt ""
-"04150000.xhp\n"
-"par_id0302200903593543\n"
+"05280000.xhp\n"
+"par_id3156344\n"
+"64\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Inserts a chart.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chèn một kí tự</caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_ROTATE\">Uses the top or the bottom edge of the selected object as the text baseline.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_ROTATE\">Dùng cạnh bên trên hay bên dưới của đối tượng đã chọn để làm đường cơ bản của văn bản.</ahelp>"
-#: 05070100.xhp
+#: 05280000.xhp
msgctxt ""
-"05070100.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3150791\n"
"help.text"
-msgid "Align Left"
-msgstr "Canh lề trái"
+msgid "<image id=\"img_id3153379\" src=\"svx/res/fw02.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153379\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153379\" src=\"svx/res/fw02.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153379\">Biểu tượng</alt></image>"
-#: 05070100.xhp
+#: 05280000.xhp
msgctxt ""
-"05070100.xhp\n"
-"hd_id3147069\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3153339\n"
+"65\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070100.xhp\" name=\"Align Left\">Align Left</link>"
-msgstr "<link href=\"text/shared/01/05070100.xhp\" name=\"Canh lề trái\">Canh lề trái</link>"
+msgid "Rotate"
+msgstr "Xoay"
-#: 05070100.xhp
+#: 05280000.xhp
msgctxt ""
-"05070100.xhp\n"
-"par_id3160463\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3155742\n"
+"66\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignLeft\">Aligns the left edges of the selected objects. If only one object is selected in Draw or Impress, the left edge of the object is aligned to the left page margin.</ahelp>"
-msgstr "<ahelp hid=\".uno:AlignLeft\">Chỉnh canh các cạnh bên trái của những đối tượng đã chọn. Chỉ chọn một đối tượng Draw hay Impress thì cạnh bên trái của đối tượng được chỉnh canh theo lề bên trái của trang.</ahelp>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_UPRIGHT\">Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_UPRIGHT\">Dùng cạnh bên trên hay bên dưới của đối tượng đã chọn để làm đường cơ bản của văn bản, cũng bảo tồn tình trạng chỉnh canh theo chiều dóc gốc của mỗi ký tự riêng.</ahelp>"
-#: 05070100.xhp
+#: 05280000.xhp
msgctxt ""
-"05070100.xhp\n"
-"par_id3150146\n"
-"4\n"
+"05280000.xhp\n"
+"par_id3154069\n"
"help.text"
-msgid "Objects are aligned to the left edge of the leftmost object in the selection."
-msgstr "Các đối tượng được chỉnh canh theo cạnh bên trái của đối tượng tận bên trái trong vùng chọn."
+msgid "<image id=\"img_id3152933\" src=\"svx/res/fw03.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3152933\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152933\" src=\"svx/res/fw03.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3152933\">Biểu tượng</alt></image>"
-#: 05070100.xhp
+#: 05280000.xhp
msgctxt ""
-"05070100.xhp\n"
-"par_id3150445\n"
-"3\n"
+"05280000.xhp\n"
+"par_id3154153\n"
+"67\n"
"help.text"
-msgid "<variable id=\"mehrfachselektion\">To align the individual objects in a group, <switchinline select=\"appl\"><caseinline select=\"CALC\">choose <emph>Format - Group - Edit Group</emph></caseinline><defaultinline>double-click</defaultinline></switchinline> to enter the group, select the objects, right-click, and then choose an alignment option. </variable>"
-msgstr "<variable id=\"mehrfachselektion\">Để chỉnh canh mỗi đối tượng riêng trong nhóm, <switchinline select=\"appl\"><caseinline select=\"CALC\">chọn lệnh <emph>Định dạng > Nhóm > Sửa nhóm</emph></caseinline><defaultinline>nhấn-đôi</defaultinline></switchinline> để vào nhóm, lựa chọn (các) đối tượng, nhấn-phải, sau đó chọn chỉnh canh. </variable>"
+msgid "Upright"
+msgstr "Thắng đứng"
-#: 06050000.xhp
+#: 05280000.xhp
msgctxt ""
-"06050000.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3149202\n"
+"68\n"
"help.text"
-msgid "Bullets and Numbering"
-msgstr "Chấm điểm và Đánh số"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTX\">Horizontally slants the characters in the text object.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTX\">Làm xiên theo chiều ngang các ký tự của đối tượng văn bản.</ahelp>"
-#: 06050000.xhp
+#: 05280000.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149551\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3153180\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Điểm chấm và Đánh số\">Điểm chấm và Đánh số</link>"
+msgid "<image id=\"img_id3151041\" src=\"svx/res/fw04.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3151041\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151041\" src=\"svx/res/fw04.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3151041\">Biểu tượng</alt></image>"
-#: 06050000.xhp
+#: 05280000.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3150146\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3149983\n"
+"69\n"
"help.text"
-msgid "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
-msgstr "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Thêm vào đoạn văn hiện tại chấm điểm hay đánh số, và cho phép bạn chỉnh sửa định dạng của chấm điểm hay đánh số.</ahelp></variable>"
+msgid "Slant Horizontal"
+msgstr "Làm xiên nằm ngang"
-#: 06050000.xhp
+#: 05280000.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3145211\n"
-"3\n"
+"05280000.xhp\n"
+"par_id3154297\n"
+"70\n"
"help.text"
-msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
-msgstr "Hộp thoại <emph>Chấm điểm và Đánh số</emph> có những thẻ này:"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTY\">Vertically slants the characters in the text object.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTY\">Làm xiên theo chiều dọc các ký tự của đối tượng văn bản.</ahelp>"
-#: 06050000.xhp
+#: 05280000.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3154984\n"
-"27\n"
+"05280000.xhp\n"
+"par_id3147348\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bỏ </caseinline></switchinline>"
+msgid "<image id=\"img_id3154690\" src=\"svx/res/fw05.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3154690\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154690\" src=\"svx/res/fw05.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3154690\">Biểu tượng</alt></image>"
-#: 06050000.xhp
+#: 05280000.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3153031\n"
-"28\n"
+"05280000.xhp\n"
+"par_id3150962\n"
+"71\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_NUM_RESET\">Removes the numbering or bullets from the current paragraph or from the selected paragraphs.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_NUM_RESET\">Gỡ bỏ đánh số hay chấm điểm khỏi đoạn văn hiện tại, hay khỏi các đoạn văn đã chọn.</ahelp></caseinline></switchinline>"
+msgid "Slant Vertical"
+msgstr "Làm xiên theo chiều dọc"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3154985\n"
+"22\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_MIRROR\">Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_MIRROR\">Đảo ngược hướng luồng văn bản, và lật văn bản theo chiều ngang hay dọc. Để sử dụng câu lệnh này, trước tiên bạn cần phải áp dụng cho văn bản một đường cơ bản khác.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"hd_id3154788\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3155854\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">New</link>"
-msgstr "<link href=\"text/shared/01/01010000.xhp\" name=\"Mới\">Mới</link>"
+msgid "<image id=\"img_id3153142\" src=\"svx/res/fw06.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153142\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153142\" src=\"svx/res/fw06.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153142\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3145669\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3149934\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".uno:AddDirect\">Creates a new $[officename] document.</ahelp>"
-msgstr "<ahelp hid=\".uno:AddDirect\">Tạo một tài liệu $[officename] mới.</ahelp>"
+msgid "Orientation"
+msgstr "Hướng"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149182\n"
-"115\n"
+"05280000.xhp\n"
+"par_id3154640\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Creates a new $[officename] document. Click the arrow to select the document type.</ahelp>"
-msgstr "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Tạo một tài liệu $[officename] mới. Nhấn vào mũi tên để chọn kiểu tài liệu.</ahelp>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_LEFT\">Aligns the text to the left end of the text baseline.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_LEFT\">Chỉnh canh văn bản theo cuối bên trái của đường cơ bản văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153528\n"
-"81\n"
+"05280000.xhp\n"
+"par_id3156006\n"
"help.text"
-msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates and Documents.</emph></ahelp>"
-msgstr "<ahelp hid=\".\">Muốn tạo tài liệu theo mẫu thì chọn mục <emph>Mới > Mẫu và Tài liệu.</emph></ahelp>"
+msgid "<image id=\"img_id3153573\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153573\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153573\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153573\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3147009\n"
-"82\n"
+"05280000.xhp\n"
+"par_id3152416\n"
+"23\n"
"help.text"
-msgid "A template is a file that contains the design elements for a document, including formatting styles, backgrounds, frames, graphics, fields, page layout, and text."
-msgstr "Mẫu là một tập tin chứa các phần tử thiết kế cho một tài liệu nào đó, bao gồm tất cả các kiểu dáng định dạng, nền, đồ họa, trường, bố trí trang và văn bản."
+msgid "Align Left"
+msgstr "Canh lề trái"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3147242\n"
-"112\n"
+"05280000.xhp\n"
+"par_id3147578\n"
+"26\n"
"help.text"
-msgid "<emph>Icon</emph>"
-msgstr "<emph>Biểu tượng</emph>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_CENTER\">Centers the text on the text baseline.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_CENTER\">Đặt văn bản vào giữa trên đường cơ bản văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149580\n"
-"113\n"
+"05280000.xhp\n"
+"par_id3155748\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "<emph>Tên</emph>"
+msgid "<image id=\"img_id3147217\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147217\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147217\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147217\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153258\n"
-"114\n"
+"05280000.xhp\n"
+"par_id3159346\n"
+"25\n"
"help.text"
-msgid "<emph>Function</emph>"
-msgstr "<emph>Chức năng</emph>"
+msgid "Center"
+msgstr "Giữa"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3145317\n"
+"05280000.xhp\n"
+"par_id3149583\n"
+"28\n"
"help.text"
-msgid "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_RIGHT\">Aligns the text to the right end of the text baseline.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_RIGHT\">Chỉnh canh văn bản theo cuối bên phải của đường cơ bản văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153349\n"
-"61\n"
+"05280000.xhp\n"
+"par_id3149939\n"
"help.text"
-msgid "Text Document"
-msgstr "Tài liệu văn bản"
+msgid "<image id=\"img_id3148498\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148498\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148498\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148498\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3156153\n"
-"62\n"
+"05280000.xhp\n"
+"par_id3150418\n"
+"27\n"
"help.text"
-msgid "Creates a new text document ($[officename] Writer)."
-msgstr "Tạo một tài liệu văn bản mới ($[officename] Writer)"
+msgid "Align Right"
+msgstr "Canh lề phải"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3145121\n"
+"05280000.xhp\n"
+"par_id3147124\n"
+"30\n"
"help.text"
-msgid "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_AUTOSIZE\">Resizes the text to fit the length of the text baseline.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_AUTOSIZE\">Thay đổi kích cỡ của văn bản để vừa chiều dài của đường cơ bản văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3148552\n"
-"63\n"
+"05280000.xhp\n"
+"par_id3159129\n"
"help.text"
-msgid "Spreadsheet"
-msgstr "Bảng tính"
+msgid "<image id=\"img_id3153334\" src=\"svx/res/fw010.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153334\" src=\"svx/res/fw010.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154280\n"
-"64\n"
+"05280000.xhp\n"
+"par_id3148747\n"
+"29\n"
"help.text"
-msgid "Creates a new spreadsheet document ($[officename] Calc)."
-msgstr "Tạo một tài liệu bảng tính mới ($[officename] Calc)"
+msgid "AutoSize Text"
+msgstr "Tự động co giãn văn bản"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149456\n"
+"05280000.xhp\n"
+"par_id3157844\n"
+"32\n"
"help.text"
-msgid "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between the text baseline and the base of the individual characters.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE\">Nhập khoảng cách bạn muốn để lại giữa đường cơ bản văn bản và cơ bản của mỗi ký tự riêng.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153798\n"
-"65\n"
+"05280000.xhp\n"
+"par_id3153957\n"
"help.text"
-msgid "Presentation"
-msgstr "Trình diễn"
+msgid "<image id=\"img_id3151019\" src=\"svx/res/fw020.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3151019\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151019\" src=\"svx/res/fw020.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3151019\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154946\n"
-"66\n"
+"05280000.xhp\n"
+"par_id3146971\n"
+"31\n"
"help.text"
-msgid "Creates a new presentation document ($[officename] Impress). The <link href=\"text/shared/autopi/01050000.xhp\" name=\"Presentation Wizard\">Presentation Wizard</link> dialog appears."
-msgstr "Tạo một tài liệu trình diễn mới ($[officename] Impress). Hộp thoại <link href=\"text/shared/autopi/01050000.xhp\" name=\"Trợ lý Trình diễn\">Trợ lý Trình diễn</link>."
+msgid "Distance"
+msgstr "Khoảng cách"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150495\n"
+"05280000.xhp\n"
+"par_id3153530\n"
+"34\n"
"help.text"
-msgid "<image id=\"img_id3154329\" src=\"res/sx03246.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154329\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154329\" src=\"res/sx03246.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154329\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART\">Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART\">Nhập khoảng cách cần lại giữa đầu của đường cơ bản văn bản và đầu của văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154217\n"
-"99\n"
+"05280000.xhp\n"
+"par_id3156332\n"
"help.text"
-msgid "Drawing"
-msgstr "Bản vẽ"
+msgid "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149167\n"
-"100\n"
+"05280000.xhp\n"
+"par_id3153710\n"
+"33\n"
"help.text"
-msgid "Creates a new drawing document ($[officename] Draw)."
-msgstr "Tạo một tài liệu vẽ mới ($[officename] Draw)."
+msgid "Indent"
+msgstr "Thụt lề"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN1089C\n"
+"05280000.xhp\n"
+"par_id3154636\n"
+"36\n"
"help.text"
-msgid "<image id=\"Graphic3\" src=\"res/sx03245.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic3\" src=\"res/sx03245.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHOWFORM\">Shows or hides the text baseline, or the edges of the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHOWFORM\">Hiển thị hay ẩn đường cơ bản văn bản hay các cạnh của đối tượng đã chọn.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN108CB\n"
+"05280000.xhp\n"
+"par_id3155515\n"
"help.text"
-msgid "Database"
-msgstr "Cơ sở dữ liệu"
+msgid "<image id=\"img_id3159186\" src=\"svx/res/fw011.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3159186\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159186\" src=\"svx/res/fw011.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3159186\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN108D0\n"
+"05280000.xhp\n"
+"par_id3148996\n"
+"35\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link> to create a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link>."
-msgstr "Mở <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Trợ lý Cơ sở Dữ liệu</link> để tạo một <link href=\"text/shared/explorer/database/dabadoc.xhp\">tập tin cơ sở dữ liệu</link>."
+msgid "Contour"
+msgstr "Đường viền"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3159149\n"
+"05280000.xhp\n"
+"par_id3155764\n"
+"38\n"
"help.text"
-msgid "<image id=\"img_id3150868\" src=\"res/sx03139.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150868\" src=\"res/sx03139.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_OUTLINE\">Shows or hides the borders of the individual characters in the text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_OUTLINE\">Hiển thị hay ẩn các viền của mỗi ký tự riêng trong văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154298\n"
-"79\n"
+"05280000.xhp\n"
+"par_id3150323\n"
"help.text"
-msgid "HTML Document"
-msgstr "Tài liệu HTML"
+msgid "<image id=\"img_id3147100\" src=\"svx/res/fw012.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147100\" src=\"svx/res/fw012.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3152460\n"
-"80\n"
+"05280000.xhp\n"
+"par_id3147339\n"
+"37\n"
"help.text"
-msgid "Creates a new HTML document."
-msgstr "Tạo một tài liệu HTML mới."
+msgid "Text Contour"
+msgstr "Đường viền văn bản"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN107BF\n"
+"05280000.xhp\n"
+"par_id3148927\n"
+"40\n"
"help.text"
-msgid "<image id=\"Graphic2\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic2\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_OFF\">Removes the shadow effects that you applied to the text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_OFF\">Gỡ bỏ các hiệu ứng đổ bóng mà bạn đã áp dụng cho văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN107F0\n"
+"05280000.xhp\n"
+"par_id3150241\n"
"help.text"
-msgid "XML Form Document"
-msgstr "Tài liệu Biểu mẫu XML"
+msgid "<image id=\"img_id3156375\" src=\"svx/res/fw013.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156375\" src=\"svx/res/fw013.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN107F5\n"
+"05280000.xhp\n"
+"par_id3151248\n"
+"39\n"
"help.text"
-msgid "Creates a new <link href=\"text/shared/guide/xforms.xhp\">XForms</link> document."
-msgstr "Tạo một tài liệu <link href=\"text/shared/guide/xforms.xhp\">XForm</link> mới."
+msgid "No Shadow"
+msgstr "Không bóng"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3147426\n"
+"05280000.xhp\n"
+"par_id3147321\n"
+"42\n"
"help.text"
-msgid "<image id=\"img_id3163710\" src=\"res/sx03248.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163710\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163710\" src=\"res/sx03248.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163710\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_NORMAL\">Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_NORMAL\">Thêm bóng đổ vào văn bản trên đối tượng đã chọn. Nhấn vào cái nút này, sau đó nhập vào hộp <emph>Khoảng cách X</emph> và <emph>Khoảng cách Y</emph> các chiều của bóng đổ.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3152938\n"
-"89\n"
+"05280000.xhp\n"
+"par_id3145231\n"
"help.text"
-msgid "Master Document"
-msgstr "Tài liệu chủ"
+msgid "<image id=\"img_id3149908\" src=\"svx/res/fw014.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3149908\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149908\" src=\"svx/res/fw014.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3149908\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150961\n"
-"90\n"
+"05280000.xhp\n"
+"par_id3152484\n"
+"41\n"
"help.text"
-msgid "Creates a new <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>."
-msgstr "Tạo một <link href=\"text/shared/01/01010001.xhp\" name=\"tài liệu chủ\">tài liệu chủ</link> mới."
+msgid "Vertical"
+msgstr "Thẳng đứng"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155854\n"
+"05280000.xhp\n"
+"par_id3148478\n"
+"44\n"
"help.text"
-msgid "<image id=\"img_id3147317\" src=\"res/sx03247.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147317\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147317\" src=\"res/sx03247.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147317\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_SLANT\">Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
+msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_SLANT\">Thêm bóng đổ xiên vào văn bản trên đối tượng đã chọn. Nhấn vào cái nút này, sau đó nhập vào hộp <emph>Khoảng cách X</emph> và <emph>Khoảng cách Y</emph> các chiều của bóng đổ.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155511\n"
-"77\n"
+"05280000.xhp\n"
+"par_id3150664\n"
"help.text"
-msgid "Formula"
-msgstr "Công thức"
+msgid "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Icon</alt></image>"
+msgstr "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150872\n"
-"78\n"
+"05280000.xhp\n"
+"par_id3147129\n"
+"43\n"
"help.text"
-msgid "Creates a new formula document ($[officename] Math)."
-msgstr "Tạo một tài liệu công thức ($[officename] Math)."
+msgid "Slant"
+msgstr "Làm xiên"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154145\n"
+"05280000.xhp\n"
+"hd_id3156537\n"
+"45\n"
"help.text"
-msgid "<image id=\"img_id3083443\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083443\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083443\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083443\">Biểu tượng</alt></image>"
+msgid "Horizontal Distance"
+msgstr "Khoảng cách theo chiều ngang"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149417\n"
-"105\n"
+"05280000.xhp\n"
+"par_id3151049\n"
+"46\n"
"help.text"
-msgid "Labels"
-msgstr "Nhãn"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X\">Enter the horizontal distance between the text characters and the edge of the shadow.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X\">Nhập khoảng cách theo chiều ngang giữa các ký tự văn bản và cạnh của bóng đổ.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3148388\n"
-"106\n"
+"05280000.xhp\n"
+"par_id3159103\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link> dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer)."
-msgstr "Mở hộp thoại <link href=\"text/shared/01/01010200.xhp\" name=\"Nhãn\">Nhãn</link> trong đó bạn có thể đặt các tùy chọn về nhãn, sau đó tạo một tài liệu văn bản mới chứa các nhãn đó ($[officename] Writer)."
+msgid "<image id=\"img_id3149242\" src=\"svx/res/fw016.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3149242\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149242\" src=\"svx/res/fw016.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3149242\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155415\n"
+"05280000.xhp\n"
+"par_id3147093\n"
+"72\n"
"help.text"
-msgid "<image id=\"img_id3156283\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156283\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156283\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156283\">Biểu tượng</alt></image>"
+msgid "X Distance"
+msgstr "Khoảng cách X"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150592\n"
-"107\n"
+"05280000.xhp\n"
+"hd_id3149450\n"
+"47\n"
"help.text"
-msgid "Business Cards"
-msgstr "Danh thiếp"
+msgid "Vertical Distance"
+msgstr "Khoảng cách theo chiều dọc"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150968\n"
-"108\n"
+"05280000.xhp\n"
+"par_id3153704\n"
+"48\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">Business Cards</link> dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer)."
-msgstr "Mở hộp thoại <link href=\"text/shared/01/01010300.xhp\" name=\"Danh thiếp\">Danh thiếp</link> trong đó bạn có thể đặt các tùy chọn về danh thiếp, sau đó tạo một tài liệu văn bản mới chứa các danh thiếp đó ($[officename] Writer)."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y\">Enter the vertical distance between the text characters and the edge of the shadow.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y\">Nhập khoảng cách theo chiều dọc giữa các ký tự văn bản và cạnh của bóng đổ.</ahelp>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154729\n"
+"05280000.xhp\n"
+"par_id3154275\n"
"help.text"
-msgid "<image id=\"img_id3150422\" src=\"res/sx03242.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150422\" src=\"res/sx03242.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150422\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3154118\" src=\"svx/res/fw017.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3154118\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154118\" src=\"svx/res/fw017.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3154118\">Biểu tượng</alt></image>"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154510\n"
-"69\n"
+"05280000.xhp\n"
+"par_id3150783\n"
+"73\n"
"help.text"
-msgid "Templates and Documents"
-msgstr "Mẫu và Tài liệu"
+msgid "Y Distance"
+msgstr "Khoang cách Y"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155603\n"
-"70\n"
+"05280000.xhp\n"
+"hd_id3149209\n"
+"49\n"
"help.text"
-msgid "Creates a new document using an existing <link href=\"text/shared/01/01010100.xhp\" name=\"template\">template</link> or opens a sample document."
-msgstr "Tạo một tài liệu mới dựa vào một <link href=\"text/shared/01/01010100.xhp\" name=\"mẫu\">mẫu</link> đã tồn tại, hoặc mở một tài liệu thí dụ."
+msgid "Shadow Color"
+msgstr "Màu bóng"
-#: 01010000.xhp
+#: 05280000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN1096F\n"
+"05280000.xhp\n"
+"par_id3148681\n"
+"50\n"
"help.text"
-msgid "<link href=\"text/shared/guide/doc_open.xhp\">Opening documents</link>"
-msgstr "<link href=\"text/shared/guide/doc_open.xhp\">Mở tài liệu</link>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR\">Select a color for the text shadow.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR\">Chọn màu cho bóng văn bản.</ahelp>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN109E7\n"
+"05290000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new text document ($[officename] Writer).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu văn bản mới ($[officename] Writer).</ahelp>"
+msgid "Group"
+msgstr "Nhóm"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN109FE\n"
+"05290000.xhp\n"
+"hd_id3150603\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new spreadsheet document ($[officename] Calc).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu bảng tính mới ($[officename] Calc).</ahelp>"
+msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Nhóm\">Nhóm</link>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A15\n"
+"05290000.xhp\n"
+"par_id3153323\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress). The Presentation Wizard dialog appears.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu trình diễn mới ($[officename] Impress). Hộp thoại <emph>Trợ lý Trình diễn</emph> sẽ xuất hiện.</ahelp>"
+msgid "<ahelp hid=\".\">Groups keep together selected objects, so that they can be moved or formatted as a single object.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhóm thì kết hợp các đối tượng đã chọn, để di chuyển hay định dạng dưới dạng một đối tượng riêng lẻ.</ahelp>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A2C\n"
+"05290000.xhp\n"
+"hd_id3150943\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new drawing document ($[officename] Draw).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu vẽ mới ($[officename] Draw).</ahelp>"
+msgid "Working with groups"
+msgstr "Thao tác nhóm"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A43\n"
+"05290000.xhp\n"
+"par_id3152909\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Database Wizard to create a database file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở <emph>Trợ lý Cơ sở Dữ liệu</emph> để tạo một tài liệu cơ sở dữ liệu.</ahelp>"
+msgid "To edit the individual objects of a group, select the group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Enter Group</emph></caseinline><defaultinline><emph>Group - Enter Group</emph></defaultinline></switchinline>"
+msgstr "Để chỉnh sửa mỗi đối tượng riêng trong nhóm, lựa chọn nhóm đó, nhấn-phải vào nó, sau đó chọn lệnh <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Vào nhóm</emph></caseinline><defaultinline><emph>Nhóm > Vào nhóm</emph></defaultinline></switchinline>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A5A\n"
+"05290000.xhp\n"
+"par_id3159158\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new HTML document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu HTML mới.</ahelp>"
+msgid "When you are editing a group, the objects that are not part of the group are faded."
+msgstr "Khi bạn chỉnh sửa nhóm, các đối tượng không thuộc về nhóm đó được hiển thị mờ."
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A71\n"
+"05290000.xhp\n"
+"par_id3153541\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new XForms document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu biểu mẫu XForm mới.</ahelp>"
+msgid "Use Tab and Shift+Tab to move forwards and backwards through the objects in a group."
+msgstr "Hãy dùng phím <item type=\"keycode\">Tab</item> và <item type=\"keycode\">Shift+Tab</item> để di chuyển tiếp về ngược qua các đối tượng trong nhóm."
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A88\n"
+"05290000.xhp\n"
+"par_id3154810\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new master document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu chủ mới.</ahelp>"
+msgid "To exit a group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Exit Group</emph></caseinline><defaultinline><emph>Group - Exit Group</emph></defaultinline></switchinline>"
+msgstr "Để rời khỏi nhóm, nhấn-phải chuột, sau đó chọn lệnh <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Ra nhóm</emph></caseinline><defaultinline><emph>Nhóm > Ra nhóm</emph></defaultinline></switchinline>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A9F\n"
+"05290000.xhp\n"
+"hd_id3145120\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new formula document ($[officename] Math).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu công thức mới ($[officename] Math).</ahelp>"
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Grouping\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Nhóm lại\">Nhóm lại</link>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10AB6\n"
+"05290000.xhp\n"
+"hd_id3152474\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Labels dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Nhãn</emph> trong đó bạn có thể đặt các tùy chọn về nhãn, sau đó tạo một tài liệu văn bản mới chứa các nhãn ($[officename] Writer).</ahelp>"
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Remove\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Gỡ bỏ\">Rã nhóm</link>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10ACD\n"
+"05290000.xhp\n"
+"hd_id3145609\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Business Cards dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mở hộp thoại <emph>Danh thiếp</emph> trong đó bạn có thể đặt các tùy chọn về danh thiếp, sau đó tạo một tài liệu văn bản mới chứa các danh thiếp ($[officename] Writer).</ahelp>"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit group\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Sửa nhóm\">Sửa nhóm</link>"
-#: 01010000.xhp
+#: 05290000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10AE4\n"
+"05290000.xhp\n"
+"hd_id3145068\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new document using an existing template or opens a sample document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạo một tài liệu mới dựa vào một mẫu đã tồn tại, hoặc mở một tài liệu thí dụ.</ahelp>"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit\">Exit group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Rời\">Ra nhóm</link>"
-#: 01100000.xhp
+#: 05290100.xhp
msgctxt ""
-"01100000.xhp\n"
+"05290100.xhp\n"
"tit\n"
"help.text"
-msgid "Properties of"
-msgstr "Các thuộc tính về"
+msgid "Group"
+msgstr "Nhóm"
-#: 01100000.xhp
+#: 05290100.xhp
msgctxt ""
-"01100000.xhp\n"
-"hd_id3152876\n"
+"05290100.xhp\n"
+"hd_id3152823\n"
"1\n"
"help.text"
-msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Properties of\">Properties of</link></variable>"
-msgstr "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Các thuộc tính về\">Các thuộc tính về</link></variable>"
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Nhóm\">Nhóm</link>"
-#: 01100000.xhp
+#: 05290100.xhp
msgctxt ""
-"01100000.xhp\n"
-"par_id3153255\n"
+"05290100.xhp\n"
+"par_id3154689\n"
"2\n"
"help.text"
-msgid "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno:SetDocumentProperties\">Displays the properties for the current file, including statistics such as word count and the date the file was created.</ahelp></variable>"
-msgstr "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno:SetDocumentProperties\">Hiển thị các thuộc tính về tập tin hiện tại, bao gồm thống kê như tổng số từ và ngày tháng tạo tập tin.</ahelp></variable>"
-
-#: 01100000.xhp
-msgctxt ""
-"01100000.xhp\n"
-"par_id3153748\n"
-"4\n"
-"help.text"
-msgid "The <emph>Properties</emph> dialog contains the following tab pages:"
-msgstr "Hộp thoại <emph>Thuộc tính</emph> chứa những trang thẻ này:"
+msgid "<variable id=\"gruppierentext\"><ahelp hid=\".uno:FormatGroup\" visibility=\"visible\">Groups the selected objects, so that they can be moved as a single object.</ahelp></variable>"
+msgstr "<variable id=\"gruppierentext\"><ahelp hid=\".uno:FormatGroup\" visibility=\"visible\">Nhóm lại các đối tượng đã chọn, để di chuyển dưới dạng một đối tượng riêng lẻ.</ahelp></variable>"
-#: 01100000.xhp
+#: 05290100.xhp
msgctxt ""
-"01100000.xhp\n"
-"par_id3148643\n"
-"5\n"
+"05290100.xhp\n"
+"par_id3150008\n"
+"3\n"
"help.text"
-msgid "Depending on your access rights to the file, you might not see all of the tabs in the <emph>Properties</emph> dialog."
-msgstr "Phụ thuộc vào quyền truy cập đến tập tin của bạn, không phải tất cả các thẻ có thể hiển thị trong hộp thoại <emph>Thuộc tính</emph>."
+msgid "The properties of individual objects are maintained even after you group the objects. You can nest groups, that is, you can have a group within a group."
+msgstr "Các thuộc tính của mỗi đối tượng vẫn còn được bảo tồn, ngay cả sau khi bạn nhóm lại các đối tượng. Bạn cũng có thể lồng nhau các nhóm: đặt nhóm này bên trong nhóm khác."
-#: 01990000.xhp
+#: 05290200.xhp
msgctxt ""
-"01990000.xhp\n"
+"05290200.xhp\n"
"tit\n"
"help.text"
-msgid "Recent Documents"
-msgstr "Tài liệu vừa mở"
+msgid "Ungroup"
+msgstr "Rã nhóm"
-#: 01990000.xhp
+#: 05290200.xhp
msgctxt ""
-"01990000.xhp\n"
-"hd_id3150279\n"
-"6\n"
+"05290200.xhp\n"
+"hd_id3159217\n"
+"1\n"
"help.text"
-msgid "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Recent Documents\">Recent Documents</link></variable>"
-msgstr "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Tài liệu vừa mở\">Tài liệu vừa mở</link></variable>"
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
-#: 01990000.xhp
+#: 05290200.xhp
msgctxt ""
-"01990000.xhp\n"
-"par_id3154794\n"
-"5\n"
+"05290200.xhp\n"
+"par_id3156116\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the most recently opened files. To open a file in the list, click its name.</ahelp>"
-msgstr "<ahelp hid=\".\">Liệt kê các tập tin vừa mở. Để mở một tập tin nào đó trong danh sách này, nhấn vào tên của nó.</ahelp>"
+msgid "<variable id=\"aufhebentext\"><ahelp hid=\".uno:FormatUngroup\" visibility=\"visible\">Breaks apart the selected group into individual objects.</ahelp></variable>"
+msgstr "<variable id=\"aufhebentext\"><ahelp hid=\".uno:FormatUngroup\" visibility=\"visible\">Ngắt nhóm đã ra các đối tượng riêng.</ahelp></variable>"
-#: 01990000.xhp
+#: 05290200.xhp
msgctxt ""
-"01990000.xhp\n"
-"par_id3159079\n"
-"4\n"
+"05290200.xhp\n"
+"par_id3146067\n"
+"3\n"
"help.text"
-msgid "The file is opened by the <item type=\"productname\">%PRODUCTNAME</item> module that saved it."
-msgstr "Tập tin được mở bằng mô-đun <item type=\"productname\">%PRODUCTNAME</item> đã lưu nó."
+msgid "To break apart the nested groups within a group, you must repeat this command on each subgroup."
+msgstr "Để ngắt ra các nhóm lồng nhau bên trong nhóm, bạn cần phải lặp lại lệnh này với mỗi nhóm phụ."
-#: 06040700.xhp
+#: 05290300.xhp
msgctxt ""
-"06040700.xhp\n"
+"05290300.xhp\n"
"tit\n"
"help.text"
-msgid "Smart Tags"
-msgstr "Thẻ khéo"
+msgid "Enter Group"
+msgstr "Vào nhóm"
-#: 06040700.xhp
+#: 05290300.xhp
msgctxt ""
-"06040700.xhp\n"
-"bm_id9057588\n"
+"05290300.xhp\n"
+"hd_id3083278\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>smart tag configuration</bookmark_value>"
-msgstr "<bookmark_value>cấu hình thẻ khéo</bookmark_value>"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Vào nhóm\">Vào nhóm</link>"
-#: 06040700.xhp
+#: 05290300.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id3563951\n"
+"05290300.xhp\n"
+"par_id3146856\n"
+"2\n"
"help.text"
-msgid "Smart Tags"
-msgstr "Thẻ khéo"
+msgid "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">Opens the selected group, so that you can edit the individual objects. If the selected group contains nested group, you can repeat this command on the subgroups.</ahelp></variable> This command does not permanently ungroup the objects."
+msgstr "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">Mở nhóm đã chọn, để cho bạn chỉnh sửa mỗi đối tượng riêng. Nếu nhóm đã chọn chứa nhóm khác (nhóm lồng nhau), bạn có thể lặp lại lệnh này với mỗi nhóm phụ.</ahelp></variable> Câu lệnh này không rã nhóm bền bỉ các đối tượng."
-#: 06040700.xhp
+#: 05290300.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id1827448\n"
+"05290300.xhp\n"
+"par_id3157991\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">When you have installed at least one Smart Tag extension, you see the Smart Tags page.</ahelp>"
-msgstr "<ahelp hid=\".\">Một khi bạn cài đặt một phần mở rộng Thẻ Khéo, bạn cũng thấy trang Thẻ Khéo.</ahelp>"
+msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, and then click the object."
+msgstr "Để lựa chọn một đối tượng riêng trong nhóm, ấn giữ phím <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, sau đó nhấn vào đối tượng đó."
-#: 06040700.xhp
+#: 05290300.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id686666\n"
+"05290300.xhp\n"
+"par_id3153049\n"
"help.text"
-msgid "Label text with smart tags"
-msgstr "Nhãn văn bản bằng thẻ khéo"
+msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
+msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Nhóm\">Nhóm</link>"
-#: 06040700.xhp
+#: 05290300.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id3259376\n"
+"05290300.xhp\n"
+"par_id3148548\n"
"help.text"
-msgid "<ahelp hid=\".\">Enables Smart Tags to be evaluated and shown in your text document.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiệu lực ước tính và hiển thị Thẻ Khéo trong tài liệu văn bản.</ahelp>"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Ra nhóm\">Ra nhóm</link>"
-#: 06040700.xhp
+#: 05290400.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id4024170\n"
+"05290400.xhp\n"
+"tit\n"
"help.text"
-msgid "Currently installed smart tags"
-msgstr "Thẻ khéo được cài đặt hiện thời"
+msgid "Exit Group"
+msgstr "Ra nhóm"
-#: 06040700.xhp
+#: 05290400.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id2847071\n"
+"05290400.xhp\n"
+"hd_id3157552\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays all installed Smart Tags. To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị tất cả các Thẻ Khéo đã cài đặt. Để cấu hình một Thẻ Khéo, lựa chọn tên nó, sau đó tài liệu nút <emph>Thuộc tính</emph>. Không phải tất cả các Thẻ Khéo có khả năng cấu hình.</ahelp>"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Ra nhóm\">Ra nhóm</link>"
-#: 06040700.xhp
+#: 05290400.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id8424329\n"
+"05290400.xhp\n"
+"par_id3147294\n"
+"2\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Exits the group, so that you can no longer edit the individual objects in the group.</ahelp></variable> If you are in a nested group, only the nested group is closed."
+msgstr "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Rời khỏi nhóm, vì vậy bạn không còn có khả năng chỉnh sửa lại mỗi đối tượng riêng trong nhóm.</ahelp></variable> Nếu con trỏ nằm trong nhóm lồng nhau, chỉ nhóm lồng nhau bị đóng."
-#: 06040700.xhp
+#: 05290400.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id3912167\n"
+"05290400.xhp\n"
+"par_id3153124\n"
"help.text"
-msgid "<ahelp hid=\".\">To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
-msgstr "<ahelp hid=\".\">Để cấu hình một Thẻ Khéo, lựa chọn tên nó, sau đó tài liệu nút <emph>Thuộc tính</emph>. Không phải tất cả các Thẻ Khéo có khả năng cấu hình.</ahelp>"
+msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
+msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Nhóm\">Nhóm</link>"
-#: ref_pdf_send_as.xhp
+#: 05290400.xhp
msgctxt ""
-"ref_pdf_send_as.xhp\n"
-"tit\n"
+"05290400.xhp\n"
+"par_id3148520\n"
"help.text"
-msgid "E-mail as PDF"
-msgstr "Gửi thư đính kèm PDF"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit Group\">Edit Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Sửa nhóm\">Sửa nhóm</link>"
-#: ref_pdf_send_as.xhp
+#: 05320000.xhp
msgctxt ""
-"ref_pdf_send_as.xhp\n"
-"hd_id3146902\n"
-"2\n"
+"05320000.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"E-mail as PDF\">E-mail as PDF</link></variable>"
-msgstr "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"Gửi thư đính kèm PDF\">Gửi thư đính kèm PDF</link></variable>"
+msgid "Text Animation"
+msgstr "Hoạt họa Văn bản"
-#: ref_pdf_send_as.xhp
+#: 05320000.xhp
msgctxt ""
-"ref_pdf_send_as.xhp\n"
-"par_id3150756\n"
+"05320000.xhp\n"
+"hd_id3150014\n"
"1\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an e-mail sending window with the PDF as an attachment.</ahelp></variable>"
-msgstr "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Hiển thị hộp thoại <emph>Xuất dạng PDF</emph>, xuất tài liệu hiện tại theo định dạng tài liệu di động (PDF), sau đó mở một cửa sổ gửi thư điện tử cũng đính kèm tập tin PDF.</ahelp></variable>"
-
-#: 05260600.xhp
-msgctxt ""
-"05260600.xhp\n"
-"tit\n"
-"help.text"
-msgid "As Character"
-msgstr "Dạng ký tự"
+msgid "<link href=\"text/shared/01/05320000.xhp\" name=\"Text Animation\">Text Animation</link>"
+msgstr "<link href=\"text/shared/01/05320000.xhp\" name=\"Hoạt họa Văn bản\">Hoạt họa Văn bản</link>"
-#: 05260600.xhp
+#: 05320000.xhp
msgctxt ""
-"05260600.xhp\n"
-"hd_id3154621\n"
-"1\n"
+"05320000.xhp\n"
+"par_id3154788\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260600.xhp\" name=\"As Character\">As Character</link>"
-msgstr "<link href=\"text/shared/01/05260600.xhp\" name=\"Dạng ký tự\">Dạng ký tự</link>"
+msgid "<ahelp hid=\"SVX:TABPAGE:RID_SVXPAGE_TEXTANIMATION\">Adds an animation effect to the text in the selected drawing object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TABPAGE:RID_SVXPAGE_TEXTANIMATION\">Thêm một hiệu ứng hoạt họa vào văn bản trên đối tượng vẽ đã chọn.</ahelp>"
-#: 05260600.xhp
+#: 05320000.xhp
msgctxt ""
-"05260600.xhp\n"
-"par_id3146946\n"
-"2\n"
+"05320000.xhp\n"
+"hd_id3152821\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Anchors the selected item as a character in the current text. If the height of the selected item is greater than the current font size, the height of the line containing the item is increased.</ahelp>"
-msgstr "<ahelp hid=\".\">Thả neo mục đã chọn dưới dạng ký tự trong văn bản hiện tại. Mục có chiều cao lớn hơn kích cỡ phông hiện thời thì tăng chiều cao của dòng chứa mục này.</ahelp>"
+msgid "Text animation effects"
+msgstr "Hiệu ứng hoạt họa văn bản"
-#: 05290200.xhp
+#: 05320000.xhp
msgctxt ""
-"05290200.xhp\n"
-"tit\n"
+"05320000.xhp\n"
+"par_id3144436\n"
+"15\n"
"help.text"
-msgid "Ungroup"
-msgstr "Rã nhóm"
+msgid "Select the effect that you want to apply, and then set the properties of the effect."
+msgstr "Chọn hiệu ứng bạn muốn áp dụng, sau đó đặt các thuộc tính về hiệu ứng."
-#: 05290200.xhp
+#: 05320000.xhp
msgctxt ""
-"05290200.xhp\n"
-"hd_id3159217\n"
-"1\n"
+"05320000.xhp\n"
+"hd_id3158405\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Rã nhóm\">Rã nhóm</link>"
+msgid "Effects"
+msgstr "Hiệu ứng"
-#: 05290200.xhp
+#: 05320000.xhp
msgctxt ""
-"05290200.xhp\n"
-"par_id3156116\n"
-"2\n"
+"05320000.xhp\n"
+"par_id3149999\n"
+"16\n"
"help.text"
-msgid "<variable id=\"aufhebentext\"><ahelp hid=\".uno:FormatUngroup\" visibility=\"visible\">Breaks apart the selected group into individual objects.</ahelp></variable>"
-msgstr "<variable id=\"aufhebentext\"><ahelp hid=\".uno:FormatUngroup\" visibility=\"visible\">Ngắt nhóm đã ra các đối tượng riêng.</ahelp></variable>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TEXTANIMATION:LB_EFFECT\">Select the animation effect that you want to apply to the text in the selected drawing object. To remove an animation effect, select <emph>No Effect</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TEXTANIMATION:LB_EFFECT\">Chọn hiệu ứng hoạt họa bạn muốn áp dụng cho văn bản trên đối tượng vẽ đã chọn. Để gỡ bỏ một hiệu ứng hoạt họa, bật tùy chọn <emph>Không có hiệu ứng</emph>.</ahelp>"
-#: 05290200.xhp
+#: 05320000.xhp
msgctxt ""
-"05290200.xhp\n"
-"par_id3146067\n"
-"3\n"
+"05320000.xhp\n"
+"hd_id3153114\n"
+"6\n"
"help.text"
-msgid "To break apart the nested groups within a group, you must repeat this command on each subgroup."
-msgstr "Để ngắt ra các nhóm lồng nhau bên trong nhóm, bạn cần phải lặp lại lệnh này với mỗi nhóm phụ."
+msgid "To the Left"
+msgstr "Sang trái"
-#: 05010000.xhp
-#, fuzzy
+#: 05320000.xhp
msgctxt ""
-"05010000.xhp\n"
-"tit\n"
+"05320000.xhp\n"
+"par_id3152867\n"
+"18\n"
"help.text"
-msgid "Clear Direct Formatting"
-msgstr "Định dạng trang"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_LEFT\">Scrolls text from right to left.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_LEFT\">Cuộn văn bản từ bên phải sang trái.</ahelp>"
-#: 05010000.xhp
+#: 05320000.xhp
msgctxt ""
-"05010000.xhp\n"
-"bm_id3157959\n"
+"05320000.xhp\n"
+"par_id3149750\n"
"help.text"
-msgid "<bookmark_value>formatting; undoing when writing</bookmark_value><bookmark_value>hyperlinks; deleting</bookmark_value><bookmark_value>deleting; hyperlinks</bookmark_value><bookmark_value>cells;resetting formats</bookmark_value>"
-msgstr "<bookmark_value>định dạng; hủy bước khi ghi</bookmark_value><bookmark_value>siêu liên kết; xoá</bookmark_value><bookmark_value>xoá; siêu liên kết</bookmark_value><bookmark_value>ô bảng;đặt lại định dạng</bookmark_value>"
+msgid "<image id=\"img_id3150774\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150774\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150774\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150774\">Biểu tượng</alt></image>"
-#: 05010000.xhp
-#, fuzzy
+#: 05320000.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3153391\n"
-"1\n"
+"05320000.xhp\n"
+"par_id3155941\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/shared/01/05010000.xhp\" name=\"Clear Direct Formatting\">Clear Direct Formatting</link>"
-msgstr "<link href=\"text/shared/01/05010000.xhp\" name=\"Định dạng Mặc định\">Định dạng Mặc định</link>"
+msgid "Left arrow"
+msgstr "Mũi tên trái"
-#: 05010000.xhp
+#: 05320000.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3145829\n"
-"2\n"
+"05320000.xhp\n"
+"hd_id3147010\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".uno:StandardTextAttributes\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:StandardTextAttributes\">Gỡ bỏ khỏi vùng chọn định dạng trực tiếp và định dạng theo kiểu dáng ký tự.</ahelp>"
+msgid "To the Right"
+msgstr "Sang phải"
-#: 05010000.xhp
+#: 05320000.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3147261\n"
-"5\n"
+"05320000.xhp\n"
+"par_id3143267\n"
+"21\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Định dạng trực tiếp là định dạng bạn áp dụng mà không dùng kiểu dáng, chẳng hạn đặt mặt chữ in đậm bằng cách nhấn vào biểu tượng <emph>Đậm</emph>.</defaultinline></switchinline>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_RIGHT\">Scrolls text from left to right.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_RIGHT\">Cuộn văn bản từ bên trái sang phải.</ahelp>"
-#: 05010000.xhp
-#, fuzzy
+#: 05320000.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3157959\n"
-"3\n"
+"05320000.xhp\n"
+"par_id3109847\n"
"help.text"
-msgid "To stop applying a direct format, such as underlining, while you type new text at the end of a line, press Shift+Ctrl+X."
-msgstr "Để thôi áp dụng định dạng trực tiếp (v.d. gạch dưới), ấn giữ phím mũi tên bên phải trong khi gõ thêm."
+msgid "<image id=\"img_id3149235\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149235\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149235\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149235\">Biểu tượng</alt></image>"
-#: 02040000.xhp
+#: 05320000.xhp
msgctxt ""
-"02040000.xhp\n"
-"tit\n"
+"05320000.xhp\n"
+"par_id3149276\n"
+"22\n"
"help.text"
-msgid "Cut"
-msgstr "Cắt"
+msgid "Right arrow"
+msgstr "Mũi tên phải"
-#: 02040000.xhp
+#: 05320000.xhp
msgctxt ""
-"02040000.xhp\n"
-"bm_id3146936\n"
+"05320000.xhp\n"
+"hd_id3155323\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>cutting</bookmark_value><bookmark_value>clipboard; cutting</bookmark_value>"
-msgstr "<bookmark_value>cắt</bookmark_value><bookmark_value>bảng nháp; cắt</bookmark_value>"
+msgid "To the Top"
+msgstr "Lên trên"
-#: 02040000.xhp
+#: 05320000.xhp
msgctxt ""
-"02040000.xhp\n"
-"hd_id3146936\n"
-"1\n"
+"05320000.xhp\n"
+"par_id3145416\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/shared/01/02040000.xhp\" name=\"Cut\">Cut</link>"
-msgstr "<link href=\"text/shared/01/02040000.xhp\" name=\"Cắt\">Cắt</link>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_UP\">Scrolls text from bottom to top.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_UP\">Cuộn văn bản từ bên dưới lên trên.</ahelp>"
-#: 02040000.xhp
+#: 05320000.xhp
msgctxt ""
-"02040000.xhp\n"
-"par_id3153255\n"
-"2\n"
+"05320000.xhp\n"
+"par_id3146773\n"
"help.text"
-msgid "<ahelp hid=\".uno:Cut\">Removes and copies the selection to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\".uno:Cut\">Gỡ bỏ và sao chép vùng chọn sang bảng nháp.</ahelp>"
+msgid "<image id=\"img_id3149795\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3149795\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149795\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3149795\">Biểu tượng</alt></image>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"tit\n"
+"05320000.xhp\n"
+"par_id3155420\n"
+"25\n"
"help.text"
-msgid "Data (for XML Form Documents)"
-msgstr "Dữ liệu (cho Tài liệu Biểu mẫu XML)"
+msgid "Up arrow"
+msgstr "Mũi tên lên"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id5766472\n"
+"05320000.xhp\n"
+"hd_id3153717\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/shared/01/xformsdatatab.xhp\">Data (for XML Form Documents)</link>"
-msgstr "<link href=\"text/shared/01/xformsdatatab.xhp\">Dữ liệu (cho Tài liệu Biểu mẫu XML)</link>"
+msgid "To the Bottom"
+msgstr "Xuống dưới"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1161534\n"
+"05320000.xhp\n"
+"par_id3155388\n"
+"27\n"
"help.text"
-msgid "The Data tab page of the Properties dialog for an XML Form document offers some XML forms settings."
-msgstr "Trang thẻ <emph>Dữ liệu</emph> của hộp thoại <emph>Thuộc tính</emph> đối với một tài liệu Biểu mẫu XML thì cung cấp một số thiết lập biểu mẫu XML."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_DOWN\">Scrolls text from top to bottom.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_TEXTANIMATION:BTN_DOWN\">Cuộn văn bản từ bên trên xuống dưới.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3994567\n"
+"05320000.xhp\n"
+"par_id3145085\n"
"help.text"
-msgid "The possible settings of the <emph>Data</emph> tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:"
-msgstr "Các giá trị có thể của trang thẻ <emph>Dữ liệu</emph> của một điều khiển thì phụ thuộc vào điều khiển tương ứng. Bạn sẽ chỉ thấy những tùy chọn sẵn sàng cho điều khiển/ngữ cảnh hiện thời. Có sẵn những trường này:"
+msgid "<image id=\"img_id3152472\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3152472\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152472\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3152472\">Biểu tượng</alt></image>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id9461653\n"
+"05320000.xhp\n"
+"par_id3148947\n"
+"28\n"
"help.text"
-msgid "XML data model"
-msgstr "Mẫu dữ liệu XML"
+msgid "Down arrow"
+msgstr "Mũi tên dưới"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id9239173\n"
+"05320000.xhp\n"
+"hd_id3152361\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a model from the list of all models in the current document.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn một mẫu trong danh sách các mẫu của tài liệu hiện tại.</ahelp>"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2656941\n"
+"05320000.xhp\n"
+"hd_id3156434\n"
+"7\n"
"help.text"
-msgid "Binding"
-msgstr "Tổ hợp"
+msgid "Start Inside"
+msgstr "Bắt đầu bên trong"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1481063\n"
+"05320000.xhp\n"
+"par_id3150866\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".\">Select or enter the name of a binding. Selecting the name of an existing binding associates the binding with the form control. Entering a new name creates a new binding and associates it with the form control.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn hay nhập tên của một tổ hợp. Việc chọn tên của một tổ hợp đã tồn tại thì tạo quan hệ giữa tổ hợp và điều khiển biểu mẫu đó. Còn việc nhập tên mới tạo một tổ hợp mới và tạo quan hệ giữa nó và điều khiển biểu mẫu.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_START_INSIDE\">Text is visible and inside the drawing object when the effect is applied.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_START_INSIDE\">Văn bản hiện rõ và nằm bên trong đối tượng vẽ khi hiệu ứng được áp dụng.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id7921079\n"
+"05320000.xhp\n"
+"hd_id3150359\n"
+"8\n"
"help.text"
-msgid "Binding expression"
-msgstr "Biểu thức tổ hợp"
+msgid "Text visible when exiting"
+msgstr "Văn bản hiển thị khi thoát ra"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id636921\n"
+"05320000.xhp\n"
+"par_id3154938\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the DOM node to bind the control model to. Click the ... button for a dialog to enter the XPath expression.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập nút DOM với đó cần tổ hợp mẫu điều khiển. Nhấn vào cái nút <emph>...</emph> để mở hộp thoại cho bạn nhập biểu thức đường dẫn XPath.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_STOP_INSIDE\">Text remains visible after the effect is applied.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_STOP_INSIDE\">Văn bản còn lại hiện rõ sau khi áp dụng hiệu ứng.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2799157\n"
+"05320000.xhp\n"
+"hd_id3155738\n"
+"9\n"
"help.text"
-msgid "Required"
-msgstr "Cần thiết"
+msgid "Animation effects"
+msgstr "Hiệu ứng hoạt họa"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3004547\n"
+"05320000.xhp\n"
+"par_id3149291\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ có nên bao gồm mục này trong biểu mẫu XForm hay không.</ahelp>"
+msgid "Set the looping options for the animation effect."
+msgstr "Đặt các thuộc tính về chức năng vòng lặp cho hiệu ứng hoạt họa."
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id6401867\n"
+"05320000.xhp\n"
+"hd_id3145744\n"
+"10\n"
"help.text"
-msgid "Relevant"
-msgstr "Liên quan"
+msgid "Continuous"
+msgstr "Liên tục"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id18616\n"
+"05320000.xhp\n"
+"par_id3145318\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là liên quan.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_ENDLESS\">Plays the animation effect continuously. To specify the number of times to play the effect, clear this checkbox, and enter a number in the <emph>Continuous</emph> box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_ENDLESS\">Chạy liên tục hiệu ứng hoạt động. Để ghi rõ số lần cần chạy hiệu ứng, tắt tùy chọn này, sau đó nhập vào hộp <emph>Liên tục</emph> một con số.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id6138492\n"
+"05320000.xhp\n"
+"hd_id3153192\n"
+"39\n"
"help.text"
-msgid "Read-only"
-msgstr "Chỉ đọc"
+msgid "Continuous box"
+msgstr "Hộp Liên tục"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4569231\n"
+"05320000.xhp\n"
+"par_id3154068\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là chỉ-đọc (không thể thay đổi được).</ahelp>"
+msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_TEXTANIMATION:NUM_FLD_COUNT\">Enter the number of times that you want the animation effect to repeat.</ahelp>"
+msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_TEXTANIMATION:NUM_FLD_COUNT\">Nhập số lần bạn muốn lặp lại hiệu ứng hoạt họa.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id291451\n"
+"05320000.xhp\n"
+"hd_id3154908\n"
+"13\n"
"help.text"
-msgid "Constraint"
-msgstr "Ràng buộc"
+msgid "Increment"
+msgstr "Bước"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3341776\n"
+"05320000.xhp\n"
+"par_id3151177\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là một ràng buộc.</ahelp>"
+msgid "Specify the increment value for scrolling the text."
+msgstr "Ghi rõ giá trị tăng/giảm dần để cuộn văn bản."
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id5947141\n"
+"05320000.xhp\n"
+"hd_id3150870\n"
+"14\n"
"help.text"
-msgid "Calculation"
-msgstr "Tính toán"
+msgid "Pixels"
+msgstr "Điểm ảnh"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1911679\n"
+"05320000.xhp\n"
+"par_id3150447\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ rằng mục đã được tính.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_PIXEL\">Measures increment value in pixels.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_PIXEL\">Đo giá trị tăng/giảm dần theo điểm ảnh.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id9364909\n"
+"05320000.xhp\n"
+"hd_id3149766\n"
+"43\n"
"help.text"
-msgid "Data type"
-msgstr "Kiểu dữ liệu"
+msgid "Increment box"
+msgstr "Hộp Tăng/giảm dần"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4473403\n"
+"05320000.xhp\n"
+"par_id3150495\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a data type which the control should be validated against.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kiểu dữ liệu so với đó cần hợp lệ hoá điều khiển này.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_AMOUNT\">Enter the number of increments by which to scroll the text.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_AMOUNT\">Nhập hệ số tăng/giảm dần theo đó cần cuộn văn bản.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2480849\n"
+"05320000.xhp\n"
+"hd_id3158409\n"
+"11\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Delay"
+msgstr "Trễ"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4181951\n"
+"05320000.xhp\n"
+"par_id3148560\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a user-defined data type and click the button to delete the user-defined data type.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn một kiểu mẫu tự xác định, sau đó nhấn vào nút để xoá nó.</ahelp>"
+msgid "Specify the amount time to wait before repeating the effect."
+msgstr "Ghi rõ khoảng đợi giữa hai lần làm hiệu ứng."
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2927335\n"
+"05320000.xhp\n"
+"hd_id3153370\n"
+"12\n"
"help.text"
-msgid "+"
-msgstr "+"
+msgid "Automatic"
+msgstr "Tự động"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id2107303\n"
+"05320000.xhp\n"
+"par_id3150439\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the button to open a dialog where you can enter the name of a new user-defined data type. The new data type inherits all facets from the currently selected data type.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhấn vào cái nút để mở hộp thoại trong đó bạn có thể nhập tên của một kiểu dữ liệu mới tự xác định. Kiểu dữ liệu mới thì kế thừa mọi thuộc tính của kiểu dữ liệu được chọn hiện thời.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_AUTO\">$[officename] automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the<emph> Automatic</emph> box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_TEXTANIMATION:TSB_AUTO\">$[officename] tự động quyết định khoảng thời gian cần đợi trước khi lặp lại hiệu ứng. Để tự gán khoảng đợi, tắt tùy chọn này, sau đó nhập vào hộp <emph>Tự động</emph> một giá trị.</ahelp>"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4071779\n"
+"05320000.xhp\n"
+"hd_id3155131\n"
+"41\n"
"help.text"
-msgid "The following lists all facets that are valid for data types. Some facets are only available for some data types."
-msgstr "Theo đây liệt kê mọi thuộc tính hợp cho kiểu dữ liệu. Một số thuộc tính nào đó không phải sẵn sàng cho tất cả các kiểu dữ liệu."
+msgid "Automatic box"
+msgstr "Hộp Tự động"
-#: xformsdatatab.xhp
+#: 05320000.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id4313791\n"
+"05320000.xhp\n"
+"par_id3152791\n"
+"42\n"
"help.text"
-msgid "Whitespaces"
-msgstr "Dấu cách"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_DELAY\">Enter the amount of time to wait before repeating the effect.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_DELAY\">Nhập khoảng thời gian cần đợi trước khi lặp lại hiệu ứng.</ahelp>"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4331797\n"
+"05340100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The semantics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
-msgstr ""
+msgid "Row Height"
+msgstr "Bề cao hàng"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id4191717\n"
+"05340100.xhp\n"
+"hd_id3154400\n"
+"1\n"
"help.text"
-msgid "Pattern"
-msgstr "Mẫu"
+msgid "Row Height"
+msgstr "Bề cao hàng"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id2318796\n"
+"05340100.xhp\n"
+"par_id3154044\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elseswhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ một mẫu biểu thức chính quy. Các chuỗi được hợp lệ hoá so với mẫu này phải tuân theo mẫu này. Cú pháp kiểu dữ liệu XSD cho biểu thức chính quy là khác với cú pháp biểu thức chính quy được ở các nơi khác trong %PRODUCTNAME, thí dụ trong hộp thoại <emph>Tìm và Thay thế</emph>. </ahelp>"
+msgid "<variable id=\"zeilenhoehetext\"><ahelp hid=\"HID_BROWSER_ROWHEIGHT\">Changes the height of the current row, or the selected rows.</ahelp></variable>"
+msgstr "<variable id=\"zeilenhoehetext\"><ahelp hid=\"HID_BROWSER_ROWHEIGHT\">Sửa đổi chiều cao của hàng hiện tại, hay của những hàng đã chọn.</ahelp></variable>"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id399182\n"
+"05340100.xhp\n"
+"par_id3150756\n"
+"7\n"
"help.text"
-msgid "Digits (total)"
-msgstr "Chữ số (tổng)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also change the height of a row by dragging the divider below the row header. To fit the row height to the cell contents, double-click the divider. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bạn cũng có khả năng sửa đổi chiều cao của hàng bằng cách kéo đường chia nằm bên dưới đầu hàng. Để vừa chiều cao hàng khít nội dung của ô, nhấn-đôi vào đường chia.</caseinline></switchinline>"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id5298318\n"
+"05340100.xhp\n"
+"hd_id3149962\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the maximum total number of digits that values of the decimal data type can have.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ tổng số chữ số tối đa của giá trị có kiểu dữ liệu thập phân.</ahelp>"
+msgid "Height"
+msgstr "Bề cao"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id7588732\n"
+"05340100.xhp\n"
+"par_id3144750\n"
+"4\n"
"help.text"
-msgid "Digits (fraction)"
-msgstr "Chữ số (phần số)"
+msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_ROWHEIGHT_MF_VALUE\">Enter the row height that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_ROWHEIGHT_MF_VALUE\">Nhập chiều cao bạn muốn dùng.</ahelp>"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id95828\n"
+"05340100.xhp\n"
+"hd_id3154926\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the maximum total number of fractional digits that values of the decimal data type can have.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ tổng số chữ số phân số tối đa của giá trị có kiểu dữ liệu thập phân.</ahelp>"
+msgid "Default value"
+msgstr "Giá trị mặc định"
-#: xformsdatatab.xhp
+#: 05340100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id3496200\n"
+"05340100.xhp\n"
+"par_id3154894\n"
+"6\n"
"help.text"
-msgid "Max. (inclusive)"
-msgstr "Đại (kể)"
+msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_ROWHEIGHT_CB_STANDARD\">Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents.</ahelp>"
+msgstr ""
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id7599108\n"
+"05340200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an inclusive upper bound for values.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên trên kể cho các giá trị.</ahelp>"
+msgid "Column width"
+msgstr "Bề rộng cột"
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id888698\n"
+"05340200.xhp\n"
+"hd_id3158397\n"
+"1\n"
"help.text"
-msgid "Max. (exclusive)"
-msgstr "Đại (không kể)"
+msgid "Column width"
+msgstr "Bề rộng cột"
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3394573\n"
+"05340200.xhp\n"
+"par_id3153272\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an exclusive upper bound for values.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên trên không kể cho các giá trị.</ahelp>"
+msgid "<variable id=\"spaltetext\"><ahelp hid=\"HID_BROWSER_COLUMNWIDTH\" visibility=\"visible\">Changes the width of the current column, or the selected columns.</ahelp></variable>"
+msgstr "<variable id=\"spaltetext\"><ahelp hid=\"HID_BROWSER_COLUMNWIDTH\" visibility=\"visible\">Sửa đổi chiều rộng của cột hiện tại, hay của những cột đã chọn.</ahelp></variable>"
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id7594225\n"
+"05340200.xhp\n"
+"par_id3152821\n"
+"7\n"
"help.text"
-msgid "Min. (inclusive)"
-msgstr "Tiểu (kể)"
+msgid "You can also change the width of a column by dragging the divider beside the column header.<switchinline select=\"appl\"> <caseinline select=\"CALC\"> To fit the column width to the cell contents, double-click the divider.</caseinline> </switchinline>"
+msgstr "Bạn cũng có khả năng sửa đổi chiều rộng của cột bằng cách kéo đường chia nằm bên cạnh đầu cột. <switchinline select=\"appl\"> <caseinline select=\"CALC\"> Để vừa chiều rộng hàng khít nội dung của ô, nhấn-đôi vào đường chia.</caseinline> </switchinline>"
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id8147221\n"
+"05340200.xhp\n"
+"hd_id3149346\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an inclusive lower bound for values.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên dưới kể cho các giá trị.</ahelp>"
+msgid "Width"
+msgstr "Bề rộng"
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id5081637\n"
+"05340200.xhp\n"
+"par_id3147576\n"
+"4\n"
"help.text"
-msgid "Min. (exclusive)"
-msgstr "Tiểu (không kể)"
+msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_COLWIDTH_MF_VALUE\" visibility=\"visible\">Enter the column width that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_COLWIDTH_MF_VALUE\" visibility=\"visible\">Nhập chiều rộng cột bạn muốn dùng.</ahelp>"
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id9759514\n"
+"05340200.xhp\n"
+"hd_id3148621\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an exclusive lower bound for values.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên dưới không kể cho các giá trị.</ahelp>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Default value</caseinline> <defaultinline>Automatic</defaultinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Giá trị</caseinline> <defaultinline>Tự động</defaultinline> </switchinline>"
-#: xformsdatatab.xhp
+#: 05340200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id1614429\n"
+"05340200.xhp\n"
+"par_id3147008\n"
+"6\n"
"help.text"
-msgid "Length"
-msgstr "Bề dài"
+msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_COLWIDTH_CB_STANDARD\" visibility=\"visible\">Automatically adjusts the column width based on the current font.</ahelp>"
+msgstr "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_COLWIDTH_CB_STANDARD\" visibility=\"visible\">Tự động điều chỉnh chiều rộng cột dựa vào phông hiện thời.</ahelp>"
-#: xformsdatatab.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1589098\n"
+"05340300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the number of characters for a string.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ số ký tự cho một chuỗi.</ahelp>"
+msgid "Alignment"
+msgstr "Canh lề"
-#: xformsdatatab.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id1278420\n"
+"05340300.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "Length (at least)"
-msgstr "Độ dài (tiểu)"
+msgid "<bookmark_value>aligning; cells</bookmark_value><bookmark_value>cells; aligning</bookmark_value>"
+msgstr "<bookmark_value>sắp hàng; các ô bảng</bookmark_value><bookmark_value>ô bảng; canh lề</bookmark_value>"
-#: xformsdatatab.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id8746910\n"
+"05340300.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the minimum number of characters for a string.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ số ký tự tối thiểu cho một chuỗi.</ahelp>"
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Alignment\">Alignment</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Canh lề\">Canh lề</link>"
-#: xformsdatatab.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id9636524\n"
+"05340300.xhp\n"
+"par_id3155577\n"
+"52\n"
"help.text"
-msgid "Length (at most)"
-msgstr "Độ dài (đại)"
+msgid "<ahelp hid=\"HID_ALIGNMENT\">Sets the alignment options for the contents of the current cell, or the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_ALIGNMENT\">Đặt các tùy chọn về chức năng chỉnh canh cho nội dung của ô bảng hiện tại, hay của những ô đã chọn.</ahelp>"
-#: xformsdatatab.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id5675527\n"
+"05340300.xhp\n"
+"hd_id3153124\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
-msgstr "<ahelp hid=\".\">Ghi rõ số ký tự tối đa cho một chuỗi.</ahelp>"
+msgid "Horizontal"
+msgstr "Nằm ngang"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"tit\n"
+"05340300.xhp\n"
+"par_id3144436\n"
+"55\n"
"help.text"
-msgid "Form Namespaces"
-msgstr "Miền tên Biểu mẫu"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_HORALIGN\">Select the horizontal alignment option that you want to apply to the cell contents.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_HORALIGN\">Bật tùy chọn chỉnh canh theo chiều ngang mà bạn muốn áp dụng cho nội dung của ô bảng.</ahelp>"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"bm_id8286080\n"
+"05340300.xhp\n"
+"hd_id3146109\n"
+"56\n"
"help.text"
-msgid "<bookmark_value>deleting;namespaces in XForms</bookmark_value><bookmark_value>organizing;namespaces in XForms</bookmark_value><bookmark_value>namespace organization in XForms</bookmark_value><bookmark_value>XForms;adding/editing/deleting/organizing namespaces</bookmark_value>"
-msgstr "<bookmark_value>xoá;không gian tên trong biểu mẫu XForms</bookmark_value><bookmark_value>tổ chức;không gian tên trong biểu mẫu XForms</bookmark_value><bookmark_value>tổ chức không gian tên trong biểu mẫu XForms</bookmark_value><bookmark_value>biểu mẫu XForms;thêm/sửa/xoá/tổ chức không gian tên</bookmark_value>"
+msgid "Default"
+msgstr "Mặc định"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1053E\n"
+"05340300.xhp\n"
+"par_id3166445\n"
+"57\n"
"help.text"
-msgid "Form Namespaces"
-msgstr "Miền tên Biểu mẫu"
+msgid "Aligns numbers to the right, and text to the left."
+msgstr "Chỉnh canh các con số theo bên phải, và văn bản theo bên trái."
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10542\n"
+"05340300.xhp\n"
+"par_id3147010\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Use this dialog to organize namespaces. You can access this dialog through the Add Condition dialog of the Data Navigator.</ahelp>"
-msgstr "<ahelp hid=\".\">Hãy dùng hộp thoại này để tổ chức các miền tên. Bạn có thể truy cập đến hộp thoại này thông qua hộp thoại <emph>Thêm điều kiện</emph> của Bộ Duyệt Dữ Liệu.</ahelp>"
+msgid "If the <emph>Default</emph> option is selected, numbers will be aligned to the right and text will be left-justified."
+msgstr "Bật tùy chọn <emph>Mặc định</emph> thì các con số sẽ được chỉnh canh bên phải, và văn bản sẽ được chỉnh canh bên trái."
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10561\n"
+"05340300.xhp\n"
+"hd_id3153577\n"
+"58\n"
"help.text"
-msgid "Namespaces"
-msgstr "Miền tên"
+msgid "Left"
+msgstr "Trái"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10565\n"
+"05340300.xhp\n"
+"par_id3150506\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the currently defined namespaces for the form.</ahelp>"
-msgstr "<ahelp hid=\".\">Liệt kê các miền tên được xác định hiện thời đối với biểu mẫu đó.</ahelp>"
+msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:AlignLeft\">Aligns the contents of the cell to the left.</ahelp></variable>"
+msgstr "<variable id=\"linkstext\"><ahelp hid=\".uno:AlignLeft\">Chỉnh canh nội dung của ô bảng theo bên trái.</ahelp></variable>"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10568\n"
+"05340300.xhp\n"
+"hd_id3156347\n"
+"60\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "Right"
+msgstr "Phải"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1056C\n"
+"05340300.xhp\n"
+"par_id3148538\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds a new namespace to the list.</ahelp>"
-msgstr "<ahelp hid=\".\">Thêm vào danh sách một miền tên mới.</ahelp>"
+msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:AlignRight\">Aligns the contents of the cell to the right.</ahelp></variable>"
+msgstr "<variable id=\"rechtstext\"><ahelp hid=\".uno:AlignRight\">Chỉnh canh nội dung của ô bảng theo bên phải.</ahelp></variable>"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1056F\n"
+"05340300.xhp\n"
+"hd_id3153541\n"
+"62\n"
"help.text"
-msgid "Use the <emph>Add Namespace</emph> dialog to enter the Prefix and URL."
-msgstr "Dùng hộp thoại <emph>Thêm miền tên</emph> để thêm Tiền tố và địa chỉ URL."
+msgid "Center"
+msgstr "Giữa"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10576\n"
+"05340300.xhp\n"
+"par_id3154380\n"
+"63\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<variable id=\"zentrierttext\"><ahelp hid=\".\">Horizontally centers the contents of the cell.</ahelp></variable>"
+msgstr "<variable id=\"zentrierttext\"><ahelp hid=\".\">Đặt nội dung ô vào giữa theo chiều ngang.</ahelp></variable>"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1057A\n"
+"05340300.xhp\n"
+"hd_id3159166\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\".\">Edits the selected namespace.</ahelp>"
-msgstr "<ahelp hid=\".\">Chỉnh sửa miền tên đã chọn.</ahelp>"
+msgid "Justified"
+msgstr "Canh đều"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1057D\n"
+"05340300.xhp\n"
+"par_id3153665\n"
+"65\n"
"help.text"
-msgid "Use the <emph>Edit Namespace</emph> dialog to edit the Prefix and URL."
-msgstr "Dùng hộp thoại <emph>Sửa miền tên</emph> để chỉnh sửa Tiền tố và địa chỉ URL."
+msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:AlignBlock\">Aligns the contents of the cell to the left and to the right cell borders.</ahelp></variable>"
+msgstr "<variable id=\"blocktext\"><ahelp hid=\".uno:AlignBlock\">Chỉnh canh nội dung ô theo viền bên trái và bên phải của ô bảng.</ahelp></variable>"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10584\n"
+"05340300.xhp\n"
+"par_idN1079C\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "Filled"
+msgstr "Điền đầy"
-#: xformsdataname.xhp
+#: 05340300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10588\n"
+"05340300.xhp\n"
+"par_idN107A0\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected namespace.</ahelp>"
-msgstr "<ahelp hid=\".\">Xoá miền tên đã chọn.</ahelp>"
+msgid "Repeats the cell contents (number and text) until the visible area of the cell is filled. This feature does not work on text that contains line breaks."
+msgstr "Lặp lại nội dung ô (số và văn bản) đến khi điền đầy vùng hiện rõ của ô bảng. Tính năng này không hoạt động với văn bản chứa chỗ ngắt dòng."
-#: 02230400.xhp
+#: 05340300.xhp
msgctxt ""
-"02230400.xhp\n"
-"tit\n"
+"05340300.xhp\n"
+"par_idN1079D\n"
"help.text"
-msgid "Accept or reject changes"
-msgstr "Chấp nhận hay từ chối thay đổi"
+msgid "Distributed"
+msgstr "Phân phối"
-#: 02230400.xhp
+#: 05340300.xhp
msgctxt ""
-"02230400.xhp\n"
-"hd_id3145138\n"
-"1\n"
+"05340300.xhp\n"
+"par_idN107A1\n"
"help.text"
-msgid "Accept or reject changes"
-msgstr "Chấp nhận hay từ chối thay đổi"
+msgid "Aligns contents evenly across the whole cell. Unlike <emph>Justified</emph>, it justifies the very last line of text, too."
+msgstr ""
-#: 02230400.xhp
+#: 05340300.xhp
msgctxt ""
-"02230400.xhp\n"
-"par_id3147240\n"
-"2\n"
+"05340300.xhp\n"
+"hd_id3158432\n"
+"41\n"
"help.text"
-msgid "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Accept or reject recorded changes.</ahelp></variable>"
-msgstr "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Chấp nhận hay từ chối thay đổi đã thu.</ahelp></variable>"
+msgid "Indent"
+msgstr "Thụt lề"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"tit\n"
+"05340300.xhp\n"
+"par_id3153716\n"
+"42\n"
"help.text"
-msgid "Callout"
-msgstr "Khung thoại"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ALIGNMENT:ED_INDENT\">Indents from the left edge of the cell by the amount that you enter.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ALIGNMENT:ED_INDENT\">Thụt vào từ cạnh bên trái ô theo giá trị bạn nhập.</ahelp>"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"bm_id3149038\n"
+"05340300.xhp\n"
+"hd_id3149903\n"
+"66\n"
"help.text"
-msgid "<bookmark_value>legends; draw objects</bookmark_value><bookmark_value>draw objects; legends</bookmark_value><bookmark_value>labels;for draw objects</bookmark_value><bookmark_value>labels, see also names/callouts</bookmark_value><bookmark_value>captions, see also labels/callouts</bookmark_value><bookmark_value>names, see also labels/callouts</bookmark_value>"
-msgstr "<bookmark_value>câu chú giải; đối tượng vẽ</bookmark_value><bookmark_value>đối tượng vẽ; câu chú giải</bookmark_value><bookmark_value>nhãn;cho đối tượng vẽ</bookmark_value><bookmark_value>nhãn, xem thêm tên/khung thoại</bookmark_value><bookmark_value>phụ đề, xem thêm nhãn/khung thoại</bookmark_value><bookmark_value>tên, xem thêm nhãn/khung thoại</bookmark_value>"
+msgid "Vertical"
+msgstr "Thẳng đứng"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3149038\n"
-"1\n"
+"05340300.xhp\n"
+"par_id3148924\n"
+"67\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230500.xhp\" name=\"Callout\">Callout</link>"
-msgstr "<link href=\"text/shared/01/05230500.xhp\" name=\"Khung thoại\">Khung thoại</link>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Select the vertical alignment option that you want to apply to the cell contents.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Bật tùy chọn chỉnh canh theo chiều dọc mà bạn muốn áp dụng cho nội dung của ô bảng.</ahelp>"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3155069\n"
-"2\n"
+"05340300.xhp\n"
+"hd_id3146848\n"
+"68\n"
"help.text"
-msgid "Specify the properties of the selected callout."
-msgstr "Ghi rõ các thuộc tính về khung thoại đã chọn."
+msgid "Default"
+msgstr "Mặc định"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id368358\n"
+"05340300.xhp\n"
+"par_id3150822\n"
+"69\n"
"help.text"
-msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image> where you can select the shape."
-msgstr "Khung thoại kiểu này bắt nguồn từ những phiên bản đầu tiên của %PRODUCTNAME. Bạn cần phải đặc chế một thanh công cụ hay trình đơn để chèn khung thoại kiểu này. Khung thoại hình riêng mới thì cung cấp nhiều tính năng hơn, gồm có thanh công cụ <emph>Khung thoại</emph> <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Biểu tượng</alt></image> trên đó bạn có thể chọn hình."
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Aligns the cell contents to the bottom of the cell.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Chỉnh canh nội dung ô theo bên dưới.</ahelp>"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3151330\n"
-"3\n"
+"05340300.xhp\n"
+"hd_id3147531\n"
+"70\n"
"help.text"
-msgid "Callout Styles"
-msgstr "Kiểu dáng Khung thoại"
+msgid "Top"
+msgstr "Trên"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3149760\n"
-"4\n"
+"05340300.xhp\n"
+"par_id3145085\n"
+"71\n"
"help.text"
-msgid "<ahelp hid=\"HID_CAPTION_CTL_TYPE\">Click the <emph>Callout</emph> style that you want to apply to the selected callout.</ahelp>"
-msgstr "<ahelp hid=\"HID_CAPTION_CTL_TYPE\">Nhấn vào kiểu dáng <emph>Khung thoại</emph> bạn muốn áp dụng cho khung thoại đã chọn.</ahelp>"
+msgid "<variable id=\"obentext\"><ahelp hid=\".uno:AlignTop\">Aligns the contents of the cell to the upper edge of the cell.</ahelp></variable>"
+msgstr "<variable id=\"obentext\"><ahelp hid=\".uno:AlignTop\">Chỉnh canh nội dung ô theo cạnh bên trên.</ahelp></variable>"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3149798\n"
-"5\n"
+"05340300.xhp\n"
+"hd_id3156343\n"
+"72\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "Bottom"
+msgstr "Dưới"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3147399\n"
-"6\n"
+"05340300.xhp\n"
+"par_id3152813\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND\">Enter the amount of space that you want to leave between the end of the callout line, and the callout box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND\">Nhập khoảng cách bạn muốn để lại giữa kết thúc của đường khung thoại và hộp giới hạn khung thoại.</ahelp>"
+msgid "<variable id=\"untentext\"><ahelp hid=\".\">Aligns the contents of the cell to the lower edge of the cell.</ahelp></variable>"
+msgstr "<variable id=\"untentext\"><ahelp hid=\".\">Chỉnh canh nội dung ô theo cạnh bên dưới.</ahelp></variable>"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3151226\n"
-"7\n"
+"05340300.xhp\n"
+"hd_id3151106\n"
+"73\n"
"help.text"
-msgid "Extension"
-msgstr "Mở rộng"
+msgid "Middle"
+msgstr "Giữa"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3148620\n"
-"8\n"
+"05340300.xhp\n"
+"par_id3151210\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL\">Select where you want to extend the callout line from, in relation to the callout box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL\">Chọn vị trí từ đó bạn muốn mở rộng đường khung thoại, tương ứng so với hộp giới hạn khung thoại.</ahelp>"
+msgid "<variable id=\"mittetext\"><ahelp hid=\".uno:AlignVCenter\">Vertically centers the contents of the cell.</ahelp></variable>"
+msgstr "<variable id=\"mittetext\"><ahelp hid=\".uno:AlignVCenter\">Đặt nội dung của ô bảng vào giữa theo chiều dọc.</ahelp></variable>"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3153311\n"
-"9\n"
+"05340300.xhp\n"
+"hd_id3151107\n"
"help.text"
-msgid "Length"
-msgstr "Bề dài"
+msgid "Justified"
+msgstr "Canh đều"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3145313\n"
-"10\n"
+"05340300.xhp\n"
+"par_id3151211\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE\">Enter the length of the callout line segment that extends from the callout box to the inflection point of the line.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE\">Nhập chiều dài của đoạn đường khung thoại mà kéo dài từ hộp giới hạn khung thoại đến điểm uốn của đường.</ahelp>"
+msgid "Aligns the contents of the cell to the top and to the bottom cell borders."
+msgstr ""
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3159269\n"
-"11\n"
+"05340300.xhp\n"
+"hd_id3151108\n"
"help.text"
-msgid "The <emph>Length </emph>box is only available if you select the <emph>Angled connector line</emph> callout style, and leave the <emph>Optimal </emph>checkbox cleared."
-msgstr "Hộp <emph>Bề dài</emph> chỉ sẵn sàng nếu bạn chọn kiểu dáng khung thoại <emph>Đường nối góc</emph> và không bật tùy chọn <emph>Tối ưu</emph>."
+msgid "Distributed"
+msgstr "Phân phối"
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3149820\n"
-"12\n"
+"05340300.xhp\n"
+"par_id3151212\n"
"help.text"
-msgid "Optimal"
-msgstr "Tối ưu"
+msgid "Same as <emph>Justified</emph>, unless the text orientation is vertical. Then it behaves similarly, than horizontal <emph>Distributed</emph> setting, i.e. the very last line is justified, too."
+msgstr ""
-#: 05230500.xhp
+#: 05340300.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3147210\n"
-"13\n"
+"05340300.xhp\n"
+"hd_id3154154\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE\">Click here to display a single-angled line in an optimal way.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE\">Nhấn vào đây để hiển thị một đường góc đơn bằng cách tối ưu.</ahelp>"
+msgid "Text orientation"
+msgstr "Hướng của văn bản"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"tit\n"
+"05340300.xhp\n"
+"par_id3151380\n"
+"30\n"
"help.text"
-msgid "AutoCorrect context menu"
-msgstr "Trình đơn ngữ cảnh Tự động Sửa lỗi"
+msgid "<ahelp hid=\".uno:AlignVCenter\">Sets the text orientation of the cell contents.</ahelp>"
+msgstr "<ahelp hid=\".uno:AlignVCenter\">Đặt hướng văn bản của nội dung ô bảng.</ahelp>"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"bm_id3152823\n"
+"05340300.xhp\n"
+"par_id3147085\n"
+"49\n"
"help.text"
-msgid "<bookmark_value>AutoCorrect function; context menu</bookmark_value><bookmark_value>spellcheck; context menus</bookmark_value>"
-msgstr "<bookmark_value>chức năng Tự động Sửa lỗi; trình đơn ngữ cảnh</bookmark_value><bookmark_value>kiểm tra chính tả; trình đơn ngữ cảnh</bookmark_value>"
+msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_DIAL\">Click in the dial to set the text orientation.</ahelp>"
+msgstr "<ahelp hid=\"HID_ALIGNMENT_CTR_DIAL\">Nhấn vào đĩa để đặt hướng văn bản.</ahelp>"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3152823\n"
-"1\n"
+"05340300.xhp\n"
+"hd_id3150449\n"
+"45\n"
"help.text"
-msgid "AutoCorrect context menu"
-msgstr "Trình đơn ngữ cảnh Tự động Sửa lỗi"
+msgid "Degrees"
+msgstr "Độ"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3146936\n"
-"2\n"
+"05340300.xhp\n"
+"par_id3153194\n"
+"46\n"
"help.text"
-msgid "To access this menu, right-click a misspelled word in your document. To view the misspelled words in your document, enable <emph>AutoSpellcheck</emph> icon on the Standard toolbar."
-msgstr "Để truy cập đến trình đơn này, nhấn-phải vào từ sai chính tả trong tài liệu. Để xem các từ sai chính tả trong tài liệu, hiệu lực biểu tượng <emph>Tự động Kiểm tra Chính tả</emph> trên thanh công cụ <emph>Chuẩn</emph>."
+msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_ALIGNMENT_NF_DEGREES\">Enter the rotation angle for the text in the selected cell(s). A positive number rotates the text to the left and a negative number rotates the text to the right.</ahelp>"
+msgstr "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_ALIGNMENT_NF_DEGREES\">Nhập góc xoay cho văn bản trong những ô đã chọn. Con số dương thì xoay văn bản theo ngược chiều, còn con số âm xoay văn bản theo xuôi chiều.</ahelp>"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3153899\n"
-"4\n"
+"05340300.xhp\n"
+"hd_id3150497\n"
+"75\n"
"help.text"
-msgid "<Replacement Suggestions>"
-msgstr "<Góp ý thay thế>"
+msgid "Reference edge"
+msgstr "Cạnh tham chiếu"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3147000\n"
-"5\n"
+"05340300.xhp\n"
+"par_id3154069\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINGU_REPLACE\">Click the word to replace the highlighted word. Use the AutoCorrect submenu for permanent replacement.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINGU_REPLACE\">Nhấn vào từ nên thay thế từ đã tô sáng. Dùng trình đơn phụ Tự động Sửa lỗi để thay thế bền bỉ.</ahelp>"
+msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_BORDER_LOCK\">Specify the cell edge from which to write the rotated text.</ahelp>"
+msgstr "<ahelp hid=\"HID_ALIGNMENT_CTR_BORDER_LOCK\">Ghi rõ cạnh ô từ đó cần ghi văn bản đã xoay.</ahelp>"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3153089\n"
-"6\n"
+"05340300.xhp\n"
+"par_id3147299\n"
+"78\n"
"help.text"
-msgid "Spellcheck"
-msgstr "Kiểm tra chính tả"
+msgid "<emph>Text Extension From Lower Cell Border:</emph> Writes the rotated text from the bottom cell edge outwards."
+msgstr "<emph>Kéo dài văn bản từ viền ô dưới:</emph> ghi văn bản đã xoay từ cạnh bên dưới ô ra phía ngoài."
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3154497\n"
-"7\n"
+"05340300.xhp\n"
+"par_id3149561\n"
+"79\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINGU_SPELLING_DLG\">Opens the <link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spellcheck</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINGU_SPELLING_DLG\">Mở hộp thoại <link href=\"text/shared/01/06010000.xhp\" name=\"Kiểm tra Chính tả\">Kiểm tra Chính tả</link>.</ahelp>"
+msgid "<emph>Text Extension From Upper Cell Border:</emph> Writes the rotated text from the top cell edge outwards."
+msgstr "<emph>Kéo dài văn bản từ viền ô trên:</emph> ghi văn bản đã xoay từ cạnh bên trên ô ra phía ngoài."
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3149283\n"
-"8\n"
+"05340300.xhp\n"
+"par_id3163712\n"
+"80\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "<emph>Text Extension Inside Cells:</emph> Writes the rotated text only within the cell."
+msgstr "<emph>Kéo dài văn bản bên trong ô :</emph> ghi văn bản đã xoay chỉ bên trong ô bảng."
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3158405\n"
-"9\n"
+"05340300.xhp\n"
+"par_idN109F4\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINGU_ADD_WORD\">Adds the highlighted word to a user-defined dictionary.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINGU_ADD_WORD\">Thêm từ đã tô sáng vào một từ điển tự xác định.</ahelp>"
+msgid "Vertically stacked"
+msgstr "Xếp đống thẳng đứng"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3152924\n"
-"10\n"
+"05340300.xhp\n"
+"par_idN109F8\n"
"help.text"
-msgid "Ignore all"
-msgstr "Bỏ tất cả"
+msgid "<ahelp hid=\".\">Aligns text vertically.</ahelp>"
+msgstr "<ahelp hid=\".\">Căn chỉnh văn bản theo chiều dọc.</ahelp>"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3151226\n"
-"11\n"
+"05340300.xhp\n"
+"hd_id3152576\n"
+"84\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINGU_IGNORE_WORD\">Ignores all instances of the highlighted word in the current document.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINGU_IGNORE_WORD\">Bỏ qua mọi lần gặp từ đã tô sáng trong tài liệu hiện tại.</ahelp>"
+msgid "Asian layout mode"
+msgstr "Chế độ bố trí Châu Á"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3157958\n"
-"12\n"
+"05340300.xhp\n"
+"par_id3150010\n"
+"85\n"
"help.text"
-msgid "AutoCorrect"
-msgstr "Tự động Sửa lỗi"
+msgid "This checkbox is only available if Asian language support is enabled and the text direction is set to vertical. <ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_ASIAN_VERTICAL\">Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated.</ahelp>"
+msgstr "Tùy chọn chỉ sẵn sàng nếu bạn đã hiệu lực hỗ trợ ngôn ngữ Châu Á, và hướng văn bản đã được đặt thành chiều dọc. <ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_ASIAN_VERTICAL\">Chỉnh canh các ký tự ngôn ngữ Châu Á (v.d. tiếng Trung/Nhật/Hàn) theo chiều dọc, ký tự này nằm dưới ký tự trước, trong những ô bảng đã chọn. Ô chứa nhiều dòng văn bản thì các dòng được chuyển đổi sang các cột văn bản được sắp đặt từ bên phải sang trái. Ký tự Phương Tây nằm trong văn bản đã chuyển đổi thì được xoay 90 độ theo xuôi chiều. Không xoay ký tự Châu Á.</ahelp>"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3149177\n"
-"13\n"
+"05340300.xhp\n"
+"hd_id3150032\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINGU_AUTOCORR\">To always replace the highlighted word, click a word in the list. The word pair is stored in the replacement table under Tools - AutoCorrect Options - Replace.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINGU_AUTOCORR\">Muốn lúc nào cũng thay thế từ đã tô sáng thì nhấn vào từ trong danh sách. Cặp từ này được cất giữ trong bảng thay thế dưới <emph>Công cụ > Tự động Sửa lỗi > Thay thế</emph>.</ahelp>"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3146797\n"
-"15\n"
+"05340300.xhp\n"
+"par_id3146120\n"
+"44\n"
"help.text"
-msgid "Word is <name of language>"
-msgstr "Từ bằng <tên của ngôn ngữ>"
+msgid "Determine the text flow in a cell."
+msgstr "Xác định luồng văn bản trong ô bảng."
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3150443\n"
-"16\n"
+"05340300.xhp\n"
+"hd_id3145590\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINGU_WORD_LANGUAGE\">Changes the language settings for the highlighted word, if the word is found in another dictionary.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINGU_WORD_LANGUAGE\">Thay đổi thiết lập ngôn ngữ cho từ đã tô sáng, nếu từ nằm trong từ điển khác.</ahelp>"
+msgid "Wrap text automatically"
+msgstr "Tự động cuộn văn bản"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"hd_id3166411\n"
-"17\n"
+"05340300.xhp\n"
+"par_id3148555\n"
+"4\n"
"help.text"
-msgid "Paragraph is <name of language>"
-msgstr "Đoạn văn bằng <tên của ngôn ngữ>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_ALIGNMENT:BTN_WRAP\">Wraps text onto another line at the cell border. The number of lines depends on the width of the cell.</ahelp> To enter a manual line break, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter in the cell."
+msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_ALIGNMENT:BTN_WRAP\">Gặp viền ô bảng thì cuộn đoạn văn đến dòng kế tiếp. Số các dòng có thể cuộn thì phụ thuộc vào chiều rộng của ô. Để chèn một chỗ ngắt dòng bằng tay, bấm tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter khi con trỏ nằm trong ô.</ahelp>"
-#: 06040500.xhp
+#: 05340300.xhp
msgctxt ""
-"06040500.xhp\n"
-"par_id3148925\n"
-"18\n"
+"05340300.xhp\n"
+"hd_id3147380\n"
+"81\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINGU_PARA_LANGUAGE\">Changes the language setting for the paragraph that contains the highlighted word, if the word is found in another dictionary.</ahelp>"
-msgstr "<ahelp hid=\"HID_LINGU_PARA_LANGUAGE\">Thay đổi thiết lập ngôn ngữ cho đoạn văn chứa từ đã tô sáng, nếu từ nằm trong từ điển khác.</ahelp>"
+msgid "Hyphenation active"
+msgstr "Gạch nối từ đã bật"
-#: 05240100.xhp
-#, fuzzy
+#: 05340300.xhp
msgctxt ""
-"05240100.xhp\n"
-"tit\n"
+"05340300.xhp\n"
+"par_id3148458\n"
+"82\n"
"help.text"
-msgid "Vertically"
-msgstr "Thẳng đứng"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_HYPH\">Enables word hyphenation for text wrapping to the next line.</ahelp>"
+msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_HYPH\">Hiệu lực chức năng gạch nối từ để cuộn văn bản đến dòng kế tiếp.</ahelp>"
-#: 05240100.xhp
+#: 05340300.xhp
msgctxt ""
-"05240100.xhp\n"
-"hd_id3146959\n"
-"1\n"
+"05340300.xhp\n"
+"par_idN10AD3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240100.xhp\" name=\"Vertically\">Vertically</link>"
-msgstr "<link href=\"text/shared/01/05240100.xhp\" name=\"Dọc\">Theo chiều dọc</link>"
+msgid "Shrink to fit cell size"
+msgstr "Thu nhỏ để vừa kích cỡ ô"
-#: 05240100.xhp
+#: 05340300.xhp
msgctxt ""
-"05240100.xhp\n"
-"par_id3149741\n"
-"2\n"
+"05340300.xhp\n"
+"par_idN10AD7\n"
"help.text"
-msgid "<ahelp hid=\".uno:MirrorVert\">Flips the selected object(s) vertically from top to bottom.</ahelp>"
-msgstr "<ahelp hid=\".uno:MirrorVert\">Lật những đối tượng đã chọn theo chiều dọc, từ trên xuống dưới.</ahelp>"
+msgid "<ahelp hid=\".\">Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks.</ahelp>"
+msgstr "<ahelp hid=\".\">Giảm kích cỡ biểu kiến của phông để vừa nội dung ô khít chiều rộng hiện thời của ô. Tuy nhiên, không thể áp dụng chức năng này cho ô chứa chỗ ngắt dòng.</ahelp>"
#: 05340400.xhp
msgctxt ""
@@ -34250,7 +30761,6 @@ msgid "Several records or removing a selection"
msgstr "Vài bản ghi hay gỡ bỏ vùng chọn"
#: 05340400.xhp
-#, fuzzy
msgctxt ""
"05340400.xhp\n"
"par_id3149295\n"
@@ -34411,7 +30921,6 @@ msgid "<image id=\"img_id3156060\" src=\"cmd/sc_firstrecord.png\" width=\"0.222i
msgstr "<image id=\"img_id3156060\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156060\">Biểu tượng</alt></image>"
#: 05340400.xhp
-#, fuzzy
msgctxt ""
"05340400.xhp\n"
"par_id3151173\n"
@@ -34438,7 +30947,6 @@ msgid "<image id=\"img_id3156736\" src=\"cmd/sc_prevrecord.png\" width=\"0.222in
msgstr "<image id=\"img_id3156736\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156736\">Biểu tượng</alt></image>"
#: 05340400.xhp
-#, fuzzy
msgctxt ""
"05340400.xhp\n"
"par_id3153280\n"
@@ -34457,7 +30965,6 @@ msgid "Record number"
msgstr "Số hiệu bản ghi"
#: 05340400.xhp
-#, fuzzy
msgctxt ""
"05340400.xhp\n"
"par_id3155851\n"
@@ -34484,7 +30991,6 @@ msgid "<image id=\"img_id3153214\" src=\"cmd/sc_nextrecord.png\" width=\"0.222in
msgstr "<image id=\"img_id3153214\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153214\">Biểu tượng</alt></image>"
#: 05340400.xhp
-#, fuzzy
msgctxt ""
"05340400.xhp\n"
"par_id3166414\n"
@@ -34511,7 +31017,6 @@ msgid "<image id=\"img_id3156320\" src=\"cmd/sc_lastrecord.png\" width=\"0.222in
msgstr "<image id=\"img_id3156320\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156320\">Biểu tượng</alt></image>"
#: 05340400.xhp
-#, fuzzy
msgctxt ""
"05340400.xhp\n"
"par_id3147175\n"
@@ -34538,7 +31043,6 @@ msgid "<image id=\"img_id3154636\" src=\"svtools/res/ed03.png\" width=\"0.1528in
msgstr "<image id=\"img_id3154636\" src=\"svtools/res/ed03.png\" width=\"0.1528inch\" height=\"0.1528inch\"><alt id=\"alt_id3154636\">Biểu tượng</alt></image>"
#: 05340400.xhp
-#, fuzzy
msgctxt ""
"05340400.xhp\n"
"par_id3146913\n"
@@ -34619,6 +31123,578 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column Width\">Column Width</link>"
msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Bề rộng cột\">Bề rộng cột</link>"
+#: 05340402.xhp
+msgctxt ""
+"05340402.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table format"
+msgstr "Định dạng bảng"
+
+#: 05340402.xhp
+msgctxt ""
+"05340402.xhp\n"
+"hd_id3153514\n"
+"1\n"
+"help.text"
+msgid "Table format"
+msgstr "Định dạng bảng"
+
+#: 05340402.xhp
+msgctxt ""
+"05340402.xhp\n"
+"par_id3154350\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"tabformtext\"><ahelp hid=\"HID_BROWSER_TABLEFORMAT\" visibility=\"visible\">Formats the selected row(s).</ahelp></variable>"
+msgstr "<variable id=\"tabformtext\"><ahelp hid=\"HID_BROWSER_TABLEFORMAT\" visibility=\"visible\">Định dạng những hàng đã chọn</ahelp></variable>"
+
+#: 05340404.xhp
+msgctxt ""
+"05340404.xhp\n"
+"tit\n"
+"help.text"
+msgid "Delete Rows"
+msgstr "Xoá hàng"
+
+#: 05340404.xhp
+msgctxt ""
+"05340404.xhp\n"
+"hd_id3147617\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340404.xhp\" name=\"Delete Rows\">Delete Rows</link>"
+msgstr "<link href=\"text/shared/01/05340404.xhp\" name=\"Xoá hàng\">Xoá hàng</link>"
+
+#: 05340404.xhp
+msgctxt ""
+"05340404.xhp\n"
+"par_id3147000\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected row(s).</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá những hàng đã chọn.</ahelp>"
+
+#: 05340404.xhp
+msgctxt ""
+"05340404.xhp\n"
+"par_id3145129\n"
+"3\n"
+"help.text"
+msgid "This command can be activated only when you select the <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\">Edit</link> icon on the Table Data bar or Standard bar."
+msgstr "Chỉ có thể kích hoạt chức năng này khi bạn chọn biểu tượng <link href=\"text/shared/02/07070000.xhp\" name=\"Sửa\">Sửa</link> trên thanh kiểu <emph>Dữ liệu bảng</emph> hay <emph>Chuẩn</emph>."
+
+#: 05340405.xhp
+msgctxt ""
+"05340405.xhp\n"
+"tit\n"
+"help.text"
+msgid "Column format"
+msgstr "Định dạng cột"
+
+#: 05340405.xhp
+msgctxt ""
+"05340405.xhp\n"
+"hd_id3152876\n"
+"1\n"
+"help.text"
+msgid "Column format"
+msgstr "Định dạng cột"
+
+#: 05340405.xhp
+msgctxt ""
+"05340405.xhp\n"
+"par_id3147543\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Formats the selected column(s).</ahelp></variable>"
+msgstr "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Định dạng những cột đã chọn.</ahelp></variable>"
+
+#: 05340405.xhp
+msgctxt ""
+"05340405.xhp\n"
+"hd_id3150620\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format\">Format</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Định dạng\">Định dạng</link>"
+
+#: 05340500.xhp
+msgctxt ""
+"05340500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hide Columns"
+msgstr "Ẩn cột"
+
+#: 05340500.xhp
+msgctxt ""
+"05340500.xhp\n"
+"hd_id3148882\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340500.xhp\" name=\"Hide Columns\">Hide Columns</link>"
+msgstr "<link href=\"text/shared/01/05340500.xhp\" name=\"Ẩn cột\">Ẩn cột</link>"
+
+#: 05340500.xhp
+msgctxt ""
+"05340500.xhp\n"
+"par_id3155620\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Hides the selected column(s). To display hidden columns, right-click any column header, and then choose <emph>Show Columns</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Ẩn những cột đã chọn. Để hiển thị cột bị ẩn, nhấn-phải vào bất cứ đầu cột nào, sau đó chọn lệnh <emph>Hiện cột</emph>.</ahelp>"
+
+#: 05340600.xhp
+msgctxt ""
+"05340600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Show Columns"
+msgstr "Hiện cột"
+
+#: 05340600.xhp
+msgctxt ""
+"05340600.xhp\n"
+"hd_id3152876\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340600.xhp\" name=\"Show Columns\">Show Columns</link>"
+msgstr "<link href=\"text/shared/01/05340600.xhp\" name=\"Hiện cột\">Hiện cột</link>"
+
+#: 05340600.xhp
+msgctxt ""
+"05340600.xhp\n"
+"par_id3147212\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays hidden columns. Choose the column that you want to display from the list, or click <emph>All </emph>to display all of the hidden columns.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị các cột bị ẩn. Trong danh sách, chọn cột bạn muốn hiển thị, hoặc bật tùy chọn <emph>Tất cả</emph> để hiển thị tất cả các cột bị ẩn.</ahelp>"
+
+#: 05350000.xhp
+msgctxt ""
+"05350000.xhp\n"
+"tit\n"
+"help.text"
+msgid "3D Effects"
+msgstr "Hiệu ứng 3D"
+
+#: 05350000.xhp
+msgctxt ""
+"05350000.xhp\n"
+"hd_id3153136\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05350000.xhp\" name=\"3D Effects\">3D Effects</link>"
+msgstr "<link href=\"text/shared/01/05350000.xhp\" name=\"Hiệu ứng 3D\">Hiệu ứng 3D</link>"
+
+#: 05350000.xhp
+msgctxt ""
+"05350000.xhp\n"
+"par_id3156324\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Window3D\">Specifies the properties of 3D object(s) in the current document.</ahelp>"
+msgstr "<ahelp hid=\".uno:Window3D\">Ghi rõ các thuộc tính về đối tượng ba chiều (3D) trong tài liệu hiện tại.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Geometry"
+msgstr "Dạng hình"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3149551\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\">Geometry</link>"
+msgstr "<link href=\"text/shared/01/05350200.xhp\" name=\"Dạng hình\">Dạng hình</link>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3150008\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_GEO\">Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose <emph>Convert - To 3D</emph>, or <emph>Convert - To 3D Rotation Object</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_GEO\">Điều chỉnh hỉnh của đối tượng ba chiều (3D) đã chọn. Chỉ có thể sửa đổi hình của đối tượng ba chiều đã được tạo bằng cách chuyển đổi đối tượng hai chiều (2D). Để chuyển đổi đối tượng hai chiều sang ba chiều, lựa chọn đối tượng, nhấn chuột phải, sau đó chọn lệnh <emph>Chuyển đổi > Sang 3D</emph>, hay <emph>Chuyển đổi > Sang đối tượng xoay 3D</emph>.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3148538\n"
+"4\n"
+"help.text"
+msgid "Geometry"
+msgstr "Dạng hình"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3153662\n"
+"5\n"
+"help.text"
+msgid "Define the shape properties for the selected 3D object."
+msgstr "Xác định các thuộc tính hình về đối tượng 3D đã chọn."
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3149812\n"
+"12\n"
+"help.text"
+msgid "Rounded edges"
+msgstr "Cạnh tròn"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3154142\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL\">Enter the amount by which you want to round the corners of the selected 3D object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL\">Nhập hệ số theo đó bạn muốn làm tròn các góc của đối tượng 3D đã chọn.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3155585\n"
+"14\n"
+"help.text"
+msgid "Scaled depth"
+msgstr "Độ sâu tỷ lệ"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3146137\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_BACKSCALE\">Enter the amount by which to increase or decrease the area of the front side of the selected 3D object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_BACKSCALE\">Nhập hệ số theo đó cần tăng hay giảm diện tích của mặt trước của đối tượng 3D đã chọn.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3150466\n"
+"16\n"
+"help.text"
+msgid "Rotation angle"
+msgstr "Góc xoay"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3153320\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_END_ANGLE\">Enter the angle in degrees to rotate the selected 3D rotation object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_END_ANGLE\">Nhập góc theo độ cần xoay đối tượng xoay 3D đã chọn.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3149276\n"
+"18\n"
+"help.text"
+msgid "Depth"
+msgstr "Độ sâu"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3153252\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DEPTH\">Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DEPTH\">Nhập độ sâu khối lồi cho đối tượng 3D đã chọn. Tùy chọn này không sẵn sàng cho đối tượng xoay 3D.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3159343\n"
+"6\n"
+"help.text"
+msgid "Segments"
+msgstr "Đoạn"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3155388\n"
+"7\n"
+"help.text"
+msgid "You can change the number of segments that are used to draw a 3D rotation object."
+msgstr "Bạn có thể thay đổi số đoạn dùng để vẽ mỗi đối tượng xoay 3D."
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3152909\n"
+"8\n"
+"help.text"
+msgid "Horizontal"
+msgstr "Nằm ngang"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3150943\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_HORIZONTAL\">Enter the number of horizontal segments to use in the selected 3D rotation object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_HORIZONTAL\">Nhập số đoạn nằm ngang cần dùng để tạo đối tượng xoay 3D đã chọn.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3149416\n"
+"10\n"
+"help.text"
+msgid "Vertical"
+msgstr "Thẳng đứng"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3151245\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_VERTICAL\">Enter the number of vertical segments to use in the selected 3D rotation object</ahelp>"
+msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_VERTICAL\">Nhập số đoạn thẳng đứng cần dùng để tạo đối tượng xoay 3D đã chọn.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3153626\n"
+"20\n"
+"help.text"
+msgid "Normals"
+msgstr "Pháp tuyến"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3150822\n"
+"21\n"
+"help.text"
+msgid "Allows you to modify the rendering style of the 3D surface."
+msgstr "Cho phép bạn sửa đổi kiểu dáng vẽ của mặt 3D."
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3149046\n"
+"22\n"
+"help.text"
+msgid "Object-Specific"
+msgstr "Đặc trưng cho đối tượng"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3149670\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ\">Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ\">Vẽ mặt 3D tùy theo hình của đối tượng. Thí dụ, hình tròn được vẽ với mặt hình tròn.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3152811\n"
+"help.text"
+msgid "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150865\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150865\">Biểu tượng</alt></image>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3151211\n"
+"24\n"
+"help.text"
+msgid "Object-Specific"
+msgstr "Đặc trưng cho đối tượng"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3153797\n"
+"25\n"
+"help.text"
+msgid "Flat"
+msgstr "Phẳng"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3146874\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT\">Renders the 3D surface as polygons.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT\">Vẽ mặt 3D dưới dạng hình đa giác.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3157962\n"
+"help.text"
+msgid "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3154068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3154068\">Biểu tượng</alt></image>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3145202\n"
+"27\n"
+"help.text"
+msgid "Flat"
+msgstr "Phẳng"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3147228\n"
+"28\n"
+"help.text"
+msgid "Spherical"
+msgstr "Hình cầu"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3150288\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE\">Renders a smooth 3D surface.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE\">Vẽ mặt 3D mịn.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3148923\n"
+"help.text"
+msgid "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149807\">Biểu tượng</alt></image>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3149983\n"
+"30\n"
+"help.text"
+msgid "Spherical"
+msgstr "Hình cầu"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3153056\n"
+"31\n"
+"help.text"
+msgid "Invert Normals"
+msgstr "Đảo pháp tuyến"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3145785\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT\">Inverts the light source.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT\">Đảo ngược nguồn ánh sáng.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3152940\n"
+"help.text"
+msgid "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151116\">Biểu tượng</alt></image>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3156061\n"
+"33\n"
+"help.text"
+msgid "Invert Normals"
+msgstr "Đảo pháp tuyến"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3152417\n"
+"34\n"
+"help.text"
+msgid "Double-sided Illumination"
+msgstr "Chiếu sáng mặt đôi"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3163820\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING\">Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the <emph>Invert Normals</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING\">Chiếu sáng đối tượng từ bên trong và bên ngoài. Để dùng nguồn ánh sáng chung quanh, bật tùy chọn này, sau đó nhấn vào nút <emph>Đảo pháp tuyến</emph>.</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3157309\n"
+"help.text"
+msgid "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Biểu tượng</alt></image>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3154986\n"
+"36\n"
+"help.text"
+msgid "Double-sided illumination"
+msgstr "Chiếu sáng mặt đôi"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"hd_id3153190\n"
+"37\n"
+"help.text"
+msgid "Double-Sided"
+msgstr "Mặt đôi"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3154692\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED\">Closes the shape of a 3D object that was created by extruding a freeform line (<emph>Convert - To 3D</emph>).</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED\">Đóng hình của một đối tượng 3D đã được tạo bằng cách đẩy ra một đường dạng tự do (<emph>Chuyển đổi > Sang 3D</emph>).</ahelp>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3150686\n"
+"help.text"
+msgid "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152460\">Biểu tượng</alt></image>"
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3155307\n"
+"39\n"
+"help.text"
+msgid "Double-Sided"
+msgstr "Mặt đôi"
+
#: 05350300.xhp
msgctxt ""
"05350300.xhp\n"
@@ -34788,1895 +31864,1927 @@ msgctxt ""
msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH\">Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens.</ahelp>"
msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH\">Nhập tiêu cự của máy ảnh, mà giá trị nhỏ tương ứng với ống kính « mắt cá », và giá trị lớn tương ứng với ống kính chụp xa.</ahelp>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
+"05350400.xhp\n"
"tit\n"
"help.text"
-msgid "Menu"
-msgstr "Trình đơn"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"bm_id900601\n"
-"help.text"
-msgid "<bookmark_value>editing;menus</bookmark_value><bookmark_value>customizing;menus</bookmark_value><bookmark_value>menus;customizing</bookmark_value>"
-msgstr "<bookmark_value>chỉnh sửa;trình đơn</bookmark_value><bookmark_value>tùy chỉnh;trình đơn</bookmark_value><bookmark_value>trình đơn;tùy chỉnh</bookmark_value>"
+msgid "Illumination"
+msgstr "Chiếu sáng"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"hd_id3153008\n"
+"05350400.xhp\n"
+"hd_id3151260\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"Menu\">Menu</link>"
-msgstr "<link href=\"text/shared/01/06140100.xhp\" name=\"Trình đơn\">Trình đơn</link>"
+msgid "<link href=\"text/shared/01/05350400.xhp\" name=\"Illumination\">Illumination</link>"
+msgstr "<link href=\"text/shared/01/05350400.xhp\" name=\"Chiếu sáng\">Chiếu sáng</link>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3152952\n"
+"05350400.xhp\n"
+"par_id3149741\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIG_MENU\">Customizes and saves current menu layouts as well as creates new menus. You cannot customize context menus.</ahelp>"
-msgstr "<ahelp hid=\"HID_CONFIG_MENU\">Tùy chỉnh và lưu lại các bố trí trình đơn hiện thời, cũng như tạo trình đơn mới. Không thể tùy chỉnh trình đơn kiểu ngữ cảnh.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT\">Define the light source for the selected 3D object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT\">Xác định nguồn ánh sáng cho đối tượng 3D đã chọn.</ahelp>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3146873\n"
-"72\n"
+"05350400.xhp\n"
+"hd_id3154984\n"
+"4\n"
"help.text"
-msgid "You can add new commands, modify existing commands, or rearrange the menu items."
-msgstr "Bạn có khả năng thêm lệnh mới, sửa đổi lệnh đã tồn tại, hoặc sắp đặt lại các mục trong trình đơn."
+msgid "Illumination"
+msgstr "Chiếu sáng"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1069B\n"
+"05350400.xhp\n"
+"par_id3155391\n"
+"5\n"
"help.text"
-msgid "Menu"
-msgstr "Trình đơn"
+msgid "Specify the light source for the object, as well as the color of the light source and of the ambient light. You can define up to eight different light sources."
+msgstr "Ghi rõ nguồn ánh sáng cho đối tượng, cũng như màu của nguồn ánh sáng và của ánh sáng chung quanh. Bạn có khả năng xác định đến tám nguồn ánh sáng khác nhau."
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1069F\n"
+"05350400.xhp\n"
+"hd_id3153748\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"705498935\">Select the menu and submenu that you want to edit.</ahelp>"
-msgstr "<ahelp hid=\"705498935\">Chọn trình đơn và trình đơn phụ bạn muốn chỉnh sửa.</ahelp>"
+msgid "Light source"
+msgstr "Nguồn sáng"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106B0\n"
+"05350400.xhp\n"
+"par_id3149149\n"
+"7\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8\">Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the <emph>Ambient light</emph> box.</ahelp> You can also press the Spacebar to turn the light source on or off."
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8\">Nhấn chuột hai lần để bật nguồn ánh sáng, sau đó trong danh sách chọn màu cho ánh sáng. Bạn cũng có thể đặt màu của ánh sáng chung quanh, bằng cách chọn màu trong hộp <emph>Sáng chung quanh</emph>.</ahelp> Cũng có thể bấm phím dài để bật/tắt nguồn ánh sáng."
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106B4\n"
+"05350400.xhp\n"
+"par_id3159269\n"
"help.text"
-msgid "<ahelp hid=\"705499960\">Opens the <link href=\"text/shared/01/06140101.xhp\">New Menu</link> dialog where you can enter the name of a new menu as well as select the location for the menu.</ahelp>"
-msgstr "<ahelp hid=\"705499960\">Mở hộp thoại <link href=\"text/shared/01/06140101.xhp\">Trình đơn mới</link> trong đó bạn có thể nhập tên của trình đơn mới, cũng như chọn vị trí cho trình đơn.</ahelp>"
+msgid "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3156155\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3156155\">Biểu tượng</alt></image>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106B7\n"
+"05350400.xhp\n"
+"par_id3154143\n"
+"8\n"
"help.text"
-msgid "Menu"
-msgstr "Trình đơn"
+msgid "Light is on"
+msgstr "Ánh sáng đã mở"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106BB\n"
+"05350400.xhp\n"
+"par_id3155449\n"
"help.text"
-msgid "<ahelp hid=\"705507642\">Opens a submenu with additional commands.</ahelp>"
-msgstr "<ahelp hid=\"705507642\">Mở trình đơn phụ chứa các lệnh bổ sung.</ahelp>"
+msgid "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147573\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147573\">Biểu tượng</alt></image>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106BE\n"
+"05350400.xhp\n"
+"par_id3155829\n"
+"9\n"
"help.text"
-msgid "Move"
-msgstr "Chuyển"
+msgid "Light is off"
+msgstr "Ánh sáng bị đóng"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106C2\n"
+"05350400.xhp\n"
+"hd_id3159166\n"
+"10\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/06140102.xhp\">Move Menu</link> dialog where you can specify the location of the selected menu."
-msgstr "Mở hộp thoại <link href=\"text/shared/01/06140102.xhp\">Chuyển trình đơn</link> trong đó bạn có thể ghi rõ vị trí của trình đơn đã chọn."
+msgid "Color Selection"
+msgstr "Chọn màu"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106C5\n"
+"05350400.xhp\n"
+"par_id3155421\n"
+"11\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_LIGHT_1\">Select a color for the current light source.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_LIGHT_1\">Chọn màu cho nguồn ánh sáng hiện thời.</ahelp>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106C9\n"
+"05350400.xhp\n"
+"hd_id3149955\n"
+"12\n"
"help.text"
-msgid "Opens a dialog where you can change the name of the selected menu."
-msgstr "Mở hộp thoại trong đó bạn có thể thay đổi tên của trình đơn đã chọn."
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color in the color dialog\">Select Color in the color dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu trong Hộp thoại Màu sắc\">Chọn màu trong Hộp thoại Màu sắc</link>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1071C\n"
+"05350400.xhp\n"
+"hd_id3153061\n"
+"13\n"
"help.text"
-msgid "New name"
-msgstr "Tên mới"
+msgid "Ambient light"
+msgstr "Sáng chung quanh"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1071F\n"
+"05350400.xhp\n"
+"hd_id3144511\n"
+"15\n"
"help.text"
-msgid "Enter the new name for the selected menu."
-msgstr "Nhập tên mới cho trình đơn đã chọn."
+msgid "Color Selection"
+msgstr "Chọn màu"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106CC\n"
+"05350400.xhp\n"
+"par_id3153896\n"
+"16\n"
"help.text"
-msgid "To specify the keyboard accelerator for a menu"
-msgstr "Ghi rõ phím tắt cho trình đơn riêng"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT\">Select a color for the ambient light.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT\">Chọn màu cho ánh sáng chung quanh.</ahelp>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108C6\n"
+"05350400.xhp\n"
+"hd_id3149670\n"
+"17\n"
"help.text"
-msgid "A keyboard accelerator allows you to select a menu command when you press Alt+ an underlined letter in a menu command. For example, to select the <emph>Save All</emph> command by pressing Alt+V, enter Sa~ve All."
-msgstr "Phím tắt cho phép bạn chọn lệnh trình đơn bằng cách bấm tổ hợp của phím bổ trợ và chữ. Thí dụ, để chọn lệnh <emph>Lưu tất cả</emph> bằng cách bấm tổ hợp phím <item type=\"keycode\">Alt+T</item>, nhập « Lưu ~tất cả »."
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106D0\n"
+"05350400.xhp\n"
+"hd_id3153961\n"
+"18\n"
"help.text"
-msgid "Select a menu or menu entry."
-msgstr "Chọn một trình đơn hay mục nhập trình đơn."
+msgid "Preview"
+msgstr "Xem thử"
-#: 06140100.xhp
+#: 05350400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108DC\n"
+"05350400.xhp\n"
+"par_id3151056\n"
+"19\n"
"help.text"
-msgid "Click the <emph>Menu</emph> button and select <emph>Rename</emph>."
-msgstr "Nhấn vào cái nút <emph>Trình đơn</emph> và chọn lệnh <emph>Thay tên</emph>."
+msgid "Displays a preview of the light source changes."
+msgstr "Hiển thị ô xem thử khi thay đổi nguồn ánh sáng."
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108E8\n"
+"05350500.xhp\n"
+"tit\n"
"help.text"
-msgid "Add a tilde (~) in front of the letter that you want to use as an accelerator."
-msgstr "Thêm một dấu ngã (~) vào phía trước chữ bạn muốn dùng làm phím tắt."
+msgid "Textures"
+msgstr "Mẫu dát"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106F9\n"
+"05350500.xhp\n"
+"hd_id3150014\n"
+"1\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<link href=\"text/shared/01/05350500.xhp\" name=\"Textures\">Textures</link>"
+msgstr "<link href=\"text/shared/01/05350500.xhp\" name=\"Mẫu dát\">Mẫu dát</link>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106FD\n"
+"05350500.xhp\n"
+"par_id3147000\n"
+"2\n"
"help.text"
-msgid "Deletes the selected menu or menu entry."
-msgstr "Xoá trình đơn hay mục nhập trình đơn đã chọn."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE\">Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface textures to the selected object. To quickly apply a surface texture, open the <emph>Gallery</emph>, hold down Shift+Ctrl (Mac: Shift+Command), and then drag an image onto the selected 3D object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE\">Đặt các thuộc tính về mẫu dát bề mặt cho đối tượng 3D đã chọn. Chỉ dùng được tính năng này khi sử dụng mẫu dát cho đối tượng đã chọn. Để sử dụng nhanh một mẫu dát, mở <emph>Bộ sưu tập</emph>, ấn giữ tổ hợp phím Shift+Ctrl (Mac: Shift+Command), sau đó kéo một hình ảnh vào đối tượng 3D đã chọn.</ahelp>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10910\n"
+"05350500.xhp\n"
+"hd_id3145212\n"
+"4\n"
"help.text"
-msgid "You can only delete custom menus and custom menu entries."
-msgstr "Bạn chỉ có khả năng xoá trình đơn và mục trình đơn kiểu riêng, không phải mục mặc định."
+msgid "Textures"
+msgstr "Mẫu dát"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"hd_id3154408\n"
+"05350500.xhp\n"
+"par_id3159233\n"
"5\n"
"help.text"
-msgid "Entries"
-msgstr "Mục"
+msgid "Sets the texture properties."
+msgstr "Đặt các thuộc tính về mẫu dát."
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3150999\n"
+"05350500.xhp\n"
+"hd_id3156410\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_MENUCONFIG_LISTBOX\">Displays a list of the available menu commands for the selected menu in the current application or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_MENUCONFIG_LISTBOX\">Hiển thị danh sách các lệnh trình đơn cho trình đơn đã chọn đối với ứng dụng hay tài liệu hiện tại.</ahelp>"
+msgid "Type"
+msgstr "Kiểu"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3150838\n"
-"39\n"
+"05350500.xhp\n"
+"par_id3145345\n"
+"7\n"
"help.text"
-msgid "To rearrange the order of menu entries, select an entry, and then click the up or down arrow button."
-msgstr "Để sắp đặt lại thứ tự các mục nhập trình đơn, lựa chọn một mục, sau đó bấm cái nút mũi tên chỉ lên hay xuống."
+msgid "Set the color properties of the texture."
+msgstr "Đặt các thuộc tính về màu của mẫu dát."
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"hd_id3147620\n"
-"63\n"
+"05350500.xhp\n"
+"hd_id3150775\n"
+"8\n"
"help.text"
-msgid "Arrow Up"
-msgstr "Mũi tên chỉ lên"
+msgid "Black & White"
+msgstr "Đen Trắng"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3153585\n"
-"64\n"
+"05350500.xhp\n"
+"par_id3147242\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_UP\">Moves the selected item up one position.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_UP\">Dời mục đã chọn lên một vị trí.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE\">Converts the texture to black and white.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE\">Chuyển đổi hoạ tiết sang màu đen trắng.</ahelp>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3150119\n"
+"05350500.xhp\n"
+"par_id3146773\n"
"help.text"
-msgid "<image id=\"img_id3156192\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3156192\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156192\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3156192\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150084\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150084\">Biểu tượng</alt></image>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3153331\n"
-"65\n"
+"05350500.xhp\n"
+"par_id3156156\n"
+"10\n"
"help.text"
-msgid "Arrow Up"
-msgstr "Mũi tên chỉ lên"
+msgid "Black & White"
+msgstr "Đen Trắng"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"hd_id3155388\n"
-"66\n"
+"05350500.xhp\n"
+"hd_id3150670\n"
+"11\n"
"help.text"
-msgid "Arrow Down"
-msgstr "Mũi tên chỉ xuống"
+msgid "Color"
+msgstr "Màu"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3147335\n"
-"67\n"
+"05350500.xhp\n"
+"par_id3145119\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_DOWN\">Moves the selected item down one position.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_DOWN\">Dời mục đã chọn lên một vị trí.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_COLOR\">Converts the texture to color.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_COLOR\">Chuyển đổi hoạ tiết sang màu sắc (như trái ngược với màu đen trắng).</ahelp>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3148943\n"
+"05350500.xhp\n"
+"par_id3153126\n"
"help.text"
-msgid "<image id=\"img_id3145609\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3145609\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145609\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3145609\">Biểu tượng</alt></image>"
+msgid "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155388\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155388\">Biểu tượng</alt></image>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3149295\n"
-"68\n"
+"05350500.xhp\n"
+"par_id3145316\n"
+"13\n"
"help.text"
-msgid "Arrow Down"
-msgstr "Mũi tên chỉ xuống"
+msgid "Color"
+msgstr "Màu"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN107EA\n"
+"05350500.xhp\n"
+"hd_id3155342\n"
+"14\n"
"help.text"
-msgid "Add Commands"
-msgstr "Thêm lệnh"
+msgid "Mode"
+msgstr "Chế độ"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN107EE\n"
+"05350500.xhp\n"
+"par_id3153827\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
-msgstr ""
+msgid "Show or hide shading."
+msgstr "Hiển thị hay ẩn bóng đổ."
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN40723\n"
+"05350500.xhp\n"
+"hd_id3149191\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
-msgstr ""
+msgid "Only Texture"
+msgstr "Chỉ có hoà tiết"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN107F9\n"
+"05350500.xhp\n"
+"par_id3148564\n"
+"17\n"
"help.text"
-msgid "Command"
-msgstr "Lệnh"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_REPLACE\">Applies the texture without shading.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_REPLACE\">Áp dụng hoạ tiết không đổ bóng.</ahelp>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN107FD\n"
+"05350500.xhp\n"
+"par_id3154280\n"
"help.text"
-msgid "<ahelp hid=\"705507646\">Opens a menu that contains additional commands.</ahelp>"
-msgstr "<ahelp hid=\"705507646\">Mở trình đơn chứa các lệnh bổ sung.</ahelp>"
+msgid "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149045\">Biểu tượng</alt></image>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10800\n"
+"05350500.xhp\n"
+"par_id3156435\n"
+"18\n"
"help.text"
-msgid "Add Submenu"
-msgstr "Thêm trình đơn phụ"
+msgid "Only Texture"
+msgstr "Chỉ có hoà tiết"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10804\n"
+"05350500.xhp\n"
+"hd_id3150541\n"
+"19\n"
"help.text"
-msgid "Opens the Add Submenu dialog, where you enter the name of a submenu."
-msgstr "Mở hộp thoại <emph>Thêm trình đơn phụ</emph>, vào đó bạn nhập tên của trình đơn."
+msgid "Texture and Shading"
+msgstr "Hoà tiết và Đổ bóng"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10807\n"
+"05350500.xhp\n"
+"par_id3154938\n"
+"20\n"
"help.text"
-msgid "Begin Group"
-msgstr "Bắt đầu nhóm"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE\">Applies the texture with shading. To define the shading options for the texture, click the <emph>Shading</emph> button in this dialog.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE\">Áp dụng hoạ tiết đổ bóng. Để xác định các tùy chọn về đổ bóng cho hoạ tiết, nhấn vào nút <emph>Đổ bóng</emph> trong hộp thoại này.</ahelp>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1080B\n"
+"05350500.xhp\n"
+"par_id3150742\n"
"help.text"
-msgid "Inserts a separator line under the current menu entry."
-msgstr "Chèn đường phân cách vào bên dưới mục nhập trình đơn hiện thời."
+msgid "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152803\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152803\">Biểu tượng</alt></image>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1080E\n"
+"05350500.xhp\n"
+"par_id3145419\n"
+"21\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "Texture and Shading"
+msgstr "Hoà tiết và Đổ bóng"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10812\n"
+"05350500.xhp\n"
+"hd_id3148672\n"
+"22\n"
"help.text"
-msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
-msgstr "Mở hộp thoại <emph>Thay tên</emph>, vào đó bạn nhập tên mới cho lệnh đã chọn."
+msgid "Projection X"
+msgstr "Hình chiếu X"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108CA\n"
+"05350500.xhp\n"
+"par_id3148677\n"
+"23\n"
"help.text"
-msgid "New name"
-msgstr "Tên mới"
+msgid "Set the options for displaying the texture."
+msgstr "Đặt các tùy chọn về chức năng hiển thị hoạ tiết."
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108CD\n"
+"05350500.xhp\n"
+"hd_id3148453\n"
+"24\n"
"help.text"
-msgid "Enter the new name for the selected command."
-msgstr "Nhập tên mới cho lệnh đã chọn."
+msgid "Object-specific"
+msgstr "Đặc trưng cho đối tượng"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10824\n"
+"05350500.xhp\n"
+"par_id3144432\n"
+"25\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X\">Tự động điều chỉnh hoạ tiết dựa vào hình và kích cỡ của đối tượng.</ahelp>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10828\n"
+"05350500.xhp\n"
+"par_id3155103\n"
"help.text"
-msgid "Deletes the selected command."
-msgstr "Xoá lệnh đã chọn."
+msgid "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3148920\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3148920\">Biểu tượng</alt></image>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10918\n"
+"05350500.xhp\n"
+"par_id3155133\n"
+"26\n"
"help.text"
-msgid "Save In"
-msgstr "Lưu vào"
+msgid "Object-specific"
+msgstr "Đặc trưng cho đối tượng"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1091C\n"
+"05350500.xhp\n"
+"hd_id3147300\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"705498948\">Select the application or open document where you want to add the menu.</ahelp> A separate menu configuration is saved for the item that you select."
-msgstr "<ahelp hid=\"705498948\">Chọn ứng dụng hay tài liệu còn mở vào đó bạn muốn thêm trình đơn.</ahelp> Một cấu hình trình đơn riêng được lưu cho mục bạn chọn."
+msgid "Parallel"
+msgstr "Song song"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10AFB\n"
+"05350500.xhp\n"
+"par_id3153768\n"
+"28\n"
"help.text"
-msgid "To edit a menu configuration that is associated with an item in the list, select the item, make the changes that you want, and then click the <emph>OK</emph> button."
-msgstr "Để chỉnh sửa một cấu hình trình đơn mà liên quan đến mục trong danh sách, lựa chọn mục, làm các thay đổi thích hợp, sau đó nhấn vào nút <emph>OK</emph>."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X\">Applies the texture parallel to the horizontal axis.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X\">Áp dụng hoạ tiết song song với trục nằm ngang.</ahelp>"
-#: 06140100.xhp
+#: 05350500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10922\n"
+"05350500.xhp\n"
+"par_id3148977\n"
"help.text"
-msgid "You cannot load a menu configuration from one location and save the configuration to another location."
-msgstr "Tuy nhiên, không thể nạp cấu hình trình đơn từ vị trí này và lưu nó vào vị trí khác."
+msgid "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147478\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147478\">Biểu tượng</alt></image>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"tit\n"
+"05350500.xhp\n"
+"par_id3147579\n"
+"29\n"
"help.text"
-msgid "Change Case"
-msgstr "Đổi chữ hoa/thường"
+msgid "Parallel"
+msgstr "Song song"
-#: 05050000.xhp
-#, fuzzy
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3152952\n"
-"1\n"
+"05350500.xhp\n"
+"hd_id3148577\n"
+"30\n"
"help.text"
-msgid "<link href=\"text/shared/01/05050000.xhp\" name=\"Change Case\">Change Case</link>"
-msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Thay đổi\">Thay đổi</link>"
+msgid "Circular"
+msgstr "Hình tròn"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3151299\n"
-"2\n"
+"05350500.xhp\n"
+"par_id3152418\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the case of characters in the selection. If the cursor is within a word and no text is selected, then the word is the selection.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X\">Wraps the horizontal axis of the texture pattern around a sphere.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X\">Cuộn trục nằm ngang của mẫu hoạ tiết vòng quanh hình cầu.</ahelp>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147572\n"
-"5\n"
+"05350500.xhp\n"
+"par_id3154013\n"
"help.text"
-msgid "Sentence case"
-msgstr ""
+msgid "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153943\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153943\">Biểu tượng</alt></image>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150694\n"
-"6\n"
+"05350500.xhp\n"
+"par_id3156006\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the first letter of the selected western characters to an uppercase character.</ahelp>"
-msgstr ""
+msgid "Circular"
+msgstr "Hình tròn"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147571\n"
-"5\n"
+"05350500.xhp\n"
+"hd_id3154129\n"
+"33\n"
"help.text"
-msgid "lowercase"
-msgstr "Chữ thường"
+msgid "Projection Y"
+msgstr "Hình chiếu Y"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150693\n"
-"6\n"
+"05350500.xhp\n"
+"par_id3152878\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected western characters to lowercase characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToLower\">Chuyển đổi sang chữ thường các ký tự đã chọn (bảng chữ cái).</ahelp>"
+msgid "Click the respective buttons to define the texture for the object Y axis."
+msgstr "Bật các tùy chọn thích hợp để xác định hoạ tiết cho trục Y của đối tượng."
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147143\n"
-"3\n"
+"05350500.xhp\n"
+"hd_id3154693\n"
+"35\n"
"help.text"
-msgid "UPPERCASE"
-msgstr ""
+msgid "Object-specific"
+msgstr "Đặc trưng cho đối tượng"
-#: 05050000.xhp
-#, fuzzy
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3152372\n"
-"4\n"
+"05350500.xhp\n"
+"par_id3153095\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected western characters to uppercase characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToLower\">Chuyển đổi sang chữ thường các ký tự đã chọn (bảng chữ cái).</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y\">Tự động điều chỉnh hoạ tiết dựa vào hình và kích cỡ của đối tượng.</ahelp>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147511\n"
-"5\n"
+"05350500.xhp\n"
+"par_id3153210\n"
"help.text"
-msgid "Capitalize Every Word"
-msgstr ""
+msgid "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3153188\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3153188\">Biểu tượng</alt></image>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150613\n"
-"6\n"
+"05350500.xhp\n"
+"par_id3147435\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp>"
-msgstr ""
+msgid "Object-specific"
+msgstr "Đặc trưng cho đối tượng"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147521\n"
-"5\n"
+"05350500.xhp\n"
+"hd_id3148775\n"
+"38\n"
"help.text"
-msgid "tOGGLE cASE"
-msgstr ""
+msgid "Parallel"
+msgstr "Song song"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150623\n"
-"6\n"
+"05350500.xhp\n"
+"par_id3145730\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Toggles case of all selected western characters.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_Y\">Applies the texture parallel to the vertical axis.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_Y\">Áp dụng hoạ tiết song song với trục thẳng đứng.</ahelp>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155392\n"
-"7\n"
+"05350500.xhp\n"
+"par_id3147485\n"
"help.text"
-msgid "Half-width"
-msgstr "Nửa rộng"
+msgid "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151280\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151280\">Biểu tượng</alt></image>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3147088\n"
-"8\n"
+"05350500.xhp\n"
+"par_id3156737\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Chuyển đổi sang ký tự nửa rộng các ký tự đã chọn (chữ viết ghi ý).</ahelp>"
+msgid "Parallel"
+msgstr "Song song"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3156113\n"
-"9\n"
+"05350500.xhp\n"
+"hd_id3149377\n"
+"41\n"
"help.text"
-msgid "Full Width"
-msgstr "Toàn rộng"
+msgid "Circular"
+msgstr "Hình tròn"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3154749\n"
-"10\n"
+"05350500.xhp\n"
+"par_id3159348\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full width characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Chuyển đổi sang ký tự toàn rộng các ký tự đã chọn (chữ viết ghi ý).</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y\">Wraps the vertical axis of the texture pattern around a sphere.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y\">Cuộn trục thẳng đứng của mẫu hoạ tiết vòng quanh hình cầu.</ahelp>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3152996\n"
-"11\n"
+"05350500.xhp\n"
+"par_id3157876\n"
"help.text"
-msgid "Hiragana"
-msgstr "Hiragana"
+msgid "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Biểu tượng</alt></image>"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3156156\n"
-"12\n"
+"05350500.xhp\n"
+"par_id3151173\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToHiragana\">Chuyển đổi sang ký tự Hiragana các ký tự đã chọn (tiếng Nhật).</ahelp>"
+msgid "Circular"
+msgstr "Hình tròn"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3154173\n"
-"13\n"
+"05350500.xhp\n"
+"hd_id3149581\n"
+"44\n"
"help.text"
-msgid "Katakana"
-msgstr "Katakana"
+msgid "Filter"
+msgstr "Lọc"
-#: 05050000.xhp
+#: 05350500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3146137\n"
-"14\n"
+"05350500.xhp\n"
+"par_id3148456\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToKatakana\">Chuyển đổi sang ký tự Katakana các ký tự đã chọn (tiếng Nhật).</ahelp>"
+msgid "Filters out some of the 'noise' that can occur when you apply a texture to a 3D object."
+msgstr "Lọc ra một phần « nhiễu » có thê xảy ra khi bạn áp dụng hoạ tiết cho đối tượng 3D."
-#: 05030300.xhp
+#: 05350500.xhp
msgctxt ""
-"05030300.xhp\n"
-"tit\n"
+"05350500.xhp\n"
+"hd_id3151319\n"
+"46\n"
"help.text"
-msgid "Tabs"
-msgstr "Tab"
+msgid "Filtering On/Off"
+msgstr "Bật/tắt lọc"
-#: 05030300.xhp
+#: 05350500.xhp
msgctxt ""
-"05030300.xhp\n"
-"bm_id3156027\n"
+"05350500.xhp\n"
+"par_id3151038\n"
+"47\n"
"help.text"
-msgid "<bookmark_value>formats; tabulators</bookmark_value><bookmark_value>fill characters with tabulators</bookmark_value><bookmark_value>tab stops;settings</bookmark_value>"
-msgstr "<bookmark_value>định dạng; cột tab</bookmark_value><bookmark_value>ký tự điền vào có khoảng tab</bookmark_value><bookmark_value>vị trí tab;thiết lập</bookmark_value>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_FILTER\">Blurs the texture slightly to remove unwanted speckles.</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_FILTER\">Che mờ hoạ tiết một ít để gỡ bỏ lốm đốm không đẹp.</ahelp>"
-#: 05030300.xhp
+#: 05350500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"05350500.xhp\n"
+"par_id3145651\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030300.xhp\" name=\"Tabs\">Tabs</link>"
-msgstr "<link href=\"text/shared/01/05030300.xhp\" name=\"Tab\">Tab</link>"
+msgid "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Biểu tượng</alt></image>"
-#: 05030300.xhp
+#: 05350500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153577\n"
-"2\n"
+"05350500.xhp\n"
+"par_id3146900\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABULATOR\">Set the position of a tab stop in a paragraph.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABULATOR\">Đặt vị trí của cột tab trong đoạn văn.</ahelp>"
+msgid "Filtering On/Off"
+msgstr "Bật/tắt lọc"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3147653\n"
-"40\n"
+"05350600.xhp\n"
+"tit\n"
"help.text"
-msgid "If you want, you can also use the ruler to set the tab positions."
-msgstr "Bạn cũng có thể đặt vị trí tab trên thước đo."
+msgid "Material"
+msgstr "Nguyên liệu"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3154897\n"
-"3\n"
+"05350600.xhp\n"
+"hd_id3154349\n"
+"1\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "<link href=\"text/shared/01/05350600.xhp\" name=\"Material\">Material</link>"
+msgstr "<link href=\"text/shared/01/05350600.xhp\" name=\"Nguyên liệu\">Nguyên liệu</link>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153331\n"
+"05350600.xhp\n"
+"par_id3160463\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXFLOAT_3D_BTN_MATERIAL\">Changes the coloring of the selected 3D object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXFLOAT_3D_BTN_MATERIAL\">Thay đổi màu sắc của đối tượng 3D đã chọn.</ahelp>"
+
+#: 05350600.xhp
+msgctxt ""
+"05350600.xhp\n"
+"hd_id3154682\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICBOX:RID_SVXPAGE_TABULATOR:ED_TABPOS\">Select a tab stop type, enter a new measurement, and then click <emph>New</emph>. If you want, you can also specify the measurement units to use for the tab (cm for centimeter, or \" for inches). Existing tabs to the left of the first tab that you set are removed.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICBOX:RID_SVXPAGE_TABULATOR:ED_TABPOS\">Chọn một vị trí tab, nhập số lượng mới, sau đó nhấn vào nút <emph>Mới</emph>. Bạn cũng có thể ghi rõ đơn vị đo cần dùng cho khoảng tab (cm là xenti-mét, \" là insơ). Vị trí tab nào đã tồn tại bên trái vị trí tab bạn tạo thì bị gỡ bỏ.</ahelp>"
+msgid "Material"
+msgstr "Nguyên liệu"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3155180\n"
+"05350600.xhp\n"
+"par_id3152363\n"
+"29\n"
+"help.text"
+msgid "Assigns a predefined color scheme or lets you create your own color scheme."
+msgstr "Gán một lược đồ màu đã xác định sẵn, hoặc cho phép bạn tạo một lược đồ màu riêng."
+
+#: 05350600.xhp
+msgctxt ""
+"05350600.xhp\n"
+"hd_id3154497\n"
"9\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "Favorites"
+msgstr "Ưa thích"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3149514\n"
+"05350600.xhp\n"
+"par_id3153303\n"
"10\n"
"help.text"
-msgid "Select the type of tab stop that you want to modify."
-msgstr "Chọn kiểu vị trí tab bạn muốn sửa đổi."
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_FAVORITES\">Select a predefined color scheme, or select <emph>User-defined</emph> to define a custom color scheme.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_FAVORITES\">Chọn một lược đồ màu đã xác định sẵn, hoặc chọn mục <emph>Tự xác định</emph> để thiết kế một lược đồ màu riêng.</ahelp>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3157910\n"
-"11\n"
+"05350600.xhp\n"
+"hd_id3093440\n"
+"16\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "Object color"
+msgstr "Màu đối tượng"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3146847\n"
-"41\n"
+"05350600.xhp\n"
+"par_id3157896\n"
+"17\n"
"help.text"
-msgid "The name of this tab stop is <emph>Left/Top</emph> if Asian language support is enabled."
-msgstr "Tên của vị trí tab này là <emph>Trái/Trên</emph> nếu hỗ trợ ngôn ngữ Châu Á đã được hiệu lực."
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_COLOR\">Select the color that you want to apply to the object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_COLOR\">Chọn màu bạn muốn áp dụng cho đối tượng.</ahelp>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153698\n"
-"12\n"
+"05350600.xhp\n"
+"hd_id3147373\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT\">Aligns the left edge of the text to the tab stop and extends the text to the right.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT\">Chỉnh canh cạnh bên trái của văn bản theo cột tab, sau đó mở rộng văn bản qua bên phải.</ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3149763\n"
-"13\n"
+"05350600.xhp\n"
+"hd_id3147571\n"
+"19\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "Illumination color"
+msgstr "Màu chiếu sáng"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3148491\n"
-"42\n"
+"05350600.xhp\n"
+"par_id3159234\n"
+"20\n"
"help.text"
-msgid "This name of this tab stop is <emph>Right/Bottom</emph> if Asian language support is enabled."
-msgstr "Tên của vị trí tab này là <emph>Bên phải/dưới</emph> nếu hỗ trợ ngôn ngữ Châu Á đã được hiệu lực."
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_EMISSION\">Select the color to illuminate the object.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_EMISSION\">Chọn màu để chiếu sáng đối tượng.</ahelp>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3151384\n"
-"14\n"
+"05350600.xhp\n"
+"hd_id3153748\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT\">Aligns the right edge of the text to the tab stop and extends the text to the left of the tab stop.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT\">Chỉnh canh cạnh bên phải của văn bản theo cột tab, sau đó mở rộng văn bản qua bên trái.</ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3153628\n"
-"15\n"
+"05350600.xhp\n"
+"hd_id3154983\n"
+"22\n"
"help.text"
-msgid "Center"
-msgstr "Giữa"
+msgid "Specular"
+msgstr "Long lanh"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3154347\n"
-"16\n"
+"05350600.xhp\n"
+"par_id3147008\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER\">Aligns the center of the text to the tab stop.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER\">Chỉnh canh điểm giữa của văn bản theo cột tab.</ahelp>"
+msgid "Sets the light reflection properties for the selected object."
+msgstr "Đặt các thuộc tính về chức năng phản chiếu ánh sáng cho đối tượng đã chọn."
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3148552\n"
-"17\n"
+"05350600.xhp\n"
+"hd_id3150355\n"
+"24\n"
"help.text"
-msgid "Decimal"
-msgstr "Thập phân"
+msgid "Color"
+msgstr "Màu"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3144422\n"
-"18\n"
+"05350600.xhp\n"
+"par_id3151111\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL\">Aligns the decimal point of a number to the center of the tab stop and text to the left of the tab.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL\">Chỉnh canh dấu thập phân của con số theo điểm giữa của khoảng tab và văn bản bên trái.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_SPECULAR\">Select the color that you want the object to reflect.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_SPECULAR\">Chọn màu bạn muốn đối tượng phản chiếu.</ahelp>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3154388\n"
-"19\n"
+"05350600.xhp\n"
+"hd_id3152996\n"
+"26\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The character that is used as a decimal separator depends on the regional setting of your operating system. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Ký tự dùng làm dấu tách thập phân thì phụ thuộc vào miền địa phương của hệ điều hành. </caseinline></switchinline>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Chọn màu thông qua Hộp thoại Màu sắc\">Chọn màu thông qua Hộp thoại Màu sắc</link>"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3153380\n"
-"20\n"
+"05350600.xhp\n"
+"hd_id3152909\n"
+"27\n"
"help.text"
-msgid "Character"
-msgstr "Ký tự"
+msgid "Intensity"
+msgstr "Cường độ"
-#: 05030300.xhp
+#: 05350600.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153778\n"
-"21\n"
+"05350600.xhp\n"
+"par_id3159256\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR\">Enter a character that you want the decimal tab to use as a decimal separator.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR\">Nhập ký tự bạn muốn dùng làm dấu tách thập phân.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXFLOAT_3D_MTR_MAT_SPECULAR_INTENSITY\">Enter the intensity of the specular effect.</ahelp>"
+msgstr "<ahelp hid=\"SVX_METRICFIELD_RID_SVXFLOAT_3D_MTR_MAT_SPECULAR_INTENSITY\">Nhập cường độ của hiệu ứng long lanh.</ahelp>"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3159151\n"
-"22\n"
+"05360000.xhp\n"
+"tit\n"
"help.text"
-msgid "Fill Character"
-msgstr "Ký tự tô đầy"
+msgid "Distribution"
+msgstr "Phân phối"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3154153\n"
-"23\n"
+"05360000.xhp\n"
+"hd_id3154812\n"
+"1\n"
"help.text"
-msgid "Specify the characters to use as leader to the left of the tab stop."
-msgstr "Ghi rõ các ký tự cần dùng để dẫn tới bên trái vị trí tab."
+msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
+msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Phân phối\">Phân phối</link>"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3144760\n"
-"24\n"
+"05360000.xhp\n"
+"par_id3149119\n"
+"2\n"
"help.text"
-msgid "None"
-msgstr "Không có"
+msgid "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp></variable>"
+msgstr "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Phân phối ba hoặc hơn nữa đối tượng đã chọn một cách đều đều theo trục nằm ngang hay trục thẳng đứng. Bạn cũng có thể phân phối đều đều khoảng cách giữa các đối tượng khác nhau.</ahelp></variable>"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3143231\n"
-"25\n"
+"05360000.xhp\n"
+"par_id3145383\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO\">Inserts no fill characters, or removes existing fill characters to the left of the tab stop.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO\">Không chèn ký tự tô đầy.</ahelp>"
+msgid "Objects are distributed with respect to the outermost objects in the selection."
+msgstr "Các đối tượng được phân phối tương ứng với các đối tượng ngoài cùng trong vùng chọn."
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3152933\n"
-"26\n"
+"05360000.xhp\n"
+"hd_id3149811\n"
+"4\n"
"help.text"
-msgid "......."
-msgstr "......."
+msgid "Horizontally"
+msgstr "Theo chiều ngang"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153192\n"
-"27\n"
+"05360000.xhp\n"
+"par_id3150355\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS\">Fills the empty space to the left of the tab stop with dots.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS\">Tô đầy bằng dấu chấm vùng rỗng bên trái vị trí tab.</ahelp>"
+msgid "Specify the horizontal distribution for the selected objects."
+msgstr "Ghi rõ sự phân phối theo chiều ngang cho các đối tượng đã chọn."
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3156280\n"
-"28\n"
+"05360000.xhp\n"
+"hd_id3149276\n"
+"6\n"
"help.text"
-msgid "------"
-msgstr "------"
+msgid "None"
+msgstr "Không có"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3156212\n"
-"29\n"
+"05360000.xhp\n"
+"par_id3147618\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE\">Fills the empty space to the left of the tab stop with dashes.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE\">Tô đầy bằng dấu gạch vùng rỗng bên trái vị trí tab.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE\">Does not distribute the objects horizontally.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE\">Không phân phối các đối tượng theo chiều ngang.</ahelp>"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3157960\n"
-"30\n"
+"05360000.xhp\n"
+"hd_id3148990\n"
+"8\n"
"help.text"
-msgid "______"
-msgstr "______"
+msgid "Left"
+msgstr "Trái"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3151043\n"
-"31\n"
+"05360000.xhp\n"
+"par_id3159269\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE\">Draws a line to fill the empty space to the left of the tab stop.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE\">Vẽ một đường thẳng để tô đầy vùng rỗng bên tái vị trí tab.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT\">Distributes the selected objects, so that the left edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT\">Phân phối các đối tượng đã chọn, để mà các cạnh bên trái của các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3153770\n"
-"32\n"
+"05360000.xhp\n"
+"hd_id3150130\n"
+"10\n"
"help.text"
-msgid "Character"
-msgstr "Ký tự"
+msgid "Center"
+msgstr "Giữa"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3150441\n"
-"33\n"
+"05360000.xhp\n"
+"par_id3153146\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER\">Allows you to specify a character to fill the empty space to the left of the tab stop.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER\">Cho phép bạn ghi rõ một ký tự cần dùng để tô đầy vùng rỗng bên trái vị trí tab.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER\">Distributes the selected objects, so that the horizontal centers of the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER\">Phân phối các đối tượng đã chọn, để mà các trung tâm nằm ngang của các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3152596\n"
-"36\n"
+"05360000.xhp\n"
+"hd_id3147574\n"
+"12\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "Spacing"
+msgstr "Giãn cách"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3163717\n"
-"37\n"
+"05360000.xhp\n"
+"par_id3148924\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_NEW\">Adds the tab stop that you defined to the current paragraph.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_NEW\">Thêm vào đoạn văn hiện tại vị trí tab bạn ghi rõ.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE\">Distributes the selected objects horizontally, so that the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE\">Phân phối theo chiều ngang các đối tượng đã chọn, để mà các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3153945\n"
-"38\n"
+"05360000.xhp\n"
+"hd_id3155390\n"
+"14\n"
"help.text"
-msgid "Clear All"
-msgstr "Gột tất cả"
+msgid "Right"
+msgstr "Phải"
-#: 05030300.xhp
+#: 05360000.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3145660\n"
-"39\n"
+"05360000.xhp\n"
+"par_id3153252\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_DELALL\">Removes all of the tab stops that you defined under <emph>Position</emph>. Sets <emph>Left</emph> tab stops at regular intervals as the default tab stops.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_DELALL\">Gỡ bỏ mọi vị trí tab bạn đã xác định dưới mục <emph>Vị trí</emph>. Đặt thành cột tab mặc định vị trí tab bên <emph>Trái</emph> sau mỗi khoảng.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT\">Distributes the selected objects, so that the right edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT\">Phân phối các đối tượng đã chọn, để mà các cạnh bên phải của các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: 02200000.xhp
+#: 05360000.xhp
msgctxt ""
-"02200000.xhp\n"
-"tit\n"
+"05360000.xhp\n"
+"hd_id3150245\n"
+"16\n"
"help.text"
-msgid "Object"
-msgstr "Đối tượng"
+msgid "Vertically"
+msgstr "Nằm dọc"
-#: 02200000.xhp
+#: 05360000.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3146959\n"
-"1\n"
+"05360000.xhp\n"
+"par_id3155321\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Đối tượng\">Đối tượng</link>"
+msgid "Specify the vertical distribution for the selected objects."
+msgstr "Ghi rõ sự phân phối theo chiều dọc cho các đối tượng đã chọn."
-#: 02200000.xhp
+#: 05360000.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id3154840\n"
-"2\n"
+"05360000.xhp\n"
+"hd_id3148563\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <emph>Insert - Object </emph>command.</ahelp>"
-msgstr "<ahelp hid=\".uno:ObjectMenue\">Trong tập tin, cho phép bạn chỉnh sửa một đối tượng đã chọn mà bạn đã chèn bằng lệnh <emph>Chèn > Đối tượng</emph>.</ahelp>"
+msgid "None"
+msgstr "Không có"
-#: 02200000.xhp
+#: 05360000.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id3153551\n"
+"05360000.xhp\n"
+"par_id3155922\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
-msgstr "<link href=\"text/shared/01/04150000.xhp\" name=\"Chèn > Đối tượng\">Chèn > Đối tượng</link>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE\">Does not distribute the objects vertically.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE\">Không phân phối theo chiều dọc các đối tượng.</ahelp>"
-#: 02200000.xhp
+#: 05360000.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id1717886\n"
+"05360000.xhp\n"
+"hd_id3153626\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the object to the original size.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hoàn nguyên kích cỡ của đối tượng về kích cỡ gốc.</ahelp>"
+msgid "Top"
+msgstr "Trên"
-#: xformsdatachange.xhp
+#: 05360000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"tit\n"
+"05360000.xhp\n"
+"par_id3152361\n"
+"21\n"
"help.text"
-msgid "Change Data Binding"
-msgstr "Đổi tổ hợp dữ liệu"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP\">Distributes the selected objects, so that the top edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP\">Phân phối các đối tượng đã chọn, để mà các cạnh bên trên của các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: xformsdatachange.xhp
+#: 05360000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"bm_id433973\n"
+"05360000.xhp\n"
+"hd_id3147264\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>editing;data binding of XForms</bookmark_value><bookmark_value>data binding change in XForms</bookmark_value>"
-msgstr "<bookmark_value>chỉnh sửa;tổ hợp dữ liệu của biểu mẫu Xform</bookmark_value><bookmark_value>sửa đổi tổ hợp dữ liệu trong biểu mẫu Xform</bookmark_value>"
+msgid "Center"
+msgstr "Giữa"
-#: xformsdatachange.xhp
+#: 05360000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN10547\n"
+"05360000.xhp\n"
+"par_id3161656\n"
+"23\n"
"help.text"
-msgid "Change Data Binding"
-msgstr "Đổi tổ hợp dữ liệu"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER\">Distributes the selected objects, so that the vertical centers of the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER\">Phân phối các đối tượng đã chọn, để mà các trung tâm thẳng đứng của các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: xformsdatachange.xhp
+#: 05360000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN1054B\n"
+"05360000.xhp\n"
+"hd_id3150865\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\">Edit the data binding in the XForms Data Navigator.</ahelp>"
-msgstr "<ahelp hid=\".\">Chỉnh sửa tổ hợp dữ liệu trong Bộ Duyệt Dữ Liệu XForm.</ahelp>"
+msgid "Spacing"
+msgstr "Giãn cách"
-#: xformsdatachange.xhp
+#: 05360000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN1056E\n"
+"05360000.xhp\n"
+"par_id3153360\n"
+"25\n"
"help.text"
-msgid "Model"
-msgstr "Mô hình"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE\">Distributes the selected objects vertically, so that the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE\">Phân phối theo chiều dọc các đối tượng đã chọn, để mà các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: xformsdatachange.xhp
+#: 05360000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN10572\n"
+"05360000.xhp\n"
+"hd_id3154071\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the name of the XForms model.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn tên của mô hình XForm.</ahelp>"
+msgid "Bottom"
+msgstr "Dưới"
-#: xformsdatachange.xhp
+#: 05360000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN10587\n"
+"05360000.xhp\n"
+"par_id3152771\n"
+"27\n"
"help.text"
-msgid "Item list"
-msgstr "Danh sách mục"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM\">Distributes the selected objects, so that the bottom edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM\">Phân phối các đối tượng đã chọn, để mà các cạnh bên dưới của các đối tượng được đặt cách nhau đều đều.</ahelp>"
-#: xformsdatachange.xhp
+#: 05990000.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN1058B\n"
+"05990000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the data binding for the selected form control. To change the data binding, select another item in the list click <emph>OK</emph>. To access the <emph>Add</emph> and <emph>Properties</emph> commands for an item, right-click the item.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị tổ hợp dữ liệu cho điều khiển biểu mẫu đã chọn. Để thay đổi tổ hợp dữ liệu, chọn mục khác trong danh sách, sau đó nhấn vào nút <emph>OK</emph>. Để truy cập đến lênh <emph>Thêm</emph> và <emph>Thuộc tính</emph> đối với mục, nhấn-phải vào mục đó.</ahelp>"
+msgid "Text"
+msgstr "Văn bản"
-#: 05190000.xhp
+#: 05990000.xhp
msgctxt ""
-"05190000.xhp\n"
-"tit\n"
+"05990000.xhp\n"
+"hd_id3155757\n"
+"1\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Văn bản\">Văn bản</link>"
-#: 05190000.xhp
+#: 05990000.xhp
msgctxt ""
-"05190000.xhp\n"
-"bm_id3147366\n"
+"05990000.xhp\n"
+"par_id3150467\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>objects; naming</bookmark_value><bookmark_value>groups;naming</bookmark_value><bookmark_value>names;objects</bookmark_value>"
-msgstr "<bookmark_value>đối tượng; đặt tên</bookmark_value><bookmark_value>nhóm;đặt tên</bookmark_value><bookmark_value>tên;đối tượng</bookmark_value>"
+msgid "<variable id=\"texttext\"><ahelp hid=\".uno:TextAttributes\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp></variable>"
+msgstr "<variable id=\"texttext\"><ahelp hid=\".uno:TextAttributes\">Đặt các thuộc tính về chức năng bố trí và thả neo cho văn bản trên đối tượng kiểu vẽ hay văn bản đã chọn.</ahelp></variable>"
-#: 05190000.xhp
+#: 05990000.xhp
msgctxt ""
-"05190000.xhp\n"
-"hd_id3147366\n"
-"1\n"
+"05990000.xhp\n"
+"par_id3150620\n"
+"3\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "This command is only available for drawing objects that can contain text, for example for rectangles, but not for lines."
+msgstr "Câu lệnh này chỉ sẵn sàng để vẽ đối tượng có thể chứa văn bản, ví dụ hình chữ nhật, không phải đường."
-#: 05190000.xhp
+#: 06010000.xhp
msgctxt ""
-"05190000.xhp\n"
-"par_id3147588\n"
-"2\n"
+"06010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"name\"><ahelp hid=\".uno:RenameObject\">Assigns a name to the selected object, so that you can quickly find the object in the Navigator.</ahelp></variable>"
-msgstr "<variable id=\"name\"><ahelp hid=\".uno:RenameObject\">Gán tên cho đối tượng đã chọn, để bạn tìm nhanh đối tượng trong Bộ điều hướng.</ahelp></variable>"
+msgid "Spelling and Grammar"
+msgstr "Chỉnh tả và Ngữ pháp"
-#: 05190000.xhp
+#: 06010000.xhp
msgctxt ""
-"05190000.xhp\n"
-"par_id3155364\n"
-"7\n"
+"06010000.xhp\n"
+"bm_id3149047\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>The name is also displayed in the Status Bar when you select the object.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Tên cũng được hiển thị trên thanh <emph>Trạng thái</emph> khi bạn chọn đối tượng.</defaultinline></switchinline>"
+msgid "<bookmark_value>dictionaries; spellcheck</bookmark_value> <bookmark_value>spellcheck; dialog</bookmark_value> <bookmark_value>languages; spellcheck</bookmark_value>"
+msgstr "<bookmark_value>từ điển; kiểm tra chính tả</bookmark_value><bookmark_value>kiểm tra chính tả; hộp thoại</bookmark_value><bookmark_value>ngôn ngữ; kiểm tra chính tả</bookmark_value>"
-#: 05190000.xhp
+#: 06010000.xhp
msgctxt ""
-"05190000.xhp\n"
-"hd_id3156027\n"
-"3\n"
+"06010000.xhp\n"
+"hd_id3153882\n"
+"1\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spelling and Grammar</link>"
+msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Kiểm tra chính tả\">Chính tả và Ngữ Pháp</link>"
-#: 05190000.xhp
+#: 06010000.xhp
msgctxt ""
-"05190000.xhp\n"
-"par_id3152924\n"
-"4\n"
+"06010000.xhp\n"
+"par_id3154682\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SD_NAMEDIALOG_OBJECT\">Enter a name for the selected object. The name will be visible in the Navigator.</ahelp>"
-msgstr "<ahelp hid=\"HID_SD_NAMEDIALOG_OBJECT\">Nhập tên cho đối tượng đã chọn. Tên này cũng hiển thị trong Bộ điều hướng.</ahelp>"
+msgid "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors.</ahelp></variable>"
+msgstr "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Kiểm tra các lỗi chính tả trong tài liệu hoặc phần đang được lựa chọn. Nếu có cài phần mở rộng hỗ trợ kiểm tra ngữ pháp thì hộp thoại cũng sẽ cho phép kiểm tra lỗi ngữ pháp.</ahelp></variable>"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"tit\n"
+"06010000.xhp\n"
+"par_idN1064B\n"
"help.text"
-msgid "Password"
-msgstr "Mật khẩu"
+msgid "The spellcheck starts at the current cursor position and advances to the end of the document or selection. You can then choose to continue the spellcheck from the beginning of the document."
+msgstr "Chức năng kiểm tra chính tả bắt đầu ở vị trí con trỏ hiện tại, sau đó tiếp tới kết thúc của tài liệu hay vùng chọn. Lúc đó, bạn có dịp tiếp tục tiến trình kiểm tra chính tả từ đầu của tài liệu."
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3146902\n"
-"63\n"
+"06010000.xhp\n"
+"par_id3166445\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password</link>"
-msgstr "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Mật khẩu\">Mật khẩu</link>"
+msgid "Spellcheck looks for misspelled words and gives you the option of adding an unknown word to a user dictionary. When the first misspelled word is found, the <emph>Spellcheck</emph> dialog opens."
+msgstr "Chức năng kiểm tra chính tả tìm từ sai chính tả, và cho bạn có dịp thêm từ mới vào từ điển. Khi tìm được từ sai chính tả thứ nhất, hộp thoại <emph>Kiểm tra chính tả</emph> tự mở."
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3154350\n"
-"64\n"
+"06010000.xhp\n"
+"par_id1022200801300654\n"
"help.text"
-msgid "Assigns a password to prevent users from making unauthorized changes."
-msgstr "Gán một mật khẩu để ngăn cản người khác làm thay đổi không được phép."
+msgid "If a grammar checking extension is installed, this dialog is called <emph>Spelling and Grammar</emph>. Spelling errors are underlined in red, grammar errors in blue. First the dialog presents all spelling errors, then all grammar errors."
+msgstr "Nếu như có phần mở rộng kiểm tra ngữ pháp, hộp thoại này sẽ có tên <emph>Chính tả và Ngữ pháp</emph>. Những lỗi sai chính tả sẽ được gạch chân màu đỏ, sai ngữ pháp sẽ có màu xanh. Trước hết hộp thoại sẽ hiển thị những lỗi sai chính tả, rồi sau đó là lỗi ngữ pháp."
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id31222\n"
+"06010000.xhp\n"
+"par_id1022200801354366\n"
"help.text"
-msgid "The open password must be entered to open the file."
-msgstr ""
+msgid "<ahelp hid=\".\">Enable <emph>Check grammar</emph> to work first on all spellcheck errors, then on all grammar errors.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn <emph>Kiểm tra ngữ pháp</emph> để sửa hết các lỗi chính tả, rồi sau đó là các lỗi ngữ pháp.</ahelp>"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id313339\n"
+"06010000.xhp\n"
+"hd_id3149511\n"
+"6\n"
"help.text"
-msgid "The permission password must be entered to edit the document."
-msgstr ""
+msgid "Not in dictionary"
+msgstr "Không phải trong từ điển"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3146857\n"
-"65\n"
+"06010000.xhp\n"
+"par_id3149798\n"
+"7\n"
"help.text"
-msgid "Password"
-msgstr "Mật khẩu"
+msgid "<ahelp hid=\".\">Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị câu chứa từ sai chính tả được tô sáng. Hãy sửa từ, hoặc nhấn vào một của những từ góp ý trong hộp văn bản bên dưới.</ahelp>"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3150502\n"
-"62\n"
+"06010000.xhp\n"
+"hd_id3149885\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_PASSWD_TABLE\">Type a password. A password is case sensitive.</ahelp>"
-msgstr "<ahelp hid=\"HID_PASSWD_TABLE\">Nhập một mật khẩu.Mật khẩu phân biệt chữ hoa/thường.</ahelp>"
+msgid "Suggestions"
+msgstr "Góp ý"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3153029\n"
-"66\n"
+"06010000.xhp\n"
+"par_id3155628\n"
+"11\n"
"help.text"
-msgid "Confirm"
-msgstr "Xác nhận"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_NEWWORD\">Lists suggested words to replace the misspelled word. Select the word that you want to use, and then click <emph>Change</emph> or <emph>Change All</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_NEWWORD\">Liệt kê các từ đã gợi ý để thay thế từ sai chính tả. Chọn từ thích hợp, sau đó nhấn vào nút <emph>Đổi</emph> hay <emph>Đổi tất cả</emph>.</ahelp>"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3151100\n"
-"67\n"
+"06010000.xhp\n"
+"hd_id3145087\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
-msgstr ""
+msgid "Text Language"
+msgstr "Ngôn ngữ của văn bản"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3155351\n"
-"68\n"
+"06010000.xhp\n"
+"par_id3144422\n"
+"13\n"
"help.text"
-msgid "Undoing password protection"
-msgstr "Hủy bước bảo vệ bằng mật khẩu"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_LANGUAGE\">Specifies the language to use to check the spelling.</ahelp>"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_LANGUAGE\">Ghi rõ ngôn ngữ cần dùng để kiểm tra chính tả.</ahelp>"
-#: password_dlg.xhp
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3146109\n"
-"69\n"
+"06010000.xhp\n"
+"hd_id3154071\n"
+"52\n"
"help.text"
-msgid "To remove a password, open the document, then save without password."
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoCorrect</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động Sửa lỗi </caseinline></switchinline>"
-#: password_dlg.xhp
-#, fuzzy
+#: 06010000.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id31323250502\n"
+"06010000.xhp\n"
+"par_id3153798\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to show or hide the file sharing password options.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật tùy chọn này để hiển thị hoặc ẩn phần Chân Nhóm.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_AUTOCORR\">Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacements table.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_AUTOCORR\">Thêm vào bảng thay thế Tự động Sửa lỗi tổ hợp hiện thời của từ sai chính tả và từ thay thế.</ahelp></caseinline></switchinline>"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"tit\n"
+"06010000.xhp\n"
+"hd_id3151382\n"
+"56\n"
"help.text"
-msgid "Macro"
-msgstr "Vĩ lệnh"
+msgid "Options"
+msgstr "Tùy chọn"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3157552\n"
-"1\n"
+"06010000.xhp\n"
+"par_id3154123\n"
+"57\n"
"help.text"
-msgid "Macro"
-msgstr "Vĩ lệnh"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_OPTIONS\">Opens a dialog, where you can select the user-defined dictionaries, and set the rules for the spellchecking.</ahelp>"
+msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_OPTIONS\">Mở hộp thoại trong đó bạn có thể chọn những từ điển tự xác định, và đặt các quy tắc kiểm tra chính tả.</ahelp>"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3148765\n"
-"2\n"
+"06010000.xhp\n"
+"hd_id3153353\n"
+"24\n"
"help.text"
-msgid "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">Opens a dialog to organize macros.</ahelp></variable>"
-msgstr "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">Mở một hộp thoại để tổ chức các vĩ lệnh.</ahelp></variable>"
+msgid "Add"
+msgstr "Thêm"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3154863\n"
-"3\n"
+"06010000.xhp\n"
+"par_id3144432\n"
+"25\n"
"help.text"
-msgid "Macro name"
-msgstr "Tên vĩ lệnh"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_ADD\">Adds the unknown word to a user-defined dictionary.</ahelp>"
+msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_ADD\">Thêm từ mới vào từ điển tự xác định.</ahelp>"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150040\n"
-"4\n"
+"06010000.xhp\n"
+"hd_id3155994\n"
+"22\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 ""
+msgid "Ignore Once"
+msgstr "Bỏ qua một lần"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150902\n"
-"6\n"
+"06010000.xhp\n"
+"par_id3148920\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the macros that are contained in the module selected in the <emph>Macro from </emph>list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Liệt kê các vĩ lệnh nằm trong mô-đun được chọn trong danh sách <emph>Vĩ lệnh từ</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNORE\">Skips the unknown word and continues with the spellcheck.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNORE\">Bỏ qua từ lạ này và tiếp tục kiểm tra chính tả.</ahelp>"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3153750\n"
-"7\n"
+"06010000.xhp\n"
+"par_idN107CB\n"
"help.text"
-msgid "Macro from / Save macro in"
-msgstr "Vĩ lệnh từ / Lưu vĩ lệnh vào"
+msgid "This label of this button changes to <emph>Resume</emph> if you leave the Spellcheck dialog open when you return to your document. To continue the spellcheck from the current position of the cursor, click <emph>Resume</emph>."
+msgstr "Nếu hộp thoại kiểm tra chính tả còn mở khi bạn trở về tài liệu, nhãn nút này thì trờ thành <emph>Tiếp tục</emph>. Để tiếp tục tiến trình kiểm tra chính tả từ vị trí con trỏ hiện tại, nhấn vào <emph>Tiếp tục</emph>."
-#: 06130000.xhp
-#, fuzzy
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153394\n"
-"8\n"
+"06010000.xhp\n"
+"par_id1024200804091149\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=\"HID_BASICIDE_LIBS\">Liệt kê các thư viện và mô-đun nơi bạn có thể mở hay lưu vĩ lệnh. Để lưu vĩ lệnh cùng với một tài liệu nào đó, mở tài liệu rồi mở hộp thoại này.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Khi đang tìm lỗi ngữ pháp, nhấn vào nút Bỏ qua điều luật để bỏ qua luật chính tả mà đang được coi là bị vi phạm.</ahelp>"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3147373\n"
-"11\n"
+"06010000.xhp\n"
+"hd_id3150740\n"
+"20\n"
"help.text"
-msgid "Run / Save"
-msgstr "Chạy / Lưu"
+msgid "Ignore All"
+msgstr "Bỏ qua tất cả"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153748\n"
-"12\n"
+"06010000.xhp\n"
+"par_id3145318\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">Runs or saves the current macro.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNOREALL\">Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck.</ahelp>"
msgstr ""
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3149388\n"
-"15\n"
+"06010000.xhp\n"
+"hd_id3153056\n"
+"18\n"
"help.text"
-msgid "Assign"
-msgstr "Gán"
+msgid "Change"
+msgstr "Đổi"
-#: 06130000.xhp
-#, fuzzy
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153577\n"
+"06010000.xhp\n"
+"par_id3148559\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGE\">Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGE\">Thay thế từ lạ bằng sự góp ý hiện thời. Bạn sửa đổi nhiều hơn chỉ từ sai chính tả thì thay thế toàn câu.</ahelp>"
+
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"hd_id3145787\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the <link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link> dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ASSIGN\">Mở hộp thoại <link href=\"text/shared/01/06140000.xhp\" name=\"Đặc chế\">Đặc chế</link>, trong đó bạn có thể gán vĩ lệnh đã chọn cho một lệnh trình đơn, một thanh công cụ hay một dữ kiện.</ahelp>"
+msgid "Change All"
+msgstr "Đổi tất cả"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3153662\n"
+"06010000.xhp\n"
+"par_id3144446\n"
"17\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGEALL\">Replaces all occurrences of the unknown word with the current suggestion.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGEALL\">Thay thế mọi lần gặp từ lạ này bằng sự góp ý hiện thời.</ahelp>"
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150355\n"
-"18\n"
+"06010000.xhp\n"
+"par_idN10850\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Starts the $[officename] Basic editor and opens the selected macro or dialog for editing.</ahelp>"
+msgid "Undo"
+msgstr "Hủy bước"
+
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_idN10854\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to undo the last change in the current sentence. Click again to undo the previous change in the same sentence.</ahelp>"
msgstr ""
-#: 06130000.xhp
+#: 06010000.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3150772\n"
-"19\n"
+"06010000.xhp\n"
+"par_id3147426\n"
"help.text"
-msgid "New / Delete"
-msgstr "Mới/Xoá"
+msgid "<link href=\"text/shared/01/06020000.xhp\" name=\"Thesaurus\">Thesaurus</link>"
+msgstr "<link href=\"text/shared/01/06020000.xhp\" name=\"Từ điển gần nghĩa\">Từ điển gần nghĩa</link>"
-#: 06130000.xhp
+#: 06010101.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153257\n"
-"61\n"
+"06010101.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
-msgstr ""
+msgid "Writing aids"
+msgstr "Hỗ trợ soạn thảo"
-#: 06130000.xhp
+#: 06010101.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3154514\n"
-"20\n"
+"06010101.xhp\n"
+"hd_id3145138\n"
+"1\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 "Để tạo một vĩ lệnh mới, chọn mô-đun « Chuẩn » (Standard) trong danh sách <emph>Vĩ lệnh từ</emph>, sau đó nhấn vào nút <emph>Mới</emph>."
+msgid "Writing aids"
+msgstr "Hỗ trợ soạn thảo"
-#: 06130000.xhp
+#: 06010101.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3148474\n"
-"21\n"
+"06010101.xhp\n"
+"par_id3148882\n"
+"2\n"
"help.text"
-msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
-msgstr "Để xoá vĩ lệnh, chọn nó rồi nhấn vào nút <emph>Xoá</emph>."
+msgid "Select the user-defined dictionaries and set the rules for the spellchecking."
+msgstr "Chọn những từ điển tự xác định và đặt các quy tắc kiểm tra chính tả."
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3159342\n"
-"64\n"
+"06010500.xhp\n"
+"tit\n"
"help.text"
-msgid "New Library"
-msgstr "Thư viện mới"
+msgid "Language"
+msgstr "Ngôn ngữ"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3154897\n"
-"65\n"
+"06010500.xhp\n"
+"par_idN1055C\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newlibrary\">Saves the recorded macro in a new library.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/06010500.xhp\">Language</link>"
+msgstr "<link href=\"text/shared/01/06010500.xhp\">Ngôn ngữ</link>"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3154173\n"
-"66\n"
+"06010500.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "New Module"
-msgstr "Mô-đun mới"
+msgid "<ahelp hid=\".\">Opens a submenu where you can choose language specific commands.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở một trình đơn phụ trong đó bạn có thể chọn các lệnh đặc trưng cho ngôn ngữ.</ahelp>"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3155628\n"
-"67\n"
+"06010500.xhp\n"
+"hd_id5787224\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newmodule\">Saves the recorded macro in a new module.</ahelp>"
-msgstr ""
+msgid "For Selection"
+msgstr "Cho vùng chọn"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3153665\n"
-"22\n"
+"06010500.xhp\n"
+"par_id1507309\n"
"help.text"
-msgid "Organizer"
-msgstr "Tổ chức"
+msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the selected text. <br/>Choose None to exclude the selected text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở một trình đơn phụ. Hãy chọn một ngôn ngữ cho văn bản đã chọn.<br/>Chọn <emph>Không có</emph>để loại trừ văn bản đã chọn khỏi tiến trình kiểm tra chính tả và gạch nối từ.<br/>Chọn <emph>Nhiều</emph> để mở hộp thoại chứa thêm tùy chọn.</ahelp>"
-#: 06130000.xhp
-#, fuzzy
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3147618\n"
-"23\n"
+"06010500.xhp\n"
+"hd_id7693411\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=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">Mở hộp thoại <emph>Tổ chức Vĩ lệnh</emph>, trong đó bạn có thể thêm, chỉnh sửa hay xoá các mô-đun vĩ lệnh, hộp thoại và thư viện đã tồn tại.</ahelp>"
+msgid "For Paragraph"
+msgstr "Cho đoạn văn"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3145609\n"
-"24\n"
+"06010500.xhp\n"
+"par_id3928952\n"
"help.text"
-msgid "Module/Dialog tab page"
-msgstr "Trang thẻ Mô-đun/Hộp thoại"
+msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the current paragraph. <br/>Choose None to exclude the current paragraph from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở một trình đơn phụ. Hãy chọn một ngôn ngữ cho đoạn văn đã chọn.<br/>Chọn <emph>Không có</emph>để loại trừ đoạn văn hiện tại khỏi tiến trình kiểm tra chính tả và gạch nối từ.<br/>Chọn <emph>Nhiều</emph> để mở hộp thoại chứa thêm tùy chọn.</ahelp>"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3155923\n"
-"25\n"
+"06010500.xhp\n"
+"hd_id5206762\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organiz\">Lets you manage modules or dialog boxes.</ahelp>"
-msgstr ""
+msgid "For all Text"
+msgstr "Cho mọi văn bản"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3148944\n"
-"29\n"
+"06010500.xhp\n"
+"par_id5735953\n"
"help.text"
-msgid "Module/Dialog"
-msgstr "Mô-đun/Hộp thoại"
+msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for all text. <br/>Choose None to exclude all text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở một trình đơn phụ. Hãy chọn một ngôn ngữ cho mọi văn bản.<br/>Chọn <emph>Không có</emph>để loại trừ mọi văn bản khỏi tiến trình kiểm tra chính tả và gạch nối từ.<br/>Chọn <emph>Nhiều</emph> để mở hộp thoại chứa thêm tùy chọn.</ahelp>"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3145068\n"
-"30\n"
+"06010500.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Liệt kê các vĩ lệnh và hộp thoại đều đã tồn tại.</ahelp>"
+msgid "Hyphenation"
+msgstr "Gạch nối từ"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3150398\n"
-"34\n"
+"06010500.xhp\n"
+"par_idN105B3\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "Opens the <link href=\"text/shared/01/05340300.xhp\">Format - Cells - Alignment</link> tab page."
+msgstr "Mở trang thẻ <link href=\"text/shared/01/05340300.xhp\">Định dạng > Ô > Canh lề</link>."
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150543\n"
-"35\n"
+"06010500.xhp\n"
+"par_idN105D0\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Opens the selected macro or dialog for editing.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Mở vĩ lệnh hay hộp thoại đã chọn để chỉnh sửa.</ahelp>"
+msgid "Hyphenation"
+msgstr "Gạch nối từ"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3151210\n"
-"36\n"
+"06010500.xhp\n"
+"par_idN105D4\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "Turns hyphenation on and off."
+msgstr "Bật/tắt chức năng gạch nối từ."
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3149291\n"
-"37\n"
+"06010500.xhp\n"
+"par_idN105E7\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Opens the editor and creates a new module.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Mở trình soạn thảo và tạo một mô-đun mới.</ahelp>"
+msgid "Hyphenation"
+msgstr "Gạch nối từ"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3145173\n"
-"39\n"
+"06010500.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "Turns hyphenation on and off."
+msgstr "Bật/tắt chức năng gạch nối từ."
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150767\n"
-"40\n"
+"06010500.xhp\n"
+"hd_id0805200811534540\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Opens the editor and creates a new dialog.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Mở trình soạn thảo và tạo một hộp thoại mới.</ahelp>"
+msgid "More Dictionaries Online"
+msgstr "Tìm thêm các từ điển trực tuyến"
-#: 06130000.xhp
+#: 06010500.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3151177\n"
-"42\n"
+"06010500.xhp\n"
+"par_id0805200811534630\n"
"help.text"
-msgid "Libraries tab page"
-msgstr "Trang thẻ Thư viện"
+msgid "<ahelp hid=\".\">Opens the default browser on the dictionaries extension page.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở trình duyệt mặc định vào trang của các phần mở rộng cho từ điển.</ahelp>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3156281\n"
-"43\n"
+"06010600.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_DELETE\">Lets you manage the macro libraries for the current application and any open documents.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_DELETE\">Cho bạn có khả năng quản lý các thư viện vĩ lệnh cho ứng dụng hiện tại và bất cứ tài liệu nào còn mở.</ahelp>"
+msgid "Chinese Conversion"
+msgstr ""
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3144760\n"
-"44\n"
+"06010600.xhp\n"
+"bm_id49745\n"
"help.text"
-msgid "Location"
-msgstr "Vị trí"
+msgid "<bookmark_value>Chinese writing systems</bookmark_value><bookmark_value>simplified Chinese;conversion to traditional Chinese</bookmark_value><bookmark_value>traditional Chinese;conversion to simplified Chinese</bookmark_value>"
+msgstr "<bookmark_value>hệ thống viết tiếng Trung</bookmark_value><bookmark_value>tiếng Trung phổ thông;dịch sang tiếng Trung truyền thống</bookmark_value><bookmark_value>tiếng Trung truyền thống;dịch sang tiếng Trung phổ thông</bookmark_value>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150290\n"
-"45\n"
+"06010600.xhp\n"
+"par_idN10547\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Select the application or the document containing the macro libraries that you want to organize.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Chọn ứng dụng hay tài liệu chứa các thư viện vĩ lệnh bạn muốn tổ chức.</ahelp>"
+msgid "<link href=\"text/shared/01/06010600.xhp\">Chinese Conversion</link>"
+msgstr "<link href=\"text/shared/01/06010600.xhp\">Dịch tiếng Trung</link>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3159149\n"
-"46\n"
+"06010600.xhp\n"
+"par_idN10557\n"
"help.text"
-msgid "Library"
-msgstr "Thư viện"
+msgid "<ahelp hid=\".\">Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted.</ahelp> You can only use this command if you enable Asian language support in <emph>Tools - Options - Language Settings - Languages</emph>."
+msgstr "<ahelp hid=\".\">Dịch văn bản tiếng Trung đã chọn từ hệ thống viết tiếng Trung này sang hệ thống viết tiếng Trung khác.</ahelp> Để sử dụng lệnh này, trước tiên bạn cần phải hiệu lực hỗ trợ ngôn ngữ Châu Á dưới mục trình đơn <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>."
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3147500\n"
-"47\n"
+"06010600.xhp\n"
+"par_idN10572\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the existing macro libraries for the current application and any open documents.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Liệt kê các thư viện vĩ lệnh đã tồn tại cho ứng dụng hiện tại và bất cứ tài liệu nào còn mở.</ahelp>"
+msgid "Conversion direction"
+msgstr ""
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3157320\n"
-"48\n"
+"06010600.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<ahelp hid=\".\">Select the conversion direction.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn hướng về đó cần dịch.</ahelp>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150868\n"
-"49\n"
+"06010600.xhp\n"
+"par_idN10579\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Mở trình soạn thảo Basic của $[officename], để bạn có thể chỉnh sửa thư viện đã chọn.</ahelp>"
+msgid "Traditional Chinese to Simplified Chinese"
+msgstr "Tiếng Trung phồn thể sang giản thể"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3153104\n"
-"50\n"
+"06010600.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "Password"
-msgstr "Mật khẩu"
+msgid "<ahelp hid=\".\">Converts traditional Chinese text characters to simplified Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
+msgstr "<ahelp hid=\".\">Dịch các ký tự tiếng Trung truyền thống sang ký tự tiếng Trung phổ thông. Nhấn vào nút <emph>OK</emph> để dịch đoạn văn đã chọn. Chưa lựa chọn văn bản thì dịch toàn tài liệu.</ahelp>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3154299\n"
-"51\n"
+"06010600.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Assigns or edits the <link href=\"text/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Gán hay chỉnh sửa <link href=\"text/shared/01/06130100.xhp\" name=\"mật khẩu\">mật khẩu</link> cho thư viện đã chọn.</ahelp>"
+msgid "Simplified Chinese to Traditional Chinese"
+msgstr "Tiếng Trung giản thể sang phồn thể"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3147502\n"
-"52\n"
+"06010600.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "<ahelp hid=\".\">Converts simplified Chinese text characters to traditional Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
+msgstr "<ahelp hid=\".\">Dịch các ký tự tiếng Trung phổ thông sang ký tự tiếng Trung truyền thống. Nhấn vào nút <emph>OK</emph> để dịch đoạn văn đã chọn. Chưa lựa chọn văn bản thì dịch toàn tài liệu.</ahelp>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3149560\n"
-"53\n"
+"06010600.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Tạo một thư viện mới.</ahelp>"
+msgid "Common terms"
+msgstr "Thuật ngữ chung"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3153770\n"
-"56\n"
+"06010600.xhp\n"
+"par_idN10592\n"
"help.text"
-msgid "Name"
-msgstr "Tên"
+msgid "<ahelp hid=\".\">Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters.</ahelp>"
+msgstr "<ahelp hid=\".\">Thuật ngữ chung là từ có cùng một nghĩa bằng tiếng Trung kiểu truyền thống và phổ thông, nhưng được viết bằng ký tự khác nhau.</ahelp>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153726\n"
-"57\n"
+"06010600.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Enter a name for the new library or module.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Nhập tên cho thư viện hay mô-đun mới.</ahelp>"
+msgid "Convert Common Terms"
+msgstr ""
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3154693\n"
-"54\n"
+"06010600.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "Import"
-msgstr "Nhập"
+msgid "<ahelp hid=\".\">Converts words with two or more characters that are in the list of common terms. After the list is scanned, the remaining text is converted character by character.</ahelp>"
+msgstr "<ahelp hid=\".\">Dịch các từ chứa hai hoặc hơn nữa ký tự mà nằm trong danh sách các thuật ngữ chung. Một khi quét danh sách này, văn bản còn lại được dịch từng ký tự.</ahelp>"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3147441\n"
-"55\n"
+"06010600.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Hãy tìm thư viện Basic $[officename] bạn muốn thêm vào danh sách hiện thời, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
+msgid "Edit terms"
+msgstr "Sửa thuật ngữ"
-#: 06130000.xhp
+#: 06010600.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A39\n"
+"06010600.xhp\n"
+"par_idN105A0\n"
"help.text"
-msgid "<variable id=\"script\">Scripts </variable>"
-msgstr "<variable id=\"script\">Văn lệnh</variable>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06010601.xhp\">Edit Dictionary</link> dialog where you can edit the list of conversion terms.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/01/06010601.xhp\">Sửa từ điển</link> trong đó bạn có thể chỉnh sửa danh sách các thuật ngữ dịch.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN109BB\n"
+"06010601.xhp\n"
+"tit\n"
"help.text"
-msgid "To open the BeanShell Macros dialog box, choose Tools - Macros - Organize Macros - BeanShell. To open the JavaScript dialog box, choose Tools - Macros - Organize Macros - JavaScript."
-msgstr "Để mở hộp thoại <emph>Vĩ lệnh BeanShell</emph>, chọn mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > BeanShell</emph>. Để mở hộp thoại JavaScript, chọn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > JavaScript</emph>."
+msgid "Edit Dictionary"
+msgstr "Sửa từ điển"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id6963408\n"
+"06010601.xhp\n"
+"bm_id905789\n"
"help.text"
-msgid "Export"
-msgstr "Xuất"
+msgid "<bookmark_value>common terms;Chinese dictionary</bookmark_value><bookmark_value>dictionaries;common terms in simplified and traditional chinese</bookmark_value>"
+msgstr "<bookmark_value>thuật ngữ chung;từ điển tiếng Trung</bookmark_value><bookmark_value>từ điển;thuật ngữ chung bằng tiếng Trung phổ thông và tiếng Trung truyền thông</bookmark_value>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id8968169\n"
+"06010601.xhp\n"
+"par_idN1053D\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to export the selected library either as an extension or as a Basic library.</ahelp>"
-msgstr "<ahelp hid=\".\">Mở hộp thoại để xuất khẩu thư viện đã chọn, hoặc dưới dạng phần mở rộng, hoặc dưới dạng thư viện Basic.</ahelp>"
+msgid "Edit Dictionary"
+msgstr "Sửa từ điển"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN109BE\n"
+"06010601.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "Macros"
-msgstr "Vĩ lệnh"
+msgid "<ahelp hid=\".\">Edit the <link href=\"text/shared/01/06010600.xhp\">Chinese conversion</link> terms.</ahelp>"
+msgstr "<ahelp hid=\".\">Chỉnh sửa các thuật ngữ <link href=\"text/shared/01/06010600.xhp\">dịch tiếng Trung</link>.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN109C2\n"
+"06010601.xhp\n"
+"par_idN10566\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a macro or script from \"user\", \"share\", or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn một vĩ lệnh từ « người dùng » (user), « chia sẻ » (share) hay tài liệu còn mở. Để xem các vĩ lệnh hay văn lệnh sẵn sàng, nhấn đôi vào mục nhập.</ahelp>"
+msgid "You can use this dialog to edit, to add, or to delete entries from the conversion dictionary. The file path name for the conversion dictionary is user/wordbook/commonterms.ctd. You cannot delete the default entries in this file."
+msgstr "Bạn có thể sử dụng từ điển này để thêm, chỉnh sửa hay xoá mục nhập trong từ điển dịch. Tên đường dẫn tập tin cho từ điển dịch là « user/wordbook/commonterms.ctd ». Bạn không thể xoá những mục nhập mặc định khỏi tập tin này."
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN109CD\n"
+"06010601.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "Run"
-msgstr "Chạy"
+msgid "Traditional Chinese to Simplified Chinese"
+msgstr "Tiếng Trung phồn thể sang giản thể"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN109D1\n"
+"06010601.xhp\n"
+"par_idN1056D\n"
"help.text"
-msgid "<ahelp hid=\"1241731587\">To run a script, select a script in the list, and then click Run.</ahelp>"
-msgstr "<ahelp hid=\"1241731587\">Để chạy văn lệnh, chọn văn lệnh trong danh sách, sau đó nhấn vào nút <emph>Chạy</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Converts traditional Chinese to simplified Chinese.</ahelp>"
+msgstr "<ahelp hid=\".\">Dịch tiếng Trung truyền thống sang tiếng Trung phổ thông.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN109E8\n"
+"06010601.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "Create"
-msgstr "Tạo"
+msgid "Simplified Chinese to Traditional Chinese"
+msgstr "Tiếng Trung giản thể sang phồn thể"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN109EC\n"
+"06010601.xhp\n"
+"par_idN10574\n"
"help.text"
-msgid "<ahelp hid=\"1241731589\">Creates a new script.</ahelp> The default script editor opens after you enter a name for the script."
-msgstr "<ahelp hid=\"1241731589\">Tạo một văn lệnh mới.</ahelp> Trình soạn thảo văn lệnh mặc định sẽ mở một khi bạn nhập tên cho văn lệnh."
+msgid "<ahelp hid=\".\">Converts simplified Chinese to traditional Chinese.</ahelp>"
+msgstr "<ahelp hid=\".\">Dịch tiếng Trung phổ thông sang tiếng Trung truyền thống.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A04\n"
+"06010601.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "<ahelp hid=\"svx:Edit:DLG_NEWLIB:ED_LIBNAME\">Enter a name for the script.</ahelp>"
-msgstr "<ahelp hid=\"svx:Edit:DLG_NEWLIB:ED_LIBNAME\">Nhập tên cho văn lệnh.</ahelp>"
+msgid "Reverse Mapping"
+msgstr "Ánh xạ ngược"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A2F\n"
+"06010601.xhp\n"
+"par_idN1057B\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "<ahelp hid=\".\">Automatically adds the reverse mapping direction to the list for each modification that you enter.</ahelp>"
+msgstr "<ahelp hid=\".\">Tự động thêm hướng ánh xá ngược vào danh sách cho mỗi sự sửa đổi bạn nhập vào.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A33\n"
+"06010601.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "<ahelp hid=\"1241731590\">Opens the default script editor for your operating system.</ahelp>"
-msgstr "<ahelp hid=\"1241731590\">Mở trình soạn thảo văn lệnh mặc định cho hệ điều hành của bạn.</ahelp>"
+msgid "Term"
+msgstr "Thuật ngữ"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A4B\n"
+"06010601.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "Rename"
-msgstr "Thay tên"
+msgid "<ahelp hid=\".\">Enter the text that you want to replace with the Mapping term.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập văn bản bạn muốn thay thế bằng thuật ngữ Ánh xạ.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A4F\n"
+"06010601.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "<ahelp hid=\"1241731591\">Opens a dialog where you can change the name of the selected script.</ahelp>"
-msgstr "<ahelp hid=\"1241731591\">Mở hộp thoại trong đó bạn có thể thay đổi tên của văn lệnh đã chọn.</ahelp>"
+msgid "Mapping"
+msgstr "Ánh xạ"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A66\n"
+"06010601.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<ahelp hid=\".\">Enter the text that you want to replace the Term with.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập văn bản nên thay thế Thuật ngữ.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10A6A\n"
+"06010601.xhp\n"
+"par_idN1058C\n"
"help.text"
-msgid "<ahelp hid=\"1241731592\">Prompts you to delete the selected script.</ahelp>"
-msgstr "<ahelp hid=\"1241731592\">Nhắc bạn xoá văn lệnh đã chọn.</ahelp>"
+msgid "Property"
+msgstr "Thuộc tính"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10AE5\n"
+"06010601.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "The Macro Selector dialog contains two list boxes, namely the Library list box and the Macro name list box."
-msgstr "Hộp thoại <emph>Bộ chọn Vĩ lệnh</emph> chứa hai hộp liệt kê: danh sách Thư viện và danh sách Tên vĩ lệnh."
+msgid "<ahelp hid=\".\">Defines the class of the selected term.</ahelp>"
+msgstr "<ahelp hid=\".\">Xác định hạng của thuật ngữ đã chọn.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10AFC\n"
+"06010601.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "Library"
-msgstr "Thư viện"
+msgid "Add"
+msgstr "Thêm"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10B00\n"
+"06010601.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "Select a macro or script from \"user\", \"share\", or an open document. To view the contents of a library, double-click an entry in the list."
-msgstr "Chọn một vĩ lệnh hay văn lệnh từ « người dùng » (user), « chia sẻ » (share) hay tài liệu còn mở. Để xem nội dung của thư viện, nhấn đôi vào mục nhập trong danh sách."
+msgid "<ahelp hid=\".\">Adds the term to the conversion dictionary. If the term is already in the dictionary, the new term receives precedence.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm thuật ngữ vào từ điển dịch. Thuật ngữ đã có trong từ điển thì thuật ngữ mới có quyền cao hơn.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10B17\n"
+"06010601.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "Macro name"
-msgstr "Tên vĩ lệnh"
+msgid "Modify"
+msgstr "Sửa"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10B1B\n"
+"06010601.xhp\n"
+"par_idN1059E\n"
"help.text"
-msgid "Click a script, and then click a command button."
-msgstr "Nhấn vào một văn lệnh, sau đó nhấn vào một cái nút hành động."
+msgid "<ahelp hid=\".\">Saves the modified entry to the database file.</ahelp>"
+msgstr "<ahelp hid=\".\">Lưu vào tập tin cơ sở dữ liệu mục nhập đã sửa đổi.</ahelp>"
-#: 06130000.xhp
+#: 06010601.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153138\n"
+"06010601.xhp\n"
+"par_idN105A1\n"
"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"Tạo vĩ lệnh trong $[officename]\">Tạo vĩ lệnh trong $[officename]</link>"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06010601.xhp
+msgctxt ""
+"06010601.xhp\n"
+"par_idN105A5\n"
+"help.text"
+msgid "<ahelp hid=\".\">Removes the selected user-defined entry from the dictionary.</ahelp>"
+msgstr "<ahelp hid=\".\">Gỡ bỏ khỏi từ điển mục nhập tự xác định đã chọn.</ahelp>"
#: 06020000.xhp
msgctxt ""
@@ -36803,1399 +33911,963 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a language for the thesaurus.</ahelp> You can install languages with a thesaurus library from the <link href=\"http://extensions.libreoffice.org/\">Extensions</link> web page."
msgstr ""
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
+"06030000.xhp\n"
"tit\n"
"help.text"
-msgid "Record"
-msgstr "Thu"
+msgid "Color Replacer"
+msgstr "Thanh Màu"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"hd_id3150758\n"
+"06030000.xhp\n"
+"hd_id3156324\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Record</link>"
-msgstr "<link href=\"text/shared/01/02230100.xhp\" name=\"Thu\">Thu</link>"
+msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Thanh Màu\">Thanh Màu</link>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3155599\n"
+"06030000.xhp\n"
+"par_id3145138\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:TraceChangeMode\">Tracks each change that is made in the current document by author and date. </ahelp>"
-msgstr "<ahelp hid=\".uno:TraceChangeMode\">Theo dõi theo tác giả và ngày tháng mỗi thay đổi được làm trong tài liệu.</ahelp>"
+msgid "<ahelp hid=\".uno:BmpMask\">Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics.</ahelp>"
+msgstr "<ahelp hid=\".uno:BmpMask\">Mở hộp thoại bút chọn màu, trong đó bạn có thể thay thế màu sắc trong đồ họa kiểu bitmap và siêu tập tin.</ahelp>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3155934\n"
-"26\n"
+"06030000.xhp\n"
+"par_id3151262\n"
+"24\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <emph><link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\">%PRODUCTNAME Writer - Changes</link></emph> in the Options dialog box.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nếu bạn chọn lệnh <emph>Thu > Hiện</emph>, các dòng chứa đoạn văn bị thay đổi được ngụ ý bởi đường thẳng đứng trong lề bên trái trang. Bạn cũng có thể đặt các thuộc tính về đường thẳng đứng này, và các phần tử đánh dấu khác, bằng cách chọn mụ c trình đơn <link href=\"text/shared/optionen/01040700.xhp\" name=\"Công cụ > Tùy chọn > Writer > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Writer > Thay đổi</emph></link>.</caseinline></switchinline>"
+msgid "You can replace up to four different colors at one time."
+msgstr "Bạn có khả năng thay thế đến bốn màu cùng lúc."
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3147261\n"
-"27\n"
+"06030000.xhp\n"
+"par_id3153894\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can set the properties of the markup elements by choosing <link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Bạn cũng có thể đặt các thuộc tính về đường thẳng đứng này, và các phần tử đánh dấu khác, bằng cách chọn mụ c trình đơn <link href=\"text/shared/optionen/01060600.xhp\" name=\"Công cụ > Tùy chọn > Calc > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > Thay đổi</emph></link>.</caseinline></switchinline>"
+msgid "<image id=\"img_id3155616\" src=\"sd/res/pipette.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155616\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155616\" src=\"sd/res/pipette.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155616\">Biểu tượng</alt></image>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
+"06030000.xhp\n"
"par_id3145669\n"
-"7\n"
+"3\n"
"help.text"
-msgid "The following changes are tracked when the record changes command is active:"
-msgstr "Theo đây có những thay đổi được theo dõi khi chức năng thu thay đổi đang chạy:"
+msgid "Color Replacer"
+msgstr "Thanh Màu"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3149388\n"
-"8\n"
+"06030000.xhp\n"
+"par_id3153683\n"
+"4\n"
"help.text"
-msgid "Paste and delete text"
-msgstr "Dán/Xoá văn bản"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select one of the four source color boxes. Move the mouse pointer over the selected image, and then click the color that you want to replace.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chọn một của bốn hộp màu nguồn. Di chuyển con trỏ chuột ở trên ảnh đã chọn, sau đó nhấn vào màu cần thay thế.</ahelp>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3150693\n"
-"9\n"
+"06030000.xhp\n"
+"hd_id3149827\n"
+"5\n"
"help.text"
-msgid "Move paragraphs"
-msgstr "Di chuyển đoạn văn"
+msgid "Color Replacer color"
+msgstr "Chọn màu"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3147088\n"
-"10\n"
+"06030000.xhp\n"
+"par_id3146957\n"
+"6\n"
"help.text"
-msgid "Sort text"
-msgstr "Sắp xếp văn bản"
+msgid "<ahelp hid=\".\">Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected.</ahelp>"
+msgstr "<ahelp hid=\"HID_BMPMASK_CTL_PIPETTE\">Hiển thị màu trong ảnh đã chọn mà nằm chính xác dưới con trỏ chuột. Tính năng này chỉ sẵn sàng một khi chọn công cụ nút chọn màu.</ahelp>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3148620\n"
-"11\n"
+"06030000.xhp\n"
+"hd_id3154823\n"
+"7\n"
"help.text"
-msgid "Find and replace text"
-msgstr "Tìm và Thay thế văn bản"
+msgid "Replace"
+msgstr "Thay thế"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3145382\n"
-"12\n"
+"06030000.xhp\n"
+"par_id3154983\n"
+"8\n"
"help.text"
-msgid "Insert attributes that are one character wide, for example, fields and footnotes."
-msgstr "Chèn thuộc tính có bề rộng một ký tự, v.d. trường và cước chú."
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC\">Replaces the selected source colors in the current image with the colors that you specify in the <emph>Replace with </emph>boxes.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC\">Thay thế những màu nguồn đã chọn trong ảnh hiện thời bằng những màu bạn ghi rõ trong các hộp <emph>Thay thế bằng</emph>.</ahelp>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3146797\n"
-"13\n"
+"06030000.xhp\n"
+"hd_id3147275\n"
+"9\n"
"help.text"
-msgid "Insert sheets, ranges"
-msgstr "Chèn bảng hay phạm vi"
+msgid "Colors"
+msgstr "Màu sắc"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3154749\n"
-"14\n"
+"06030000.xhp\n"
+"par_id3153031\n"
+"10\n"
"help.text"
-msgid "Insert document"
-msgstr "Chèn tài liệu"
+msgid "Lists the source colors and the replacement colors."
+msgstr "Liệt kê các màu nguồn và các màu thay thế."
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3153252\n"
-"15\n"
+"06030000.xhp\n"
+"hd_id3149416\n"
+"11\n"
"help.text"
-msgid "Insert AutoText"
-msgstr "Chèn Tốc ký"
+msgid "Source color checkbox"
+msgstr "Hộp chọn màu nguồn"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3155449\n"
-"16\n"
+"06030000.xhp\n"
+"par_id3149819\n"
+"12\n"
"help.text"
-msgid "Insert from clipboard"
-msgstr "Chèn từ bảng nháp"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4\">Select this checkbox to replace the current <emph>Source color</emph> with the color that you specify in the <emph>Replace with </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4\">Bật tùy chọn này để thay thế <emph>Màu nguồn</emph> hiện thời bằng màu bạn ghi rõ trong hộp <emph>Thay thế</emph>.</ahelp>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3153821\n"
-"20\n"
+"06030000.xhp\n"
+"hd_id3159116\n"
+"13\n"
"help.text"
-msgid "Change cell contents by insertions and deletions"
-msgstr "Thay đổi nội dung ô bằng cách chèn hay xoá"
+msgid "Source color"
+msgstr "Màu nguồn"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3150771\n"
-"21\n"
+"06030000.xhp\n"
+"par_id3149903\n"
+"14\n"
"help.text"
-msgid "Insert or delete columns and rows"
-msgstr "Chèn hay Xoá cột/hàng"
+msgid "<ahelp hid=\".\">Displays the color in the selected image that you want to replace. To set the source color, click here, click the Color Replacer, and then click a color in the selected image.</ahelp>"
+msgstr "<ahelp hid=\"HID_BMPMASK_CTL_QCOL_1\">Hiển thị màu trong ảnh đã chọn mà bạn muốn thay thế. Để đặt màu nguồn, nhấn vào đây, nhấn vào công cụ bút chọn màu, sau đó nhấn vào một màu trong ảnh đã chọn.</ahelp>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3150085\n"
-"22\n"
+"06030000.xhp\n"
+"hd_id3150085\n"
+"15\n"
"help.text"
-msgid "Insert sheets"
-msgstr "Chèn bảng"
+msgid "Tolerance"
+msgstr "Dung sai"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3154381\n"
-"23\n"
+"06030000.xhp\n"
+"par_id3144438\n"
+"16\n"
"help.text"
-msgid "Cut, copy and paste through the clipboard"
-msgstr "Cắt, Chép hay Dán thông qua bảng nháp"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4\">Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value.</ahelp>"
+msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4\">Đặt dung sai để thay thế màu nguồn trong ảnh nguồn. Để thay thế các màu tương tự với màu bạn đã chọn, nhập giá trị nhỏ hơn. Để thay thế phạm vi màu rộng hơn, nhập giá trị lớn hơn.</ahelp>"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3145119\n"
-"24\n"
+"06030000.xhp\n"
+"hd_id3156156\n"
+"17\n"
"help.text"
-msgid "Move by dragging and dropping"
-msgstr "Di chuyển bằng cách Kéo-Thả"
+msgid "Replace with"
+msgstr "Thay thế bằng"
-#: 02230100.xhp
+#: 06030000.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3154347\n"
-"19\n"
+"06030000.xhp\n"
+"par_id3154173\n"
+"18\n"
"help.text"
-msgid "When the record changes command is active, you cannot delete, move, merge, split, or copy cells or delete sheets."
-msgstr "Tuy nhiên, khi chức năng thu thay đổi đang chạy, bạn không thể xoá, di chuyển, trộn, xẻ hay sao chép ô bảng, hay xoá bảng."
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4\">Lists the available replacement colors. To modify the current list of colors, deselect the image, choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4\">Liệt kê các màu thay thế sẵn sàng. Để sửa đổi danh sách màu sắc hiện thời, bỏ chọn ảnh, chọn lệnh <emph>Định dạng > Ảnh</emph>, sau đó nhấn vào thẻ <emph>Màu sắc</emph>.</ahelp>"
-#: 02190000.xhp
+#: 06030000.xhp
msgctxt ""
-"02190000.xhp\n"
-"tit\n"
+"06030000.xhp\n"
+"hd_id3156152\n"
+"19\n"
"help.text"
-msgid "Plug-in"
-msgstr "Phần bổ sung"
+msgid "Transparency"
+msgstr "Trong suốt"
-#: 02190000.xhp
+#: 06030000.xhp
msgctxt ""
-"02190000.xhp\n"
-"bm_id3146946\n"
+"06030000.xhp\n"
+"par_id3154905\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>plug-ins; activating and deactivating</bookmark_value><bookmark_value>activating;plug-ins</bookmark_value><bookmark_value>deactivating; plug-ins</bookmark_value>"
-msgstr "<bookmark_value>phần bổ sung; bật/tắt</bookmark_value><bookmark_value>kích hoạt;phần bổ sung</bookmark_value><bookmark_value>hủy kích hoạt; phần bổ sung</bookmark_value>"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS\">Replaces transparent areas in the current image with the color that you select.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS\">Thay thế các vùng trong suốt trong ảnh hiện thời bằng màu bạn chọn.</ahelp>"
-#: 02190000.xhp
+#: 06030000.xhp
msgctxt ""
-"02190000.xhp\n"
-"hd_id3146946\n"
-"1\n"
+"06030000.xhp\n"
+"hd_id3145087\n"
+"21\n"
"help.text"
-msgid "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Plug-in</link>"
-msgstr "<link href=\"text/shared/01/02190000.xhp\" name=\"Phần bổ sung\">Phần bổ sung</link>"
+msgid "Transparency"
+msgstr "Trong suốt"
-#: 02190000.xhp
+#: 06030000.xhp
msgctxt ""
-"02190000.xhp\n"
-"par_id3154863\n"
-"2\n"
+"06030000.xhp\n"
+"par_id3148946\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\".uno:PlugInsActive\">Allows you to edit <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link> in your file. Choose this command to enable or disable this feature. When enabled, a check mark appears beside this command, and you find commands to edit the plug-in in its context menu. When disabled, you find commands to control the plug-in in its context menu.</ahelp>"
-msgstr "<ahelp hid=\".uno:PlugInsActive\">Cho phép bạn chỉnh sửa các <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"phần bổ sung\">phần bổ sung</link> nằm trong tập tin. Chọn lệnh này để bật/tắt tính năng này. Bật thì bạn thấy dấu kiểm (√) bên cạnh lệnh này, và các lệnh để chỉnh sửa phần bổ sung trong trình đơn ngữ cảnh của lệnh này. Tắt thì bạn không thấy dấu kiểm, và trình đơn ngữ cảnh chứa các lệnh để điều khiển phần bổ sung.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS\">Select the color to replace the transparent areas in the current image.</ahelp>"
+msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS\">Chọn màu để thay thế các vùng trong suốt trong ảnh hiện thời.</ahelp>"
-#: 01020101.xhp
+#: 06040000.xhp
msgctxt ""
-"01020101.xhp\n"
+"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Select Path"
-msgstr "Chọn đường dẫn"
-
-#: 01020101.xhp
-msgctxt ""
-"01020101.xhp\n"
-"hd_id3150620\n"
-"1\n"
-"help.text"
-msgid "Select Path"
-msgstr "Chọn đường dẫn"
+msgid "AutoCorrect"
+msgstr "Tự động Sửa lỗi"
-#: 01020101.xhp
+#: 06040000.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3149962\n"
-"2\n"
+"06040000.xhp\n"
+"bm_id3153391\n"
"help.text"
-msgid "Sets file paths."
-msgstr "Đặt đường dẫn đến tập tin."
+msgid "<bookmark_value>AutoCorrect function;switching on and off</bookmark_value><bookmark_value>AutoComplete, see also AutoCorrect/AutoInput</bookmark_value>"
+msgstr "<bookmark_value>chức năng Tự động Sửa lỗi; trình đơn ngữ cảnh</bookmark_value><bookmark_value>kiểm tra chính tả; trình đơn ngữ cảnh</bookmark_value>"
-#: 01020101.xhp
+#: 06040000.xhp
msgctxt ""
-"01020101.xhp\n"
-"hd_id3152821\n"
-"4\n"
+"06040000.xhp\n"
+"hd_id3153391\n"
"help.text"
-msgid "Select"
-msgstr "Chọn"
+msgid "AutoCorrect"
+msgstr "Tự động Sửa lỗi"
-#: 01020101.xhp
+#: 06040000.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3150902\n"
-"5\n"
+"06040000.xhp\n"
+"par_id3150838\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_PATH_BTN\" visibility=\"visible\">Selects the indicated path.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEDLG_PATH_BTN\" visibility=\"visible\">Chọn đường dẫn được ngụ ý.</ahelp>"
+msgid "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Sets the options for automatically replacing text as you type.</ahelp></variable>"
+msgstr "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Đặt các tùy chọn về chức năng tự động thay thế văn bản trong khi gõ.</ahelp></variable>"
-#: 01020101.xhp
+#: 06040000.xhp
msgctxt ""
-"01020101.xhp\n"
-"hd_id3148585\n"
-"6\n"
+"06040000.xhp\n"
+"par_id3147261\n"
"help.text"
-msgid "Path:"
-msgstr "Đường dẫn:"
+msgid "The AutoCorrect settings are applied when you press the Spacebar after you enter a word."
+msgstr "Thiết lập Tự động Sửa lỗi được áp dụng khi bạn bấm phím dài một khi nhập từ."
-#: 01020101.xhp
+#: 06040000.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3149346\n"
-"7\n"
+"06040000.xhp\n"
+"par_id3153394\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_PATH_FILENAME\" visibility=\"visible\">Enter or select the path from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEDLG_PATH_FILENAME\" visibility=\"visible\">Nhập đường dẫn, hoặc chọn một đường dẫn trong danh sách.</ahelp>"
+msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - Cell Contents - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
+msgstr "Để bật hay tắt chức năng Tự động Sửa lỗi, trong $[officename] Calc chọn mục trình đơn <emph>Công cụ > Nội dung ô > Tự động Nhập</emph>, và trong $[officename] Writer chọn <emph>Định dạng > Tự động Định dạng > Trong khi gõ</emph>. Để áp dụng thiết lập Tự động Định dạng cho toàn tài liệu văn bản, chọn lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng</emph>."
-#: 01020101.xhp
+#: 06040000.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3149750\n"
+"06040000.xhp\n"
+"par_id3146137\n"
"help.text"
-msgid "<link name=\"Open Dialog\" href=\"text/shared/01/01020000.xhp\"><emph>Open</emph> Dialog</link>"
-msgstr "<link name=\"Hộp thoại Mở\" href=\"text/shared/01/01020000.xhp\">Hộp thoại <emph>Mở</emph></link>"
+msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
+msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Tự động sửa lỗi\">Tự động sửa lỗi</link>"
-#: 01060000.xhp
+#: 06040100.xhp
msgctxt ""
-"01060000.xhp\n"
+"06040100.xhp\n"
"tit\n"
"help.text"
-msgid "Save"
-msgstr "Lưu"
-
-#: 01060000.xhp
-msgctxt ""
-"01060000.xhp\n"
-"hd_id3147000\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
-msgstr "<link href=\"text/shared/01/01060000.xhp\" name=\"Lưu\">Lưu</link>"
-
-#: 01060000.xhp
-msgctxt ""
-"01060000.xhp\n"
-"par_id3153255\n"
-"1\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Save\">Saves the current document.</ahelp>"
-msgstr "<ahelp hid=\".uno:Save\">Lưu lại tài liệu hiện tại.</ahelp>"
-
-#: 01060000.xhp
-msgctxt ""
-"01060000.xhp\n"
-"par_id3152551\n"
-"4\n"
-"help.text"
-msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
-msgstr "Khi bạn chỉnh sửa mục nhập Tốc Ký, câu lệnh này trở thành <emph>Lưu Tốc ký</emph>."
+msgid "Options"
+msgstr "Tùy chọn"
-#: 04150500.xhp
+#: 06040100.xhp
msgctxt ""
-"04150500.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"bm_id3155620\n"
"help.text"
-msgid "Insert video"
-msgstr "Chèn ảnh động"
+msgid "<bookmark_value>AutoCorrect function; options</bookmark_value> <bookmark_value>replacement options</bookmark_value> <bookmark_value>words; automatically replacing</bookmark_value> <bookmark_value>abbreviation replacement</bookmark_value> <bookmark_value>capital letters; AutoCorrect function</bookmark_value> <bookmark_value>bold; AutoFormat function</bookmark_value> <bookmark_value>underlining; AutoFormat function</bookmark_value> <bookmark_value>spaces; ignoring double</bookmark_value> <bookmark_value>numbering; using automatically</bookmark_value> <bookmark_value>paragraphs; numbering automatically</bookmark_value> <bookmark_value>tables in text; creating automatically</bookmark_value> <bookmark_value>titles; formatting automatically</bookmark_value> <bookmark_value>empty paragraph removal</bookmark_value> <bookmark_value>paragraphs; removing blank ones</bookmark_value> <bookmark_value>styles; replacing automatically</bookmark_value> <bookmark_value>user-defined styles; automatically replacing</bookmark_value> <bookmark_value>bullets; replacing</bookmark_value> <bookmark_value>paragraphs; joining</bookmark_value> <bookmark_value>joining; paragraphs</bookmark_value>"
+msgstr "<bookmark_value>chức năng Tự động Sửa lỗi; tùy chọn</bookmark_value><bookmark_value>tùy chọn thay thế</bookmark_value><bookmark_value>từ; tự động thay thế</bookmark_value><bookmark_value>thay thế từ viết tắt</bookmark_value><bookmark_value>chữ hoa; chức năng Tự động Sửa lỗi</bookmark_value><bookmark_value>in đậm; chức năng Tự động Định dạng</bookmark_value><bookmark_value>gạch dưới; chức năng Tự động Định dạng</bookmark_value><bookmark_value>thay thế 1/2</bookmark_value><bookmark_value>dấu cách; bỏ qua dấu cách đôi</bookmark_value><bookmark_value>đánh số; tự động dùng</bookmark_value><bookmark_value>đoạn văn; tự động đánh số</bookmark_value><bookmark_value>đánh số;đoạn văn</bookmark_value><bookmark_value>bảng trong văn bản; tự động tạo</bookmark_value><bookmark_value>tựa đề; tự động định dạng</bookmark_value><bookmark_value>gỡ bỏ đoạn văn rỗng</bookmark_value><bookmark_value>đoạn văn; gỡ bỏ cái trắng</bookmark_value><bookmark_value>kiểu dáng; tự động thay thế</bookmark_value><bookmark_value>kiểu dáng tự xác định; tự động thay thế</bookmark_value><bookmark_value>chấm điểm; thay thế</bookmark_value><bookmark_value>dấu nháy kép; thay thế</bookmark_value><bookmark_value>dấu nháy kép cong trong $[officename] Writer</bookmark_value><bookmark_value>đoạn văn; nối lại</bookmark_value><bookmark_value>nối lại; đoạn văn</bookmark_value>"
-#: 04150500.xhp
+#: 06040100.xhp
msgctxt ""
-"04150500.xhp\n"
-"hd_id3150999\n"
+"06040100.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "Insert video"
-msgstr "Chèn ảnh động"
+msgid "<link href=\"text/shared/01/06040100.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/shared/01/06040100.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-#: 04150500.xhp
+#: 06040100.xhp
msgctxt ""
-"04150500.xhp\n"
-"par_id3152895\n"
+"06040100.xhp\n"
+"par_id3146946\n"
"2\n"
"help.text"
-msgid "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Inserts a video file into the current document.</ahelp></variable>"
-msgstr "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Chèn vào tài liệu hiện tại một tập tin ảnh động.</ahelp></variable>"
-
-#: webhtml.xhp
-msgctxt ""
-"webhtml.xhp\n"
-"tit\n"
-"help.text"
-msgid "Preview in Web Browser"
-msgstr "Xem thử trong trình duyệt"
-
-#: webhtml.xhp
-msgctxt ""
-"webhtml.xhp\n"
-"hd_id3901181\n"
-"help.text"
-msgid "<link href=\"text/shared/01/webhtml.xhp\">Preview in Web Browser</link>"
-msgstr "<link href=\"text/shared/01/webhtml.xhp\">Xem thử trong trình duyệt</link>"
-
-#: webhtml.xhp
-msgctxt ""
-"webhtml.xhp\n"
-"par_id8309274\n"
-"help.text"
-msgid "<ahelp hid=\".\">Creates a temporary copy of the current document in HTML format, opens the system default Web browser, and displays the HTML file in the Web browser.</ahelp>"
-msgstr "<ahelp hid=\".\">Tạo một bản sao tạm thời của tài liệu hiện tại theo định dạng HTML, sau đó mở trình duyệt Web mặc định để hiển thị tập tin HTML.</ahelp>"
+msgid "<ahelp hid=\"HID_OFAPAGE_AUTOFORMAT_CLB\">Select the options for automatically correcting errors as you type, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_OFAPAGE_AUTOFORMAT_CLB\">Đặt các tùy chọn về chức năng tự động sửa chữa lỗi trong khi gõ, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
-#: webhtml.xhp
+#: 06040100.xhp
msgctxt ""
-"webhtml.xhp\n"
-"par_id9186681\n"
+"06040100.xhp\n"
+"par_id3153124\n"
+"32\n"
"help.text"
-msgid "The HTML formatted copy is written to the temporary files folder that you can select in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</item>. When you quit %PRODUCTNAME, the HTML file will be deleted."
-msgstr ""
+msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Format - AutoCorrect - Apply</emph>."
+msgstr "Trong tài liệu văn bản, bạn có thể tự động sửa lỗi trong khi gõ [T], hoặc chỉ khi bạn sửa đổi văn bản đã có [M], dùng lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng</emph>."
-#: webhtml.xhp
+#: 06040100.xhp
msgctxt ""
-"webhtml.xhp\n"
-"par_id5871150\n"
+"06040100.xhp\n"
+"par_id7547227\n"
"help.text"
-msgid "You can set the HTML export filter options by choosing <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</item>."
-msgstr ""
+msgid "When you choose to modify existing text with all options deselected, still all \"Default\" paragraph styles will be converted to \"Text body\" styles."
+msgstr "Khi bạn chọn sửa đổi văn bản đã tồn tại với tất cả các tùy chọn bị tắt, tất cả các kiểu dáng đoạn văn « Mặc định » sẽ vẫn còn được chuyển đổi sang kiểu dáng « Thân văn bản »."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"hd_id3154398\n"
+"3\n"
"help.text"
-msgid "Attributes"
-msgstr "Thuộc tính"
+msgid "Use replacement table"
+msgstr "Dùng bảng thay thế"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"06040100.xhp\n"
+"par_id3151234\n"
+"4\n"
"help.text"
-msgid "Attributes"
-msgstr "Thuộc tính"
+msgid "If you type a letter combination that matches a shortcut in the <link href=\"text/shared/01/06040200.xhp\" name=\"replacement table\">replacement table</link>, the letter combination is replaced with the replacement text."
+msgstr "Nếu bạn gõ một tổ hợp chữ mà tương ứng với một lối tắt trong <link href=\"text/shared/01/06040200.xhp\" name=\"bảng thay thế\">bảng thay thế</link>, tổ hợp chữ được thay thế bằng chuỗi định sẵn."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153331\n"
-"2\n"
+"06040100.xhp\n"
+"hd_id3150144\n"
+"5\n"
"help.text"
-msgid "<variable id=\"attributetext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE\">Choose the text attributes that you want to search for. For example, if you search for the <emph>Font</emph> attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found. </ahelp></variable>"
-msgstr "<variable id=\"attributetext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE\">Chọn các thuộc tính văn bản bạn muốn tìm. Chẳng hạn, nếu bạn tìm kiếm thuộc tính <emph>Phông</emph>, hàm sẽ tìm mọi đoạn văn không dùng phông mặc định. Nó tìm mọi đoạn văn có thuộc tính phông đã đặt trực tiếp, và mọi đoạn văn có kiểu dáng chuyển đổi thuộc tính phông. </ahelp></variable>"
+msgid "Correct TWo INitial CApitals"
+msgstr "Sửa HAi CHữ HOa ĐÂu TIên"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3150944\n"
+"06040100.xhp\n"
+"par_id3149177\n"
"6\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "If you type two uppercase letters at the beginning of a \"WOrd\", the second uppercase letter is automatically replaced with a lowercase letter."
+msgstr "Nếu bạn gõ hai chữ hoa ở đầu của từ, chữ hoa thứ hai được tự động thay thế bằng chữ thường. (Chương trình giả sử bạn đã gõ sai.)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3151384\n"
+"06040100.xhp\n"
+"hd_id3156426\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_SEARCHATTR_CTL_ATTR\">Select the attributes that you want to search for.</ahelp>"
-msgstr "<ahelp hid=\"HID_SEARCHATTR_CTL_ATTR\">Chọn các thuộc tính bạn muốn tìm kiếm.</ahelp>"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3149245\n"
-"56\n"
-"help.text"
-msgid "Keep with Next Paragraph"
-msgstr "Giữ với đoạn văn kế tiếp"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3154760\n"
-"57\n"
-"help.text"
-msgid "Finds the <emph>Keep With Next Paragraph</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Giữ với đoạn văn kế tiếp</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3145068\n"
-"40\n"
-"help.text"
-msgid "Split Paragraph"
-msgstr "Xẻ đoạn văn"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3147560\n"
-"41\n"
-"help.text"
-msgid "Finds the <emph>Do not split paragraph</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Không xẻ đoạn văn</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3156435\n"
-"52\n"
-"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3150866\n"
-"53\n"
-"help.text"
-msgid "Finds the <emph>Spacing</emph> (top, bottom) attribute."
-msgstr "Tìm thuộc tính <emph>Giãn cách</emph> (bên trên/dưới)."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3154071\n"
-"38\n"
-"help.text"
-msgid "Alignment"
-msgstr "Chỉnh canh"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3154365\n"
-"39\n"
-"help.text"
-msgid "Finds the <emph>Alignment</emph> (left, right, centered, justified) attribute."
-msgstr "Tìm thuộc tính <emph>Chỉnh canh</emph> (bên trái/phải, giữa, canh đều)."
+msgid "Capitalize first letter of every sentence."
+msgstr "Viết hoa chữ đầu của mỗi câu"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3145171\n"
+"06040100.xhp\n"
+"par_id3155339\n"
"8\n"
"help.text"
-msgid "Effects"
-msgstr "Hiệu ứng"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3149203\n"
-"9\n"
-"help.text"
-msgid "Finds characters that use the <emph>Capital, Lowercase, Small capitals, </emph>and <emph>Title </emph>character attributes."
-msgstr "Tìm các ký tự dùng thuộc tính ký tự kiểu <emph>Chữ hoa, Chữ thường, Chữ hoa nhỏ</emph> và <emph>Tựa đề</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3148676\n"
-"60\n"
-"help.text"
-msgid "Blinking"
-msgstr "Nhấp nháy"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3153193\n"
-"61\n"
-"help.text"
-msgid "Finds characters use the <emph>Blinking</emph> attribute."
-msgstr "Tìm các ký tự dùng thuộc tính <emph>Nhấp nháy</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3153968\n"
-"14\n"
-"help.text"
-msgid "Strikethrough"
-msgstr "Gạch đè"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3145746\n"
-"15\n"
-"help.text"
-msgid "Finds characters that use the <emph>Strikethrough</emph> (single or double) attribute."
-msgstr "Tìm các ký tự dùng thuộc tính <emph>Gạch đè</emph> (đơn, đôi)."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3156422\n"
-"50\n"
-"help.text"
-msgid "Indent"
-msgstr "Thụt lề"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3150449\n"
-"51\n"
-"help.text"
-msgid "Finds the <emph>Indent</emph> (from left, from right, first line) attribute."
-msgstr "Tìm thuộc tính <emph>Thụt lề</emph> (từ bên trái/phải, dòng đầu)."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3145203\n"
-"44\n"
-"help.text"
-msgid "Widows"
-msgstr "Thiếu"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3153105\n"
-"45\n"
-"help.text"
-msgid "Finds the <emph>Widow Control</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Điều khiển dòng thiếu</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3149560\n"
-"22\n"
-"help.text"
-msgid "Kerning"
-msgstr "Định chỗ"
+msgid "Capitalizes the first letter of every sentence."
+msgstr "Chức năng này thì viết hoa từ đầu của mỗi câu."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3155132\n"
-"23\n"
+"06040100.xhp\n"
+"par_id5240028\n"
"help.text"
-msgid "Finds <emph>Spacing</emph> (standard, expanded, condensed) attributes and Pair Kerning."
-msgstr "Tìm thuộc tính <emph>Giãn cách</emph> (chuẩn, giãn ra, co lại) và thuộc tính Định chỗ cặp."
+msgid "The first letter in a Calc cell will never be capitalized automatically."
+msgstr "Tuy nhiên, chữ đầu trong ô bảng Calc sẽ không bao giờ được tự động viết hoa."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3145261\n"
-"12\n"
+"06040100.xhp\n"
+"hd_id3145072\n"
+"24\n"
"help.text"
-msgid "Outline"
-msgstr "Nét ngoài"
+msgid "Automatic *bold* and _underline_"
+msgstr "Tự động in *đậm* và _gạch dưới_"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153143\n"
-"13\n"
+"06040100.xhp\n"
+"par_id3153577\n"
+"26\n"
"help.text"
-msgid "Finds the <emph>Outline</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Nét ngoài</emph>."
+msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgstr "Tự động áp dụng định dạng in đậm cho văn bản nằm giữa hai dấu sao, và áp dụng định dạng gạch dưới cho văn bản nằm giữa hai dấu gạch dưới. (Các dấu sao và dấu gạch dưới này không được hiển thị sau khi định dạng như thế.)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148575\n"
-"16\n"
+"06040100.xhp\n"
+"par_id3153127\n"
+"105\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Tuy nhiên, tính năng này không có tác động khi ký tự định dạng dấu sao hay dấu gạch dưới được nhập vào dùng <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Bộ Sửa Cách Nhập\">Bộ Sửa Cách Nhập</link> (v.d. VietIME \"http://vietime.sourceforge.net/usage.html\")."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3146922\n"
+"06040100.xhp\n"
+"hd_id3150275\n"
"17\n"
"help.text"
-msgid "Finds characters using the <emph>Normal, Superscript</emph> or <emph>Subscript </emph>attributes."
-msgstr "Tìm các ký tự dùng thuộc tính <emph>Chuẩn, Chỉ số Trên</emph> hay <emph>Chỉ số Dưới</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3156062\n"
-"62\n"
-"help.text"
-msgid "Register-true"
-msgstr "Đăng ký đúng"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3152886\n"
-"63\n"
-"help.text"
-msgid "Finds the <emph>Register-true</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Đăng ký đúng</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3159196\n"
-"64\n"
-"help.text"
-msgid "Relief"
-msgstr "Khắc nổi"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3146120\n"
-"65\n"
-"help.text"
-msgid "Finds the <emph>Relief </emph>attribute."
-msgstr "Tìm thuộc tính <emph>Khắc nổi</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3154014\n"
-"66\n"
-"help.text"
-msgid "Rotation"
-msgstr "Xoay"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3150873\n"
-"67\n"
-"help.text"
-msgid "Finds the <emph>Rotation</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Xoay</emph>."
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"hd_id3152576\n"
-"28\n"
-"help.text"
-msgid "Shadowed"
-msgstr "Có bóng"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3150104\n"
-"29\n"
-"help.text"
-msgid "Finds the <emph>Shadowed</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Có bóng</emph>."
+msgid "URL Recognition"
+msgstr "Nhận ra URL"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3159156\n"
+"06040100.xhp\n"
+"par_id3158430\n"
"18\n"
"help.text"
-msgid "Font"
-msgstr "Phông"
+msgid "Automatically creates a hyperlink when you type a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>."
+msgstr "Tự động tạo siêu liên kết khi bạn gõ một địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3154320\n"
+"06040100.xhp\n"
+"hd_id3148473\n"
"19\n"
"help.text"
-msgid "Finds any instance where the default font was changed."
-msgstr "Tìm đoạn nào có phông khác với phông mặc định."
+msgid "Replace Dashes"
+msgstr "Thay các dấu gạch"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3151113\n"
-"10\n"
+"06040100.xhp\n"
+"par_id3144439\n"
+"20\n"
"help.text"
-msgid "Font Color"
-msgstr "Màu phông"
+msgid "Replaces one or two hyphens with a long dash (see the following table)."
+msgstr "Thay thế một hay hai dấu gạch nối bằng dấu gạch dài (xem bảng theo sau)."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3149664\n"
-"11\n"
+"06040100.xhp\n"
+"par_id87282\n"
"help.text"
-msgid "Finds any instance where the default font color was changed."
-msgstr "Tìm đoạn nào có màu phông khác với màu phông mặc định."
+msgid "Text will be replaced after you type a trailing white space (space, tab, or return). In the following table, the A and B represent text consisting of letters A to z or digits 0 to 9."
+msgstr "Văn bản sẽ được thay thế sau khi bạn gõ một ký tự khoảng trắng theo sau (bấm phím dài, Tab hay Return). Trên bảng theo đây, A và B đại diện văn bản chứa chữ cái từ A đến z hay chữ số từ 0 đến 9."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3152794\n"
-"20\n"
+"06040100.xhp\n"
+"par_id3408612\n"
"help.text"
-msgid "Font Size"
-msgstr "Kích cỡ phông"
+msgid "Text that you type:"
+msgstr "Ký tự bạn gõ :"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150962\n"
-"21\n"
+"06040100.xhp\n"
+"par_id4362010\n"
"help.text"
-msgid "Finds the <emph>Font size/Font height</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Kích cỡ/Bề cao phông</emph>."
+msgid "Result that you get:"
+msgstr "Kết quả:"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3163717\n"
-"32\n"
+"06040100.xhp\n"
+"par_id1432844\n"
"help.text"
-msgid "Font Weight"
-msgstr "Độ đậm phông"
+msgid "A - B (A, space, minus, space, B)"
+msgstr "A - B (A, dấu cách, dấu trừ, dấu cách, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150593\n"
-"33\n"
+"06040100.xhp\n"
+"par_id7553941\n"
"help.text"
-msgid "Finds the <emph>Bold</emph> or the <emph>Bold and Italic</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Đậm</emph> hay <emph>Đậm và Nghiêng</emph>."
+msgid "A – B (A, space, en-dash, space, B)"
+msgstr "A – B (A, dấu cách, dấu gạch ngắn, dấu cách, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3146928\n"
-"26\n"
+"06040100.xhp\n"
+"par_id1421246\n"
"help.text"
-msgid "Font Posture"
-msgstr "Dáng phông"
+msgid "A -- B (A, space, minus, minus, space, B)"
+msgstr "A -- B (A, dấu cách, dấu trừ, dấu trừ, dấu cách, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3154097\n"
-"27\n"
+"06040100.xhp\n"
+"par_id2305673\n"
"help.text"
-msgid "Finds the <emph>Italic</emph> or the <emph>Bold and Italic</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Đậm</emph> hay <emph>Đậm và Nghiêng</emph>."
+msgid "A – B (A, space, en-dash, space, B)"
+msgstr "A – B (A, dấu cách, dấu gạch ngắn, dấu cách, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148388\n"
-"42\n"
+"06040100.xhp\n"
+"par_id8703573\n"
"help.text"
-msgid "Orphans"
-msgstr "Thừa"
+msgid "A--B (A, minus, minus, B)"
+msgstr "A--B (A, dấu trừ, dấu trừ, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3156737\n"
-"43\n"
+"06040100.xhp\n"
+"par_id6049684\n"
"help.text"
-msgid "Finds the <link href=\"text/shared/00/00000005.xhp#schuster\">Orphan Control</link> attribute."
-msgstr "Tìm thuộc tính <link href=\"text/shared/00/00000005.xhp#schuster\">Điều khiển dòng thừa</link>."
+msgid "A—B (A, em-dash, B)<br/>(see note below the table)"
+msgstr "A—B (A, dấu gạch ngắn, B)<br/>(xem ghi chú bên dưới bảng)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3153159\n"
-"54\n"
+"06040100.xhp\n"
+"par_id2219916\n"
"help.text"
-msgid "Page Style"
-msgstr "Kiểu dáng trang"
+msgid "A-B (A, minus, B)"
+msgstr "A-B (A, dấu trừ, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3147045\n"
-"55\n"
+"06040100.xhp\n"
+"par_id1868037\n"
"help.text"
-msgid "Finds the <emph>Break With Page Style</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Chỗ ngắt có kiểu dáng trang</emph>."
+msgid "A-B (unchanged)"
+msgstr "A-B (chưa thay đổi)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3147124\n"
-"48\n"
+"06040100.xhp\n"
+"par_id714438\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Gạch nối từ"
+msgid "A -B (A, space, minus, B)"
+msgstr "A -B (A, dấu cách, dấu trừ, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153877\n"
-"49\n"
+"06040100.xhp\n"
+"par_id3924985\n"
"help.text"
-msgid "Finds the <emph>Hyphenation</emph> attribute."
-msgstr "Tìm thuộc tính <emph>Gạch nối từ</emph>."
+msgid "A -B (unchanged)"
+msgstr "A -B (chưa thay đổi)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148773\n"
-"68\n"
+"06040100.xhp\n"
+"par_id1486861\n"
"help.text"
-msgid "Scale"
-msgstr "Co giãn"
+msgid "A --B (A, space, minus, minus, B)"
+msgstr "A --B (A, dấu cách, dấu trừ, dấu trừ, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3147396\n"
-"69\n"
+"06040100.xhp\n"
+"par_id844141\n"
"help.text"
-msgid "Finds the <emph>Scale </emph>attribute."
-msgstr "Tìm thuộc tính <emph>Co giãn</emph>."
+msgid "A –B (A, space, en-dash, B)"
+msgstr "A –B (A, dấu cách, dấu gạch ngắn, B)"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148455\n"
-"24\n"
+"06040100.xhp\n"
+"par_id1416974\n"
"help.text"
-msgid "Language"
-msgstr "Ngôn ngữ"
+msgid "If the text has the Hungarian or Finnish language attribute, then two hyphens in the sequence A--B are replaced by an en-dash instead of an em-dash."
+msgstr "Nếu văn bản có thuộc tính ngôn ngữ tiếng Hun-ga-ri hay Phần Lan thì hai dấu nối từ trong dãy « A--B » được thay thế bằng một dấu gạch ngắn, thay cho một dấu gạch dài."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150716\n"
-"25\n"
+"06040100.xhp\n"
+"hd_id3152472\n"
+"99\n"
"help.text"
-msgid "Finds the <emph>Language</emph> attribute (for spelling)."
-msgstr "Tìm thuộc tính <emph>Ngôn ngữ</emph> (cho hàm chính tả)."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete spaces and tabs at beginning and end of paragraph</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Xoá các dấu cách và/hay khoảng cách Tab ở đầu hay cuối đoạn văn </caseinline></switchinline>"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154511\n"
-"46\n"
+"06040100.xhp\n"
+"par_id3156024\n"
+"100\n"
"help.text"
-msgid "Tab Stops"
-msgstr "Vị trí tab"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of a paragraph. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gỡ bỏ khoảng trắng ở đầu hay cuối đoạn văn. Để sử dụng tùy chọn này, cũng cần bật tùy chọn <emph>Áp dụng kiểu dáng</emph>. </caseinline></switchinline>"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3151037\n"
-"47\n"
+"06040100.xhp\n"
+"hd_id3147303\n"
+"101\n"
"help.text"
-msgid "Finds paragraphs that use an additional tab set."
-msgstr "Tìm các đoạn văn dùng các vị trí tab thêm."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete blanks and tabs at end and start of lines</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Xoá dấu cách và/hay khoảng cách Tab ở đầu hay cuối dòng. </caseinline></switchinline>"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154164\n"
-"30\n"
+"06040100.xhp\n"
+"par_id3150866\n"
+"102\n"
"help.text"
-msgid "Underline"
-msgstr "Gạch dưới"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of each line. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gỡ bỏ khoảng trắng ở đầu hay cuối dòng. Để sử dụng tùy chọn này, cũng cần bật tùy chọn <emph>Áp dụng kiểu dáng</emph>. </caseinline></switchinline>"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3148566\n"
-"31\n"
+"06040100.xhp\n"
+"hd_id3150400\n"
+"28\n"
"help.text"
-msgid "Finds characters that use the <emph>Underlined</emph> attribute (single, double, or dotted)."
-msgstr "Tìm các ký tự dùng thuộc tính <emph>Gạch dưới</emph> (đơn, đôi, chấm chấm)."
+msgid "Ignore double spaces"
+msgstr "Bỏ qua dấu cách đôi"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3153099\n"
-"70\n"
+"06040100.xhp\n"
+"par_id3154938\n"
+"29\n"
"help.text"
-msgid "Vertical text alignment"
-msgstr "Canh lề văn bản nằm dọc"
+msgid "Replaces two or more consecutive spaces with a single space."
+msgstr "Thay thế hai hoặc hơn nữa dấu cách liên tiếp bằng một dấu cách riêng lẻ."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3145650\n"
-"71\n"
+"06040100.xhp\n"
+"hd_id3145116\n"
+"33\n"
"help.text"
-msgid "Finds the <emph>Vertical text alignment </emph>attribute."
-msgstr "Tìm thuộc tính <emph>Canh lề văn bản nằm dọc</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply numbering - symbol</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Áp dụng đánh số — ký hiệu </caseinline></switchinline>"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3147259\n"
+"06040100.xhp\n"
+"par_id3150870\n"
"34\n"
"help.text"
-msgid "Individual Words"
-msgstr "Mỗi từ riêng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically creates a numbered list when you press Enter at the end of a line that starts with a number followed by a period, a space, and text. If a line starts with a hyphen (-), a plus sign (+), or an asterisk (*), followed by a space, and text, a bulleted list is created when you press Enter.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động tạo một danh sách đánh số khi bạn bấm phím <item type=\"keycode\">Enter</item> ở kết thúc dòng mà bắt đầu với một con số, dấu chấm, dấu cách và văn bản theo thứ tự đó. Nếu dòng bắt đầu với dấu gạch nối từ (-), dấu cộng (+) hay dấu sao (*), rồi dấu chấm và văn bản, hành động bấm phím <item type=\"keycode\">Enter</item> sẽ tạo một danh sách chấm điểm thay vào đó.</caseinline></switchinline>"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3156438\n"
-"35\n"
+"06040100.xhp\n"
+"par_id3146874\n"
+"92\n"
"help.text"
-msgid "Finds individual words that use the underlined or the strikethrough attribute."
-msgstr "Tìm mỗi từ riêng mà dùng thuộc tính gạch dưới hay gạch đè."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To cancel automatic numbering when you press Enter at the end of a line that starts with a numbering symbol, press Enter again.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Để thôi chức năng tự động đánh số đáp ứng khi bạn bấm phím <item type=\"keycode\">Enter</item> ở kết thúc dòng bắt đầu với ký hiệu đánh số, bấm phím <item type=\"keycode\">Enter</item> lần nữa.</caseinline></switchinline>"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3153948\n"
-"58\n"
+"06040100.xhp\n"
+"par_id3145606\n"
+"77\n"
"help.text"
-msgid "Character background"
-msgstr "Nền ký tự"
+msgid "The automatic numbering option is only applied to paragraphs that are formatted with the \"Default\", \"Text body\", or \"Text body indent\" paragraph style."
+msgstr "Tùy chọn tự động đánh số chỉ được áp dụng cho đoạn văn được định dạng theo kiểu dáng đoạn văn « Mặc định », « Thân văn bản » hay « Thụt lề thân văn bản »."
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3145300\n"
-"59\n"
+"06040100.xhp\n"
+"hd_id3157962\n"
+"35\n"
"help.text"
-msgid "Finds characters that use the <emph>Background</emph> attribute."
-msgstr "Tìm các ký tự dùng thuộc tính <emph>Nền</emph>."
+msgid "Apply border"
+msgstr "Dùng viền"
-#: 02100200.xhp
+#: 06040100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3146791\n"
+"06040100.xhp\n"
+"par_id3144445\n"
"36\n"
"help.text"
-msgid "Line Spacing"
-msgstr "Giãn cách dòng"
-
-#: 02100200.xhp
-msgctxt ""
-"02100200.xhp\n"
-"par_id3146912\n"
-"37\n"
-"help.text"
-msgid "Finds the <emph>Line spacing</emph> (single line, 1.5 lines, double, proportional, at least, lead) attribute."
-msgstr "Tìm thuộc tính <emph>Giãn cách dòng</emph> (dòng đơn, 1,5, đôi, tỷ lệ, ít nhất, đi trước)."
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Medium"
-msgstr "Phương tiện"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"hd_id3148765\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">Medium</link>"
-msgstr "<link href=\"text/shared/01/01010301.xhp\" name=\"Phương tiện\">Phương tiện</link>"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"par_id3150278\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the size of your business card from a number of pre-defined size formats, or a size format that you specify on the <emph>Format </emph>tab.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn kích cỡ của danh thiếp trong một số định dạng kích cỡ đã xác định sẵn, hoặc một định dạng kích cỡ bạn ghi rõ trên thẻ <emph>Định dạng</emph>.</ahelp>"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"hd_id3149991\n"
-"3\n"
-"help.text"
-msgid "Format"
-msgstr "Định dạng"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"par_id3147543\n"
-"4\n"
-"help.text"
-msgid "Select a size format for your business card."
-msgstr "Chọn định dạng kích cỡ cho danh thiếp."
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"hd_id3160463\n"
-"5\n"
-"help.text"
-msgid "Continuous"
-msgstr "Liên tục"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"par_id3150279\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">Prints business cards on continuous paper.</ahelp>"
-msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">In các danh thiếp trên giấy cuộn liên tục.</ahelp>"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"hd_id3154840\n"
-"7\n"
-"help.text"
-msgid "Sheet"
-msgstr "Tờ giấy"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"par_id3148731\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">Prints business cards on individual sheets.</ahelp>"
-msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">In các danh thiếp trên mỗi tờ giấy.</ahelp>"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"hd_id3154894\n"
-"9\n"
-"help.text"
-msgid "Brand"
-msgstr "Tên hãng"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"par_id3155351\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
-msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Chọn tên hãng giấy bạn muốn sử dụng.</ahelp> Mỗi tên hãng có các định dạng kích cỡ riêng."
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"hd_id3153935\n"
-"11\n"
-"help.text"
-msgid "Type"
-msgstr "Kiểu"
-
-#: 01010301.xhp
-msgctxt ""
-"01010301.xhp\n"
-"par_id3159201\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Chọn định dạng kích cỡ bạn muốn sử dụng. Các định dạng sẵn sàng thì phụ thuộc vào mục bạn đã chọn trong hộp <emph>Tên hãng</emph>. Muốn sử dụng một định dạng kích cỡ riêng thì chọn mục <emph>[Người dùng]</emph>, sau đó nhấn vào cái nút <<link href=\"text/shared/01/01010202.xhp\" name=\"Định dạng\"><emph>Định dạng</emph></link> để xác định định dạng.</ahelp>"
+msgid "Automatically applies a border at the base of the preceding paragraph when you type three or more specific characters, and then press Enter. To create a single line, type three or more hyphens (-), or underscores ( _ ), and then press Enter. To create a double line, type three or more equal signs (=), asterisks (*), tildes (~), or hash marks (#), and then press Enter."
+msgstr "Tự động áp dụng một viền bên dưới đoạn văn trước khi bạn gõ ba hoặc hơn nữa ký tự riêng, sau đó bấm phím <item type=\"keycode\">Enter</item>. Để tạo một đường đơn, gõ ba hoặc hơn nữa dấu bằng (=), dấu ngã (~) hay dấu thăng (#), rồi bấm phím <item type=\"keycode\">Enter</item>."
-#: 01010301.xhp
+#: 06040100.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3147226\n"
-"13\n"
+"06040100.xhp\n"
+"par_idN10C2E\n"
"help.text"
-msgid "Info"
-msgstr "Thông tin"
+msgid "To delete the created line, click the paragraph above the line, choose <emph>Format - Paragraph - Borders</emph>, delete the bottom border."
+msgstr "Để xoá đường đã tạo, nhấn vào đoạn văn bên trên đường, chọn lệnh <emph>Định dạng > Đoạn văn > Viền</emph> và xoá viền bên dưới."
-#: 01010301.xhp
+#: 06040100.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3153394\n"
-"14\n"
+"06040100.xhp\n"
+"par_idN10C35\n"
"help.text"
-msgid "The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area."
-msgstr "Kiểu giấy và các chiều của danh thiếp được hiển thị ở đáy của vùng <emph>Định dạng</emph>."
+msgid "The following table summarizes the line thickness for the different characters:"
+msgstr "Theo đây có một bảng tóm tắt chiều rộng đường cho các ký tự khác nhau :"
-#: 05260100.xhp
+#: 06040100.xhp
msgctxt ""
-"05260100.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id3148576\n"
+"37\n"
"help.text"
-msgid "To Page"
-msgstr "Vào trang"
+msgid "---"
+msgstr "---"
-#: 05260100.xhp
+#: 06040100.xhp
msgctxt ""
-"05260100.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"06040100.xhp\n"
+"par_id3154690\n"
+"38\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260100.xhp\" name=\"To Page\">To Page</link>"
-msgstr "<link href=\"text/shared/01/05260100.xhp\" name=\"Vào trang\">Vào trang</link>"
+msgid "0.5pt single underline"
+msgstr "0.5pt gạch dưới đơn"
-#: 05260100.xhp
+#: 06040100.xhp
msgctxt ""
-"05260100.xhp\n"
-"par_id3150756\n"
-"2\n"
+"06040100.xhp\n"
+"par_id3154472\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToPage\">Anchors the selected item to the current page.</ahelp>"
-msgstr "<ahelp hid=\".uno:SetAnchorToPage\">Thả neo mục đã chọn vào trang hiện tại.</ahelp>"
+msgid "___"
+msgstr "___"
-#: 05260100.xhp
+#: 06040100.xhp
msgctxt ""
-"05260100.xhp\n"
-"par_id3149987\n"
-"4\n"
+"06040100.xhp\n"
+"par_id3149266\n"
+"40\n"
"help.text"
-msgid "The anchored item remains on the current page even if you insert or delete text."
-msgstr "Mục đã thả neo sẽ còn lại trên trang hiện thời, thậm chí nếu bạn chèn hay xoá văn bản."
+msgid "1.0pt single underline"
+msgstr "1.0pt gạch dưới đơn"
-#: 05260100.xhp
+#: 06040100.xhp
msgctxt ""
-"05260100.xhp\n"
-"par_id3152821\n"
-"3\n"
+"06040100.xhp\n"
+"par_id3147580\n"
+"41\n"
"help.text"
-msgid "The anchor icon is displayed at the top left corner of the page."
-msgstr "Biểu tượng neo được hiển thị ở góc trên bên trái trang."
+msgid "==="
+msgstr "==="
-#: 01180000.xhp
+#: 06040100.xhp
msgctxt ""
-"01180000.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id3145364\n"
+"42\n"
"help.text"
-msgid "Save All"
-msgstr "Lưu tất cả"
+msgid "1.1pt double underline"
+msgstr "1.1pt gạch dưới đôi"
-#: 01180000.xhp
+#: 06040100.xhp
msgctxt ""
-"01180000.xhp\n"
-"hd_id3150347\n"
-"4\n"
+"06040100.xhp\n"
+"par_id3148647\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/shared/01/01180000.xhp\" name=\"Save All\">Save All</link>"
-msgstr "<link href=\"text/shared/01/01180000.xhp\" name=\"Lưu tất cả\">Lưu tất cả</link>"
+msgid "***"
+msgstr "***"
-#: 01180000.xhp
+#: 06040100.xhp
msgctxt ""
-"01180000.xhp\n"
-"par_id3151299\n"
-"1\n"
+"06040100.xhp\n"
+"par_id3152791\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".uno:SaveAll\">Saves all modified $[officename] documents.</ahelp>"
-msgstr "<ahelp hid=\".uno:SaveAll\">Lưu tất cả các tài liệu $[officename] đã chỉnh sửa.</ahelp>"
+msgid "4.5pt double underline"
+msgstr "4.5pt gạch dưới đôi"
-#: 01180000.xhp
+#: 06040100.xhp
msgctxt ""
-"01180000.xhp\n"
-"par_id3148440\n"
-"3\n"
+"06040100.xhp\n"
+"par_id3146975\n"
+"45\n"
"help.text"
-msgid "If you are saving a new file or a copy of a read-only file, the <link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link> dialog appears."
-msgstr "Nếu bạn đang lưu một tập tin mới, hay một bản sao của tập tin chỉ-đọc, hộp thoại <link href=\"text/shared/01/01070000.xhp\" name=\"Lưu dạng\">Lưu dạng</link> sẽ mở."
+msgid "~~~"
+msgstr "~~~"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id3152885\n"
+"46\n"
"help.text"
-msgid "Split Cells"
-msgstr "Chia Ô"
+msgid "6.0pt double underline"
+msgstr "6.0pt gạch dưới đôi"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3154654\n"
-"1\n"
+"06040100.xhp\n"
+"par_id3145591\n"
+"47\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100200.xhp\" name=\"Split Cells\">Split Cells</link>"
-msgstr "<link href=\"text/shared/01/05100200.xhp\" name=\"Chia các ô\">Chia các ô</link>"
+msgid "###"
+msgstr "###"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3083451\n"
-"2\n"
+"06040100.xhp\n"
+"par_id3153188\n"
+"48\n"
"help.text"
-msgid "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">Splits the cell or group of cells horizontally or vertically into the number of cells that you enter.</ahelp></variable>"
-msgstr "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">Chia một ô hay một nhóm ô theo chiều dọc hay chiều ngang thành số các ô tùy chọn mà bạn nhập.</ahelp></variable>"
+msgid "9.0pt double underline"
+msgstr "9.0pt gạch dưới đôi"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154024\n"
-"82\n"
+"06040100.xhp\n"
+"hd_id3149064\n"
+"49\n"
"help.text"
-msgid "Choose <emph>Table - Split Cells</emph>"
-msgstr "Chọn <emph>Bảng - Chia Ô</emph>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create table</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tạo bảng </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154042\n"
-"83\n"
+"06040100.xhp\n"
+"par_id3146119\n"
+"50\n"
"help.text"
-msgid "On the <emph>Table</emph> Bar, click"
-msgstr "Trong thanh công cụ <emph>bảng</emph>, nhấn"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Creates a table when you press Enter after typing a series of hyphens (-) or tabs separated by plus signs, that is, +------+---+. Plus signs indicate column dividers, while hyphens and tabs indicate the width of a column.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tạo một bảng khi bạn bấm phím <item type=\"keycode\">Enter</item> sau khi gõ một chuỗi các dấu gạch nối từ (-) hay khoảng cách Tab định giới bằng dấu cộng (+------+---+). Dấu cộng ngụ ý đường chia hai cột, còn dấu gạch nối từ hay khoảng Tab ngụ ý chiều rộng của cột. </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3147270\n"
+"06040100.xhp\n"
+"par_id3147219\n"
+"53\n"
"help.text"
-msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Biểu tượng</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">+-----------------+---------------+------+</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">+-----------------+---------------+------+ </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3150616\n"
-"84\n"
+"06040100.xhp\n"
+"hd_id3153334\n"
+"55\n"
"help.text"
-msgid "Split Cells"
-msgstr "Chia ô"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply Styles</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Áp dụng kiểu dáng </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3154558\n"
-"3\n"
+"06040100.xhp\n"
+"par_id3147396\n"
+"56\n"
"help.text"
-msgid "Split cell into"
-msgstr "Chia ô thành"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically replaces the \"Default\" paragraph style with the Heading 1 to Heading 8 paragraph styles. To apply the Heading 1 paragraph style, type the text that you want to use as a heading (without a period), and then press Enter twice. To apply a sub-heading, press Tab one or more times, type the text (without a period), and then press Enter.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động thay thế kiểu dáng đoạn văn « Mặc định » bằng kiểu dáng đoạn văn « Tiêu đề 1 » đến « Tiêu đề 8 ». Để áp dụng kiểu dáng đoạn văn « Tiêu đề 1 », gõ chuỗi bạn muốn thấy là tiêu đề (không có dấu chấm), sau đó bấm phím <item type=\"keycode\">Enter</item> hai lần. Để áp dụng một tiêu đề phụ, bấm phím <item type=\"keycode\">Tab</item> một hay nhiều lần, gõ chuỗi (không có dấu chấm), sau đó bấm phím <item type=\"keycode\">Enter</item>.</caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3150021\n"
-"4\n"
+"06040100.xhp\n"
+"hd_id3151075\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:DLG_SPLIT:ED_COUNT\">Enter the number of rows or columns that you want to split the selected cell(s) into.</ahelp>"
-msgstr "<ahelp hid=\"SW:NUMERICFIELD:DLG_SPLIT:ED_COUNT\">Điền số hàng và số cột mà bạn muốn chia (các)ô hiện tại thành</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove blank paragraphs</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bỏ đoạn văn trống </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3145249\n"
-"5\n"
+"06040100.xhp\n"
+"par_id3145728\n"
+"59\n"
"help.text"
-msgid "Direction"
-msgstr "Hướng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes empty paragraphs from the current document when you choose <emph>Format - AutoCorrect - Apply</emph>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gỡ bỏ các đoạn văn rỗng (nếu có) khỏi tài liệu hiện tại khi bạn chọn lệnh <emph>Định dạng > Tự động sửa lỗi > Áp dụng</emph>. </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3150568\n"
-"7\n"
+"06040100.xhp\n"
+"hd_id3152375\n"
+"60\n"
"help.text"
-msgid "Horizontally"
-msgstr "Theo chiều ngang"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace Custom Styles</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay kiểu dáng riêng</caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3153927\n"
-"8\n"
+"06040100.xhp\n"
+"par_id3156299\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"SW:IMAGERADIOBUTTON:DLG_SPLIT:RB_HORZ\">Splits the selected cell(s) into the number of rows that you specify in the <emph>Split cell into </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SW:IMAGERADIOBUTTON:DLG_SPLIT:RB_HORZ\">Chia (các) ô đựơc chọn thành số hàng mà bạn chọn trong hộp thoại <emph>Chia ô thành </emph>.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replaces the custom paragraph styles in the current document with the \"Default\", the \"Text Body\", or the \"Text Body Indent\" paragraph style.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay thế các kích cỡ đoạn văn riêng trong tài liệu hiện tại bằng kiểu dáng đoạn văn « Mặc định », « Thân văn bản » hay « Thụt lề thân văn bản ».</caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3147566\n"
-"11\n"
+"06040100.xhp\n"
+"hd_id3147045\n"
+"62\n"
"help.text"
-msgid "Into equal proportions"
-msgstr "Thành những phần bằng nhau"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace bullets with</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Thay chấm điểm bằng</caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154638\n"
-"12\n"
+"06040100.xhp\n"
+"par_id3150420\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"SW_CHECKBOX_DLG_SPLIT_CB_PROP\">Splits cells into rows of equal height.</ahelp>"
-msgstr "<ahelp hid=\"SW_CHECKBOX_DLG_SPLIT_CB_PROP\">Chia các ô thành những hàng với chiều cao bằng nhau.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Converts paragraphs that start with a hyphen (-), a plus sign (+), or an asterisk (*) directly followed by a space or a tab, to bulleted lists. This option only works on paragraphs that are formatted with the \"Default\", \"Text Body\", or \"Text Body Indent\" paragraph styles. To change the bullet style that is used, select this option, and then click <emph>Edit</emph>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Chuyển đổi các đoạn văn bắt đầu với dấu gạch nối từ (-), dấu cộng (+) hay dấu sao (*) có dấu cách hay khoảng cách Tab theo đúng sau, sang danh sách chấm điểm. Tùy chọn này chỉ có tác động với đoạn văn được định dạng bằng kiểu dáng đoạn văn « Mặc định », « Thân văn bản » hay « Thụt lề thân văn bản ». Để thay đổi kiểu dáng chấm điểm được dùng, bật tùy chọn này, sau đó bấm nút <emph>Sửa</emph>. </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3150765\n"
-"9\n"
+"06040100.xhp\n"
+"hd_id3151019\n"
+"66\n"
"help.text"
-msgid "Vertically"
-msgstr "Theo chiều dọc"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combine single line paragraphs if length greater than ...</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gộp các đoạn văn một dòng có chiều dài hơn ... </caseinline></switchinline>"
-#: 05100200.xhp
+#: 06040100.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3145410\n"
-"10\n"
+"06040100.xhp\n"
+"par_id3154162\n"
+"67\n"
"help.text"
-msgid "<ahelp hid=\"SW:IMAGERADIOBUTTON:DLG_SPLIT:RB_VERT\">Splits the selected cell(s) into the number of columns that you specify in the <emph>Split cell into </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SW:IMAGERADIOBUTTON:DLG_SPLIT:RB_VERT\">Chia (các) ô được chọn thành các cột mà bạn đã chỉ định trong hộp <emph>Chia ô thành </emph>.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combines consecutive single-line paragraphs into a single paragraph. This option only works on paragraphs that use the \"Default\" paragraph style. If a paragraph is longer than the specified length value, the paragraph is combined with the next paragraph. To enter a different length value, select the option, and then click <link href=\"text/swriter/01/05150104.xhp\"><emph>Edit</emph></link>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kết hợp các đoạn văn dòng đơn liên tiếp để làm cùng một đoạn văn. Tùy chọn này chỉ có tác động với đoạn văn dùng kiểu dáng đoạn văn « Mặc định ». Có đoạn văn dài hơn giá trị chiều dài đã ghi rõ thì đoạn văn được kết hợp với đoạn văn kế tiếp. Để nhập giá trị chiều dài khác, bật tùy chọn, sau đó bấm nút <link href=\"text/swriter/01/05150104.xhp\"><emph>Sửa</emph></link>. </caseinline></switchinline>"
-#: 05340402.xhp
+#: 06040100.xhp
msgctxt ""
-"05340402.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id1218200910244459\n"
"help.text"
-msgid "Table format"
-msgstr "Định dạng bảng"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Modifies the selected AutoCorrect option.</ahelp>"
+msgstr ""
-#: 05340402.xhp
+#: 06040100.xhp
msgctxt ""
-"05340402.xhp\n"
-"hd_id3153514\n"
-"1\n"
+"06040100.xhp\n"
+"hd_id3144749\n"
+"75\n"
"help.text"
-msgid "Table format"
-msgstr "Định dạng bảng"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Edit</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Sửa </caseinline></switchinline>"
-#: 05340402.xhp
+#: 06040100.xhp
msgctxt ""
-"05340402.xhp\n"
-"par_id3154350\n"
-"2\n"
+"06040100.xhp\n"
+"par_id3153841\n"
+"76\n"
"help.text"
-msgid "<variable id=\"tabformtext\"><ahelp hid=\"HID_BROWSER_TABLEFORMAT\" visibility=\"visible\">Formats the selected row(s).</ahelp></variable>"
-msgstr "<variable id=\"tabformtext\"><ahelp hid=\"HID_BROWSER_TABLEFORMAT\" visibility=\"visible\">Định dạng những hàng đã chọn</ahelp></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT\">Modifies the selected AutoCorrect option.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT\">Sửa đổi tùy chọn Tự động Sửa lỗi đã chọn.</ahelp></caseinline></switchinline>"
#: 06040200.xhp
msgctxt ""
@@ -38228,8 +34900,8 @@ msgctxt ""
"par_id3151262\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFAPAGE_AUTOCORR_REPLACE\">Edits the replacement table for automatically correcting or replacing words or abbreviations in your document.</ahelp>"
-msgstr "<ahelp hid=\"HID_OFAPAGE_AUTOCORR_REPLACE\">Chỉnh sửa bảng thay thế để tự động sửa chữa hay thay thế các từ hay từ viết tắt trong tài liệu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/AcorReplacePage\">Edits the replacement table for automatically correcting or replacing words or abbreviations in your document.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/AcorReplacePage\">Chỉnh sửa bảng thay thế để tự động sửa chữa hay thay thế các từ hay từ viết tắt trong tài liệu.</ahelp>"
#: 06040200.xhp
msgctxt ""
@@ -38255,8 +34927,8 @@ msgctxt ""
"par_id3152945\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFACTL_AUTOCORR_REPLACE\">Lists the entries for automatically replacing words or abbreviations while you type. To add an entry, enter text in the <emph>Replace </emph>and <emph>With </emph>boxes, and then click <emph>New</emph>. To edit an entry, select it, change the text in the <emph>With</emph> box, and then click <emph>Replace</emph>. To delete an entry, select it, and then click <emph>Delete</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_OFACTL_AUTOCORR_REPLACE\">Liệt kê các mục nhập để tự động thay thế các từ hay từ viết tắt trong khi bạn gõ. Để thêm một mục nhập, nhập văn bản vào hai hộp <emph>Thay thế</emph> và <emph>Bằng</emph>, sau đó nhấn vào nút <emph>Mới</emph>. Để chỉnh sửa mục nhập, lựa chọn nó, sửa đổi văn bản trong hộp <emph>Bằng</emph>, sau đó nhấn vào nút <emph>Thay thế</emph>. Để xoá mục nhập, lựa chọn nó, sau đó nhấn vào nút <emph>Xoá</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/tabview\">Lists the entries for automatically replacing words or abbreviations while you type. To add an entry, enter text in the <emph>Replace </emph>and <emph>With </emph>boxes, and then click <emph>New</emph>. To edit an entry, select it, change the text in the <emph>With</emph> box, and then click <emph>Replace</emph>. To delete an entry, select it, and then click <emph>Delete</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/tabview\">Liệt kê các mục nhập để tự động thay thế các từ hay từ viết tắt trong khi bạn gõ. Để thêm một mục nhập, nhập văn bản vào hai hộp <emph>Thay thế</emph> và <emph>Bằng</emph>, sau đó nhấn vào nút <emph>Mới</emph>. Để chỉnh sửa mục nhập, lựa chọn nó, sửa đổi văn bản trong hộp <emph>Bằng</emph>, sau đó nhấn vào nút <emph>Thay thế</emph>. Để xoá mục nhập, lựa chọn nó, sau đó nhấn vào nút <emph>Xoá</emph>.</ahelp>"
#: 06040200.xhp
msgctxt ""
@@ -38291,8 +34963,8 @@ msgctxt ""
"par_id3147560\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT\">Enter the word or abbreviation that you want to replace while you type.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT\">Nhập từ hay từ viết tắt bạn muốn thay thế trong khi gõ.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/origtext\">Enter the word or abbreviation that you want to replace while you type.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/origtext\">Nhập từ hay từ viết tắt bạn muốn thay thế trong khi gõ.</ahelp>"
#: 06040200.xhp
msgctxt ""
@@ -38309,8 +34981,8 @@ msgctxt ""
"par_id3149456\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE\">Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the<emph> Replace</emph> box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE\">Nhập vào hộp này văn bản, đồ họa, khung hay đối tượng OLE bạn muốn thay thế văn bản trong hộp <emph>Thay thế</emph>. Nếu bạn đã chọn văn bản, đồ họa, khung hay đối tượng OLE trong tài liệu, thông tin thích hợp đã được nhập vào đây.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/newtext\">Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the<emph> Replace</emph> box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/newtext\">Nhập vào hộp này văn bản, đồ họa, khung hay đối tượng OLE bạn muốn thay thế văn bản trong hộp <emph>Thay thế</emph>. Nếu bạn đã chọn văn bản, đồ họa, khung hay đối tượng OLE trong tài liệu, thông tin thích hợp đã được nhập vào đây.</ahelp>"
#: 06040200.xhp
msgctxt ""
@@ -38327,8 +34999,8 @@ msgctxt ""
"par_id3153379\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY\">Saves the entry in the <emph>With</emph> box without formatting. When the replacement is made, the text uses the same format as the document text.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY\">Lưu mục nhập trong hộp <emph>Bằng</emph>, không có định dạng. Khi làm thay thế, văn bản theo cùng một định dạng với văn bản của tài liệu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/textonly\">Saves the entry in the <emph>With</emph> box without formatting. When the replacement is made, the text uses the same format as the document text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/textonly\">Lưu mục nhập trong hộp <emph>Bằng</emph>, không có định dạng. Khi làm thay thế, văn bản theo cùng một định dạng với văn bản của tài liệu.</ahelp>"
#: 06040200.xhp
msgctxt ""
@@ -38345,1801 +35017,1103 @@ msgctxt ""
"par_id3153968\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE\">Adds or replaces an entry in the replacement table.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE\">Thêm hay thay thế mục nhập trong bảng thay thế.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/new\">Adds or replaces an entry in the replacement table.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/new\">Thêm hay thay thế mục nhập trong bảng thay thế.</ahelp>"
-#: 06150210.xhp
+#: 06040300.xhp
msgctxt ""
-"06150210.xhp\n"
+"06040300.xhp\n"
"tit\n"
"help.text"
-msgid "XML Filter output"
-msgstr "Kết xuất lọc XML"
-
-#: 06150210.xhp
-msgctxt ""
-"06150210.xhp\n"
-"hd_id3158397\n"
-"6\n"
-"help.text"
-msgid "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\" name=\"XML Filter output\">XML Filter output</link></variable>"
-msgstr "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\" name=\"Kết xuất lọc XML\">Kết xuất lọc XML</link></variable>"
+msgid "Exceptions"
+msgstr "Ngoại lệ"
-#: 06150210.xhp
+#: 06040300.xhp
msgctxt ""
-"06150210.xhp\n"
-"par_id3153882\n"
+"06040300.xhp\n"
+"hd_id3150278\n"
"1\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Lists the test results of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Liệt kê kết quả thử của một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
+msgid "<link href=\"text/shared/01/06040300.xhp\" name=\"Exceptions\">Exceptions</link>"
+msgstr "<link href=\"text/shared/01/06040300.xhp\" name=\"Ngoại lệ\">Ngoại lệ</link>"
-#: 06150210.xhp
+#: 06040300.xhp
msgctxt ""
-"06150210.xhp\n"
-"par_id3148731\n"
+"06040300.xhp\n"
+"par_id3152876\n"
"2\n"
"help.text"
-msgid "The test results of an import or export XSLT stylesheet are displayed in the <emph>XML Filter output </emph>window. If you want, you can also validate the filter output."
-msgstr "Kết quả thử của một bảng kiểu dáng XSLT nhập/xuất khẩu được hiển thị trong cửa sổ <emph>Kết xuất lọc XML</emph>. Bạn cũng có thể hợp lệ hoá kết xuất này."
-
-#: 06150210.xhp
-msgctxt ""
-"06150210.xhp\n"
-"hd_id3147143\n"
-"3\n"
-"help.text"
-msgid "Validate"
-msgstr "Hợp lệ hoá"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/AcorExceptPage\">Specify the abbreviations or letter combinations that you do not want $[officename] to correct automatically.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/AcorExceptPage\">Ghi rõ các từ viết tắt và/hay tổ hợp chữ mà bạn không muốn $[officename] tự động sửa chữa.</ahelp>"
-#: 06150210.xhp
-msgctxt ""
-"06150210.xhp\n"
-"par_id3151315\n"
-"4\n"
-"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_SOURCE_FILE_VALIDATE\">Validates the contents of the <emph>XML Filter output</emph> window.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"HID_XML_SOURCE_FILE_VALIDATE\">Hợp lệ hoá nội dung của cửa sổ <emph>Kết xuất lọc XML</emph>.</ahelp>"
-
-#: 06150210.xhp
-msgctxt ""
-"06150210.xhp\n"
-"par_id3149999\n"
-"5\n"
-"help.text"
-msgid "The window splits into two areas and the results of the validation are displayed in the lower area."
-msgstr "Cửa sổ chia ra hai vùng: kết quả của tiến trình hợp lệ hoá được hiển thị trong vùng bên dưới."
-
-#: 04150200.xhp
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"tit\n"
+"06040300.xhp\n"
+"par_id3154926\n"
+"17\n"
"help.text"
-msgid "Insert Plug-In"
-msgstr "Chèn phần bổ sung"
+msgid "The exceptions that you define depend on the current language setting. If you want, you can change the language setting by selecting a different language in the <emph>Replacements and exceptions for language</emph> box."
+msgstr "Những ngoại lệ bạn xác định thì phụ thuộc vào thiết lập ngôn ngữ hiện thời. Bạn cũng có thể thay đổi thiết lập ngôn ngữ, bằng cách chọn ngôn ngữ khác trong hộp <emph>Thay thế và ngoại lệ cho ngôn ngữ</emph>."
-#: 04150200.xhp
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"bm_id3149962\n"
+"06040300.xhp\n"
+"hd_id3149205\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>plug-ins; inserting</bookmark_value><bookmark_value>inserting; plug-ins</bookmark_value>"
-msgstr "<bookmark_value>phần bổ sung; chèn</bookmark_value><bookmark_value>chèn; phần bổ sung</bookmark_value>"
+msgid "Replacements and exceptions for language:"
+msgstr "Thay thế và ngoại lệ cho ngôn ngữ :"
-#: 04150200.xhp
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3149962\n"
-"1\n"
+"06040300.xhp\n"
+"par_id3156027\n"
+"16\n"
"help.text"
-msgid "Insert Plug-In"
-msgstr "Chèn phần bổ sung"
+msgid "<ahelp hid=\"cui/ui/autocorrectdialog/lang\">Select the language for which you want to create or edit the replacement rules.</ahelp> $[officename] first searches for exceptions that are defined for the language at the current cursor position in the document, and then searches the remaining languages."
+msgstr "<ahelp hid=\"cui/ui/autocorrectdialog/lang\">Chọn ngôn ngữ cho đó bạn muốn tạo hay chỉnh sửa quy tắc thay thế.</ahelp> $[officename] tìm kiếm đầu tiên ngoại lệ được xác định cho ngôn ngữ ở vị trí con trỏ hiện tại trong tài liệu, sau đó tì kiếm cho các ngôn ngữ còn lại."
-#: 04150200.xhp
-msgctxt ""
-"04150200.xhp\n"
-"par_id3155599\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Inserts a plug-in into the current document.</ahelp> </variable> A <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plug-in</link> is a software component that extends the capabilities of a web browser."
-msgstr "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Chèn vào tài liệu một phần bổ sung.</ahelp></variable><link href=\"text/shared/00/00000002.xhp#plugin\" name=\"Phần bổ sung\">Phần bổ sung</link> là một thành phần phần mềm mà mở rộng khả năng của chương trình."
-
-#: 04150200.xhp
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3148585\n"
+"06040300.xhp\n"
+"hd_id3153681\n"
"3\n"
"help.text"
-msgid "File/URL"
-msgstr "Tập tin/URL"
+msgid "Abbreviations (no subsequent capital)"
+msgstr "Từ viết tắt (không có chữ hoa sau)"
-#: 04150200.xhp
-#, fuzzy
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"par_id3147399\n"
+"06040300.xhp\n"
+"par_id3156410\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertplugin/urled\">Enter the URL for the plug-in or click <emph>Browse</emph>, and then locate the plug-in that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"SO3:EDIT:MD_INSERT_OBJECT_PLUGIN:ED_FILEURL\">Nhập địa chỉ URL của phần bổ sung, hoặc nhấn vào nút <emph>Duyệt</emph>, sau đó tìm phần bổ sung cần chèn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/abbrev\">Type an abbreviation followed by a period, and then click <emph>New</emph>. This prevents $[officename] from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/abbrev\">Gõ từ viết tắt có dấu chấm theo sau, sau đó bấm nút <emph>Mới</emph>. Hành động này ngăn cản $[officename] tự động viết hoa chữ đầu của từ nằm sau dấu chấm ở kết thúc từ viết tắt.</ahelp>"
-#: 04150200.xhp
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3155552\n"
-"5\n"
+"06040300.xhp\n"
+"par_id3149751\n"
+"13\n"
"help.text"
-msgid "Browse"
-msgstr "Duyệt"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/abbrevlist\">Lists the abbreviations that are not automatically corrected.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/abbrevlist\">Liệt kê các từ viết tắt không được tự động sửa chữa.</ahelp> Để gỡ bỏ mục khỏi danh sách, lựa chọn mục, sau đó bấm nút <emph>Delete</emph>."
-#: 04150200.xhp
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"par_id3143267\n"
+"06040300.xhp\n"
+"hd_id3151110\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Locate the plug-in that you want to insert, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgid "Words with TWo INitial CApitals"
+msgstr "Từ có HAi CHữ CÁi HOa"
-#: 04150200.xhp
+#: 06040300.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3149750\n"
+"06040300.xhp\n"
+"par_id3154749\n"
"7\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 04150200.xhp
-msgctxt ""
-"04150200.xhp\n"
-"par_id3150774\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/insertplugin/pluginoptions\">Enter the parameters for the plug-in using the format <emph>parameter1=\"some text\"</emph>.</ahelp>"
-msgstr ""
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Format"
-msgstr "Định dạng"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"hd_id3151260\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/shared/01/01010202.xhp\" name=\"Định dạng\">Định dạng</link>"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"par_id3153255\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_LAB_FMT\">Set paper formatting options.</ahelp>"
-msgstr "<ahelp hid=\"HID_LAB_FMT\">Đặt các tùy chọn về định dạng giấy.</ahelp>"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"hd_id3159194\n"
-"3\n"
-"help.text"
-msgid "Horizontal pitch"
-msgstr "Dốc nằm ngang"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"par_id3154186\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HDIST\">Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HDIST\">Hiển thị khoảng cách giữa các cạnh bên trái của hai nhãn hay danh thiếp kề nhau. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"hd_id3155555\n"
-"5\n"
-"help.text"
-msgid "Vertical pitch"
-msgstr "Dốc thẳng đứng"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"par_id3152425\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_VDIST\">Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_VDIST\">Hiển thị khoảng cách giữa cạnh bên trên của một nhãn hay danh thiếp, và cạnh bên trên của nhãn hay danh thiếp đúng bên dưới. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/double\">Type the word or abbreviation that starts with two capital letters that you do not want $[officename] to change to one initial capital. For example, enter PC to prevent $[officename] from changing PC to Pc.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/double\">Gõ từ hay từ viết tắt mà bắt đầu với hai chữ hoa mà bạn không muốn $[officename] chuyển đổi sang chỉ một chữ hoa đầu. Thí dụ, gõ « VN » để ngăn cản $[officename] chuyển đổi « VN » sang « Vn ».</ahelp>"
-#: 01010202.xhp
+#: 06040300.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3147399\n"
-"7\n"
+"06040300.xhp\n"
+"par_id3143271\n"
+"14\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/doublelist\">Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/doublelist\">Liệt kê các từ hay từ viết tắt mà bắt đầu với hai chữ hoa, và không được ta sửa chữa. Tất cả các từ bắt đầu với hai chữ hoa thì được liệt kê trong trường này.</ahelp> Để gỡ bỏ mục khỏi danh sách, lựa chọn mục, sau đó bấm nút <emph>Delete</emph>."
-#: 01010202.xhp
+#: 06040300.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3147576\n"
+"06040300.xhp\n"
+"hd_id3155503\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_WIDTH\">Displays the width for the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_WIDTH\">Hiển thị bề rộng của nhãn hay danh thiếp. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
+msgid "New"
+msgstr "Mới"
-#: 01010202.xhp
+#: 06040300.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3150774\n"
+"06040300.xhp\n"
+"par_id3147573\n"
"9\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/newdouble\">Adds the current entry to the list of exceptions.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/newdouble\">Thêm mục nhập hiện thời vào danh sách ngoại lệ.</ahelp>"
-#: 01010202.xhp
+#: 06040300.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3149827\n"
+"06040300.xhp\n"
+"hd_id3149762\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HEIGHT\">Displays the height for the label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HEIGHT\">Hiển thị bề cao của nhãn hay danh thiếp. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
+msgid "AutoInclude"
+msgstr "Tự động gồm"
-#: 01010202.xhp
+#: 06040300.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3149182\n"
+"06040300.xhp\n"
+"par_id3155829\n"
"11\n"
"help.text"
-msgid "Left margin"
-msgstr "Lề trái"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"par_id3154823\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_LEFT\">Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_LEFT\">Hiển thị khoảng cách giữa cạnh bên trái của trang và cạnh bên trái của nhãn hay danh thiếp thứ nhất trên trang. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/autodouble\">Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the <emph>Correct TWo INitial CApitals</emph> option or the Capitalize<emph> first letter of every sentence</emph> option are selected in the <emph>[T]</emph> column on<link href=\"text/shared/01/06040100.xhp\" name=\"Options\"><emph>Options</emph></link> tab of this dialog. </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/autodouble\">Tự động thêm các từ hay từ viết tắt mà bắt đầu với hai chữ hoa vào danh sách ngoại lệ tương ứng. Tính năng này chỉ có tác động nếu tùy chọn <emph>Sửa HAi CHữ HOa ĐÂu TIên</emph> hay <emph>Viết hoa chữ đầu của mỗi câu</emph> được hiệu lực trong cột <emph>[T]</emph> trên thẻ <link href=\"text/shared/01/06040100.xhp\" name=\"Tùy chọn\"><emph>Tùy chọn</emph></link> của hộp thoại này. </ahelp>"
-#: 01010202.xhp
+#: 06040400.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3156346\n"
-"13\n"
+"06040400.xhp\n"
+"tit\n"
"help.text"
-msgid "Upper margin"
-msgstr "Lề trên"
+msgid "Localized Options"
+msgstr ""
-#: 01010202.xhp
+#: 06040400.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3150355\n"
-"14\n"
+"06040400.xhp\n"
+"bm_id3153899\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_UPPER\">Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_UPPER\">Hiển thị khoảng cách giữa cạnh bên trên của trang và cạnh bên trên của nhãn hay danh thiếp thứ nhất trên trang. Nếu bạn đang xác định một định dạng riêng, nhập vào đây một giá trị.</ahelp>"
+msgid "<bookmark_value>quotes; custom</bookmark_value><bookmark_value>custom quotes</bookmark_value><bookmark_value>AutoCorrect function; quotes</bookmark_value><bookmark_value>replacing;ordinal numbers</bookmark_value><bookmark_value>ordinal numbers;replacing</bookmark_value>"
+msgstr ""
-#: 01010202.xhp
+#: 06040400.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3147573\n"
+"06040400.xhp\n"
+"hd_id3153899\n"
"15\n"
"help.text"
-msgid "Columns"
-msgstr "Cột"
+msgid "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Localized Options</link>"
+msgstr "<link href=\"text/shared/01/06040300.xhp\" name=\"Ngoại lệ\">Ngoại lệ</link>"
-#: 01010202.xhp
+#: 06040400.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3153252\n"
+"06040400.xhp\n"
+"par_id3149748\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_COLUMNS\">Enter the number of labels or business cards that you want to span the width of the page.</ahelp>"
-msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_COLUMNS\">Nhập số nhãn hay danh thiếp bạn muốn thấy nằm qua toàn bề rộng của trang.</ahelp>"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"hd_id3154143\n"
-"17\n"
-"help.text"
-msgid "Rows"
-msgstr "Hàng"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"par_id3145119\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_ROWS\">Enter the number of labels or business cards that you want to span the height of the page.</ahelp>"
-msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_ROWS\">Nhập số nhãn hay danh thiếp bạn muốn thấy nằm qua toàn bề cao của trang.</ahelp>"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"hd_id3147336\n"
-"19\n"
-"help.text"
-msgid "Save"
-msgstr "Lưu"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"par_id3156152\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SW_PUSHBUTTON_TP_LAB_FMT_PB_SAVE\">Saves the current label or business card format.</ahelp>"
-msgstr "<ahelp hid=\"SW_PUSHBUTTON_TP_LAB_FMT_PB_SAVE\">Lưu định dạng hiện thời của nhãn hay danh thiếp.</ahelp>"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"hd_id3146773\n"
-"21\n"
-"help.text"
-msgid "Save Label Format"
-msgstr "Lưu định dạng nhãn"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"hd_id3154897\n"
-"23\n"
-"help.text"
-msgid "Brand"
-msgstr "Tên hãng"
+msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text."
+msgstr ""
-#: 01010202.xhp
+#: 06040400.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3155421\n"
-"24\n"
+"06040400.xhp\n"
+"par_id31537173\n"
"help.text"
-msgid "<ahelp hid=\"SW_COMBOBOX_DLG_SAVE_LABEL_CB_MAKE\">Enter or select the desired brand.</ahelp>"
-msgstr "<ahelp hid=\"SW_COMBOBOX_DLG_SAVE_LABEL_CB_MAKE\">Gõ hay chọn tên hãng đã muốn.</ahelp>"
+msgid "<ahelp hid=\".\">Select to apply the replacements while you type [T], or when you modify existing text [M].</ahelp>"
+msgstr ""
-#: 01010202.xhp
+#: 06040400.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3155180\n"
+"06040400.xhp\n"
+"hd_id3159300\n"
"25\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
-
-#: 01010202.xhp
-msgctxt ""
-"01010202.xhp\n"
-"par_id3159158\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SW_EDIT_DLG_SAVE_LABEL_ED_TYPE\">Enter or select a label type.</ahelp>"
-msgstr "<ahelp hid=\"SW_EDIT_DLG_SAVE_LABEL_ED_TYPE\">Gõ hay chọn kiểu của nhãn.</ahelp>"
-
-#: 01010300.xhp
-msgctxt ""
-"01010300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Business cards"
-msgstr "Danh thiếp"
-
-#: 01010300.xhp
-msgctxt ""
-"01010300.xhp\n"
-"hd_id3149038\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01010300.xhp\" name=\"Business cards\">Business cards</link>"
-msgstr "<link href=\"text/shared/01/01010300.xhp\" name=\"Danh thiếp\">Danh thiếp</link>"
-
-#: 01010300.xhp
-msgctxt ""
-"01010300.xhp\n"
-"par_id3149987\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertBusinessCard\">Design and create your own business cards.</ahelp> You can choose from a number of pre-defined size formats or create your own."
-msgstr "<ahelp hid=\".uno:InsertBusinessCard\">Thiết kế và tạo các danh thiếp đẹp riêng.</ahelp> Bạn có thể chọn trong một số định dạng định dạng đã xác định sẵn, hoặc tạo định dạng riêng."
-
-#: 06202000.xhp
-msgctxt ""
-"06202000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit Custom Dictionary"
-msgstr "Sửa từ điển riêng"
-
-#: 06202000.xhp
-msgctxt ""
-"06202000.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "Edit Custom Dictionary"
-msgstr "Sửa từ điển riêng"
-
-#: 06202000.xhp
-msgctxt ""
-"06202000.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "Add and delete entries that are used for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja Conversion</link>."
-msgstr "Thêm và xoá các mục nhập dùng cho chức năng <link href=\"text/shared/01/06200000.xhp\">Chuyển đổi Hangul/Hanja</link>."
-
-#: 06202000.xhp
-msgctxt ""
-"06202000.xhp\n"
-"par_idN1055F\n"
-"help.text"
-msgid "Book"
-msgstr "Sổ"
-
-#: 06202000.xhp
-msgctxt ""
-"06202000.xhp\n"
-"par_idN10563\n"
-"help.text"
-msgid "<ahelp hid=\"svx:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK\">Select the user-defined dictionary that you want to edit.</ahelp>"
-msgstr "<ahelp hid=\"svx:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK\">Chọn từ điển tự xác định mà bạn muốn chỉnh sửa.</ahelp>"
+msgid "Add non breaking space before specific punctuation marks in French text"
+msgstr ""
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN1057A\n"
+"06040400.xhp\n"
+"par_id3153173\n"
+"27\n"
"help.text"
-msgid "Original"
-msgstr "Gốc"
+msgid "Inserts a non breaking space before \";\", \"!\", \"?\" and \":\" when the character language is set to French (France, Belgium, Luxembourg, Monaco, or Switzerland) and before \":\" only when the character language is set to French (Canada)."
+msgstr ""
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN1057E\n"
+"06040400.xhp\n"
+"hd_id3159400\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"svx:ComboBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_ORIGINAL\">Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box.</ahelp> To move from the Original box to the the first text box in the Suggestions area, press Enter."
-msgstr "<ahelp hid=\"svx:ComboBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_ORIGINAL\">Chọn mục nhập trong từ điển hiện thời mà bạn muốn chỉnh sửa. Bạn cũng có thể gõ vào hộp này một mục nhập mới.</ahelp> Để dời từ hộp Gốc sang hộp văn bản thứ nhất trong vùng Góp Ý, bấm phím <item type=\"keycode\">Enter</item>."
+msgid "Format ordinal number suffixes (1st ... 1<sup>st</sup>)"
+msgstr ""
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN10596\n"
+"06040400.xhp\n"
+"par_id3154173\n"
+"27\n"
"help.text"
-msgid "Replace by character"
-msgstr "Thay thế theo ký tự"
+msgid "Formats the text characters of ordinals, such as 1st, 2nd, or 3rd, as superscripts. For example, in English text, 1st will be converted to 1<sup>st</sup>."
+msgstr ""
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN1059A\n"
+"06040400.xhp\n"
+"hd_id3154682\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_EDIT:CB_REPLACEBYCHAR\">Converts the text on a character by character basis and not on a word by word basis.</ahelp>"
-msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_EDIT:CB_REPLACEBYCHAR\">Chuyển đổi văn bản theo từng ký tự, không phải theo từng nguyên từ.</ahelp>"
+msgid "Single quotes / Double quotes"
+msgstr "Nháy đơn/Nháy đôi"
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105C9\n"
+"06040400.xhp\n"
+"par_id3152363\n"
+"18\n"
"help.text"
-msgid "Suggestions (max. 8)"
-msgstr "Góp ý (tối đa 8)"
+msgid "Specify the replacement characters to use for single or double quotation marks."
+msgstr "Ghi rõ (các) ký tự nên thay thế dấu nháy đơn hay dấu nháy đôi."
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105CD\n"
+"06040400.xhp\n"
+"hd_id3156553\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1\">Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters.</ahelp>"
-msgstr "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1\">Gõ từ đã góp ý để thay thế mục nhập được chọn trong hộp văn bản Gốc. Từ thay thế có thể chứa đến tám ký tự.</ahelp>"
+msgid "Replace"
+msgstr "Thay thế"
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105E4\n"
+"06040400.xhp\n"
+"par_id3155616\n"
+"23\n"
"help.text"
-msgid "New"
-msgstr "Mới"
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO\">Automatically replaces the default system symbol for single quotation marks with the special character that you specify.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO\">Tự động thay thế ký hiệu hệ thống mặc định cho dấu nháy đơn bằng ký tự đặc biệt bạn ghi rõ.</ahelp>"
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105E8\n"
+"06040400.xhp\n"
+"hd_id3153750\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW\">Adds the current replacement definition to the dictionary.</ahelp>"
-msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW\">Thêm vào từ điển lời xác định thay thế hiện thời.</ahelp>"
+msgid "Start quote"
+msgstr "Bắt đầu trích dẫn"
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105FF\n"
+"06040400.xhp\n"
+"par_id3152425\n"
+"12\n"
"help.text"
-msgid "Delete"
-msgstr "Xoá"
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE\">Chọn <link href=\"text/shared/01/04100000.xhp\" name=\"ký tự đặc biệt\">ký tự đặc biệt</link> mà sẽ tự động thay thế dấu mở ngoặc kép hiện thời trong tài liệu, khi bạn chọn lệnh <emph>Định dạng > Tự động sửa lỗi > Áp dụng</emph>.</ahelp>"
-#: 06202000.xhp
+#: 06040400.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN10603\n"
+"06040400.xhp\n"
+"hd_id3159233\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE\">Deletes the selected entry.</ahelp>"
-msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE\">Xoá mục nhập đã chọn.</ahelp>"
+msgid "End quote"
+msgstr "Đóng ngoặc kép"
-#: 02230500.xhp
+#: 06040400.xhp
msgctxt ""
-"02230500.xhp\n"
-"tit\n"
+"06040400.xhp\n"
+"par_id3147008\n"
+"14\n"
"help.text"
-msgid "Merge Document"
-msgstr "Trộn tài liệu"
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE\">Chọn <link href=\"text/shared/01/04100000.xhp\" name=\"ký tự đặc biệt\">ký tự đặc biệt</link> mà sẽ tự động thay thế đóng ngoặc kép hiện thời trong tài liệu, khi bạn chọn lệnh <emph>Định dạng >Tự động sửa lỗi > Áp dụng</emph>.</ahelp>"
-#: 02230500.xhp
+#: 06040400.xhp
msgctxt ""
-"02230500.xhp\n"
-"hd_id3149000\n"
-"1\n"
+"06040400.xhp\n"
+"hd_id3147089\n"
+"19\n"
"help.text"
-msgid "Merge Document"
-msgstr "Trộn tài liệu"
+msgid "Default"
+msgstr "Mặc định"
-#: 02230500.xhp
+#: 06040400.xhp
msgctxt ""
-"02230500.xhp\n"
-"par_id3154408\n"
-"2\n"
+"06040400.xhp\n"
+"par_id3166460\n"
+"20\n"
"help.text"
-msgid "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored.</ahelp></variable> Identical changes are merged automatically."
-msgstr "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Nhập khẩu vào tài liệu gốc những thay đổi được làm trong các bản sao của cùng một tài liệu.</ahelp></variable> Các thay đổi trùng thì được trộn tự động."
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD\">Resets the quotation marks to the default symbols.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD\">Đặt lại các dấu ngoặc kép về dấu mặc định.</ahelp>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
+"06040500.xhp\n"
"tit\n"
"help.text"
-msgid "Hangul/Hanja Conversion"
-msgstr "Chuyển đổi Hangul/Hanja"
+msgid "AutoCorrect context menu"
+msgstr "Trình đơn ngữ cảnh Tự động Sửa lỗi"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"bm_id3155757\n"
+"06040500.xhp\n"
+"bm_id3152823\n"
"help.text"
-msgid "<bookmark_value>converting;Hangul/Hanja</bookmark_value><bookmark_value>Hangul/Hanja</bookmark_value>"
-msgstr "<bookmark_value>chuyển đổi;Hangul/Hanja</bookmark_value><bookmark_value>Hangul/Hanja</bookmark_value>"
+msgid "<bookmark_value>AutoCorrect function; context menu</bookmark_value><bookmark_value>spellcheck; context menus</bookmark_value>"
+msgstr "<bookmark_value>chức năng Tự động Sửa lỗi; trình đơn ngữ cảnh</bookmark_value><bookmark_value>kiểm tra chính tả; trình đơn ngữ cảnh</bookmark_value>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3155757\n"
+"06040500.xhp\n"
+"hd_id3152823\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06200000.xhp\" name=\"Hangul/Hanja Conversion\">Hangul/Hanja Conversion</link>"
-msgstr "<link href=\"text/shared/01/06200000.xhp\" name=\"Chuyển đổi Hangul/Hanja\">Chuyển đổi Hangul/Hanja</link>"
+msgid "AutoCorrect context menu"
+msgstr "Trình đơn ngữ cảnh Tự động Sửa lỗi"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3146060\n"
+"06040500.xhp\n"
+"par_id3146936\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:HangulHanjaConversion\">Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul.</ahelp> The menu command can only be called if you enable Asian language support under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>, and if a text formatted in Korean language is selected."
-msgstr ""
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3150603\n"
-"3\n"
-"help.text"
-msgid "Original"
-msgstr "Gốc"
+msgid "To access this menu, right-click a misspelled word in your document. To view the misspelled words in your document, enable <emph>AutoSpellcheck</emph> icon on the Standard toolbar."
+msgstr "Để truy cập đến trình đơn này, nhấn-phải vào từ sai chính tả trong tài liệu. Để xem các từ sai chính tả trong tài liệu, hiệu lực biểu tượng <emph>Tự động Kiểm tra Chính tả</emph> trên thanh công cụ <emph>Chuẩn</emph>."
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3148520\n"
+"06040500.xhp\n"
+"hd_id3153899\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_SPELLDLG_SETWORD\">Displays the current selection.</ahelp>"
-msgstr "<ahelp hid=\"HID_SPELLDLG_SETWORD\">Hiển thị vùng chọn hiện thời.</ahelp>"
+msgid "<Replacement Suggestions>"
+msgstr "<Góp ý thay thế>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3154230\n"
+"06040500.xhp\n"
+"par_id3147000\n"
"5\n"
"help.text"
-msgid "Replace with"
-msgstr "Thay thế bằng"
+msgid "<ahelp hid=\"HID_LINGU_REPLACE\">Click the word to replace the highlighted word. Use the AutoCorrect submenu for permanent replacement.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINGU_REPLACE\">Nhấn vào từ nên thay thế từ đã tô sáng. Dùng trình đơn phụ Tự động Sửa lỗi để thay thế bền bỉ.</ahelp>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3149205\n"
+"06040500.xhp\n"
+"hd_id3153089\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_HANGULDLG_EDIT_NEWWORD\">Displays the first replacement suggestion from the dictionary.</ahelp> You can edit the suggested word or enter another word. Click the <emph>Find</emph> button to replace your original word with the corresponding replacement word."
-msgstr "<ahelp hid=\"HID_HANGULDLG_EDIT_NEWWORD\">Hiển thị lời góp ý thay thế thứ nhất của từ điển.</ahelp> Bạn có thể chỉnh sửa từ đã góp ý, hoặc nhập từ khác. Nhấn vào nút <emph>Tìm</emph> để thay thế từ gốc bằng từ thay thế tương ứng."
+msgid "Spellcheck"
+msgstr "Kiểm tra chính tả"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3154673\n"
+"06040500.xhp\n"
+"par_id3154497\n"
"7\n"
"help.text"
-msgid "Find"
-msgstr "Tìm"
+msgid "<ahelp hid=\"HID_LINGU_SPELLING_DLG\">Opens the <link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spellcheck</link> dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINGU_SPELLING_DLG\">Mở hộp thoại <link href=\"text/shared/01/06010000.xhp\" name=\"Kiểm tra Chính tả\">Kiểm tra Chính tả</link>.</ahelp>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3156560\n"
+"06040500.xhp\n"
+"hd_id3149283\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVX_MDLG_HANGULHANJA_PB_FIND\">Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja.</ahelp> Click <emph>Ignore</emph> to cancel the find function."
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVX_MDLG_HANGULHANJA_PB_FIND\">Tìm dữ liệu nhập Hangul trong từ điển, và thay thế nó bằng Hanja tương ứng.</ahelp> Nhấn vào nút <emph>Bỏ qua</emph> để dừng chạy tiến trình tìm."
+msgid "Add"
+msgstr "Thêm"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3147291\n"
+"06040500.xhp\n"
+"par_id3158405\n"
"9\n"
"help.text"
-msgid "Suggestions"
-msgstr "Góp ý"
+msgid "<ahelp hid=\"HID_LINGU_ADD_WORD\">Adds the highlighted word to a user-defined dictionary.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINGU_ADD_WORD\">Thêm từ đã tô sáng vào một từ điển tự xác định.</ahelp>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3154823\n"
+"06040500.xhp\n"
+"hd_id3152924\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVX_MDLG_HANGULHANJA_LB_SUGGESTIONS\">Displays all available replacements in the dictionary.</ahelp> If the <emph>Replace by character</emph> box is enabled, you see a grid of characters. If the <emph>Replace by character</emph> box is not checked, you see a list of words."
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVX_MDLG_HANGULHANJA_LB_SUGGESTIONS\">Hiển thị tất cả các từ thay thế có trong từ điển.</ahelp> Bật tùy chọn <emph>Thay thế theo ký tự</emph> thì bạn thấy một lưới ký tự. Không thì bạn thấy một danh sách các từ."
+msgid "Ignore all"
+msgstr "Bỏ tất cả"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3157958\n"
+"06040500.xhp\n"
+"par_id3151226\n"
"11\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "<ahelp hid=\"HID_LINGU_IGNORE_WORD\">Ignores all instances of the highlighted word in the current document.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINGU_IGNORE_WORD\">Bỏ qua mọi lần gặp từ đã tô sáng trong tài liệu hiện tại.</ahelp>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3155941\n"
+"06040500.xhp\n"
+"hd_id3157958\n"
"12\n"
"help.text"
-msgid "Click the format to display the replacements."
-msgstr "Nhấn vào định dạng để hiển thị các từ thay thế."
+msgid "AutoCorrect"
+msgstr "Tự động Sửa lỗi"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3153749\n"
+"06040500.xhp\n"
+"par_id3149177\n"
"13\n"
"help.text"
-msgid "Hangul/Hanja"
-msgstr "Hangul/Hanja"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3150775\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_SIMPLE_CONVERSION\">The original characters are replaced by the suggested characters.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_SIMPLE_CONVERSION\">Các ký tự gốc được thay thế bằng các ký tự đã góp ý.</ahelp>"
+msgid "<ahelp hid=\"HID_LINGU_AUTOCORR\">To always replace the highlighted word, click a word in the list. The word pair is stored in the replacement table under Tools - AutoCorrect Options - Replace.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINGU_AUTOCORR\">Muốn lúc nào cũng thay thế từ đã tô sáng thì nhấn vào từ trong danh sách. Cặp từ này được cất giữ trong bảng thay thế dưới <emph>Công cụ > Tự động Sửa lỗi > Thay thế</emph>.</ahelp>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3152780\n"
+"06040500.xhp\n"
+"hd_id3146797\n"
"15\n"
"help.text"
-msgid "Hanja (Hangul)"
-msgstr "Hanja (Hangul)"
+msgid "Word is <name of language>"
+msgstr "Từ bằng <tên của ngôn ngữ>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3153662\n"
+"06040500.xhp\n"
+"par_id3150443\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BRACKETED\">The Hangul part will be displayed in brackets after the Hanja part.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BRACKETED\">Phần Hangul sẽ được hiển thị giữa dấu ngoặc, phía sau phần Hanja.</ahelp>"
+msgid "<ahelp hid=\"HID_LINGU_WORD_LANGUAGE\">Changes the language settings for the highlighted word, if the word is found in another dictionary.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINGU_WORD_LANGUAGE\">Thay đổi thiết lập ngôn ngữ cho từ đã tô sáng, nếu từ nằm trong từ điển khác.</ahelp>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"hd_id3150443\n"
+"06040500.xhp\n"
+"hd_id3166411\n"
"17\n"
"help.text"
-msgid "Hangul (Hanja)"
-msgstr "Hangul (Hanja)"
+msgid "Paragraph is <name of language>"
+msgstr "Đoạn văn bằng <tên của ngôn ngữ>"
-#: 06200000.xhp
+#: 06040500.xhp
msgctxt ""
-"06200000.xhp\n"
-"par_id3149192\n"
+"06040500.xhp\n"
+"par_id3148925\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BRACKETED\">The Hanja part will be displayed in brackets after the Hangul part.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BRACKETED\">Phần Hanja sẽ được hiển thị giữa dấu ngoặc, phía sau phần Hangul.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3150119\n"
-"19\n"
-"help.text"
-msgid "Hanja as ruby text above"
-msgstr "Hanja dạng văn bản Ruby bên trên"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3154173\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_ABOVE\">The Hanja part will be displayed as ruby text above the Hangul part.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_ABOVE\">Phần Hanja sẽ được hiển thị dưới dạng văn bản Ruby bên trên phần Hangul.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3159400\n"
-"21\n"
-"help.text"
-msgid "Hanja as ruby text below"
-msgstr "Hanja dạng văn bản Ruby bên dưới"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3156155\n"
-"22\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BELOW\">The Hanja part will be displayed as ruby text below the Hangul part.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BELOW\">Phần Hanja sẽ được hiển thị dưới dạng văn bản Ruby bên dưới phần Hangul.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3150085\n"
-"23\n"
-"help.text"
-msgid "Hangul as ruby text above"
-msgstr "Hangul dạng văn bản Ruby bên trên"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3150771\n"
-"24\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_ABOVE\">The Hangul part will be displayed as ruby text above the Hanja part.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_ABOVE\">Phần Hangul sẽ được hiển thị dưới dạng văn bản Ruby bên trên phần Hanja.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3155831\n"
-"25\n"
-"help.text"
-msgid "Hangul as ruby text below"
-msgstr "Hangul dạng văn bản Ruby bên dưới"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3157909\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BELOW\">The Hangul part will be displayed as ruby text below the Hanja part.</ahelp>"
-msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BELOW\">Phần Hangul sẽ được hiển thị dưới dạng văn bản Ruby bên dưới phần Hanja.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3148826\n"
-"27\n"
-"help.text"
-msgid "Conversion"
-msgstr "Chuyển đổi"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3159157\n"
-"28\n"
-"help.text"
-msgid "Normally in a mixed text selection made of Hangul and Hanja characters, all Hangul characters will be converted to Hanja and all Hanja characters will be converted to Hangul. If you want to convert a mixed text selection only in one direction, use the following conversion options."
-msgstr "Bình thường, trong văn bản đã chọn mà chứa các ký tự hỗn hợp Hangul và Hanja, tất cả các ký tự Hangul sẽ được chuyển đổi sang Hanja, và ngược lại. Muốn chuyển đổi văn bản đã chọn kiểu hỗn hợp theo chỉ một hướng thì dùng những tùy chọn chuyển đổi theo đây."
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3153585\n"
-"29\n"
-"help.text"
-msgid "Hangul only"
-msgstr "Chỉ Hangul"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3154142\n"
-"30\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANGUL_ONLY\">Check to convert only Hangul. Do not convert Hanja.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANGUL_ONLY\">Bật tùy chọn này để chuyển đổi chỉ các ký tự Hangul. Không chuyển đổi ký tự Hanja.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3150823\n"
-"31\n"
-"help.text"
-msgid "Hanja only"
-msgstr "Chỉ Hanja"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3156023\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANJA_ONLY\">Check to convert only Hanja. Do not convert Hangul.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANJA_ONLY\">Bật tùy chọn này để chuyển đổi chỉ các ký tự Hanja. Không chuyển đổi ký tự Hangul.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3152360\n"
-"33\n"
-"help.text"
-msgid "Ignore"
-msgstr "Bỏ qua"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3153896\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNORE\">No changes will be made to the current selection. The next word or character will be selected for conversion.</ahelp>"
-msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNORE\">Không có thay đổi sẽ được làm trong vùng chọn hiện thời. Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3148550\n"
-"35\n"
-"help.text"
-msgid "Always Ignore"
-msgstr "Bỏ qua suốt"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3154937\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNOREALL\">No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically.</ahelp> The next word or character will be selected for conversion. The list of ignored text is valid for the current $[officename] session."
-msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNOREALL\">Không có thay đổi sẽ được làm trong vùng chọn hiện thời, và khi nào phát hiện cùng vùng chọn này, nó sẽ tự động được bỏ qua.</ahelp> Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi. Danh sách văn bản bị bỏ qua cũng hợp trong toàn phiên chạy $[officename] hiện thời."
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3151056\n"
-"37\n"
-"help.text"
-msgid "Replace"
-msgstr "Thay thế"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3148403\n"
-"38\n"
-"help.text"
-msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGE\">Replaces the selection with the suggested characters or word according to the format options.</ahelp> The next word or character will be selected for conversion."
-msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGE\">Thay thế vùng chọn bằng các ký tự hay từ đã góp ý, tùy theo các tùy chọn định dạng.</ahelp> Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi."
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3153360\n"
-"39\n"
-"help.text"
-msgid "Always Replace"
-msgstr "Thay thế suốt"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3153338\n"
-"40\n"
-"help.text"
-msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGEALL\">Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically.</ahelp> The next word or character will be selected for conversion. The list of replacement text is valid for the current $[officename] session."
-msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGEALL\">Thay thế vùng chọn bằng các ký tự hay từ đã góp ý, tùy theo các tùy chọn định dạng. Khi nào phát hiện cùng vùng chọn này, nó sẽ tự động được bỏ qua.</ahelp> Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi. Danh sách văn bản bị bỏ qua cũng hợp trong toàn phiên chạy $[officename] hiện thời."
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3149290\n"
-"41\n"
-"help.text"
-msgid "Replace by character"
-msgstr "Thay thế theo ký tự"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3145154\n"
-"42\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_REPLACE_BY_CHARACTER\">Check to move character-by-character through the selected text. If not checked, full words are replaced.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_REPLACE_BY_CHARACTER\">Bật tùy chọn này để chuyển theo từng ký tự qua văn bản đã chọn. Không thì thay thế nguyên từ.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_idN10969\n"
-"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_idN1096D\n"
-"help.text"
-msgid "<ahelp hid=\"HID_HANGULHANJA_OPT_DLG\">Opens the <link href=\"text/shared/01/06201000.xhp\">Hangul/Hanja Options</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_HANGULHANJA_OPT_DLG\">Mở hộp thoại <link href=\"text/shared/01/06201000.xhp\">Tùy chọn Hangul/Hanja</link>.</ahelp>"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"hd_id3149807\n"
-"43\n"
-"help.text"
-msgid "Close"
-msgstr "Đóng"
-
-#: 06200000.xhp
-msgctxt ""
-"06200000.xhp\n"
-"par_id3155743\n"
-"44\n"
-"help.text"
-msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_CLOSE\">Closes the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_CLOSE\">Đóng hộp thoại.</ahelp>"
+msgid "<ahelp hid=\"HID_LINGU_PARA_LANGUAGE\">Changes the language setting for the paragraph that contains the highlighted word, if the word is found in another dictionary.</ahelp>"
+msgstr "<ahelp hid=\"HID_LINGU_PARA_LANGUAGE\">Thay đổi thiết lập ngôn ngữ cho đoạn văn chứa từ đã tô sáng, nếu từ nằm trong từ điển khác.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
+"06040600.xhp\n"
"tit\n"
"help.text"
-msgid "ImageMap Editor"
-msgstr "Sửa đồ thị ảnh"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "ImageMap Editor"
-msgstr "Sửa đồ thị ảnh"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3159194\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"imagemaptext\"><ahelp hid=\"SVX:FLOATINGWINDOW:RID_SVXDLG_IMAP\">Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots.</ahelp></variable>"
-msgstr "<variable id=\"imagemaptext\"><ahelp hid=\"SVX:FLOATINGWINDOW:RID_SVXDLG_IMAP\">Cho bạn có khả năng đính địa chỉ URL kèm vùng riêng (được gọi là điểm nóng) trên một ảnh hay nhóm các ảnh. Sơ đồ ảnh là một nhóm chứa một hay nhiều điểm nóng.</ahelp></variable>"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3149751\n"
-"3\n"
-"help.text"
-msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot."
-msgstr "Bạn có khả năng vẽ ba kiểu điểm nóng: hình chữ nhật, hình bầu dục và hình đa giác. Khi bạn nhấn vào một điểm nóng nào đó, địa chỉ URL của nó được mở trong cửa sổ hay khung bạn ghi rõ trong trình duyệt Web. Cũng có thể ghi rõ chuỗi được hiển thị khi con trỏ nằm trên điểm nóng."
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3154317\n"
-"5\n"
-"help.text"
-msgid "Apply"
-msgstr "Áp dụng"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3150506\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_APPLY\">Applies the changes that you made to the image map.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_APPLY\">Áp dụng các thay đổi bạn đã làm trên sơ đồ ảnh.</ahelp>"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3149811\n"
-"help.text"
-msgid "<image id=\"img_id3147275\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147275\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147275\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147275\">Biểu tượng</alt></image>"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153321\n"
-"6\n"
-"help.text"
-msgid "Apply"
-msgstr "Áp dụng"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3149579\n"
-"8\n"
-"help.text"
-msgid "Open"
-msgstr "Mở"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3155829\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_OPEN\">Loads an existing image map in the <emph>MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_OPEN\">Nạp một sơ đồ ảnh đã tồn tại theo định dạng tập tin <emph>MAP-CERN, MAP-NCSA</emph> hay <emph>SIP StarView ImageMap</emph>.</ahelp>"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Biểu tượng</alt></image>"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3159158\n"
-"9\n"
-"help.text"
-msgid "Open"
-msgstr "Mở"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3147618\n"
-"11\n"
-"help.text"
-msgid "Save"
-msgstr "Lưu"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153626\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_SAVEAS\">Saves the image map in the<emph> MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_SAVEAS\">Lưu sơ đồ ảnh theo định dạng tập tin <emph>MAP-CERN, MAP-NCSA</emph> hay <emph>SIP StarView ImageMap</emph>.</ahelp>"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3154280\n"
-"help.text"
-msgid "<image id=\"img_id3154923\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154923\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154923\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154923\">Biểu tượng</alt></image>"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3152772\n"
-"12\n"
-"help.text"
-msgid "Save"
-msgstr "Lưu"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3150791\n"
-"14\n"
-"help.text"
-msgid "Select"
-msgstr "Chọn"
+msgid "Word Completion"
+msgstr "Điền nốt từ"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3154073\n"
-"16\n"
+"06040600.xhp\n"
+"hd_id3148882\n"
+"92\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_SELECT\">Selects a hotspot in the image map for editing.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_SELECT\">Trên sơ đồ ảnh, chọn một điểm nóng để chỉnh sửa.</ahelp>"
+msgid "<link href=\"text/shared/01/06040600.xhp\" name=\"Word Completion\">Word Completion</link>"
+msgstr "<link href=\"text/shared/01/06040600.xhp\" name=\"Điền nốt từ\">Điền nốt từ</link>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3156214\n"
+"06040600.xhp\n"
+"par_id3153624\n"
+"93\n"
"help.text"
-msgid "<image id=\"img_id3153192\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153192\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153192\">Biểu tượng</alt></image>"
+msgid "Set the options for completing frequently occurring words while you type."
+msgstr "Đặt các tùy chọn về chức năng điền nốt từ hay gặp trong khi bạn gõ."
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153351\n"
-"15\n"
+"06040600.xhp\n"
+"hd_id3154514\n"
+"94\n"
"help.text"
-msgid "Select"
-msgstr "Chọn"
+msgid "Enable word completion"
+msgstr "Bật điền nốt từ"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3149807\n"
-"17\n"
+"06040600.xhp\n"
+"par_id3156153\n"
+"95\n"
"help.text"
-msgid "Rectangle"
-msgstr "Chữ nhật"
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV\">Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV\">Cất giữ các từ hay dùng, và tự động điền nốt từ sau khi bạn gõ ba chữ tương ứng với ba chữ thứ nhất của từ đã cất giữ.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150870\n"
-"19\n"
+"06040600.xhp\n"
+"hd_id3150978\n"
+"100\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_RECT\">Draws a rectangular hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_RECT\">Vẽ một điểm nóng hình chữ nhật theo hộp bạn kéo trên ảnh. Một khi vẽ thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
+msgid "Append space"
+msgstr "Phụ thêm dấu cách"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150769\n"
+"06040600.xhp\n"
+"par_id3153700\n"
+"101\n"
"help.text"
-msgid "<image id=\"img_id3154297\" src=\"cmd/sc_rect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154297\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154297\" src=\"cmd/sc_rect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154297\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_APPEND_SPACE\">If you do not add punctuation after the word, $[officename] adds a space.</ahelp> The space is added as soon as you begin typing the next word."
+msgstr "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_APPEND_SPACE\">Nếu bạn không thêm dấu chấm câu vào từ, $[officename] sẽ thêm một dấu cách.</ahelp> Dấu cách này được thêm một khi bạn bắt đầu gõ từ kế tiếp."
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3157894\n"
-"18\n"
+"06040600.xhp\n"
+"hd_id3150771\n"
+"102\n"
"help.text"
-msgid "Rectangle"
-msgstr "Chữ nhật"
+msgid "Show as tip"
+msgstr "Hiển thị dạng lời gợi ý"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3153518\n"
-"20\n"
+"06040600.xhp\n"
+"par_id3149819\n"
+"103\n"
"help.text"
-msgid "Ellipse"
-msgstr "Bầu dục"
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP\">Displays the completed word as a Help Tip.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP\">Hiển thị từ đã điền nốt dưới dạng lời Gợi ý Trợ giúp.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3145591\n"
-"22\n"
+"06040600.xhp\n"
+"hd_id3154046\n"
+"96\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_CIRCLE\">Draws an elliptical hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_CIRCLE\">Vẽ một điểm nóng hình bầu dục theo hộp bạn kéo trên ảnh. Một khi vẽ thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
+msgid "Collect words"
+msgstr "Thu thập từ"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3155308\n"
+"06040600.xhp\n"
+"par_id3155449\n"
+"97\n"
"help.text"
-msgid "<image id=\"img_id3154011\" src=\"cmd/sc_ellipse.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154011\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154011\" src=\"cmd/sc_ellipse.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154011\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT\">Adds the frequently used words to a list. To remove a word from the Word Completion list, select the word, and then click<emph> Delete Entry</emph>.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT\">Thêm các từ hay dùng vào danh sách. Để gỡ bỏ từ khỏi danh sách Điền Nốt Từ, lựa chọn từ đó, sau đó nhấn vào nút <emph>Xoá mục</emph>.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153212\n"
-"21\n"
+"06040600.xhp\n"
+"hd_id3156193\n"
+"98\n"
"help.text"
-msgid "Ellipse"
-msgstr "Bầu dục"
+msgid "When closing a document, remove the words collected from it from the list"
+msgstr "Khi đóng một tài liệu, gỡ bỏ những từ lấy từ tài liệu ra khỏi danh sách"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3153573\n"
-"23\n"
+"06040600.xhp\n"
+"par_id3158430\n"
+"99\n"
"help.text"
-msgid "Polygon"
-msgstr "Đa giác"
+msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_KEEP_LIST\">When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_KEEP_LIST\">Khi bật, danh sách sẽ bị xóa khi bạn đóng tài liệu hiện hành. Khi tắt, danh sách hoàn thành từ vẫn sẵn dùng cho những tài liệu khác sau khi bạn đã đóng tài liệu hiện hành. Danh sách tồn tại cho đến khi bạn thoát khỏi %PRODUCTNAME.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153190\n"
-"25\n"
+"06040600.xhp\n"
+"hd_id3149580\n"
+"104\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLY\">Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_POLY\">Vẽ một điểm nóng hình đa giác trên ảnh. Nhấn vào biểu tượng này, kéo trên ảnh, sau đó nhấn chuột lại để xác định một mặt của hình đa giác. Di chuyển con trỏ sang vị trí dự định kết thúc mặt kế tiếp, rồi nhấn chuột lần nữa. Lặp lại đến khi bạn đã vẽ tất cả các mặt của hình đa giác. Một khi vẽ xong, nhấn-đôi để đóng hình đa giác. Sau đó thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
+msgid "Accept with"
+msgstr "Chấp nhận bằng"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3148577\n"
+"06040600.xhp\n"
+"par_id3153061\n"
+"105\n"
"help.text"
-msgid "<image id=\"img_id3156005\" src=\"cmd/sc_polygon.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156005\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156005\" src=\"cmd/sc_polygon.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156005\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY\">Select the key that you want to use to accept the automatic word completion.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY\">Chọn khoá bạn muốn dùng để chấp nhận chức năng tự động điền nốt từ.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153364\n"
-"24\n"
+"06040600.xhp\n"
+"par_idN106F8\n"
"help.text"
-msgid "Polygon"
-msgstr "Đa giác"
+msgid "Press Esc to decline the word completion."
+msgstr "Bấm phím <item type=\"keycode\">Esc</item> để từ chối điền nốt từ."
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3153140\n"
-"41\n"
+"06040600.xhp\n"
+"hd_id3151245\n"
+"84\n"
"help.text"
-msgid "Freeform Polygon"
-msgstr "Đa giác có dạng tự do"
+msgid "Min. word length"
+msgstr "Bề dài từ tiểu"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3147046\n"
-"42\n"
+"06040600.xhp\n"
+"par_id3145609\n"
+"85\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_FREEPOLY\">Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_FREEPOLY\">Vẽ một điểm nóng dựa vào hình đa giác có dạng tự do. Nhấn vào biểu tượng này, sau đó di chuyển con trỏ sang vị trí bạn muốn bắt đầu vẽ điểm nóng. Kéo một đường có dạng tự do, sau đó buông nút ra để đóng hình. Sau đó thì bạn có thể nhập <emph>Địa chỉ và Chuỗi</emph> cho điểm nóng này, sau đó chọn <emph>Khung</emph> trong đó bạn muốn mở địa chỉ URL này.</ahelp>"
+msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN\">Enter the minimum word length for a word to become eligible for the word completion feature.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN\">Nhập chiều dài từ tối thiểu cần thiết để dùng tính năng điền nốt từ.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153877\n"
+"06040600.xhp\n"
+"hd_id3154758\n"
+"86\n"
"help.text"
-msgid "<image id=\"img_id3148386\" src=\"cmd/sc_freeline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148386\" src=\"cmd/sc_freeline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148386\">Biểu tượng</alt></image>"
+msgid "Max. entries"
+msgstr "Số mục đại"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3159128\n"
-"43\n"
+"06040600.xhp\n"
+"par_id3159414\n"
+"87\n"
"help.text"
-msgid "Freeform Polygon"
-msgstr "Đa giác có dạng tự do"
+msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES\">Enter the maximum number of words that you want to store in the Word Completion list.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES\">Nhập số từ tối đa bạn muốn cất giữ trong danh sách Điền Nốt Từ.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3145251\n"
-"44\n"
+"06040600.xhp\n"
+"hd_id3147265\n"
+"106\n"
"help.text"
-msgid "Edit Points"
-msgstr "Sửa điểm"
+msgid "Word Completion list"
+msgstr "Danh sách Điền Nốt Từ"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153745\n"
-"45\n"
+"06040600.xhp\n"
+"par_id3152773\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYEDIT\">Lets you change the shape of the selected hotspot by editing the anchor points.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_POLYEDIT\">Cho phép bạn sửa đổi hình của điểm nóng đã chọn, bằng cách chỉnh sửa điểm neo.</ahelp>"
+msgid "<ahelp hid=\"OFFMGR:MULTILISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES\">Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\".</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:MULTILISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES\">Liệt kê các từ đã thu thập. Danh sách có tác động đến khi bạn đóng tài liệu hiện tại. Để làm cho danh sách sẵn sàng cho các tài liệu khác trong phiên đang chạy, bật tùy chọn <emph>Khi đóng một tài liệu, lưu danh sách để dùng trong các tài liệu khác.</emph>.</ahelp>"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3145801\n"
+"06040600.xhp\n"
+"par_id3156423\n"
+"112\n"
"help.text"
-msgid "<image id=\"img_id3150113\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150113\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150113\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150113\">Biểu tượng</alt></image>"
+msgid "If the automatic spellcheck option is enabled, only the words that are recognized by the spellcheck are collected."
+msgstr "Hiệu lực chức năng tự động kiểm tra chính tả thì chỉ thu thập những từ nhận ra bởi tiến trình kiểm tra chính tả."
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153416\n"
-"46\n"
+"06040600.xhp\n"
+"hd_id3144434\n"
+"110\n"
"help.text"
-msgid "Edit points"
-msgstr "Sửa điểm"
+msgid "Delete Entry"
+msgstr "Xoá mục"
-#: 02220000.xhp
+#: 06040600.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3155600\n"
-"47\n"
+"06040600.xhp\n"
+"par_id3153351\n"
+"111\n"
"help.text"
-msgid "Move Points"
-msgstr "Dời điểm"
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES\">Removes the selected word or words from the Word Completion list.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES\">Gỡ bỏ (các) từ đã chọn khỏi danh sách Điền Nốt Từ.</ahelp>"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3151318\n"
-"48\n"
+"06040700.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYMOVE\">Lets you move the individual anchor points of the selected hotspot.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_POLYMOVE\">Cho phép bạn di chuyển mỗi điểm neo của điểm nóng đã chọn.</ahelp>"
+msgid "Smart Tags"
+msgstr "Thẻ khéo"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3146971\n"
+"06040700.xhp\n"
+"bm_id9057588\n"
"help.text"
-msgid "<image id=\"img_id3148570\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148570\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148570\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148570\">Biểu tượng</alt></image>"
+msgid "<bookmark_value>smart tag configuration</bookmark_value>"
+msgstr "<bookmark_value>cấu hình thẻ khéo</bookmark_value>"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153839\n"
-"49\n"
+"06040700.xhp\n"
+"hd_id3563951\n"
"help.text"
-msgid "Move Points"
-msgstr "Dời điểm"
+msgid "Smart Tags"
+msgstr "Thẻ khéo"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3145162\n"
-"50\n"
+"06040700.xhp\n"
+"par_id1827448\n"
"help.text"
-msgid "Insert Points"
-msgstr "Chèn điểm"
+msgid "<ahelp hid=\".\">When you have installed at least one Smart Tag extension, you see the Smart Tags page.</ahelp>"
+msgstr "<ahelp hid=\".\">Một khi bạn cài đặt một phần mở rộng Thẻ Khéo, bạn cũng thấy trang Thẻ Khéo.</ahelp>"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3156355\n"
-"51\n"
+"06040700.xhp\n"
+"hd_id686666\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYINSERT\">Adds an anchor point where you click on the outline of the hotspot.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_POLYINSERT\">Thêm một điểm neo vào vị trí ở đó bạn nhận chuột trên nét ngoài của điểm nóng.</ahelp>"
+msgid "Label text with smart tags"
+msgstr "Nhãn văn bản bằng thẻ khéo"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150749\n"
+"06040700.xhp\n"
+"par_id3259376\n"
"help.text"
-msgid "<image id=\"img_id3146793\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146793\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146793\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146793\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Enables Smart Tags to be evaluated and shown in your text document.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiệu lực ước tính và hiển thị Thẻ Khéo trong tài liệu văn bản.</ahelp>"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3148915\n"
-"52\n"
+"06040700.xhp\n"
+"hd_id4024170\n"
"help.text"
-msgid "Insert Points"
-msgstr "Chèn điểm"
+msgid "Currently installed smart tags"
+msgstr "Thẻ khéo được cài đặt hiện thời"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3083283\n"
-"53\n"
+"06040700.xhp\n"
+"par_id2847071\n"
"help.text"
-msgid "Delete Points"
-msgstr "Xoá điểm"
+msgid "<ahelp hid=\".\">Displays all installed Smart Tags. To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị tất cả các Thẻ Khéo đã cài đặt. Để cấu hình một Thẻ Khéo, lựa chọn tên nó, sau đó tài liệu nút <emph>Thuộc tính</emph>. Không phải tất cả các Thẻ Khéo có khả năng cấu hình.</ahelp>"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3163824\n"
-"54\n"
+"06040700.xhp\n"
+"hd_id8424329\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYDELETE\">Deletes the selected anchor point.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_POLYDELETE\">Xoá điểm neo đã chọn.</ahelp>"
+msgid "Properties"
+msgstr "Thuộc tính"
-#: 02220000.xhp
+#: 06040700.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3149021\n"
+"06040700.xhp\n"
+"par_id3912167\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
+msgstr "<ahelp hid=\".\">Để cấu hình một Thẻ Khéo, lựa chọn tên nó, sau đó tài liệu nút <emph>Thuộc tính</emph>. Không phải tất cả các Thẻ Khéo có khả năng cấu hình.</ahelp>"
-#: 02220000.xhp
+#: 06050000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3147341\n"
-"55\n"
+"06050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Delete Points"
-msgstr "Xoá điểm"
+msgid "Bullets and Numbering"
+msgstr "Chấm điểm và Đánh số"
-#: 02220000.xhp
+#: 06050000.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3166448\n"
-"26\n"
+"06050000.xhp\n"
+"hd_id3149551\n"
+"1\n"
"help.text"
-msgid "Active"
-msgstr "Hoạt động"
+msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Điểm chấm và Đánh số\">Điểm chấm và Đánh số</link>"
-#: 02220000.xhp
+#: 06050000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3146918\n"
-"28\n"
+"06050000.xhp\n"
+"par_id3150146\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_ACTIVE\">Disables or enables the hyperlink for the selected hotspot. A disabled hotspot is transparent.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_ACTIVE\">Bật/tắt siêu liên kết cho điểm nóng đã chọn. Điểm nóng bị tắt cũng trong suốt thì dễ phân biệt.</ahelp>"
+msgid "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
+msgstr "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Thêm vào đoạn văn hiện tại chấm điểm hay đánh số, và cho phép bạn chỉnh sửa định dạng của chấm điểm hay đánh số.</ahelp></variable>"
-#: 02220000.xhp
+#: 06050000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3155901\n"
+"06050000.xhp\n"
+"par_id3145211\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3145232\" src=\"svx/res/id016.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145232\" src=\"svx/res/id016.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Biểu tượng</alt></image>"
+msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
+msgstr "Hộp thoại <emph>Chấm điểm và Đánh số</emph> có những thẻ này:"
-#: 02220000.xhp
+#: 06050000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3155959\n"
+"06050000.xhp\n"
+"hd_id3154984\n"
"27\n"
"help.text"
-msgid "Active"
-msgstr "Hoạt động"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3153966\n"
-"38\n"
-"help.text"
-msgid "Macro"
-msgstr "Vĩ lệnh"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bỏ </caseinline></switchinline>"
-#: 02220000.xhp
+#: 06050000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3151250\n"
-"40\n"
+"06050000.xhp\n"
+"par_id3153031\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_MACRO\">Lets you assign a macro that runs when you click the selected hotspot in a browser.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_MACRO\">Cho bạn có khả năng gán một vĩ lệnh sẽ chạy khi bạn nhấn vào điểm nóng này trong trình duyệt Web.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_NUM_RESET\">Removes the numbering or bullets from the current paragraph or from the selected paragraphs.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_NUM_RESET\">Gỡ bỏ đánh số hay chấm điểm khỏi đoạn văn hiện tại, hay khỏi các đoạn văn đã chọn.</ahelp></caseinline></switchinline>"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3145769\n"
+"06050100.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153922\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153922\">Biểu tượng</alt></image>"
+msgid "Bullets"
+msgstr "Chấm điểm"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3149239\n"
-"39\n"
+"06050100.xhp\n"
+"bm_id3150502\n"
"help.text"
-msgid "Macro"
-msgstr "Vĩ lệnh"
+msgid "<bookmark_value>bullets;paragraphs</bookmark_value> <bookmark_value>paragraphs; inserting bullets</bookmark_value> <bookmark_value>inserting; paragraph bullets</bookmark_value>"
+msgstr "<bookmark_value>chấm điểm;đoạn văn</bookmark_value><bookmark_value>đoạn văn; chèn chấm điểm</bookmark_value><bookmark_value>chèn; chấm điểm đoạn văn</bookmark_value>"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3149207\n"
-"56\n"
+"06050100.xhp\n"
+"hd_id3150502\n"
+"1\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<link href=\"text/shared/01/06050100.xhp\" name=\"Bullets\">Bullets</link>"
+msgstr "<link href=\"text/shared/01/06050100.xhp\" name=\"Chấm điểm\">Chấm điểm</link>"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150785\n"
-"57\n"
+"06050100.xhp\n"
+"par_id3155069\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_PROPERTY\">Allows you to define the properties of the selected hotspot.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_PROPERTY\">Cho phép bạn xác định các thuộc tính về điểm nóng đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different bullet styles that you can apply.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị các kiểu dáng chấm điểm khác nhau mà bạn có thể áp dụng.</ahelp>"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3159104\n"
+"06050100.xhp\n"
+"par_id0202200910514673\n"
"help.text"
-msgid "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149735\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149735\">Biểu tượng</alt></image>"
+msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
+msgstr "Chấm điểm và đánh số cho đoạn văn chỉ có trong Writer, Impress and Draw"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153196\n"
-"58\n"
+"06050100.xhp\n"
+"hd_id3153255\n"
+"3\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3144418\n"
-"29\n"
+"06050100.xhp\n"
+"par_id3155364\n"
+"4\n"
"help.text"
-msgid "Address:"
-msgstr "Địa chỉ:"
+msgid "<ahelp hid=\"hid/cui/ui/pickbulletpage/valueset\">Click the bullet style that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"hid/cui/ui/pickbulletpage/valueset\">Nhấn vào kiểu dáng chấm điểm bạn muốn dùng.</ahelp>"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3157969\n"
-"30\n"
+"06050100.xhp\n"
+"par_id3149549\n"
"help.text"
-msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAP:CBB_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to an anchor within the document, the address should be of the form \"file:///C/document_name#anchor_name\"."
-msgstr "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAP:CBB_URL\">Nhập địa chỉ URL của tập tin nên mở khi bạn nhấn vào điểm nóng đã chọn.</ahelp> Muốn nhảy tới một neo bên trong cùng tài liệu thì nhập địa chỉ có dạng « file:///C/tên_tài_liệu#tên_neo ». (Trong tài liệu HTML, dấu thăng (#) ngụ ý phần phụ của tài liệu.)"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
-#: 02220000.xhp
+#: 06050100.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3146132\n"
-"31\n"
+"06050100.xhp\n"
+"par_id3154317\n"
"help.text"
-msgid "Text:"
-msgstr "Văn bản:"
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
-#: 02220000.xhp
+#: 06050200.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3159090\n"
-"32\n"
+"06050200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAP:EDT_TEXT\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAP:EDT_TEXT\">Hãy nhập chuỗi nên hiển thị khi con trỏ để lại trên điểm nóng trong trình duyệt Web.</ahelp> Không nhập chuỗi riêng thì trình duyệt hiển thị <emph>Địa chỉ</emph> (URL)."
+msgid "Numbering Style"
+msgstr "Kiểu dáng Đánh số"
-#: 02220000.xhp
+#: 06050200.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3158445\n"
-"33\n"
+"06050200.xhp\n"
+"hd_id3146807\n"
+"1\n"
"help.text"
-msgid "Frame:"
-msgstr "Khung:"
+msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering Style\">Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050200.xhp\" name=\"Kiểu dáng Đánh số\">Kiểu dáng Đánh số</link>"
-#: 02220000.xhp
+#: 06050200.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150208\n"
-"34\n"
+"06050200.xhp\n"
+"par_id3148765\n"
+"2\n"
"help.text"
-msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name from the list."
-msgstr "Nhập tên của khung đích trong đó bạn muốn mở địa chỉ URL này. Bạn cũng có thể chọn một tên khung tiêu chuẩn trong danh sách."
+msgid "<ahelp hid=\".\">Displays the different numbering styles that you can apply.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị các kiểu dáng đánh số khác nhau mà bạn có thể áp dụng.</ahelp>"
-#: 02220000.xhp
+#: 06050200.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153231\n"
-"35\n"
+"06050200.xhp\n"
+"hd_id3147000\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"List of frame types\">List of frame types</link>"
-msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Danh sách kiểu khung\">Danh sách kiểu khung</link>"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 02220000.xhp
+#: 06050200.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3150345\n"
-"36\n"
+"06050200.xhp\n"
+"par_id3151100\n"
+"4\n"
"help.text"
-msgid "Graphic View"
-msgstr "Xem đồ họa"
+msgid "<ahelp hid=\"cui/ui/picknumberingpage/valueset\">Click the numbering style that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/picknumberingpage/valueset\">Nhấn vào kiểu dáng đánh số bạn muốn dùng.</ahelp>"
-#: 02220000.xhp
+#: 06050200.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150382\n"
-"37\n"
+"06050200.xhp\n"
+"par_id3149355\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_GRAPHWND\"/>Displays the image map, so that you can click and edit the hotspots."
-msgstr "<ahelp hid=\"HID_IMAPDLG_GRAPHWND\"/>Hiển thị sơ đồ ảnh, để cho bạn nhấn vào và chỉnh sửa các điểm nóng."
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
-#: 02220000.xhp
+#: 06050200.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150983\n"
+"06050200.xhp\n"
+"par_id3152918\n"
"help.text"
-msgid "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Controlling the ImageMap Editor With the Keyboard\">Controlling the ImageMap Editor With the Keyboard</link>"
-msgstr "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Điều khiển bằng bàn phím bộ sửa sơ đồ ảnh\">Điều khiển bằng bàn phím bộ sửa sơ đồ ảnh</link>"
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
-#: 06140102.xhp
+#: 06050300.xhp
msgctxt ""
-"06140102.xhp\n"
+"06050300.xhp\n"
"tit\n"
"help.text"
-msgid "Move Menu"
-msgstr "Chuyển trình đơn"
-
-#: 06140102.xhp
-msgctxt ""
-"06140102.xhp\n"
-"par_idN10540\n"
-"help.text"
-msgid "Move Menu"
-msgstr "Chuyển trình đơn"
-
-#: 06140102.xhp
-msgctxt ""
-"06140102.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "Menu position"
-msgstr "Vị trí trình đơn"
-
-#: 06140102.xhp
-#, fuzzy
-msgctxt ""
-"06140102.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Moves the selected menu entry up one position or down one position in the menu when you click an arrow button.</ahelp>"
-msgstr "Dời mục nhập trình đơn đã chọn lên hay xuống một vị trí trong trình đơn khi bạn nhấn vào cái nút mũi tên."
+msgid "Outline"
+msgstr "Nét ngoài"
-#: 06040000.xhp
+#: 06050300.xhp
msgctxt ""
-"06040000.xhp\n"
-"tit\n"
+"06050300.xhp\n"
+"hd_id3147543\n"
+"1\n"
"help.text"
-msgid "AutoCorrect"
-msgstr "Tự động Sửa lỗi"
+msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
+msgstr "<link href=\"text/shared/01/06050300.xhp\" name=\"Phác thảo\">Phác thảo</link>"
-#: 06040000.xhp
-#, fuzzy
+#: 06050300.xhp
msgctxt ""
-"06040000.xhp\n"
-"bm_id3153391\n"
+"06050300.xhp\n"
+"par_id3146936\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>AutoCorrect function;switching on and off</bookmark_value><bookmark_value>AutoComplete, see also AutoCorrect/AutoInput</bookmark_value>"
-msgstr "<bookmark_value>chức năng Tự động Sửa lỗi; trình đơn ngữ cảnh</bookmark_value><bookmark_value>kiểm tra chính tả; trình đơn ngữ cảnh</bookmark_value>"
+msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị các kiểu dáng khác nhau mà bạn có thể áp dụng cho danh sách phân cấp. $[officename] hỗ trợ đến chín cấp phác thảo trong phân cấp danh sách.</ahelp>"
-#: 06040000.xhp
-#, fuzzy
+#: 06050300.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3153391\n"
+"06050300.xhp\n"
+"hd_id3147000\n"
+"3\n"
"help.text"
-msgid "AutoCorrect"
-msgstr "#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nTự động Sửa lỗi\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nTự động Sửa"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 06040000.xhp
+#: 06050300.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3150838\n"
+"06050300.xhp\n"
+"par_id3155934\n"
+"4\n"
"help.text"
-msgid "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Sets the options for automatically replacing text as you type.</ahelp></variable>"
-msgstr "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Đặt các tùy chọn về chức năng tự động thay thế văn bản trong khi gõ.</ahelp></variable>"
+msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline style that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Nhấn vào kiểu dáng phác thảo bạn muốn dùng.</ahelp>"
-#: 06040000.xhp
+#: 06050300.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3147261\n"
+"06050300.xhp\n"
+"par_id3144436\n"
"help.text"
-msgid "The AutoCorrect settings are applied when you press the Spacebar after you enter a word."
-msgstr "Thiết lập Tự động Sửa lỗi được áp dụng khi bạn bấm phím dài một khi nhập từ."
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
-#: 06040000.xhp
+#: 06050300.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3153394\n"
+"06050300.xhp\n"
+"par_id3153935\n"
"help.text"
-msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - Cell Contents - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "Để bật hay tắt chức năng Tự động Sửa lỗi, trong $[officename] Calc chọn mục trình đơn <emph>Công cụ > Nội dung ô > Tự động Nhập</emph>, và trong $[officename] Writer chọn <emph>Định dạng > Tự động Định dạng > Trong khi gõ</emph>. Để áp dụng thiết lập Tự động Định dạng cho toàn tài liệu văn bản, chọn lệnh <emph>Định dạng > Tự động Định dạng > Áp dụng</emph>."
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
-#: 06040000.xhp
+#: 06050400.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3146137\n"
+"06050400.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
-msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Tự động sửa lỗi\">Tự động sửa lỗi</link>"
+msgid "Graphics"
+msgstr "Đồ họa"
-#: 04060100.xhp
+#: 06050400.xhp
msgctxt ""
-"04060100.xhp\n"
-"tit\n"
+"06050400.xhp\n"
+"hd_id0611200904373284\n"
"help.text"
-msgid "Select Source"
-msgstr "Chọn nguồn"
+msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Graphics</link>"
+msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
-#: 04060100.xhp
+#: 06050400.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3150758\n"
-"1\n"
+"06050400.xhp\n"
+"par_id0611200904373226\n"
"help.text"
-msgid "Select Source"
-msgstr "Chọn nguồn"
+msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị những đồ họa khác nhau mà bạn có thể sử dụng như điểm chấm trong danh sách điểm chấm.</ahelp>"
-#: 04060100.xhp
+#: 06050400.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3152823\n"
-"2\n"
+"06050400.xhp\n"
+"hd_id0611200904361573\n"
"help.text"
-msgid "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Selects the scanner that you want to use.</ahelp></variable>"
-msgstr "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Chọn máy quét cần dùng.</ahelp></variable>"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 05110200.xhp
+#: 06050400.xhp
msgctxt ""
-"05110200.xhp\n"
-"tit\n"
+"06050400.xhp\n"
+"par_id061120090436150\n"
"help.text"
-msgid "Italic"
-msgstr "Nghiêng"
+msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhắp vào đồ họa bạn muốn sử dụng làm điểm chấm.</ahelp>"
-#: 05110200.xhp
+#: 06050400.xhp
msgctxt ""
-"05110200.xhp\n"
-"bm_id3155182\n"
+"06050400.xhp\n"
+"hd_id061120090436157\n"
"help.text"
-msgid "<bookmark_value>text; italics</bookmark_value><bookmark_value>italic text</bookmark_value><bookmark_value>characters; italics</bookmark_value>"
-msgstr "<bookmark_value>văn bản; in nghiêng</bookmark_value><bookmark_value>văn bản in nghiêng</bookmark_value><bookmark_value>ký tự; in nghiêng</bookmark_value>"
+msgid "Link graphics"
+msgstr "Đồ họa liên kết"
-#: 05110200.xhp
+#: 06050400.xhp
msgctxt ""
-"05110200.xhp\n"
-"hd_id3155182\n"
-"1\n"
+"06050400.xhp\n"
+"par_id0611200904361575\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110200.xhp\" name=\"Italic\">Italic</link>"
-msgstr "<link href=\"text/shared/01/05110200.xhp\" name=\"Nghiêng\">Nghiêng</link>"
+msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Nếu bật, các đồ họa được chèn vào như những liên kết. Nếu tắt, các đồ họa được nhúng vào tài liệu.</ahelp>"
-#: 05110200.xhp
+#: 06050400.xhp
msgctxt ""
-"05110200.xhp\n"
-"par_id3148882\n"
-"2\n"
+"06050400.xhp\n"
+"par_id061120090437338\n"
"help.text"
-msgid "<ahelp hid=\".uno:Italic\">Makes the selected text italic. If the cursor is in a word, the entire word is made italic. If the selection or word is already italic, the formatting is removed.</ahelp>"
-msgstr "<ahelp hid=\".uno:Italic\">Chuyển đổi đoạn văn đã chọn sang chữ in nghiêng. Nếu con trỏ nằm bên trong từ, toàn từ trở thành nghiêng. Nếu vùng chọn hay từ đã chữ nghiêng, hành động đây gỡ bỏ định dạng in nghiêng.</ahelp>"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)\">Thẻ Vị trí (hộp thoại Đánh số/Chấm điểm)</link>"
-#: 05110200.xhp
+#: 06050400.xhp
msgctxt ""
-"05110200.xhp\n"
-"par_id3156069\n"
-"3\n"
+"06050400.xhp\n"
+"par_id0611200904373391\n"
"help.text"
-msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
-msgstr "Nếu con trỏ không phải bên trong từ, và chưa chọn văn bản, kiểu dáng phông được áp dụng cho chuỗi bạn gõ vào."
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)\">Thẻ Tùy chọn (hộp thoại Đánh số/Chấm điểm)</link>"
#: 06050500.xhp
msgctxt ""
@@ -40208,8 +36182,8 @@ msgctxt ""
"par_id3153935\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_LEVEL\">Select the level(s) that you want to define the formatting options for.</ahelp> The selected level is highlighted in the preview."
-msgstr "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_LEVEL\">Chọn những cấp cho chúng bạn tùy chọn xác định các tùy chọn định dạng.</ahelp> Cấp đã chọn cũng được tô sáng trong ô xem thử."
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/levell\">Select the level(s) that you want to define the formatting options for.</ahelp> The selected level is highlighted in the preview."
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/levell\">Chọn những cấp cho chúng bạn tùy chọn xác định các tùy chọn định dạng.</ahelp> Cấp đã chọn cũng được tô sáng trong ô xem thử."
#: 06050500.xhp
msgctxt ""
@@ -40226,8 +36200,8 @@ msgctxt ""
"par_id3147261\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_FMT\">Select a numbering style for the selected levels.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_FMT\">Chọn kiểu dáng đánh số trong những cấp đã chọn.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering style for the selected levels.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Chọn kiểu dáng đánh số trong những cấp đã chọn.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40478,8 +36452,8 @@ msgctxt ""
"par_id3150393\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_PREFIX\">Enter a character or the text to display in front of the number in the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_PREFIX\">Nhập một ký tự hay chuỗi cần hiển thị phía trước con số trong danh sách.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/prefix\">Enter a character or the text to display in front of the number in the list.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/prefix\">Nhập một ký tự hay chuỗi cần hiển thị phía trước con số trong danh sách.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40496,8 +36470,8 @@ msgctxt ""
"par_id3150288\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_SUFFIX\">Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_SUFFIX\">Nhập một ký tự hay chuỗi cần hiển thị phía trước con số trong danh sách. Nếu bạn muốn tạo một danh sách đánh số mà dùng kiểu dáng « 1.) », nhập « .) » vào hộp này.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Nhập một ký tự hay chuỗi cần hiển thị phía trước con số trong danh sách. Nếu bạn muốn tạo một danh sách đánh số mà dùng kiểu dáng « 1.) », nhập « .) » vào hộp này.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40514,8 +36488,8 @@ msgctxt ""
"par_id3150495\n"
"30\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_CHARFMT\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles and Formatting</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_CHARFMT\">Chọn Kiểu dáng Ký tự bạn muốn dùng trong danh sách đánh số.</ahelp> Để tạo hay chỉnh sửa một <link href=\"text/swriter/01/05130002.xhp\" name=\"Kiểu dáng Ký tự\">Kiểu dáng Ký tự</link>, mở cửa sổ <emph>Kiểu dáng và Định dạng</emph>, nhập vào biểu tượng Kiểu dáng Ký tự, nhấn-phải vào một kiểu dáng, sau đó chọn mục <emph>Mới</emph>. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles and Formatting</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
+msgstr ""
#: 06050500.xhp
msgctxt ""
@@ -40532,8 +36506,8 @@ msgctxt ""
"par_id3152881\n"
"32\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:NF_ALL_LEVEL\">Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:NF_ALL_LEVEL\">Nhập số cấp trước cần bao gồm trong kiểu dáng đánh số. Chẳng hạn, nếu bạn nhập « 2 », và cấp trước dùng kiểu dáng đánh số « A, B, C ... », lược đồ đánh số cho cấp hiện thời trở thành « A.1 ».</ahelp></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
+msgstr ""
#: 06050500.xhp
msgctxt ""
@@ -40550,8 +36524,8 @@ msgctxt ""
"par_id3146903\n"
"34\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:ED_START\">Enter a new starting number for the current level.</ahelp>"
-msgstr "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:ED_START\">Nhập con số bắt đầu mới cho cấp hiện tại.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/startat\">Enter a new starting number for the current level.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/startat\">Nhập con số bắt đầu mới cho cấp hiện tại.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40568,8 +36542,8 @@ msgctxt ""
"par_id3156060\n"
"105\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_BUL_COLOR\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_BUL_COLOR\">Chọn màu cho kiểu dáng đánh số hiện thời.</ahelp></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
+msgstr ""
#: 06050500.xhp
msgctxt ""
@@ -40586,8 +36560,8 @@ msgctxt ""
"par_id3145364\n"
"108\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_BUL_REL_SIZE\">Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph.</ahelp></defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_BUL_REL_SIZE\">Nhập hệ số theo đó bạn muốn thay đổi kích cỡ của ký tự chấm điểm tương đối với chiều cao phông của đoạn văn hiện tại.</ahelp></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/relsize\">Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph.</ahelp></defaultinline></switchinline>"
+msgstr ""
#: 06050500.xhp
msgctxt ""
@@ -40604,8 +36578,8 @@ msgctxt ""
"par_id3153144\n"
"82\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_NUM_OPTIONS:PB_BULLET\">Opens the <link href=\"text/shared/01/04100000.xhp\" name=\"Special Characters\">Special Characters</link> dialog, where you can select a bullet symbol.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_NUM_OPTIONS:PB_BULLET\">Mở hộp thoại <link href=\"text/shared/01/04100000.xhp\" name=\"Ký tự Đặc biệt\">Ký tự Đặc biệt</link>, trong đó bạn có thể chọn một ký hiệu chấm điểm.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/bullet\">Opens the <link href=\"text/shared/01/04100000.xhp\" name=\"Special Characters\">Special Characters</link> dialog, where you can select a bullet symbol.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/bullet\">Mở hộp thoại <link href=\"text/shared/01/04100000.xhp\" name=\"Ký tự Đặc biệt\">Ký tự Đặc biệt</link>, trong đó bạn có thể chọn một ký hiệu chấm điểm.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40631,8 +36605,8 @@ msgctxt ""
"par_id3152417\n"
"85\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_NUM_OPTIONS:MB_BITMAP\">Select the graphic, or locate the graphic file that you want to use as a bullet.</ahelp>"
-msgstr "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_NUM_OPTIONS:MB_BITMAP\">Chọn đồ họa, hay tìm tập tin đồ họa bạn muốn dùng làm chấm điểm.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/bitmap\">Select the graphic, or locate the graphic file that you want to use as a bullet.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/bitmap\">Chọn đồ họa, hay tìm tập tin đồ họa bạn muốn dùng làm chấm điểm.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40649,8 +36623,8 @@ msgctxt ""
"par_id3146974\n"
"87\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_WIDTH\">Enter a width for the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_WIDTH\">Nhập chiều rộng cho đồ họa.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/widthmf\">Enter a width for the graphic.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/widthmf\">Nhập chiều rộng cho đồ họa.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40667,8 +36641,8 @@ msgctxt ""
"par_id3154640\n"
"89\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_HEIGHT\">Enter a height for the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_HEIGHT\">Nhập chiều cao cho đồ họa.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/heightmf\">Enter a height for the graphic.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/heightmf\">Nhập chiều cao cho đồ họa.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40685,8 +36659,8 @@ msgctxt ""
"par_id3153097\n"
"93\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_RATIO\">Maintains the size proportions of the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_RATIO\">Bảo tồn các chiều kiểu dáng của đồ họa.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/keepratio\">Maintains the size proportions of the graphic.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/keepratio\">Bảo tồn các chiều kiểu dáng của đồ họa.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40703,8 +36677,8 @@ msgctxt ""
"par_id3147127\n"
"91\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_ORIENT\">Select the alignment option for the graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_ORIENT\">Đặt tùy chọn chỉnh canh cho đồ họa.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/orientlb\">Select the alignment option for the graphic.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/orientlb\">Đặt tùy chọn chỉnh canh cho đồ họa.</ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -40739,3747 +36713,6185 @@ msgctxt ""
"par_id3148880\n"
"99\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_SAME_LEVEL\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_SAME_LEVEL\">Tăng con số theo một cho mỗi cấp bạn tới/tạo khi đi xuống phân cấp danh sách.</ahelp></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: online_update.xhp
-#, fuzzy
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
+"06050600.xhp\n"
"tit\n"
"help.text"
-msgid "Check for Updates"
-msgstr "Kiểm tra có bản cập nhật"
+msgid "Position"
+msgstr "Vị trí"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"bm_id7647328\n"
+"06050600.xhp\n"
+"hd_id3150467\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>updates;checking manually</bookmark_value> <bookmark_value>online updates;checking manually</bookmark_value>"
-msgstr "<bookmark_value>bản cập nhật;kiểm tra bằng tay</bookmark_value><bookmark_value>bản cập nhật trực tuyến;kiểm tra bằng tay</bookmark_value>"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Vị trí\">Vị trí</link>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"hd_id315256\n"
+"06050600.xhp\n"
+"par_id3158397\n"
+"2\n"
"help.text"
-msgid "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Check for Updates</link></variable>"
-msgstr "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Kiểm tra có bản cập nhật</link></variable>"
+msgid "Sets the indent, spacing, and alignment options for the numbered or bulleted list."
+msgstr "Đặt các tùy chọn về chức năng thụt vào, giãn cách và chỉnh canh cho danh sách kiểu đánh số hay chấm điểm."
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3174230\n"
+"06050600.xhp\n"
+"par_id5004119\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark to enable the automatic check for updates. Choose %PRODUCTNAME - Online Update in the Options dialog box to disable or enable this feature.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật tùy chọn này để hiệu lực chức năng tự động kiểm tra có bản cập nhật. Chọn mục trình đơn <emph>Công cụ > Tùy chọn > %PRODUCTNAME > Cập nhật Trực tuyến</emph> để bật/tắt tính năng này.</ahelp>"
+msgid "The Position tab page looks different for documents using the new position and spacing attributes introduced with OpenOffice.org 3.0 (and used in all versions of LibreOffice), or documents using the old attributes from versions before 3.0. The new version of this tab page shows the controls \"Numbering followed by\", \"Numbering alignment\", \"Aligned at\", and \"Indent at\". The old version of this tab page that can be seen in an old numbered or bulleted list shows the controls \"Indent\", \"Width of numbering\", \"Minimum space numbering <-> text\", and \"Numbering alignment\"."
+msgstr ""
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id0116200901063996\n"
+"06050600.xhp\n"
+"hd_id3149031\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select a folder to download the files.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhắp để chọn một danh mục để tải tập tin.</ahelp>"
+msgid "Level"
+msgstr "Cấp"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id6797082\n"
+"06050600.xhp\n"
+"par_id3155755\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\">You can check for updates manually or automatically.</ahelp>"
-msgstr "<ahelp hid=\".\">Bạn có tùy chọn kiểm tra có bản cập nhật chưa một cách tự động hay thủ công.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Chọn những cấp bạn muốn sửa đổi.</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id4218878\n"
+"06050600.xhp\n"
+"hd_id6561784\n"
"help.text"
-msgid "Checking for updates will also look for updates of all installed extensions."
-msgstr "Kiểm tra có bản cập nhật chưa thì cũng kiểm tra có bản cập nhật của bất cứ phần mở rộng nào được cài đặt."
+msgid "Numbering followed by"
+msgstr "Đánh số phía trước"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id8132267\n"
+"06050600.xhp\n"
+"par_id423291\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Help - Check for Updates</item> to check manually."
-msgstr "Chọn lệnh <item type=\"menuitem\">Trợ giúp > Kiểm tra có bản cập nhật</item> để kiểm tra bằng tay."
+msgid "<ahelp hid=\".\">Select the element that will follow the numbering: a tab stop, a space, or nothing.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn phần tử nên đi theo khi đánh số : cột tab, dấu cách, hay không gì.</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id702230\n"
+"06050600.xhp\n"
+"hd_id7809686\n"
"help.text"
-msgid "You can disable or enable the automatic check in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">Online Update</link>."
-msgstr ""
+msgid "at"
+msgstr "ở"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3422345\n"
+"06050600.xhp\n"
+"par_id8177434\n"
"help.text"
-msgid "If an update is available, an icon<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Icon</alt></image> on the menu bar will notify you of the update. Click the icon to open a dialog with more information."
-msgstr "Có sẵn bản cập nhật thì một biểu tượng <image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4598inch\" height=\"0.1402inch\"><alt id=\"alt_id3155415\">Biểu tượng</alt></image> trên thanh trình đơn sẽ thông báo bạn biết về nó. Nhấn vào biểu tượng này để mở hộp thoại với nhiều thông tin hơn."
+msgid "<ahelp hid=\".\">If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position.</ahelp>"
+msgstr "<ahelp hid=\".\">Nếu bạn lựa chọn một cột tab để nằm phía số đã đánh, bạn cũng có thể nhập giá trị khác âm làm vị trí cột tab.</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9313638\n"
+"06050600.xhp\n"
+"hd_id3155583\n"
+"5\n"
"help.text"
-msgid "You will see the <link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link> dialog with some information about the online update of %PRODUCTNAME."
-msgstr "Bạn sẽ thấy hộp thoại <link href=\"text/shared/01/online_update_dialog.xhp\">Kiểm tra có bản cập nhật</link> chứa vài thông tin về tiến trình cập nhật trực tuyến %PRODUCTNAME."
+msgid "Numbering alignment"
+msgstr "Chỉnh canh đánh số"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9951780\n"
+"06050600.xhp\n"
+"par_id3153063\n"
+"15\n"
"help.text"
-msgid "Enable an Internet connection for %PRODUCTNAME."
-msgstr "Hiệu lực kết nối Internet cho %PRODUCTNAME."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numalignlb\">Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numalignlb\">Đặt phương pháp sắp hàng các ký hiệu đánh số. Hãy chọn mục « Trái » để chỉnh canh ký hiệu đánh số sẽ bắt đầu đúng ở vị trí « Canh lề ở ». Chọn mục « Phải » để chỉnh canh ký hiệu sẽ kết thúc đúng trước vị trí « Canh lề ở ». Chọn mục « Giữa » để đặt tâm trung của ký hiệu vào vị trí « Canh lề ở ».</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id6479384\n"
+"06050600.xhp\n"
+"par_id3147422\n"
+"22\n"
"help.text"
-msgid "If you need a proxy server, enter the proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy."
-msgstr ""
+msgid "The <emph>Numbering alignment</emph> option does not set the alignment of the paragraph."
+msgstr "Tùy chọn <emph>Chỉnh canh đánh số</emph> không đặt tình trạng chỉnh canh của đoạn văn."
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3639027\n"
+"06050600.xhp\n"
+"hd_id1619617\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Check for Updates</item> to check for the availability of a newer version of your office suite."
-msgstr "Chọn lệnh <item type=\"menuitem\">Kiểm tra có bản cập nhật</item> để kiểm tra có sẵn phiên bản mới của bộ ứng dụng văn phòng."
+msgid "Aligned at"
+msgstr "Canh lề ở"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3722342\n"
+"06050600.xhp\n"
+"par_id1015655\n"
"help.text"
-msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:"
-msgstr "Nếu một phiên bản mới sẵn sàng, và %PRODUCTNAME không phải được thiết lập để tự động tải về, bạn có thể chọn bật cứ hành động nào theo đây:"
+msgid "<ahelp hid=\".\">Enter the distance from the left page margin at which the numbering symbol will be aligned.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập khoảng cách giữa lề bên trái trang và vị trí ở đó cần sắp hàng các ký hiệu đánh số.</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id5106662\n"
+"06050600.xhp\n"
+"hd_id2336191\n"
"help.text"
-msgid "Download the new version."
-msgstr "Tải về phiên bản mới."
+msgid "Indent at"
+msgstr "Thụt vào ở"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id4931485\n"
+"06050600.xhp\n"
+"par_id6081728\n"
"help.text"
-msgid "Install the downloaded files."
-msgstr "Cài đặt các tập tin đã tải về."
+msgid "<ahelp hid=\".\">Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập khoảng cách giữa lề bên trái trang và vị trí bắt đầu các dòng trong đoạn văn đánh số mà theo sau dòng đầu tiên.</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9168980\n"
+"06050600.xhp\n"
+"hd_id3154422\n"
+"9\n"
"help.text"
-msgid "Abort this check for updates for now."
-msgstr "Hủy bỏ tiến trình kiểm tra đang chạy."
+msgid "Indent"
+msgstr "Thụt lề"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9766533\n"
+"06050600.xhp\n"
+"par_id3144438\n"
+"19\n"
"help.text"
-msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog."
-msgstr "Nếu %PRODUCTNAME được cấu hình để tự động tải về các tập tin, tiến trình tải về sẽ tự động khởi chạy. Tiến trình tải về vẫn còn tiếp tục, ngay cả khi bạn thu nhỏ hộp thoại."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering symbol. If the current paragraph style uses an indent, the amount you enter here is added to the indent.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Nhập khoảng cách cần để lại giữa lề bên trái của trang (hay cạnh bên trái của đối tượng văn bản) và cạnh bên trái của ký hiệu đánh số. Nếu kiểu dáng đoạn văn hiện thời cũng thụt vào, khoảng cách bạn nhập sẽ được thêm vào khoảng thụt gốc.</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id927152\n"
+"06050600.xhp\n"
+"hd_id3155179\n"
+"7\n"
"help.text"
-msgid "If automatic downloads are disabled, start the download manually."
-msgstr ""
+msgid "Relative"
+msgstr "Tương đối"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id6081728\n"
+"06050600.xhp\n"
+"par_id3146137\n"
+"17\n"
"help.text"
-msgid "If no update was found, you can close the dialog."
-msgstr "Không tìm thấy bản cập nhật thì bạn có thể đóng hộp thoại."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/relative\">Indents the current level relative to the previous level in the list hierarchy.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/relative\">Thụt vào cấp hiện tại tương ứng so với cấp trước trong phân cấp danh sách.</ahelp>"
-#: online_update.xhp
+#: 06050600.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9219641\n"
+"06050600.xhp\n"
+"hd_id3150245\n"
+"28\n"
"help.text"
-msgid "You need Administrator rights to update %PRODUCTNAME."
-msgstr "Bạn cần có quyền truy cập của quản trị để cập nhật %PRODUCTNAME."
+msgid "Width of numbering"
+msgstr "Bề rộng đánh số"
-#: 02050000.xhp
+#: 06050600.xhp
msgctxt ""
-"02050000.xhp\n"
-"tit\n"
+"06050600.xhp\n"
+"par_id3150129\n"
+"29\n"
"help.text"
-msgid "Copy"
-msgstr "Chép"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/indentatmf\">Enter the amount of space to leave between the left edge of the numbering symbol and the left edge of the text.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/indentatmf\">Nhập khoảng cách cần để lại giữa lề bên trái của ký hiệu đánh số và cạnh bên trái của văn bản.</ahelp>"
-#: 02050000.xhp
+#: 06050600.xhp
msgctxt ""
-"02050000.xhp\n"
-"bm_id3154824\n"
+"06050600.xhp\n"
+"hd_id3156194\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>clipboard; Unix</bookmark_value><bookmark_value>copying; in Unix</bookmark_value>"
-msgstr "<bookmark_value>bảng nháp; UNIX</bookmark_value><bookmark_value>sao chép; dưới UNIX</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Minimum space numbering <-> text</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Giãn cách ít nhất: đánh số và văn bản </caseinline></switchinline>"
-#: 02050000.xhp
+#: 06050600.xhp
msgctxt ""
-"02050000.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"06050600.xhp\n"
+"par_id3147574\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/shared/01/02050000.xhp\" name=\"Copy\">Copy</link>"
-msgstr "<link href=\"text/shared/01/02050000.xhp\" name=\"Chép\">Chép</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the minimum amount of space to leave between the right edge of the numbering symbol and the left edge of the text.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Nhập khoảng cách tối thiểu cần để lại giữa lề bên phải của ký hiệu đánh số và cạnh bên trái của văn bản.</ahelp></caseinline></switchinline>"
-#: 02050000.xhp
+#: 06050600.xhp
msgctxt ""
-"02050000.xhp\n"
-"par_id3154682\n"
-"2\n"
+"06050600.xhp\n"
+"hd_id3154367\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".uno:Copy\">Copies the selection to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\".uno:Copy\">Sao chép vùng chọn sang bảng nháp.</ahelp>"
+msgid "Default"
+msgstr "Mặc định"
-#: 02050000.xhp
+#: 06050600.xhp
msgctxt ""
-"02050000.xhp\n"
-"par_id3155552\n"
-"4\n"
+"06050600.xhp\n"
+"par_id3156082\n"
+"20\n"
"help.text"
-msgid "Each time you copy, the existing content of the clipboard is overwritten."
-msgstr "Ghi chú : mỗi lần bạn sao chép, nội dung trước của bảng nháp bị ghi đè. Bảng nháp chỉ chứa dữ liệu một cách tạm thời."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">Resets the indent and the spacing values to the default values.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">Đặt lại giá trị thụt vào và giãn cách về giá trị mặc định.</ahelp>"
-#: 02050000.xhp
+#: 06050600.xhp
msgctxt ""
-"02050000.xhp\n"
-"par_id3154824\n"
-"3\n"
+"06050600.xhp\n"
+"par_id3147228\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><variable id=\"unixkopieren\">$[officename] also supports the clipboard under Unix; however, you must use the $[officename] commands, such as Ctrl+C.</variable></caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><variable id=\"unixkopieren\">$[officename] cũng hỗ trợ chức năng bảng nháp dưới UNIX; tuy nhiên, bạn cần phải sử dụng các lệnh của $[officename], v.d. <item type=\"keycode\">Ctrl+C</item>.</variable></caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Paragraph alignment\">Paragraph alignment</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề đoạn văn\">Canh lề đoạn văn</link>"
-#: 04990000.xhp
+#: 06130000.xhp
msgctxt ""
-"04990000.xhp\n"
+"06130000.xhp\n"
"tit\n"
"help.text"
-msgid "Picture"
-msgstr "Ảnh"
+msgid "Macro"
+msgstr "Vĩ lệnh"
-#: 04990000.xhp
+#: 06130000.xhp
msgctxt ""
-"04990000.xhp\n"
-"hd_id3156045\n"
+"06130000.xhp\n"
+"hd_id3157552\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/04990000.xhp\" name=\"Picture\">Picture</link>"
-msgstr "<link href=\"text/shared/01/04990000.xhp\" name=\"Ảnh\">Ảnh</link>"
+msgid "Macro"
+msgstr "Vĩ lệnh"
-#: 04990000.xhp
+#: 06130000.xhp
msgctxt ""
-"04990000.xhp\n"
-"par_id3154613\n"
+"06130000.xhp\n"
+"par_id3148765\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the source for a picture that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn nguồn cho ảnh bạn muốn chèn.</ahelp>"
+msgid "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">Opens a dialog to organize macros.</ahelp></variable>"
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">Mở một hộp thoại để tổ chức các vĩ lệnh.</ahelp></variable>"
-#: 04990000.xhp
+#: 06130000.xhp
msgctxt ""
-"04990000.xhp\n"
-"hd_id3158442\n"
+"06130000.xhp\n"
+"par_id3154863\n"
"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
-msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Từ tập tin\">Từ tập tin</link>"
-
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Alignment"
-msgstr "Canh lề"
+msgid "Macro name"
+msgstr "Tên vĩ lệnh"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"bm_id3154545\n"
+"06130000.xhp\n"
+"par_id3150040\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>aligning; cells</bookmark_value><bookmark_value>cells; aligning</bookmark_value>"
-msgstr "<bookmark_value>sắp hàng; các ô bảng</bookmark_value><bookmark_value>ô bảng; canh lề</bookmark_value>"
+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 ""
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"06130000.xhp\n"
+"par_id3150902\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Alignment\">Alignment</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Canh lề\">Canh lề</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the macros that are contained in the module selected in the <emph>Macro from </emph>list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Liệt kê các vĩ lệnh nằm trong mô-đun được chọn trong danh sách <emph>Vĩ lệnh từ</emph>.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3155577\n"
-"52\n"
+"06130000.xhp\n"
+"hd_id3153750\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_ALIGNMENT\">Sets the alignment options for the contents of the current cell, or the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_ALIGNMENT\">Đặt các tùy chọn về chức năng chỉnh canh cho nội dung của ô bảng hiện tại, hay của những ô đã chọn.</ahelp>"
+msgid "Macro from / Save macro in"
+msgstr "Vĩ lệnh từ / Lưu vĩ lệnh vào"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3153124\n"
-"54\n"
+"06130000.xhp\n"
+"par_id3153394\n"
+"8\n"
"help.text"
-msgid "Horizontal"
-msgstr "Nằm ngang"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBS\">Liệt kê các thư viện và mô-đun nơi bạn có thể mở hay lưu vĩ lệnh. Để lưu vĩ lệnh cùng với một tài liệu nào đó, mở tài liệu rồi mở hộp thoại này.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3144436\n"
-"55\n"
+"06130000.xhp\n"
+"hd_id3147373\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_HORALIGN\">Select the horizontal alignment option that you want to apply to the cell contents.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_HORALIGN\">Bật tùy chọn chỉnh canh theo chiều ngang mà bạn muốn áp dụng cho nội dung của ô bảng.</ahelp>"
+msgid "Run / Save"
+msgstr "Chạy / Lưu"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3146109\n"
-"56\n"
+"06130000.xhp\n"
+"par_id3153748\n"
+"12\n"
"help.text"
-msgid "Default"
-msgstr "Mặc định"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">Runs or saves the current macro.</ahelp>"
+msgstr ""
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3166445\n"
-"57\n"
+"06130000.xhp\n"
+"hd_id3149388\n"
+"15\n"
"help.text"
-msgid "Aligns numbers to the right, and text to the left."
-msgstr "Chỉnh canh các con số theo bên phải, và văn bản theo bên trái."
+msgid "Assign"
+msgstr "Gán"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3147010\n"
-"10\n"
+"06130000.xhp\n"
+"par_id3153577\n"
+"16\n"
"help.text"
-msgid "If the <emph>Default</emph> option is selected, numbers will be aligned to the right and text will be left-justified."
-msgstr "Bật tùy chọn <emph>Mặc định</emph> thì các con số sẽ được chỉnh canh bên phải, và văn bản sẽ được chỉnh canh bên trái."
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the <link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link> dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ASSIGN\">Mở hộp thoại <link href=\"text/shared/01/06140000.xhp\" name=\"Đặc chế\">Đặc chế</link>, trong đó bạn có thể gán vĩ lệnh đã chọn cho một lệnh trình đơn, một thanh công cụ hay một dữ kiện.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3153577\n"
-"58\n"
+"06130000.xhp\n"
+"hd_id3153662\n"
+"17\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "Edit"
+msgstr "Sửa"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3150506\n"
-"59\n"
+"06130000.xhp\n"
+"par_id3150355\n"
+"18\n"
"help.text"
-msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:AlignLeft\">Aligns the contents of the cell to the left.</ahelp></variable>"
-msgstr "<variable id=\"linkstext\"><ahelp hid=\".uno:AlignLeft\">Chỉnh canh nội dung của ô bảng theo bên trái.</ahelp></variable>"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Starts the $[officename] Basic editor and opens the selected macro or dialog for editing.</ahelp>"
+msgstr ""
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3156347\n"
-"60\n"
+"06130000.xhp\n"
+"hd_id3150772\n"
+"19\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "New / Delete"
+msgstr "Mới/Xoá"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3148538\n"
+"06130000.xhp\n"
+"par_id3153257\n"
"61\n"
"help.text"
-msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:AlignRight\">Aligns the contents of the cell to the right.</ahelp></variable>"
-msgstr "<variable id=\"rechtstext\"><ahelp hid=\".uno:AlignRight\">Chỉnh canh nội dung của ô bảng theo bên phải.</ahelp></variable>"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
+msgstr ""
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3153541\n"
-"62\n"
+"06130000.xhp\n"
+"par_id3154514\n"
+"20\n"
"help.text"
-msgid "Center"
-msgstr "Giữa"
+msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
+msgstr "Để tạo một vĩ lệnh mới, chọn mô-đun « Chuẩn » (Standard) trong danh sách <emph>Vĩ lệnh từ</emph>, sau đó nhấn vào nút <emph>Mới</emph>."
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3154380\n"
-"63\n"
+"06130000.xhp\n"
+"par_id3148474\n"
+"21\n"
"help.text"
-msgid "<variable id=\"zentrierttext\"><ahelp hid=\".\">Horizontally centers the contents of the cell.</ahelp></variable>"
-msgstr "<variable id=\"zentrierttext\"><ahelp hid=\".\">Đặt nội dung ô vào giữa theo chiều ngang.</ahelp></variable>"
+msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
+msgstr "Để xoá vĩ lệnh, chọn nó rồi nhấn vào nút <emph>Xoá</emph>."
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3159166\n"
+"06130000.xhp\n"
+"hd_id3159342\n"
"64\n"
"help.text"
-msgid "Justified"
-msgstr "Canh đều"
+msgid "New Library"
+msgstr "Thư viện mới"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3153665\n"
+"06130000.xhp\n"
+"par_id3154897\n"
"65\n"
"help.text"
-msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:AlignBlock\">Aligns the contents of the cell to the left and to the right cell borders.</ahelp></variable>"
-msgstr "<variable id=\"blocktext\"><ahelp hid=\".uno:AlignBlock\">Chỉnh canh nội dung ô theo viền bên trái và bên phải của ô bảng.</ahelp></variable>"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newlibrary\">Saves the recorded macro in a new library.</ahelp>"
+msgstr ""
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN1079C\n"
+"06130000.xhp\n"
+"hd_id3154173\n"
+"66\n"
"help.text"
-msgid "Filled"
-msgstr "Điền đầy"
+msgid "New Module"
+msgstr "Mô-đun mới"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN107A0\n"
+"06130000.xhp\n"
+"par_id3155628\n"
+"67\n"
"help.text"
-msgid "Repeats the cell contents (number and text) until the visible area of the cell is filled. This feature does not work on text that contains line breaks."
-msgstr "Lặp lại nội dung ô (số và văn bản) đến khi điền đầy vùng hiện rõ của ô bảng. Tính năng này không hoạt động với văn bản chứa chỗ ngắt dòng."
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newmodule\">Saves the recorded macro in a new module.</ahelp>"
+msgstr ""
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN1079D\n"
+"06130000.xhp\n"
+"hd_id3153665\n"
+"22\n"
"help.text"
-msgid "Distributed"
-msgstr "Phân phối"
+msgid "Organizer"
+msgstr "Tổ chức"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN107A1\n"
+"06130000.xhp\n"
+"par_id3147618\n"
+"23\n"
"help.text"
-msgid "Aligns contents evenly across the whole cell. Unlike <emph>Justified</emph>, it justifies the very last line of text, too."
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">Mở hộp thoại <emph>Tổ chức Vĩ lệnh</emph>, trong đó bạn có thể thêm, chỉnh sửa hay xoá các mô-đun vĩ lệnh, hộp thoại và thư viện đã tồn tại.</ahelp>"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3145609\n"
+"24\n"
+"help.text"
+msgid "Module/Dialog tab page"
+msgstr "Trang thẻ Mô-đun/Hộp thoại"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3155923\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organiz\">Lets you manage modules or dialog boxes.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3158432\n"
-"41\n"
+"06130000.xhp\n"
+"hd_id3148944\n"
+"29\n"
"help.text"
-msgid "Indent"
-msgstr "Thụt lề"
+msgid "Module/Dialog"
+msgstr "Mô-đun/Hộp thoại"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3153716\n"
-"42\n"
+"06130000.xhp\n"
+"par_id3145068\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ALIGNMENT:ED_INDENT\">Indents from the left edge of the cell by the amount that you enter.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ALIGNMENT:ED_INDENT\">Thụt vào từ cạnh bên trái ô theo giá trị bạn nhập.</ahelp>"
+msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Liệt kê các vĩ lệnh và hộp thoại đều đã tồn tại.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3149903\n"
-"66\n"
+"06130000.xhp\n"
+"hd_id3150398\n"
+"34\n"
"help.text"
-msgid "Vertical"
-msgstr "Nằm dọc"
+msgid "Edit"
+msgstr "Sửa"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3148924\n"
-"67\n"
+"06130000.xhp\n"
+"par_id3150543\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Select the vertical alignment option that you want to apply to the cell contents.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Bật tùy chọn chỉnh canh theo chiều dọc mà bạn muốn áp dụng cho nội dung của ô bảng.</ahelp>"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Opens the selected macro or dialog for editing.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Mở vĩ lệnh hay hộp thoại đã chọn để chỉnh sửa.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3146848\n"
-"68\n"
+"06130000.xhp\n"
+"hd_id3151210\n"
+"36\n"
"help.text"
-msgid "Default"
-msgstr "Mặc định"
+msgid "New"
+msgstr "Mới"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3150822\n"
-"69\n"
+"06130000.xhp\n"
+"par_id3149291\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Aligns the cell contents to the bottom of the cell.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Chỉnh canh nội dung ô theo bên dưới.</ahelp>"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Opens the editor and creates a new module.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Mở trình soạn thảo và tạo một mô-đun mới.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3147531\n"
-"70\n"
+"06130000.xhp\n"
+"hd_id3145173\n"
+"39\n"
"help.text"
-msgid "Top"
-msgstr "Trên"
+msgid "New"
+msgstr "Mới"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3145085\n"
-"71\n"
+"06130000.xhp\n"
+"par_id3150767\n"
+"40\n"
"help.text"
-msgid "<variable id=\"obentext\"><ahelp hid=\".uno:AlignTop\">Aligns the contents of the cell to the upper edge of the cell.</ahelp></variable>"
-msgstr "<variable id=\"obentext\"><ahelp hid=\".uno:AlignTop\">Chỉnh canh nội dung ô theo cạnh bên trên.</ahelp></variable>"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Opens the editor and creates a new dialog.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Mở trình soạn thảo và tạo một hộp thoại mới.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3156343\n"
-"72\n"
+"06130000.xhp\n"
+"hd_id3151177\n"
+"42\n"
"help.text"
-msgid "Bottom"
-msgstr "Dưới"
+msgid "Libraries tab page"
+msgstr "Trang thẻ Thư viện"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3152813\n"
-"26\n"
+"06130000.xhp\n"
+"par_id3156281\n"
+"43\n"
"help.text"
-msgid "<variable id=\"untentext\"><ahelp hid=\".\">Aligns the contents of the cell to the lower edge of the cell.</ahelp></variable>"
-msgstr "<variable id=\"untentext\"><ahelp hid=\".\">Chỉnh canh nội dung ô theo cạnh bên dưới.</ahelp></variable>"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_DELETE\">Lets you manage the macro libraries for the current application and any open documents.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_DELETE\">Cho bạn có khả năng quản lý các thư viện vĩ lệnh cho ứng dụng hiện tại và bất cứ tài liệu nào còn mở.</ahelp>"
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3151106\n"
-"73\n"
+"06130000.xhp\n"
+"hd_id3144760\n"
+"44\n"
"help.text"
-msgid "Middle"
-msgstr "Giữa"
+msgid "Location"
+msgstr "Vị trí"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151210\n"
-"74\n"
+"06130000.xhp\n"
+"par_id3150290\n"
+"45\n"
"help.text"
-msgid "<variable id=\"mittetext\"><ahelp hid=\".uno:AlignVCenter\">Vertically centers the contents of the cell.</ahelp></variable>"
-msgstr "<variable id=\"mittetext\"><ahelp hid=\".uno:AlignVCenter\">Đặt nội dung của ô bảng vào giữa theo chiều dọc.</ahelp></variable>"
+msgid "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Select the application or the document containing the macro libraries that you want to organize.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Chọn ứng dụng hay tài liệu chứa các thư viện vĩ lệnh bạn muốn tổ chức.</ahelp>"
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3151107\n"
+"06130000.xhp\n"
+"hd_id3159149\n"
+"46\n"
"help.text"
-msgid "Justified"
-msgstr "Canh đều"
+msgid "Library"
+msgstr "Thư viện"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151211\n"
+"06130000.xhp\n"
+"par_id3147500\n"
+"47\n"
"help.text"
-msgid "Aligns the contents of the cell to the top and to the bottom cell borders."
-msgstr ""
+msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the existing macro libraries for the current application and any open documents.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Liệt kê các thư viện vĩ lệnh đã tồn tại cho ứng dụng hiện tại và bất cứ tài liệu nào còn mở.</ahelp>"
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3151108\n"
+"06130000.xhp\n"
+"hd_id3157320\n"
+"48\n"
"help.text"
-msgid "Distributed"
-msgstr "Phân phối"
+msgid "Edit"
+msgstr "Sửa"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151212\n"
+"06130000.xhp\n"
+"par_id3150868\n"
+"49\n"
"help.text"
-msgid "Same as <emph>Justified</emph>, unless the text orientation is vertical. Then it behaves similarly, than horizontal <emph>Distributed</emph> setting, i.e. the very last line is justified, too."
-msgstr ""
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Mở trình soạn thảo Basic của $[officename], để bạn có thể chỉnh sửa thư viện đã chọn.</ahelp>"
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3154154\n"
+"06130000.xhp\n"
+"hd_id3153104\n"
+"50\n"
+"help.text"
+msgid "Password"
+msgstr "Mật khẩu"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3154299\n"
"51\n"
"help.text"
-msgid "Text orientation"
-msgstr "Hướng của văn bản"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Assigns or edits the <link href=\"text/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Gán hay chỉnh sửa <link href=\"text/shared/01/06130100.xhp\" name=\"mật khẩu\">mật khẩu</link> cho thư viện đã chọn.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151380\n"
-"30\n"
+"06130000.xhp\n"
+"hd_id3147502\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignVCenter\">Sets the text orientation of the cell contents.</ahelp>"
-msgstr "<ahelp hid=\".uno:AlignVCenter\">Đặt hướng văn bản của nội dung ô bảng.</ahelp>"
+msgid "New"
+msgstr "Mới"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3147085\n"
-"49\n"
+"06130000.xhp\n"
+"par_id3149560\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_DIAL\">Click in the dial to set the text orientation.</ahelp>"
-msgstr "<ahelp hid=\"HID_ALIGNMENT_CTR_DIAL\">Nhấn vào đĩa để đặt hướng văn bản.</ahelp>"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Tạo một thư viện mới.</ahelp>"
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3150449\n"
-"45\n"
+"06130000.xhp\n"
+"hd_id3153770\n"
+"56\n"
"help.text"
-msgid "Degrees"
-msgstr "Độ"
+msgid "Name"
+msgstr "Tên"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3153194\n"
-"46\n"
+"06130000.xhp\n"
+"par_id3153726\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_ALIGNMENT_NF_DEGREES\">Enter the rotation angle for the text in the selected cell(s). A positive number rotates the text to the left and a negative number rotates the text to the right.</ahelp>"
-msgstr "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_ALIGNMENT_NF_DEGREES\">Nhập góc xoay cho văn bản trong những ô đã chọn. Con số dương thì xoay văn bản theo ngược chiều, còn con số âm xoay văn bản theo xuôi chiều.</ahelp>"
+msgid "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Enter a name for the new library or module.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Nhập tên cho thư viện hay mô-đun mới.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3150497\n"
-"75\n"
+"06130000.xhp\n"
+"hd_id3154693\n"
+"54\n"
"help.text"
-msgid "Reference edge"
-msgstr "Cạnh tham chiếu"
+msgid "Import"
+msgstr "Nhập"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3154069\n"
-"76\n"
+"06130000.xhp\n"
+"par_id3147441\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_BORDER_LOCK\">Specify the cell edge from which to write the rotated text.</ahelp>"
-msgstr "<ahelp hid=\"HID_ALIGNMENT_CTR_BORDER_LOCK\">Ghi rõ cạnh ô từ đó cần ghi văn bản đã xoay.</ahelp>"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Hãy tìm thư viện Basic $[officename] bạn muốn thêm vào danh sách hiện thời, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3147299\n"
-"78\n"
+"06130000.xhp\n"
+"par_idN10A39\n"
"help.text"
-msgid "<emph>Text Extension From Lower Cell Border:</emph> Writes the rotated text from the bottom cell edge outwards."
-msgstr "<emph>Kéo dài văn bản từ viền ô dưới:</emph> ghi văn bản đã xoay từ cạnh bên dưới ô ra phía ngoài."
+msgid "<variable id=\"script\">Scripts </variable>"
+msgstr "<variable id=\"script\">Văn lệnh</variable>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3149561\n"
-"79\n"
+"06130000.xhp\n"
+"par_idN109BB\n"
"help.text"
-msgid "<emph>Text Extension From Upper Cell Border:</emph> Writes the rotated text from the top cell edge outwards."
-msgstr "<emph>Kéo dài văn bản từ viền ô trên:</emph> ghi văn bản đã xoay từ cạnh bên trên ô ra phía ngoài."
+msgid "To open the BeanShell Macros dialog box, choose Tools - Macros - Organize Macros - BeanShell. To open the JavaScript dialog box, choose Tools - Macros - Organize Macros - JavaScript."
+msgstr "Để mở hộp thoại <emph>Vĩ lệnh BeanShell</emph>, chọn mục trình đơn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > BeanShell</emph>. Để mở hộp thoại JavaScript, chọn <emph>Công cụ > Vĩ lệnh > Tổ chức Vĩ lệnh > JavaScript</emph>."
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3163712\n"
-"80\n"
+"06130000.xhp\n"
+"hd_id6963408\n"
"help.text"
-msgid "<emph>Text Extension Inside Cells:</emph> Writes the rotated text only within the cell."
-msgstr "<emph>Kéo dài văn bản bên trong ô :</emph> ghi văn bản đã xoay chỉ bên trong ô bảng."
+msgid "Export"
+msgstr "Xuất"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN109F4\n"
+"06130000.xhp\n"
+"par_id8968169\n"
"help.text"
-msgid "Vertically stacked"
-msgstr "Xếp đống thẳng đứng"
+msgid "<ahelp hid=\".\">Opens a dialog to export the selected library either as an extension or as a Basic library.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại để xuất khẩu thư viện đã chọn, hoặc dưới dạng phần mở rộng, hoặc dưới dạng thư viện Basic.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN109F8\n"
+"06130000.xhp\n"
+"par_idN109BE\n"
"help.text"
-msgid "<ahelp hid=\".\">Aligns text vertically.</ahelp>"
-msgstr "<ahelp hid=\".\">Căn chỉnh văn bản theo chiều dọc.</ahelp>"
+msgid "Macros"
+msgstr "Vĩ lệnh"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3152576\n"
-"84\n"
+"06130000.xhp\n"
+"par_idN109C2\n"
"help.text"
-msgid "Asian layout mode"
-msgstr "Chế độ bố trí Châu Á"
+msgid "<ahelp hid=\".\">Select a macro or script from \"user\", \"share\", or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn một vĩ lệnh từ « người dùng » (user), « chia sẻ » (share) hay tài liệu còn mở. Để xem các vĩ lệnh hay văn lệnh sẵn sàng, nhấn đôi vào mục nhập.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3150010\n"
-"85\n"
+"06130000.xhp\n"
+"par_idN109CD\n"
"help.text"
-msgid "This checkbox is only available if Asian language support is enabled and the text direction is set to vertical. <ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_ASIAN_VERTICAL\">Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated.</ahelp>"
-msgstr "Tùy chọn chỉ sẵn sàng nếu bạn đã hiệu lực hỗ trợ ngôn ngữ Châu Á, và hướng văn bản đã được đặt thành chiều dọc. <ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_ASIAN_VERTICAL\">Chỉnh canh các ký tự ngôn ngữ Châu Á (v.d. tiếng Trung/Nhật/Hàn) theo chiều dọc, ký tự này nằm dưới ký tự trước, trong những ô bảng đã chọn. Ô chứa nhiều dòng văn bản thì các dòng được chuyển đổi sang các cột văn bản được sắp đặt từ bên phải sang trái. Ký tự Phương Tây nằm trong văn bản đã chuyển đổi thì được xoay 90 độ theo xuôi chiều. Không xoay ký tự Châu Á.</ahelp>"
+msgid "Run"
+msgstr "Chạy"
-#: 05340300.xhp
-#, fuzzy
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3150032\n"
-"43\n"
+"06130000.xhp\n"
+"par_idN109D1\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<ahelp hid=\"1241731587\">To run a script, select a script in the list, and then click Run.</ahelp>"
+msgstr "<ahelp hid=\"1241731587\">Để chạy văn lệnh, chọn văn lệnh trong danh sách, sau đó nhấn vào nút <emph>Chạy</emph>.</ahelp>"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3146120\n"
-"44\n"
+"06130000.xhp\n"
+"par_idN109E8\n"
"help.text"
-msgid "Determine the text flow in a cell."
-msgstr "Xác định luồng văn bản trong ô bảng."
+msgid "Create"
+msgstr "Tạo"
-#: 05340300.xhp
+#: 06130000.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3145590\n"
+"06130000.xhp\n"
+"par_idN109EC\n"
+"help.text"
+msgid "<ahelp hid=\"1241731589\">Creates a new script.</ahelp> The default script editor opens after you enter a name for the script."
+msgstr "<ahelp hid=\"1241731589\">Tạo một văn lệnh mới.</ahelp> Trình soạn thảo văn lệnh mặc định sẽ mở một khi bạn nhập tên cho văn lệnh."
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10A04\n"
+"help.text"
+msgid "<ahelp hid=\"svx:Edit:DLG_NEWLIB:ED_LIBNAME\">Enter a name for the script.</ahelp>"
+msgstr "<ahelp hid=\"svx:Edit:DLG_NEWLIB:ED_LIBNAME\">Nhập tên cho văn lệnh.</ahelp>"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10A2F\n"
+"help.text"
+msgid "Edit"
+msgstr "Sửa"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10A33\n"
+"help.text"
+msgid "<ahelp hid=\"1241731590\">Opens the default script editor for your operating system.</ahelp>"
+msgstr "<ahelp hid=\"1241731590\">Mở trình soạn thảo văn lệnh mặc định cho hệ điều hành của bạn.</ahelp>"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10A4B\n"
+"help.text"
+msgid "Rename"
+msgstr "Thay tên"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10A4F\n"
+"help.text"
+msgid "<ahelp hid=\"1241731591\">Opens a dialog where you can change the name of the selected script.</ahelp>"
+msgstr "<ahelp hid=\"1241731591\">Mở hộp thoại trong đó bạn có thể thay đổi tên của văn lệnh đã chọn.</ahelp>"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10A66\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10A6A\n"
+"help.text"
+msgid "<ahelp hid=\"1241731592\">Prompts you to delete the selected script.</ahelp>"
+msgstr "<ahelp hid=\"1241731592\">Nhắc bạn xoá văn lệnh đã chọn.</ahelp>"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10AE5\n"
+"help.text"
+msgid "The Macro Selector dialog contains two list boxes, namely the Library list box and the Macro name list box."
+msgstr "Hộp thoại <emph>Bộ chọn Vĩ lệnh</emph> chứa hai hộp liệt kê: danh sách Thư viện và danh sách Tên vĩ lệnh."
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10AFC\n"
+"help.text"
+msgid "Library"
+msgstr "Thư viện"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10B00\n"
+"help.text"
+msgid "Select a macro or script from \"user\", \"share\", or an open document. To view the contents of a library, double-click an entry in the list."
+msgstr "Chọn một vĩ lệnh hay văn lệnh từ « người dùng » (user), « chia sẻ » (share) hay tài liệu còn mở. Để xem nội dung của thư viện, nhấn đôi vào mục nhập trong danh sách."
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10B17\n"
+"help.text"
+msgid "Macro name"
+msgstr "Tên vĩ lệnh"
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10B1B\n"
+"help.text"
+msgid "Click a script, and then click a command button."
+msgstr "Nhấn vào một văn lệnh, sau đó nhấn vào một cái nút hành động."
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3153138\n"
+"help.text"
+msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
+msgstr "<link href=\"text/shared/main0600.xhp\" name=\"Tạo vĩ lệnh trong $[officename]\">Tạo vĩ lệnh trong $[officename]</link>"
+
+#: 06130001.xhp
+msgctxt ""
+"06130001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Macros"
+msgstr "Vĩ lệnh"
+
+#: 06130001.xhp
+msgctxt ""
+"06130001.xhp\n"
+"hd_id3152414\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
+msgstr "<link href=\"text/shared/01/06130001.xhp\" name=\"Vĩ lệnh\">Vĩ lệnh</link>"
+
+#: 06130001.xhp
+msgctxt ""
+"06130001.xhp\n"
+"par_id3150008\n"
"3\n"
"help.text"
-msgid "Wrap text automatically"
-msgstr "Tự động cuộn văn bản"
+msgid "Lets you record or organize and edit macros."
+msgstr "Cho bạn có khả năng thu hay tổ chức và chỉnh sửa vĩ lệnh."
-#: 05340300.xhp
+#: 06130001.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3148555\n"
-"4\n"
+"06130001.xhp\n"
+"par_idN105B1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_ALIGNMENT:BTN_WRAP\">Wraps text onto another line at the cell border. The number of lines depends on the width of the cell.</ahelp> To enter a manual line break, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter in the cell."
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_ALIGNMENT:BTN_WRAP\">Gặp viền ô bảng thì cuộn đoạn văn đến dòng kế tiếp. Số các dòng có thể cuộn thì phụ thuộc vào chiều rộng của ô. Để chèn một chỗ ngắt dòng bằng tay, bấm tổ hợp phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter khi con trỏ nằm trong ô.</ahelp>"
+msgid "<link href=\"text/shared/01/06130000.xhp\">Run Macro</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp\">Chạy vĩ lệnh</link>"
-#: 05340300.xhp
+#: 06130001.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3147380\n"
-"81\n"
+"06130001.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "Hyphenation active"
-msgstr "Gạch nối từ đã bật"
+msgid "<ahelp hid=\".\">Opens a dialog where you can start a macro.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể khởi chạy vĩ lệnh.</ahelp>"
-#: 05340300.xhp
+#: 06130001.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3148458\n"
-"82\n"
+"06130001.xhp\n"
+"par_idN10608\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_HYPH\">Enables word hyphenation for text wrapping to the next line.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_HYPH\">Hiệu lực chức năng gạch nối từ để cuộn văn bản đến dòng kế tiếp.</ahelp>"
+msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signature</link>"
+msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">Chữ ký số</link>"
-#: 05340300.xhp
+#: 06130001.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN10AD3\n"
+"06130001.xhp\n"
+"par_idN10618\n"
"help.text"
-msgid "Shrink to fit cell size"
-msgstr "Thu nhỏ để vừa kích cỡ ô"
+msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your macros. You can also use the dialog to view certificates.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm và gỡ bỏ chữ ký thuật số vào/khỏi các vĩ lệnh của bạn. Cũng có thể sử dụng hộp thoại để xem các chứng nhận.</ahelp>"
-#: 05340300.xhp
+#: 06130001.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN10AD7\n"
+"06130001.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "<ahelp hid=\".\">Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks.</ahelp>"
-msgstr "<ahelp hid=\".\">Giảm kích cỡ biểu kiến của phông để vừa nội dung ô khít chiều rộng hiện thời của ô. Tuy nhiên, không thể áp dụng chức năng này cho ô chứa chỗ ngắt dòng.</ahelp>"
+msgid "<link href=\"text/shared/01/06130000.xhp\">Organize Dialogs</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp\">Tổ chức Hộp thoại</link>"
-#: 05030100.xhp
+#: 06130001.xhp
msgctxt ""
-"05030100.xhp\n"
+"06130001.xhp\n"
+"par_idN105E3\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Dialogs tab page of the Macro Organizer.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở trang thẻ <emph>Hộp thoại</emph> của bộ <emph>Tổ chức Vĩ lệnh.</emph></ahelp>"
+
+#: 06130010.xhp
+msgctxt ""
+"06130010.xhp\n"
"tit\n"
"help.text"
-msgid "Indents and Spacing"
-msgstr "Thụt lề và Giãn cách"
+msgid "Record Macro"
+msgstr "Ghi vĩ lệnh"
-#: 05030100.xhp
+#: 06130010.xhp
msgctxt ""
-"05030100.xhp\n"
-"bm_id3154689\n"
+"06130010.xhp\n"
+"hd_id3153383\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>spacing; between paragraphs in footnotes</bookmark_value> <bookmark_value>line spacing; paragraph</bookmark_value> <bookmark_value>spacing; lines and paragraphs</bookmark_value> <bookmark_value>single-line spacing in text</bookmark_value> <bookmark_value>one and a half line spacing in text</bookmark_value> <bookmark_value>double-line spacing in paragraphs</bookmark_value> <bookmark_value>leading between paragraphs</bookmark_value> <bookmark_value>paragraphs;spacing</bookmark_value>"
-msgstr "<bookmark_value>khoảng cách;giữa các đoạn văn trong cước chú</bookmark_value><bookmark_value>khoảng cách dòng;đoạn văn</bookmark_value><bookmark_value>khoảng cách; dòng và đoạn văn</bookmark_value><bookmark_value>khoảng cách dòng đơn trong văn bản</bookmark_value><bookmark_value>khoảng cách dòng 1.5 trong văn bản</bookmark_value><bookmark_value>khoảng cách dòng đôi in đoạn văn</bookmark_value><bookmark_value>khoảng cách dẫn tới giữa các đoạn văn</bookmark_value><bookmark_value>đoạn văn;giãn cách</bookmark_value>"
+msgid "<link href=\"text/shared/01/06130010.xhp\" name=\"Record Macro\">Record Macro</link>"
+msgstr "<link href=\"text/shared/01/06130010.xhp\" name=\"Ghi vĩ lệnh\">Ghi vĩ lệnh</link>"
-#: 05030100.xhp
+#: 06130010.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3154689\n"
+"06130010.xhp\n"
+"par_id3152952\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Thụt lề và Giãn cách\">Thụt lề và Giãn cách</link>"
+msgid "<ahelp hid=\".uno:MacroRecorder\">Records a new macro.</ahelp> Only available, if macro recording feature is enabled in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced</emph>."
+msgstr ""
-#: 05030100.xhp
+#: 06130010.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3155069\n"
+"06130010.xhp\n"
+"hd_id3154788\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_STD\">Sets the indenting and the spacing options for the paragraph.</ahelp>"
-msgstr "<ahelp hid=\"HID_FORMAT_PARAGRAPH_STD\">Đặt các tùy chọn thụt lề và khoảng cách cho đoạn văn.</ahelp>"
+msgid "Stop Recording"
+msgstr "Dừng việc ghi"
-#: 05030100.xhp
+#: 06130010.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3153910\n"
-"64\n"
+"06130010.xhp\n"
+"par_id3146067\n"
+"4\n"
"help.text"
-msgid "To change the measurement units used in this dialog, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "<ahelp hid=\".uno:StopRecording\">Stops recording a macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:StopRecording\">Dừng việc ghi vĩ lệnh.</ahelp>"
-#: 05030100.xhp
+#: 06130100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3154823\n"
-"11\n"
+"06130100.xhp\n"
+"tit\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <emph>View - Ruler</emph>."
-msgstr "Bạn cũng có thể <link href=\"text/swriter/guide/ruler.xhp\" name=\"thước đo\">đặt khoảng cách thụt lề dùng thước đo</link>. Để hiển thị thước đo, chọn lệnh <emph>Xem > Thước</emph>."
+msgid "Change Password"
+msgstr "Đổi mật khẩu"
-#: 05030100.xhp
+#: 06130100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3158430\n"
+"06130100.xhp\n"
+"hd_id3153514\n"
+"1\n"
+"help.text"
+msgid "Change Password"
+msgstr "Đổi mật khẩu"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3154545\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+msgstr "<ahelp hid=\"HID_PASSWORD\">Bảo vệ thư viện đã chọn bằng mật khẩu.</ahelp> Bạn có thể gõ mật khẩu mới, hoặc thay đổi mật khẩu hiện thời."
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3145759\n"
"3\n"
"help.text"
-msgid "Indent"
-msgstr "Thụt lề"
+msgid "Old password"
+msgstr "Mật khẩu cũ"
-#: 05030100.xhp
+#: 06130100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3155419\n"
+"06130100.xhp\n"
+"hd_id3150603\n"
"4\n"
"help.text"
-msgid "Specify the amount of space to leave between the left and the right page margins and the paragraph."
-msgstr "Ghi rõ khoảng cách cần để lại giữa lề bên trái/phải và đoạn văn."
+msgid "Password"
+msgstr "Mật khẩu"
-#: 05030100.xhp
+#: 06130100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3153698\n"
+"06130100.xhp\n"
+"par_id3144415\n"
"5\n"
"help.text"
-msgid "Before text"
-msgstr "Đằng trước văn bản"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Gõ mật khẩu hiện thời cho thư viện đã chọn.</ahelp>"
-#: 05030100.xhp
+#: 06130100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3148990\n"
+"06130100.xhp\n"
+"hd_id3145160\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the left edge of the paragraph is indented with respect to the left page margin. In Right-to-Left languages, the right edge of the paragraph is indented with respect to the right page margin.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT\">Nhập khoảng cách cần hiển thị giữa lề trang và đoạn văn. Muốn thấy đoạn văn kéo dài qua lề trang thì nhập con số âm. Bằng ngôn ngữ viết từ bên trái qua bên phải (LTR), cạnh bên trái của đoạn văn được thụt vào tương ứng so với lề bên trái trang. Bằng ngôn ngữ viết từ bên phải qua bên trái (RTL), cạnh bên phải của đoạn văn được thụt vào tương ứng so với lề bên phải trang.</ahelp>"
+msgid "New password"
+msgstr "Mật khẩu mới"
-#: 05030100.xhp
+#: 06130100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3152361\n"
+"06130100.xhp\n"
+"hd_id3149525\n"
+"7\n"
+"help.text"
+msgid "Password"
+msgstr "Mật khẩu"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3159194\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Gõ một mật khẩu mới cho thư viện đã chọn.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3166445\n"
"9\n"
"help.text"
-msgid "After text"
-msgstr "Đằng sau văn bản"
+msgid "Confirm"
+msgstr "Xác nhận"
-#: 05030100.xhp
+#: 06130100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3154390\n"
+"06130100.xhp\n"
+"par_id3153114\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the right edge of the paragraph is indented with respect to the right page margin. In Right-to-Left languages, the left edge of the paragraph is indented with respect to the left page margin.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT\">Nhập khoảng cách cần hiển thị giữa lề trang và đoạn văn. Muốn thấy đoạn văn kéo dài qua lề trang thì nhập con số âm. Bằng ngôn ngữ viết từ bên trái qua bên phải (LTR), cạnh bên phải của đoạn văn được thụt vào tương ứng so với lề bên phải trang. Bằng ngôn ngữ viết từ bên phải qua bên trái (RTL), cạnh bên trái của đoạn văn được thụt vào tương ứng so với lề bên trái trang.</ahelp>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Reenter the new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Nhập lại mật khẩu mới cho thư viện đã chọn.</ahelp>"
-#: 05030100.xhp
+#: 06130200.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3149169\n"
+"06130200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Organize Macros"
+msgstr "Tổ chức Vĩ lệnh"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"bm_id3237403\n"
+"help.text"
+msgid "<bookmark_value>macros;organizing</bookmark_value><bookmark_value>organizing;macros and scripts</bookmark_value><bookmark_value>script organization</bookmark_value>"
+msgstr "<bookmark_value>vĩ lệnh;tổ chức</bookmark_value><bookmark_value>tổ chức;vĩ lệnh và văn lệnh</bookmark_value><bookmark_value>tổ chức văn lệnh</bookmark_value>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Organize Macros</link></variable>"
+msgstr "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Tổ chức Vĩ lệnh</link></variable>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN105B7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a submenu with links to dialogs where you can organize macros and scripts.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở trình đơn phụ chứa liên kết đến hộp thoại trong đó bạn có thể tổ chức các vĩ lệnh và văn lệnh.</ahelp>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN1057F\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06130000.xhp\">%PRODUCTNAME Basic</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp\">%PRODUCTNAME Basic</link>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN105C3\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog where you can organize %PRODUCTNAME Basic macros.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể tổ chức các vĩ lệnh Basic %PRODUCTNAME.</ahelp>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN105AA\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06130000.xhp#script\">JavaScript</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp#script\">JavaScript</link>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN105BA\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể tổ chức các văn lệnh.</ahelp>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN10622\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+msgstr "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN10597\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06130000.xhp#script\">BeanShell</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp#script\">BeanShell</link>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN105A7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể tổ chức các văn lệnh.</ahelp>"
+
+#: 06130200.xhp
+msgctxt ""
+"06130200.xhp\n"
+"par_idN105FB\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+msgstr "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Phụ thêm thư viện"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3158442\n"
+"1\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Phụ thêm thư viện"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3155271\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"\">Locate the <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\"\">Tìm thư viện Basic <item type=\"productname\">%PRODUCTNAME</item> mà bạn muốn thêm vào danh sách hiện thời, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3152952\n"
+"3\n"
+"help.text"
+msgid "File name:"
+msgstr "Tên tập tin:"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3152876\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append. You can also select a library from the list.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Nhập tên của hay đường dẫn đến thư viện bạn muốn phụ thêm. Cũng có thể chọn một thư viện trong danh sách.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147294\n"
+"5\n"
+"help.text"
+msgid "Options"
+msgstr "Tùy chọn"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3143272\n"
"7\n"
"help.text"
-msgid "First line"
-msgstr "Dòng đầu"
+msgid "Insert as reference (read-only)"
+msgstr "Chèn dạng tham chiếu (chỉ đọc)"
-#: 05030100.xhp
+#: 06130500.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150651\n"
+"06130500.xhp\n"
+"par_id3154350\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_FLINEINDENT\">Indents the first line of a paragraph by the amount that you enter. To create a hanging indent enter a positive value for \"Before text\" and a negative value for \"First line\". To indent the first line of a paragraph that uses numbering or bullets, choose \"<link href=\"text/shared/01/06050600.xhp\">Format - Bullets and Numbering - Position</link>\".</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Thêm thư viện đã chọn theo định dạng tập tin chỉ đọc (không thể ghi vào hay thay đổi bằng bất cứ cách nào). Thư viện này được nạp lại mỗi lần bạn khởi chạy chương trình <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-#: 05030100.xhp
+#: 06130500.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3150288\n"
-"52\n"
+"06130500.xhp\n"
+"hd_id3154788\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatic </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động</caseinline></switchinline>"
+msgid "Replace existing libraries"
+msgstr "Thay thế thư viện đã có"
-#: 05030100.xhp
+#: 06130500.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3151041\n"
-"53\n"
+"06130500.xhp\n"
+"par_id3154894\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO\">Automatically indents a paragraph according to the font size and the line spacing. The setting in the <emph>First Line </emph>box is ignored.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO\">Tự động thụt vào đoạn văn tùy theo kích cỡ phông và khoảng cách dòng. Thiết lập trong hộp <emph>Dòng đầu</emph> bị bỏ qua.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Thay thế một thư viện cùng tên với thư viện hiện thời.</ahelp>"
-#: 05030100.xhp
+#: 06140000.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3157894\n"
-"22\n"
+"06140000.xhp\n"
+"tit\n"
"help.text"
-msgid "Spacing"
-msgstr "Giãn cách"
+msgid "Customize"
+msgstr "Đặc chế"
-#: 05030100.xhp
+#: 06140000.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3152462\n"
-"23\n"
+"06140000.xhp\n"
+"hd_id3146946\n"
+"1\n"
"help.text"
-msgid "Specify the amount of space to leave between selected paragraphs."
-msgstr "Ghi rõ khoảng cách cần để lại giữa các đoạn văn đã chọn."
+msgid "Customize"
+msgstr "Đặc chế"
-#: 05030100.xhp
+#: 06140000.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3147216\n"
-"24\n"
+"06140000.xhp\n"
+"par_id3155069\n"
+"2\n"
"help.text"
-msgid "Above paragraph"
-msgstr "Bên trên đoạn văn"
+msgid "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Customizes $[officename] menus, shortcut keys, toolbars, and macro assignments to events.</ahelp></variable>"
+msgstr "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Tùy chỉnh các trình đơn, phím tắt, thanh công cụ và sự gán vĩ lệnh cho dữ kiện của $[officename].</ahelp></variable>"
-#: 05030100.xhp
+#: 06140000.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3146148\n"
-"25\n"
+"06140000.xhp\n"
+"par_id3152821\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST\">Enter the amount of space that you want to leave above the selected paragraph(s).</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST\">Nhập khoảng cách bạn muốn để lạ bên trên mỗi đoạn văn đã chọn</ahelp>"
+msgid "You can customize shortcut keys and macro assignments for the current application, or for all $[officename] applications."
+msgstr "Bạn có khả năng tùy chỉnh các phím tắt và sự gán vĩ lệnh chỉ cho ứng dụng hiện tại (v.d. Calc), hoặc cho tất cả các ứng dụng $[officename] (Calc, Writer, Base v.v.)."
-#: 05030100.xhp
+#: 06140000.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3145590\n"
-"26\n"
+"06140000.xhp\n"
+"par_id3153303\n"
+"4\n"
"help.text"
-msgid "Below paragraph"
-msgstr "Bên dưới đoạn văn"
+msgid "You can also save and load individual menu, shortcut key, and toolbar custom settings."
+msgstr "Bạn cũng có thể lưu và nạp thiết lập riêng cho mỗi trình đơn, phím tắt và thanh công cụ."
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3163822\n"
-"27\n"
+"06140100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST\">Enter the amount of space that you want to leave below the selected paragraph(s).</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST\">Nhập khoảng cách bạn muốn để lạ bên dưới mỗi đoạn văn đã chọn.</ahelp>"
+msgid "Menu"
+msgstr "Trình đơn"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3145591\n"
-"26\n"
+"06140100.xhp\n"
+"bm_id900601\n"
"help.text"
-msgid "Don't add space between paragraphs of the same style"
-msgstr ""
+msgid "<bookmark_value>editing;menus</bookmark_value><bookmark_value>customizing;menus</bookmark_value><bookmark_value>menus;customizing</bookmark_value>"
+msgstr "<bookmark_value>chỉnh sửa;trình đơn</bookmark_value><bookmark_value>tùy chỉnh;trình đơn</bookmark_value><bookmark_value>trình đơn;tùy chỉnh</bookmark_value>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3163823\n"
-"27\n"
+"06140100.xhp\n"
+"hd_id3153008\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_CONTEXTUALSPACING\">Makes any space specified before or after this paragraph not be applied when the preceding and following paragraphs are of the same paragraph style.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"Menu\">Menu</link>"
+msgstr "<link href=\"text/shared/01/06140100.xhp\" name=\"Trình đơn\">Trình đơn</link>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3156441\n"
-"28\n"
+"06140100.xhp\n"
+"par_id3152952\n"
+"2\n"
"help.text"
-msgid "Line spacing"
-msgstr "Giãn cách dòng"
+msgid "<ahelp hid=\"HID_CONFIG_MENU\">Customizes and saves current menu layouts as well as creates new menus. You cannot customize context menus.</ahelp>"
+msgstr "<ahelp hid=\"HID_CONFIG_MENU\">Tùy chỉnh và lưu lại các bố trí trình đơn hiện thời, cũng như tạo trình đơn mới. Không thể tùy chỉnh trình đơn kiểu ngữ cảnh.</ahelp>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3146985\n"
-"29\n"
+"06140100.xhp\n"
+"par_id3146873\n"
+"72\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST\">Specify the amount of space to leave between lines of text in a paragraph.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST\">Nhập khoảng cách bạn muốn để lạ giữa hai dòng văn bản trong đoạn văn.</ahelp>"
+msgid "You can add new commands, modify existing commands, or rearrange the menu items."
+msgstr "Bạn có khả năng thêm lệnh mới, sửa đổi lệnh đã tồn tại, hoặc sắp đặt lại các mục trong trình đơn."
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3146923\n"
-"30\n"
+"06140100.xhp\n"
+"par_idN1069B\n"
"help.text"
-msgid "Single"
-msgstr "Đơn"
+msgid "Menu"
+msgstr "Trình đơn"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150011\n"
-"31\n"
+"06140100.xhp\n"
+"par_idN1069F\n"
"help.text"
-msgid "<variable id=\"einzeiligtext\">Applies single line spacing to the current paragraph. This is the default setting. </variable>"
-msgstr "<variable id=\"einzeiligtext\">Áp dụng khoảng cách dòng đơn cho đoạn văn hiện tại. </variable>"
+msgid "<ahelp hid=\"705498935\">Select the menu and submenu that you want to edit.</ahelp>"
+msgstr "<ahelp hid=\"705498935\">Chọn trình đơn và trình đơn phụ bạn muốn chỉnh sửa.</ahelp>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3148500\n"
-"33\n"
+"06140100.xhp\n"
+"par_idN106B0\n"
"help.text"
-msgid "1.5 lines"
-msgstr "1,5 dòng"
+msgid "New"
+msgstr "Mới"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150094\n"
-"34\n"
+"06140100.xhp\n"
+"par_idN106B4\n"
"help.text"
-msgid "<variable id=\"eineinhalbzeiligtext\">Sets the line spacing to 1.5 lines. </variable>"
-msgstr "<variable id=\"eineinhalbzeiligtext\">Đặt khoảng cách giữa hai dòng thành 1.5 dòng. </variable>"
+msgid "<ahelp hid=\"705499960\">Opens the <link href=\"text/shared/01/06140101.xhp\">New Menu</link> dialog where you can enter the name of a new menu as well as select the location for the menu.</ahelp>"
+msgstr "<ahelp hid=\"705499960\">Mở hộp thoại <link href=\"text/shared/01/06140101.xhp\">Trình đơn mới</link> trong đó bạn có thể nhập tên của trình đơn mới, cũng như chọn vị trí cho trình đơn.</ahelp>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3149378\n"
-"36\n"
+"06140100.xhp\n"
+"par_idN106B7\n"
"help.text"
-msgid "Double"
-msgstr "Đôi"
+msgid "Menu"
+msgstr "Trình đơn"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3154512\n"
-"37\n"
+"06140100.xhp\n"
+"par_idN106BB\n"
"help.text"
-msgid "<variable id=\"zweizeiligtext\">Sets the line spacing to two lines. </variable>"
-msgstr "<variable id=\"zweizeiligtext\">Đặt khoảng cách giữa hai dòng thành 2 dòng. </variable>"
+msgid "<ahelp hid=\"705507642\">Opens a submenu with additional commands.</ahelp>"
+msgstr "<ahelp hid=\"705507642\">Mở trình đơn phụ chứa các lệnh bổ sung.</ahelp>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3151206\n"
+"06140100.xhp\n"
+"par_idN106BE\n"
+"help.text"
+msgid "Move"
+msgstr "Chuyển"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106C2\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/01/06140102.xhp\">Move Menu</link> dialog where you can specify the location of the selected menu."
+msgstr "Mở hộp thoại <link href=\"text/shared/01/06140102.xhp\">Chuyển trình đơn</link> trong đó bạn có thể ghi rõ vị trí của trình đơn đã chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106C5\n"
+"help.text"
+msgid "Rename"
+msgstr "Thay tên"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106C9\n"
+"help.text"
+msgid "Opens a dialog where you can change the name of the selected menu."
+msgstr "Mở hộp thoại trong đó bạn có thể thay đổi tên của trình đơn đã chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN1071C\n"
+"help.text"
+msgid "New name"
+msgstr "Tên mới"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN1071F\n"
+"help.text"
+msgid "Enter the new name for the selected menu."
+msgstr "Nhập tên mới cho trình đơn đã chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106CC\n"
+"help.text"
+msgid "To specify the keyboard accelerator for a menu"
+msgstr "Ghi rõ phím tắt cho trình đơn riêng"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN108C6\n"
+"help.text"
+msgid "A keyboard accelerator allows you to select a menu command when you press Alt+ an underlined letter in a menu command. For example, to select the <emph>Save All</emph> command by pressing Alt+V, enter Sa~ve All."
+msgstr "Phím tắt cho phép bạn chọn lệnh trình đơn bằng cách bấm tổ hợp của phím bổ trợ và chữ. Thí dụ, để chọn lệnh <emph>Lưu tất cả</emph> bằng cách bấm tổ hợp phím <item type=\"keycode\">Alt+T</item>, nhập « Lưu ~tất cả »."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106D0\n"
+"help.text"
+msgid "Select a menu or menu entry."
+msgstr "Chọn một trình đơn hay mục nhập trình đơn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN108DC\n"
+"help.text"
+msgid "Click the <emph>Menu</emph> button and select <emph>Rename</emph>."
+msgstr "Nhấn vào cái nút <emph>Trình đơn</emph> và chọn lệnh <emph>Thay tên</emph>."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN108E8\n"
+"help.text"
+msgid "Add a tilde (~) in front of the letter that you want to use as an accelerator."
+msgstr "Thêm một dấu ngã (~) vào phía trước chữ bạn muốn dùng làm phím tắt."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106F9\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106FD\n"
+"help.text"
+msgid "Deletes the selected menu or menu entry."
+msgstr "Xoá trình đơn hay mục nhập trình đơn đã chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10910\n"
+"help.text"
+msgid "You can only delete custom menus and custom menu entries."
+msgstr "Bạn chỉ có khả năng xoá trình đơn và mục trình đơn kiểu riêng, không phải mục mặc định."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"hd_id3154408\n"
+"5\n"
+"help.text"
+msgid "Entries"
+msgstr "Mục"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_id3150999\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MENUCONFIG_LISTBOX\">Displays a list of the available menu commands for the selected menu in the current application or document.</ahelp>"
+msgstr "<ahelp hid=\"HID_MENUCONFIG_LISTBOX\">Hiển thị danh sách các lệnh trình đơn cho trình đơn đã chọn đối với ứng dụng hay tài liệu hiện tại.</ahelp>"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_id3150838\n"
"39\n"
"help.text"
-msgid "Proportional"
-msgstr "Tỷ lệ"
+msgid "To rearrange the order of menu entries, select an entry, and then click the up or down arrow button."
+msgstr "Để sắp đặt lại thứ tự các mục nhập trình đơn, lựa chọn một mục, sau đó bấm cái nút mũi tên chỉ lên hay xuống."
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3147494\n"
-"40\n"
+"06140100.xhp\n"
+"hd_id3147620\n"
+"63\n"
"help.text"
-msgid "Select this option and then enter a percentage value in the box, where 100% corresponds to single line spacing."
-msgstr "Bật tùy chọn này, sau đó nhập vào hộp này một giá trị phân trăm (100% tương ứng với khoảng cách dòng đơn)."
+msgid "Arrow Up"
+msgstr "Mũi tên chỉ lên"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3156332\n"
-"41\n"
+"06140100.xhp\n"
+"par_id3153585\n"
+"64\n"
"help.text"
-msgid "At Least"
-msgstr "Ít nhất"
+msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_UP\">Moves the selected item up one position.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_UP\">Dời mục đã chọn lên một vị trí.</ahelp>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3157965\n"
-"42\n"
+"06140100.xhp\n"
+"par_id3150119\n"
"help.text"
-msgid "Sets the minimum line spacing to the value that you enter in the box."
-msgstr "Đặt khoảng cách dòng tối thiểu thành giá trị bạn nhập vào hộp."
+msgid "<image id=\"img_id3156192\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3156192\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156192\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3156192\">Biểu tượng</alt></image>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150744\n"
-"47\n"
+"06140100.xhp\n"
+"par_id3153331\n"
+"65\n"
"help.text"
-msgid "If you use different font sizes within a paragraph, the line spacing is automatically adjusted to the largest font size. If you prefer to have identical spacing for all lines, specify a value in <emph>At least</emph> that corresponds to the largest font size."
-msgstr "Nếu bạn dùng các kích cỡ phông khác nhau trong cùng đoạn văn, khoảng cách dòng được điều chỉnh tự động thành kích cỡ phông lớn nhất được dùng. Nếu bạn thích dùng khoảng cách dòng trùng qua văn bản, ghi rõ trong hộp <emph>Ít nhất</emph> một giá trị tương ứng với kích cỡ phông lớn nhất."
+msgid "Arrow Up"
+msgstr "Mũi tên chỉ lên"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3153927\n"
-"43\n"
+"06140100.xhp\n"
+"hd_id3155388\n"
+"66\n"
"help.text"
-msgid "Leading"
-msgstr "Dẫn tới"
+msgid "Arrow Down"
+msgstr "Mũi tên chỉ xuống"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3153354\n"
-"44\n"
+"06140100.xhp\n"
+"par_id3147335\n"
+"67\n"
"help.text"
-msgid "Sets the height of the vertical space that is inserted between two lines."
-msgstr "Đặt chiều cao của khoảng cách thẳng đứng được chèn vào giữa hai dòng."
+msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_DOWN\">Moves the selected item down one position.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_DOWN\">Dời mục đã chọn lên một vị trí.</ahelp>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3155443\n"
-"54\n"
+"06140100.xhp\n"
+"par_id3148943\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fixed </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cố định </caseinline></switchinline>"
+msgid "<image id=\"img_id3145609\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3145609\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145609\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3145609\">Biểu tượng</alt></image>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3153711\n"
-"55\n"
+"06140100.xhp\n"
+"par_id3149295\n"
+"68\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Sets the line spacing to exactly match the value that you enter in the box. This can result in cropped characters. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đặt khoảng cách dòng để khớp chính xác với giá trị bạn nhập vào hộp. Ghi chú : có thể gây ra ký tự bị xén. </caseinline></switchinline>"
+msgid "Arrow Down"
+msgstr "Mũi tên chỉ xuống"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3156383\n"
-"45\n"
+"06140100.xhp\n"
+"par_idN107EA\n"
"help.text"
-msgid "of"
-msgstr "theo"
+msgid "Add Commands"
+msgstr "Thêm lệnh"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3154304\n"
-"46\n"
+"06140100.xhp\n"
+"par_idN107EE\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC\">Enter the value to use for the line spacing.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC\">Nhập giá trị cần dùng cho khoảng cách dòng.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
+msgstr ""
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3154965\n"
-"48\n"
+"06140100.xhp\n"
+"par_idN40723\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đăng ký đúng </caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
+msgstr ""
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3146316\n"
-"50\n"
+"06140100.xhp\n"
+"par_idN107F9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Activate </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kích hoạt</caseinline></switchinline>"
+msgid "Command"
+msgstr "Lệnh"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3156315\n"
-"51\n"
+"06140100.xhp\n"
+"par_idN107FD\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER\">Aligns the baseline of each line of text to a vertical document grid, so that each line is the same height. To use this feature, you must first activate the <emph>Register-true </emph>option for the current page style. To do this, choose <emph>Format - Page</emph>, click on the <emph>Page </emph>tab, and then select the<emph> Register-true</emph> box in the<emph> Layout settings</emph> area.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER\">Chỉnh canh đường cơ bản của mỗi dòng văn bản theo một lưới tài liệu thẳng đứng, để mỗi dòng có cùng một chiều cao. Để sử dụng tính năng này, trước tiên bạn cần phải kích hoạt tùy chọn <emph>Đăng ký đúng</emph> cho kiểu dáng trang hiện thời. Để làm như thế, chọn lệnh <emph>Định dạng > Trang</emph>, nhấn vào thẻ <emph>Trang</emph>, sau đó bật tùy chọn <emph>Đăng ký đúng</emph> trong vùng <emph>Thiết lập Bố trí</emph>.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"705507646\">Opens a menu that contains additional commands.</ahelp>"
+msgstr "<ahelp hid=\"705507646\">Mở trình đơn chứa các lệnh bổ sung.</ahelp>"
-#: 05030100.xhp
+#: 06140100.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id9267250\n"
+"06140100.xhp\n"
+"par_idN10800\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
-msgstr "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Ghi Đăng ký đúng\">Ghi Đăng ký đúng</link>"
+msgid "Add Submenu"
+msgstr "Thêm trình đơn phụ"
-#: 01010001.xhp
+#: 06140100.xhp
msgctxt ""
-"01010001.xhp\n"
-"tit\n"
+"06140100.xhp\n"
+"par_idN10804\n"
"help.text"
-msgid "Master Document"
-msgstr "Tài liệu chủ"
+msgid "Opens the Add Submenu dialog, where you enter the name of a submenu."
+msgstr "Mở hộp thoại <emph>Thêm trình đơn phụ</emph>, vào đó bạn nhập tên của trình đơn."
-#: 01010001.xhp
+#: 06140100.xhp
msgctxt ""
-"01010001.xhp\n"
-"hd_id3153514\n"
-"1\n"
+"06140100.xhp\n"
+"par_idN10807\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010001.xhp\" name=\"Master Document\">Master Document</link>"
-msgstr "<link href=\"text/shared/01/01010001.xhp\" name=\"Tài liệu chủ\">tài liệu chủ</link>"
+msgid "Begin Group"
+msgstr "Bắt đầu nhóm"
-#: 01010001.xhp
+#: 06140100.xhp
msgctxt ""
-"01010001.xhp\n"
-"par_id3154682\n"
-"2\n"
+"06140100.xhp\n"
+"par_idN1080B\n"
"help.text"
-msgid "Use a <emph>Master Document</emph> to organize complex projects, such as a book. <ahelp hid=\".\">A <emph>Master Document</emph> can contain the individual files for each chapter of a book, as well as a table of contents, and an index.</ahelp>"
-msgstr "Hãy sử dụng một <emph>Tài liệu chủ</emph> để tổ chức dự án phức tạp, v.d. viết cuốn sách. <ahelp hid=\".\">Một <emph>Tài liệu chủ</emph> có khả năng chứa các tập tin riêng cho từng chương của cuốn sách, cũng như mục lục và chỉ mục.</ahelp>"
+msgid "Inserts a separator line under the current menu entry."
+msgstr "Chèn đường phân cách vào bên dưới mục nhập trình đơn hiện thời."
-#: 01010001.xhp
+#: 06140100.xhp
msgctxt ""
-"01010001.xhp\n"
-"par_id3149828\n"
+"06140100.xhp\n"
+"par_idN1080E\n"
"help.text"
-msgid "<link href=\"text/shared/01/02110000.xhp\" name=\"Navigator for Master Documents\">Navigator for Master Documents</link>"
-msgstr "<link href=\"text/shared/01/02110000.xhp\" name=\"Bộ điều hướng tài liệu chủ\">Bộ điều hướng tài liệu chủ</link>"
+msgid "Rename"
+msgstr "Thay tên"
-#: 02220100.xhp
+#: 06140100.xhp
msgctxt ""
-"02220100.xhp\n"
+"06140100.xhp\n"
+"par_idN10812\n"
+"help.text"
+msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
+msgstr "Mở hộp thoại <emph>Thay tên</emph>, vào đó bạn nhập tên mới cho lệnh đã chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN108CA\n"
+"help.text"
+msgid "New name"
+msgstr "Tên mới"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN108CD\n"
+"help.text"
+msgid "Enter the new name for the selected command."
+msgstr "Nhập tên mới cho lệnh đã chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10824\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10828\n"
+"help.text"
+msgid "Deletes the selected command."
+msgstr "Xoá lệnh đã chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10918\n"
+"help.text"
+msgid "Save In"
+msgstr "Lưu vào"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN1091C\n"
+"help.text"
+msgid "<ahelp hid=\"705498948\">Select the application or open document where you want to add the menu.</ahelp> A separate menu configuration is saved for the item that you select."
+msgstr "<ahelp hid=\"705498948\">Chọn ứng dụng hay tài liệu còn mở vào đó bạn muốn thêm trình đơn.</ahelp> Một cấu hình trình đơn riêng được lưu cho mục bạn chọn."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10AFB\n"
+"help.text"
+msgid "To edit a menu configuration that is associated with an item in the list, select the item, make the changes that you want, and then click the <emph>OK</emph> button."
+msgstr "Để chỉnh sửa một cấu hình trình đơn mà liên quan đến mục trong danh sách, lựa chọn mục, làm các thay đổi thích hợp, sau đó nhấn vào nút <emph>OK</emph>."
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10922\n"
+"help.text"
+msgid "You cannot load a menu configuration from one location and save the configuration to another location."
+msgstr "Tuy nhiên, không thể nạp cấu hình trình đơn từ vị trí này và lưu nó vào vị trí khác."
+
+#: 06140101.xhp
+msgctxt ""
+"06140101.xhp\n"
"tit\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "New Menu"
+msgstr "Trình đơn mới"
-#: 02220100.xhp
+#: 06140101.xhp
msgctxt ""
-"02220100.xhp\n"
-"bm_id1202200909085990\n"
+"06140101.xhp\n"
+"par_idN10540\n"
"help.text"
-msgid "<bookmark_value>hotspots;properties</bookmark_value> <bookmark_value>properties;hotspots</bookmark_value> <bookmark_value>ImageMap;hotspot properties</bookmark_value>"
+msgid "New Menu"
+msgstr "Trình đơn mới"
+
+#: 06140101.xhp
+msgctxt ""
+"06140101.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "Menu name"
+msgstr "Tên trình đơn"
+
+#: 06140101.xhp
+msgctxt ""
+"06140101.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter.</ahelp>"
msgstr ""
-#: 02220100.xhp
+#: 06140101.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3154810\n"
+"06140101.xhp\n"
+"par_idN1055F\n"
+"help.text"
+msgid "Menu position"
+msgstr "Vị trí trình đơn"
+
+#: 06140101.xhp
+msgctxt ""
+"06140101.xhp\n"
+"par_idN10563\n"
+"help.text"
+msgid "Moves the selected menu entry up one position or down one position in the menu when you click the arrow buttons."
+msgstr "Dời mục nhập trình đơn đã chọn lên hay xuống một vị trí trong trình đơn khi bạn nhấn vào cái nút mũi tên."
+
+#: 06140102.xhp
+msgctxt ""
+"06140102.xhp\n"
+"tit\n"
+"help.text"
+msgid "Move Menu"
+msgstr "Chuyển trình đơn"
+
+#: 06140102.xhp
+msgctxt ""
+"06140102.xhp\n"
+"par_idN10540\n"
+"help.text"
+msgid "Move Menu"
+msgstr "Chuyển trình đơn"
+
+#: 06140102.xhp
+msgctxt ""
+"06140102.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "Menu position"
+msgstr "Vị trí trình đơn"
+
+#: 06140102.xhp
+msgctxt ""
+"06140102.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Moves the selected menu entry up one position or down one position in the menu when you click an arrow button.</ahelp>"
+msgstr "Dời mục nhập trình đơn đã chọn lên hay xuống một vị trí trong trình đơn khi bạn nhấn vào cái nút mũi tên."
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Keyboard"
+msgstr "Bàn phím"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"bm_id2322763\n"
+"help.text"
+msgid "<bookmark_value>keyboard;assigning/editing shortcut keys</bookmark_value><bookmark_value>customizing;keyboard</bookmark_value><bookmark_value>editing;shortcut keys</bookmark_value><bookmark_value>styles;keyboard shortcuts</bookmark_value>"
+msgstr "<bookmark_value>bàn phím;gán/chỉnh sửa phím tắt</bookmark_value><bookmark_value>tùy chỉnh;bàn phím</bookmark_value><bookmark_value>chỉnh sửa;phím tắt</bookmark_value><bookmark_value>kiểu dáng;lối tắt bàn phím</bookmark_value>"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"hd_id3148882\n"
"1\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"Keyboard\">Keyboard</link>"
+msgstr "<link href=\"text/shared/01/06140200.xhp\" name=\"Bàn phím\">Bàn phím</link>"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3152910\n"
+"06140200.xhp\n"
+"par_id3159411\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MODALDIALOG:RID_SVXDLG_IMAPURL\">Lists the properties for the selected hotspot.</ahelp>"
-msgstr "<ahelp hid=\"SVX:MODALDIALOG:RID_SVXDLG_IMAPURL\">Liệt kê các thuộc tính về điểm nóng đã chọn.</ahelp>"
+msgid "<ahelp hid=\"HID_CONFIG_ACCEL\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
+msgstr "<ahelp hid=\"HID_CONFIG_ACCEL\">Gán hay chỉnh sửa phím tắt cho các lệnh $[officename], hay vĩ lệnh Basic $[officename].</ahelp>"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3150976\n"
+"06140200.xhp\n"
+"par_id3154682\n"
+"21\n"
+"help.text"
+msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
+msgstr "Bạn có khả năng gán hay chỉnh sửa phím tắt cho ứng dụng hiện thời (v.d. Writer), hoặc cho tất cả các ứng dụng $[officename] (Writer, Calc, Impress v.v.)."
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id3150144\n"
+"29\n"
+"help.text"
+msgid "Avoid assigning shortcut keys that are currently used by your operating system."
+msgstr "Tuy nhiên, tránh gán phím tắt cũng được hệ điều hành dùng."
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"hd_id3147250\n"
+"27\n"
+"help.text"
+msgid "$[officename]"
+msgstr "$[officename]"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id3152425\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_OFFICE\">Displays shortcut keys that are common to all $[officename] applications.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_OFFICE\">Hiển thị các phím tắt dùng chung bởi tất cả các ứng dụng $[officename].</ahelp>"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"hd_id3149095\n"
+"25\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Writer</caseinline><caseinline select=\"CALC\">Calc</caseinline><caseinline select=\"IMPRESS\">Impress</caseinline><caseinline select=\"DRAW\">Draw</caseinline><caseinline select=\"MATH\">Math</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Writer </caseinline><caseinline select=\"CALC\">Calc </caseinline><caseinline select=\"IMPRESS\">Impress </caseinline><caseinline select=\"DRAW\">Draw </caseinline><caseinline select=\"MATH\">Math </caseinline></switchinline>"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id3155892\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_MODULE\">Displays shortcut keys for the current $[officename] application.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_MODULE\">Hiển thị các phím tắt cho ứng dụng $[officename] hiện tại.</ahelp>"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"hd_id3149398\n"
"3\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Siêu liên kết"
+msgid "Shortcut keys"
+msgstr "Phím tắt"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3152349\n"
+"06140200.xhp\n"
+"par_id3149811\n"
"4\n"
"help.text"
-msgid "Lists the properties of the URL that is attached to the hotspot."
-msgstr "Liệt kê các thuộc tính về địa chỉ URL đính kèm điểm nóng đó."
+msgid "<ahelp hid=\"HID_ACCELCONFIG_LISTBOX\">Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the <emph>Function</emph> list, click a shortcut in this list, and then click <emph>Modify</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_ACCELCONFIG_LISTBOX\">Liệt kê các phím tắt và các lệnh liên quan. Để gán hay chỉnh sửa phím tắt cho lệnh được chọn trong danh sách <emph>Chức năng</emph>, nhấn vào phím tắt trong danh sách, sau đó nhấn vào nút <emph>Sửa</emph>.</ahelp>"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3156327\n"
+"06140200.xhp\n"
+"hd_id3157909\n"
"5\n"
"help.text"
-msgid "URL:"
-msgstr "URL:"
+msgid "Functions"
+msgstr "Chức năng"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3155831\n"
+"06140200.xhp\n"
+"par_id3155388\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C/[current_document_name]#anchor_name\"."
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URL\">Nhập địa chỉ URL đến tập tin muốn mở khi bạn nhấn vào điểm nóng đã chọn.</ahelp> Muốn nhảy tới một neo tên bên trong tài liệu hiện tại thì nhập địa chỉ có dạng « file:///C/tên_tài_liệu#tên_neo ». (Trong tài liệu HTML, dấu thăng (#) ngụ ý phần phụ của tài liệu.)"
+msgid "Lists the function categories and the $[officename] functions that you can assign shortcut keys to."
+msgstr "Liệt kê các phân loại chức năng và các chức năng $[officename] cho đó bạn có thể gán phím tắt."
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3153827\n"
+"06140200.xhp\n"
+"hd_id3155321\n"
"7\n"
"help.text"
-msgid "Alternative text:"
-msgstr "Chuỗi xen kẽ:"
+msgid "Category"
+msgstr "Loại"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3153665\n"
+"06140200.xhp\n"
+"par_id3149166\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION\">Nhập chuỗi nên hiển thị khi con trỏ để lại trên điểm nóng này trong trình duyệt Web.</ahelp> Không nhập chuỗi riêng thì hiển thị <emph>Địa chỉ</emph> (URL)."
+msgid "<ahelp hid=\"HID_CONFIGGROUP_ACC_LISTBOX\">Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category.</ahelp>"
+msgstr "<ahelp hid=\"HID_CONFIGGROUP_ACC_LISTBOX\">Liệt kê các phân loại chức năng sẵn sàng. Để gán phím tắt cho Kiểu dáng, mở phân loại « Kiểu dáng ».</ahelp>"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3149166\n"
+"06140200.xhp\n"
+"hd_id3154380\n"
"9\n"
"help.text"
-msgid "Frame:"
-msgstr "Khung:"
+msgid "Function"
+msgstr "Chức năng"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3155922\n"
+"06140200.xhp\n"
+"par_id3159148\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAPURL:CBB_TARGETS\">Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list.</ahelp>"
-msgstr "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAPURL:CBB_TARGETS\">Nhập tên của khung đích trong đó bạn muốn mở địa chỉ URL. Bạn cũng có thể chọn một tên khung tiêu chuẩn (được mọi trình duyệt nhận dạng) trong danh sách.</ahelp>"
+msgid "<ahelp hid=\"HID_CONFIGFUNCTION_ACC_LISTBOX\">Select a function that you want to assign a shortcut key to, click a key combination in the <emph>Shortcut keys</emph> list, and then click <emph>Modify</emph>. If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"HID_CONFIGFUNCTION_ACC_LISTBOX\">Chọn chức năng cho đó bạn muốn gán phím tắt, nhấn vào tổ hợp phím trong danh sách <emph>Phím tắt</emph>, rồi nhấn vào nút <emph>Sửa</emph>. Chức năng đó đã có phím tắt thì nó được hiển thị trong danh sách các <emph>Phím</emph>.</ahelp>"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3147530\n"
+"06140200.xhp\n"
+"hd_id3153332\n"
"11\n"
"help.text"
-msgid "Name:"
-msgstr "Tên:"
+msgid "Keys"
+msgstr "Phím"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3148550\n"
+"06140200.xhp\n"
+"par_id3150084\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_NAME\">Enter a name for the image.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_NAME\">Nhập tên cho ảnh.</ahelp>"
+msgid "<ahelp hid=\"SFX2:LISTBOX:TP_CONFIG_ACCEL:BOX_ACC_KEY\">Displays the shortcut keys that are assigned to the selected function.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:LISTBOX:TP_CONFIG_ACCEL:BOX_ACC_KEY\">Hiển thị phím tắt được gán cho chức năng đã chọn.</ahelp>"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id7557298\n"
+"06140200.xhp\n"
+"hd_id3150772\n"
+"15\n"
"help.text"
-msgid "Description"
-msgstr "Mô tả"
+msgid "Modify"
+msgstr "Sửa"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id5057222\n"
+"06140200.xhp\n"
+"par_id3152909\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a description for the hotspot.</ahelp>"
-msgstr "<ahelp hid=\".\">Nhập mô tả về điểm nóng.</ahelp>"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_ACC_CHANGE\">Assigns the key combination selected in the <emph>Shortcut keys</emph> list to the command selected in the <emph>Function </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_ACC_CHANGE\">Gán tổ hợp phím được chọn trong danh sách <emph>Phím tắt</emph> cho lệnh được chọn trong danh sách <emph>Chức năng</emph>.</ahelp>"
-#: 02220100.xhp
+#: 06140200.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3147559\n"
+"06140200.xhp\n"
+"par_id7730033\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">Priority Table</link>"
-msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Bảng ưu tiên\">Bảng ưu tiên</link>"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá (các) phần từ đã chọn, không cần xác nhận.</ahelp>"
-#: 04160300.xhp
+#: 06140200.xhp
msgctxt ""
-"04160300.xhp\n"
-"tit\n"
+"06140200.xhp\n"
+"hd_id3154307\n"
+"17\n"
"help.text"
-msgid "Formula"
-msgstr "Công thức"
+msgid "Load"
+msgstr "Nạp"
-#: 04160300.xhp
+#: 06140200.xhp
msgctxt ""
-"04160300.xhp\n"
-"bm_id3152937\n"
+"06140200.xhp\n"
+"par_id3145609\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>formulas; starting formula editor</bookmark_value><bookmark_value>$[officename] Math start</bookmark_value><bookmark_value>Math formula editor</bookmark_value><bookmark_value>equations in formula editor</bookmark_value><bookmark_value>editors;formula editor</bookmark_value>"
-msgstr "<bookmark_value>công thức; khởi chạy bộ sửa công thức</bookmark_value><bookmark_value>khởi chạy $[officename] Math</bookmark_value><bookmark_value>bộ sửa công thức Math</bookmark_value><bookmark_value>phương trình trong bộ sửa công thức</bookmark_value><bookmark_value>trình hiệu chỉnh;bộ sửa công thức</bookmark_value>"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_LOAD\">Replaces the shortcut key configuration with one that was previously saved.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_LOAD\">Thay thế cấu hình phím tắt bằng cấu hình đã lưu trước.</ahelp>"
-#: 04160300.xhp
+#: 06140200.xhp
msgctxt ""
-"04160300.xhp\n"
-"hd_id3152937\n"
+"06140200.xhp\n"
+"hd_id3150823\n"
+"19\n"
+"help.text"
+msgid "Save"
+msgstr "Lưu"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id3149655\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_SAVE\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_SAVE\">Lưu cấu hình phím tắt hiện thời, để bạn nạp lại sau.</ahelp>"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"hd_id3150824\n"
+"19\n"
+"help.text"
+msgid "Reset"
+msgstr "Đặt lại"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id756248\n"
+"help.text"
+msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt lại mỗi giá trị bị sửa đổi về giá trị mặc định.</ahelp>"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Thanh công cụ"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"hd_id3154100\n"
"1\n"
"help.text"
-msgid "Formula"
-msgstr "Công thức"
+msgid "<link href=\"text/shared/01/06140400.xhp\" name=\"Toolbars\">Toolbars</link>"
+msgstr "<link href=\"text/shared/01/06140400.xhp\" name=\"Thanh công cụ\">Thanh công cụ</link>"
-#: 04160300.xhp
+#: 06140400.xhp
msgctxt ""
-"04160300.xhp\n"
-"par_id3149495\n"
+"06140400.xhp\n"
+"par_id3150279\n"
"2\n"
"help.text"
-msgid "<variable id=\"starmath\"><ahelp hid=\".uno:InsertObjectStarMath\">Inserts a formula into the current document.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> For more information open the $[officename] Math Help.</defaultinline></switchinline></variable>"
-msgstr "<variable id=\"starmath\"><ahelp hid=\".uno:InsertObjectStarMath\">Chèn vào tài liệu hiện tại một công thức.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> Để tìm thêm thông tin, mở Trợ giúp về $[officename] Math.</defaultinline></switchinline></variable>"
+msgid "Lets you customize $[officename] toolbars."
+msgstr "Cho phép bạn tùy chỉnh các thanh công cụ của $[officename]."
-#: 04160300.xhp
+#: 06140400.xhp
msgctxt ""
-"04160300.xhp\n"
-"par_id3154317\n"
+"06140400.xhp\n"
+"par_idN10601\n"
"help.text"
-msgid "<link href=\"text/smath/main0000.xhp\" name=\"Formulas\">Formulas</link>"
-msgstr "<link href=\"text/smath/main0000.xhp\" name=\"Công thức\">Công thức</link>"
+msgid "Toolbar"
+msgstr "Thanh công cụ"
-#: 02230200.xhp
+#: 06140400.xhp
msgctxt ""
-"02230200.xhp\n"
+"06140400.xhp\n"
+"par_idN10604\n"
+"help.text"
+msgid "Select the toolbar you want to edit."
+msgstr "Chọn thanh công cụ cần chỉnh sửa."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10607\n"
+"help.text"
+msgid "New"
+msgstr "Mới"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1060A\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar.</ahelp> Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar."
+msgstr ""
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106011\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name of a new toolbar.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106012\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the location of the new toolbar.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1061B\n"
+"help.text"
+msgid "Toolbar"
+msgstr "Thanh công cụ"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1061E\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Toolbar button opens a submenu</ahelp> with the following commands:"
+msgstr "<ahelp hid=\".\">Cái nút <emph>Thanh công cụ</emph> mở trình đơn phụ</ahelp> chứa những lệnh này:"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10621\n"
+"help.text"
+msgid "Rename"
+msgstr "Thay tên"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10624\n"
+"help.text"
+msgid "Opens the <emph>Name</emph> dialog, where you enter a new name for the selected toolbar."
+msgstr "Mở hộp thoại <emph>Tên</emph>, vào đó bạn nhập tên mới cho thanh công cụ đã chọn."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1062B\n"
+"help.text"
+msgid "New name"
+msgstr "Tên mới"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1062E\n"
+"help.text"
+msgid "Enter the new name for the selected toolbar."
+msgstr "Nhập tên mới cho thanh công cụ đã chọn."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10631\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "Deletes the selected toolbar after you agree to the question. You can only delete custom toolbars, not the built-in toolbars."
+msgstr "Bạn xác nhận thì xoá thanh công cụ đã chọn. Bạn chỉ có khả năng xoá thanh công cụ riêng, không phải thanh công cụ có sẵn."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10637\n"
+"help.text"
+msgid "Restore Default Settings"
+msgstr "Phục hồi thiết lập mặc định"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1063A\n"
+"help.text"
+msgid "Restores the default settings."
+msgstr "Phục hồi thiết lập mặc định."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "Icons only"
+msgstr "Chỉ biểu tượng"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10652\n"
+"help.text"
+msgid "Shows icons only."
+msgstr "Chỉ hiển thị các biểu tượng."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10655\n"
+"help.text"
+msgid "Text only"
+msgstr "Chỉ văn bản"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10658\n"
+"help.text"
+msgid "Shows text only."
+msgstr "Hiển thị chỉ các nhãn của biểu tượng."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1065B\n"
+"help.text"
+msgid "Icons & Text"
+msgstr "Nhãn và biểu tượng"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1065E\n"
+"help.text"
+msgid "Shows icons and text."
+msgstr "Hiển thị các nhãn cùng với các biểu tượng."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1069AAA\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item up in the list.</ahelp>"
+msgstr ""
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1068AAA\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item down in the list.</ahelp>"
+msgstr ""
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10661\n"
+"help.text"
+msgid "Commands"
+msgstr "Lệnh"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10664\n"
+"help.text"
+msgid "Displays a list of commands for the selected toolbar of the current application or document."
+msgstr "Hiển thị danh sách các lệnh cho thanh công cụ đã chọn của ứng dụng hay tài liệu hiện tại."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10667\n"
+"help.text"
+msgid "Add"
+msgstr "Thêm"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog.</ahelp>"
+msgstr ""
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10675\n"
+"help.text"
+msgid "Modify"
+msgstr "Sửa"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10678\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Modify button opens a submenu</ahelp> with the following commands:"
+msgstr "<ahelp hid=\".\">Cái nút <emph>Sửa</emph> thì mở trình đơn phụ</ahelp> chứa những lệnh này:"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1067B\n"
+"help.text"
+msgid "Rename"
+msgstr "Thay tên"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1067E\n"
+"help.text"
+msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
+msgstr "Mở hộp thoại <emph>Thay tên</emph>, vào đó bạn nhập tên mới cho lệnh đã chọn."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10685\n"
+"help.text"
+msgid "New name"
+msgstr "Tên mới"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10688\n"
+"help.text"
+msgid "Enter the new name for the selected command."
+msgstr "Nhập tên mới cho lệnh đã chọn."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1068B\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1068E\n"
+"help.text"
+msgid "Deletes the selected command after you agree to the question."
+msgstr "Bạn xác nhận thì xoá lệnh đã chọn."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10691\n"
+"help.text"
+msgid "Restore Default Settings"
+msgstr "Phục hồi thiết lập mặc định"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10694\n"
+"help.text"
+msgid "Restores the default settings."
+msgstr "Phục hồi thiết lập mặc định."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106A9\n"
+"help.text"
+msgid "Begin a Group"
+msgstr "Tạo nhóm"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106AC\n"
+"help.text"
+msgid "Inserts a separator line under the current toolbar entry."
+msgstr "Chèn một đường phân cách vào bên dưới mục nhập thanh công cụ hiện tại."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106AF\n"
+"help.text"
+msgid "Change Icon"
+msgstr "Đổi biểu tượng"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106B2\n"
+"help.text"
+msgid "Opens the Change Icon dialog, where you can assign a different icon to the current command."
+msgstr "Mở hộp thoại <emph>Đổi biểu tượng</emph>, trong đó bạn có thể gán biểu tượng khác cho lệnh hiện thời."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106B5\n"
+"help.text"
+msgid "Reset Icon"
+msgstr "Lập lại biểu tượng"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106B8\n"
+"help.text"
+msgid "Resets the icon to the default icon."
+msgstr "Đặt lại biểu tượng về biểu tượng mặc định."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106BB\n"
+"help.text"
+msgid "Save In"
+msgstr "Lưu vào"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106D2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the location where to load the configuration and where to save it.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn vị trí từ đó cần nạp cấu hình, và vào đó cần lưu nó.</ahelp>"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106D5\n"
+"help.text"
+msgid "For every entry in the list box, an own configuration is maintained. Select one of the open documents or select the application to load and edit the associated configuration. Edit the configuration and save it back to the location from where you loaded it. Editing the configuration in one location does not change the configuration in any other location."
+msgstr "Đối với mỗi mục nhập trong hộp liệt kê thì bảo tồn một cấu hình riêng. Hãy chọn một của những tài liệu còn mở, hoặc chọn ứng dụng cần nạp, và chỉnh sửa cấu hình liên quan. Chỉnh sửa cấu hình, sau đó lưu nó lại về vị trí từ đó bạn đã nạp nó. Tuy nhiên, việc chỉnh sửa cấu hình trong vị trí này không phải thay đổi cấu hình trong vị trí khác."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106D8\n"
+"help.text"
+msgid "It is not possible to load a configuration from one location and save it to another location."
+msgstr "Không thể nạp cấu hình từ vị trí này, sau đó lưu nó vào vị trí khác."
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
"tit\n"
"help.text"
-msgid "Show Changes"
-msgstr "Hiện thay đổi"
+msgid "Change Icon"
+msgstr "Đổi biểu tượng"
-#: 02230200.xhp
+#: 06140402.xhp
msgctxt ""
-"02230200.xhp\n"
-"bm_id3149988\n"
+"06140402.xhp\n"
+"par_idN10543\n"
"help.text"
-msgid "<bookmark_value>changes; showing</bookmark_value><bookmark_value>hiding;changes</bookmark_value><bookmark_value>showing; changes</bookmark_value>"
-msgstr "<bookmark_value>thay đổi; hiển thị</bookmark_value><bookmark_value>ẩn;thay đổi</bookmark_value><bookmark_value>hiển thị; thay đổi</bookmark_value>"
+msgid "Change Icon"
+msgstr "Đổi biểu tượng"
-#: 02230200.xhp
+#: 06140402.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3149988\n"
+"06140402.xhp\n"
+"par_idN10547\n"
+"help.text"
+msgid "Icons"
+msgstr "Biểu tượng"
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "Displays the available icons in %PRODUCTNAME. To replace the icon that you selected in the <link href=\"text/shared/01/06140400.xhp\">Customize</link> dialog, click an icon, then click the <emph>OK</emph> button."
+msgstr "Hiển thị các biểu tượng sẵn sàng trong %PRODUCTNAME. Để thay thế biểu tượng bạn đã chọn trong hộp thoại <link href=\"text/shared/01/06140400.xhp\">Đặc chế</link>, nhấn vào một biểu tượng nào đó, sau đó nhấn vào nút <emph>OK</emph>."
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "Import"
+msgstr "Nhập"
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
+"par_idN10560\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm các biểu tượng mới vào danh sách các biểu tượng. Bạn sẽ thấy hộp thoại mở tập tin mà nhập khẩu các biểu tượng đã chọn vào thư mục biểu tượng nội bộ của %PRODUCTNAME.</ahelp>"
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
+"par_idN10575\n"
+"help.text"
+msgid "You can only import icons that are in the PNG file format and that are 16x16 or 26x26 pixels in size."
+msgstr "Chỉ có khả năng nhập khẩu biểu tượng theo định dạng tập tin PNG mà có kích cỡ hoặc 16×16 hoặc 26×26 điểm ảnh."
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
+"par_id8224433\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to remove the selected icon from the list. Only user-defined icons can be removed.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn vào để gỡ bỏ biểu tượng đã chọn khỏi danh sách. Chỉ có thể gỡ bỏ các biểu tượng tự xác định (không phải biểu tượng mặc định).</ahelp>"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Events"
+msgstr "Dữ kiện"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"bm_id3152427\n"
+"help.text"
+msgid "<bookmark_value>customizing; events</bookmark_value><bookmark_value>events; customizing</bookmark_value>"
+msgstr "<bookmark_value>tùy chỉnh; dữ kiện</bookmark_value><bookmark_value>dữ kiện; tùy chỉnh</bookmark_value>"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"hd_id3152427\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Show Changes\">Show Changes</link>"
-msgstr "<link href=\"text/shared/01/02230200.xhp\" name=\"Hiện thay đổi\">Hiện thay đổi</link>"
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Dữ kiện\">Dữ kiện</link>"
-#: 02230200.xhp
+#: 06140500.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3153323\n"
+"06140500.xhp\n"
+"par_id3152937\n"
"2\n"
"help.text"
-msgid "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Shows or hides recorded changes.</ahelp></variable>"
-msgstr "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Hiển thị hay ẩn các thay đổi đã thu.</ahelp></variable>"
+msgid "<variable id=\"assignaction\"><ahelp hid=\".\">Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs.</ahelp></variable>"
+msgstr "<ahelp hid=\"HID_CONFIG_EVENT\">Gán vĩ lệnh cho dữ kiện chương trình. Vĩ lệnh đã gán thì tự động chạy khi nào xảy ra dữ kiện đã chọn.</ahelp>"
-#: 02230200.xhp
+#: 06140500.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3152425\n"
-"7\n"
+"06140500.xhp\n"
+"par_id317748820\n"
"help.text"
-msgid "You can change the display properties of the markup elements by choosing <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
-msgstr "Bạn cũng có thể sửa đổi các thuộc tính về phần tử đánh dấu bằng cách chọn mục trình đơn<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Công cụ > Tùy chọn > Writer > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Writer > Thay đổi</emph></link>. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Công cụ > Tùy chọn > Calc > Thay đổi\"><emph>Công cụ > Tùy chọn > %PRODUCTNAME Calc > Thay đổi</emph></link>. </caseinline></switchinline>"
+msgid "The dialog box has reduced functionality when called from the Edit-Sheet menu of a spreadsheet."
+msgstr ""
-#: 02230200.xhp
+#: 06140500.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3155356\n"
+"06140500.xhp\n"
+"par_idN1060A\n"
+"help.text"
+msgid "Save In"
+msgstr "Lưu vào"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_idN1060E\n"
+"help.text"
+msgid "<ahelp hid=\"705547787\">Select first where to save the event binding, in the current document or in %PRODUCTNAME.</ahelp>"
+msgstr "<ahelp hid=\"705547787\">Trước tiên hãy chọn lưu tổ hợp dữ kiện vào đâu : vào tài liệu hiện tại, hoặc vào %PRODUCTNAME.</ahelp>"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_id3153662\n"
+"36\n"
+"help.text"
+msgid "A macro that is saved with a document can only be run when that document is opened."
+msgstr "Vĩ lệnh được lưu cùng với tài liệu thì chỉ có thể chạy khi tài liệu đó đã mở."
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_idN1061A\n"
+"help.text"
+msgid "<ahelp hid=\"40000\">The big list box lists the events and the assigned macros. After you selected the location in the <emph>Save In</emph> list box, select an event in the big list box. Then click <emph>Assign Macro</emph>.</ahelp>"
+msgstr "<ahelp hid=\"40000\">Hộp liệt kê lớn có liệt kê các dữ kiện và các vĩ lệnh đã gán. Một khi bạ chọn vị trí trong hộp liệt kê <emph>Lưu vào</emph>, chọn một dữ kiện trong hộp liệt kê lớn. Sau đó thì nhấn vào nút <emph>Gán vĩ lệnh</emph>.</ahelp>"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"hd_id3159258\n"
+"22\n"
+"help.text"
+msgid "Assign Macro"
+msgstr "Gán vĩ lệnh"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_id3156152\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_ASSIGN\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_ASSIGN\">Mở <link href=\"text/shared/01/06130000.xhp\">Bộ chọn Vĩ lệnh</link> để gán một vĩ lệnh cho dữ kiện đã chọn.</ahelp>"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"hd_id3154046\n"
+"24\n"
+"help.text"
+msgid "Remove Macro"
+msgstr "Bỏ vĩ lệnh"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_id3152349\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_DELETE\">Deletes the macro assignment for the selected event.</ahelp>"
+msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_DELETE\">Xoá sự gán vĩ lệnh cho dữ kiện đã chọn.</ahelp>"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_id3159147\n"
+"38\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"List of events\">List of events</link>"
+msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Danh sách các dữ kiện\">Danh sách các dữ kiện</link>"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"tit\n"
+"help.text"
+msgid "XML Filter Settings"
+msgstr "Thiết lập bộ lọc XML"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"bm_id3153272\n"
+"help.text"
+msgid "<bookmark_value>filters; XML filter settings</bookmark_value><bookmark_value>XML filters; settings</bookmark_value>"
+msgstr "<bookmark_value>bộ lọc; thiết lập lọc XML</bookmark_value><bookmark_value>bộ lọc XML; thiết lập</bookmark_value>"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3153272\n"
+"2\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06150000.xhp\" name=\"XML Filter Settings\">XML Filter Settings</link>"
+msgstr "<link href=\"text/shared/01/06150000.xhp\" name=\"Thiết lập bộ lọc XML\">Thiết lập bộ lọc XML</link>"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3152937\n"
+"1\n"
+"help.text"
+msgid "<ahelp hid=\".uno:OpenXMLFilterSettings\">Opens the <emph>XML Filter Settings </emph>dialog, where you can create, edit, delete, and test filters to import and to export XML files.</ahelp>"
+msgstr "<ahelp hid=\".uno:OpenXMLFilterSettings\">Mở hộp thoại <emph>Thiết lập bộ lọc XML</emph>, trong đó bạn có thể tạo, chỉnh sửa, xoá và thử các bộ lọc để nhập/xuất khẩu tập tin XML.</ahelp>"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_idN10646\n"
+"help.text"
+msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
+msgstr "Một số bộ lọc nào đó chỉ sẵn sàng dưới dạng thành phần tùy chọn trong khi tiến trình cài đặt %PRODUCTNAME. Để cài đặt một bộ lọc tùy chọn, chạy ứng dụng Thiết lập %PRODUCTNAME (Setup), bật tùy chọn « Sửa », sau đó chọn bộ lọc thích hợp trong danh sách các mô-đun."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3154794\n"
+"3\n"
+"help.text"
+msgid "The term <emph>XML filter</emph> is used in the following as a shortcut for the more exact description as an <emph>XSLT based filter</emph>."
+msgstr "Thuật ngữ <emph>Bộ lọc XML</emph> được dùng trong văn bản theo đây làm lối tắt đại diện mô tả chính xác hơn: <emph>bộ lọc dựa vào XSLT</emph>."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149495\n"
+"4\n"
+"help.text"
+msgid "Term"
+msgstr "Thuật ngữ"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149549\n"
+"5\n"
+"help.text"
+msgid "Description"
+msgstr "Mô tả"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3144758\n"
"6\n"
"help.text"
-msgid "When you rest the mouse pointer over a change markup in the document, a <emph>Tip</emph> displays the author and the date and time that the change was made.<switchinline select=\"appl\"><caseinline select=\"CALC\"> If the <emph>Extended Tips</emph> are activated, the type of change and any attached comments are also displayed.</caseinline></switchinline>"
-msgstr "Khi bạn để lại con trỏ chuột ở trên dấu ngụ ý thay đổi trong tài liệu, một lời<emph>Gợi ý</emph> sẽ hiển thị tên tác giả và ngày/giờ làm thay đổi.<switchinline select=\"appl\"><caseinline select=\"CALC\">Kích hoạt chức năng <emph>Gợi ý Mở rộng</emph> thì cũng hiển thị kiểu thay đổi và chú thích đính kèm (nếu có). </caseinline></switchinline>"
+msgid "XML"
+msgstr "XML"
-#: 02230200.xhp
+#: 06150000.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3153681\n"
+"06150000.xhp\n"
+"par_id3152425\n"
+"7\n"
+"help.text"
+msgid "Extensible Markup Language"
+msgstr "Ngôn ngữ Định dạng có Khả năng Mở rộng"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3155355\n"
"8\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show changes in spreadsheet</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hiện thay đổi trong bảng tính </caseinline></switchinline>"
+msgid "XSL"
+msgstr "XSL"
-#: 02230200.xhp
+#: 06150000.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3149150\n"
+"06150000.xhp\n"
+"par_id3145071\n"
"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT\">Shows or hides recorded changes.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT\">Hiển thị hay ẩn các thay đổi đã thu.</ahelp></caseinline></switchinline>"
+msgid "Extensible Stylesheet Language"
+msgstr "Ngôn ngữ Bảng Kiểu dáng có Khả năng Mở rộng"
-#: 02230200.xhp
+#: 06150000.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3147336\n"
+"06150000.xhp\n"
+"par_id3156426\n"
"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show accepted changes</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hiện thay đổi đã chấp nhận </caseinline></switchinline>"
+msgid "XSLT"
+msgstr "XSLT"
-#: 02230200.xhp
+#: 06150000.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3153541\n"
+"06150000.xhp\n"
+"par_id3154983\n"
"11\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT\">Shows or hides the changes that were accepted.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT\">Hiển thị hay ẩn các thay đổi đã được chấp nhận.</ahelp></caseinline></switchinline>"
+msgid "Extensible Stylesheet Language Transformation. XSLT files are also called XSLT stylesheets."
+msgstr "Chuyển dạng Ngôn ngữ Bảng Kiểu dáng có Khả năng Mở rộng. Tập tin XSLT cũng được gọi như là « Bảng Kiểu dáng XSLT » (XSLT Stylesheets)."
-#: 02230200.xhp
+#: 06150000.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3149956\n"
+"06150000.xhp\n"
+"par_idN106E7\n"
+"help.text"
+msgid "The XHTML export filter produces valid \"XHTML 1.0 Strict\" output for Writer, Calc, Draw, and Impress documents."
+msgstr "Bộ lọc xuất khẩu XHTML xuất mã nguồn « XHTML 1.0 Chặt chẽ » hợp lệ cho các tài liệu kiểu Writer, Calc, Draw, và Impress."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3145382\n"
"12\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show rejected changes </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hiện thay đổi bị từ chối</caseinline></switchinline>"
+msgid "Filter list"
+msgstr "Danh sách bộ lọc"
-#: 02230200.xhp
+#: 06150000.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3159166\n"
+"06150000.xhp\n"
+"par_id3147209\n"
"13\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT\">Shows or hides the changes that were rejected.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT\">Hiển thị hay ẩn các thay đổi đã bị từ chối.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/filterlist\">Select one or more filters, then click one of the buttons.</ahelp>"
+msgstr ""
-#: 02230200.xhp
+#: 06150000.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3145119\n"
+"06150000.xhp\n"
+"par_idN10711\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comments\">Comments</link>"
-msgstr "<link href=\"text/shared/01/02230300.xhp\" name=\"Chú thích\">Chú thích</link>"
+msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
+msgstr "Một số bộ lọc nào đó chỉ sẵn sàng dưới dạng thành phần tùy chọn trong khi tiến trình cài đặt %PRODUCTNAME. Để cài đặt một bộ lọc tùy chọn, chạy ứng dụng Thiết lập %PRODUCTNAME (Setup), bật tùy chọn « Sửa », sau đó chọn bộ lọc thích hợp trong danh sách các mô-đun."
-#: 05030700.xhp
-#, fuzzy
+#: 06150000.xhp
msgctxt ""
-"05030700.xhp\n"
+"06150000.xhp\n"
+"par_id3153032\n"
+"33\n"
+"help.text"
+msgid "The lists shows the name and the type of the installed filters."
+msgstr "Danh sách hiển thị tên và kiểu của mỗi bộ lọc đã cài đặt."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3154577\n"
+"14\n"
+"help.text"
+msgid "Click a filter to select it."
+msgstr "Nhấn vào bộ lọc để lựa chọn nó."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149885\n"
+"15\n"
+"help.text"
+msgid "Shift-click or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click to select several filters."
+msgstr "Giữ Shift rồi nhấn chuột hoặc giữ <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> và nhấn để chọn nhiều bộ lọc một lúc."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149784\n"
+"16\n"
+"help.text"
+msgid "Double-click a name to edit the filter."
+msgstr "Nhấn-đôi vào tên để chỉnh sửa bộ lọc đó."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3159400\n"
+"17\n"
+"help.text"
+msgid "New"
+msgstr "Mới"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149516\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/new\">Opens a dialog with the name of a new filter.</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3143270\n"
+"19\n"
+"help.text"
+msgid "Edit"
+msgstr "Sửa"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3156192\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/edit\">Opens a dialog with the name of the selected file.</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3154380\n"
+"21\n"
+"help.text"
+msgid "Test XSLTs"
+msgstr "Thử XSLT"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3148491\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/test\">Opens a dialog with the name of the selected file.</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3157909\n"
+"23\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3153564\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/delete\">Deletes the selected file after you confirm the dialog that follows.</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3151384\n"
+"25\n"
+"help.text"
+msgid "Save as Package"
+msgstr "Lưu dạng gói"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149575\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/save\">Displays a <emph>Save as </emph>dialog to save the selected file as an XSLT filter package (*.jar).</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3154758\n"
+"27\n"
+"help.text"
+msgid "Open Package"
+msgstr "Mở gói"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3147559\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/open\">Displays an <emph>Open </emph>dialog to open a filter from an XSLT filter package (*.jar).</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3153960\n"
+"29\n"
+"help.text"
+msgid "Help"
+msgstr "Trợ giúp"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3150865\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/help\">Displays the help page for this dialog.</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3152772\n"
+"31\n"
+"help.text"
+msgid "Close"
+msgstr "Đóng"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3159086\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/close\">Closes the dialog.</ahelp>"
+msgstr ""
+
+#: 06150100.xhp
+msgctxt ""
+"06150100.xhp\n"
"tit\n"
"help.text"
-msgid "Alignment"
-msgstr "#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nCanh lề\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nSắp hàng\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nSắp hàng\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nCanh lề\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\nCanh lề"
+msgid "XML Filter"
+msgstr "Bộ lọc XML"
-#: 05030700.xhp
+#: 06150100.xhp
msgctxt ""
-"05030700.xhp\n"
-"bm_id3150008\n"
+"06150100.xhp\n"
+"hd_id3153882\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>aligning; paragraphs</bookmark_value><bookmark_value>paragraphs; alignment</bookmark_value><bookmark_value>lines of text; alignment</bookmark_value><bookmark_value>left alignment of paragraphs</bookmark_value><bookmark_value>right alignment of paragraphs</bookmark_value><bookmark_value>centered text</bookmark_value><bookmark_value>justifying text</bookmark_value>"
-msgstr "<bookmark_value>canh lề; đoạn văn</bookmark_value><bookmark_value>đoạn văn; chỉnh canh</bookmark_value><bookmark_value>các dòng văn bản; canh lề</bookmark_value><bookmark_value>canh lề trái đoạn văn</bookmark_value><bookmark_value>canh lề phải đoạn văn</bookmark_value><bookmark_value>đặt văn bản vào giữa</bookmark_value><bookmark_value>canh đều văn bản hai bên</bookmark_value>"
+msgid "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\" name=\"XML Filter\">XML Filter</link></variable>"
+msgstr "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link></variable>"
-#: 05030700.xhp
+#: 06150100.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3150008\n"
+"06150100.xhp\n"
+"par_id3153070\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">View and edit the settings of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Xem và chỉnh sửa thiết lập của một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"tit\n"
+"help.text"
+msgid "General"
+msgstr "Chung"
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"hd_id3158442\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Alignment\">Alignment</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Canh lề\">Canh lề</link>"
+msgid "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=\"General\">General</link></variable>"
+msgstr "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=\"Chung\">Chung</link></variable>"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3147399\n"
+"06150110.xhp\n"
+"par_id3149038\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"\">Enter or edit general information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr "<ahelp hid=\"\">Nhập hay chỉnh sửa thông tin chung về một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"hd_id3151097\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_ALIGN\">Sets the alignment of the paragraph relative to the margins of page.</ahelp>"
-msgstr "<ahelp hid=\"HID_FORMAT_PARAGRAPH_ALIGN\">Đặt cách chỉnh canh đoạn văn tương đối so với các lề của trang.</ahelp>"
+msgid "Filter name"
+msgstr "Tên bộ lọc"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3143268\n"
+"06150110.xhp\n"
+"par_id3150838\n"
"3\n"
"help.text"
-msgid "Alignment"
-msgstr "Canh lề"
+msgid "<ahelp hid=\"HID_XML_FILTER_NAME\">Enter the name that you want to display in the list box of the <emph>XML Filter Settings</emph> dialog.</ahelp> You must enter a unique name."
+msgstr "<ahelp hid=\"HID_XML_FILTER_NAME\">Nhập tên bạn muốn hiển thị trong hộp liệt kê của hộp thoại <emph>Thiết lập bộ lọc XML</emph>.</ahelp> Phải nhập một tên duy nhất."
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3147008\n"
+"06150110.xhp\n"
+"hd_id3149119\n"
"4\n"
"help.text"
-msgid "Set the alignment options for the current paragraph."
-msgstr "Đặt các tùy chọn canh lề cho đoạn văn hiện tại."
+msgid "Application"
+msgstr "Ứng dụng"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3153681\n"
+"06150110.xhp\n"
+"par_id3149793\n"
"5\n"
"help.text"
-msgid "Left"
-msgstr "Trái"
+msgid "<ahelp hid=\"HID_XML_FILTER_APPLICATION\">Select the application that you want to use with the filter.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_APPLICATION\">Chọn ứng dụng bạn muốn dùng cùng với bộ lọc này.</ahelp>"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3153031\n"
+"06150110.xhp\n"
+"hd_id3149999\n"
"6\n"
"help.text"
-msgid "<variable id=\"linkstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN\">Aligns the paragraph to the left page margin.</ahelp></variable> If Asian language support is enabled, this option is named Left/Top."
-msgstr "<variable id=\"linkstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN\">Chỉnh canhđoạn văn theo lề bên trái.</ahelp></variable> Cũng hiệu lực hỗ trợ ngôn ngữ Châu Á thì tùy chọn này có tên « Trái/Trên »."
+msgid "Name of file type"
+msgstr "Tên của kiểu tập tin"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3154142\n"
+"06150110.xhp\n"
+"par_id3149549\n"
"7\n"
"help.text"
-msgid "Right"
-msgstr "Phải"
+msgid "<ahelp hid=\"HID_XML_FILTER_INTERFACE_NAME\">Enter the name that you want to display in the <emph>File type</emph> box in file dialogs.</ahelp> You must enter a unique name. For import filters, the name appears in the <emph>File type</emph> box of <emph>Open</emph> dialogs. For export filters, the name appears in the <emph>File format</emph> box of <emph>Export</emph> dialogs."
+msgstr "<ahelp hid=\"HID_XML_FILTER_INTERFACE_NAME\">Nhập tên bạn muốn hiển thị trong hộp <emph>Kiểu tập tin</emph> trong các hộp thoại tập tin.</ahelp> Bạn phải nhập tên duy nhất. Đối với bộ lọc nhập khẩu, tên này xuất hiện trong hộp <emph>Kiểu tập tin</emph> của các hộp thoại <emph>Mở</emph>. Đối với bộ lọc xuất khẩu, tên này xuất hiện trong hộp <emph>Định dạng tập tin</emph> của các hộp thoại <emph>Xuất</emph>."
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3156326\n"
+"06150110.xhp\n"
+"hd_id3147834\n"
"8\n"
"help.text"
-msgid "<variable id=\"rechtstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN\">Aligns the paragraph to the right page margin.</ahelp></variable> If Asian language support is enabled, this option is named Right/Bottom."
-msgstr "<variable id=\"rechtstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN\">Chỉnh canh đoạn văn theo lề bên phải.</ahelp></variable> Cũng hiệu lực hỗ trợ ngôn ngữ Châu Á thì tùy chọn này có tên « Phải/Trên »."
+msgid "File extension"
+msgstr "Phần mở rộng tập tin"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3148642\n"
+"06150110.xhp\n"
+"par_id3147291\n"
"9\n"
"help.text"
-msgid "Centered"
-msgstr "Giữa"
+msgid "<ahelp hid=\"HID_XML_FILTER_EXTENSION\">Enter the file extension to use when you open a file without specifying a filter. $[officename] uses the file extension to determine which filter to use.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_EXTENSION\">Nhập phần mở rộng tập tin cần dùng khi bạn mở tập tin mà không ghi rõ bộ lọc riêng. $[officename] dùng phần mở rộng tập tin để xác định có nên dùng bộ lọc nào.</ahelp>"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3153257\n"
+"06150110.xhp\n"
+"hd_id3157863\n"
"10\n"
"help.text"
-msgid "<variable id=\"zentrierttext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN\">Centers the contents of the paragraph on the page.</ahelp></variable>"
-msgstr "<variable id=\"zentrierttext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN\">Đặt nội dung của đoạn văn vào giữa trang.</ahelp></variable>"
+msgid "Comments"
+msgstr "Chú thích"
-#: 05030700.xhp
+#: 06150110.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3149415\n"
+"06150110.xhp\n"
+"par_id3146957\n"
"11\n"
"help.text"
-msgid "Justify"
-msgstr "Canh đều"
+msgid "<ahelp hid=\"HID_XML_FILTER_DESCRIPTION\">Enter a comment (optional).</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_DESCRIPTION\">(Tùy chọn) Nhập chú thích.</ahelp>"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3152474\n"
+"06150120.xhp\n"
+"tit\n"
+"help.text"
+msgid "Transformation"
+msgstr "Chuyển dạng"
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"hd_id3147477\n"
+"21\n"
+"help.text"
+msgid "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\" name=\"Transformation\">Transformation</link></variable>"
+msgstr "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\" name=\"Chuyển dạng\">Chuyển dạng</link></variable>"
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"par_id3154350\n"
+"1\n"
+"help.text"
+msgid "<ahelp visibility=\"visible\" hid=\"\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"\">Nhập hay chỉnh sửa thông tin tập tin về một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"hd_id3148668\n"
+"2\n"
+"help.text"
+msgid "DocType"
+msgstr "DocType (kiểu tài liệu)"
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"par_id3155934\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\"HID_XML_FILTER_DOCTYPE\" visibility=\"visible\">Enter the DOCTYPE of the XML file.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_DOCTYPE\" visibility=\"visible\">Nhập DOCTYPE (kiểu tài liệu) của tập tin XML.</ahelp>"
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"par_id3155892\n"
+"11\n"
+"help.text"
+msgid "The public identifier is used to detect the filter when you open a file without specifying a filter."
+msgstr "Số nhận diện công cộng được dùng để phát hiện bộ lọc khi bạn mở tập tin mà không ghi rõ bộ lọc riêng."
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"hd_id3155338\n"
"12\n"
"help.text"
-msgid "<variable id=\"blocksatztext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN\">Aligns the paragraph to the left and to the right page margins.</ahelp></variable>"
-msgstr "<variable id=\"blocksatztext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN\">Chỉnh canh đoạn văn theo lề bên trái và bên phải trang.</ahelp></variable>"
+msgid "Browse"
+msgstr "Duyệt"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3145068\n"
+"06150120.xhp\n"
+"par_id3150506\n"
"13\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Last Line </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Dòng cuối</caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE\" visibility=\"visible\">Opens a file selection dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE\" visibility=\"visible\">Mở hộp thoại lựa chọn tập tin.</ahelp>"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3154280\n"
+"06150120.xhp\n"
+"hd_id3153527\n"
"14\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE\">Specify the alignment for the last line in the paragraph.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE\">Ghi rõ cách chỉnh canh dòng cuối cùng trong đoạn văn.</ahelp></caseinline></switchinline>"
+msgid "XSLT for export"
+msgstr "XSLT cần xuất"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3154936\n"
+"06150120.xhp\n"
+"par_id3152552\n"
"15\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Expand single word </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Mở rộng từ đơn</caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_XML_FILTER_EXPORT_XSLT\" visibility=\"visible\">If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_EXPORT_XSLT\" visibility=\"visible\">Nếu đây là một bộ lọc xuất khẩu, nhập tên tập tin của bảng kiểu dáng XSLT bạn muốn dùng để xuất khẩu.</ahelp>"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3154224\n"
-"16\n"
+"06150120.xhp\n"
+"hd_id3149149\n"
+"20\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND\">If the last line of a justified paragraph consists of one word, the word is stretched to the width of the paragraph.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND\">Dòng cuối cùng của đoạn văn chỉ chứa một từ thì mở rộng từ qua toàn chiều rộng của đoạn văn.</ahelp></caseinline></switchinline>"
+msgid "XSLT for import"
+msgstr "XSLT cần nhập"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3150495\n"
-"22\n"
+"06150120.xhp\n"
+"par_id3147653\n"
+"16\n"
"help.text"
-msgid "Snap to text grid (if active)"
-msgstr "Đính lưới văn bản (nếu bật)"
+msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_XSLT\" visibility=\"visible\">If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_IMPORT_XSLT\" visibility=\"visible\">Nếu đây là một bộ lọc nhập khẩu, nhập tên tập tin của bảng kiểu dáng XSLT bạn muốn dùng để nhập khẩu.</ahelp>"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3154331\n"
-"21\n"
+"06150120.xhp\n"
+"hd_id3147242\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_CB_SNAP\">Aligns the paragraph to a text grid. To activate the text grid, choose <link href=\"text/swriter/01/05040800.xhp\" name=\"Format - Page - Text Grid\"><emph>Format - Page - Text Grid</emph></link>.</ahelp>"
-msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_CB_SNAP\">Chỉnh canh đoạn văn theo một lưới văn bản. Để kích hoạt lưới văn bản, chọn lệnh <link href=\"text/swriter/01/05040800.xhp\" name=\"Định dạng > Trang > Lưới văn bản\"><emph>Định dạng > Trang > Lưới văn bản</emph></link>.</ahelp>"
+msgid "Template for import"
+msgstr "Mẫu cần nhập"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3148672\n"
+"06150120.xhp\n"
+"par_id3153320\n"
"18\n"
"help.text"
-msgid "Text-to-text - Alignment"
-msgstr "Văn bản đến văn bản — Canh lề"
+msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE\" visibility=\"visible\">Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE\" visibility=\"visible\">Nhập tên của mẫu bạn muốn dùng để nhập khẩu. Trên mẫu, các kiểu dáng được xác định để hiển thị thẻ XML.</ahelp>"
-#: 05030700.xhp
+#: 06150120.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3149807\n"
+"06150120.xhp\n"
+"par_id3156330\n"
"19\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_VERTALIGN\">Select an alignment option for oversized or undersized characters in the paragraph relative to the rest of the text in the paragraph.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_VERTALIGN\">Đặt một tùy chọn chỉnh canh cho ký tự quá nhỏ hay quá lớn trong đoạn văn, tương đối so với các ký tự khác của đoạn văn.</ahelp>"
+msgid "The path to the directory that contains the template must be included in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph>. When you open an XML file whose filter uses the template, the template opens first. In the template, you can map $[officename] styles to display XML tags in the XML document."
+msgstr ""
-#: 05030700.xhp
+#: 06150200.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3144434\n"
+"06150200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Test XML Filter"
+msgstr "Thử bộ lọc XML"
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"hd_id3150379\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\" name=\"Test XML Filter\">Test XML Filter</link></variable>"
+msgstr "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\" name=\"Thử bộ lọc XML\">Thử bộ lọc XML</link></variable>"
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"par_id3146857\n"
"23\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "<ahelp hid=\".\">Tests the XSLT stylesheets used by the selected <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Thử các bảng kiểu dáng XSLT dùng bởi <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link> đã chọn.</ahelp>"
-#: 05030700.xhp
+#: 06150200.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3154631\n"
-"25\n"
+"06150200.xhp\n"
+"hd_id3146765\n"
+"1\n"
"help.text"
-msgid "Text direction"
-msgstr "Hướng văn bản"
+msgid "Export"
+msgstr "Xuất"
-#: 05030700.xhp
+#: 06150200.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3157960\n"
-"24\n"
+"06150200.xhp\n"
+"hd_id3153070\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_TEXTDIRECTION\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_TEXTDIRECTION\">Ghi rõ hướng văn bản cho đoạn văn cũng dùng bố trí văn bản phức tạp (CTL).</ahelp> Để sử dụng tính năng này, trước tiên bạn cần phải hiệu lực hỗ trợ bố trí văn bản phức tạp."
+msgid "XSLT for export"
+msgstr "XSLT cần xuất"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"tit\n"
+"06150200.xhp\n"
+"par_id3147617\n"
+"3\n"
"help.text"
-msgid "Open"
-msgstr "Mở"
+msgid "<ahelp hid=\".\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị tên tập tin của bộ lọc XSLT mà bạn đã nhập vào trên trang thẻ <emph>Chuyển dạng</emph>.</ahelp>"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"bm_id3145211\n"
+"06150200.xhp\n"
+"hd_id3147090\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>default directories</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
-msgstr "<bookmark_value>thư mục; tạo cái mới</bookmark_value><bookmark_value>tạo thư mục</bookmark_value><bookmark_value>thư mục Tài liệu của Tôi; mở</bookmark_value><bookmark_value>thư mục mặc định</bookmark_value><bookmark_value>nhiều tài liệu cùng lúc; mở</bookmark_value><bookmark_value>mở; vài tập tin đồng thời</bookmark_value><bookmark_value>lựa chọn; vài tập tin đồng thời</bookmark_value><bookmark_value>mở; tập tin, dùng bộ giữ chỗ</bookmark_value><bookmark_value>biểu thức chính quy; mở tập tin</bookmark_value><bookmark_value>tập tin; mở dùng bộ giữ chỗ</bookmark_value><bookmark_value>bộ giữ chỗ;trên tập tin đang mở</bookmark_value><bookmark_value>tài liệu; mở dùng mẫu</bookmark_value><bookmark_value>mẫu; mở tài liệu dùng</bookmark_value><bookmark_value>tài liệu; kiểu dáng bị thay đổi</bookmark_value><bookmark_value>kiểu dáng; thông điệp « bị thay đổi »</bookmark_value>"
+msgid "Transform document"
+msgstr "Chuyển dạng tài liệu"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3146936\n"
-"1\n"
+"06150200.xhp\n"
+"par_id3153029\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Mở\">Mở</link>"
+msgid "<ahelp hid=\".\">Displays the file name of the document that you want to use to test the XSLT filter.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị tên tập tin của tài liệu bạn ma dùng để thử bộ lọc XML.</ahelp>"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151191\n"
-"2\n"
+"06150200.xhp\n"
+"hd_id3145160\n"
+"6\n"
"help.text"
-msgid "<variable id=\"oeffnentext\"><ahelp hid=\"HID_EXPLORERDLG_FILE\">Opens or imports a file.</ahelp></variable>"
-msgstr "<variable id=\"oeffnentext\"><ahelp hid=\"HID_EXPLORERDLG_FILE\">Mở hay nhập khẩu một tập tin.</ahelp></variable>"
+msgid "Browse"
+msgstr "Duyệt"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149877\n"
-"109\n"
+"06150200.xhp\n"
+"par_id3144436\n"
"help.text"
-msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item><emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item><emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_BROWSE\">Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation.</ahelp>"
msgstr ""
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150713\n"
-"52\n"
+"06150200.xhp\n"
+"hd_id3159194\n"
+"8\n"
"help.text"
-msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
-msgstr "Tập tin cần mở cũng chứa <emph>Kiểu dáng</emph> thì một số <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"quy tắc đặc biệt\">quy tắc đặc biệt</link> có tác động."
+msgid "Current Document"
+msgstr "Tài liệu hiện tại"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3147250\n"
+"06150200.xhp\n"
+"par_id3147250\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href=\"text/shared/01/06150210.xhp\">XML Filter output</link> window.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Tập tin còn mở trên cùng mà tương ứng với các tiêu chuẩn của bộ lọc XML sẽ được dùng để thử bộ lọc đó. Bộ lọc xuất khẩu XML hiện thời thì chuyển dạng tập tin, và mã nguồn XML kết quả được hiển thị trong cửa sổ <link href=\"text/shared/01/06150210.xhp\">Kết xuất lọc XML</link>.</ahelp>"
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"hd_id3154823\n"
+"10\n"
+"help.text"
+msgid "Import"
+msgstr "Nhập"
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"hd_id3159233\n"
"11\n"
"help.text"
-msgid "Up One Level"
-msgstr "Lên một bậc"
+msgid "XSLT for import"
+msgstr "XSLT cần nhập"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147226\n"
+"06150200.xhp\n"
+"par_id3153681\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_MENUBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_UP\">Move up one directory in the directory hierarchy. Long-click to see the higher level directories.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_MENUBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_UP\">Đi lên một bậc trong hệ thống cấp bậc thư mục. Ấn giữ nút chuột để xem các thư mục bậc trên..</ahelp>"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Hiển thị tên tập tin của bộ lọc XSLT bạn đã nhập vào trên trang thẻ <emph>Chuyển dạng</emph>.</ahelp>"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3145211\n"
+"06150200.xhp\n"
+"hd_id3149177\n"
"13\n"
"help.text"
-msgid "Create New Directory"
-msgstr "Tạo thư mục mới"
+msgid "Template for import"
+msgstr "Mẫu cần nhập"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153681\n"
+"06150200.xhp\n"
+"par_id3156410\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_IMAGEBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_NEWFOLDER\">Creates a new directory.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_IMAGEBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_NEWFOLDER\">Tạo một thư mục mới.</ahelp>"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Hiển thị tên tập tin của mẫu bạn đã nhập vào trên trang thẻ <emph>Chuyển dạng</emph>.</ahelp>"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3147010\n"
-"38\n"
+"06150200.xhp\n"
+"hd_id3163802\n"
+"15\n"
"help.text"
-msgid "Default Directory"
-msgstr "Thư mục mặc định"
+msgid "Transform file"
+msgstr "Chuyển dạng tập tin"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3109847\n"
-"39\n"
+"06150200.xhp\n"
+"hd_id3147242\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_STANDARD\">Displays the files in the default user directory.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_STANDARD\">Hiển thị các tập tin trong thư mục người dùng.</ahelp>"
+msgid "Display source"
+msgstr "Hiển thị mã nguồn"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3148538\n"
+"06150200.xhp\n"
+"par_id3150444\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE\">Opens the XML source of the selected document in your default XML editor after importing.</ahelp>"
+msgstr ""
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"hd_id3147078\n"
+"18\n"
+"help.text"
+msgid "Browse"
+msgstr "Duyệt"
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"par_id3149885\n"
"19\n"
"help.text"
-msgid "Display area"
-msgstr "Vùng hiển thị"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_BROWSE\">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_BROWSE\">Mở hộp thoại lựa tập tin chọn. Tập tin đã chọn thì được mở dùng bộ lọc nhập khẩu XML hiện thời.</ahelp>"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3156113\n"
+"06150200.xhp\n"
+"hd_id3153666\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and directories in the directory that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
-msgstr "<ahelp hid=\"HID_FILEDLG_STANDARD\">Hiển thị các tập tin và thư mục đều nằm trong thư mục bạn ở.</ahelp> Để mở tập tin, chọn nó, sau đó nhấn vào cái nút <emph>Mở</emph>."
+msgid "Recent File"
+msgstr "Tập tin vừa mở"
-#: 01020000.xhp
+#: 06150200.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3159256\n"
-"78\n"
+"06150200.xhp\n"
+"par_id3146137\n"
+"21\n"
"help.text"
-msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
-msgstr "Để mở nhiều tài liệu đồng thời, mỗi tài liệu trong một cửa sổ riêng, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi nhấn vào mỗi tập tin, sau đó nhấn vào nút <emph>Mở</emph>."
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_RECENT\">Re-opens the document that was last opened with this dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_RECENT\">Mở lại tài liệu được mở cuối cùng dùng hộp thoại này.</ahelp>"
-#: 01020000.xhp
+#: 06150210.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3154514\n"
-"110\n"
+"06150210.xhp\n"
+"tit\n"
"help.text"
-msgid "Click a column header to sort the files. Click again to reverse the sort order."
-msgstr "Nhấn vào đầu cột để sắp xếp các tập tin. Nhấn chuột lần nữa để đảo ngược thứ tự sắp xếp."
+msgid "XML Filter output"
+msgstr "Kết xuất lọc XML"
-#: 01020000.xhp
+#: 06150210.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149514\n"
-"111\n"
+"06150210.xhp\n"
+"hd_id3158397\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">Để xoá tập tin, nhấn-phải vào nó, sau đó chọn lệnh <emph>Xoá</emph>.</ahelp>"
+msgid "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\" name=\"XML Filter output\">XML Filter output</link></variable>"
+msgstr "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\" name=\"Kết xuất lọc XML\">Kết xuất lọc XML</link></variable>"
-#: 01020000.xhp
+#: 06150210.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147618\n"
-"112\n"
+"06150210.xhp\n"
+"par_id3153882\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">Để xoá tập tin, nhấn-phải vào nó, sau đó chọn lệnh <emph>Thay tên</emph>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Lists the test results of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Liệt kê kết quả thử của một <link href=\"text/shared/01/06150000.xhp\" name=\"Bộ lọc XML\">Bộ lọc XML</link>.</ahelp>"
-#: 01020000.xhp
+#: 06150210.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153331\n"
-"124\n"
+"06150210.xhp\n"
+"par_id3148731\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_YES\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_YES\" visibility=\"hidden\">Nhấn vào để xoá tập tin có tên hiển thị trong hộp thoại này.</ahelp>"
+msgid "The test results of an import or export XSLT stylesheet are displayed in the <emph>XML Filter output </emph>window. If you want, you can also validate the filter output."
+msgstr "Kết quả thử của một bảng kiểu dáng XSLT nhập/xuất khẩu được hiển thị trong cửa sổ <emph>Kết xuất lọc XML</emph>. Bạn cũng có thể hợp lệ hoá kết xuất này."
-#: 01020000.xhp
+#: 06150210.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3161458\n"
-"125\n"
+"06150210.xhp\n"
+"hd_id3147143\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_NO\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_NO\" visibility=\"hidden\">Nhấn vào để thôi thao tác xoá tập tin có tên hiển thị trong hộp thoại này.</ahelp>"
+msgid "Validate"
+msgstr "Hợp lệ hoá"
-#: 01020000.xhp
+#: 06150210.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147531\n"
-"126\n"
+"06150210.xhp\n"
+"par_id3151315\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_ALL\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_ALL\" visibility=\"hidden\">Nhấn vào để xoá tất cả các tập tin đã chọn.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_SOURCE_FILE_VALIDATE\">Validates the contents of the <emph>XML Filter output</emph> window.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"HID_XML_SOURCE_FILE_VALIDATE\">Hợp lệ hoá nội dung của cửa sổ <emph>Kết xuất lọc XML</emph>.</ahelp>"
-#: 01020000.xhp
+#: 06150210.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3154280\n"
-"21\n"
+"06150210.xhp\n"
+"par_id3149999\n"
+"5\n"
"help.text"
-msgid "File name"
-msgstr "Tên tập tin"
+msgid "The window splits into two areas and the results of the validation are displayed in the lower area."
+msgstr "Cửa sổ chia ra hai vùng: kết quả của tiến trình hợp lệ hoá được hiển thị trong vùng bên dưới."
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3161656\n"
-"22\n"
+"06200000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_AUTOCOMPLETEBOX\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEDLG_AUTOCOMPLETEBOX\">Nhập một tên tập tin, hay đường dẫn đến tập tin. Cũng có thể nhập một địa chỉ <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> mà bất đầu với phần giao thức (v.d. http://).</ahelp>"
+msgid "Hangul/Hanja Conversion"
+msgstr "Chuyển đổi Hangul/Hanja"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150541\n"
-"72\n"
+"06200000.xhp\n"
+"bm_id3155757\n"
"help.text"
-msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
-msgstr "Bạn cũng có thể sử dụng ký tự đại diện trong hộp <emph>Tên tập tin</emph>, để lọc danh sách tập tin được hiển thị."
+msgid "<bookmark_value>converting;Hangul/Hanja</bookmark_value><bookmark_value>Hangul/Hanja</bookmark_value>"
+msgstr "<bookmark_value>chuyển đổi;Hangul/Hanja</bookmark_value><bookmark_value>Hangul/Hanja</bookmark_value>"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153779\n"
-"24\n"
+"06200000.xhp\n"
+"hd_id3155757\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>For example, to list all of the text files in a directory, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Chẳng hạn, để liệt kê tất cả các tập tin văn bản nằm trong thư mục đang hiển thị, nhập ký tự đại diện là dấu sao (có nghĩa là « mọi thứ ») cùng với phần mở rộng tập tin của tập tin văn bản (thì « *.txt », có nghĩa là « mọi tập tin văn bản), sau đó nhấn vào cái nút <emph>Mở</emph>. Dùng dấu hỏi (?) để đại diện bất cứ ký tự nào, v.d. « ??n*.txt » sẽ chỉ hiển thị những tập tin văn bản có chữ « n » là ký tự thứ ba trong tên tập tin.</defaultinline></switchinline>"
+msgid "<link href=\"text/shared/01/06200000.xhp\" name=\"Hangul/Hanja Conversion\">Hangul/Hanja Conversion</link>"
+msgstr "<link href=\"text/shared/01/06200000.xhp\" name=\"Chuyển đổi Hangul/Hanja\">Chuyển đổi Hangul/Hanja</link>"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3145117\n"
-"81\n"
+"06200000.xhp\n"
+"par_id3146060\n"
+"2\n"
"help.text"
-msgid "Version"
-msgstr "Phiên bản"
+msgid "<ahelp hid=\".uno:HangulHanjaConversion\">Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul.</ahelp> The menu command can only be called if you enable Asian language support under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>, and if a text formatted in Korean language is selected."
+msgstr ""
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149291\n"
-"82\n"
+"06200000.xhp\n"
+"hd_id3150603\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
-msgstr "<ahelp hid=\"HID_FILEOPEN_VERSION\">Có nhiều phiên bản của tập tin đã chọn thì lựa chọn phiên bản bạn muốn mở.</ahelp> Bạn có khả năng lưu và tổ chức các phiên bản khác nhau của cùng một tài liệu, bằng cách chọn mục trình đơn <emph>Tập tin > Phiên bản</emph>. Tuy nhiên, các phiên bản tài liệu này được mở ở chế độ chỉ đọc (không thể ghi được)."
+msgid "Original"
+msgstr "Gốc"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3150767\n"
+"06200000.xhp\n"
+"par_id3148520\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SPELLDLG_SETWORD\">Displays the current selection.</ahelp>"
+msgstr "<ahelp hid=\"HID_SPELLDLG_SETWORD\">Hiển thị vùng chọn hiện thời.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3154230\n"
+"5\n"
+"help.text"
+msgid "Replace with"
+msgstr "Thay thế bằng"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3149205\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"HID_HANGULDLG_EDIT_NEWWORD\">Displays the first replacement suggestion from the dictionary.</ahelp> You can edit the suggested word or enter another word. Click the <emph>Find</emph> button to replace your original word with the corresponding replacement word."
+msgstr "<ahelp hid=\"HID_HANGULDLG_EDIT_NEWWORD\">Hiển thị lời góp ý thay thế thứ nhất của từ điển.</ahelp> Bạn có thể chỉnh sửa từ đã góp ý, hoặc nhập từ khác. Nhấn vào nút <emph>Tìm</emph> để thay thế từ gốc bằng từ thay thế tương ứng."
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3154673\n"
+"7\n"
+"help.text"
+msgid "Find"
+msgstr "Tìm"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3156560\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVX_MDLG_HANGULHANJA_PB_FIND\">Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja.</ahelp> Click <emph>Ignore</emph> to cancel the find function."
+msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVX_MDLG_HANGULHANJA_PB_FIND\">Tìm dữ liệu nhập Hangul trong từ điển, và thay thế nó bằng Hanja tương ứng.</ahelp> Nhấn vào nút <emph>Bỏ qua</emph> để dừng chạy tiến trình tìm."
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3147291\n"
+"9\n"
+"help.text"
+msgid "Suggestions"
+msgstr "Góp ý"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3154823\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVX_MDLG_HANGULHANJA_LB_SUGGESTIONS\">Displays all available replacements in the dictionary.</ahelp> If the <emph>Replace by character</emph> box is enabled, you see a grid of characters. If the <emph>Replace by character</emph> box is not checked, you see a list of words."
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVX_MDLG_HANGULHANJA_LB_SUGGESTIONS\">Hiển thị tất cả các từ thay thế có trong từ điển.</ahelp> Bật tùy chọn <emph>Thay thế theo ký tự</emph> thì bạn thấy một lưới ký tự. Không thì bạn thấy một danh sách các từ."
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3157958\n"
+"11\n"
+"help.text"
+msgid "Format"
+msgstr "Định dạng"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3155941\n"
+"12\n"
+"help.text"
+msgid "Click the format to display the replacements."
+msgstr "Nhấn vào định dạng để hiển thị các từ thay thế."
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3153749\n"
+"13\n"
+"help.text"
+msgid "Hangul/Hanja"
+msgstr "Hangul/Hanja"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3150775\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_SIMPLE_CONVERSION\">The original characters are replaced by the suggested characters.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_SIMPLE_CONVERSION\">Các ký tự gốc được thay thế bằng các ký tự đã góp ý.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3152780\n"
+"15\n"
+"help.text"
+msgid "Hanja (Hangul)"
+msgstr "Hanja (Hangul)"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3153662\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BRACKETED\">The Hangul part will be displayed in brackets after the Hanja part.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BRACKETED\">Phần Hangul sẽ được hiển thị giữa dấu ngoặc, phía sau phần Hanja.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3150443\n"
+"17\n"
+"help.text"
+msgid "Hangul (Hanja)"
+msgstr "Hangul (Hanja)"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3149192\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BRACKETED\">The Hanja part will be displayed in brackets after the Hangul part.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BRACKETED\">Phần Hanja sẽ được hiển thị giữa dấu ngoặc, phía sau phần Hangul.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3150119\n"
+"19\n"
+"help.text"
+msgid "Hanja as ruby text above"
+msgstr "Hanja dạng văn bản Ruby bên trên"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3154173\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_ABOVE\">The Hanja part will be displayed as ruby text above the Hangul part.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_ABOVE\">Phần Hanja sẽ được hiển thị dưới dạng văn bản Ruby bên trên phần Hangul.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3159400\n"
+"21\n"
+"help.text"
+msgid "Hanja as ruby text below"
+msgstr "Hanja dạng văn bản Ruby bên dưới"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3156155\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BELOW\">The Hanja part will be displayed as ruby text below the Hangul part.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANGUL_HANJA_BELOW\">Phần Hanja sẽ được hiển thị dưới dạng văn bản Ruby bên dưới phần Hangul.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3150085\n"
+"23\n"
+"help.text"
+msgid "Hangul as ruby text above"
+msgstr "Hangul dạng văn bản Ruby bên trên"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3150771\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_ABOVE\">The Hangul part will be displayed as ruby text above the Hanja part.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_ABOVE\">Phần Hangul sẽ được hiển thị dưới dạng văn bản Ruby bên trên phần Hanja.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3155831\n"
"25\n"
"help.text"
-msgid "File type"
-msgstr "Kiểu tập tin"
+msgid "Hangul as ruby text below"
+msgstr "Hangul dạng văn bản Ruby bên dưới"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153969\n"
+"06200000.xhp\n"
+"par_id3157909\n"
"26\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_LISTBOX_DLG_SVT_EXPLORERFILE_LB_EXPLORERFILE_FILETYPE\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the directory.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_LISTBOX_DLG_SVT_EXPLORERFILE_LB_EXPLORERFILE_FILETYPE\">Chọn kiểu tập tin bạn muốn mở, hoặc chọn mục <emph>Mọi tập tin (*)</emph> để hiển thị danh sách tất cả các tập tin nằm trong thư mục đó.</ahelp>"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BELOW\">The Hangul part will be displayed as ruby text below the Hanja part.</ahelp>"
+msgstr "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVX_MDLG_HANGULHANJA_RB_HANJA_HANGUL_BELOW\">Phần Hangul sẽ được hiển thị dưới dạng văn bản Ruby bên dưới phần Hanja.</ahelp>"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3154125\n"
+"06200000.xhp\n"
+"hd_id3148826\n"
"27\n"
"help.text"
-msgid "Open"
-msgstr "Mở"
+msgid "Conversion"
+msgstr "Chuyển đổi"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3152933\n"
+"06200000.xhp\n"
+"par_id3159157\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_OPEN\">Opens the selected document(s).</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_OPEN\">Mở (các) tài liệu đã chọn.</ahelp>"
+msgid "Normally in a mixed text selection made of Hangul and Hanja characters, all Hangul characters will be converted to Hanja and all Hanja characters will be converted to Hangul. If you want to convert a mixed text selection only in one direction, use the following conversion options."
+msgstr "Bình thường, trong văn bản đã chọn mà chứa các ký tự hỗn hợp Hangul và Hanja, tất cả các ký tự Hangul sẽ được chuyển đổi sang Hanja, và ngược lại. Muốn chuyển đổi văn bản đã chọn kiểu hỗn hợp theo chỉ một hướng thì dùng những tùy chọn chuyển đổi theo đây."
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3147085\n"
-"88\n"
+"06200000.xhp\n"
+"hd_id3153585\n"
+"29\n"
"help.text"
-msgid "Insert"
-msgstr "Chèn"
+msgid "Hangul only"
+msgstr "Chỉ Hangul"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3156293\n"
-"89\n"
+"06200000.xhp\n"
+"par_id3154142\n"
+"30\n"
"help.text"
-msgid "If you opened the dialog by choosing <emph>Insert - File</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
-msgstr "Nếu bạn đã mở hộp thoại này bằng cách chọn lệnh <emph>Chèn > Tập tin</emph>, cái nút <emph>Mở</emph> thật có nhãn <emph>Chèn</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Chèn vào tài liệu hiện tại tập tin đã chọn, ở vị trí con trỏ.</ahelp>"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANGUL_ONLY\">Check to convert only Hangul. Do not convert Hanja.</ahelp>"
+msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANGUL_ONLY\">Bật tùy chọn này để chuyển đổi chỉ các ký tự Hangul. Không chuyển đổi ký tự Hanja.</ahelp>"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3144762\n"
+"06200000.xhp\n"
+"hd_id3150823\n"
+"31\n"
+"help.text"
+msgid "Hanja only"
+msgstr "Chỉ Hanja"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3156023\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANJA_ONLY\">Check to convert only Hanja. Do not convert Hangul.</ahelp>"
+msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_HANJA_ONLY\">Bật tùy chọn này để chuyển đổi chỉ các ký tự Hanja. Không chuyển đổi ký tự Hangul.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3152360\n"
+"33\n"
+"help.text"
+msgid "Ignore"
+msgstr "Bỏ qua"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"par_id3153896\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNORE\">No changes will be made to the current selection. The next word or character will be selected for conversion.</ahelp>"
+msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNORE\">Không có thay đổi sẽ được làm trong vùng chọn hiện thời. Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi.</ahelp>"
+
+#: 06200000.xhp
+msgctxt ""
+"06200000.xhp\n"
+"hd_id3148550\n"
"35\n"
"help.text"
-msgid "Read-only"
-msgstr "Chỉ đọc"
+msgid "Always Ignore"
+msgstr "Bỏ qua suốt"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145785\n"
+"06200000.xhp\n"
+"par_id3154937\n"
"36\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEOPEN_READONLY\">Mở tập tin ở chế độ chỉ đọc (không thể ghi được).</ahelp>"
+msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNOREALL\">No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically.</ahelp> The next word or character will be selected for conversion. The list of ignored text is valid for the current $[officename] session."
+msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_IGNOREALL\">Không có thay đổi sẽ được làm trong vùng chọn hiện thời, và khi nào phát hiện cùng vùng chọn này, nó sẽ tự động được bỏ qua.</ahelp> Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi. Danh sách văn bản bị bỏ qua cũng hợp trong toàn phiên chạy $[officename] hiện thời."
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3149984\n"
-"113\n"
+"06200000.xhp\n"
+"hd_id3151056\n"
+"37\n"
"help.text"
-msgid "Play"
-msgstr "Phát"
+msgid "Replace"
+msgstr "Thay thế"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147289\n"
-"114\n"
+"06200000.xhp\n"
+"par_id3148403\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Phát tập tin âm thanh đã chọn. Nhấn chuột lần nữa để dừng phát.</ahelp>"
+msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGE\">Replaces the selection with the suggested characters or word according to the format options.</ahelp> The next word or character will be selected for conversion."
+msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGE\">Thay thế vùng chọn bằng các ký tự hay từ đã góp ý, tùy theo các tùy chọn định dạng.</ahelp> Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi."
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3149260\n"
-"53\n"
+"06200000.xhp\n"
+"hd_id3153360\n"
+"39\n"
"help.text"
-msgid "Opening Documents With Templates"
-msgstr "Mở Tài liệu bằng Mẫu"
+msgid "Always Replace"
+msgstr "Thay thế suốt"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145367\n"
+"06200000.xhp\n"
+"par_id3153338\n"
"40\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any directory from the following list:"
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> nhận ra các mẫu nằm trong bất cứ thư mục nào từ danh sách này:"
+msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGEALL\">Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically.</ahelp> The next word or character will be selected for conversion. The list of replacement text is valid for the current $[officename] session."
+msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_CHANGEALL\">Thay thế vùng chọn bằng các ký tự hay từ đã góp ý, tùy theo các tùy chọn định dạng. Khi nào phát hiện cùng vùng chọn này, nó sẽ tự động được bỏ qua.</ahelp> Từ hay ký tự kế tiếp sẽ được lựa chọn để chuyển đổi. Danh sách văn bản bị bỏ qua cũng hợp trong toàn phiên chạy $[officename] hiện thời."
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151292\n"
-"120\n"
+"06200000.xhp\n"
+"hd_id3149290\n"
+"41\n"
"help.text"
-msgid "the shared template directory"
-msgstr "thư mục mẫu dùng chung"
+msgid "Replace by character"
+msgstr "Thay thế theo ký tự"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3144442\n"
-"121\n"
+"06200000.xhp\n"
+"par_id3145154\n"
+"42\n"
"help.text"
-msgid "the user template directory <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory</caseinline><defaultinline>in the Documents and Settings directory</defaultinline></switchinline>"
-msgstr "thư mục mẫu của người dùng <switchinline select=\"sys\"><caseinline select=\"UNIX\">trong thư mục chính </caseinline><defaultinline>trong thư mục « Documents and Settings »</defaultinline></switchinline>"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_REPLACE_BY_CHARACTER\">Check to move character-by-character through the selected text. If not checked, full words are replaced.</ahelp>"
+msgstr "<ahelp hid=\"SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_REPLACE_BY_CHARACTER\">Bật tùy chọn này để chuyển theo từng ký tự qua văn bản đã chọn. Không thì thay thế nguyên từ.</ahelp>"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3146905\n"
-"122\n"
+"06200000.xhp\n"
+"par_idN10969\n"
"help.text"
-msgid "all template folders as defined in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\">%PRODUCTNAME - Paths</link></emph>"
-msgstr ""
+msgid "Options"
+msgstr "Tùy chọn"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id7375713\n"
+"06200000.xhp\n"
+"par_idN1096D\n"
"help.text"
-msgid "When you use <item type=\"menuitem\">File - Template - Save</item> to save a template, the template will be stored in your user template directory. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr "Khi bạn sử dụng lệnh <item type=\"menuitem\">Tập tin > Mẫu > Lưu</item> để lưu một mẫu, mẫu đó sẽ được lưu vào thư mục mẫu của bạn. Khi bạn mở một tài liệu dựa vào mẫu như vậy, tài liệu sẽ được kiểm tra có mẫu bị thay đổi chưa, như nói dưới. Mẫu liên quan đến tài liệu thì được gợi như là « mẫu dính »."
+msgid "<ahelp hid=\"HID_HANGULHANJA_OPT_DLG\">Opens the <link href=\"text/shared/01/06201000.xhp\">Hangul/Hanja Options</link> dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_HANGULHANJA_OPT_DLG\">Mở hộp thoại <link href=\"text/shared/01/06201000.xhp\">Tùy chọn Hangul/Hanja</link>.</ahelp>"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id6930143\n"
+"06200000.xhp\n"
+"hd_id3149807\n"
+"43\n"
"help.text"
-msgid "When you use <item type=\"menuitem\">File - Save As</item> and select a template filter to save a template at any other directory that is not in the list, then the documents based on that template will not be checked."
-msgstr "Khi bạn sử dụng lệnh <item type=\"menuitem\">Tập tin > Lưu dạng</item> và chọn một bộ lọc mẫu để lưu một mẫu vào một thư mục không có trong danh sách này, các tài liệu dựa vào mẫu này sẽ không được kiểm tra."
+msgid "Close"
+msgstr "Đóng"
-#: 01020000.xhp
+#: 06200000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150105\n"
-"73\n"
+"06200000.xhp\n"
+"par_id3155743\n"
+"44\n"
"help.text"
-msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
-msgstr "Khi bạn mở một tài liệu mà được tạo dựa vào « mẫu dính » (như xác định trên), <item type=\"productname\">%PRODUCTNAME</item> kiểm tra nếu mẫu đã bị sửa đổi chưa (kể từ lần cuối cùng mở tài liệu). Mẫu bị sửa đổi thì hiển thị một hộp thoại cho bạn chọn những kiểu dáng nào cần áp dụng cho tài liệu."
+msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_CLOSE\">Closes the dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_HANGULDLG_BUTTON_CLOSE\">Đóng hộp thoại.</ahelp>"
-#: 01020000.xhp
+#: 06201000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153096\n"
-"74\n"
+"06201000.xhp\n"
+"tit\n"
"help.text"
-msgid "To apply the new styles from the template to the document, click <emph>Yes</emph>."
-msgstr "Để áp dụng những kiểu dáng mới từ mẫu đến tài liệu, nhấn vào nút <emph>Có</emph>."
+msgid "Hangul/Hanja Options"
+msgstr "Tùy chọn Hangul/Hanja"
-#: 01020000.xhp
+#: 06201000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147581\n"
-"75\n"
+"06201000.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "To retain the styles that are currently used in the document, click <emph>No</emph>."
-msgstr "Để giữ lại các kiểu dáng được dùng hiện thời trong tài liệu, nhấn vào nút <emph>Không</emph>."
+msgid "Hangul/Hanja Options"
+msgstr "Tùy chọn Hangul/Hanja"
-#: 01020000.xhp
+#: 06201000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3154988\n"
-"44\n"
+"06201000.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened."
-msgstr "Nếu tài liệu được tạo dựa vào một mẫu không còn tìm thấy lại, một hộp thoại sẽ mở để yêu cầu bạn ngụ ý thủ tục thích hợp với lần kế tiếp mở tài liệu đó."
+msgid "Define options for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja conversion</link>."
+msgstr "Xác định các tùy chọn về chức năng <link href=\"text/shared/01/06200000.xhp\">Chuyển đổi Hangul/Hanja</link>."
-#: 01020000.xhp
+#: 06201000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151351\n"
-"91\n"
+"06201000.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
-msgstr "Để ngắt liên kết giữa tài liệu và mẫu bị thiếu, nhấn vào nút <emph>Không</emph>; không thì <item type=\"productname\">%PRODUCTNAME</item> vẫn còn tìm mẫu lần kế tiếp bạn mở tài liệu đó."
+msgid "User-defined dictionaries"
+msgstr "Từ điển tự xác định"
-#: 01020000.xhp
+#: 06201000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149417\n"
+"06201000.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "<link href=\"text/shared/guide/doc_open.xhp\" name=\"Opening Documents\">Opening Documents</link>"
-msgstr "<link href=\"text/shared/guide/doc_open.xhp\" name=\"Mở tài liệu\">Mở tài liệu</link>"
+msgid "<ahelp hid=\"HID_HANGULHANJA_NEWDICT_DLG\">Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use.</ahelp>"
+msgstr "<ahelp hid=\"HID_HANGULHANJA_NEWDICT_DLG\">Liệt kê các từ điển được người dùng xác định. Đánh dấu trong hộp chọn bên cạnh từ điển bạn muốn dùng. Bỏ chọn hộp bên cạnh từ điển không muốn.</ahelp>"
-#: 01020000.xhp
+#: 06201000.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153848\n"
+"06201000.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
-msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Bộ lọc Nhập/Xuất khẩu\">Bộ lọc Nhập/Xuất khẩu</link>"
+msgid "New"
+msgstr "Mới"
-#: 05210200.xhp
+#: 06201000.xhp
msgctxt ""
-"05210200.xhp\n"
+"06201000.xhp\n"
+"par_idN1057E\n"
+"help.text"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW\">Opens the New dictionary dialog box, where you can create a new dictionary.</ahelp>"
+msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW\">Mở hộp thoại <emph>Từ điển mới</emph>, trong đó bạn có thể tạo một từ điển mới.</ahelp>"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN10595\n"
+"help.text"
+msgid "Name"
+msgstr "Tên"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN10599\n"
+"help.text"
+msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME\">Enter a name for the dictionary.</ahelp> To display the new dictionary in the <emph>User-defined dictionaries</emph> list box, click <emph>OK</emph>."
+msgstr "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME\">Nhập tên cho từ điển.</ahelp> Để hiển thị từ điển mới trong hộp liệt kê <emph>Từ điển tự xác định</emph>, nhấn vào nút <emph>OK</emph>."
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN105B5\n"
+"help.text"
+msgid "Edit"
+msgstr "Sửa"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN105B9\n"
+"help.text"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT\">Opens the <link href=\"text/shared/01/06202000.xhp\">Edit Custom Dictionary</link> dialog where you can edit any user-defined dictionary.</ahelp>"
+msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT\">Mở hộp thoại <link href=\"text/shared/01/06202000.xhp\">Sửa từ điển riêng</link> trong đó bạn có thể chỉnh sửa bất cứ tự điển tự xác định nào.</ahelp>"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN105DE\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN105E2\n"
+"help.text"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE\">Deletes the selected user-defined dictionary.</ahelp>"
+msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE\">Xoá từ điển tự xác định.</ahelp>"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN105F1\n"
+"help.text"
+msgid "Options"
+msgstr "Tùy chọn"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN105F5\n"
+"help.text"
+msgid "Specifies additional options for all dictionaries."
+msgstr "Ghi rõ các tùy chọn thêm về mọi từ điển."
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN10600\n"
+"help.text"
+msgid "Ignore post-positional word"
+msgstr "Bỏ qua từ nằm sau kiểu vị trí"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN10604\n"
+"help.text"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST\">Ignores positional characters at the end of Korean words when you search a dictionary.</ahelp>"
+msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST\">Bỏ qua các ký tự đặt vị trí ở kết thúc từ tiếng Hàn khi bạn tìm kiếm qua từ điển.</ahelp>"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN1061B\n"
+"help.text"
+msgid "Close Conversion dialog automatically after replacement"
+msgstr "Tự động đóng hộp thoại Chuyển đổi sau khi thay thế"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN1061F\n"
+"help.text"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOCLOSE\">Closes the Hangul/Hanja Conversion dialog box after you click <emph>Ignore</emph>, <emph>Always Ignore</emph>, <emph>Replace</emph>, or <emph>Always Replace</emph>.</ahelp>"
+msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOCLOSE\">Đóng hộp thoại <emph>Chuyển đổi Hangul/Hanja</emph> một khi bạn nhấn vào nút <emph>Bỏ qua</emph>, <emph>Bỏ qua suốt</emph>, <emph>Thay thế</emph> hay <emph>Thay thế suốt</emph>.</ahelp>"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN10636\n"
+"help.text"
+msgid "Show entries recently used first"
+msgstr "Hiện trước các mục vừa dùng"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN1063A\n"
+"help.text"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST\">Shows the replacement suggestion that you selected the last time as the first entry on the list.</ahelp>"
+msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST\">Hiển thị ở đầu danh sách lời góp ý thay thế bạn đã chọn lần cuối cùng.</ahelp>"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN10651\n"
+"help.text"
+msgid "Replace all unique entries automatically"
+msgstr "Tự thay thế các mục duy nhất"
+
+#: 06201000.xhp
+msgctxt ""
+"06201000.xhp\n"
+"par_idN10655\n"
+"help.text"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE\">Automatically replaces words that only have one suggested word replacement.</ahelp>"
+msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE\">Tự động thay thế mỗi từ chỉ có một từ thay thế đã góp ý.</ahelp>"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
"tit\n"
"help.text"
-msgid "Colors"
-msgstr "Màu sắc"
+msgid "Edit Custom Dictionary"
+msgstr "Sửa từ điển riêng"
-#: 05210200.xhp
+#: 06202000.xhp
msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
+"06202000.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Màu sắc\">Màu sắc</link>"
+msgid "Edit Custom Dictionary"
+msgstr "Sửa từ điển riêng"
-#: 05210200.xhp
+#: 06202000.xhp
msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
+"06202000.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Chọn màu cần áp dụng, lưu lại danh sách màu sắc hiện thời, hoặc nạp một danh sách màu sắc khác."
+msgid "Add and delete entries that are used for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja Conversion</link>."
+msgstr "Thêm và xoá các mục nhập dùng cho chức năng <link href=\"text/shared/01/06200000.xhp\">Chuyển đổi Hangul/Hanja</link>."
-#: 05210200.xhp
+#: 06202000.xhp
msgctxt ""
-"05210200.xhp\n"
-"par_id3154288\n"
+"06202000.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Colors</link>"
+msgid "Book"
+msgstr "Sổ"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN10563\n"
+"help.text"
+msgid "<ahelp hid=\"svx:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK\">Select the user-defined dictionary that you want to edit.</ahelp>"
+msgstr "<ahelp hid=\"svx:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK\">Chọn từ điển tự xác định mà bạn muốn chỉnh sửa.</ahelp>"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN1057A\n"
+"help.text"
+msgid "Original"
+msgstr "Gốc"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN1057E\n"
+"help.text"
+msgid "<ahelp hid=\"svx:ComboBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_ORIGINAL\">Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box.</ahelp> To move from the Original box to the first text box in the Suggestions area, press Enter."
msgstr ""
-#: 05100600.xhp
-#, fuzzy
+#: 06202000.xhp
msgctxt ""
-"05100600.xhp\n"
+"06202000.xhp\n"
+"par_idN10596\n"
+"help.text"
+msgid "Replace by character"
+msgstr "Thay thế theo ký tự"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN1059A\n"
+"help.text"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_EDIT:CB_REPLACEBYCHAR\">Converts the text on a character by character basis and not on a word by word basis.</ahelp>"
+msgstr "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_EDIT:CB_REPLACEBYCHAR\">Chuyển đổi văn bản theo từng ký tự, không phải theo từng nguyên từ.</ahelp>"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN105C9\n"
+"help.text"
+msgid "Suggestions (max. 8)"
+msgstr "Góp ý (tối đa 8)"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN105CD\n"
+"help.text"
+msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1\">Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters.</ahelp>"
+msgstr "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1\">Gõ từ đã góp ý để thay thế mục nhập được chọn trong hộp văn bản Gốc. Từ thay thế có thể chứa đến tám ký tự.</ahelp>"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN105E4\n"
+"help.text"
+msgid "New"
+msgstr "Mới"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN105E8\n"
+"help.text"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW\">Adds the current replacement definition to the dictionary.</ahelp>"
+msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW\">Thêm vào từ điển lời xác định thay thế hiện thời.</ahelp>"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN105FF\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: 06202000.xhp
+msgctxt ""
+"06202000.xhp\n"
+"par_idN10603\n"
+"help.text"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE\">Deletes the selected entry.</ahelp>"
+msgstr "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE\">Xoá mục nhập đã chọn.</ahelp>"
+
+#: 06990000.xhp
+msgctxt ""
+"06990000.xhp\n"
"tit\n"
"help.text"
-msgid "Center (vertical)"
-msgstr "Đầu chiều dọc"
+msgid "Spellcheck"
+msgstr "Kiểm tra chính tả"
-#: 05100600.xhp
-#, fuzzy
+#: 06990000.xhp
msgctxt ""
-"05100600.xhp\n"
-"hd_id3149874\n"
+"06990000.xhp\n"
+"hd_id3147069\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100600.xhp\" name=\"Center (vertical)\">Center (vertical)</link>"
-msgstr "<link href=\"text/shared/01/05070200.xhp\" name=\"Giữa nằm ngang\">Giữa nằm ngang</link>"
+msgid "<link href=\"text/shared/01/06990000.xhp\" name=\"Spellcheck\">Spellcheck</link>"
+msgstr "<link href=\"text/shared/01/06990000.xhp\" name=\"Kiểm tra Chính tả\">Kiểm tra Chính tả</link>"
-#: 05100600.xhp
-#, fuzzy
+#: 06990000.xhp
msgctxt ""
-"05100600.xhp\n"
-"par_id3149048\n"
+"06990000.xhp\n"
+"par_id3153116\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Centers the contents of the cell between top and bottom of the cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:CellVertTop\">Căn chỉnh nội dung một ô theo cạnh trên của ô.</ahelp>"
+msgid "<ahelp hid=\".\">Checks spelling manually.</ahelp>"
+msgstr "<ahelp hid=\".\">Kiểm tra chính tả bằng tay.</ahelp>"
-#: 05100600.xhp
+#: 06990000.xhp
msgctxt ""
-"05100600.xhp\n"
-"par_id3149525\n"
-"121\n"
+"06990000.xhp\n"
+"par_id2551957\n"
"help.text"
-msgid "<variable id=\"zellemitte\">In the context menu of a cell, choose <emph>Cell - Center</emph></variable>"
-msgstr "<variable id=\"zellemitte\">Trong trình đơn ngữ cảnh của một ô, chọn<emph>Ô - Trung tâm</emph></variable>"
+msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Check\">Spellcheck dialog</link>"
+msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Kiểm tra\">Hộp thoại Kiểm tra Chính tả</link>"
-#: 03040000.xhp
+#: 07010000.xhp
msgctxt ""
-"03040000.xhp\n"
+"07010000.xhp\n"
"tit\n"
"help.text"
-msgid "Input Method Status"
-msgstr "Trạng thái cách nhập"
+msgid "New Window"
+msgstr "Cửa sổ mới"
-#: 03040000.xhp
+#: 07010000.xhp
msgctxt ""
-"03040000.xhp\n"
-"bm_id3159079\n"
+"07010000.xhp\n"
+"bm_id6323129\n"
"help.text"
-msgid "<bookmark_value>IME;showing/hiding</bookmark_value><bookmark_value>input method window</bookmark_value>"
-msgstr "<bookmark_value>IME;hiện/ẩn</bookmark_value><bookmark_value>cửa sổ cách nhập</bookmark_value>"
+msgid "<bookmark_value>new windows</bookmark_value><bookmark_value>windows;new</bookmark_value>"
+msgstr "<bookmark_value>cửa sổ mới</bookmark_value><bookmark_value>cửa sổ;mới</bookmark_value>"
-#: 03040000.xhp
+#: 07010000.xhp
msgctxt ""
-"03040000.xhp\n"
-"hd_id3159079\n"
+"07010000.xhp\n"
+"hd_id3148882\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/03040000.xhp\" name=\"Input Method Status\">Input Method Status</link>"
-msgstr "<link href=\"text/shared/01/03040000.xhp\" name=\"Trạng thái cách nhập\">Trạng thái cách nhập</link>"
+msgid "<link href=\"text/shared/01/07010000.xhp\" name=\"New Window\">New Window</link>"
+msgstr "<link href=\"text/shared/01/07010000.xhp\" name=\"Cửa sổ mới\">Cửa sổ mới</link>"
-#: 03040000.xhp
+#: 07010000.xhp
msgctxt ""
-"03040000.xhp\n"
-"par_id3148668\n"
+"07010000.xhp\n"
+"par_id3158442\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowImeStatusWindow\">Shows or hides the Input Method Engine (IME) status window.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowImeStatusWindow\">Hiển thị hay ẩn cửa sổ trạng thái của Cơ chế Phương pháp Nhập (IME).</ahelp>"
+msgid "<ahelp hid=\".uno:NewWindow\">Opens a new window that displays the contents of the current window.</ahelp> You can now view different parts of the same document at the same time."
+msgstr "<ahelp hid=\".uno:NewWindow\">Mở cửa sổ mới mà cũng hiển thị nội dung của cửa sổ hiện thời.</ahelp> Vậy bạn có thể xem cùng lúc các phần tài liệu khác nhau."
-#: 03040000.xhp
+#: 07010000.xhp
msgctxt ""
-"03040000.xhp\n"
-"par_id3157898\n"
+"07010000.xhp\n"
+"par_id3147588\n"
"3\n"
"help.text"
-msgid "Currently only the Internet/Intranet Input Method Protocol (IIIMP) under Unix is supported."
-msgstr "Dưới UNIX, hiện thời chỉ hỗ trợ Giao thức Phương pháp Cách Internet/Intranet (IIMP)."
+msgid "Changes made to a document in one window are automatically applied to all of the windows that are open for that document."
+msgstr "Thay đổi làm về tài liệu trong cửa sổ này cũng được tự động áp dụng cho tất cả các cửa sổ còn mở cho tài liệu đó."
-#: 02240000.xhp
+#: 07080000.xhp
msgctxt ""
-"02240000.xhp\n"
+"07080000.xhp\n"
"tit\n"
"help.text"
-msgid "Compare Document"
-msgstr "So sánh tài liệu"
+msgid "Document List"
+msgstr "Danh sách Tài liệu"
-#: 02240000.xhp
+#: 07080000.xhp
msgctxt ""
-"02240000.xhp\n"
-"hd_id3149877\n"
+"07080000.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "Compare Document"
-msgstr "So sánh tài liệu"
+msgid "<link href=\"text/shared/01/07080000.xhp\" name=\"Document List\">Document List</link>"
+msgstr "<link href=\"text/shared/01/07080000.xhp\" name=\"Danh sách Tài liệu\">Danh sách Tài liệu</link>"
-#: 02240000.xhp
+#: 07080000.xhp
msgctxt ""
-"02240000.xhp\n"
-"par_id3150838\n"
+"07080000.xhp\n"
+"par_id3147273\n"
"2\n"
"help.text"
-msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
-msgstr "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">So sánh tài liệu hiện tại với một tài liệu khác mà bạn chọn.</ahelp></variable> Trong hộp thoại sẽ mở, nội dung của tài liệu đã chọn được đánh dấu như mục xoá. Bạn cũng có thể chèn vào tài liệu hiện tại nội dung của tập tin đã chọn, bằng cách chọn các mục xoá thích hợp, nhấn vào nút <emph>Từ chối</emph>, sau đó nhấn vào nút <emph>Chèn</emph>."
+msgid "Lists the currently open documents. Select the name of a document in the list to switch to that document."
+msgstr "Liệt kê các tài liệu còn mở. Chọn tên của một tài liệu trong danh sách, để chuyển đổi sang tài liệu đó."
-#: 02240000.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"02240000.xhp\n"
-"par_id3153662\n"
-"4\n"
+"about_meta_tags.xhp\n"
+"tit\n"
"help.text"
-msgid "The contents of footnotes, headers, frames and fields are ignored."
-msgstr "Nội dung của cả cước chú, phần đầu trang, khung và trường đều bị bỏ qua."
+msgid "HTML import and export"
+msgstr "Nhập/Xuất HTML"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"tit\n"
+"about_meta_tags.xhp\n"
+"bm_id3154380\n"
"help.text"
-msgid "Transparency"
-msgstr "Trong suốt"
+msgid "<bookmark_value>importing; HTML with META tags</bookmark_value><bookmark_value>exporting; to HTML</bookmark_value><bookmark_value>HTML; importing META tags</bookmark_value><bookmark_value>HTML documents; META tags in</bookmark_value><bookmark_value>META tags</bookmark_value><bookmark_value>tags; META tags</bookmark_value>"
+msgstr "<bookmark_value>nhập khẩu; HTML có thẻ META</bookmark_value><bookmark_value>xuất khẩu; theo HTML</bookmark_value><bookmark_value>HTML; nhập khẩu thẻ META</bookmark_value><bookmark_value>tài liệu HTML; chứa thẻ META</bookmark_value><bookmark_value>thẻ META</bookmark_value><bookmark_value>the; thẻ META</bookmark_value><bookmark_value>thẻ; siêu thông tin</bookmark_value>"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"bm_id3146807\n"
+"about_meta_tags.xhp\n"
+"hd_id3154380\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>transparency;areas</bookmark_value><bookmark_value>areas; transparency</bookmark_value>"
-msgstr "<bookmark_value>tính trong suốt;vùng</bookmark_value><bookmark_value>vùng; tính trong suốt</bookmark_value>"
+msgid "HTML import and export"
+msgstr "Nhập/Xuất HTML"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3146807\n"
+"about_meta_tags.xhp\n"
+"par_id3145119\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210700.xhp\" name=\"Transparency\">Transparency</link>"
-msgstr "<link href=\"text/shared/01/05210700.xhp\" name=\"Tính trong suốt\">Tính trong suốt</link>"
+msgid "When you export a file to an HTML document, the description and the user-defined file properties are included as META <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> between the HEAD tags of the exported document. META tags are not displayed in a Web browser, and are used to include information, such as keywords for search engines on your Web page. To set the properties of the current document, choose <emph>File - Properties</emph>, click the <emph>Description</emph> or <emph>User Defined</emph> tabs, and then type the information you want."
+msgstr "Khi bạn xuất khẩu tập tin dạng tài liệu HTML, mô tả và các thuộc tính tập tin tự xác định được bao gồm dạng <link href=\"text/shared/00/00000002.xhp#tags\" name=\"thẻ\">thẻ</link> META (siêu thẻ) giữa các thẻ HEAD (đầu) của tài liệu đã xuất khẩu. Siêu thẻ META không phải được hiển thị trong trình duyệt Web: chúng được dùng để bao gồm siêu thông tin, v.d. các từ khoá để giúp người dùng tìm trang Web của bạn dùng cơ chế tìm kiếm như Google. Để đặt các thuộc tính về tài liệu hiện tại, chọn lệnh <emph>Tập tin > Thuộc tính</emph>, nhấn vào thẻ <emph>Mô tả</emph> hay <emph>Tự xác định</emph>, sau đó nhập thông tin thích hợp."
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149748\n"
-"2\n"
+"about_meta_tags.xhp\n"
+"par_id3148552\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">Set the transparency options for the fill that you apply to the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt các tùy chọn tính trong suốt về mẫu tô đầy bạn áp dụng cho đối tượng đã chọn.</ahelp>"
+msgid "The following file properties are converted to META tags when you export a file as an HTML document:"
+msgstr "Theo đây có những thuộc tính tập tin được chuyển đổi sang siêu thẻ META khi bạn xuất khẩu tập tin dạng tài liệu HTML:"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3152363\n"
-"30\n"
+"about_meta_tags.xhp\n"
+"par_id3154935\n"
+"2\n"
"help.text"
-msgid "Transparency mode"
-msgstr "Chế độ trong suốt"
+msgid "File Property"
+msgstr "Thuộc tính Tập tin"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149283\n"
+"about_meta_tags.xhp\n"
+"par_id3151056\n"
"3\n"
"help.text"
-msgid "Specify the type of transparency that you want to apply."
-msgstr "Ghi rõ kiểu tính trong suốt bạn muốn áp dụng."
+msgid "<TITLE>"
+msgstr "<TITLE> (Tựa đề)"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3148585\n"
+"about_meta_tags.xhp\n"
+"par_id3153778\n"
"4\n"
"help.text"
-msgid "No transparency"
-msgstr "Không trong suốt"
+msgid "Subject"
+msgstr "Chủ đề"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3147226\n"
+"about_meta_tags.xhp\n"
+"par_id3147228\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF\">Turns off color transparency.</ahelp> This is the default setting."
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF\">Tắt tính trong suốt trong màu sắc.</ahelp> Đây là thiết lập mặc định."
+msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
+msgstr "<META NAME=\"CLASSIFICATION\" CONTENT=\"Nội dung của trường\"> (Phân loại trang)"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3152425\n"
+"about_meta_tags.xhp\n"
+"par_id3154908\n"
"6\n"
"help.text"
-msgid "Transparency"
-msgstr "Trong suốt"
+msgid "Keywords"
+msgstr "Từ khoá"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3150693\n"
+"about_meta_tags.xhp\n"
+"par_id3156422\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR\">Turns on color transparency. Select this option, and then enter a number in the box, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR\">Bật tính trong suốt trong màu sắc. Bật tùy chọn này, sau đó nhập vào ô một con số, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn).</ahelp>"
+msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
+msgstr "<META NAME=\"KEYWORDS\" CONTENT=\"Nội dung của trường\"> (Các từ khoá giúp tìm trang)"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3155941\n"
-"14\n"
+"about_meta_tags.xhp\n"
+"par_id3151041\n"
+"8\n"
"help.text"
-msgid "Transparency spin button"
-msgstr "Nút xoay trong suốt"
+msgid "Description"
+msgstr "Mô tả"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155892\n"
-"15\n"
+"about_meta_tags.xhp\n"
+"par_id3125863\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT\">Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent).</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT\">Điều chỉnh tính trong suốt của màu tô đầy hiện thời. Nhập vào ô một con số, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn).</ahelp>"
+msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
+msgstr "<META NAME=\"DESCRIPTION\" CONTENT=\"Nội dung của trường\"> (Mô tả của trang)"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3149827\n"
+"about_meta_tags.xhp\n"
+"par_id3159149\n"
+"10\n"
+"help.text"
+msgid "Info fields 1...4"
+msgstr "Trường Thông tin 1 .. 4"
+
+#: about_meta_tags.xhp
+msgctxt ""
+"about_meta_tags.xhp\n"
+"par_id3157892\n"
"11\n"
"help.text"
-msgid "Gradient"
-msgstr "Dải màu"
+msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
+msgstr "<META NAME=\"Info field name\" CONTENT=\"Nội dung của trường\"> (Tên trường thông tin)"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155338\n"
+"about_meta_tags.xhp\n"
+"par_id3155855\n"
+"22\n"
+"help.text"
+msgid "When you import an HTML containing these META tags, the contents of the tags are added to the corresponding $[officename] file property box."
+msgstr "Khi bạn nhập khẩu một tập tin HTML chứa các siêu thẻ META này, nội dung của mỗi thẻ được thêm vào hộp thuộc tính tập tin tương ứng trong $[officename]."
+
+#: about_meta_tags.xhp
+msgctxt ""
+"about_meta_tags.xhp\n"
+"par_id0926200812164481\n"
+"help.text"
+msgid "Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
+msgstr "Những từ khóa phải được phân cách bằng dấu phẩy. Một từ khóa có thể chứa khoảng trắng hay dấu chấm phẩy."
+
+#: about_meta_tags.xhp
+msgctxt ""
+"about_meta_tags.xhp\n"
+"hd_id3163822\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT\">Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT\">Áp dụng cho màu tô đầy hiện thời một dải màu trong suốt. Bật tùy chọn này, sau đó đặt các thuộc tính về dải màu.</ahelp>"
+msgid "Import Tips"
+msgstr "Gợi ý Nhập khẩu"
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3150443\n"
-"17\n"
+"about_meta_tags.xhp\n"
+"par_id3155307\n"
+"13\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "When you import an HTML document, following META tags are automatically converted to $[officename] fields: <META HTTP-EQUIV=\"REFRESH\"...> and <META NAME=\"...\" ...> , where NAME equals to AUTHOR, CREATED, CHANGED, CHANGEDBY, DESCRIPTION, KEYWORDS or CLASSIFICATION."
+msgstr "Khi bạn nhập khẩu một tập tin HTML, những siêu thẻ META này được tự động chuyển đổi sang trường $[officename]: <META HTTP-EQUIV=\"REFRESH\"...> (làm tươi trang) và <META NAME=\"...\" ...> , mà NAME (tên) tương ứng với AUTHOR (tác giả), CREATED (đã tạo), CHANGED (đã thay đổi), CHANGEDBY (thay đổi bởi), DESCRIPTION (mô tả), KEYWORDS (các từ khoá) hay CLASSIFICATION (phân loại)."
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149398\n"
-"18\n"
+"about_meta_tags.xhp\n"
+"par_id3146146\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES\">Select the type of transparency gradient that you want to apply.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES\">Chọn kiểu dải màu trong suốt bạn muốn áp dụng.</ahelp>"
+msgid "Scripts, comments, and META tags that are positioned directly before a TABLE tag are inserted in the first cell of the table."
+msgstr "Các văn lệnh, chú thích và siêu thẻ META mà nằm đúng phía trước một thẻ bảng TABLE thì được chèn vào ô đầu của bảng."
-#: 05210700.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3145317\n"
+"about_meta_tags.xhp\n"
+"par_id3155366\n"
+"16\n"
+"help.text"
+msgid "Scripts and META tags in the header of an HTML document are imported and anchored to the first paragraph in the document."
+msgstr "Các văn lệnh và siêu thẻ META trong phần đầu của tài liệu HTML thì được nhập khẩu và thả neo vào đoạn văn đầu của tài liệu."
+
+#: about_meta_tags.xhp
+msgctxt ""
+"about_meta_tags.xhp\n"
+"par_id3152885\n"
+"14\n"
+"help.text"
+msgid "To set the options for importing HTML tags, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. A known META tag contains either \"HTTP-EQUIV\" or \"NAME\", and are imported as $[officename] comments. The only exception is <META NAME=\"GENERATOR\"...>, which is ignored."
+msgstr ""
+
+#: about_meta_tags.xhp
+msgctxt ""
+"about_meta_tags.xhp\n"
+"hd_id3163717\n"
+"17\n"
+"help.text"
+msgid "Export Tips"
+msgstr "Gợi ý Xuất khẩu"
+
+#: about_meta_tags.xhp
+msgctxt ""
+"about_meta_tags.xhp\n"
+"par_id3159180\n"
"19\n"
"help.text"
-msgid "Center X"
-msgstr "Tâm X"
+msgid "Comments and script fields at the beginning of the first paragraph in a document are exported to the header of an HTML document. If the document begins with a table, the first paragraph in the first cell of the table is exported to the header of the HTML document."
+msgstr "Các ghi chú và trường văn lệnh ở đầu của đoạn văn thứ nhất trong tài liệu được xuất khẩu ra tiêu đề của tài liệu HTML. Nếu tài liệu bắt đầu với bảng, đoạn văn thứ nhất của ô thứ nhất của bảng được xuất khẩu ra tiêu đề của tài liệu HTML."
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155583\n"
-"20\n"
+"digitalsignatures.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X\">Enter the horizontal offset for the gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X\">Nhập khoảng dịch theo chiều ngang đối với dải màu.</ahelp>"
+msgid "Digital Signatures"
+msgstr "Chữ ký số"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3154897\n"
-"21\n"
+"digitalsignatures.xhp\n"
+"par_idN10544\n"
"help.text"
-msgid "Center Y"
-msgstr "Tâm Y"
+msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link>"
+msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">Chữ ký số</link>"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3159399\n"
-"22\n"
+"digitalsignatures.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y\">Enter the vertical offset for the gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y\">Nhập khoảng dịch theo chiều ngang đối với dải màu.</ahelp>"
+msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your document. You can also use the dialog to view certificates.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm và gỡ bỏ các chữ ký thuật số vào/khỏi tài liệu của bạn. Cũng có thể sử dụng hộp thoại này để xem các chứng nhận.</ahelp>"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3158430\n"
-"23\n"
+"digitalsignatures.xhp\n"
+"par_idN10629\n"
"help.text"
-msgid "Angle"
-msgstr "Góc"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file before you can apply a digital signature to the file.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bạn cần phải lưu tập tin trước khi áp dụng cho tài liệu chữ ký thuật số.</ahelp>"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155829\n"
-"24\n"
+"digitalsignatures.xhp\n"
+"par_idN10644\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE\">Enter a rotation angle for the gradient.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE\">Nhập góc xoay đối với dải màu.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file in OpenDocument format before you can apply a digital signature to the file.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bạn cần phải lưu tập tin theo định dạng OpenDocument (tài liệu mở) trước khi áp dụng cho tài liệu chữ ký thuật số.</ahelp>"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3153320\n"
-"25\n"
+"digitalsignatures.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "Border"
-msgstr "Viền"
+msgid "List"
+msgstr "Danh sách"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149784\n"
-"32\n"
+"digitalsignatures.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER\">Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER\">Nhập hệ số theo đó bạn muốn điều chỉnh vùng trong suốt của dải màu. Giá trị mặc định là 0%.</ahelp>"
+msgid "<ahelp hid=\".\">Lists the digital signatures for the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">Liệt kê các chữ ký thuật số cho tài liệu hiện tại.</ahelp>"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3144439\n"
-"26\n"
+"digitalsignatures.xhp\n"
+"par_idN10566\n"
"help.text"
-msgid "Start value"
-msgstr "Giá trị đầu"
+msgid "The Signed icon<image id=\"img_id4557023\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id4557023\">Icon</alt></image> indicates a valid digital signature, while the Exclamation mark icon<image id=\"img_id249336\" src=\"xmlsecurity/res/caution_11x16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id249336\">Icon</alt></image> indicates an invalid digital signature."
+msgstr "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Biểu tượng</alt></image> và <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Biểu tượng</alt></image>"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3150117\n"
-"27\n"
+"digitalsignatures.xhp\n"
+"par_id0821200910573716\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE\">Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE\">Nhập giá trị tính trong suốt cho điểm bắt đầu dải màu, mà 0% là đục hoàn toàn và 100% là trong suốt hoàn toàn.</ahelp>"
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgstr "Cũng xem <link href=\"text/shared/guide/digital_signatures.xhp\">Các chữ kí số</link>."
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3152350\n"
-"28\n"
+"digitalsignatures.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "End value"
-msgstr "Giá trị cuối"
+msgid "View Certificate"
+msgstr "Xem chứng nhận"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3148924\n"
-"29\n"
+"digitalsignatures.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE\">Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE\">Nhập cho điểm cuối của dải màu một giá trị tính trong suốt, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn).</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/optionen/viewcertificate.xhp\">Xem chứng nhận</link>.</ahelp>"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3149575\n"
-"9\n"
+"digitalsignatures.xhp\n"
+"par_idN10581\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "Sign Document"
+msgstr "In tài liệu"
-#: 05210700.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149798\n"
-"10\n"
+"digitalsignatures.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "Use the preview to view your changes before you apply the transparency effect to the color fill of the selected object."
-msgstr "Xem các thay đổi trong ô xem thử trước khi áp dụng hiệu ứng tính trong suốt cho mẫu tô đầy màu của đối tượng đã chọn."
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/selectcertificate.xhp\">Select Certificate</link> dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/01/selectcertificate.xhp\">Chọn chứng nhận</link>.</ahelp>"
-#: 02020000.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"02020000.xhp\n"
+"digitalsignatures.xhp\n"
+"par_idN10596\n"
+"help.text"
+msgid "Remove"
+msgstr "Bỏ"
+
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"par_idN1059A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Removes the selected source from the list.</ahelp>"
+msgstr "<ahelp hid=\".\">Gỡ bỏ khỏi danh sách nguồn đã chọn.</ahelp>"
+
+#: extensionupdate.xhp
+msgctxt ""
+"extensionupdate.xhp\n"
"tit\n"
"help.text"
-msgid "Redo"
-msgstr "Làm lại"
+msgid "Extension Update"
+msgstr "Cập nhật phần mở rộng"
-#: 02020000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02020000.xhp\n"
-"bm_id3149991\n"
+"extensionupdate.xhp\n"
+"hd_id9688100\n"
"help.text"
-msgid "<bookmark_value>restoring;editing</bookmark_value><bookmark_value>redo command</bookmark_value>"
-msgstr "<bookmark_value>phục hồi;chỉnh sửa</bookmark_value><bookmark_value>lệnh bước lại</bookmark_value><bookmark_value>làm lại</bookmark_value>"
+msgid "Extension Update"
+msgstr "Cập nhật phần mở rộng"
-#: 02020000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02020000.xhp\n"
-"hd_id3149991\n"
-"1\n"
+"extensionupdate.xhp\n"
+"par_id5084688\n"
"help.text"
-msgid "<link href=\"text/shared/01/02020000.xhp\" name=\"Redo\">Redo</link>"
-msgstr "<link href=\"text/shared/01/02020000.xhp\" name=\"Bước lại\">Bước lại</link>"
+msgid "<ahelp hid=\".\">Click the <emph>Check for Updates</emph> button in the <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose <emph>Update</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn vào nút <emph>Kiểm tra có bản cập nhật</emph> trong <link href=\"text/shared/01/packagemanager.xhp\">Bộ Quản lý Phần mở rộng</link> để kiểm tra có bản cập nhật trực tuyến chưa cho các phần mở rộng đã cài đặt. Để kiểm tra có bản cập nhật trực tuyến chưa chỉ cho phần mở rộng được chọn, nhấn-phải để mở trình đơn ngữ cảnh, sau đó chọn lệnh <emph>Cập nhật</emph>.</ahelp>"
-#: 02020000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02020000.xhp\n"
-"par_id3157898\n"
-"2\n"
+"extensionupdate.xhp\n"
+"par_id6401257\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_REDO\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_REDO\">Đảo ngược hành động của lệnh <emph>Hoàn tác</emph> cuối cùng. Để chọn bước bị hủy bạn muốn phục hồi, nhấn vào mũi tên bên cạnh biểu tượng <emph>Bước lại</emph> trên thanh <emph>Chuẩn</emph>.</ahelp>"
+msgid "When you click the <item type=\"menuitem\">Check for Updates</item> button or choose the <item type=\"menuitem\">Update</item> command, the Extension Update dialog is displayed and the check for availability of updates starts immediately."
+msgstr "Khi bạn nhấn vào cái nút <emph>Kiểm tra có bản cập nhật</emph> hay chọn lệnh <emph>Cập nhật</emph>, hộp thoại <emph>Cập nhật Phần mở rộng</emph> được hiển thị và tiến trình kiểm tra có sẵn bản cập nhật chưa sẽ khởi chạy ngay lập tức."
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"tit\n"
+"extensionupdate.xhp\n"
+"par_id5841242\n"
"help.text"
-msgid "Changes"
-msgstr "Thay đổi"
+msgid "<ahelp hid=\".\">While checking for updates, you see a progress indicator. Wait for some messages to show up in the dialog, or click Cancel to abort the update check.</ahelp>"
+msgstr "<ahelp hid=\".\">Trong khi kiểm tra có bản cập nhật, bạn thấy chỉ thị tiến hàng. Đợi thông điệp hiển thị trong hộp thoại, hoặc nhấn vào nút <emph>Thôi</emph> để hủy bỏ tiến trình kiểm tra có bản cập nhật.</ahelp>"
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3152952\n"
-"1\n"
+"extensionupdate.xhp\n"
+"par_id6794030\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Changes</link>"
-msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Thay đổi\">Thay đổi</link>"
+msgid "If no updates are available, the message in the dialog tells you there are no updates. Close the dialog."
+msgstr "Không có sẵn bản cập nhật thì thông điệp trong hộp thoại báo bạn như vậy. Đóng hộp thoại."
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"par_id3145759\n"
-"2\n"
+"extensionupdate.xhp\n"
+"par_id7096774\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the commands that are available for tracking changes in your file.</ahelp>"
-msgstr "<ahelp hid=\".\">Liệt kê các lệnh sẵn sàng để theo dõi thay đổi trong đời sống của bạn.</ahelp>"
+msgid "If updates are available, the updates can either be installed automatically, or you must respond with some action:"
+msgstr "Có sẵn bản cập nhật thì hoặc có thể cài đặt các bản cập nhật ngay lập tức, hoặc bạn cần phải đáp ứng bằng cách nào :"
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3154894\n"
-"7\n"
+"extensionupdate.xhp\n"
+"par_id6420484\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02230200.xhp\" name=\"Hiện\">Hiện</link></caseinline></switchinline>"
+msgid "The Extension Update dialog may contain entries which are not selectable and hence no automatic update can be performed."
+msgstr "Hộp thoại <emph>Cập nhật Phần mở rộng</emph> có thể chứa các mục nhập không thể lựa chọn được thì không thể tự động kiểm tra có bản cập nhật."
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3154184\n"
-"8\n"
+"extensionupdate.xhp\n"
+"par_id6986602\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/02230200.xhp\" name=\"Hiện\">Hiện</link></caseinline></switchinline>"
+msgid "Dependencies are not fulfilled (the update needs some more or newer files to be installed)."
+msgstr "Không thỏa tiêu chuẩn cách phụ thuộc (bản cập nhật cần thiết cài đặt thêm tập tin hay tập tin mới)."
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3153527\n"
-"4\n"
+"extensionupdate.xhp\n"
+"par_id616779\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject\">Accept or Reject</link>"
-msgstr "<link href=\"text/shared/01/02230400.xhp\" name=\"Chấp nhận hay Từ chối\">Chấp nhận hay Từ chối</link>"
+msgid "Insufficient user rights (the Extension Manager was started from the menu, but shared extensions can only be modified when %PRODUCTNAME does not run, and only by a user with appropriate rights). See <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> for details."
+msgstr "Không đủ quyền người dùng (Bộ Quản lý Phần mở rộng đã được khởi chạy từ trình đơn, nhưng các phần mở rộng dùng chung chỉ có thể được sửa đổi khi %PRODUCTNAME không đang chạy, và chỉ bởi người dùng có quyền truy cập thích hợp). Xem <link href=\"text/shared/01/packagemanager.xhp\">Bộ Quản lý Phần mở rộng</link> để tìm chi tiết."
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3145072\n"
-"3\n"
+"extensionupdate.xhp\n"
+"par_id791039\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment\">Comment</link>"
-msgstr "<link href=\"text/shared/01/02230300.xhp\" name=\"Chú thích\">Chú thích</link>"
+msgid "A manual update is necessary."
+msgstr "Cần thiết cập nhật bằng tay."
-#: 02230000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3150694\n"
-"5\n"
+"extensionupdate.xhp\n"
+"par_id757469\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230500.xhp\" name=\"Merge Document\">Merge Document</link>"
-msgstr "<link href=\"text/shared/01/02230500.xhp\" name=\"Trộn tài liệu\">Trộn tài liệu</link>"
+msgid "<ahelp hid=\".\">When you click the Install button the Download and Installation dialog is displayed.</ahelp>"
+msgstr "<ahelp hid=\".\">Khi bạn nhấn vào nút <emph>Cài đặt</emph>, hộp thoại <emph>Tải về và Cài đặt</emph> được hiển thị.</ahelp>"
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"tit\n"
+"extensionupdate.xhp\n"
+"par_id5189062\n"
"help.text"
-msgid "Fontwork"
-msgstr "Chữ nghệ thuật"
+msgid "All extensions which can be directly downloaded are downloaded now. The progress is shown in the Download and Installation dialog. If an extension cannot be downloaded, a message is displayed. The operation continues for the remaining extensions."
+msgstr "Tất cả các phần mở rộng mà có khả năng tải về trực tiếp thì được tải về ngay bây giờ. Tiến hành được hiển thị trong hộp thoại <emph>Tải về và Cài đặt</emph>. Nếu một phần mở rộng nào đó không thể tải về được, một thông điệp được hiển thị. Thao tác sẽ tiếp tục đối với các phần mở rộng còn lại."
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"hd_id3146959\n"
-"51\n"
+"extensionupdate.xhp\n"
+"par_id3949095\n"
"help.text"
-msgid "<variable id=\"fntwrk\"><link href=\"text/shared/01/05280000.xhp\" name=\"FontWork\">Fontwork Dialog (Previous Version)</link></variable>"
-msgstr ""
+msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser."
+msgstr "Một số phần mở rộng nào đó có thể được nhãn với chuỗi « cập nhật dựa vào trình duyệt ». Những phần mở rộng này không thể được tải về thông qua <emph>Bộ Quản lý Phần mở rộng</emph>. Cần phải mở một trình duyệt Web để tải bản cập nhật phần mở rộng xuống một địa chỉ Web nào đó. Địa chỉ này có thể cần thiết thêm vài việc tương tác người dùng để tải về phần mở rộng. Sau khi tải về, bạn cần phải tự cài đặt phần mở rộng, chẳng hạn bằng cách nhấn-đôi vào biểu tượng của phần mở rộng trong khung duyệt tập tin."
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3151097\n"
-"52\n"
+"extensionupdate.xhp\n"
+"par_id3729056\n"
"help.text"
-msgid "<ahelp hid=\".uno:FontWork\">Edits Fontwork effects of the selected object that has been created with the previous Fontwork dialog.</ahelp>"
-msgstr "<ahelp hid=\".uno:FontWork\">Chỉnh sửa các hiệu ứng chữ nghệ thuật của đối tượng đã được tạo nhờ hộp thoại <emph>Chữ nghệ thuật</emph> trước đó.</ahelp>"
+msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately."
+msgstr "Đối với các phần mở rộng có nhãn « cập nhật dựa vào trình duyệt », <emph>Bộ Quản lý Phần mở rộng</emph> sẽ mở trình duyệt Web của bạn ở địa chỉ Web tương ứng. Hành động này xảy ra khi bạn đóng hộp thoại, sau khi tải về các bản cập nhật phần mở rộng khác. Không có phần mở rộng có thể tải về trực tiếp thì trình duyệt Web được khởi chạy ngay lập tức."
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155934\n"
-"53\n"
+"extensionupdate.xhp\n"
+"par_id6854457\n"
"help.text"
-msgid "This <emph>Fontwork</emph> dialog is only available for Fontwork in old Writer text documents that were created prior to %PRODUCTNAME %PRODUCTVERSION. You must first call <emph>Tools - Customize</emph> to add a menu command or an icon to open this dialog."
-msgstr "Hộp thoại <emph>Chữ nghệ thuật</emph> này chỉ dùng cho chữ nghệ thuật trong tài liệu văn bản Writer cũ đã được tạo bởi %PRODUCTNAME %PRODUCTVERSION. Trước tiên bạn cần phải mở mục trình đơn <emph>Công cụ > Tùy biến</emph> để thêm một lệnh trình đơn hay biểu tượng sẽ mở hộp thoại này."
+msgid "After the last extension has been downloaded, the installation begins. First all installed extensions for which an update could be downloaded successfully, are removed. Then the updated extensions are installed. If an error occurs, a message that the installation failed is displayed, but the operation proceeds."
+msgstr "Một khi tải về phần mở rộng cuối cùng, tiến trình cài đặt khởi chạy. Đầu tiên gỡ bỏ các phần mở rộng có bản cập nhật được tải về thành công. Sau đó thì cài đặt các phần mở rộng đã cập nhật. Gặp lỗi thì hiển thị thông điệp rằng tiến trình cài đặt bị lỗi, nhưng thao tác vẫn còn tiếp tục lại."
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154497\n"
-"74\n"
+"extensionupdate.xhp\n"
+"par_id3372295\n"
"help.text"
-msgid "You can change the shape of the text baseline to match semicircles, arcs, circles, and freeform lines."
-msgstr "Bạn cũng có thể thay đổi hình của đường cơ bản của văn bản để tương ứng với hình nửa vòng tròn, hình cung, hình tròn và đường dạng tự do."
+msgid "If all updates have been processed the Download and Installation dialog shows that it has finished. You can abort the download and installation process by clicking the <emph>Abort Update</emph> button."
+msgstr "Nếu tất cả các bản cập nhật đã được xử lý, hộp thoại <emph>Tải về và Cài đặt</emph> sẽ hiển thị rằng tiến trình đã chạy xong. Bạn vẫn còn có khả năng hủy bỏ tiến trình tải về và cài đặt, bằng cách nhấn vào nút <emph>Hủy bỏ cập nhật</emph>."
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"hd_id3152372\n"
-"54\n"
+"extensionupdate.xhp\n"
+"hd_id5699942\n"
"help.text"
-msgid "Alignment icons"
-msgstr "Biểu tượng Canh lề"
+msgid "Show all Updates"
+msgstr "Hiện mọi bản cập nhật"
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149760\n"
-"55\n"
+"extensionupdate.xhp\n"
+"par_id641193\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_CTL_FORMS\" visibility=\"hidden\">Click the shape of the baseline that you want to use for the text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_CTL_FORMS\" visibility=\"hidden\">Nhấn vào hình của đường cơ bản mà bạn muốn dùng cho văn bản.</ahelp>"
+msgid "<ahelp hid=\".\">By default, only the downloadable extensions are shown in the dialog. Mark <emph>Show all Updates</emph> to see also other extensions and error messages.</ahelp>"
+msgstr "<ahelp hid=\".\">Mặc định là hộp thoại hiển thị chỉ những phần mở rộng có thể tải về. Bật tùy chọn <emph>Hiện mọi bản cập nhật</emph> để thấy các phần mở rộng khác và thông điệp lỗi.</ahelp>"
-#: 05280000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3152542\n"
-"56\n"
+"extensionupdate.xhp\n"
+"par_id7634510\n"
"help.text"
-msgid "The top row contains the following baseline shapes: <emph>Upper Semicircle</emph>, <emph>Lower Semicircle</emph>, <emph>Left Semicircle</emph> and <emph>Right Semicircle</emph>."
-msgstr "Hàng đầu chứa các hình đường cơ bản này: <emph>Nửa vòng tròn trên</emph>, <emph>Nửa vòng tròn dưới</emph>, <emph>Nửa vòng tròn trái</emph> và <emph>Nửa vòng tròn phải</emph>."
+msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
+msgstr "<link href=\"text/shared/01/packagemanager.xhp\">Bộ Quản lý Phần mở rộng</link>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150774\n"
-"58\n"
+"formatting_mark.xhp\n"
+"tit\n"
"help.text"
-msgid "The middle row contains the following baseline shapes: <emph>Upper Arc</emph>, <emph>Lower Arc, Left Arc</emph> and <emph>Right Arc</emph>."
-msgstr "Hàng giữa chứa các hình đường cơ bản này: <emph>Cung trên</emph>, <emph>Cung dưới</emph>, <emph>Cung trái</emph> và <emph>Cung phải</emph>."
+msgid "Formatting Mark"
+msgstr "Dấu định dạng"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3159158\n"
-"60\n"
+"formatting_mark.xhp\n"
+"bm_id9930722\n"
"help.text"
-msgid "The bottom row contains the following baseline shapes: <emph>Open Circle, Closed Circle, Closed Circle II</emph>, and <emph>Open Circle Vertical</emph>. For the best results, the drawing object must contain more than two lines of text."
-msgstr "Hàng cuối chứa các hình đường cơ bản này: <emph>Tròn mở, Tròn đóng, Tròn đóng 2</emph> và <emph>Trờn mở thẳng đứng</emph>. Để làm kết quả đẹp nhất, đối tượng vẽ phải chứa ít nhất hai dòng văn bản."
+msgid "<bookmark_value>CTL;(not) wrapping words</bookmark_value> <bookmark_value>words;wrapping in CTL</bookmark_value>"
+msgstr "<bookmark_value>CTL;(không) bao từ</bookmark_value><bookmark_value>từ;bao trong CTL</bookmark_value>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149237\n"
-"62\n"
+"formatting_mark.xhp\n"
+"hd_id030220091035120\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_OFF\">Removes baseline formatting.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_OFF\">Gỡ bỏ định dạng của đường cơ bản.</ahelp>"
+msgid "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">Formatting Mark</link></variable>"
+msgstr "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">Dấu định dạng</link></variable>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149244\n"
+"formatting_mark.xhp\n"
+"par_id0302200910351248\n"
"help.text"
-msgid "<image id=\"img_id3161458\" src=\"cmd/sc_fontwork.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3161458\">Icon</alt></image>"
-msgstr "<image id=\"img_id3161458\" src=\"cmd/sc_fontwork.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3161458\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Opens a submenu to insert special formatting marks. Enable CTL for more commands.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở một trình đơn phụ để chèn những dấu định dạng đặc biệt. Bật CTL để sử dụng nhiều lệnh hơn.</ahelp>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149046\n"
-"63\n"
+"formatting_mark.xhp\n"
+"hd_id9996948\n"
"help.text"
-msgid "Off"
-msgstr "Tắt"
+msgid "Non-breaking space"
+msgstr "Dấu cách không ngắt"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3156344\n"
-"64\n"
+"formatting_mark.xhp\n"
+"par_id8326975\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_ROTATE\">Uses the top or the bottom edge of the selected object as the text baseline.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_ROTATE\">Dùng cạnh bên trên hay bên dưới của đối tượng đã chọn để làm đường cơ bản của văn bản.</ahelp>"
+msgid "<ahelp hid=\".\">Inserts a space that will keep bordering characters together on line breaks.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn một dấu cách sẽ giữ nhau hai ký tự bên cạnh khi dòng ngắt.</ahelp>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150791\n"
+"formatting_mark.xhp\n"
+"hd_id6383556\n"
"help.text"
-msgid "<image id=\"img_id3153379\" src=\"svx/res/fw02.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153379\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153379\" src=\"svx/res/fw02.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153379\">Biểu tượng</alt></image>"
+msgid "Non-breaking hyphen"
+msgstr "Gạch nối không ngắt"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153339\n"
-"65\n"
+"formatting_mark.xhp\n"
+"par_id8469191\n"
"help.text"
-msgid "Rotate"
-msgstr "Xoay"
+msgid "<ahelp hid=\".\">Inserts a hyphen that will keep bordering characters together on line breaks.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn một dấu gạch nối từ sẽ giữ nhau hai ký tự bên cạnh khi dòng ngắt.</ahelp>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155742\n"
-"66\n"
+"formatting_mark.xhp\n"
+"hd_id3306680\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_UPRIGHT\">Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_UPRIGHT\">Dùng cạnh bên trên hay bên dưới của đối tượng đã chọn để làm đường cơ bản của văn bản, cũng bảo tồn tình trạng chỉnh canh theo chiều dóc gốc của mỗi ký tự riêng.</ahelp>"
+msgid "Optional hyphen"
+msgstr "Gạch nối tùy chọn"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154069\n"
+"formatting_mark.xhp\n"
+"par_id9407330\n"
"help.text"
-msgid "<image id=\"img_id3152933\" src=\"svx/res/fw03.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3152933\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152933\" src=\"svx/res/fw03.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3152933\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Inserts an invisible hyphen within a word that will appear and create a line break once it becomes the last character in a line.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn vào bên trong từ một dấu gạch nối từ vô hình sẽ xuất hiện và tạo chỗ ngắt dòng nếu nó trở thành ký tự cuối cùng trên dòng.</ahelp>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154153\n"
-"67\n"
+"formatting_mark.xhp\n"
+"hd_id2295907\n"
"help.text"
-msgid "Upright"
-msgstr "Thắng đứng"
+msgid "No-width optional break"
+msgstr "Không có bề rộng, ngắt tùy chọn"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149202\n"
-"68\n"
+"formatting_mark.xhp\n"
+"par_id1536301\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTX\">Horizontally slants the characters in the text object.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTX\">Làm xiên theo chiều ngang các ký tự của đối tượng văn bản.</ahelp>"
+msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn vào bên trong từ một dấu cách vô hình sẽ chèn một chỗ ngắt dòng nếu nó trở thành ký tự cuối cùng trên dòng. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153180\n"
+"formatting_mark.xhp\n"
+"hd_id3245643\n"
"help.text"
-msgid "<image id=\"img_id3151041\" src=\"svx/res/fw04.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3151041\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151041\" src=\"svx/res/fw04.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3151041\">Biểu tượng</alt></image>"
+msgid "No-width no break"
+msgstr "Không có bề rộng, không ngắt"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149983\n"
-"69\n"
+"formatting_mark.xhp\n"
+"par_id1085238\n"
"help.text"
-msgid "Slant Horizontal"
-msgstr "Làm xiên nằm ngang"
+msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will keep the word together at the end of a line. Available when complex text layout (CTL) is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn vào bên trong từ một dấu cách vô hình sẽ giữ nhau nguyên từ ở kết thúc dòng. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154297\n"
-"70\n"
+"formatting_mark.xhp\n"
+"hd_id4634540\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTY\">Vertically slants the characters in the text object.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTY\">Làm xiên theo chiều dọc các ký tự của đối tượng văn bản.</ahelp>"
+msgid "Left-to-right mark"
+msgstr "Dấu trái qua phải"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147348\n"
+"formatting_mark.xhp\n"
+"par_id6690878\n"
"help.text"
-msgid "<image id=\"img_id3154690\" src=\"svx/res/fw05.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3154690\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154690\" src=\"svx/res/fw05.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3154690\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn một dấu hướng văn bản mà ảnh hưởng đến hướng văn bản của chuỗi nào theo sau dấu này. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150962\n"
-"71\n"
+"formatting_mark.xhp\n"
+"hd_id9420148\n"
"help.text"
-msgid "Slant Vertical"
-msgstr "Làm xiên theo chiều dọc"
+msgid "Right-to-left mark"
+msgstr "Dấu phải qua trái"
-#: 05280000.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154985\n"
-"22\n"
+"formatting_mark.xhp\n"
+"par_id923184\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_MIRROR\">Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_MIRROR\">Đảo ngược hướng luồng văn bản, và lật văn bản theo chiều ngang hay dọc. Để sử dụng câu lệnh này, trước tiên bạn cần phải áp dụng cho văn bản một đường cơ bản khác.</ahelp>"
+msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn một dấu hướng văn bản mà ảnh hưởng đến hướng văn bản của chuỗi nào theo sau dấu này. Chỉ sẵn sàng một khi hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL).</ahelp>"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155854\n"
+"gallery.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3153142\" src=\"svx/res/fw06.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153142\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153142\" src=\"svx/res/fw06.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153142\">Biểu tượng</alt></image>"
+msgid "Gallery"
+msgstr "Bộ sưu tập"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149934\n"
-"21\n"
+"gallery.xhp\n"
+"par_id3149783\n"
+"46\n"
"help.text"
-msgid "Orientation"
-msgstr "Hướng"
+msgid "<ahelp hid=\"HID_GALLERY_ICONVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as icons.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_ICONVIEW\" visibility=\"hidden\">Hiển thị các đối tượng của <emph>Bộ sưu tập</emph> dưới dạng biểu tượng.</ahelp>"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154640\n"
-"24\n"
+"gallery.xhp\n"
+"par_id3148983\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_LEFT\">Aligns the text to the left end of the text baseline.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_LEFT\">Chỉnh canh văn bản theo cuối bên trái của đường cơ bản văn bản.</ahelp>"
+msgid "<ahelp hid=\"HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as small icons, with title and path information.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Hiển thị nội dung của <emph>Bộ sưu tập</emph> dưới dạng biểu tượng nhỏ chứa thông tin về tựa đề và đường dẫn.</ahelp>"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3156006\n"
+"gallery.xhp\n"
+"hd_id3153894\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3153573\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153573\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153573\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153573\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link>"
+msgstr "<link href=\"text/shared/01/gallery.xhp\" name=\"Bộ sưu tập\">Bộ sưu tập</link>"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3152416\n"
-"23\n"
+"gallery.xhp\n"
+"par_id3150789\n"
+"2\n"
"help.text"
-msgid "Align Left"
-msgstr "Canh lề trái"
+msgid "<ahelp hid=\".uno:Gallery\">Opens the <emph>Gallery</emph>, where you can select graphics and sounds to insert into your document.</ahelp>"
+msgstr "<ahelp hid=\".uno:Gallery\">Mở <emph>Bộ sưu tập</emph>, trong đó bạn có thể lựa chọn đồ họa và âm thanh để chèn vào tài liệu.</ahelp>"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147578\n"
+"gallery.xhp\n"
+"par_id3155555\n"
+"44\n"
+"help.text"
+msgid "You can display the contents of the <emph>Gallery </emph>as icons, or icons with titles and path information."
+msgstr "Bạn có khả năng hiển thị nội dung của <emph>Bộ sưu tập</emph> dưới dạng biểu tượng, hay biểu tượng cũng có thông tin về tựa và đường dẫn."
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"par_id3153394\n"
+"45\n"
+"help.text"
+msgid "To zoom in or zoom out on a single object in the <emph>Gallery</emph>, double-click the object, or select the object, and then press the Spacebar."
+msgstr "Để phóng to hay thu nhỏ đối với một đối tượng riêng trong <emph>Bộ sưu tập</emph>, nhấn-đôi vào đối tượng, hay lựa chọn đối tượng, sau đó bấm phím dài."
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"par_id3145346\n"
"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_CENTER\">Centers the text on the text baseline.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_CENTER\">Đặt văn bản vào giữa trên đường cơ bản văn bản.</ahelp>"
+msgid "Themes are listed on the left side of the <emph>Gallery</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">Click a theme to view the objects associated with the theme.</ahelp>"
+msgstr "Các sắc thái được liệt kê bên trái <emph>Bộ sưu tập</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">Nhấn vào một sắc thái nào đó để xem các đối tượng liên kết với nó.</ahelp>"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155748\n"
+"gallery.xhp\n"
+"par_id3155355\n"
+"50\n"
"help.text"
-msgid "<image id=\"img_id3147217\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147217\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147217\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147217\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_GALLERY_WINDOW\">To insert a <emph>Gallery </emph>object, select the object, and then drag it into the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_WINDOW\">Để chèn một đối tượng <emph>Bộ sưu tập</emph>, lựa chọn đối tượng, sau đó kéo nó vào tài liệu.</ahelp>"
-#: 05280000.xhp
+#: gallery.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3159346\n"
+"gallery.xhp\n"
+"hd_id3156113\n"
+"4\n"
+"help.text"
+msgid "Adding a New File to the Gallery"
+msgstr "Thêm tập tin mới vào Bộ sưu tập"
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"par_id3153032\n"
+"43\n"
+"help.text"
+msgid "To add a file to the <emph>Gallery</emph>, right-click a theme, choose <emph>Properties</emph>, click the <emph>Files </emph>tab, and then click <emph>Add</emph>. You can also click an object in the current document, hold, and then drag it to the <emph>Gallery</emph> window."
+msgstr "Để thêm một tập tin mới vào <emph>Bộ sưu tập</emph>, nhấn-phải vào một sắc thái nào đó, chọn mục <emph>Thuộc tính</emph>, nhấn vào thẻ <emph>Tập tin</emph>, sau đó nhấn vào nút <emph>Thêm</emph>. Bạn cũng có thể nhấn vào một đối tượng trong tài liệu hiện tại, sau đó kéo nó vào ô cửa sổ <emph>Bộ sưu tập</emph>."
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"hd_id3145315\n"
+"10\n"
+"help.text"
+msgid "New theme"
+msgstr "Sắc thái mới"
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"par_id3150275\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_NEWTHEME\">Adds a new theme to the <emph>Gallery </emph>and lets you choose the files to include in the theme.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_NEWTHEME\">Thêm một sắc thái mới vào <emph>Bộ sưu tập</emph>, và cho phép bạn chọn những tập tin cần thêm vào cho sắc thái.</ahelp>"
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"par_id3159167\n"
+"9\n"
+"help.text"
+msgid "To access the following commands, right-click a theme in the <emph>Gallery</emph>:"
+msgstr "Để truy cập đến những lệnh theo đây, nhấn-phải vào một sắc thái trong <emph>Bộ sưu tập</emph>:"
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"hd_id3154142\n"
+"15\n"
+"help.text"
+msgid "Properties"
+msgstr "Thuộc tính"
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"par_id3148990\n"
+"16\n"
+"help.text"
+msgid "The <emph>Properties of (Theme)</emph> dialog contains the following tabs:"
+msgstr "Hộp thoại <emph>Thuộc tính về (Sắc thái)</emph> chứa những thẻ này:"
+
+#: gallery.xhp
+msgctxt ""
+"gallery.xhp\n"
+"hd_id3151384\n"
"25\n"
"help.text"
-msgid "Center"
-msgstr "Giữa"
+msgid "<link href=\"text/shared/01/gallery_files.xhp\" name=\"Files\">Files</link>"
+msgstr "<link href=\"text/shared/01/gallery_files.xhp\" name=\"Tập tin\">Tập tin</link>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149583\n"
-"28\n"
+"gallery_files.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_RIGHT\">Aligns the text to the right end of the text baseline.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_RIGHT\">Chỉnh canh văn bản theo cuối bên phải của đường cơ bản văn bản.</ahelp>"
+msgid "Files"
+msgstr "Tập tin"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149939\n"
+"gallery_files.xhp\n"
+"hd_id3150756\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3148498\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148498\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148498\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148498\">Biểu tượng</alt></image>"
+msgid "Files"
+msgstr "Tập tin"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150418\n"
-"27\n"
+"gallery_files.xhp\n"
+"par_id3153882\n"
+"2\n"
"help.text"
-msgid "Align Right"
-msgstr "Canh lề phải"
+msgid "<variable id=\"stargallerymanager\">Adds new files to the selected theme. </variable>"
+msgstr "<variable id=\"stargallerymanager\">Thêm tập tin mới vào sắc thái đã chọn. </variable>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147124\n"
-"30\n"
+"gallery_files.xhp\n"
+"hd_id3153089\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_AUTOSIZE\">Resizes the text to fit the length of the text baseline.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_AUTOSIZE\">Thay đổi kích cỡ của văn bản để vừa chiều dài của đường cơ bản văn bản.</ahelp>"
+msgid "File Type"
+msgstr "Kiểu tập tin"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3159129\n"
+"gallery_files.xhp\n"
+"par_id3154497\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3153334\" src=\"svx/res/fw010.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153334\" src=\"svx/res/fw010.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE\">Select the type of file that you want to add.</ahelp>"
+msgstr "<ahelp hid=\"SVX:COMBOBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE\">Chọn kiểu tập tin bạn muốn thêm.</ahelp>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148747\n"
-"29\n"
+"gallery_files.xhp\n"
+"hd_id3153935\n"
+"7\n"
"help.text"
-msgid "AutoSize Text"
-msgstr "Tự động co giãn văn bản"
+msgid "Files found"
+msgstr "Tập tin đã tìm"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3157844\n"
-"32\n"
+"gallery_files.xhp\n"
+"par_id3145829\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between the text baseline and the base of the individual characters.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE\">Nhập khoảng cách bạn muốn để lại giữa đường cơ bản văn bản và cơ bản của mỗi ký tự riêng.</ahelp>"
+msgid "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND\">Lists the available files. Select the file(s) that you want to add, and then click <emph>Add</emph>. To add all of the files in the list, click <emph>Add All</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND\">Liệt kê các tập tin sẵn sàng. Lựa chọn những tập tin bạn muốn thêm, sau đó nhấn vào nút <emph>Thêm</emph>. Để thêm tất cả các tập tin trong danh sách, nhấn vào nút<emph>Thêm tất cả</emph>.</ahelp>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153957\n"
+"gallery_files.xhp\n"
+"hd_id3154751\n"
+"9\n"
"help.text"
-msgid "<image id=\"img_id3151019\" src=\"svx/res/fw020.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3151019\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151019\" src=\"svx/res/fw020.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3151019\">Biểu tượng</alt></image>"
+msgid "Find files"
+msgstr "Tìm tập tin"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3146971\n"
-"31\n"
+"gallery_files.xhp\n"
+"par_id3147557\n"
+"10\n"
"help.text"
-msgid "Distance"
-msgstr "Khoảng cách"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH\">Locate the directory containing the files that you want to add, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH\">Tìm thư mục chứa những tập tin bạn muốn thêm, sau đó nhấn vào nút <emph>OK</emph>.</ahelp>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153530\n"
-"34\n"
+"gallery_files.xhp\n"
+"hd_id3154317\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART\">Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART\">Nhập khoảng cách cần lại giữa đầu của đường cơ bản văn bản và đầu của văn bản.</ahelp>"
+msgid "Add"
+msgstr "Thêm"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3156332\n"
+"gallery_files.xhp\n"
+"par_id3150774\n"
+"14\n"
"help.text"
-msgid "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE\">Adds the selected file(s) to the current theme.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE\">Thêm vào sắc thái hiện tại những tập tin đã chọn.</ahelp>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153710\n"
-"33\n"
+"gallery_files.xhp\n"
+"hd_id3149751\n"
+"15\n"
"help.text"
-msgid "Indent"
-msgstr "Thụt lề"
+msgid "Add all"
+msgstr "Thêm tất cả"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154636\n"
-"36\n"
+"gallery_files.xhp\n"
+"par_id3156426\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHOWFORM\">Shows or hides the text baseline, or the edges of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHOWFORM\">Hiển thị hay ẩn đường cơ bản văn bản hay các cạnh của đối tượng đã chọn.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL\">Adds all of the files in the list to the current theme.</ahelp>"
+msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL\">Thêm vào sắc thái hiện tại tất cả các tập tin trong danh sách.</ahelp>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155515\n"
+"gallery_files.xhp\n"
+"hd_id3147088\n"
+"17\n"
"help.text"
-msgid "<image id=\"img_id3159186\" src=\"svx/res/fw011.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3159186\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159186\" src=\"svx/res/fw011.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3159186\">Biểu tượng</alt></image>"
+msgid "Preview"
+msgstr "Xem thử"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148996\n"
-"35\n"
+"gallery_files.xhp\n"
+"par_id3151111\n"
+"18\n"
"help.text"
-msgid "Contour"
-msgstr "Đường viền"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW\">Displays or hides a preview of the selected file.</ahelp>"
+msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW\">Hiển thị hay ẩn ô xem thử của tập tin đã chọn.</ahelp>"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155764\n"
-"38\n"
+"gallery_files.xhp\n"
+"hd_id3147275\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_OUTLINE\">Shows or hides the borders of the individual characters in the text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_OUTLINE\">Hiển thị hay ẩn các viền của mỗi ký tự riêng trong văn bản.</ahelp>"
+msgid "Preview box"
+msgstr "Ô xem thử"
-#: 05280000.xhp
+#: gallery_files.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150323\n"
+"gallery_files.xhp\n"
+"par_id3153662\n"
+"20\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"svx/res/fw012.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147100\" src=\"svx/res/fw012.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\"HID_GALLERY_PREVIEW\">Displays a preview of the selected file.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_PREVIEW\">Hiển thị ô xem thử của tập tin đã chọn.</ahelp>"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147339\n"
-"37\n"
+"grid.xhp\n"
+"tit\n"
"help.text"
-msgid "Text Contour"
-msgstr "Đường viền văn bản"
+msgid "Grid"
+msgstr "Lưới"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148927\n"
-"40\n"
+"grid.xhp\n"
+"bm_id4263435\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_OFF\">Removes the shadow effects that you applied to the text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_OFF\">Gỡ bỏ các hiệu ứng đổ bóng mà bạn đã áp dụng cho văn bản.</ahelp>"
+msgid "<bookmark_value>grids;display options (Impress/Draw)</bookmark_value>"
+msgstr "<bookmark_value>lưới;tùy chọn hiển thị (Impress/Draw)</bookmark_value>"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150241\n"
+"grid.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "<image id=\"img_id3156375\" src=\"svx/res/fw013.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156375\" src=\"svx/res/fw013.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Biểu tượng</alt></image>"
+msgid "<link href=\"text/shared/01/grid.xhp\">Grid</link>"
+msgstr "<link href=\"text/shared/01/grid.xhp\">Lưới</link>"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3151248\n"
-"39\n"
+"grid.xhp\n"
+"par_id3147340\n"
+"5\n"
"help.text"
-msgid "No Shadow"
-msgstr "Không bóng"
+msgid "<ahelp hid=\".\">Sets the display properties of a grid.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt các thuộc tính hiển thị về lưới.</ahelp>"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147321\n"
-"42\n"
+"grid.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_NORMAL\">Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_NORMAL\">Thêm bóng đổ vào văn bản trên đối tượng đã chọn. Nhấn vào cái nút này, sau đó nhập vào hộp <emph>Khoảng cách X</emph> và <emph>Khoảng cách Y</emph> các chiều của bóng đổ.</ahelp>"
+msgid "Display Grid"
+msgstr "Hiện lưới"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3145231\n"
+"grid.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "<image id=\"img_id3149908\" src=\"svx/res/fw014.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3149908\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149908\" src=\"svx/res/fw014.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3149908\">Biểu tượng</alt></image>"
+msgid "Displays or hides grid lines that you can use to align objects such as graphics on a page."
+msgstr "Hiển thị hay ẩn các đường lưới bạn có thể sử dụng để chỉnh canh các đối tượng (v.d. ảnh) trên trang."
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3152484\n"
-"41\n"
+"grid.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "Vertical"
-msgstr "Thẳng đứng"
+msgid "Snap to Grid"
+msgstr "Đính lưới"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148478\n"
-"44\n"
+"grid.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_SLANT\">Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
-msgstr "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_SLANT\">Thêm bóng đổ xiên vào văn bản trên đối tượng đã chọn. Nhấn vào cái nút này, sau đó nhập vào hộp <emph>Khoảng cách X</emph> và <emph>Khoảng cách Y</emph> các chiều của bóng đổ.</ahelp>"
+msgid "Automatically aligns objects to vertical and horizontal grid lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> when you drag an object."
+msgstr "Tự động chỉnh canh các đối tượng theo các đường lưới theo chiều ngang/dọc. Để bỏ qua tính năng này, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo đối tượng."
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150664\n"
+"grid.xhp\n"
+"par_idN105C9\n"
"help.text"
-msgid "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Biểu tượng</alt></image>"
+msgid "Grid to Front"
+msgstr "Lưới lên trên"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147129\n"
-"43\n"
+"grid.xhp\n"
+"par_idN105CD\n"
"help.text"
-msgid "Slant"
-msgstr "Làm xiên"
+msgid "<ahelp hid=\".\">Displays the grid lines in front of the objects on the slide or page.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị các đường lưới ở trên những đối tượng trên ảnh chiếu hay trang.</ahelp>"
-#: 05280000.xhp
+#: grid.xhp
msgctxt ""
-"05280000.xhp\n"
-"hd_id3156537\n"
-"45\n"
+"grid.xhp\n"
+"par_id4372692\n"
"help.text"
-msgid "Horizontal Distance"
-msgstr "Khoảng cách theo chiều ngang"
+msgid "Set the grid color on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">Appearance</link>."
+msgstr ""
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3151049\n"
-"46\n"
+"guides.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X\">Enter the horizontal distance between the text characters and the edge of the shadow.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X\">Nhập khoảng cách theo chiều ngang giữa các ký tự văn bản và cạnh của bóng đổ.</ahelp>"
+msgid "Snap Lines"
+msgstr ""
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3159103\n"
+"guides.xhp\n"
+"bm_id1441999\n"
"help.text"
-msgid "<image id=\"img_id3149242\" src=\"svx/res/fw016.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3149242\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149242\" src=\"svx/res/fw016.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3149242\">Biểu tượng</alt></image>"
+msgid "<bookmark_value>guides;display options (Impress/Draw)</bookmark_value>"
+msgstr "<bookmark_value>nét dẫn;tùy chọn hiển thị (Impress/Draw)</bookmark_value>"
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147093\n"
-"72\n"
+"guides.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "X Distance"
-msgstr "Khoảng cách X"
+msgid "<link href=\"text/shared/01/guides.xhp\">Snap Lines</link>"
+msgstr "<link href=\"text/shared/01/guides.xhp\">Nét dẫn</link>"
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"hd_id3149450\n"
-"47\n"
+"guides.xhp\n"
+"par_id3146313\n"
+"7\n"
"help.text"
-msgid "Vertical Distance"
-msgstr "Khoảng cách theo chiều dọc"
+msgid "<ahelp hid=\".\">Specifies the display options for snap lines.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ các tùy chọn hiển thị cho nét dẫn.</ahelp>"
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153704\n"
-"48\n"
+"guides.xhp\n"
+"par_idN1057B\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y\">Enter the vertical distance between the text characters and the edge of the shadow.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y\">Nhập khoảng cách theo chiều dọc giữa các ký tự văn bản và cạnh của bóng đổ.</ahelp>"
+msgid "Display Snap Lines"
+msgstr ""
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154275\n"
+"guides.xhp\n"
+"par_idN1057F\n"
"help.text"
-msgid "<image id=\"img_id3154118\" src=\"svx/res/fw017.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3154118\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154118\" src=\"svx/res/fw017.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3154118\">Biểu tượng</alt></image>"
+msgid "Displays or hides snap lines that you can use to align objects on a page."
+msgstr "Hiển thị hay ẩn các nét dẫn bạn có thể sử dụng để chỉnh canh các đối tượng trên trang."
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150783\n"
-"73\n"
+"guides.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "Y Distance"
-msgstr "Khoang cách Y"
+msgid "Snap to Snap Lines"
+msgstr ""
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"hd_id3149209\n"
-"49\n"
+"guides.xhp\n"
+"par_idN10586\n"
"help.text"
-msgid "Shadow Color"
-msgstr "Màu bóng"
+msgid "Automatically aligns objects to vertical and horizontal snap lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key </defaultinline></switchinline>when you drag an object."
+msgstr "Tự động chỉnh canh các đối tượng theo các đường lưới theo chiều ngang/dọc. Để bỏ qua tính năng này, ấn giữ phím <switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline> trong khi kéo đối tượng."
-#: 05280000.xhp
+#: guides.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148681\n"
-"50\n"
+"guides.xhp\n"
+"par_idN105C6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR\">Select a color for the text shadow.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR\">Chọn màu cho bóng văn bản.</ahelp>"
+msgid "Snap Lines to Front"
+msgstr ""
-#: 02200200.xhp
+#: guides.xhp
msgctxt ""
-"02200200.xhp\n"
+"guides.xhp\n"
+"par_idN105CA\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays the snap lines in front of the objects on the slide or page.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị các đường lưới ở trên những đối tượng trên ảnh chiếu hay trang.</ahelp>"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
"tit\n"
"help.text"
+msgid "Media Player"
+msgstr "Bộ phát phim/nhạc"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"bm_id8659321\n"
+"help.text"
+msgid "<bookmark_value>Media Player window</bookmark_value>"
+msgstr "<bookmark_value>Cửa sổ bộ phát phim/nhạc</bookmark_value>"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN10550\n"
+"help.text"
+msgid "<variable id=\"mediaplayertitle\"><link href=\"text/shared/01/mediaplayer.xhp\">Media Player</link></variable>"
+msgstr "<variable id=\"mediaplayertitle\"><link href=\"text/shared/01/mediaplayer.xhp\">Bộ phát phim/nhạc</link></variable>"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN10560\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Media Player window where you can preview movie and sound files as well as insert these files into the current document.</ahelp>"
+msgstr ""
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN10577\n"
+"help.text"
+msgid "The Media Player supports many different media formats. You can also insert media files from the Media Player into your document."
+msgstr "<emph>Bộ phát phim/nhạc</emph> hỗ trợ rất nhiều định dạng ảnh/nhạc khác nhau. Bạn cũng có thể chèn các tập tin phim/nhạc vào tài liệu từ <emph>Bộ phát phim/nhạc</emph>."
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN1057A\n"
+"help.text"
msgid "Open"
msgstr "Mở"
-#: 02200200.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02200200.xhp\n"
-"bm_id3085157\n"
+"mediaplayer.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "<bookmark_value>objects; opening</bookmark_value><bookmark_value>opening; objects</bookmark_value>"
-msgstr "<bookmark_value>đối tượng; mở</bookmark_value><bookmark_value>mở; đối tượng</bookmark_value>"
+msgid "Opens a movie file or a sound file that you want to preview."
+msgstr "Mở một tập tin phim hay âm thanh mà bạn muốn xem thử."
-#: 02200200.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02200200.xhp\n"
-"hd_id3085157\n"
-"1\n"
+"mediaplayer.xhp\n"
+"par_idN10581\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200200.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/02200200.xhp\" name=\"Mở\">Mở</link>"
+msgid "Apply"
+msgstr "Áp dụng"
-#: 02200200.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02200200.xhp\n"
-"par_id3151097\n"
-"2\n"
+"mediaplayer.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "Opens the selected OLE object with the program that the object was created in."
-msgstr "Mở đối tượng OLE đã chọn, dùng chương trình đầu tiên tạo đối tượng đó."
+msgid "Inserts the current movie file or sound file as a media object into the current document."
+msgstr "Chèn vào tài liệu hiện tại tập tin phim hay âm thanh hiện thời dưới dạng đối tượng phương tiện."
-#: 02200200.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02200200.xhp\n"
-"par_id3154230\n"
-"3\n"
+"mediaplayer.xhp\n"
+"par_idN10588\n"
"help.text"
-msgid "This menu command is inserted into <emph>Edit – Objects</emph> submenu by the application that created the linked object. Depending on the application, the “Open” command for the OLE object might have a different name."
-msgstr "Lệnh trình đơn này được chèn vào trình đơn phụ <emph>Sửa > Đối tượng</emph> bởi ứng dụng đã tạo đối tượng đã liên kết. Phụ thuộc vào ứng dụng, nhãn « Mở » trên lệnh đối tượng OLE này có thể trở thành nhãn khác."
+msgid "Play"
+msgstr "Phát"
-#: 02200200.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02200200.xhp\n"
-"par_id3149760\n"
-"4\n"
+"mediaplayer.xhp\n"
+"par_idN1058C\n"
"help.text"
-msgid "After you have completed your changes, close the source file for the OLE object. The OLE object is then updated in the container document."
-msgstr "Thay đổi xong thì bạn đóng tập tin nguồn cho đối tượng OLE. Vì thế đối tượng OLE được cập nhật trong tài liệu chứa."
+msgid "Plays the current file."
+msgstr "Phát tập tin hiện tại."
-#: 06010000.xhp
+#: mediaplayer.xhp
msgctxt ""
-"06010000.xhp\n"
+"mediaplayer.xhp\n"
+"par_idN1058F\n"
+"help.text"
+msgid "Pause"
+msgstr "Tạm dừng"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN10593\n"
+"help.text"
+msgid "Pauses or resumes the playback of the current file."
+msgstr "Tạm dừng hay tiếp tục lại tiến trình phát lại tập tin hiện tại."
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN10596\n"
+"help.text"
+msgid "Stop"
+msgstr "Dừng"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN1059A\n"
+"help.text"
+msgid "Stops the playback of the current file."
+msgstr "Dừng tiến trình phát lại tập tin hiện tại."
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN1059D\n"
+"help.text"
+msgid "Repeat"
+msgstr "Lặp lại"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105A1\n"
+"help.text"
+msgid "Plays the file repeatedly."
+msgstr "Phát tập tin lặp đi lặp lại."
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105A4\n"
+"help.text"
+msgid "Mute"
+msgstr "Câm"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105A8\n"
+"help.text"
+msgid "Turns sound off and on."
+msgstr "Bật/tắt âm thanh."
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105AB\n"
+"help.text"
+msgid "Volume slider"
+msgstr "Con trượt âm lượng"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105AF\n"
+"help.text"
+msgid "Adjusts the volume."
+msgstr "Điều chỉnh âm lượng."
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "View"
+msgstr "Xem"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105B6\n"
+"help.text"
+msgid "Adjusts the size of the movie playback."
+msgstr "Điều chỉnh kích cỡ của sự phát lại phim."
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105B9\n"
+"help.text"
+msgid "Position slider"
+msgstr "Con trượt vị trí"
+
+#: mediaplayer.xhp
+msgctxt ""
+"mediaplayer.xhp\n"
+"par_idN105BD\n"
+"help.text"
+msgid "Moves to a different position in the file."
+msgstr "Nhảy tới vị trí khác trong cùng tập tin."
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
"tit\n"
"help.text"
-msgid "Spelling and Grammar"
-msgstr "Chỉnh tả và Ngữ pháp"
+msgid "Movie and Sound"
+msgstr "Phim và Âm thanh"
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"bm_id3149047\n"
+"moviesound.xhp\n"
+"bm_id1907712\n"
"help.text"
-msgid "<bookmark_value>dictionaries; spellcheck</bookmark_value> <bookmark_value>spellcheck; dialog</bookmark_value> <bookmark_value>languages; spellcheck</bookmark_value>"
-msgstr "<bookmark_value>từ điển; kiểm tra chính tả</bookmark_value><bookmark_value>kiểm tra chính tả; hộp thoại</bookmark_value><bookmark_value>ngôn ngữ; kiểm tra chính tả</bookmark_value>"
+msgid "<bookmark_value>inserting;movies/sounds</bookmark_value> <bookmark_value>sound files</bookmark_value> <bookmark_value>playing movies and sound files</bookmark_value> <bookmark_value>videos</bookmark_value> <bookmark_value>movies</bookmark_value> <bookmark_value>audio</bookmark_value> <bookmark_value>music</bookmark_value>"
+msgstr "<bookmark_value>chèn;phim/sounds</bookmark_value> <bookmark_value>tập tin âm thanh</bookmark_value> <bookmark_value>phát những tập tin phim và âm thanh</bookmark_value> <bookmark_value>videos</bookmark_value> <bookmark_value>movies</bookmark_value> <bookmark_value>audio</bookmark_value> <bookmark_value>music</bookmark_value>"
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3153882\n"
-"1\n"
+"moviesound.xhp\n"
+"par_idN1065C\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spelling and Grammar</link>"
-msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Kiểm tra chính tả\">Chính tả và Ngữ Pháp</link>"
+msgid "<variable id=\"moviesoundtitle\"><link href=\"text/shared/01/moviesound.xhp\">Movie and Sound</link></variable>"
+msgstr "<variable id=\"moviesoundtitle\"><link href=\"text/shared/01/moviesound.xhp\">Phim và Âm thanh</link></variable>"
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3154682\n"
-"2\n"
+"moviesound.xhp\n"
+"par_idN1066C\n"
"help.text"
-msgid "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors.</ahelp></variable>"
-msgstr "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Kiểm tra các lỗi chính tả trong tài liệu hoặc phần đang được lựa chọn. Nếu có cài phần mở rộng hỗ trợ kiểm tra ngữ pháp thì hộp thoại cũng sẽ cho phép kiểm tra lỗi ngữ pháp.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Inserts a video or sound file into your document.</ahelp>"
+msgstr "<ahelp hid=\".\">Chèn vào tài liệu của bạn một tập tin kiểu ảnh động hay âm thanh.</ahelp>"
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_idN1064B\n"
+"moviesound.xhp\n"
+"par_idN10683\n"
"help.text"
-msgid "The spellcheck starts at the current cursor position and advances to the end of the document or selection. You can then choose to continue the spellcheck from the beginning of the document."
-msgstr "Chức năng kiểm tra chính tả bắt đầu ở vị trí con trỏ hiện tại, sau đó tiếp tới kết thúc của tài liệu hay vùng chọn. Lúc đó, bạn có dịp tiếp tục tiến trình kiểm tra chính tả từ đầu của tài liệu."
+msgid "To insert a movie or sound file into your document"
+msgstr "Chèn vào tài liệu của bạn một tập tin kiểu ảnh động hay âm thanh"
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3166445\n"
-"3\n"
+"moviesound.xhp\n"
+"par_idN1068A\n"
"help.text"
-msgid "Spellcheck looks for misspelled words and gives you the option of adding an unknown word to a user dictionary. When the first misspelled word is found, the <emph>Spellcheck</emph> dialog opens."
-msgstr "Chức năng kiểm tra chính tả tìm từ sai chính tả, và cho bạn có dịp thêm từ mới vào từ điển. Khi tìm được từ sai chính tả thứ nhất, hộp thoại <emph>Kiểm tra chính tả</emph> tự mở."
+msgid "Click where you want to insert the file."
+msgstr "Nhấn vào vị trí ở đó bạn muốn chèn tập tin."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id1022200801300654\n"
+"moviesound.xhp\n"
+"par_idN1068E\n"
"help.text"
-msgid "If a grammar checking extension is installed, this dialog is called <emph>Spelling and Grammar</emph>. Spelling errors are underlined in red, grammar errors in blue. First the dialog presents all spelling errors, then all grammar errors."
-msgstr "Nếu như có phần mở rộng kiểm tra ngữ pháp, hộp thoại này sẽ có tên <emph>Chính tả và Ngữ pháp</emph>. Những lỗi sai chính tả sẽ được gạch chân màu đỏ, sai ngữ pháp sẽ có màu xanh. Trước hết hộp thoại sẽ hiển thị những lỗi sai chính tả, rồi sau đó là lỗi ngữ pháp."
+msgid "Choose <emph>Insert - Movie and Sound</emph>."
+msgstr "Chọn lệnh <emph>Chèn > Phim và Âm thanh</emph>."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id1022200801354366\n"
+"moviesound.xhp\n"
+"par_idN10696\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable <emph>Check grammar</emph> to work first on all spellcheck errors, then on all grammar errors.</ahelp>"
-msgstr "<ahelp hid=\".\">Chọn <emph>Kiểm tra ngữ pháp</emph> để sửa hết các lỗi chính tả, rồi sau đó là các lỗi ngữ pháp.</ahelp>"
+msgid "In the File Open dialog, select the file that you want to insert."
+msgstr "Trong hộp thoại <emph>Mở tập tin</emph>, chọn tập tin bạn muốn chèn."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3149511\n"
-"6\n"
+"moviesound.xhp\n"
+"par_idN10699\n"
"help.text"
-msgid "Not in dictionary"
-msgstr "Không phải trong từ điển"
+msgid "The file types that are listed in this dialog are not supported by all operating systems."
+msgstr "Không phải tất cả các hệ điều hành hỗ trợ mọi kiểu tập tin được liệt kê trong hộp thoại này."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3149798\n"
-"7\n"
+"moviesound.xhp\n"
+"par_idN10700\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị câu chứa từ sai chính tả được tô sáng. Hãy sửa từ, hoặc nhấn vào một của những từ góp ý trong hộp văn bản bên dưới.</ahelp>"
+msgid "Click the <emph>Link</emph> box if you want a link to the original file. If it is not checked, the media file will be embedded (not supported with all file formats)."
+msgstr ""
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3149885\n"
-"10\n"
+"moviesound.xhp\n"
+"par_idN106D7\n"
"help.text"
-msgid "Suggestions"
-msgstr "Góp ý"
+msgid "Click <emph>Open</emph>."
+msgstr "Nhấn vào nút <emph>Mở</emph>."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3155628\n"
-"11\n"
+"moviesound.xhp\n"
+"par_id0120200912190948\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_NEWWORD\">Lists suggested words to replace the misspelled word. Select the word that you want to use, and then click <emph>Change</emph> or <emph>Change All</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_NEWWORD\">Liệt kê các từ đã gợi ý để thay thế từ sai chính tả. Chọn từ thích hợp, sau đó nhấn vào nút <emph>Đổi</emph> hay <emph>Đổi tất cả</emph>.</ahelp>"
+msgid "Alternatively, you can choose <item type=\"menuitem\">Tools - Media Player</item> to open the Media Player. Use the Media Player to preview all supported media files. Click the Apply button in the Media Player window to insert the current media file into your document."
+msgstr "Hoặc bạn có thể chọn<item type=\"menuitem\">Công cụ - Bộ phát phương tiện</item>để mở Bộ phát phương tiện. Sử dụng Bộ phát phương tiện để xem trước tất cả những tập tin ảnh/phim được hỗ trợ. Nhắp vào phím Áp dụng ở cửa sổ Bộ phát phương tiện để chèn tập tin ảnh/phim hiện thời vào tài liệu của bạn."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3145087\n"
-"12\n"
+"moviesound.xhp\n"
+"par_idN1069C\n"
"help.text"
-msgid "Text Language"
-msgstr "Ngôn ngữ của văn bản"
+msgid "To play a movie or sound file"
+msgstr "Để phát một tập tin phim hoặc âm thanh"
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3144422\n"
-"13\n"
+"moviesound.xhp\n"
+"par_idN106A7\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_LANGUAGE\">Specifies the language to use to check the spelling.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_LANGUAGE\">Ghi rõ ngôn ngữ cần dùng để kiểm tra chính tả.</ahelp>"
+msgid "Click the object icon for the movie or sound file in your document."
+msgstr "Nhắp vào biểu tượng đối tượng cho tập tin phim hay âm thanh trong tài liệu của bạn."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3154071\n"
-"52\n"
+"moviesound.xhp\n"
+"par_id0120200912190940\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoCorrect</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tự động Sửa lỗi </caseinline></switchinline>"
+msgid "If the icon is arranged on the background, hold down Ctrl while you click."
+msgstr "Nếu biểu tượng được đặt trên nền, giữ phím Ctrl khi bạn nhắp chuột."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3153798\n"
-"53\n"
+"moviesound.xhp\n"
+"par_id0120200912062096\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_AUTOCORR\">Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacements table.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_AUTOCORR\">Thêm vào bảng thay thế Tự động Sửa lỗi tổ hợp hiện thời của từ sai chính tả và từ thay thế.</ahelp></caseinline></switchinline>"
+msgid "The Media Playback toolbar is shown."
+msgstr "Hiện thanh công cụ phát lại phương tiện."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3151382\n"
-"56\n"
+"moviesound.xhp\n"
+"par_idN10788\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "Click <emph>Play</emph> on the <emph>Media Playback</emph> toolbar."
+msgstr "Nhấn vào nút <emph>Phát</emph> trên thanh công cụ <emph>Phát lại phim/nhạc</emph>."
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3154123\n"
-"57\n"
+"moviesound.xhp\n"
+"par_id0120200912062064\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_OPTIONS\">Opens a dialog, where you can select the user-defined dictionaries, and set the rules for the spellchecking.</ahelp>"
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_OPTIONS\">Mở hộp thoại trong đó bạn có thể chọn những từ điển tự xác định, và đặt các quy tắc kiểm tra chính tả.</ahelp>"
+msgid "When you show an Impress presentation, the embedded sound or video on the current slide plays automatically until it's over or until you leave the slide."
+msgstr "Khi bạn chiếu một trình diễn Impress, Những âm thanh hay phim nhúng trong tờ chiếu hiện hành sẽ được phát tự động cho đến khi tờ chiếu trình diễn hết hoặc khi bạn ra khỏi tờ chiếu"
-#: 06010000.xhp
+#: moviesound.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3153353\n"
-"24\n"
+"moviesound.xhp\n"
+"par_idN106D0\n"
"help.text"
-msgid "Add"
-msgstr "Thêm"
+msgid "You can also use the Media Playback Bar to pause, to stop, to loop, as well as to adjust the volume or to mute the playback of the file. The current playback position in the file is indicated on the left slider. Use the right slider to adjust the playback volume. For movie files, the bar also contains a list box where you can select the zoom factor for the playback."
+msgstr "Bạn cũng có thể sử dụng thanh <emph>Phát lại phim/nhạc</emph> để tạm dừng, dừng hay lặp lặp tiến trình phát, cũng như để điều chỉnh mức âm lượng hay câm âm thanh khi phát lại. Vị trí phát lại hiện thời trong tập tin được ngụ ý bởi con trượt bên trái. Hãy dùng con trượt bên phải để điều chỉnh mức âm lượng phát lại. Đối với tập tin phim, thanh cũng chứa một hộp liệt kê trong đó bạn có thể chọn hệ số thu/phóng cho hình phát lại."
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3144432\n"
-"25\n"
+"online_update.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_ADD\">Adds the unknown word to a user-defined dictionary.</ahelp>"
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_ADD\">Thêm từ mới vào từ điển tự xác định.</ahelp>"
+msgid "Check for Updates"
+msgstr "Kiểm tra có cập nhật"
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3155994\n"
-"22\n"
+"online_update.xhp\n"
+"bm_id7647328\n"
"help.text"
-msgid "Ignore Once"
-msgstr "Bỏ qua một lần"
+msgid "<bookmark_value>updates;checking manually</bookmark_value> <bookmark_value>online updates;checking manually</bookmark_value>"
+msgstr "<bookmark_value>bản cập nhật;kiểm tra bằng tay</bookmark_value><bookmark_value>bản cập nhật trực tuyến;kiểm tra bằng tay</bookmark_value>"
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3148920\n"
-"23\n"
+"online_update.xhp\n"
+"hd_id315256\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNORE\">Skips the unknown word and continues with the spellcheck.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNORE\">Bỏ qua từ lạ này và tiếp tục kiểm tra chính tả.</ahelp>"
+msgid "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Check for Updates</link></variable>"
+msgstr "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Kiểm tra có bản cập nhật</link></variable>"
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_idN107CB\n"
+"online_update.xhp\n"
+"par_id3174230\n"
"help.text"
-msgid "This label of this button changes to <emph>Resume</emph> if you leave the Spellcheck dialog open when you return to your document. To continue the spellcheck from the current position of the cursor, click <emph>Resume</emph>."
-msgstr "Nếu hộp thoại kiểm tra chính tả còn mở khi bạn trở về tài liệu, nhãn nút này thì trờ thành <emph>Tiếp tục</emph>. Để tiếp tục tiến trình kiểm tra chính tả từ vị trí con trỏ hiện tại, nhấn vào <emph>Tiếp tục</emph>."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark to enable the automatic check for updates. Choose %PRODUCTNAME - Online Update in the Options dialog box to disable or enable this feature.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật tùy chọn này để hiệu lực chức năng tự động kiểm tra có bản cập nhật. Chọn mục trình đơn <emph>Công cụ > Tùy chọn > %PRODUCTNAME > Cập nhật Trực tuyến</emph> để bật/tắt tính năng này.</ahelp>"
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id1024200804091149\n"
+"online_update.xhp\n"
+"par_id0116200901063996\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Khi đang tìm lỗi ngữ pháp, nhấn vào nút Bỏ qua điều luật để bỏ qua luật chính tả mà đang được coi là bị vi phạm.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select a folder to download the files.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nhắp để chọn một danh mục để tải tập tin.</ahelp>"
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3150740\n"
-"20\n"
+"online_update.xhp\n"
+"par_id6797082\n"
"help.text"
-msgid "Ignore All"
-msgstr "Bỏ qua tất cả"
+msgid "<ahelp hid=\".\">You can check for updates manually or automatically.</ahelp>"
+msgstr "<ahelp hid=\".\">Bạn có tùy chọn kiểm tra có bản cập nhật chưa một cách tự động hay thủ công.</ahelp>"
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3145318\n"
-"21\n"
+"online_update.xhp\n"
+"par_id4218878\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNOREALL\">Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck.</ahelp>"
+msgid "Checking for updates will also look for updates of all installed extensions."
+msgstr "Kiểm tra có bản cập nhật chưa thì cũng kiểm tra có bản cập nhật của bất cứ phần mở rộng nào được cài đặt."
+
+#: online_update.xhp
+msgctxt ""
+"online_update.xhp\n"
+"par_id8132267\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Help - Check for Updates</item> to check manually."
+msgstr "Chọn lệnh <item type=\"menuitem\">Trợ giúp > Kiểm tra có bản cập nhật</item> để kiểm tra bằng tay."
+
+#: online_update.xhp
+msgctxt ""
+"online_update.xhp\n"
+"par_id702230\n"
+"help.text"
+msgid "You can disable or enable the automatic check in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">Online Update</link>."
msgstr ""
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3153056\n"
-"18\n"
+"online_update.xhp\n"
+"par_id3422345\n"
"help.text"
-msgid "Change"
-msgstr "Đổi"
+msgid "If an update is available, an icon<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Icon</alt></image> on the menu bar will notify you of the update. Click the icon to open a dialog with more information."
+msgstr "Có sẵn bản cập nhật thì một biểu tượng <image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4598inch\" height=\"0.1402inch\"><alt id=\"alt_id3155415\">Biểu tượng</alt></image> trên thanh trình đơn sẽ thông báo bạn biết về nó. Nhấn vào biểu tượng này để mở hộp thoại với nhiều thông tin hơn."
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3148559\n"
-"19\n"
+"online_update.xhp\n"
+"par_id9313638\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGE\">Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGE\">Thay thế từ lạ bằng sự góp ý hiện thời. Bạn sửa đổi nhiều hơn chỉ từ sai chính tả thì thay thế toàn câu.</ahelp>"
+msgid "You will see the <link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link> dialog with some information about the online update of %PRODUCTNAME."
+msgstr "Bạn sẽ thấy hộp thoại <link href=\"text/shared/01/online_update_dialog.xhp\">Kiểm tra có bản cập nhật</link> chứa vài thông tin về tiến trình cập nhật trực tuyến %PRODUCTNAME."
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3145787\n"
-"16\n"
+"online_update.xhp\n"
+"par_id9951780\n"
"help.text"
-msgid "Change All"
-msgstr "Đổi tất cả"
+msgid "Enable an Internet connection for %PRODUCTNAME."
+msgstr "Hiệu lực kết nối Internet cho %PRODUCTNAME."
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3144446\n"
-"17\n"
+"online_update.xhp\n"
+"par_id6479384\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGEALL\">Replaces all occurrences of the unknown word with the current suggestion.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGEALL\">Thay thế mọi lần gặp từ lạ này bằng sự góp ý hiện thời.</ahelp>"
+msgid "If you need a proxy server, enter the proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy."
+msgstr ""
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_idN10850\n"
+"online_update.xhp\n"
+"par_id3639027\n"
"help.text"
-msgid "Undo"
-msgstr "Hủy bước"
+msgid "Choose <item type=\"menuitem\">Check for Updates</item> to check for the availability of a newer version of your office suite."
+msgstr "Chọn lệnh <item type=\"menuitem\">Kiểm tra có bản cập nhật</item> để kiểm tra có sẵn phiên bản mới của bộ ứng dụng văn phòng."
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_idN10854\n"
+"online_update.xhp\n"
+"par_id3722342\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to undo the last change in the current sentence. Click again to undo the previous change in the same sentence.</ahelp>"
+msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:"
+msgstr "Nếu một phiên bản mới sẵn sàng, và %PRODUCTNAME không phải được thiết lập để tự động tải về, bạn có thể chọn bật cứ hành động nào theo đây:"
+
+#: online_update.xhp
+msgctxt ""
+"online_update.xhp\n"
+"par_id5106662\n"
+"help.text"
+msgid "Download the new version."
+msgstr "Tải về phiên bản mới."
+
+#: online_update.xhp
+msgctxt ""
+"online_update.xhp\n"
+"par_id4931485\n"
+"help.text"
+msgid "Install the downloaded files."
+msgstr "Cài đặt các tập tin đã tải về."
+
+#: online_update.xhp
+msgctxt ""
+"online_update.xhp\n"
+"par_id9168980\n"
+"help.text"
+msgid "Abort this check for updates for now."
+msgstr "Hủy bỏ tiến trình kiểm tra đang chạy."
+
+#: online_update.xhp
+msgctxt ""
+"online_update.xhp\n"
+"par_id9766533\n"
+"help.text"
+msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog."
+msgstr "Nếu %PRODUCTNAME được cấu hình để tự động tải về các tập tin, tiến trình tải về sẽ tự động khởi chạy. Tiến trình tải về vẫn còn tiếp tục, ngay cả khi bạn thu nhỏ hộp thoại."
+
+#: online_update.xhp
+msgctxt ""
+"online_update.xhp\n"
+"par_id927152\n"
+"help.text"
+msgid "If automatic downloads are disabled, start the download manually."
msgstr ""
-#: 06010000.xhp
+#: online_update.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3147426\n"
+"online_update.xhp\n"
+"par_id6081728\n"
"help.text"
-msgid "<link href=\"text/shared/01/06020000.xhp\" name=\"Thesaurus\">Thesaurus</link>"
-msgstr "<link href=\"text/shared/01/06020000.xhp\" name=\"Từ điển gần nghĩa\">Từ điển gần nghĩa</link>"
+msgid "If no update was found, you can close the dialog."
+msgstr "Không tìm thấy bản cập nhật thì bạn có thể đóng hộp thoại."
-#: 02030000.xhp
+#: online_update.xhp
msgctxt ""
-"02030000.xhp\n"
+"online_update.xhp\n"
+"par_id9219641\n"
+"help.text"
+msgid "You need Administrator rights to update %PRODUCTNAME."
+msgstr "Bạn cần có quyền truy cập của quản trị để cập nhật %PRODUCTNAME."
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Repeat"
-msgstr "Lặp lại"
+msgid "Check for Updates"
+msgstr "Kiểm tra có cập nhật"
-#: 02030000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"02030000.xhp\n"
-"bm_id3150279\n"
+"online_update_dialog.xhp\n"
+"hd_id4959257\n"
"help.text"
-msgid "<bookmark_value>repeating; commands</bookmark_value><bookmark_value>commands; repeating</bookmark_value>"
-msgstr "<bookmark_value>lặp lại; lệnh</bookmark_value><bookmark_value>lệnh; lặp lại</bookmark_value>"
+msgid "<link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link>"
+msgstr "<link href=\"text/shared/01/online_update_dialog.xhp\">Kiểm tra có cập nhật</link>"
-#: 02030000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"02030000.xhp\n"
-"hd_id3150279\n"
-"1\n"
+"online_update_dialog.xhp\n"
+"par_id1906491\n"
"help.text"
-msgid "<link href=\"text/shared/01/02030000.xhp\" name=\"Repeat\">Repeat</link>"
-msgstr "<link href=\"text/shared/01/02030000.xhp\" name=\"Lặp lại\">Lặp lại</link>"
+msgid "<ahelp hid=\".\">Checks for available updates to your version of %PRODUCTNAME. If a newer version is available, you can choose to download the update. After downloading, if you have write permissions for the installation directory, you can install the update.</ahelp>"
+msgstr "<ahelp hid=\".\">Kiểm tra có bản cập nhật chưa cho phiên bản %PRODUCTNAME của bạn. Có thì bạn có thể tải về. Một khi tải về, nếu bạn có quyền ghi vào thư mục cài đặt, bạn có thể cài đặt bản cập nhật.</ahelp>"
-#: 02030000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"02030000.xhp\n"
-"par_id3155934\n"
-"2\n"
+"online_update_dialog.xhp\n"
+"par_id4799340\n"
"help.text"
-msgid "<ahelp hid=\".uno:Repeat\">Repeats the last command. This command is available in Writer and Calc.</ahelp>"
-msgstr "<ahelp hid=\".uno:Repeat\">Lặp lại câu lệnh mới làm. Chức năng này sẵn sàng trong cả hai mô-đun Writer và Calc.</ahelp>"
+msgid "Once the download starts, you see a progress bar and three buttons on the dialog. You can pause and resume the download by clicking the Pause and Resume buttons. Click Cancel to abort the download and delete the partly downloaded file."
+msgstr "Một khi tiến trình tải về khởi chạy, bạn thấy một thanh tiến hành và ba cái nút trên hộp thoại. Bạn có thể tạm dừng và tiếp tục lại tiến trình tải về bằng cách nhấn vào nút <emph>Tạm dừng</emph> và <emph>Tiếp tục</emph>. Nhấn vào nút <emph>Thôi</emph> để hủy bỏ tiến trình tải về và xoá tập tin nửa tải về."
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id1502121\n"
+"help.text"
+msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Online Update."
+msgstr ""
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id8266853\n"
+"help.text"
+msgid "After the download is complete, you can click Install to start the installation of the update. You see a confirmation dialog, where you can choose to close %PRODUCTNAME."
+msgstr "Sau khi tải về xong, bạn có thể nhấn vào nút <emph>Cài đặt</emph> để khởi chạy tiến trình cài đặt bản cập nhật. Bạn sẽ thấy hộp thoại xác nhận cho phép bạn cũng đóng %PRODUCTNAME."
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id2871181\n"
+"help.text"
+msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script."
+msgstr "Dưới một số hệ điều hành nào đó, có lẽ bạn cần phải tự đi tới thư mục tải về, giải nén tập tin đã tải về, và khởi chạy văn lệnh thiết lập."
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id2733542\n"
+"help.text"
+msgid "After installation of the update you can delete the download file to save space."
+msgstr "Một khi cài đặt bản cập nhật, bạn cũng có thể xoá tập tin đã tải về để tiết kiệm sức chứa trên đĩa."
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id4238715\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Downloads and saves the update files to the desktop or a folder of your choice. Select the folder in %PRODUCTNAME - Online Update in the Options dialog box.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tải về và lưu các tập tin cập nhật vào màn hình nền hay vào thư mục bạn chọn. Chọn thư mục này dưới mục trình đơn <emph>Công cụ > Tùy chọn > %PRODUCTNAME > Cập nhật Trực tuyến</emph>.</ahelp>"
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id8277230\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Installs the downloaded update.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cài đặt bản cập nhật đã tải về.</ahelp>"
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id4086428\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Pauses the download. Later click Resume to continue downloading.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tạm dừng tiến trình tải về. Lúc sau thì nhấn vào nút <emph>Tiếp tục</emph> để tiếp tục lại tiến trình tải về.</ahelp>"
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id9024628\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Continues a paused download.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tiếp tục lại tiến trình tải về bị tạm dừng.</ahelp>"
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id3067110\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aborts the download and deletes the partly downloaded file.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hủy bỏ tiến trình tải về và xoá tập tin nửa tải về.</ahelp>"
+
+#: online_update_dialog.xhp
+msgctxt ""
+"online_update_dialog.xhp\n"
+"par_id8841822\n"
+"help.text"
+msgid "<link href=\"text/shared/01/online_update.xhp\">Starting online updates</link>"
+msgstr "<link href=\"text/shared/01/online_update.xhp\">Khởi chạy tiến trình cập nhật trực tuyến</link>"
#: packagemanager.xhp
msgctxt ""
@@ -44658,7 +43070,6 @@ msgid "Choose <item type=\"menuitem\">Tools - Extension Manager</item> and click
msgstr "Chọn mục trình đơn: <item type=\"menuitem\">Công cụ > Bộ Quản lý Phần mở rộng</item> và nhấn vào nút <item type=\"menuitem\">Thêm</item>."
#: packagemanager.xhp
-#, fuzzy
msgctxt ""
"packagemanager.xhp\n"
"hd_id3734550\n"
@@ -44675,7 +43086,6 @@ msgid "As an administrator, open a terminal or command shell."
msgstr "Với quyền quản trị, mở một thiết bị cuối hay trình bao lệnh."
#: packagemanager.xhp
-#, fuzzy
msgctxt ""
"packagemanager.xhp\n"
"par_id671712\n"
@@ -44835,2130 +43245,2905 @@ msgctxt ""
msgid "Some additional commands can appear in the context menu of an extension in the Extension Manager window, depending on the selected extension. You can choose to show the license text again. You can choose to exclude the extension from checking for updates or to include an excluded extension."
msgstr ""
-#: 01010201.xhp
+#: password_dlg.xhp
msgctxt ""
-"01010201.xhp\n"
+"password_dlg.xhp\n"
"tit\n"
"help.text"
-msgid "Labels"
-msgstr "Nhãn"
+msgid "Password"
+msgstr "Mật khẩu"
-#: 01010201.xhp
+#: password_dlg.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3149987\n"
+"password_dlg.xhp\n"
+"hd_id3146902\n"
+"63\n"
+"help.text"
+msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password</link>"
+msgstr "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Mật khẩu\">Mật khẩu</link>"
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"par_id3154350\n"
+"64\n"
+"help.text"
+msgid "Assigns a password to prevent users from making unauthorized changes."
+msgstr "Gán một mật khẩu để ngăn cản người khác làm thay đổi không được phép."
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"par_id31222\n"
+"help.text"
+msgid "The open password must be entered to open the file."
+msgstr ""
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"par_id313339\n"
+"help.text"
+msgid "The permission password must be entered to edit the document."
+msgstr ""
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"hd_id3146857\n"
+"65\n"
+"help.text"
+msgid "Password"
+msgstr "Mật khẩu"
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"par_id3150502\n"
+"62\n"
+"help.text"
+msgid "<ahelp hid=\"HID_PASSWD_TABLE\">Type a password. A password is case sensitive.</ahelp>"
+msgstr "<ahelp hid=\"HID_PASSWD_TABLE\">Nhập một mật khẩu.Mật khẩu phân biệt chữ hoa/thường.</ahelp>"
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"hd_id3153029\n"
+"66\n"
+"help.text"
+msgid "Confirm"
+msgstr "Xác nhận"
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"par_id3151100\n"
+"67\n"
+"help.text"
+msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
+msgstr ""
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"hd_id3155351\n"
+"68\n"
+"help.text"
+msgid "Undoing password protection"
+msgstr "Hủy bước bảo vệ bằng mật khẩu"
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"par_id3146109\n"
+"69\n"
+"help.text"
+msgid "To remove a password, open the document, then save without password."
+msgstr ""
+
+#: password_dlg.xhp
+msgctxt ""
+"password_dlg.xhp\n"
+"par_id31323250502\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to show or hide the file sharing password options.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bật tùy chọn này để hiển thị hoặc ẩn phần Chân Nhóm.</ahelp>"
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enter Master Password"
+msgstr "Gõ mật khẩu chủ"
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"hd_id3154183\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">Labels</link>"
-msgstr "<link href=\"text/shared/01/01010201.xhp\" name=\"Nhãn\">Nhãn</link>"
+msgid "<variable id=\"password_maintitle\"><link href=\"text/shared/01/password_main.xhp\" name=\"Enter Master Password\">Enter Master Password</link></variable>"
+msgstr "<variable id=\"password_maintitle\"><link href=\"text/shared/01/password_main.xhp\" name=\"Gõ mật khẩu chủ\">Gõ mật khẩu chủ</link></variable>"
-#: 01010201.xhp
+#: password_main.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3152952\n"
+"password_main.xhp\n"
+"par_id3154841\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_LAB_LAB\">Specify the label text and choose the paper size for the label.</ahelp>"
-msgstr "<ahelp hid=\"HID_LAB_LAB\">Hãy ghi rõ chuỗi cần hiển thị trên nhãn, và chọn kích cỡ tờ giấy sẽ chứa các nhãn.</ahelp>"
+msgid "<ahelp hid=\"\">Assign a master password to protect the access to a saved password.</ahelp>"
+msgstr "<ahelp hid=\"\">Gán một mật khẩu chủ để bảo vệ khả năng truy cập đến mật khẩu đã lưu.</ahelp>"
-#: 01010201.xhp
+#: password_main.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3158397\n"
+"password_main.xhp\n"
+"par_id3146857\n"
"3\n"
"help.text"
-msgid "Inscription"
-msgstr "Câu viết"
+msgid "You can save some passwords for the duration of a session, or permanently to a file protected by a master password."
+msgstr "Bạn có thể lưu một số mật khẩu nào đó trong phiên đang chạy, hoặc lưu hẳn vào tập tin được mật khẩu chủ bảo vệ."
-#: 01010201.xhp
+#: password_main.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3154350\n"
+"password_main.xhp\n"
+"par_id3147000\n"
+"6\n"
+"help.text"
+msgid "You must enter the master password to access a file or service that is protected by a saved password. You only need to enter the master password once during a session."
+msgstr "Bạn phải nhập mật khẩu chủ để truy cập đến một tập tin hay dịch vụ được bảo vệ bằng mật khẩu đã lưu. Chỉ cần nhập mật khẩu chủ một lần trong mỗi phiên chạy."
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"par_id0608200910545958\n"
+"help.text"
+msgid "You should only use passwords that are hard to find by other persons or programs. A password should follow these rules:"
+msgstr "Bạn nên sử dụng những mật khẩu mà người khác hoặc chương trình khác khó tìm thấy. Một mật khẩu phải tuân thủ những qui tắc sau:"
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"par_id0608200910545989\n"
+"help.text"
+msgid "Length of eight or more characters."
+msgstr "Có độ dài từ 8 ký tự trở lên."
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"par_id0608200910545951\n"
+"help.text"
+msgid "Contains a mix of lower case and upper case letters, numbers, and special characters."
+msgstr "Chứa cả chữ thường, chữ hoa, số và những ký tự đặc biệt."
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"par_id0608200910545923\n"
+"help.text"
+msgid "Cannot be found in any wordbook or encyclopedia."
+msgstr "Không tìm thấy sách có chứa từ hay sách bách khoa nào"
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"par_id0608200910550049\n"
+"help.text"
+msgid "Has no direct relation to your personal data, e.g., date of birth or car plate."
+msgstr "Không liên hệ trực tiếp đến thông tin cá nhân của bạn như ngày sinh hoặc biển số xe."
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"hd_id3147588\n"
+"7\n"
+"help.text"
+msgid "Master password"
+msgstr "Mật khẩu chủ"
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"par_id3148731\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD\">Type a master password to prevent unauthorized users from accessing stored passwords.</ahelp>"
+msgstr "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD\">Gõ một mật khẩu chủ để ngăn cản người lạ truy cập đến các mật khẩu đã lưu.</ahelp>"
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"hd_id3144436\n"
+"9\n"
+"help.text"
+msgid "Confirm master password"
+msgstr "Xác nhận mật khẩu chủ"
+
+#: password_main.xhp
+msgctxt ""
+"password_main.xhp\n"
+"par_id3145129\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT\">Re-enter the master password.</ahelp>"
+msgstr "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT\">Nhập lại mật khẩu chủ.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export as PDF"
+msgstr "Xuất dạng PDF"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"bm_id3149532\n"
+"help.text"
+msgid "<bookmark_value>PDF;export</bookmark_value> <bookmark_value>portable document format</bookmark_value> <bookmark_value>exporting;to PDF</bookmark_value>"
+msgstr "<bookmark_value>PDF;xuất khẩu</bookmark_value><bookmark_value>định dạng tài liệu di động</bookmark_value><bookmark_value>xuất;dạng PDF</bookmark_value>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3149532\n"
+"52\n"
+"help.text"
+msgid "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Export as PDF</link></variable></variable>"
+msgstr "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Xuất dạng PDF\">Xuất dạng PDF</link></variable></variable>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id3154044\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"export\"><ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Saves the current file to Portable Document Format (PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform with the original formatting intact, provided that supporting software is installed.</variable>"
+msgstr "<variable id=\"export\"><ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Lưu tập tin hiện tại theo định dạng tài liệu di động (PDF) phiên bản 1.4.</ahelp> Tập tin PDF có thể được xem và in ra trên bất cứ nền tảng nào, bảo tồn toàn bộ định dạng gốc (gồm các ảnh), miễn là có phần mềm hỗ trợ (có nhiều chương trình đọc PDF miễn phí).</variable>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id746482\n"
+"help.text"
+msgid "General tab"
+msgstr ""
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3148520\n"
+"2\n"
+"help.text"
+msgid "Range"
+msgstr "Phạm vi"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id3154230\n"
+"3\n"
+"help.text"
+msgid "Sets the export options for the pages included in the PDF file."
+msgstr "Đặt các tùy chọn xuất cho các trang nằm trong tập tin PDF."
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3166445\n"
"4\n"
"help.text"
-msgid "Enter or insert the text that you want to appear on the label(s)."
-msgstr "Nhập hay chèn đoạn bạn muốn thấy trên mỗi nhãn."
+msgid "All"
+msgstr "Tất cả"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3147294\n"
+"ref_pdf_export.xhp\n"
+"par_id3149893\n"
"5\n"
"help.text"
-msgid "Label text"
-msgstr "Văn bản nhãn"
+msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_ALL\">Exports all defined print ranges. If no print range is defined, exports the entire document.</ahelp>"
+msgstr "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_ALL\">Xuất tất cả các phạm vi in đã xác định. Chưa xác định thì xuất tài liệu hoàn toàn.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3150838\n"
+"ref_pdf_export.xhp\n"
+"hd_id3154673\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SW_MULTILINEEDIT_TP_LAB_LAB_EDT_WRITING\">Enter the text that you want to appear on the label. You can also insert a database field.</ahelp>"
-msgstr "<ahelp hid=\"SW_MULTILINEEDIT_TP_LAB_LAB_EDT_WRITING\">Nhập đoạn bạn muốn thấy trên mỗi nhãn. Cũng có thể chèn địa điểm của một trường cơ sở dữ liệu.</ahelp>"
+msgid "Pages"
+msgstr "Trang"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3150603\n"
+"ref_pdf_export.xhp\n"
+"par_id3147571\n"
"7\n"
"help.text"
-msgid "Address"
-msgstr "Địa chỉ"
+msgid "<ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Exports the pages you type in the box.</ahelp>"
+msgstr "<ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Xuất chỉ những trang bạn ghi rõ trong hộp.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3153089\n"
+"ref_pdf_export.xhp\n"
+"par_id3145136\n"
+"53\n"
+"help.text"
+msgid "To export a range of pages, use the format 3-6. To export single pages, use the format 7;9;11. If you want, you can export a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
+msgstr "Để xuất một phạm vi trang, dùng định dạng « 3-6 ». Để xuất mỗi trang riêng, dùng định dạng « 7;9;11 ». Bạn cũng có thể xuất tổ hợp phạm vi trang và trang đơn, dùng định dạng như « 3-6;8;10;12 »."
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3147043\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SW_CHECKBOX_TP_LAB_LAB_BOX_ADDR\">Creates a label with your return address. Text that is currently in the <emph>Label text</emph> box is overwritten.</ahelp>"
-msgstr "<ahelp hid=\"SW_CHECKBOX_TP_LAB_LAB_BOX_ADDR\">Tạo một nhãn hiển thị địa chỉ trả về của bạn. Đoạn hiện thời nằm trong hộp <emph>Văn bản nhãn</emph> thì bị ghi đè.</ahelp>"
+msgid "Selection"
+msgstr "Lựa chọn"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3155555\n"
+"ref_pdf_export.xhp\n"
+"par_id3150774\n"
"9\n"
"help.text"
-msgid "To change your return address, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\">%PRODUCTNAME</link></emph>, and then click on the <emph>User Data</emph> tab."
-msgstr ""
+msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_SELECTION\">Exports the current selection.</ahelp>"
+msgstr "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_SELECTION\">Xuất vùng chọn hiện tại.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3147557\n"
-"10\n"
+"ref_pdf_export.xhp\n"
+"par_idN10706\n"
"help.text"
-msgid "Database"
-msgstr "Cơ sở dữ liệu"
+msgid "Images"
+msgstr "Ảnh"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3148620\n"
-"11\n"
+"ref_pdf_export.xhp\n"
+"par_idN1070A\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_DATABASE\">Select the database that you want to use as the data source for your label. </ahelp>"
-msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_DATABASE\">Chọn cơ sở dữ liệu bạn muốn dùng làm nguồn cho nhãn. </ahelp>"
+msgid "Sets the PDF export options for images inside your document."
+msgstr "Đặt các tùy chọn xuất PDF cho những ảnh bên trong tài liệu."
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3149388\n"
-"12\n"
+"ref_pdf_export.xhp\n"
+"par_idN1071B\n"
"help.text"
-msgid "Table"
-msgstr "Bảng"
+msgid "EPS images with embedded previews are exported only as previews. EPS images without embedded previews are exported as empty placeholders."
+msgstr "Ảnh EPS có ô xem thử nhúng được xuất chỉ dưới dạng ô xem thử. Ảnh EPS không có ô xem thử nhúng được xuất dưới dạng bộ giữ chỗ rỗng."
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149827\n"
-"13\n"
+"ref_pdf_export.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_TABLE\">Select the database table containing the field(s) that you want to use in your label.</ahelp>"
-msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_TABLE\">Chọn bảng cơ sở dữ liệu chứa (các) trường bạn muốn dùng để tạo nhãn.</ahelp>"
+msgid "Lossless compression"
+msgstr "Nén không mất gì"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3155391\n"
-"14\n"
+"ref_pdf_export.xhp\n"
+"par_idN10719\n"
"help.text"
-msgid "Database field"
-msgstr "Trường cơ sở dữ liệu"
+msgid "<ahelp hid=\".\">Selects a lossless compression of images. All pixels are preserved.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn thuật toán nén ảnh mà không mất dữ liệu. Mọi điểm ảnh đều được bảo tồn.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149750\n"
-"15\n"
+"ref_pdf_export.xhp\n"
+"par_idN10730\n"
"help.text"
-msgid "<ahelp hid=\"SW_IMAGEBUTTON_TP_LAB_LAB_BTN_INSERT\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"SW_IMAGEBUTTON_TP_LAB_LAB_BTN_INSERT\">Chọn trường cơ sở dữ liệu thích hợp, sau đó nhấn vào mũi tên bên trái hộp này để chèn trường này vào hộp <emph>Văn bản nhãn</emph>.</ahelp>"
+msgid "JPEG compression"
+msgstr "Nén JPEG"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3152780\n"
-"16\n"
+"ref_pdf_export.xhp\n"
+"par_idN10734\n"
"help.text"
-msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
-msgstr "Tên của cơ sở dữ liệu nằm giữa một cặp dấu ngoặc trong hộp <emph>Văn bản nhãn</emph>. Bạn cũng có thể liệt kê nhiều trường cơ sở dữ liệu, định giới bằng dấu cách. Bấm phím <item type=\"keycode\">Enter</item> để chèn một trường cơ sở dữ liệu vào một dòng mới."
+msgid "<ahelp hid=\".\">Selects a JPEG compression of images. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels get lost and artefacts are introduced, but file sizes are reduced.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn thuật toán nén JPEG. Ở mức chất lượng cao, gần mọi điểm ảnh được bảo tồn (kích cỡ tập tin lớn). Ở mức chất lượng thấp, một số điểm ảnh bị mất, và các đồ tạo tác được giới thiệu, nhưng kích cỡ tập tin cũng được giảm.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3147653\n"
-"17\n"
+"ref_pdf_export.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "Quality"
+msgstr "Chất lượng"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149762\n"
-"18\n"
+"ref_pdf_export.xhp\n"
+"par_idN10750\n"
"help.text"
-msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab.."
-msgstr "Bạn có thể chọn một định dạng đã xác định sẵn, hoặc một định dạng kích cỡ bạn ghi rõ trên thẻ <emph>Định dạng</emph>."
+msgid "<ahelp hid=\".\">Enter the quality level for JPEG compression.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập mức chất lượng cho tiến trình nén JPEG.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3154143\n"
-"19\n"
+"ref_pdf_export.xhp\n"
+"par_idN10767\n"
"help.text"
-msgid "Continuous"
-msgstr "Liên tục"
+msgid "Reduce image resolution"
+msgstr "GIảm độ phân giải ảnh"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3151339\n"
-"20\n"
+"ref_pdf_export.xhp\n"
+"par_idN1076B\n"
"help.text"
-msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_CONT\">Prints labels on continuous paper.</ahelp>"
-msgstr "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_CONT\">In các nhãn trên giấy cuộn liên tục.</ahelp>"
+msgid "<ahelp hid=\".\">Selects to resample or down-size the images to a lower number of pixels per inch.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt có nên lấy mẫu lại hay giảm kiểu dáng của ảnh để giảm số điểm ảnh trên mỗi insơ.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3150131\n"
-"21\n"
+"ref_pdf_export.xhp\n"
+"par_idN10782\n"
"help.text"
-msgid "Sheet"
-msgstr "Tờ giấy"
+msgid "<ahelp hid=\".\">Select the target resolution for the images.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn độ phân giải đích cho ảnh.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3159167\n"
-"22\n"
+"ref_pdf_export.xhp\n"
+"par_idN10791\n"
"help.text"
-msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_SHEET\">Prints labels on individual sheets.</ahelp>"
-msgstr "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_SHEET\">In các nhãn trên mỗi tờ giấy riêng.</ahelp>"
+msgid "General"
+msgstr "Chung"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3156327\n"
-"23\n"
+"ref_pdf_export.xhp\n"
+"par_idN10795\n"
"help.text"
-msgid "Brand"
-msgstr "Tên hãng"
+msgid "Sets general PDF export options."
+msgstr "Đặt các tùy chọn xuất PDF chung."
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3150466\n"
-"24\n"
+"ref_pdf_export.xhp\n"
+"hd_id080420080355360\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_MAKE\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
-msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_MAKE\">Chọn tên hãng của kiểu giấy bạn muốn sử dụng.</ahelp> Mỗi tên hãng có các định dạng kích cỡ riêng."
+msgid "Embed OpenDocument file"
+msgstr ""
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3153821\n"
-"25\n"
+"ref_pdf_export.xhp\n"
+"par_id0804200803553767\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "<ahelp hid=\".\">This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers it behaves like a normal .pdf file and it remains fully editable in %PRODUCTNAME."
+msgstr ""
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149235\n"
-"26\n"
+"ref_pdf_export.xhp\n"
+"hd_id2796411\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_TYPE\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_TYPE\">Chọn định dạng kích cỡ bạn muốn ùng. Các định dạng sẵn sàng thì phụ thuộc vào mục bạn chọn trong danh sách các <emph>Tên hãng</emph>. Muốn sử dụng một định dạng nhãn riêng thì chọn mục <emph>[Người dùng]</emph>, sau đó nhấn vào thẻ <link href=\"text/shared/01/01010202.xhp\" name=\"Định dạng\"><emph>Định dạng</emph></link> để xác định định dạng.</ahelp>"
+msgid "PDF/A-1a"
+msgstr "PDF/A-1a"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3153828\n"
-"27\n"
+"ref_pdf_export.xhp\n"
+"par_id5016327\n"
"help.text"
-msgid "Info"
-msgstr "Thông tin"
+msgid "<ahelp hid=\".\">Converts to the PDF/A-1a format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written.</ahelp>"
+msgstr "<ahelp hid=\".\">Chuyển đổi sang định dạng PDF/A-1. Đây được xác định rằng một định dạng tập tin tài liệu điện tử để bải tồn lâu dài. Tất cả các phông chữ được dùng trong tài liệu nguồn sẽ nhúng trong tập tin PDF được tạo. Thẻ PDF sẽ không được ghi vào.</ahelp>"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3152349\n"
-"28\n"
+"ref_pdf_export.xhp\n"
+"par_idN107A0\n"
"help.text"
-msgid "The paper type and the dimensions of the label are displayed at the bottom of the <emph>Format</emph> area."
-msgstr "Kiểu của giấy và các chiều của nhãn được hiển thị ở đáy của vùng <emph>Định dạng</emph>."
+msgid "Tagged PDF"
+msgstr "PDF có thẻ"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"par_idN107A4\n"
"help.text"
-msgid "Undo"
-msgstr "Hoàn tác"
+msgid "<ahelp hid=\".\">Selects to write PDF tags. This can increase file size by huge amounts.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt có nên ghi các thẻ PDF. Cũng có thể rất tăng kích cỡ tập tin.</ahelp>"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"bm_id3155069\n"
+"ref_pdf_export.xhp\n"
+"par_idN107B3\n"
"help.text"
-msgid "<bookmark_value>undoing;editing</bookmark_value><bookmark_value>editing;undoing</bookmark_value>"
-msgstr "<bookmark_value>hoàn tác;chỉnh sửa</bookmark_value><bookmark_value>soạn thảo;hồi lại</bookmark_value>"
+msgid "Tagged PDF contains information about the structure of the document contents. This can help to display the document on devices with different screens, and when using screen reader software."
+msgstr "Tập tin PDF có thẻ thì chứa thông tin về cấu trúc của nội dung tài liệu. Thông tin này có thể giúp hiển thị tài liệu trên thiết bị có màn hình khác nhau, và khi sử dụng phần mềm đọc màn hình."
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"hd_id3155069\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id8257087\n"
"help.text"
-msgid "<link href=\"text/shared/01/02010000.xhp\" name=\"Undo\">Undo</link>"
-msgstr "<link href=\"text/shared/01/02010000.xhp\" name=\"Hoàn tác\">Hoàn tác</link>"
+msgid "Export bookmarks"
+msgstr "Xuất liên kết lưu"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3149205\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_UNDO\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
-msgstr "<ahelp hid=\"HID_IMAPDLG_UNDO\">Hủy bước bạn mới làm, v.d. gọi lệnh hay gõ từ. Để chọn lệnh cần hủy, nhấn vào mũi tên bên cạnh biểu tượng <emph>Hoàn tác</emph> trên thanh <emph>Chuẩn</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Selects to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt có nên xuất liên kết lưu của tài liệu Writer dưới dạng liên kết lưu PDF. Liên kết lưu được tạo cho mọi đoạn văn phác thảo (<emph>Công cụ > Đánh số Phác thảo</emph>) và cho mọi mục nhập mục lục cho đó bạn đã gán siêu liên kết trong tài liệu nguồn.</ahelp>"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_idN10630\n"
+"ref_pdf_export.xhp\n"
+"par_idN107BE\n"
"help.text"
-msgid "To change the number of commands that you can undo, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Memory, and enter a new value in the number of steps box."
+msgid "Export comments"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3163803\n"
-"8\n"
+"ref_pdf_export.xhp\n"
+"par_idN107C2\n"
"help.text"
-msgid "Some commands (for example, editing Styles) cannot be undone."
-msgstr "Một số bước nào đó (v.d. chỉnh sửa Kiểu dáng) không thể hủy được."
+msgid "<ahelp hid=\".\">Selects to export comments of Writer and Calc documents as PDF notes.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt có nên xuất các ghi chú của tài liệu Writer/Calc dưới dạng ghi chú PDF.</ahelp>"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3155338\n"
-"11\n"
+"ref_pdf_export.xhp\n"
+"par_idN107F4\n"
"help.text"
-msgid "You can cancel the Undo command by choosing Edit - Redo."
-msgstr "Bạn cũng có thể hủy bước <emph>Hoàn tác</emph> chính nó, bằng cách chọn lệnh <emph>Sửa > Bước lại</emph>."
+msgid "Create PDF form"
+msgstr "Tạo biểu mẫu PDF"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"hd_id3166410\n"
-"7\n"
+"ref_pdf_export.xhp\n"
+"par_id4909817\n"
"help.text"
-msgid "About the Undo command in database tables"
-msgstr "Thông tin về lệnh <emph>Hoàn tác</emph> trong bảng của cơ sở dữ liệu"
+msgid "<ahelp hid=\".\">Choose to create a PDF form. This can be filled out and printed by the user of the PDF document.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt có nên tạo một biểu mẫu PDF. Biểu mẫu này có thể được điền vào và in ra bởi người dùng tài liệu PDF.</ahelp>"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3148492\n"
-"3\n"
+"ref_pdf_export.xhp\n"
+"hd_id6585283\n"
"help.text"
-msgid "When you are working with database tables, you can only undo the last command."
-msgstr "Khi thao tác bảng trong cơ sở dữ liệu, bạn chỉ có thê hủy bước mới làm (chỉ một bước)."
+msgid "Submit format"
+msgstr "Định dạng gửi đi"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3155504\n"
-"4\n"
+"ref_pdf_export.xhp\n"
+"par_idN107F8\n"
"help.text"
-msgid "If you change the content of a record in a database table that has not been saved, and then use the<emph> Undo</emph> command, the record is erased."
-msgstr "Hơn nữa, nếu bạn sửa đổi nội dung của một bản ghi trong một bảng cơ sở dữ liệu chưa được lưu, sau đó dùng lệnh <emph>Hoàn tác</emph>, bản ghi bị xoá. (Lưu nhiều, mất tiểu !)"
+msgid "<ahelp hid=\".\">Select the format of submitting forms from within the PDF file.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn định dạng theo đó cần đệ trình biểu mẫu từ bên trong tập tin PDF.</ahelp>"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"hd_id3149415\n"
-"9\n"
+"ref_pdf_export.xhp\n"
+"par_id0901200811454970\n"
"help.text"
-msgid "About the Undo command in presentations"
-msgstr "Thông tin về lệnh <emph>Hoàn tác</emph> trong trình diễn"
+msgid "Select the format of the data that you will receive from the submitter: FDF (Forms Data Format), PDF, HTML, or XML."
+msgstr "Chọn định dạng dữ liệu mà bạn sẽ nhận từ người gửi: FDF (định dạng biểu mẫu), PDF, HTML hay XML."
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3159147\n"
-"10\n"
+"ref_pdf_export.xhp\n"
+"par_idN10807\n"
"help.text"
-msgid "The <emph>Undo</emph> list is cleared when you apply a new layout to a slide."
-msgstr "Danh sách các bước có thể hủy (<emph>Hoàn tác)</emph>) bị xóa khi bạn áp dụng vào ảnh chiếu một bố trí mới."
+msgid "This setting overrides the control's URL property that you set in the document."
+msgstr "Thiết lập này có quyền cao hơn thuộc tính URL của thuộc tính mà bạn đặt trong tài liệu."
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"hd_id1026200909535841\n"
"help.text"
-msgid "Edit Points"
-msgstr "Sửa điểm"
+msgid "Allow duplicate field names"
+msgstr ""
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"hd_id3155271\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"par_id102620090953596\n"
"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\">Edit Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Sửa điểm\">Sửa điểm</link>"
+msgid "<ahelp hid=\".\">Allows to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.</ahelp>"
+msgstr ""
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"par_id3153391\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"hd_id3946958\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToggleObjectBezierMode\">Lets you change the shape of the selected drawing object.</ahelp>"
-msgstr "<ahelp hid=\".uno:ToggleObjectBezierMode\">Cho phép bạn thay đổi hình của đối tượng vẽ đã chọn.</ahelp>"
+msgid "Export automatically inserted blank pages"
+msgstr "Xuất trang trắng được tự động chèn"
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"par_id3148668\n"
-"7\n"
+"ref_pdf_export.xhp\n"
+"par_id8551896\n"
"help.text"
-msgid "To edit the shape of a selected drawing object, click the <emph>Points</emph> icon on the <emph>Drawing</emph> Bar, and then drag one of the points on the object."
-msgstr "Để chỉnh sửa hình của đối tượng vẽ đã chọn, nhấn vào biểu tượng <emph>Điểm</emph> trên thanh <emph>Vẽ</emph>, sau đó kéo một của những điểm của đối tượng."
+msgid "<ahelp hid=\".\">If switched on, automatically inserted blank pages are being exported to pdf file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. The previous chapter ends on an odd page. %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này thì các trang trắng được tự động chèn cũng được xuất dạng tập tin PDF. Tốt nhất nếu bạn đang in tập tin PDF trên mặt đôi. Thí dụ, trong một cuốn sách nào đó, một kiểu dáng đoạn văn được đặt để lúc nào cũng bắt đầu với trang có số lẻ. Chương trước kết thúc trên trang lẻ. %PRODUCTNAME thì chèn một trang trắng có số chẵn. Tùy chọn điều khiển có nên xuất trang trắng có số chẵn, hay không.</ahelp>"
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"par_id3093440\n"
+"ref_pdf_export.xhp\n"
+"hd_id3954548\n"
"help.text"
-msgid "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">Edit Points Bar</link>"
-msgstr "<link href=\"text/shared/main0227.xhp\" name=\"Thanh Sửa điểm\">Thanh Sửa điểm</link>"
+msgid "Embed standard fonts"
+msgstr "Định dạng chuẩn"
-#: 06130010.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06130010.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"par_id853434896\n"
"help.text"
-msgid "Record Macro"
-msgstr "Ghi vĩ lệnh"
+msgid "<ahelp hid=\".\">Normally the 14 standard Postscript fonts are not embedded in a PDF file, because every PDF reader software already contains these fonts. Enable this option to embed the standard fonts that are installed on your system and that are used in the document.</ahelp> Use this option if you expect to have a better looking or more useful standard font than the font that is available in the recipients' PDF reader software."
+msgstr ""
-#: 06130010.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06130010.xhp\n"
-"hd_id3153383\n"
-"5\n"
+"ref_pdf_export.xhp\n"
+"hd_id9796441\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130010.xhp\" name=\"Record Macro\">Record Macro</link>"
-msgstr "<link href=\"text/shared/01/06130010.xhp\" name=\"Ghi vĩ lệnh\">Ghi vĩ lệnh</link>"
+msgid "Initial View tab"
+msgstr "Xem đầu tiên"
-#: 06130010.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06130010.xhp\n"
-"par_id3152952\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id1218604\n"
"help.text"
-msgid "<ahelp hid=\".uno:MacroRecorder\">Records a new macro.</ahelp> Only available, if macro recording feature is enabled in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced</emph>."
-msgstr ""
+msgid "Panes"
+msgstr "Ô cửa sổ"
-#: 06130010.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06130010.xhp\n"
-"hd_id3154788\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"hd_id7071443\n"
"help.text"
-msgid "Stop Recording"
-msgstr "Dừng việc ghi"
+msgid "Page only"
+msgstr "Chỉ trang"
-#: 06130010.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06130010.xhp\n"
-"par_id3146067\n"
-"4\n"
+"ref_pdf_export.xhp\n"
+"par_id1851557\n"
"help.text"
-msgid "<ahelp hid=\".uno:StopRecording\">Stops recording a macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:StopRecording\">Dừng việc ghi vĩ lệnh.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows only the page contents.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF hiển thị chỉ nội dung của trang.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"hd_id7464217\n"
"help.text"
-msgid "Options"
-msgstr "Tùy chọn"
+msgid "Bookmarks and page"
+msgstr "Liên kết lưu và trang"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3155599\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"par_id4490188\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/shared/01/01010203.xhp\" name=\"Tùy chọn\">Tùy chọn</link>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a bookmarks palette and the page contents.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF hiển thị một bảng chọn liên kết lưu và nội dung của trang.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3154497\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"hd_id3581041\n"
"help.text"
-msgid "<ahelp hid=\"HID_LAB_PRT\" visibility=\"visible\">Sets additional options for your labels or business cards, including text synchronization and printer settings.</ahelp>"
-msgstr "<ahelp hid=\"HID_LAB_PRT\" visibility=\"visible\">Đặt các tùy chọn thêm về xác nhãn hay danh thiếp của bạn, bao gồm cách đồng bộ hoá văn bản và thiết lập máy in.</ahelp>"
+msgid "Thumbnails and page"
+msgstr "Ảnh mẫu và trang"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3150713\n"
-"3\n"
+"ref_pdf_export.xhp\n"
+"par_id956755\n"
"help.text"
-msgid "Entire Page"
-msgstr "Toàn trang"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a thumbnails palette and the page contents.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF hiển thị một bảng chọn ảnh mẫu và nội dung của trang.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3155355\n"
-"4\n"
+"ref_pdf_export.xhp\n"
+"hd_id1905575\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_PAGE\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_PAGE\" visibility=\"visible\">Tạo một trang đầy đủ các nhãn hay danh thiếp.</ahelp>"
+msgid "Open on page"
+msgstr "Mở ở trang"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3146958\n"
-"5\n"
+"ref_pdf_export.xhp\n"
+"par_id9776909\n"
"help.text"
-msgid "Single Label"
-msgstr "Nhãn đơn"
+msgid "<ahelp hid=\".\">Select to show the given page when the reader opens the PDF file.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị trang đã chọn khi người đọc mở tập tin PDF.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3155535\n"
-"6\n"
+"ref_pdf_export.xhp\n"
+"hd_id7509994\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_SINGLE\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_SINGLE\" visibility=\"visible\">In trên trang chỉ một nhãn hay danh thiếp riêng lẻ.</ahelp>"
+msgid "Magnification"
+msgstr "Phóng to"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3148621\n"
-"7\n"
+"ref_pdf_export.xhp\n"
+"hd_id5900143\n"
"help.text"
-msgid "Column"
-msgstr "Cột"
+msgid "Default"
+msgstr "Mặc định"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3145345\n"
-"8\n"
+"ref_pdf_export.xhp\n"
+"par_id822168\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_COL\" visibility=\"visible\">Enter the number of labels or business cards that you want to have in a row on your page.</ahelp>"
-msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_COL\" visibility=\"visible\">Gõ số nhãn hay danh thiếp bạn muốn thấy nằm trong mỗi hàng trên trang.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page contents without zooming. If the reader software is configured to use a zoom factor by default, the page shows with that zoom factor.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị nội dung trang mà không phóng to. Nếu phần mềm đọc được cấu hình để dùng hệ số phóng to theo mặc định thì trang hiển thị tùy theo hệ số phóng to đó.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3149398\n"
-"9\n"
+"ref_pdf_export.xhp\n"
+"hd_id1092257\n"
"help.text"
-msgid "Row"
-msgstr "Hàng"
+msgid "Fit in window"
+msgstr "Vừa cửa sổ"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3166410\n"
-"10\n"
+"ref_pdf_export.xhp\n"
+"par_id3092135\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_ROW\" visibility=\"visible\">Enter the number of rows of labels or business cards that you want to have on your page.</ahelp>"
-msgstr "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_ROW\" visibility=\"visible\">Gõ số hàng các nhãn hay danh thiếp bạn muốn thấy trên trang.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit entirely into the reader's window.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị trang được thu/phóng để vừa hoàn toàn trong cửa sổ của chương trình đọc.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3149237\n"
-"15\n"
+"ref_pdf_export.xhp\n"
+"hd_id654622\n"
"help.text"
-msgid "Synchronize contents"
-msgstr "Đồng bộ hoá nội dung"
+msgid "Fit width"
+msgstr "Vừa bề rộng"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3155342\n"
-"16\n"
+"ref_pdf_export.xhp\n"
+"par_id814539\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SW:CHECKBOX:TP_LAB_PRT:CB_SYNCHRON\">Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the <emph>Synchronize Labels </emph>button.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SW:CHECKBOX:TP_LAB_PRT:CB_SYNCHRON\">Cho phép bạn chỉnh sửa một nhãn hay danh thiếp riêng lẻ, và cập nhật nội dung của các nhãn hay danh thiếp còn lại trên trang khi bạn nhấn vào cái nút <emph>Đồng bộ hoá nhãn </emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit the width of the reader's window.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị trang được thu/phóng để vừa chiều rộng cửa sổ của chương trình đọc.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3149164\n"
-"18\n"
+"ref_pdf_export.xhp\n"
+"hd_id9883114\n"
"help.text"
-msgid "Synchronize Labels"
-msgstr "Đồng bộ hoá nhãn"
+msgid "Fit visible"
+msgstr "Vừa vùng hiện rõ"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3148474\n"
-"17\n"
+"ref_pdf_export.xhp\n"
+"par_id2362437\n"
"help.text"
-msgid "The <emph>Synchronize labels </emph>button only appears in your document if you selected the <emph>Synchronize contents </emph>on the<emph> Options tab </emph>when you created the labels or business cards."
-msgstr "Cái nút <emph>Đồng bộ hoá nhãn</emph> chỉ xuất hiện trong cửa sổ tài liệu nếu bạn đã bật tùy chọn <emph>Đồng bộ hoá nội dung</emph> trên thẻ <emph>Tùy chọn</emph> trong khi tạo nhan hay danh thiếp."
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị văn bản và đồ họa trên trang được thu/phóng để vừa chiều rộng cửa sổ của chương trình đọc.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3149762\n"
-"19\n"
+"ref_pdf_export.xhp\n"
+"hd_id7296975\n"
"help.text"
-msgid "<ahelp hid=\"SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC\" visibility=\"visible\">Copies the contents of the top left label or business card to the remaining labels or business cards on the page.</ahelp>"
-msgstr "<ahelp hid=\"SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC\" visibility=\"visible\">Sao chép nội dung của nhãn hay danh thiếp ở góc trên bên trái vào các nhãn hay danh thiếp còn lại trên trang.</ahelp>"
+msgid "Zoom factor"
+msgstr "Hệ số Thu Phóng"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3150504\n"
-"11\n"
+"ref_pdf_export.xhp\n"
+"par_id371715\n"
"help.text"
-msgid "Printer"
-msgstr "Máy in"
+msgid "<ahelp hid=\".\">Select a given zoom factor when the reader opens the PDF file.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn một hệ số thu phóng đã chọ khi chương trình đọc mở tập tin PDF.</ahelp>"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3148990\n"
-"12\n"
+"ref_pdf_export.xhp\n"
+"hd_id329905\n"
"help.text"
-msgid "Displays the name of the currently selected printer."
-msgstr "Hiển thị tên của máy in được chọn hiện thời."
+msgid "Page layout"
+msgstr "Bố trí trang"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3153127\n"
-"13\n"
+"ref_pdf_export.xhp\n"
+"hd_id5632496\n"
"help.text"
-msgid "Setup"
-msgstr "Thiết lập"
+msgid "Default"
+msgstr "Mặc định"
-#: 01010203.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3144438\n"
-"14\n"
+"ref_pdf_export.xhp\n"
+"par_id1694082\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SW:PUSHBUTTON:TP_LAB_PRT:BTN_PRTSETUP\">Opens the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link> dialog.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SW:PUSHBUTTON:TP_LAB_PRT:BTN_PRTSETUP\">Mở hộp thoại <link href=\"text/shared/01/01140000.xhp\" name=\"Thiết lập Máy in\">Thiết lập Máy in</link>.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the pages according to the layout setting of the reader software.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang tùy theo thiết lập bố trí của chương trình đọc.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"hd_id8454237\n"
"help.text"
-msgid "Background"
-msgstr "Nền"
+msgid "Single page"
+msgstr "Trang đơn"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"bm_id3151097\n"
+"ref_pdf_export.xhp\n"
+"par_id672322\n"
"help.text"
-msgid "<bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
-msgstr "<bookmark_value>khung;nền</bookmark_value><bookmark_value>nền;khung/phần/chỉ mục</bookmark_value><bookmark_value>phần; nền</bookmark_value><bookmark_value>chỉ mục;nền</bookmark_value><bookmark_value>chân trang;nền</bookmark_value><bookmark_value>đầu trang;nền</bookmark_value>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows one page at a time.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị một trang mỗi lúc.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3151097\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id7387310\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background\">Background</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Nền\">Nền</link>"
+msgid "Continuous"
+msgstr "Liên tục"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3153748\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id8764305\n"
"help.text"
-msgid "<ahelp hid=\"HID_BACKGROUND\">Set the background color or graphic.</ahelp>"
-msgstr "<ahelp hid=\"HID_BACKGROUND\">Đặt màu hay ảnh làm nền.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages in a continuous vertical column.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang theo một cột nằm dọc liên tục.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3147653\n"
-"34\n"
+"ref_pdf_export.xhp\n"
+"hd_id6223639\n"
"help.text"
-msgid "You can specify the background for <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraphs, pages, headers, footers, text frames, tables, table cells, sections, and indexes.</caseinline><caseinline select=\"CALC\">cells and pages.</caseinline></switchinline>"
-msgstr "Bạn có khả năng ghi rõ nền cho các <switchinline select=\"appl\"><caseinline select=\"WRITER\">đoạn văn, trang, phần đầu/chân trang, khung văn bản, bảng, ô bảng, phần và chỉ mục. </caseinline><caseinline select=\"CALC\">ô bảng và trang. </caseinline></switchinline>"
+msgid "Continuous facing"
+msgstr "Liên tục đối diện"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3154514\n"
-"4\n"
+"ref_pdf_export.xhp\n"
+"par_id5318765\n"
"help.text"
-msgid "As"
-msgstr "Dạng"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the right.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang đối diện theo một cột liên tục. Đối với nhiều hơn hai trang, trang đầu được hiển thị bên phải.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3154380\n"
-"5\n"
+"ref_pdf_export.xhp\n"
+"hd_id1416364\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BACKGROUND:LB_SELECTOR\">Select the type of background that you want to apply.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BACKGROUND:LB_SELECTOR\">Chọn kiểu nền cần áp dụng.</ahelp>"
+msgid "First page is left"
+msgstr "Trang đầu bên trái"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3151245\n"
-"7\n"
+"ref_pdf_export.xhp\n"
+"par_id9596850\n"
"help.text"
-msgid "Using a Color as a Background"
-msgstr "Dùng Màu Làm Nền"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the left. You must enable support for complex text layout on Language settings - Languages in the Options dialog box.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà hiển thị các trang cạnh nhau theo một cột liên tục. Đối với nhiều hơn hai trang, trang đầu được hiển thị bên trái. Bạn phải hiệu lực hỗ trợ bố trí văn bản phức tạp (CTL) dưới mục trình đơn <emph>Công cụ > Tùy chọn > Thiết lập Ngôn ngữ > Ngôn ngữ</emph>.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3148946\n"
-"8\n"
+"ref_pdf_export.xhp\n"
+"hd_id18005\n"
"help.text"
-msgid "Color Background"
-msgstr "Nền màu"
+msgid "User Interface tab"
+msgstr "Giao diện Người dùng"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3152361\n"
-"9\n"
+"ref_pdf_export.xhp\n"
+"hd_id6676839\n"
"help.text"
-msgid "<ahelp hid=\"HID_BACKGROUND_CTL_BGDCOLORSET\">Click the color that you want to use as a background. To remove a background color, click <emph>No Fill</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_BACKGROUND_CTL_BGDCOLORSET\">Nhấn vào màu bạn muốn đặt thành nền. Để gỡ bỏ màu nền, nhấn vào mục <emph>Không tô đầy</emph>.</ahelp>"
+msgid "Window options"
+msgstr "Tùy chọn cửa sổ"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153524\n"
-"37\n"
+"ref_pdf_export.xhp\n"
+"hd_id3809015\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Transparency</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Trong suốt </caseinline></switchinline>"
+msgid "Resize window to initial page"
+msgstr "Đổi kích cỡ cửa sổ thành trang đầu tiên"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_idN107A4\n"
+"ref_pdf_export.xhp\n"
+"par_id1321146\n"
"help.text"
-msgid "Background transparency can be set only for frames."
-msgstr "Tính trong suốt của nền chỉ có thể được đặt cho khung."
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a window displaying the whole initial page.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn để tạo một tập tin PDF được hiện trong cửa sổ hiển thị toàn bộ trang.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3150358\n"
-"38\n"
+"ref_pdf_export.xhp\n"
+"hd_id6994842\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BACKGROUND_MF_COL_TRANS\">Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BACKGROUND_MF_COL_TRANS\">Đặt tính trong suốt cho màu nền hay ảnh nền của khung, mà 100% là trong suốt hoàn toàn và 0% là đục hoàn toàn. Tăng tính trong suốt của nền thì văn bản hay đối tượng nằm dưới bắt đầu hiển thị qua nền khung.</ahelp></caseinline></switchinline>"
+msgid "Center window on screen"
+msgstr "Hiện cửa sổ ở giữa màn hình"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3154216\n"
-"11\n"
+"ref_pdf_export.xhp\n"
+"par_id9601428\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">For</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cho </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a reader window centered on screen.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà được hiển thị trong cửa sổ trình đọc nằm ở giữa màn hình.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3145419\n"
-"12\n"
+"ref_pdf_export.xhp\n"
+"hd_id6369212\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BACKGROUND:LB_TBL_BOX\">Select the area that you want to apply the background color to.</ahelp> For example, when you define the background color for a table, you can choose to apply it to the table, the active cell, the row, or the column.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BACKGROUND:LB_TBL_BOX\">Chọn vùng cho đó bạn muốn áp dụng màu nền.</ahelp> Chẳng hạn, khi bạn xác định màu nền cho bảng, bạn có tùy chọn áp dụng nó cho toàn bảng, cho ô có tiêu điểm, cho hàng hay cột hiện tại. </caseinline></switchinline>"
+msgid "Open in full screen mode"
+msgstr "Mở ở chế độ toàn màn hình"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3150497\n"
-"13\n"
+"ref_pdf_export.xhp\n"
+"par_id1111789\n"
"help.text"
-msgid "This option is only available when you edit the background of a table or a paragraph style."
-msgstr "Tùy chọn này chỉ sẵn sàng khi bạn chỉnh sửa nền của bảng hay kiểu dáng đoạn văn."
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a full screen reader window in front of all other windows.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà được hiển thị trong cửa sổ trình đọc màn hình đầy đủ nằm ở trên các cửa sổ khác.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153056\n"
-"14\n"
+"ref_pdf_export.xhp\n"
+"hd_id2041993\n"
"help.text"
-msgid "Using a Graphic as a Background"
-msgstr "Dùng Ảnh Làm Nền"
+msgid "Display document title"
+msgstr "Hiển thị tựa đề tài liệu"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3149983\n"
-"15\n"
+"ref_pdf_export.xhp\n"
+"par_id4576555\n"
"help.text"
-msgid "File"
-msgstr "Tập tin"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown with the document title in the reader's title bar.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để tạo ra một tập tin PDF mà được hiển thị với tựa đề tài liệu trên thanh tựa đề của trình đọc.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3152462\n"
-"16\n"
+"ref_pdf_export.xhp\n"
+"hd_id4632099\n"
"help.text"
-msgid "Contains information about the graphic file."
-msgstr "Chức thông tin về tập tin đồ họa."
+msgid "User interface options"
+msgstr "Tùy chọn giao diện người dùng"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3145592\n"
-"17\n"
+"ref_pdf_export.xhp\n"
+"hd_id3154087\n"
"help.text"
-msgid "Display field"
-msgstr "Hiển thị trường"
+msgid "Hide menu bar"
+msgstr "Ẩn thanh trình đơn"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3154920\n"
-"18\n"
+"ref_pdf_export.xhp\n"
+"par_id6582537\n"
"help.text"
-msgid "Shows the path for the graphic file."
-msgstr "Hiển thị đường dẫn đến tập tin đồ họa."
+msgid "<ahelp hid=\".\">Select to hide the reader's menu bar when the document is active.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để ẩn thanh trình đơn của trình đọc khi tài liệu hoạt động.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3145272\n"
-"19\n"
+"ref_pdf_export.xhp\n"
+"hd_id729697\n"
"help.text"
-msgid "Link"
-msgstr "Liên kết"
+msgid "Hide toolbar"
+msgstr "Ẩn thanh công cụ"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3154150\n"
-"20\n"
+"ref_pdf_export.xhp\n"
+"par_id769066\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_BACKGROUND:BTN_LINK\">Links to or embeds the graphic file in the current file.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_BACKGROUND:BTN_LINK\">Liên kết đến hay nhúng tập tin đồ họa trong tập tin hiện tại.</ahelp>"
+msgid "<ahelp hid=\".\">Select to hide the reader's toolbar when the document is active.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để ẩn thanh công cụ của trình đọc khi tài liệu hoạt động.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3155366\n"
-"21\n"
+"ref_pdf_export.xhp\n"
+"hd_id376293\n"
"help.text"
-msgid "Preview"
-msgstr "Xem thử"
+msgid "Hide window controls"
+msgstr "Ẩn các điều khiển cửa sổ"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3147426\n"
-"22\n"
+"ref_pdf_export.xhp\n"
+"par_id43641\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_BACKGROUND:BTN_PREVIEW\">Displays or hides a preview of the selected graphic.</ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_BACKGROUND:BTN_PREVIEW\">Hiển thị hay ẩn ô xem thử đồ họa đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\">Select to hide the reader's controls when the document is active.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để ẩn các điều khiển của trình đọc khi tài liệu hoạt động.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3154472\n"
-"23\n"
+"ref_pdf_export.xhp\n"
+"hd_id1886654\n"
"help.text"
-msgid "Browse"
-msgstr "Duyệt"
+msgid "Transitions"
+msgstr "Chuyển tiếp"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3153951\n"
-"24\n"
+"ref_pdf_export.xhp\n"
+"par_idN107D9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BACKGROUND:BTN_BROWSE\">Locate the graphic file that you want to use as a background, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BACKGROUND:BTN_BROWSE\">Tìm tập tin đồ họa bạn muốn dùng làm nền, sau đó nhấn vào nút <emph>Mở</emph>.</ahelp>"
+msgid "Use transition effects"
+msgstr "Dùng hiệu ứng chuyển tiếp"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153726\n"
-"25\n"
+"ref_pdf_export.xhp\n"
+"par_idN107DD\n"
"help.text"
-msgid "Type"
-msgstr "Kiểu"
+msgid "<ahelp hid=\".\">Selects to export Impress slide transition effects to respective PDF effects.</ahelp>"
+msgstr "<ahelp hid=\".\">Đặt có nên xuất các hiệu ứng chuyển tiếp ảnh chiếu Impress dưới dạng các hiệu ứng PDF tương ứng.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3147442\n"
-"26\n"
+"ref_pdf_export.xhp\n"
+"hd_id9053926\n"
"help.text"
-msgid "Specify the way that you want to display the background graphic."
-msgstr "Ghi rõ bạn muốn hiển thị ảnh nền như thế nào."
+msgid "Bookmarks"
+msgstr "Liên kết lưu"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153366\n"
-"27\n"
+"ref_pdf_export.xhp\n"
+"hd_id1941892\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "All bookmark levels"
+msgstr "Mọi cấp liên kết lưu"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3153741\n"
-"28\n"
+"ref_pdf_export.xhp\n"
+"par_id341807\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_POSITION\">Select this option, and then click a location in the position grid.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_POSITION\">Bật tùy chọn này, sau đó nhấn vào một nơi nào đó trong lưới vị trí.</ahelp>"
+msgid "<ahelp hid=\".\">Select to show all bookmark levels when the reader opens the PDF file.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị mọi cấp liên kết lưu khi người đọc mở tập tin PDF.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3156005\n"
-"29\n"
+"ref_pdf_export.xhp\n"
+"hd_id486770\n"
"help.text"
-msgid "Area"
-msgstr "Vùng"
+msgid "Visible bookmark levels"
+msgstr "Các cấp liên kết lưu hiện rõ"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3152596\n"
-"30\n"
+"ref_pdf_export.xhp\n"
+"par_id4850001\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to show bookmark levels down to the selected level when the reader opens the PDF file.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiển thị các cấp liên kết lưu đến cấp đã chọn, khi người đọc mở tập tin PDF.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id9464094\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_AREA\">Stretches the graphic to fill the entire background of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_AREA\">Kéo giãn đồ họa để chiếm toàn nền của đối tượng đã chọn.</ahelp>"
+msgid "Links tab"
+msgstr ""
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3145663\n"
-"32\n"
+"ref_pdf_export.xhp\n"
+"par_id9302346\n"
"help.text"
-msgid "Tile"
-msgstr "Xếp lát"
+msgid "Specify how to export bookmarks and hyperlinks in your document."
+msgstr "Hãy ghi rõ nên xuất liên kết lưu và siêu liên kết trong tài liệu như thế nào."
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3149481\n"
-"33\n"
+"ref_pdf_export.xhp\n"
+"hd_id8296151\n"
+"help.text"
+msgid "Export bookmarks as named destinations"
+msgstr "Xuất liên kết lưu dạng đích đặt tên"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id4809411\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_TILE\">Repeats the graphic so that it covers the entire background of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_TILE\">Lặp lại hiển thị ảnh đến khi nó trải ra toàn nền của đối tượng đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\">The bookmarks (targets of references) in PDF files can be defined as rectangular areas. Additionally, bookmarks to named objects can be defined by their names. Enable the checkbox to export the names of objects in your document as valid bookmark targets. This allows to link to those objects by name from other documents.</ahelp>"
+msgstr "<ahelp hid=\".\">Liên kết lưu (đích tham chiếu) trong tập tin PDF có thể được xác định dạng vùng hình chữ nhật. Hơn nữa, liên kết lưu đến đích đặt tên có thể được xác định theo tên. Hãy đánh dấu trong hộp chọn để xuất các tên của đối tượng trong tài liệu dưới dạng đích liên kết lưu hợp lệ. Tùy chọn này cho phép liên kết đến đối tượng đó theo tên, từ tài liệu khác.</ahelp>"
-#: 05030600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3151114\n"
-"35\n"
+"ref_pdf_export.xhp\n"
+"hd_id6454969\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a color. Click No Fill to remove a background or highlighting color. Click Automatic to reset a font color.</ahelp>"
+msgid "Convert document references to PDF targets"
+msgstr "Chuyển đổi các tham chiếu tài liệu sang đích PDF"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id7928708\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable this checkbox to convert the URLs referencing other ODF files to PDF files with the same name. In the referencing URLs the extensions .odt, .odp, .ods, .odg, and .odm are converted to the extension .pdf.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để chuyển đổi mỗi địa chỉ URL tham chiếu đến tập tin ODF khác sang tập tin PDF cùng tên. Trong địa chỉ URL tham chiếu, cả đuôi .odt, .odp, .ods, .odg, .odm được chuyển đổi sang .pdf.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3864253\n"
+"help.text"
+msgid "Export URLs relative to file system"
+msgstr "Xuất URL tương đối với hệ thống tập tin"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id3144016\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable this checkbox to export URLs to other documents as relative URLs in the file system. See <link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">\"relative hyperlinks\"</link> in the Help.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để xuất các địa chỉ URL vào các tài liệu khác dưới dạng địa chỉ URL tương đối với hệ thống tập tin. Xem phần <link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">\"siêu liên kết tương đối\"</link> trong Trợ giúp.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id9937131\n"
+"help.text"
+msgid "Cross-document links"
+msgstr "Liên kết tài liệu chéo"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id5616626\n"
+"help.text"
+msgid "Specify how to handle hyperlinks from your PDF file to other files."
+msgstr "Ghi rõ cách xử lý siêu liên kết từ tập tin PDF tới tập tin khác."
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id1972106\n"
+"help.text"
+msgid "Default mode"
+msgstr "Chế độ mặc định"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id79042\n"
+"help.text"
+msgid "<ahelp hid=\".\">Links from your PDF document to other documents will be handled as it is specified in your operating system.</ahelp>"
+msgstr "<ahelp hid=\".\">Liên kết từ tài liệu PDF tới tài liệu khác sẽ được xử lý tùy theo thiết lập của hệ điều hành của bạn.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id4076357\n"
+"help.text"
+msgid "Open with PDF reader application"
+msgstr "Mở bằng trình đọc PDF"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id8231757\n"
+"help.text"
+msgid "<ahelp hid=\".\">Cross-document links are opened with the PDF reader application that currently shows the document. The PDF reader application must be able to handle the specified file type inside the hyperlink.</ahelp>"
+msgstr "<ahelp hid=\".\">Liên kết tài liệu chéo được mở bằng ứng dụng đọc PDF đang hiển thị tài liệu. Trình đọc PDF phải có khả năng xử lý dạng tập tin được ghi rõ trong siêu liên kết.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3168736\n"
+"help.text"
+msgid "Open with Internet browser"
+msgstr "Mở bằng trình duyệt Web"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id1909848\n"
+"help.text"
+msgid "<ahelp hid=\".\">Cross-document links are opened with the Internet browser. The Internet browser must be able to handle the specified file type inside the hyperlink.</ahelp>"
+msgstr "<ahelp hid=\".\">Liên kết tài liệu chéo được mở bằng trình duyệt Web. Chương trình này phải có khả năng quản lý dạng tập tin được ghi rõ bằng siêu liên kết.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3068636\n"
+"help.text"
+msgid "Security tab"
msgstr ""
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"hd_id2927335\n"
"help.text"
-msgid "Merge"
-msgstr "Trộn"
+msgid "Set passwords"
+msgstr "Lưu mật khẩu"
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"hd_id3154765\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"par_id2107303\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge\">Merge</link>"
-msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge\">Trộn</link>"
+msgid "<ahelp hid=\".\">Click to open a dialog where you enter the passwords.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn vào để mở hộp thoại trong đó bạn nhập mật khẩu.</ahelp>"
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3147406\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id41123951\n"
"help.text"
-msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected table cells into a single cell.</ahelp></variable>"
-msgstr "<variable id=\"verbindentext\"><ahelp hid=\".\">Kết hợp nội dung của những ô khác nhau thành một ô duy nhất.</ahelp></variable>"
+msgid "You can enter a password to open the file. You can enter an optional password that allows to edit the document."
+msgstr ""
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3154351\n"
-"79\n"
+"ref_pdf_export.xhp\n"
+"hd_id7985168\n"
"help.text"
-msgid "Choose <emph>Table - Merge Cells</emph>"
-msgstr "Chọn <emph>Bảnge - Nhập Ô</emph>"
+msgid "Printing"
+msgstr "In ấn"
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3154370\n"
-"80\n"
+"ref_pdf_export.xhp\n"
+"hd_id876186\n"
"help.text"
-msgid "On the <emph>Table</emph> Bar, click"
-msgstr "trong thanh công cụ <emph>Table</emph>, nhấn"
+msgid "Not permitted"
+msgstr "Không được phép"
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3153996\n"
+"ref_pdf_export.xhp\n"
+"par_id3939634\n"
"help.text"
-msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">icon</alt></image>"
-msgstr "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Printing the document is not permitted.</ahelp>"
+msgstr "<ahelp hid=\".\">Không cho phép in ra tài liệu này.</ahelp>"
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3150662\n"
-"81\n"
+"ref_pdf_export.xhp\n"
+"hd_id599688\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Nhập Ô"
+msgid "Low resolution (150 dpi)"
+msgstr "Phân giải thấp (150 điểm/insơ)"
-#: 05100100.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3153718\n"
-"3\n"
+"ref_pdf_export.xhp\n"
+"par_id1371501\n"
"help.text"
-msgid "Merging cells can lead to calculation errors in formulas in the table."
-msgstr "Nhập ô có thể dẫn tới lỗi trong tính toán các công thức của bảng."
+msgid "<ahelp hid=\".\">The document can only be printed in low resolution (150 dpi). Not all PDF readers honor this setting.</ahelp>"
+msgstr "<ahelp hid=\".\">Tài liệu này chỉ có thể được in ra ở độ phân giải thấp (150 dpi). Không phải tất cả các trình đọc PDF tùy theo thiết lập này.</ahelp>"
-#: 05340600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05340600.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"hd_id4661702\n"
"help.text"
-msgid "Show Columns"
-msgstr "Hiện cột"
+msgid "High resolution"
+msgstr "Phân giải cao"
-#: 05340600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05340600.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"par_id7868892\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340600.xhp\" name=\"Show Columns\">Show Columns</link>"
-msgstr "<link href=\"text/shared/01/05340600.xhp\" name=\"Hiện cột\">Hiện cột</link>"
+msgid "<ahelp hid=\".\">The document can be printed in high resolution.</ahelp>"
+msgstr "<ahelp hid=\".\">Có thể in ra tài liệu ở độ phân giải cao.</ahelp>"
-#: 05340600.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05340600.xhp\n"
-"par_id3147212\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"hd_id2188787\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays hidden columns. Choose the column that you want to display from the list, or click <emph>All </emph>to display all of the hidden columns.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiển thị các cột bị ẩn. Trong danh sách, chọn cột bạn muốn hiển thị, hoặc bật tùy chọn <emph>Tất cả</emph> để hiển thị tất cả các cột bị ẩn.</ahelp>"
+msgid "Changes"
+msgstr "Thay đổi"
-#: 04060000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"04060000.xhp\n"
+"ref_pdf_export.xhp\n"
+"hd_id5833307\n"
+"help.text"
+msgid "Not permitted"
+msgstr "Không được phép"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id7726676\n"
+"help.text"
+msgid "<ahelp hid=\".\">No changes of the content are permitted.</ahelp>"
+msgstr "<ahelp hid=\".\">Không cho phép thay đổi nội dung.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3729361\n"
+"help.text"
+msgid "Inserting, deleting, and rotating pages"
+msgstr "Chèn, xoá và xoay trang"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id9573961\n"
+"help.text"
+msgid "<ahelp hid=\".\">Only inserting, deleting, and rotating pages is permitted.</ahelp>"
+msgstr "<ahelp hid=\".\">Chỉ cho phép chèn, xoá và xoay trang.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id7700430\n"
+"help.text"
+msgid "Filling in form fields"
+msgstr "Điền vào trường biểu mẫu"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id1180455\n"
+"help.text"
+msgid "<ahelp hid=\".\">Only filling in form fields is permitted.</ahelp>"
+msgstr "<ahelp hid=\".\">Chỉ cho phép điền vào trường biểu mẫu.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3405560\n"
+"help.text"
+msgid "Commenting, filling in form fields"
+msgstr "Ghi chú thích, điền vào trường biểu mẫu"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id3409527\n"
+"help.text"
+msgid "<ahelp hid=\".\">Only commenting and filling in form fields is permitted.</ahelp>"
+msgstr "<ahelp hid=\".\">Chỉ cho phép ghi chú thích và điền vào trường biểu mẫu.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id7112338\n"
+"help.text"
+msgid "Any except extracting pages"
+msgstr "Bất kỳ trừ rút trang"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id2855616\n"
+"help.text"
+msgid "<ahelp hid=\".\">All changes are permitted, except extracting pages.</ahelp>"
+msgstr "<ahelp hid=\".\">Cho phép mọi thay đổi, trừ rút trang.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id2091433\n"
+"help.text"
+msgid "Enable copying of content"
+msgstr "Bật sao chép nội dung"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id5092318\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to enable copying of content to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiệu lực chức năng sao chép nội dung vào bảng nháp.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id9312417\n"
+"help.text"
+msgid "Enable text access for accessibility tools"
+msgstr "Bật truy cập văn bản cho công cụ khả năng truy cập"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id9089022\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to enable text access for accessibility tools.</ahelp>"
+msgstr "<ahelp hid=\".\">Bật tùy chọn này để hiệu lực truy cập văn bản cho các công cụ khả năng truy cập.</ahelp>"
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"hd_id3150507\n"
+"50\n"
+"help.text"
+msgid "Export button"
+msgstr ""
+
+#: ref_pdf_export.xhp
+msgctxt ""
+"ref_pdf_export.xhp\n"
+"par_id3146975\n"
+"51\n"
+"help.text"
+msgid "<ahelp hid=\".\">Exports the current file in PDF format.</ahelp>"
+msgstr "<ahelp hid=\".\">Xuất tập tin hiện tại theo định dạng PDF.</ahelp>"
+
+#: ref_pdf_send_as.xhp
+msgctxt ""
+"ref_pdf_send_as.xhp\n"
"tit\n"
"help.text"
-msgid "Scan"
-msgstr "Quét"
+msgid "E-mail as PDF"
+msgstr "Gửi thư đính kèm PDF"
-#: 04060000.xhp
+#: ref_pdf_send_as.xhp
msgctxt ""
-"04060000.xhp\n"
+"ref_pdf_send_as.xhp\n"
"hd_id3146902\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"E-mail as PDF\">E-mail as PDF</link></variable>"
+msgstr "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"Gửi thư đính kèm PDF\">Gửi thư đính kèm PDF</link></variable>"
+
+#: ref_pdf_send_as.xhp
+msgctxt ""
+"ref_pdf_send_as.xhp\n"
+"par_id3150756\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060000.xhp\" name=\"Scan\">Scan</link>"
-msgstr "<link href=\"text/shared/01/04060000.xhp\" name=\"Quét\">Quét</link>"
+msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an e-mail sending window with the PDF as an attachment.</ahelp></variable>"
+msgstr "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Hiển thị hộp thoại <emph>Xuất dạng PDF</emph>, xuất tài liệu hiện tại theo định dạng tài liệu di động (PDF), sau đó mở một cửa sổ gửi thư điện tử cũng đính kèm tập tin PDF.</ahelp></variable>"
-#: 04060000.xhp
+#: securitywarning.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3154926\n"
-"2\n"
+"securitywarning.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"scan\"><ahelp hid=\".uno:Scan\">Inserts a scanned image into your document.</ahelp></variable>"
-msgstr "<variable id=\"scan\"><ahelp hid=\".uno:Scan\">Chèn vào tài liệu một ảnh đã quét.</ahelp></variable>"
+msgid "Security Warning"
+msgstr "Cảnh báo Bảo mật"
-#: 04060000.xhp
+#: securitywarning.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153124\n"
-"5\n"
+"securitywarning.xhp\n"
+"bm_id6499832\n"
"help.text"
-msgid "To insert a scanned image, the driver for your scanner must be installed. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at http://www.mostang.com/sane/. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
-msgstr "Để chèn ảnh đã quét, trước tiên phải cài đặt trình điều khiển máy quét.<switchinline select=\"sys\"><caseinline select=\"UNIX\">Dưới hệ thống UNIX, hãy cài đặt gói SANE có thể tìm ở địa chỉ « http://www.mostang.com/sane/ ». Gói SANE phải dùng cùng một thư viện libc với $[officename].</caseinline></switchinline>"
+msgid "<bookmark_value>security;warning dialogs with macros</bookmark_value><bookmark_value>macros;security warning dialog</bookmark_value>"
+msgstr "<bookmark_value>bảo mật;hộp thoại cảnh báo có vĩ lệnh</bookmark_value><bookmark_value>vĩ lệnh;hộp thoại cảnh báo bảo mật</bookmark_value>"
-#: 04060000.xhp
+#: securitywarning.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154673\n"
-"3\n"
+"securitywarning.xhp\n"
+"par_idN1054D\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060100.xhp\" name=\"Select Source\">Select Source</link>"
-msgstr "<link href=\"text/shared/01/04060100.xhp\" name=\"Chọn nguồn\">Chọn nguồn</link>"
+msgid "<variable id=\"securitywarning\"><link href=\"text/shared/01/securitywarning.xhp\">Security Warning</link></variable>"
+msgstr "<variable id=\"securitywarning\"><link href=\"text/shared/01/securitywarning.xhp\">Cảnh báo Bảo mật</link></variable>"
-#: 04060000.xhp
+#: securitywarning.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3152801\n"
-"4\n"
+"securitywarning.xhp\n"
+"par_idN1056B\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060200.xhp\" name=\"Request\">Request</link>"
-msgstr "<link href=\"text/shared/01/04060200.xhp\" name=\"Yêu cầu\">Yêu cầu</link>"
+msgid "When you open a document that contains an unsigned macro, or a signed macro from an unknown source, the <emph>Security Warning</emph> dialog opens."
+msgstr "Khi bạn mở một tài liệu chứa vĩ lệnh không có chữ ký, hoặc vĩ lệnh đã ký từ nguồn lạ, hộp thoại <emph>Cảnh báo Bảo mật</emph> sẽ mở."
-#: 05230400.xhp
+#: securitywarning.xhp
msgctxt ""
-"05230400.xhp\n"
+"securitywarning.xhp\n"
+"par_idN105FC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable or disable the macros. Choose <emph>%PRODUCTNAME - Security</emph> in the Options dialog box to set the options.</ahelp>"
+msgstr ""
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "View Signature"
+msgstr "Xem chữ ký"
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog where you can view the signature.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể xem chữ ký.</ahelp>"
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN10587\n"
+"help.text"
+msgid "Always trust macros from this source"
+msgstr "Lúc nào cũng tin cậy vĩ lệnh từ nguồn này"
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN1058B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds the current macro source to the list of <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">trusted sources</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm vĩ lệnh hiện thời vào danh sách các <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">nguồn tin cậy</link>.</ahelp>"
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN1059C\n"
+"help.text"
+msgid "Enable Macros"
+msgstr "Bật vĩ lệnh"
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN105A0\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows macros in the document to run.</ahelp>"
+msgstr "<ahelp hid=\".\">Cho phép chạy vĩ lệnh trong tài liệu.</ahelp>"
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN105A3\n"
+"help.text"
+msgid "Disable Macros"
+msgstr "Tắt vĩ lệnh"
+
+#: securitywarning.xhp
+msgctxt ""
+"securitywarning.xhp\n"
+"par_idN105A7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Does not allow macros in the document to run.</ahelp>"
+msgstr "<ahelp hid=\".\">Không cho phép chạy vĩ lệnh trong tài liệu.</ahelp>"
+
+#: selectcertificate.xhp
+msgctxt ""
+"selectcertificate.xhp\n"
"tit\n"
"help.text"
-msgid "Slant & Corner Radius"
-msgstr "Làm xiên và Bán kính góc"
+msgid "Select Certificate"
+msgstr "Chọn chứng nhận"
-#: 05230400.xhp
+#: selectcertificate.xhp
msgctxt ""
-"05230400.xhp\n"
-"bm_id3149988\n"
+"selectcertificate.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value>"
-msgstr "<bookmark_value>đối tượng vẽ xiên</bookmark_value><bookmark_value>đối tượng vẽ; xiên</bookmark_value><bookmark_value>vùng; xiên</bookmark_value>"
+msgid "Select Certificate"
+msgstr "Chọn chứng nhận"
-#: 05230400.xhp
+#: selectcertificate.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3149988\n"
-"1\n"
+"selectcertificate.xhp\n"
+"par_idN10545\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230400.xhp\" name=\"Slant & Corner Radius\">Slant & Corner Radius</link>"
-msgstr "<link href=\"text/shared/01/05230400.xhp\" name=\"Làm xiên và Bán kính góc\">Làm xiên và Bán kính góc</link>"
+msgid "<ahelp hid=\".\">Select the certificate that you want to <link href=\"text/shared/01/digitalsignatures.xhp\">digitally sign</link> the current document with.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn chứng nhận bạn muốn dùng để <link href=\"text/shared/01/digitalsignatures.xhp\">ký thuật số</link> tài liệu hiện tại.</ahelp>"
-#: 05230400.xhp
+#: selectcertificate.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3154788\n"
-"2\n"
+"selectcertificate.xhp\n"
+"par_idN1056A\n"
"help.text"
-msgid "<ahelp hid=\"HID_TRANS_SLANT\">Slants the selected object, or rounds the corners of a rectangular object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TRANS_SLANT\">Làm xiên đối tượng đã chọn, hoặc làm tròn các góc của đối tượng hình chữ nhật.</ahelp>"
+msgid "List"
+msgstr "Danh sách"
-#: 05230400.xhp
+#: selectcertificate.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3154497\n"
-"3\n"
+"selectcertificate.xhp\n"
+"par_idN1056E\n"
"help.text"
-msgid "Corner Radius"
-msgstr "Bán kính góc"
+msgid "<ahelp hid=\".\">Select the certificate that you want to digitally sign the current document with.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn chứng nhận bạn muốn dùng để ký thuật số tài liệu hiện tại..</ahelp>"
-#: 05230400.xhp
+#: selectcertificate.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3156027\n"
-"4\n"
+"selectcertificate.xhp\n"
+"par_idN10571\n"
"help.text"
-msgid "You can only round the corners of a rectangular object."
-msgstr "Bạn chỉ có thể làm tròn các góc của đối tượng hình chữ nhật."
+msgid "View Certificate"
+msgstr "Xem chứng nhận"
-#: 05230400.xhp
+#: selectcertificate.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3153935\n"
-"5\n"
+"selectcertificate.xhp\n"
+"par_idN10575\n"
"help.text"
-msgid "Radius"
-msgstr "Bán kính"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog where you can examine the selected certificate.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <link href=\"text/shared/optionen/viewcertificate.xhp\">Xem chứng nhận</link> trong đó bạn có thể xem xét chứng nhận đã chọn.</ahelp>"
-#: 05230400.xhp
+#: webhtml.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3147373\n"
-"6\n"
+"webhtml.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS\">Enter the radius of the circle that you want to use to round the corners.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS\">Nhập bán kính của hình tròn bạn muốn dùng để làm tròn các góc.</ahelp>"
+msgid "Preview in Web Browser"
+msgstr "Xem thử trong trình duyệt"
-#: 05230400.xhp
+#: webhtml.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3145090\n"
-"7\n"
+"webhtml.xhp\n"
+"hd_id3901181\n"
"help.text"
-msgid "Slant"
-msgstr "Làm xiên"
+msgid "<link href=\"text/shared/01/webhtml.xhp\">Preview in Web Browser</link>"
+msgstr "<link href=\"text/shared/01/webhtml.xhp\">Xem thử trong trình duyệt</link>"
-#: 05230400.xhp
+#: webhtml.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3153345\n"
-"8\n"
+"webhtml.xhp\n"
+"par_id8309274\n"
"help.text"
-msgid "Slants the selected object along an axis that you specify."
-msgstr "Làm xiên đối tượng đã chọn theo một trục bạn ghi rõ."
+msgid "<ahelp hid=\".\">Creates a temporary copy of the current document in HTML format, opens the system default Web browser, and displays the HTML file in the Web browser.</ahelp>"
+msgstr "<ahelp hid=\".\">Tạo một bản sao tạm thời của tài liệu hiện tại theo định dạng HTML, sau đó mở trình duyệt Web mặc định để hiển thị tập tin HTML.</ahelp>"
-#: 05230400.xhp
+#: webhtml.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3154983\n"
-"9\n"
+"webhtml.xhp\n"
+"par_id9186681\n"
"help.text"
-msgid "Angle"
-msgstr "Góc"
+msgid "The HTML formatted copy is written to the temporary files folder that you can select in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</item>. When you quit %PRODUCTNAME, the HTML file will be deleted."
+msgstr ""
-#: 05230400.xhp
+#: webhtml.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3153683\n"
-"10\n"
+"webhtml.xhp\n"
+"par_id5871150\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE\">Nhập độ của trục làm xiên.</ahelp>"
+msgid "You can set the HTML export filter options by choosing <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</item>."
+msgstr ""
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
+"xformsdata.xhp\n"
"tit\n"
"help.text"
-msgid "Shadow"
-msgstr "Bóng"
+msgid "Data Navigator"
+msgstr "Bộ duyệt Dữ liệu"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"bm_id3150014\n"
+"xformsdata.xhp\n"
+"bm_id6823023\n"
"help.text"
-msgid "<bookmark_value>areas; shadows</bookmark_value><bookmark_value>shadows; areas</bookmark_value>"
-msgstr "<bookmark_value>vùng; bóng</bookmark_value><bookmark_value>bóng; vùng</bookmark_value>"
+msgid "<bookmark_value>data structure of XForms</bookmark_value> <bookmark_value>deleting;models/instances</bookmark_value> <bookmark_value>models in XForms</bookmark_value> <bookmark_value>Data Navigator;display options</bookmark_value>"
+msgstr "<bookmark_value>cấu trúc dữ liệu của biểu mẫu XForms</bookmark_value><bookmark_value>xoá;mô hình/thể hiện</bookmark_value><bookmark_value>mô hình trong biểu mẫu XForms</bookmark_value><bookmark_value>Bộ điều hướng Dữ Liệu;tùy chọn hiển thị</bookmark_value>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3150014\n"
-"1\n"
+"xformsdata.xhp\n"
+"par_idN1054E\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Bóng\">Bóng</link>"
+msgid "<variable id=\"xformsdata\"><link href=\"text/shared/01/xformsdata.xhp\">Data Navigator</link></variable>"
+msgstr "<variable id=\"xformsdata\"><link href=\"text/shared/01/xformsdata.xhp\">Bộ duyệt Dữ liệu</link></variable>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3155069\n"
-"2\n"
+"xformsdata.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_SHADOW\">Add a shadow to the selected drawing object, and define the properties of the shadow.</ahelp>"
-msgstr "<ahelp hid=\"HID_AREA_SHADOW\">Thêm bóng đổ vào đối tượng vẽ đã chọn, và xác định các thuộc tính về bóng.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the data structure of the current XForms document.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ cấu trúc dữ liệu của tài liệu XForms hiện tại.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3153748\n"
-"3\n"
+"xformsdata.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "Properties"
-msgstr "Thuộc tính"
+msgid "Model name"
+msgstr "Tên mô hình"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3153345\n"
-"4\n"
+"xformsdata.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "Set the properties of the shadow that you want to apply."
-msgstr "Đặt các thuộc tính về bóng cần áp dụng."
+msgid "<ahelp hid=\".\">Selects the XForms model that you want to use.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn mô hình XForms bạn muốn dùng.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3150774\n"
-"5\n"
+"xformsdata.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "Use shadow"
-msgstr "Dùng bóng"
+msgid "Models"
+msgstr "Mô hình"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3154749\n"
-"6\n"
+"xformsdata.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW\">Adds a shadow to the selected drawing object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW\">Thêm bóng đổ vào đối tượng vẽ đã chọn.</ahelp>"
+msgid "<ahelp hid=\".\">Adds, renames, and removes XForms models.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm, gỡ bỏ và thay đổi tên của mô hình XForms.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3166460\n"
-"7\n"
+"xformsdata.xhp\n"
+"par_idN10604\n"
"help.text"
-msgid "Position"
-msgstr "Vị trí"
+msgid "Add"
+msgstr "Thêm"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3146138\n"
-"8\n"
+"xformsdata.xhp\n"
+"par_idN10608\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPSHADOW_CTRL\">Click where you want to cast the shadow.</ahelp>"
-msgstr "<ahelp hid=\"HID_TPSHADOW_CTRL\">Nhấn vào vị trí ở đó bạn muốn đổ bóng.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the Add Model dialog where you can add an XForm model.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Thêm mô hình</emph> trong đó bạn có thể thêm một mô hình XForm.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3154897\n"
-"9\n"
+"xformsdata.xhp\n"
+"par_id0130200901590878\n"
"help.text"
-msgid "Distance"
-msgstr "Khoảng cách"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gõ tên.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3146847\n"
-"10\n"
+"xformsdata.xhp\n"
+"hd_id0910200811173295\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE\">Enter the distance that you want the shadow to be offset from the selected object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE\">Nhập khoảng cách bóng nên đổ từ đối tượng đã chọn.</ahelp>"
+msgid "Model data updates change document's modification status"
+msgstr "Những cập nhật trong mô hình dữ liệu sẽ khiến trạng thái sửa chữacủa tài liệu bị thay đổi"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3150276\n"
-"11\n"
+"xformsdata.xhp\n"
+"par_id0910200811173255\n"
"help.text"
-msgid "Color"
-msgstr "Màu"
+msgid "<ahelp hid=\".\">When enabled, the document status will be set to \"modified\" when you change any form control that is bound to any data in the model. When not enabled, such a change does not set the document status to \"modified\".</ahelp>"
+msgstr "<ahelp hid=\".\">Khi được kích họat, trạng thái của tài liệu sẽ được đặt là \"được chỉnh sửa\" khi bạn thay đổi các điều khiển biểu mẫu được gắn vào bất cứ dữ liệu nào trong mô hình. Khi không được kích hoạt thì trạng thái ngày sẽ không được kích họat.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3155829\n"
-"12\n"
+"xformsdata.xhp\n"
+"par_idN10612\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR\">Select a color for the shadow.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR\">Chọn màu cho bóng.</ahelp>"
+msgid "Remove"
+msgstr "Bỏ"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3148992\n"
-"13\n"
+"xformsdata.xhp\n"
+"par_idN10616\n"
"help.text"
-msgid "Transparency"
-msgstr "Trong suốt"
+msgid "<ahelp hid=\".\">Deletes the selected XForm model. You cannot delete the last model.</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá mô hình XForm đã chọn. Không thể xoá mô hình cuối cùng.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3148642\n"
-"14\n"
+"xformsdata.xhp\n"
+"par_idN10743\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT\">Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT\">Nhập phần trăm, từ 0% (đục hoàn toàn) đến 100% (trong suốt hoàn toàn) để ghi rõ tính trong suốt của bóng.</ahelp>"
+msgid "Rename"
+msgstr "Thay tên"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3154810\n"
-"17\n"
+"xformsdata.xhp\n"
+"par_idN10749\n"
"help.text"
-msgid "Shadow"
-msgstr "Bóng"
+msgid "<ahelp hid=\".\">Renames the selected Xform model.</ahelp>"
+msgstr "<ahelp hid=\".\">Thay đổi tên của mô hình Xform đã chọn.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3148924\n"
-"15\n"
+"xformsdata.xhp\n"
+"par_idN10619\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillShadow\">Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillShadow\">Thêm bóng đổ vào đối tượng đã chọn. Đối tượng đã có bóng đổ thì gỡ bỏ bóng. Chưa chọn đối tượng khi nhấn vào biểu tượng này thì bóng được thêm vào đối tượng kế tiếp bạn vẽ.</ahelp>"
+msgid "Show Details"
+msgstr "Hiện chi tiết"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3145068\n"
+"xformsdata.xhp\n"
+"par_idN1061D\n"
"help.text"
-msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Biểu tượng</alt></image>"
+msgid "<ahelp hid=\".\">Switches the display to show or hide details.</ahelp>"
+msgstr "<ahelp hid=\".\">Chuyển đổi sự trình bày để hiển thị hay ẩn chi tiết.</ahelp>"
-#: 05210600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3154935\n"
-"16\n"
+"xformsdata.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "Shadow"
-msgstr "Bóng"
+msgid "Instance"
+msgstr "Tức thời"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"tit\n"
+"xformsdata.xhp\n"
+"par_idN10682\n"
"help.text"
-msgid "Page"
-msgstr "Trang"
+msgid "<ahelp hid=\".\">Lists the items that belong to the current instance.</ahelp>"
+msgstr "<ahelp hid=\".\">Liệt kê các mục thuộc về tức thời hiện thời.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"bm_id3150620\n"
+"xformsdata.xhp\n"
+"par_idN1058B\n"
"help.text"
-msgid "<bookmark_value>pages;formatting and numbering</bookmark_value><bookmark_value>formatting;pages</bookmark_value><bookmark_value>paper formats</bookmark_value><bookmark_value>paper trays</bookmark_value><bookmark_value>printers;paper trays</bookmark_value><bookmark_value>layout;pages</bookmark_value><bookmark_value>binding space</bookmark_value><bookmark_value>margins;pages</bookmark_value><bookmark_value>gutter</bookmark_value>"
-msgstr "<bookmark_value>trang;định dạng và đánh số</bookmark_value><bookmark_value>định dạng;trang</bookmark_value><bookmark_value>định dạng tờ giấy</bookmark_value><bookmark_value>khay đựng giấy</bookmark_value><bookmark_value>máy in;khay đựng giấy</bookmark_value><bookmark_value>bố trí;trang</bookmark_value><bookmark_value>khoảng cách đóng gáy</bookmark_value><bookmark_value>lề;trang</bookmark_value><bookmark_value>lề đóng gáy</bookmark_value>"
+msgid "Submissions"
+msgstr "Đệ trình"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150620\n"
-"1\n"
+"xformsdata.xhp\n"
+"par_idN1058F\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040200.xhp\" name=\"Page\">Page</link>"
-msgstr "<link href=\"text/shared/01/05040200.xhp\" name=\"Trang\">Trang</link>"
+msgid "<ahelp hid=\".\">Lists the submissions.</ahelp>"
+msgstr "<ahelp hid=\".\">Liệt kê các sự đệ trình.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153255\n"
-"2\n"
+"xformsdata.xhp\n"
+"par_idN10592\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_PAGE\">Allows you to define page layouts for single and multiple-page documents, as well as a numbering and paper formats.</ahelp>"
-msgstr "<ahelp hid=\"HID_FORMAT_PAGE\">Cho phép bạn xác định các bố trí trang cho tài liệu kiểu trang đơn và đa trang, cũng như định dạng đánh số và tờ giấy.</ahelp>"
+msgid "Bindings"
+msgstr "Tổ hợp"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3149549\n"
-"31\n"
+"xformsdata.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "Paper format"
-msgstr "Định dạng giấy"
+msgid "<ahelp hid=\".\">Lists the bindings for the XForm.</ahelp>"
+msgstr "<ahelp hid=\".\">Liệt kê các tổ hợp đối với XForm.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150710\n"
-"32\n"
+"xformsdata.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "Select from a list of predefined paper sizes, or define a custom paper format."
-msgstr "Chọn trong danh sách các kích cỡ tờ giấy đã xác định sẵn, hoặc xác định một định dạng tờ giấy riêng."
+msgid "Instances"
+msgstr "Tức thời"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3153394\n"
-"33\n"
+"xformsdata.xhp\n"
+"par_idN1059D\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "<ahelp hid=\".\">This button has submenus to add, edit or remove instances.</ahelp>"
+msgstr "<ahelp hid=\".\">Cái nút này cũng có trình đơn phụ để thêm, chỉnh sửa hay gỡ bỏ tức thời.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149827\n"
-"34\n"
+"xformsdata.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_PAPER_SIZE\">Select a predefined paper size, or create a custom format by entering the dimensions for the paper in the <emph>Height </emph>and <emph>Width </emph>boxes.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_PAPER_SIZE\">Chọn một kích cỡ tờ giấy đã xác định sẵn, hoặc tạo một định dạng riêng bằng cách nhập các chiều của tờ giấy vào hộp <emph>Bề cao</emph> và <emph>Bề rộng</emph>.</ahelp>"
+msgid "Add"
+msgstr "Thêm"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3154823\n"
-"35\n"
+"xformsdata.xhp\n"
+"par_idN1064D\n"
"help.text"
-msgid "Width"
-msgstr "Bề rộng"
+msgid "<ahelp hid=\".\">Opens a dialog where you can add a new instance.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể thêm một tức thời mới.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3145313\n"
-"36\n"
+"xformsdata.xhp\n"
+"par_idN10650\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_PAPER_WIDTH\">Displays the width of the selected paper format. To define a custom format, enter a width here.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_PAPER_WIDTH\">Hiển thị chiều rộng của định dạng tờ giấy đã chọn. Để xác định một định dạng tờ giấy riêng, nhập vào đây một chiều rộng.</ahelp>"
+msgid "Edit"
+msgstr "Sửa"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147008\n"
-"37\n"
+"xformsdata.xhp\n"
+"par_idN10654\n"
"help.text"
-msgid "Height"
-msgstr "Bề cao"
+msgid "<ahelp hid=\".\">Opens a dialog where you can modify the current instance.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại trong đó bạn có thể sửa đổi tức thời hiện tại.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3156113\n"
-"38\n"
+"xformsdata.xhp\n"
+"par_idN10657\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_PAPER_HEIGHT\">Displays the height of the selected paper format. To define a custom format, enter a height here.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_PAPER_HEIGHT\">Hiển thị chiều cao của định dạng tờ giấy đã chọn. Để xác định một định dạng tờ giấy riêng, nhập vào đây một chiều cao.</ahelp>"
+msgid "Remove"
+msgstr "Bỏ"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3146798\n"
-"39\n"
+"xformsdata.xhp\n"
+"par_idN1065B\n"
"help.text"
-msgid "Portrait"
-msgstr "Thẳng đứng"
+msgid "<ahelp hid=\".\">Deletes the current instance. You cannot delete the last instance.</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá tức thời hiện tại. Không thể xoá tức thời cuối cùng.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149811\n"
-"40\n"
+"xformsdata.xhp\n"
+"par_idN1065E\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_PAGE:RB_PORTRAIT\">Displays and prints the current document with the paper oriented vertically.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_PAGE:RB_PORTRAIT\">Hiển thị và in ra tài liệu hiện tại trên tờ giấy theo chiều dọc.</ahelp>"
+msgid "Show data types"
+msgstr "Hiện kiểu dữ liệu"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150976\n"
-"41\n"
+"xformsdata.xhp\n"
+"par_idN10662\n"
"help.text"
-msgid "Landscape"
-msgstr "Nằm ngang"
+msgid "<ahelp hid=\".\">Switches the display to show more or less details.</ahelp>"
+msgstr "<ahelp hid=\".\">Chuyển đổi sự trình bày để hiển thị thêm hay kèm dữ liệu.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153827\n"
-"42\n"
+"xformsdata.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_PAGE:RB_LANDSCAPE\">Displays and prints the current document with the paper oriented horizontally.</ahelp>"
-msgstr "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_PAGE:RB_LANDSCAPE\">Hiển thị và in ra tài liệu hiện tại trên tờ giấy theo chiều ngang.</ahelp>"
+msgid "Add"
+msgstr "Thêm"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3156153\n"
-"74\n"
+"xformsdata.xhp\n"
+"par_idN10588\n"
"help.text"
-msgid "Text direction"
-msgstr "Hướng văn bản"
+msgid "<ahelp hid=\".\">Opens a dialog to add a new item (element, attribute, submission, or binding) as a sub-item of the current item.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại để thêm một mục mới (phần tử, thuộc tính, sự đệ trình hay tổ hợp) dưới dạng mục phụ của mục hiện tại.</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154380\n"
-"73\n"
+"xformsdata.xhp\n"
+"par_idN10624\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_PAGE_LB_TEXT_FLOW\">Select the text direction that you want to use in your document.</ahelp> The \"right-to-left (vertical)\" text flow direction rotates all layout settings to the right by 90 degrees, except for the header and footer."
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_PAGE_LB_TEXT_FLOW\">Chọn hướng văn bản bạn muốn dùng trong tài liệu.</ahelp> Hướng văn bản « bên phải qua bên trái » (RTL) thì xoay theo xuôi chiều 90 độ tất cả các thiết lập bố trí, trừ phần đầu/chân trang."
+msgid "Edit"
+msgstr "Sửa"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3156327\n"
-"43\n"
+"xformsdata.xhp\n"
+"par_idN10628\n"
"help.text"
-msgid "Paper tray"
-msgstr "Khay giấy"
+msgid "<ahelp hid=\".\">Opens a dialog to edit the selected item (element, attribute, submission, or binding).</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại để chỉnh sửa mục đã chọn (phần tử, thuộc tính, sự đệ trình hay tổ hợp).</ahelp>"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150771\n"
-"44\n"
+"xformsdata.xhp\n"
+"par_idN1062B\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_PAPER_TRAY\">Select the paper source for your printer. If you want, you can assign different paper trays to different page styles. For example, assign a different tray to the First Page style and load the tray with your company's letterhead paper.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_PAPER_TRAY\">Chọn nguồn giấy cho máy in. Bạn cũng có thể gán các khay đựng giấy khác nhau cho kiểu dáng trang khác nhau. Chẳng hạn, gán cho Kiểu dáng Trang đầu một khay khác, và nạp giấy có phần in đầu thư của công ty.</ahelp>"
+msgid "Delete"
+msgstr "Xoá"
-#: 05040200.xhp
+#: xformsdata.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150275\n"
-"3\n"
+"xformsdata.xhp\n"
+"par_idN1062F\n"
"help.text"
-msgid "Margins"
-msgstr "Lề"
+msgid "<ahelp hid=\".\">Deletes the selected item (element, attribute, submission, or binding).</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá mục đã chọn (phần tử, thuộc tính, sự đệ trình hay tổ hợp).</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153348\n"
-"4\n"
+"xformsdataadd.xhp\n"
+"tit\n"
"help.text"
-msgid "Specify the amount of space to leave between the edges of the page and the document text."
-msgstr "Ghi rõ khoảng cách cần để lại giữa cạnh giấy và văn bản tài liệu."
+msgid "Add / Edit"
+msgstr "Thêm/Sửa"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3153061\n"
-"5\n"
+"xformsdataadd.xhp\n"
+"bm_id7194738\n"
"help.text"
-msgid "Left / Inner"
-msgstr "Trái/Trong"
+msgid "<bookmark_value>read-only items in Data Navigator</bookmark_value><bookmark_value>Data Navigator;adding/editing items</bookmark_value>"
+msgstr "<bookmark_value>mục chỉ-đọc trong Bộ Duyệt Dữ Liệu</bookmark_value><bookmark_value>Bộ Duyệt Dữ Liệu;thêm/sửa mục</bookmark_value>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3151384\n"
-"6\n"
+"xformsdataadd.xhp\n"
+"par_idN10547\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_LEFT_MARGIN\">Enter the amount of space to leave between the left edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the inner text margin and the inner edge of the page.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_LEFT_MARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên trái của trang và văn bản tài liệu. Nếu bạn đang dùng bố trí trang <emph>Đối xứng</emph>, hãy nhập khoảng cách cần để lại giữa lề văn bản bên trong và cạnh bên trong của trang.</ahelp>"
+msgid "Add / Edit"
+msgstr "Thêm/Sửa"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3154923\n"
-"8\n"
+"xformsdataadd.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "Right / Outer"
-msgstr "Phải/Ngoài"
+msgid "<ahelp hid=\".\">Adds a new item or edits the selected item in the XForms Data Navigator.</ahelp> Items can be elements, attributes, submissions, or bindings."
+msgstr "<ahelp hid=\".\">Thêm một mục mới, hoặc chỉnh sửa mục đã chọn trong Bộ Duyệt Dữ Liệu XForm.</ahelp> Mục có thể là phần tử, thuộc tính, sự đệ trình hay tổ hợp."
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3147304\n"
-"9\n"
+"xformsdataadd.xhp\n"
+"par_idN10560\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_RIGHT_MARGIN\">Enter the amount of space to leave between the right edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the outer text margin and the outer edge of the page.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_RIGHT_MARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên phải của trang và văn bản tài liệu. Nếu bạn đang dùng bố trí trang <emph>Đối xứng</emph>, hãy nhập khoảng cách cần để lại giữa lề văn bản bên ngoài và cạnh bên ngoài của trang.</ahelp>"
+msgid "<ahelp hid=\".\">%PRODUCTNAME inserts a new item directly after the currently selected item in the Data Navigator. A new attribute is added to the currently selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">%PRODUCTNAME chèn một mục mới vào đúng sau mục được chọn hiện thời trong Bộ Duyệt Dữ Liệu.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3161657\n"
-"11\n"
+"xformsdataadd.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "Top"
-msgstr "Trên"
+msgid "Name"
+msgstr "Tên"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154226\n"
-"12\n"
+"xformsdataadd.xhp\n"
+"par_idN10567\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_TOP_MARGIN\">Enter the amount of space to leave between the upper edge of the page and the document text.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_TOP_MARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên trên của trang và văn bản tài liệu.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the name of the item.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập tên của mục.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3153381\n"
-"13\n"
+"xformsdataadd.xhp\n"
+"par_idN1056A\n"
"help.text"
-msgid "Bottom"
-msgstr "Dưới"
+msgid "The attribute names must be unique within the same group."
+msgstr "Tên thuộc tính phải là duy nhất bên trong nhóm đó."
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154138\n"
-"14\n"
+"xformsdataadd.xhp\n"
+"par_idN1056D\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_BOTTOM_MARGIN\">Enter the amount of space to leave between the lower edge of the page and the document text.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_BOTTOM_MARGIN\">Nhập khoảng cách cần để lại giữa cạnh bên dưới của trang và văn bản tài liệu.</ahelp>"
+msgid "Type"
+msgstr "Kiểu"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473735\n"
+"xformsdataadd.xhp\n"
+"par_idN10571\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chỉnh canh văn bản trên Kiểu dáng Trang được chọn theo lưới nằm dọc trên trang.</ahelp>"
+msgid "<ahelp hid=\".\">Select the type of a new item. You cannot change the type of an edited item.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kiểu của mục mới. Không thể thay đổi kiểu của một mục đã chỉnh sửa.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150488\n"
-"55\n"
+"xformsdataadd.xhp\n"
+"par_idN10574\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đăng ký đúng </caseinline></switchinline>"
+msgid "Default value"
+msgstr "Giá trị mặc định"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3151112\n"
-"56\n"
+"xformsdataadd.xhp\n"
+"par_idN10578\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_REGISTER\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp> The spacing of the grid is defined by the <emph>Reference Style</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_REGISTER\">Chỉnh canh văn bản theo Kiểu dáng Trang đã chọn theo lưới thẳng đứng trên trang.</ahelp> Khoảng cách giữa các đường lưới được xác định bởi <emph>Kiểu dáng Tham chiếu</emph>. </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Enter a default value for the selected item.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập giá trị mặc định cho mục đã chọn.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473732\n"
+"xformsdataadd.xhp\n"
+"par_idN1057B\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid. </ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hãy lựa chọn Kiểu dáng Đoạn văn mà bạn muốn sử dụng làm tham chiếu để sắp hàng văn bản theo Kiểu dáng Trang được chọn. Chiều cao của phông chữ được ghi rõ trong Kiểu dáng Tham chiếu thì đặt cách giãn cách lưới nằm dọc trên trang.</ahelp>"
+msgid "Settings"
+msgstr "Thiết lập"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150686\n"
-"57\n"
+"xformsdataadd.xhp\n"
+"par_idN1057F\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Reference Style</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kiểu dáng Tham chiếu </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Specifies the properties of the selected item.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ các thuộc tính về mục đã chọn.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3146146\n"
-"58\n"
+"xformsdataadd.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_REGISTER\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid.</caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_REGISTER\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Chọn Kiểu dáng Đoạn văn bạn muốn dùng làm tham chiếu để canh lề văn bản theo Kiểu dáng Trang đã chọn. Chiều cao của phông được ghi rõ trong kiểu dáng tham chiếu thì đặt khoảng cách của lưới thẳng đứng trên trang.</caseinline></switchinline></ahelp>"
+msgid "Data type"
+msgstr "Kiểu dữ liệu"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147480\n"
-"47\n"
+"xformsdataadd.xhp\n"
+"par_idN10586\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Table alignment</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Chỉnh canh bảng</caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Select the data type for the selected item.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kiểu dữ liệu cho mục đã chọn.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150417\n"
-"48\n"
+"xformsdataadd.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Specify the alignment options for the cells on a printed page.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ghi rõ các tùy chọn chỉnh canh cho các ô bảng trên trang đã in. </caseinline></switchinline>"
+msgid "Required"
+msgstr "Cần thiết"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473845\n"
+"xformsdataadd.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells horizontally on the printed page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều ngang trên tờ giấy được in ấn.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ có nên bao gồm mục này trong biểu mẫu XForm hay không.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147047\n"
-"49\n"
+"xformsdataadd.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Horizontal</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nằm ngang </caseinline></switchinline>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
+msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập các miền tên đã dùng và biểu thức đường dẫn XPath đầy đủ."
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153878\n"
-"50\n"
+"xformsdataadd.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_HORZ\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells horizontally on the printed page.</caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_HORZ\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Giữa lại các ô bảng theo chiều ngang trên trang đã in. </caseinline></switchinline></ahelp>"
+msgid "Relevant"
+msgstr "Liên quan"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473811\n"
+"xformsdataadd.xhp\n"
+"par_idN105AE\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells vertically on the printed page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Đặt các ô vào giữa theo chiều dọc trên tờ giấy được in ấn.</ahelp>"
+msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là liên quan.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3153522\n"
-"51\n"
+"xformsdataadd.xhp\n"
+"par_idN105B1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vertical</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Thẳng đứng</caseinline></switchinline>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
+msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập các miền tên đã dùng và biểu thức đường dẫn XPath đầy đủ."
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149413\n"
-"52\n"
+"xformsdataadd.xhp\n"
+"par_idN105CB\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_VERT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells vertically on the printed page.</caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_VERT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Giữa lại các ô bảng theo chiều dọc trên trang đã in. </caseinline></switchinline></ahelp>"
+msgid "Constraint"
+msgstr "Ràng buộc"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147381\n"
-"63\n"
+"xformsdataadd.xhp\n"
+"par_idN105CF\n"
"help.text"
-msgid "Layout settings"
-msgstr "Thiết lập bố trí"
+msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là một ràng buộc.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3151041\n"
-"15\n"
+"xformsdataadd.xhp\n"
+"par_idN106C7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page Layout</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Bố trí trang</defaultinline></switchinline>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can specify the constraint condition."
+msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể ghi rõ điều kiện ràng buộc."
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3157962\n"
-"16\n"
+"xformsdataadd.xhp\n"
+"par_idN105E4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Select the page layout style to use in the current document.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chọn kiểu dáng bố trí trang cần dùng trong tài liệu hiện tại.</defaultinline></switchinline>"
+msgid "Read-only"
+msgstr "Chỉ đọc"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3145744\n"
-"17\n"
+"xformsdataadd.xhp\n"
+"par_idN105E8\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page layout</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Bố trí trang</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là chỉ-đọc (không thể thay đổi được).</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154218\n"
-"18\n"
+"xformsdataadd.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_LAYOUT\"><switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Specify whether the current style should show odd pages, even pages, or both odd and even pages.</defaultinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_LAYOUT\"><switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Ghi rõ nếu kiểu dáng hiện thời nên hiển thị các trang lẻ, các trang chẫn, hoặc cả hai.</defaultinline></switchinline></ahelp>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
+msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập các miền tên đã dùng và biểu thức đường dẫn XPath đầy đủ."
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3154946\n"
-"19\n"
+"xformsdataadd.xhp\n"
+"par_idN10605\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Right and left</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Bên phải và bên trái</defaultinline></switchinline>"
+msgid "Calculate / Calculation"
+msgstr "Tính / Tính toán"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153058\n"
-"20\n"
+"xformsdataadd.xhp\n"
+"par_idN10609\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with left and right margins as specified.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời hiển thị cả hai trang lẻ và trang chẵn với lề bên trái và lề bên phải, như được ghi rõ.</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục đã được tính.</ahelp>"
-#: 05040200.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147287\n"
-"21\n"
+"xformsdataadd.xhp\n"
+"par_idN1076B\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Mirrored</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Đối xứng</defaultinline></switchinline>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter the calculation."
+msgstr "Cái nút <emph>Điều kiện</emph> thì mở hộp thoại <link href=\"text/shared/01/xformsdataaddcon.xhp\">Thêm điều kiện</link> trong đó bạn có thể nhập phép tính."
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3147317\n"
-"22\n"
+"xformsdataaddcon.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with inner and outer margins as specified. Use this layout if you want to bind the printed pages like a book. Enter the binding space as the \"Inner\" margin.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời hiển thị cả hai trang lẻ và trang chẵn với lề bên trong và bên ngoài như được ghi rõ. Hãy sử dụng bố trí này nếu bạn muốn đóng các trang được in như đóng sách. Nhập khoảng đóng sách như là lề « Trong ».</defaultinline></switchinline>"
+msgid "Add Condition"
+msgstr "Thêm điều kiện"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3155308\n"
-"23\n"
+"xformsdataaddcon.xhp\n"
+"bm_id8615680\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only right</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chỉ bên phải</defaultinline></switchinline>"
+msgid "<bookmark_value>conditions;items in Data Navigator</bookmark_value><bookmark_value>XForms;conditions</bookmark_value>"
+msgstr "<bookmark_value>điều kiện;mục trong Bộ Duyệt Dữ Liệu</bookmark_value><bookmark_value>biểu mẫu XForm; điều kiện</bookmark_value>"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3152885\n"
-"24\n"
+"xformsdataaddcon.xhp\n"
+"par_idN1053E\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only odd (right) pages. Even pages are shown as blank pages.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời chỉ hiển thị các trang lẻ (bên phải). Các trang chẫn được hiển thị dưới dạng trang còn trắng.</defaultinline></switchinline>"
+msgid "Add Condition"
+msgstr "Thêm điều kiện"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3157309\n"
-"25\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only left</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Chỉ bên trái</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Add a condition in this subdialog of the Add Item / Edit Item dialog of the Data Navigator.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm một điều kiện trong hộp thoại phụ bày cua hộp thoại <emph>Thêm/Sửa mục</emph> của Bộ Duyệt Dữ Liệu.</ahelp>"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3147326\n"
-"26\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10561\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only even (left) pages. Odd pages are shown as blank pages.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Kiểu dáng trang hiện thời chỉ hiển thị các trang chẵn (bên trái). Các trang lẻ được hiển thị dưới dạng trang còn trắng.</defaultinline></switchinline>"
+msgid "Condition"
+msgstr "Điều kiện"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3155366\n"
-"53\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Đăng ký đúng </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Enter a condition.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập điều kiện.</ahelp>"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3083281\n"
-"27\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "Format"
-msgstr "Định dạng"
+msgid "Result"
+msgstr "Kết quả"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153745\n"
-"28\n"
+"xformsdataaddcon.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_NUMBER_FORMAT\">Select the page numbering format that you want to use for the current page style.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_NUMBER_FORMAT\">Chọn định dạng đánh số trang bạn muốn dùng cho kiểu dáng trang hiện thời.</ahelp>"
+msgid "<ahelp hid=\".\">Displays a preview of the result.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị ô xem thử kết quả.</ahelp>"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473965\n"
+"xformsdataaddcon.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Thay đổi kích cỡ của đối tượng vẽ để vừa trên định dạng tờ giấy bạn chọn. Vẫn bảo tồn bố trí các đối tượng vẽ.</ahelp>"
+msgid "Edit Namespaces"
+msgstr "Sửa miền tên"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3151318\n"
-"67\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>AutoFit object to page format</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>Tự động vừa đối tượng khít định dạng trang</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Opens the Form Namespaces dialog where you can add, edit, or delete namespaces.</ahelp>"
+msgstr "<ahelp hid=\".\">Mở hộp thoại <emph>Miền tên Biểu mẫu</emph> trong đó bạn có thể thêm, chỉnh sửa hay xoá miền tên.</ahelp>"
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3144746\n"
-"68\n"
+"xformsdatachange.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_ADAPT\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp></defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_ADAPT\">Thay đổi kích cỡ của các đối tượng vẽ để vừa định dạng tờ giấy bạn chọn. Vẫn còn bảo tồn sự sắp đặt các đối tượng vẽ.</ahelp></defaultinline></switchinline>"
+msgid "Change Data Binding"
+msgstr "Đổi tổ hợp dữ liệu"
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149123\n"
+"xformsdatachange.xhp\n"
+"bm_id433973\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000001.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr "<link href=\"text/shared/00/00000001.xhp#metrik\" name=\"Thay đổi đơn vị đo\">Thay đổi đơn vị đo</link>"
+msgid "<bookmark_value>editing;data binding of XForms</bookmark_value><bookmark_value>data binding change in XForms</bookmark_value>"
+msgstr "<bookmark_value>chỉnh sửa;tổ hợp dữ liệu của biểu mẫu Xform</bookmark_value><bookmark_value>sửa đổi tổ hợp dữ liệu trong biểu mẫu Xform</bookmark_value>"
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153730\n"
+"xformsdatachange.xhp\n"
+"par_idN10547\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
-msgstr "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Ghi Đăng ký đúng\">Ghi Đăng ký đúng</link>"
+msgid "Change Data Binding"
+msgstr "Đổi tổ hợp dữ liệu"
-#: 01110400.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"01110400.xhp\n"
+"xformsdatachange.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Edit the data binding in the XForms Data Navigator.</ahelp>"
+msgstr "<ahelp hid=\".\">Chỉnh sửa tổ hợp dữ liệu trong Bộ Duyệt Dữ Liệu XForm.</ahelp>"
+
+#: xformsdatachange.xhp
+msgctxt ""
+"xformsdatachange.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "Model"
+msgstr "Mô hình"
+
+#: xformsdatachange.xhp
+msgctxt ""
+"xformsdatachange.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the name of the XForms model.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn tên của mô hình XForm.</ahelp>"
+
+#: xformsdatachange.xhp
+msgctxt ""
+"xformsdatachange.xhp\n"
+"par_idN10587\n"
+"help.text"
+msgid "Item list"
+msgstr "Danh sách mục"
+
+#: xformsdatachange.xhp
+msgctxt ""
+"xformsdatachange.xhp\n"
+"par_idN1058B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays the data binding for the selected form control. To change the data binding, select another item in the list click <emph>OK</emph>. To access the <emph>Add</emph> and <emph>Properties</emph> commands for an item, right-click the item.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiển thị tổ hợp dữ liệu cho điều khiển biểu mẫu đã chọn. Để thay đổi tổ hợp dữ liệu, chọn mục khác trong danh sách, sau đó nhấn vào nút <emph>OK</emph>. Để truy cập đến lênh <emph>Thêm</emph> và <emph>Thuộc tính</emph> đối với mục, nhấn-phải vào mục đó.</ahelp>"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
"tit\n"
"help.text"
+msgid "Form Namespaces"
+msgstr "Miền tên Biểu mẫu"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"bm_id8286080\n"
+"help.text"
+msgid "<bookmark_value>deleting;namespaces in XForms</bookmark_value><bookmark_value>organizing;namespaces in XForms</bookmark_value><bookmark_value>namespace organization in XForms</bookmark_value><bookmark_value>XForms;adding/editing/deleting/organizing namespaces</bookmark_value>"
+msgstr "<bookmark_value>xoá;không gian tên trong biểu mẫu XForms</bookmark_value><bookmark_value>tổ chức;không gian tên trong biểu mẫu XForms</bookmark_value><bookmark_value>tổ chức không gian tên trong biểu mẫu XForms</bookmark_value><bookmark_value>biểu mẫu XForms;thêm/sửa/xoá/tổ chức không gian tên</bookmark_value>"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN1053E\n"
+"help.text"
+msgid "Form Namespaces"
+msgstr "Miền tên Biểu mẫu"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN10542\n"
+"help.text"
+msgid "<ahelp hid=\".\">Use this dialog to organize namespaces. You can access this dialog through the Add Condition dialog of the Data Navigator.</ahelp>"
+msgstr "<ahelp hid=\".\">Hãy dùng hộp thoại này để tổ chức các miền tên. Bạn có thể truy cập đến hộp thoại này thông qua hộp thoại <emph>Thêm điều kiện</emph> của Bộ Duyệt Dữ Liệu.</ahelp>"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN10561\n"
+"help.text"
+msgid "Namespaces"
+msgstr "Miền tên"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN10565\n"
+"help.text"
+msgid "<ahelp hid=\".\">Lists the currently defined namespaces for the form.</ahelp>"
+msgstr "<ahelp hid=\".\">Liệt kê các miền tên được xác định hiện thời đối với biểu mẫu đó.</ahelp>"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "Add"
+msgstr "Thêm"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds a new namespace to the list.</ahelp>"
+msgstr "<ahelp hid=\".\">Thêm vào danh sách một miền tên mới.</ahelp>"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "Use the <emph>Add Namespace</emph> dialog to enter the Prefix and URL."
+msgstr "Dùng hộp thoại <emph>Thêm miền tên</emph> để thêm Tiền tố và địa chỉ URL."
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN10576\n"
+"help.text"
msgid "Edit"
msgstr "Sửa"
-#: 01110400.xhp
+#: xformsdataname.xhp
msgctxt ""
-"01110400.xhp\n"
-"hd_id3150620\n"
-"1\n"
+"xformsdataname.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110400.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/shared/01/01110400.xhp\" name=\"Sửa\">Sửa</link>"
+msgid "<ahelp hid=\".\">Edits the selected namespace.</ahelp>"
+msgstr "<ahelp hid=\".\">Chỉnh sửa miền tên đã chọn.</ahelp>"
-#: 01110400.xhp
+#: xformsdataname.xhp
msgctxt ""
-"01110400.xhp\n"
-"par_id3144415\n"
-"2\n"
+"xformsdataname.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<ahelp hid=\".uno:OpenTemplate\">Opens a dialog where you can select a template for editing.</ahelp>"
-msgstr "<ahelp hid=\".uno:OpenTemplate\">Mở một hộp thoại trong đó bạn co thể chọn mẫu để chỉnh sửa.</ahelp>"
+msgid "Use the <emph>Edit Namespace</emph> dialog to edit the Prefix and URL."
+msgstr "Dùng hộp thoại <emph>Sửa miền tên</emph> để chỉnh sửa Tiền tố và địa chỉ URL."
-#: 01110300.xhp
+#: xformsdataname.xhp
msgctxt ""
-"01110300.xhp\n"
+"xformsdataname.xhp\n"
+"par_idN10584\n"
+"help.text"
+msgid "Delete"
+msgstr "Xoá"
+
+#: xformsdataname.xhp
+msgctxt ""
+"xformsdataname.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected namespace.</ahelp>"
+msgstr "<ahelp hid=\".\">Xoá miền tên đã chọn.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
"tit\n"
"help.text"
-msgid "Saving (Templates)"
-msgstr "Lưu (Mẫu)"
+msgid "Data (for XML Form Documents)"
+msgstr "Dữ liệu (cho Tài liệu Biểu mẫu XML)"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"xformsdatatab.xhp\n"
+"hd_id5766472\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"Saving (Templates)\">Saving (Templates)</link>"
-msgstr "<link href=\"text/shared/01/01110300.xhp\" name=\"Lưu (Mẫu)\">Lưu (Mẫu)</link>"
+msgid "<link href=\"text/shared/01/xformsdatatab.xhp\">Data (for XML Form Documents)</link>"
+msgstr "<link href=\"text/shared/01/xformsdatatab.xhp\">Dữ liệu (cho Tài liệu Biểu mẫu XML)</link>"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3157898\n"
-"2\n"
+"xformsdatatab.xhp\n"
+"par_id1161534\n"
"help.text"
-msgid "<ahelp hid=\".uno:SaveAsTemplate\">Saves the current document as a template.</ahelp>"
-msgstr "<ahelp hid=\".uno:SaveAsTemplate\">Lưu tài liệu hiện tại dạng mẫu.</ahelp>"
+msgid "The Data tab page of the Properties dialog for an XML Form document offers some XML forms settings."
+msgstr "Trang thẻ <emph>Dữ liệu</emph> của hộp thoại <emph>Thuộc tính</emph> đối với một tài liệu Biểu mẫu XML thì cung cấp một số thiết lập biểu mẫu XML."
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3147226\n"
-"4\n"
+"xformsdatatab.xhp\n"
+"par_id3994567\n"
"help.text"
-msgid "New Template"
-msgstr "Mẫu mới"
+msgid "The possible settings of the <emph>Data</emph> tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:"
+msgstr "Các giá trị có thể của trang thẻ <emph>Dữ liệu</emph> của một điều khiển thì phụ thuộc vào điều khiển tương ứng. Bạn sẽ chỉ thấy những tùy chọn sẵn sàng cho điều khiển/ngữ cảnh hiện thời. Có sẵn những trường này:"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3147043\n"
-"5\n"
+"xformsdatatab.xhp\n"
+"hd_id9461653\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:DLG_DOC_TEMPLATE:ED_NAME\">Enter a name for the template.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:EDIT:DLG_DOC_TEMPLATE:ED_NAME\">Nhập tên cho mẫu.</ahelp>"
+msgid "XML data model"
+msgstr "Mẫu dữ liệu XML"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3147571\n"
-"6\n"
+"xformsdatatab.xhp\n"
+"par_id9239173\n"
"help.text"
-msgid "Templates"
-msgstr "Mẫu"
+msgid "<ahelp hid=\".\">Select a model from the list of all models in the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn một mẫu trong danh sách các mẫu của tài liệu hiện tại.</ahelp>"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3150774\n"
-"7\n"
+"xformsdatatab.xhp\n"
+"hd_id2656941\n"
"help.text"
-msgid "Lists templates and template categories."
-msgstr "Liệt kê các mẫu và phân loại mẫu."
+msgid "Binding"
+msgstr "Tổ hợp"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3143268\n"
-"8\n"
+"xformsdatatab.xhp\n"
+"par_id1481063\n"
"help.text"
-msgid "Categories"
-msgstr "Loại"
+msgid "<ahelp hid=\".\">Select or enter the name of a binding. Selecting the name of an existing binding associates the binding with the form control. Entering a new name creates a new binding and associates it with the form control.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn hay nhập tên của một tổ hợp. Việc chọn tên của một tổ hợp đã tồn tại thì tạo quan hệ giữa tổ hợp và điều khiển biểu mẫu đó. Còn việc nhập tên mới tạo một tổ hợp mới và tạo quan hệ giữa nó và điều khiển biểu mẫu.</ahelp>"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3159233\n"
-"9\n"
+"xformsdatatab.xhp\n"
+"hd_id7921079\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_SECTION\">Select a category in which to save the new template.</ahelp> To add a new template category, click the <link href=\"text/shared/01/01110100.xhp\" name=\"Organize\">Organize</link> button."
-msgstr "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_SECTION\">Chọn phân loại vào đó cần lưu mẫu mới.</ahelp> Để thêm một phân loại mẫu mới, nhấn vào nút <link href=\"text/shared/01/01110100.xhp\" name=\"Tổ chức\">Tổ chức</link>."
+msgid "Binding expression"
+msgstr "Biểu thức tổ hợp"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3150693\n"
-"10\n"
+"xformsdatatab.xhp\n"
+"par_id636921\n"
"help.text"
-msgid "Templates"
+msgid "<ahelp hid=\".\">Enter the DOM node to bind the control model to. Click the ... button for a dialog to enter the XPath expression.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhập nút DOM với đó cần tổ hợp mẫu điều khiển. Nhấn vào cái nút <emph>...</emph> để mở hộp thoại cho bạn nhập biểu thức đường dẫn XPath.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id2799157\n"
+"help.text"
+msgid "Required"
+msgstr "Cần thiết"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id3004547\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ có nên bao gồm mục này trong biểu mẫu XForm hay không.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id6401867\n"
+"help.text"
+msgid "Relevant"
+msgstr "Liên quan"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id18616\n"
+"help.text"
+msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là liên quan.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id6138492\n"
+"help.text"
+msgid "Read-only"
+msgstr "Chỉ đọc"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id4569231\n"
+"help.text"
+msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là chỉ-đọc (không thể thay đổi được).</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id291451\n"
+"help.text"
+msgid "Constraint"
+msgstr "Ràng buộc"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id3341776\n"
+"help.text"
+msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục là một ràng buộc.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id5947141\n"
+"help.text"
+msgid "Calculation"
+msgstr "Tính toán"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id1911679\n"
+"help.text"
+msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ rằng mục đã được tính.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id9364909\n"
+"help.text"
+msgid "Data type"
+msgstr "Kiểu dữ liệu"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id4473403\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a data type which the control should be validated against.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn kiểu dữ liệu so với đó cần hợp lệ hoá điều khiển này.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id2480849\n"
+"help.text"
+msgid "x"
+msgstr ""
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id4181951\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a user-defined data type and click the button to delete the user-defined data type.</ahelp>"
+msgstr "<ahelp hid=\".\">Chọn một kiểu mẫu tự xác định, sau đó nhấn vào nút để xoá nó.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id2927335\n"
+"help.text"
+msgid "+"
+msgstr ""
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id2107303\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click the button to open a dialog where you can enter the name of a new user-defined data type. The new data type inherits all facets from the currently selected data type.</ahelp>"
+msgstr "<ahelp hid=\".\">Nhấn vào cái nút để mở hộp thoại trong đó bạn có thể nhập tên của một kiểu dữ liệu mới tự xác định. Kiểu dữ liệu mới thì kế thừa mọi thuộc tính của kiểu dữ liệu được chọn hiện thời.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id4071779\n"
+"help.text"
+msgid "The following lists all facets that are valid for data types. Some facets are only available for some data types."
+msgstr "Theo đây liệt kê mọi thuộc tính hợp cho kiểu dữ liệu. Một số thuộc tính nào đó không phải sẵn sàng cho tất cả các kiểu dữ liệu."
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id4313791\n"
+"help.text"
+msgid "Whitespaces"
+msgstr "Dấu cách"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id4331797\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The semantics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
+msgstr ""
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id4191717\n"
+"help.text"
+msgid "Pattern"
msgstr "Mẫu"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3149398\n"
-"11\n"
+"xformsdatatab.xhp\n"
+"par_id2318796\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_STYLESHEETS\">Lists the available template categories.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_STYLESHEETS\">Liệt kê các phân loại mẫu sẵn sàng.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elseswhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ một mẫu biểu thức chính quy. Các chuỗi được hợp lệ hoá so với mẫu này phải tuân theo mẫu này. Cú pháp kiểu dữ liệu XSD cho biểu thức chính quy là khác với cú pháp biểu thức chính quy được ở các nơi khác trong %PRODUCTNAME, thí dụ trong hộp thoại <emph>Tìm và Thay thế</emph>. </ahelp>"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3163803\n"
-"12\n"
+"xformsdatatab.xhp\n"
+"hd_id399182\n"
"help.text"
-msgid "Edit"
-msgstr "Sửa"
+msgid "Digits (total)"
+msgstr "Chữ số (tổng)"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3147242\n"
-"13\n"
+"xformsdatatab.xhp\n"
+"par_id5298318\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_EDIT\">Opens the selected template for editing.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_EDIT\">Mở mẫu đã chọn, để chỉnh sửa.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the maximum total number of digits that values of the decimal data type can have.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ tổng số chữ số tối đa của giá trị có kiểu dữ liệu thập phân.</ahelp>"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3156156\n"
-"14\n"
+"xformsdatatab.xhp\n"
+"hd_id7588732\n"
"help.text"
-msgid "Organize"
-msgstr "Tổ chức"
+msgid "Digits (fraction)"
+msgstr "Chữ số (phần số)"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3155419\n"
-"15\n"
+"xformsdatatab.xhp\n"
+"par_id95828\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_ORGANIZE\">Opens the <emph>Template Management</emph> dialog where you can organize or create new templates.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_ORGANIZE\">Mở hộp thoại <emph>Quản lý mẫu</emph>, trong đó bạn co thể tổ chức các mẫu, hay tạo mẫu mới.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the maximum total number of fractional digits that values of the decimal data type can have.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ tổng số chữ số phân số tối đa của giá trị có kiểu dữ liệu thập phân.</ahelp>"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3153126\n"
+"xformsdatatab.xhp\n"
+"hd_id3496200\n"
+"help.text"
+msgid "Max. (inclusive)"
+msgstr "Đại (kể)"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id7599108\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies an inclusive upper bound for values.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên trên kể cho các giá trị.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id888698\n"
+"help.text"
+msgid "Max. (exclusive)"
+msgstr "Đại (không kể)"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id3394573\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies an exclusive upper bound for values.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên trên không kể cho các giá trị.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id7594225\n"
+"help.text"
+msgid "Min. (inclusive)"
+msgstr "Tiểu (kể)"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id8147221\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies an inclusive lower bound for values.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên dưới kể cho các giá trị.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id5081637\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110100.xhp\" name=\"Template Management\">Template Management</link>"
-msgstr "<link href=\"text/shared/01/01110100.xhp\" name=\"Quản lý mẫu\">Quản lý mẫu</link>"
+msgid "Min. (exclusive)"
+msgstr "Tiểu (không kể)"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id9759514\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies an exclusive lower bound for values.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ biên giới bên dưới không kể cho các giá trị.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id1614429\n"
+"help.text"
+msgid "Length"
+msgstr "Bề dài"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id1589098\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the number of characters for a string.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ số ký tự cho một chuỗi.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id1278420\n"
+"help.text"
+msgid "Length (at least)"
+msgstr "Độ dài (tiểu)"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id8746910\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the minimum number of characters for a string.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ số ký tự tối thiểu cho một chuỗi.</ahelp>"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"hd_id9636524\n"
+"help.text"
+msgid "Length (at most)"
+msgstr "Độ dài (đại)"
+
+#: xformsdatatab.xhp
+msgctxt ""
+"xformsdatatab.xhp\n"
+"par_id5675527\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
+msgstr "<ahelp hid=\".\">Ghi rõ số ký tự tối đa cho một chuỗi.</ahelp>"
diff --git a/source/vi/helpcontent2/source/text/shared/02.po b/source/vi/helpcontent2/source/text/shared/02.po
index 4387431a2b0..e330e8fca10 100644
--- a/source/vi/helpcontent2/source/text/shared/02.po
+++ b/source/vi/helpcontent2/source/text/shared/02.po